diff --git a/pom.xml b/pom.xml
index 552dd59..8aec061 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
com.loohp
Limbo
Limbo
- 0.7.10-ALPHA
+ 0.7.11-ALPHA
Standalone Limbo Minecraft Server.
https://github.com/LOOHP/Limbo
@@ -136,7 +136,7 @@
- ${project.artifactId}-${project.version}-1.21.1
+ ${project.artifactId}-${project.version}-1.21.3
@@ -265,31 +265,31 @@
net.kyori
adventure-text-serializer-gson
- 4.17.0-SNAPSHOT
+ 4.17.0
compile
net.kyori
adventure-text-serializer-legacy
- 4.17.0-SNAPSHOT
+ 4.17.0
compile
net.kyori
adventure-text-serializer-plain
- 4.17.0-SNAPSHOT
+ 4.17.0
compile
net.kyori
adventure-api
- 4.17.0-SNAPSHOT
+ 4.17.0
compile
net.kyori
adventure-nbt
- 4.17.0-SNAPSHOT
+ 4.17.0
compile
diff --git a/src/main/java/com/loohp/limbo/Limbo.java b/src/main/java/com/loohp/limbo/Limbo.java
index c671ceb..83753d0 100644
--- a/src/main/java/com/loohp/limbo/Limbo.java
+++ b/src/main/java/com/loohp/limbo/Limbo.java
@@ -132,8 +132,8 @@ public final class Limbo {
//===========================
- public final String SERVER_IMPLEMENTATION_VERSION = "1.21.1";
- public final int SERVER_IMPLEMENTATION_PROTOCOL = 767;
+ public final String SERVER_IMPLEMENTATION_VERSION = "1.21.3";
+ public final int SERVER_IMPLEMENTATION_PROTOCOL = 768;
public final String LIMBO_IMPLEMENTATION_VERSION;
private final AtomicBoolean isRunning;
diff --git a/src/main/java/com/loohp/limbo/network/ClientConnection.java b/src/main/java/com/loohp/limbo/network/ClientConnection.java
index 65244d6..ee4dcde 100644
--- a/src/main/java/com/loohp/limbo/network/ClientConnection.java
+++ b/src/main/java/com/loohp/limbo/network/ClientConnection.java
@@ -498,7 +498,7 @@ public class ClientConnection extends Thread {
break;
}
- PacketLoginOutLoginSuccess success = new PacketLoginOutLoginSuccess(uuid, username, false);
+ PacketLoginOutLoginSuccess success = new PacketLoginOutLoginSuccess(uuid, username);
sendPacket(success);
player = new Player(this, username, uuid, Limbo.getInstance().getNextEntityId(), Limbo.getInstance().getServerProperties().getWorldSpawn(), new PlayerInteractManager());
@@ -522,7 +522,7 @@ public class ClientConnection extends Thread {
inetAddress = InetAddress.getByName(data.getIpAddress());
forwardedSkin = data.getSkinResponse();
- PacketLoginOutLoginSuccess success = new PacketLoginOutLoginSuccess(data.getUuid(), data.getUsername(), false);
+ PacketLoginOutLoginSuccess success = new PacketLoginOutLoginSuccess(data.getUuid(), data.getUsername());
sendPacket(success);
player = new Player(this, data.getUsername(), data.getUuid(), Limbo.getInstance().getNextEntityId(), Limbo.getInstance().getServerProperties().getWorldSpawn(), new PlayerInteractManager());
@@ -572,7 +572,7 @@ public class ClientConnection extends Thread {
worldSpawn = spawnEvent.getSpawnLocation();
World world = worldSpawn.getWorld();
- PacketPlayOutLogin join = new PacketPlayOutLogin(player.getEntityId(), false, Limbo.getInstance().getWorlds(), properties.getMaxPlayers(), 8, 8, properties.isReducedDebugInfo(), true, false, world.getEnvironment(), world, 0, properties.getDefaultGamemode(), false, true, 0, false);
+ PacketPlayOutLogin join = new PacketPlayOutLogin(player.getEntityId(), false, Limbo.getInstance().getWorlds(), properties.getMaxPlayers(), 8, 8, properties.isReducedDebugInfo(), true, false, world.getEnvironment(), world, 0, properties.getDefaultGamemode(), false, true, 0, 0, false);
sendPacket(join);
Limbo.getInstance().getUnsafe().a(player, properties.getDefaultGamemode());
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutLoginSuccess.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutLoginSuccess.java
index 3951167..ae4a162 100644
--- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutLoginSuccess.java
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutLoginSuccess.java
@@ -32,12 +32,10 @@ public class PacketLoginOutLoginSuccess extends PacketOut {
private final UUID uuid;
private final String username;
- private final boolean strictErrorHandling;
- public PacketLoginOutLoginSuccess(UUID uuid, String username, boolean strictErrorHandling) {
+ public PacketLoginOutLoginSuccess(UUID uuid, String username) {
this.uuid = uuid;
this.username = username;
- this.strictErrorHandling = strictErrorHandling;
}
public UUID getUuid() {
@@ -48,10 +46,6 @@ public class PacketLoginOutLoginSuccess extends PacketOut {
return username;
}
- public boolean isStrictErrorHandling() {
- return strictErrorHandling;
- }
-
@Override
public byte[] serializePacket() throws IOException {
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
@@ -61,7 +55,6 @@ public class PacketLoginOutLoginSuccess extends PacketOut {
DataTypeIO.writeUUID(output, uuid);
DataTypeIO.writeString(output, username, StandardCharsets.UTF_8);
DataTypeIO.writeVarInt(output, 0);
- output.writeBoolean(strictErrorHandling);
return buffer.toByteArray();
}
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java
index db3a7bf..b2ddda4 100644
--- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java
@@ -51,9 +51,10 @@ public class PacketPlayOutLogin extends PacketOut {
private final boolean isDebug;
private final boolean isFlat;
private final int portalCooldown;
+ private final int seaLevel;
private final boolean enforcesSecureChat;
- public PacketPlayOutLogin(int entityId, boolean isHardcore, List worlds, int maxPlayers, int viewDistance, int simulationDistance, boolean reducedDebugInfo, boolean enableRespawnScreen, boolean doLimitedCrafting, Environment dimension, World world, long hashedSeed, GameMode gamemode, boolean isDebug, boolean isFlat, int portalCooldown, boolean enforcesSecureChat) {
+ public PacketPlayOutLogin(int entityId, boolean isHardcore, List worlds, int maxPlayers, int viewDistance, int simulationDistance, boolean reducedDebugInfo, boolean enableRespawnScreen, boolean doLimitedCrafting, Environment dimension, World world, long hashedSeed, GameMode gamemode, boolean isDebug, boolean isFlat, int portalCooldown, int seaLevel, boolean enforcesSecureChat) {
this.entityId = entityId;
this.isHardcore = isHardcore;
this.worlds = worlds;
@@ -70,6 +71,7 @@ public class PacketPlayOutLogin extends PacketOut {
this.isDebug = isDebug;
this.isFlat = isFlat;
this.portalCooldown = portalCooldown;
+ this.seaLevel = seaLevel;
this.enforcesSecureChat = enforcesSecureChat;
}
@@ -137,6 +139,10 @@ public class PacketPlayOutLogin extends PacketOut {
return portalCooldown;
}
+ public int getSeaLevel() {
+ return seaLevel;
+ }
+
public boolean isEnforcesSecureChat() {
return enforcesSecureChat;
}
@@ -168,6 +174,7 @@ public class PacketPlayOutLogin extends PacketOut {
output.writeBoolean(isFlat);
output.writeBoolean(false);
DataTypeIO.writeVarInt(output, portalCooldown);
+ DataTypeIO.writeVarInt(output, seaLevel);
output.writeBoolean(enforcesSecureChat);
return buffer.toByteArray();
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPositionAndLook.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPositionAndLook.java
index 2ca5de9..e77556c 100644
--- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPositionAndLook.java
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPositionAndLook.java
@@ -26,26 +26,67 @@ import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.util.Arrays;
+import java.util.EnumSet;
import java.util.HashSet;
+import java.util.Iterator;
+import java.util.LinkedHashSet;
import java.util.Set;
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
public class PacketPlayOutPositionAndLook extends PacketOut {
-
- public enum PlayerTeleportFlags {
- X((byte) 0x01),
- Y((byte) 0x02),
- Z((byte) 0x04),
- Y_ROT((byte) 0x08),
- X_ROT((byte) 0x10);
-
- private final byte bit;
-
- PlayerTeleportFlags(byte bit) {
- this.bit = bit;
+
+ public enum Relative {
+
+ X(0), Y(1), Z(2), Y_ROT(3), X_ROT(4), DELTA_X(5), DELTA_Y(6), DELTA_Z(7), ROTATE_DELTA(8);
+
+ public static final Set ALL = new LinkedHashSet<>(Arrays.asList(values()));
+ public static final Set ROTATION = Stream.of(Relative.X_ROT, Relative.Y_ROT).collect(Collectors.toSet());
+ public static final Set DELTA = Stream.of(Relative.DELTA_X, Relative.DELTA_Y, Relative.DELTA_Z, Relative.ROTATE_DELTA).collect(Collectors.toSet());
+
+ private final int bit;
+
+ @SafeVarargs
+ public static Set union(Set... aset) {
+ HashSet hashset = new HashSet<>();
+ int i = aset.length;
+ for (Set set : aset) {
+ hashset.addAll(set);
+ }
+ return hashset;
}
-
- public byte getBit() {
- return bit;
+
+ Relative(final int i) {
+ this.bit = i;
+ }
+
+ private int getMask() {
+ return 1 << this.bit;
+ }
+
+ private boolean isSet(int i) {
+ return (i & this.getMask()) == this.getMask();
+ }
+
+ public static Set unpack(int i) {
+ Set set = EnumSet.noneOf(Relative.class);
+ Relative[] arelative = values();
+ int j = arelative.length;
+ for (Relative relative : arelative) {
+ if (relative.isSet(i)) {
+ set.add(relative);
+ }
+ }
+ return set;
+ }
+
+ public static int pack(Set set) {
+ int i = 0;
+ Relative relative;
+ for (Iterator iterator = set.iterator(); iterator.hasNext(); i |= relative.getMask()) {
+ relative = iterator.next();
+ }
+ return i;
}
}
@@ -54,17 +95,17 @@ public class PacketPlayOutPositionAndLook extends PacketOut {
private final double z;
private final float yaw;
private final float pitch;
- private final Set flags;
+ private final Set relatives;
private final int teleportId;
- public PacketPlayOutPositionAndLook(double x, double y, double z, float yaw, float pitch, int teleportId, PlayerTeleportFlags... flags) {
+ public PacketPlayOutPositionAndLook(double x, double y, double z, float yaw, float pitch, int teleportId, Relative... relatives) {
this.x = x;
this.y = y;
this.z = z;
this.yaw = yaw;
this.pitch = pitch;
this.teleportId = teleportId;
- this.flags = new HashSet<>(Arrays.asList(flags));
+ this.relatives = new HashSet<>(Arrays.asList(relatives));
}
public double getX() {
@@ -87,8 +128,8 @@ public class PacketPlayOutPositionAndLook extends PacketOut {
return pitch;
}
- public Set getFlags() {
- return flags;
+ public Set getRelatives() {
+ return relatives;
}
public int getTeleportId() {
@@ -101,19 +142,16 @@ public class PacketPlayOutPositionAndLook extends PacketOut {
DataOutputStream output = new DataOutputStream(buffer);
output.writeByte(PacketRegistry.getPacketId(getClass()));
+ DataTypeIO.writeVarInt(output, teleportId);
output.writeDouble(x);
output.writeDouble(y);
output.writeDouble(z);
+ output.writeDouble(0);
+ output.writeDouble(0);
+ output.writeDouble(0);
output.writeFloat(yaw);
output.writeFloat(pitch);
-
- byte flag = 0;
- for (PlayerTeleportFlags each : flags) {
- flag = (byte) (flag | each.getBit());
- }
-
- output.writeByte(flag);
- DataTypeIO.writeVarInt(output, teleportId);
+ output.writeInt(Relative.pack(relatives));
return buffer.toByteArray();
}
diff --git a/src/main/java/com/loohp/limbo/registry/PacketRegistry.java b/src/main/java/com/loohp/limbo/registry/PacketRegistry.java
index f4f9ee4..a7cfb23 100644
--- a/src/main/java/com/loohp/limbo/registry/PacketRegistry.java
+++ b/src/main/java/com/loohp/limbo/registry/PacketRegistry.java
@@ -155,7 +155,7 @@ public class PacketRegistry {
registerClass(PacketLoginInPluginMessaging.class, "minecraft:custom_query_answer", NetworkPhase.LOGIN, PacketBound.SERVERBOUND);
registerClass(ServerboundLoginAcknowledgedPacket.class, "minecraft:login_acknowledged", NetworkPhase.LOGIN, PacketBound.SERVERBOUND);
- registerClass(PacketLoginOutLoginSuccess.class, "minecraft:game_profile", NetworkPhase.LOGIN, PacketBound.CLIENTBOUND);
+ registerClass(PacketLoginOutLoginSuccess.class, "minecraft:login_finished", NetworkPhase.LOGIN, PacketBound.CLIENTBOUND);
registerClass(PacketLoginOutDisconnect.class, "minecraft:login_disconnect", NetworkPhase.LOGIN, PacketBound.CLIENTBOUND);
registerClass(PacketLoginOutPluginMessaging.class, "minecraft:custom_query", NetworkPhase.LOGIN, PacketBound.CLIENTBOUND);
diff --git a/src/main/java/com/loohp/limbo/registry/RegistryCustom.java b/src/main/java/com/loohp/limbo/registry/RegistryCustom.java
index 5e908a2..91c3df4 100644
--- a/src/main/java/com/loohp/limbo/registry/RegistryCustom.java
+++ b/src/main/java/com/loohp/limbo/registry/RegistryCustom.java
@@ -42,16 +42,10 @@ public class RegistryCustom {
private static final Map REGISTRIES = new HashMap<>();
- public static final RegistryCustom ADVANCEMENT = register("advancement");
- public static final RegistryCustom BANNER_PATTERN = register("banner_pattern");
public static final RegistryCustom CHAT_TYPE = register("chat_type");
public static final RegistryCustom DAMAGE_TYPE = register("damage_type");
public static final RegistryCustom DIMENSION_TYPE = register("dimension_type");
- public static final RegistryCustom ENCHANTMENT = register("enchantment");
- public static final RegistryCustom JUKEBOX_SONG = register("jukebox_song");
public static final RegistryCustom PAINTING_VARIANT = register("painting_variant");
- public static final RegistryCustom TRIM_MATERIAL = register("trim_material");
- public static final RegistryCustom TRIM_PATTERN = register("trim_pattern");
public static final RegistryCustom WOLF_VARIANT = register("wolf_variant");
public static final RegistryCustom WORLDGEN_BIOME = register("worldgen/biome");
diff --git a/src/main/java/com/loohp/limbo/utils/CustomNBTUtils.java b/src/main/java/com/loohp/limbo/utils/CustomNBTUtils.java
index c952d78..e981685 100644
--- a/src/main/java/com/loohp/limbo/utils/CustomNBTUtils.java
+++ b/src/main/java/com/loohp/limbo/utils/CustomNBTUtils.java
@@ -19,17 +19,11 @@
package com.loohp.limbo.utils;
-import net.querz.nbt.tag.ByteTag;
import net.querz.nbt.tag.CompoundTag;
-import net.querz.nbt.tag.DoubleTag;
import net.querz.nbt.tag.ListTag;
-import net.querz.nbt.tag.LongTag;
-import net.querz.nbt.tag.StringTag;
-import net.querz.nbt.tag.Tag;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
-@SuppressWarnings("rawtypes")
public class CustomNBTUtils {
public static CompoundTag getCompoundTagFromJson(JSONObject json) {
@@ -57,35 +51,16 @@ public class CustomNBTUtils {
return tag;
}
- @SuppressWarnings("ExtractMethodRecommender")
- public static ListTag> getListTagFromJson(JSONArray json) {
+ public static ListTag> getListTagFromJson(JSONArray json) {
if (json.isEmpty()) {
- return new ListTag<>(StringTag.class);
+ return ListTag.createUnchecked(null);
}
- Object firstValue = json.get(0);
- Class extends Tag> type;
- if (firstValue instanceof JSONObject) {
- type = CompoundTag.class;
- } else if (firstValue instanceof JSONArray) {
- type = ListTag.class;
- } else if (firstValue instanceof Boolean) {
- type = ByteTag.class;
- } else if (firstValue instanceof Long) {
- type = LongTag.class;
- } else if (firstValue instanceof Double) {
- type = DoubleTag.class;
- } else if (firstValue instanceof String) {
- type = StringTag.class;
- } else {
- throw new RuntimeException();
- }
-
- ListTag> listTag = ListTag.createUnchecked(type);
+ ListTag> listTag = ListTag.createUnchecked(null);
for (Object rawValue : json) {
if (rawValue instanceof JSONObject) {
- listTag.asCompoundTagList().add(getCompoundTagFromJson((JSONObject) rawValue));
+ listTag.addUnchecked(getCompoundTagFromJson((JSONObject) rawValue));
} else if (rawValue instanceof JSONArray) {
- listTag.asListTagList().add(getListTagFromJson((JSONArray) rawValue));
+ listTag.addUnchecked(getListTagFromJson((JSONArray) rawValue));
} else if (rawValue instanceof Boolean) {
listTag.addBoolean((boolean) rawValue);
} else if (rawValue instanceof Long) {
diff --git a/src/main/resources/data/minecraft/advancement/adventure/adventuring_time.json b/src/main/resources/data/minecraft/advancement/adventure/adventuring_time.json
deleted file mode 100644
index 698b374..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/adventuring_time.json
+++ /dev/null
@@ -1,1031 +0,0 @@
-{
- "parent": "minecraft:adventure/sleep_in_bed",
- "criteria": {
- "minecraft:badlands": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:badlands"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:bamboo_jungle": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:bamboo_jungle"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:beach": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:beach"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:birch_forest": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:birch_forest"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:cherry_grove": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:cherry_grove"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:cold_ocean": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:cold_ocean"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:dark_forest": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:dark_forest"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:deep_cold_ocean": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:deep_cold_ocean"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:deep_dark": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:deep_dark"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:deep_frozen_ocean": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:deep_frozen_ocean"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:deep_lukewarm_ocean": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:deep_lukewarm_ocean"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:deep_ocean": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:deep_ocean"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:desert": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:desert"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:dripstone_caves": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:dripstone_caves"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:eroded_badlands": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:eroded_badlands"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:flower_forest": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:flower_forest"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:forest": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:forest"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:frozen_ocean": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:frozen_ocean"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:frozen_peaks": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:frozen_peaks"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:frozen_river": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:frozen_river"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:grove": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:grove"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:ice_spikes": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:ice_spikes"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:jagged_peaks": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:jagged_peaks"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:jungle": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:jungle"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:lukewarm_ocean": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:lukewarm_ocean"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:lush_caves": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:lush_caves"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:mangrove_swamp": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:mangrove_swamp"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:meadow": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:meadow"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:mushroom_fields": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:mushroom_fields"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:ocean": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:ocean"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:old_growth_birch_forest": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:old_growth_birch_forest"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:old_growth_pine_taiga": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:old_growth_pine_taiga"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:old_growth_spruce_taiga": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:old_growth_spruce_taiga"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:plains": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:plains"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:river": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:river"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:savanna": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:savanna"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:savanna_plateau": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:savanna_plateau"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:snowy_beach": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:snowy_beach"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:snowy_plains": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:snowy_plains"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:snowy_slopes": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:snowy_slopes"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:snowy_taiga": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:snowy_taiga"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:sparse_jungle": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:sparse_jungle"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:stony_peaks": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:stony_peaks"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:stony_shore": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:stony_shore"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:sunflower_plains": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:sunflower_plains"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:swamp": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:swamp"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:taiga": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:taiga"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:warm_ocean": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:warm_ocean"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:windswept_forest": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:windswept_forest"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:windswept_gravelly_hills": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:windswept_gravelly_hills"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:windswept_hills": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:windswept_hills"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:windswept_savanna": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:windswept_savanna"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:wooded_badlands": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:wooded_badlands"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.adventuring_time.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:diamond_boots"
- },
- "title": {
- "translate": "advancements.adventure.adventuring_time.title"
- }
- },
- "requirements": [
- [
- "minecraft:mushroom_fields"
- ],
- [
- "minecraft:deep_frozen_ocean"
- ],
- [
- "minecraft:frozen_ocean"
- ],
- [
- "minecraft:deep_cold_ocean"
- ],
- [
- "minecraft:cold_ocean"
- ],
- [
- "minecraft:deep_ocean"
- ],
- [
- "minecraft:ocean"
- ],
- [
- "minecraft:deep_lukewarm_ocean"
- ],
- [
- "minecraft:lukewarm_ocean"
- ],
- [
- "minecraft:warm_ocean"
- ],
- [
- "minecraft:stony_shore"
- ],
- [
- "minecraft:swamp"
- ],
- [
- "minecraft:mangrove_swamp"
- ],
- [
- "minecraft:snowy_slopes"
- ],
- [
- "minecraft:snowy_plains"
- ],
- [
- "minecraft:snowy_beach"
- ],
- [
- "minecraft:windswept_gravelly_hills"
- ],
- [
- "minecraft:grove"
- ],
- [
- "minecraft:windswept_hills"
- ],
- [
- "minecraft:snowy_taiga"
- ],
- [
- "minecraft:windswept_forest"
- ],
- [
- "minecraft:taiga"
- ],
- [
- "minecraft:plains"
- ],
- [
- "minecraft:meadow"
- ],
- [
- "minecraft:beach"
- ],
- [
- "minecraft:forest"
- ],
- [
- "minecraft:old_growth_spruce_taiga"
- ],
- [
- "minecraft:flower_forest"
- ],
- [
- "minecraft:birch_forest"
- ],
- [
- "minecraft:dark_forest"
- ],
- [
- "minecraft:savanna_plateau"
- ],
- [
- "minecraft:savanna"
- ],
- [
- "minecraft:jungle"
- ],
- [
- "minecraft:badlands"
- ],
- [
- "minecraft:desert"
- ],
- [
- "minecraft:wooded_badlands"
- ],
- [
- "minecraft:jagged_peaks"
- ],
- [
- "minecraft:stony_peaks"
- ],
- [
- "minecraft:frozen_river"
- ],
- [
- "minecraft:river"
- ],
- [
- "minecraft:ice_spikes"
- ],
- [
- "minecraft:old_growth_pine_taiga"
- ],
- [
- "minecraft:sunflower_plains"
- ],
- [
- "minecraft:old_growth_birch_forest"
- ],
- [
- "minecraft:sparse_jungle"
- ],
- [
- "minecraft:bamboo_jungle"
- ],
- [
- "minecraft:eroded_badlands"
- ],
- [
- "minecraft:windswept_savanna"
- ],
- [
- "minecraft:cherry_grove"
- ],
- [
- "minecraft:frozen_peaks"
- ],
- [
- "minecraft:dripstone_caves"
- ],
- [
- "minecraft:lush_caves"
- ],
- [
- "minecraft:deep_dark"
- ]
- ],
- "rewards": {
- "experience": 500
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/arbalistic.json b/src/main/resources/data/minecraft/advancement/adventure/arbalistic.json
deleted file mode 100644
index e561887..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/arbalistic.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "parent": "minecraft:adventure/ol_betsy",
- "criteria": {
- "arbalistic": {
- "conditions": {
- "unique_entity_types": 5
- },
- "trigger": "minecraft:killed_by_crossbow"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.arbalistic.description"
- },
- "frame": "challenge",
- "hidden": true,
- "icon": {
- "count": 1,
- "id": "minecraft:crossbow"
- },
- "title": {
- "translate": "advancements.adventure.arbalistic.title"
- }
- },
- "requirements": [
- [
- "arbalistic"
- ]
- ],
- "rewards": {
- "experience": 85
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/avoid_vibration.json b/src/main/resources/data/minecraft/advancement/adventure/avoid_vibration.json
deleted file mode 100644
index 4eeb713..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/avoid_vibration.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "parent": "minecraft:adventure/root",
- "criteria": {
- "avoid_vibration": {
- "trigger": "minecraft:avoid_vibration"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.avoid_vibration.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:sculk_sensor"
- },
- "title": {
- "translate": "advancements.adventure.avoid_vibration.title"
- }
- },
- "requirements": [
- [
- "avoid_vibration"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/blowback.json b/src/main/resources/data/minecraft/advancement/adventure/blowback.json
deleted file mode 100644
index 2426093..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/blowback.json
+++ /dev/null
@@ -1,52 +0,0 @@
-{
- "parent": "minecraft:adventure/minecraft_trials_edition",
- "criteria": {
- "blowback": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:breeze"
- }
- }
- ],
- "killing_blow": {
- "direct_entity": {
- "type": "minecraft:breeze_wind_charge"
- },
- "tags": [
- {
- "expected": true,
- "id": "minecraft:is_projectile"
- }
- ]
- }
- },
- "trigger": "minecraft:player_killed_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.blowback.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:wind_charge"
- },
- "title": {
- "translate": "advancements.adventure.blowback.title"
- }
- },
- "requirements": [
- [
- "blowback"
- ]
- ],
- "rewards": {
- "experience": 40
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/brush_armadillo.json b/src/main/resources/data/minecraft/advancement/adventure/brush_armadillo.json
deleted file mode 100644
index ac8d193..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/brush_armadillo.json
+++ /dev/null
@@ -1,40 +0,0 @@
-{
- "parent": "minecraft:adventure/root",
- "criteria": {
- "brush_armadillo": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:armadillo"
- }
- }
- ],
- "item": {
- "items": "minecraft:brush"
- }
- },
- "trigger": "minecraft:player_interacted_with_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.brush_armadillo.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:armadillo_scute"
- },
- "title": {
- "translate": "advancements.adventure.brush_armadillo.title"
- }
- },
- "requirements": [
- [
- "brush_armadillo"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/bullseye.json b/src/main/resources/data/minecraft/advancement/adventure/bullseye.json
deleted file mode 100644
index 2d63571..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/bullseye.json
+++ /dev/null
@@ -1,46 +0,0 @@
-{
- "parent": "minecraft:adventure/shoot_arrow",
- "criteria": {
- "bullseye": {
- "conditions": {
- "projectile": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "distance": {
- "horizontal": {
- "min": 30.0
- }
- }
- }
- }
- ],
- "signal_strength": 15
- },
- "trigger": "minecraft:target_hit"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.bullseye.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:target"
- },
- "title": {
- "translate": "advancements.adventure.bullseye.title"
- }
- },
- "requirements": [
- [
- "bullseye"
- ]
- ],
- "rewards": {
- "experience": 50
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/craft_decorated_pot_using_only_sherds.json b/src/main/resources/data/minecraft/advancement/adventure/craft_decorated_pot_using_only_sherds.json
deleted file mode 100644
index 8f661b4..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/craft_decorated_pot_using_only_sherds.json
+++ /dev/null
@@ -1,51 +0,0 @@
-{
- "parent": "minecraft:adventure/salvage_sherd",
- "criteria": {
- "pot_crafted_using_only_sherds": {
- "conditions": {
- "ingredients": [
- {
- "items": "#minecraft:decorated_pot_sherds"
- },
- {
- "items": "#minecraft:decorated_pot_sherds"
- },
- {
- "items": "#minecraft:decorated_pot_sherds"
- },
- {
- "items": "#minecraft:decorated_pot_sherds"
- }
- ],
- "recipe_id": "minecraft:decorated_pot"
- },
- "trigger": "minecraft:recipe_crafted"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.craft_decorated_pot_using_only_sherds.description"
- },
- "icon": {
- "components": {
- "minecraft:pot_decorations": [
- "minecraft:brick",
- "minecraft:heart_pottery_sherd",
- "minecraft:brick",
- "minecraft:explorer_pottery_sherd"
- ]
- },
- "count": 1,
- "id": "minecraft:decorated_pot"
- },
- "title": {
- "translate": "advancements.adventure.craft_decorated_pot_using_only_sherds.title"
- }
- },
- "requirements": [
- [
- "pot_crafted_using_only_sherds"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/crafters_crafting_crafters.json b/src/main/resources/data/minecraft/advancement/adventure/crafters_crafting_crafters.json
deleted file mode 100644
index 5ffe36e..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/crafters_crafting_crafters.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "parent": "minecraft:adventure/root",
- "criteria": {
- "crafter_crafted_crafter": {
- "conditions": {
- "recipe_id": "minecraft:crafter"
- },
- "trigger": "minecraft:crafter_recipe_crafted"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.crafters_crafting_crafters.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:crafter"
- },
- "title": {
- "translate": "advancements.adventure.crafters_crafting_crafters.title"
- }
- },
- "requirements": [
- [
- "crafter_crafted_crafter"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/fall_from_world_height.json b/src/main/resources/data/minecraft/advancement/adventure/fall_from_world_height.json
deleted file mode 100644
index 8af2284..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/fall_from_world_height.json
+++ /dev/null
@@ -1,55 +0,0 @@
-{
- "parent": "minecraft:adventure/root",
- "criteria": {
- "fall_from_world_height": {
- "conditions": {
- "distance": {
- "y": {
- "min": 379.0
- }
- },
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "position": {
- "y": {
- "max": -59.0
- }
- }
- }
- }
- }
- ],
- "start_position": {
- "position": {
- "y": {
- "min": 319.0
- }
- }
- }
- },
- "trigger": "minecraft:fall_from_height"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.fall_from_world_height.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:water_bucket"
- },
- "title": {
- "translate": "advancements.adventure.fall_from_world_height.title"
- }
- },
- "requirements": [
- [
- "fall_from_world_height"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/hero_of_the_village.json b/src/main/resources/data/minecraft/advancement/adventure/hero_of_the_village.json
deleted file mode 100644
index 21a4bb0..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/hero_of_the_village.json
+++ /dev/null
@@ -1,69 +0,0 @@
-{
- "parent": "minecraft:adventure/voluntary_exile",
- "criteria": {
- "hero_of_the_village": {
- "trigger": "minecraft:hero_of_the_village"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.hero_of_the_village.description"
- },
- "frame": "challenge",
- "hidden": true,
- "icon": {
- "components": {
- "minecraft:banner_patterns": [
- {
- "color": "cyan",
- "pattern": "minecraft:rhombus"
- },
- {
- "color": "light_gray",
- "pattern": "minecraft:stripe_bottom"
- },
- {
- "color": "gray",
- "pattern": "minecraft:stripe_center"
- },
- {
- "color": "light_gray",
- "pattern": "minecraft:border"
- },
- {
- "color": "black",
- "pattern": "minecraft:stripe_middle"
- },
- {
- "color": "light_gray",
- "pattern": "minecraft:half_horizontal"
- },
- {
- "color": "light_gray",
- "pattern": "minecraft:circle"
- },
- {
- "color": "black",
- "pattern": "minecraft:border"
- }
- ],
- "minecraft:hide_additional_tooltip": {},
- "minecraft:item_name": "{\"color\":\"gold\",\"translate\":\"block.minecraft.ominous_banner\"}"
- },
- "count": 1,
- "id": "minecraft:white_banner"
- },
- "title": {
- "translate": "advancements.adventure.hero_of_the_village.title"
- }
- },
- "requirements": [
- [
- "hero_of_the_village"
- ]
- ],
- "rewards": {
- "experience": 100
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/honey_block_slide.json b/src/main/resources/data/minecraft/advancement/adventure/honey_block_slide.json
deleted file mode 100644
index e665dbd..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/honey_block_slide.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "parent": "minecraft:adventure/root",
- "criteria": {
- "honey_block_slide": {
- "conditions": {
- "block": "minecraft:honey_block"
- },
- "trigger": "minecraft:slide_down_block"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.honey_block_slide.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:honey_block"
- },
- "title": {
- "translate": "advancements.adventure.honey_block_slide.title"
- }
- },
- "requirements": [
- [
- "honey_block_slide"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/kill_a_mob.json b/src/main/resources/data/minecraft/advancement/adventure/kill_a_mob.json
deleted file mode 100644
index 85ac6c8..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/kill_a_mob.json
+++ /dev/null
@@ -1,562 +0,0 @@
-{
- "parent": "minecraft:adventure/root",
- "criteria": {
- "minecraft:blaze": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:blaze"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:bogged": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:bogged"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:breeze": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:breeze"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:cave_spider": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:cave_spider"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:creeper": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:creeper"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:drowned": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:drowned"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:elder_guardian": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:elder_guardian"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:ender_dragon": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:ender_dragon"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:enderman": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:enderman"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:endermite": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:endermite"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:evoker": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:evoker"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:ghast": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:ghast"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:guardian": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:guardian"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:hoglin": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:hoglin"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:husk": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:husk"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:magma_cube": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:magma_cube"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:phantom": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:phantom"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:piglin": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:piglin"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:piglin_brute": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:piglin_brute"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:pillager": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:pillager"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:ravager": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:ravager"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:shulker": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:shulker"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:silverfish": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:silverfish"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:skeleton": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:skeleton"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:slime": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:slime"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:spider": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:spider"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:stray": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:stray"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:vex": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:vex"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:vindicator": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:vindicator"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:witch": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:witch"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:wither": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:wither"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:wither_skeleton": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:wither_skeleton"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:zoglin": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:zoglin"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:zombie": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:zombie"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:zombie_villager": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:zombie_villager"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:zombified_piglin": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:zombified_piglin"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.kill_a_mob.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:iron_sword"
- },
- "title": {
- "translate": "advancements.adventure.kill_a_mob.title"
- }
- },
- "requirements": [
- [
- "minecraft:blaze",
- "minecraft:bogged",
- "minecraft:breeze",
- "minecraft:cave_spider",
- "minecraft:creeper",
- "minecraft:drowned",
- "minecraft:elder_guardian",
- "minecraft:ender_dragon",
- "minecraft:enderman",
- "minecraft:endermite",
- "minecraft:evoker",
- "minecraft:ghast",
- "minecraft:guardian",
- "minecraft:hoglin",
- "minecraft:husk",
- "minecraft:magma_cube",
- "minecraft:phantom",
- "minecraft:piglin",
- "minecraft:piglin_brute",
- "minecraft:pillager",
- "minecraft:ravager",
- "minecraft:shulker",
- "minecraft:silverfish",
- "minecraft:skeleton",
- "minecraft:slime",
- "minecraft:spider",
- "minecraft:stray",
- "minecraft:vex",
- "minecraft:vindicator",
- "minecraft:witch",
- "minecraft:wither_skeleton",
- "minecraft:wither",
- "minecraft:zoglin",
- "minecraft:zombie_villager",
- "minecraft:zombie",
- "minecraft:zombified_piglin"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/kill_all_mobs.json b/src/main/resources/data/minecraft/advancement/adventure/kill_all_mobs.json
deleted file mode 100644
index e7ffa09..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/kill_all_mobs.json
+++ /dev/null
@@ -1,636 +0,0 @@
-{
- "parent": "minecraft:adventure/kill_a_mob",
- "criteria": {
- "minecraft:blaze": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:blaze"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:bogged": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:bogged"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:breeze": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:breeze"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:cave_spider": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:cave_spider"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:creeper": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:creeper"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:drowned": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:drowned"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:elder_guardian": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:elder_guardian"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:ender_dragon": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:ender_dragon"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:enderman": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:enderman"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:endermite": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:endermite"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:evoker": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:evoker"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:ghast": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:ghast"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:guardian": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:guardian"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:hoglin": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:hoglin"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:husk": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:husk"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:magma_cube": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:magma_cube"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:phantom": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:phantom"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:piglin": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:piglin"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:piglin_brute": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:piglin_brute"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:pillager": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:pillager"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:ravager": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:ravager"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:shulker": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:shulker"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:silverfish": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:silverfish"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:skeleton": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:skeleton"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:slime": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:slime"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:spider": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:spider"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:stray": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:stray"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:vex": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:vex"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:vindicator": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:vindicator"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:witch": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:witch"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:wither": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:wither"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:wither_skeleton": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:wither_skeleton"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:zoglin": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:zoglin"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:zombie": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:zombie"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:zombie_villager": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:zombie_villager"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- },
- "minecraft:zombified_piglin": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:zombified_piglin"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.kill_all_mobs.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:diamond_sword"
- },
- "title": {
- "translate": "advancements.adventure.kill_all_mobs.title"
- }
- },
- "requirements": [
- [
- "minecraft:blaze"
- ],
- [
- "minecraft:bogged"
- ],
- [
- "minecraft:breeze"
- ],
- [
- "minecraft:cave_spider"
- ],
- [
- "minecraft:creeper"
- ],
- [
- "minecraft:drowned"
- ],
- [
- "minecraft:elder_guardian"
- ],
- [
- "minecraft:ender_dragon"
- ],
- [
- "minecraft:enderman"
- ],
- [
- "minecraft:endermite"
- ],
- [
- "minecraft:evoker"
- ],
- [
- "minecraft:ghast"
- ],
- [
- "minecraft:guardian"
- ],
- [
- "minecraft:hoglin"
- ],
- [
- "minecraft:husk"
- ],
- [
- "minecraft:magma_cube"
- ],
- [
- "minecraft:phantom"
- ],
- [
- "minecraft:piglin"
- ],
- [
- "minecraft:piglin_brute"
- ],
- [
- "minecraft:pillager"
- ],
- [
- "minecraft:ravager"
- ],
- [
- "minecraft:shulker"
- ],
- [
- "minecraft:silverfish"
- ],
- [
- "minecraft:skeleton"
- ],
- [
- "minecraft:slime"
- ],
- [
- "minecraft:spider"
- ],
- [
- "minecraft:stray"
- ],
- [
- "minecraft:vex"
- ],
- [
- "minecraft:vindicator"
- ],
- [
- "minecraft:witch"
- ],
- [
- "minecraft:wither_skeleton"
- ],
- [
- "minecraft:wither"
- ],
- [
- "minecraft:zoglin"
- ],
- [
- "minecraft:zombie_villager"
- ],
- [
- "minecraft:zombie"
- ],
- [
- "minecraft:zombified_piglin"
- ]
- ],
- "rewards": {
- "experience": 100
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/kill_mob_near_sculk_catalyst.json b/src/main/resources/data/minecraft/advancement/adventure/kill_mob_near_sculk_catalyst.json
deleted file mode 100644
index e7218a4..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/kill_mob_near_sculk_catalyst.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "parent": "minecraft:adventure/kill_a_mob",
- "criteria": {
- "kill_mob_near_sculk_catalyst": {
- "trigger": "minecraft:kill_mob_near_sculk_catalyst"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.kill_mob_near_sculk_catalyst.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:sculk_catalyst"
- },
- "title": {
- "translate": "advancements.adventure.kill_mob_near_sculk_catalyst.title"
- }
- },
- "requirements": [
- [
- "kill_mob_near_sculk_catalyst"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/lighten_up.json b/src/main/resources/data/minecraft/advancement/adventure/lighten_up.json
deleted file mode 100644
index 4311397..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/lighten_up.json
+++ /dev/null
@@ -1,61 +0,0 @@
-{
- "parent": "minecraft:adventure/minecraft_trials_edition",
- "criteria": {
- "lighten_up": {
- "conditions": {
- "location": [
- {
- "condition": "minecraft:location_check",
- "predicate": {
- "block": {
- "blocks": [
- "minecraft:oxidized_copper_bulb",
- "minecraft:weathered_copper_bulb",
- "minecraft:exposed_copper_bulb",
- "minecraft:waxed_oxidized_copper_bulb",
- "minecraft:waxed_weathered_copper_bulb",
- "minecraft:waxed_exposed_copper_bulb"
- ],
- "state": {
- "lit": "true"
- }
- }
- }
- },
- {
- "condition": "minecraft:match_tool",
- "predicate": {
- "items": [
- "minecraft:wooden_axe",
- "minecraft:golden_axe",
- "minecraft:stone_axe",
- "minecraft:iron_axe",
- "minecraft:diamond_axe",
- "minecraft:netherite_axe"
- ]
- }
- }
- ]
- },
- "trigger": "minecraft:item_used_on_block"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.lighten_up.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:copper_bulb"
- },
- "title": {
- "translate": "advancements.adventure.lighten_up.title"
- }
- },
- "requirements": [
- [
- "lighten_up"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/lightning_rod_with_villager_no_fire.json b/src/main/resources/data/minecraft/advancement/adventure/lightning_rod_with_villager_no_fire.json
deleted file mode 100644
index 24160c5..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/lightning_rod_with_villager_no_fire.json
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- "parent": "minecraft:adventure/root",
- "criteria": {
- "lightning_rod_with_villager_no_fire": {
- "conditions": {
- "bystander": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:villager"
- }
- }
- ],
- "lightning": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "distance": {
- "absolute": {
- "max": 30.0
- }
- },
- "type_specific": {
- "type": "minecraft:lightning",
- "blocks_set_on_fire": 0
- }
- }
- }
- ]
- },
- "trigger": "minecraft:lightning_strike"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.lightning_rod_with_villager_no_fire.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:lightning_rod"
- },
- "title": {
- "translate": "advancements.adventure.lightning_rod_with_villager_no_fire.title"
- }
- },
- "requirements": [
- [
- "lightning_rod_with_villager_no_fire"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/minecraft_trials_edition.json b/src/main/resources/data/minecraft/advancement/adventure/minecraft_trials_edition.json
deleted file mode 100644
index b89cb9d..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/minecraft_trials_edition.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "parent": "minecraft:adventure/root",
- "criteria": {
- "minecraft_trials_edition": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "structures": "minecraft:trial_chambers"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.minecraft_trials_edition.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:chiseled_tuff"
- },
- "title": {
- "translate": "advancements.adventure.minecraft_trials_edition.title"
- }
- },
- "requirements": [
- [
- "minecraft_trials_edition"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/ol_betsy.json b/src/main/resources/data/minecraft/advancement/adventure/ol_betsy.json
deleted file mode 100644
index 410ba6a..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/ol_betsy.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "parent": "minecraft:adventure/root",
- "criteria": {
- "shot_crossbow": {
- "conditions": {
- "item": {
- "items": "minecraft:crossbow"
- }
- },
- "trigger": "minecraft:shot_crossbow"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.ol_betsy.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:crossbow"
- },
- "title": {
- "translate": "advancements.adventure.ol_betsy.title"
- }
- },
- "requirements": [
- [
- "shot_crossbow"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/overoverkill.json b/src/main/resources/data/minecraft/advancement/adventure/overoverkill.json
deleted file mode 100644
index 4674533..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/overoverkill.json
+++ /dev/null
@@ -1,53 +0,0 @@
-{
- "parent": "minecraft:adventure/minecraft_trials_edition",
- "criteria": {
- "overoverkill": {
- "conditions": {
- "damage": {
- "type": {
- "direct_entity": {
- "type": "minecraft:player",
- "equipment": {
- "mainhand": {
- "items": "minecraft:mace"
- }
- }
- },
- "tags": [
- {
- "expected": true,
- "id": "minecraft:is_player_attack"
- }
- ]
- },
- "dealt": {
- "min": 100.0
- }
- }
- },
- "trigger": "minecraft:player_hurt_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.overoverkill.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:mace"
- },
- "title": {
- "translate": "advancements.adventure.overoverkill.title"
- }
- },
- "requirements": [
- [
- "overoverkill"
- ]
- ],
- "rewards": {
- "experience": 50
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/play_jukebox_in_meadows.json b/src/main/resources/data/minecraft/advancement/adventure/play_jukebox_in_meadows.json
deleted file mode 100644
index cc798d4..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/play_jukebox_in_meadows.json
+++ /dev/null
@@ -1,47 +0,0 @@
-{
- "parent": "minecraft:adventure/sleep_in_bed",
- "criteria": {
- "play_jukebox_in_meadows": {
- "conditions": {
- "location": [
- {
- "condition": "minecraft:location_check",
- "predicate": {
- "biomes": "minecraft:meadow",
- "block": {
- "blocks": "minecraft:jukebox"
- }
- }
- },
- {
- "condition": "minecraft:match_tool",
- "predicate": {
- "predicates": {
- "minecraft:jukebox_playable": {}
- }
- }
- }
- ]
- },
- "trigger": "minecraft:item_used_on_block"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.play_jukebox_in_meadows.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:jukebox"
- },
- "title": {
- "translate": "advancements.adventure.play_jukebox_in_meadows.title"
- }
- },
- "requirements": [
- [
- "play_jukebox_in_meadows"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/read_power_of_chiseled_bookshelf.json b/src/main/resources/data/minecraft/advancement/adventure/read_power_of_chiseled_bookshelf.json
deleted file mode 100644
index 7de7905..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/read_power_of_chiseled_bookshelf.json
+++ /dev/null
@@ -1,184 +0,0 @@
-{
- "parent": "minecraft:adventure/root",
- "criteria": {
- "chiseled_bookshelf": {
- "conditions": {
- "location": [
- {
- "block": "minecraft:chiseled_bookshelf",
- "condition": "minecraft:block_state_property"
- },
- {
- "condition": "minecraft:any_of",
- "terms": [
- {
- "condition": "minecraft:location_check",
- "offsetZ": 1,
- "predicate": {
- "block": {
- "blocks": "minecraft:comparator",
- "state": {
- "facing": "north"
- }
- }
- }
- },
- {
- "condition": "minecraft:location_check",
- "offsetZ": -1,
- "predicate": {
- "block": {
- "blocks": "minecraft:comparator",
- "state": {
- "facing": "south"
- }
- }
- }
- },
- {
- "condition": "minecraft:location_check",
- "offsetX": 1,
- "predicate": {
- "block": {
- "blocks": "minecraft:comparator",
- "state": {
- "facing": "west"
- }
- }
- }
- },
- {
- "condition": "minecraft:location_check",
- "offsetX": -1,
- "predicate": {
- "block": {
- "blocks": "minecraft:comparator",
- "state": {
- "facing": "east"
- }
- }
- }
- }
- ]
- }
- ]
- },
- "trigger": "minecraft:placed_block"
- },
- "comparator": {
- "conditions": {
- "location": [
- {
- "condition": "minecraft:any_of",
- "terms": [
- {
- "condition": "minecraft:all_of",
- "terms": [
- {
- "block": "minecraft:comparator",
- "condition": "minecraft:block_state_property",
- "properties": {
- "facing": "north"
- }
- },
- {
- "condition": "minecraft:location_check",
- "offsetZ": -1,
- "predicate": {
- "block": {
- "blocks": "minecraft:chiseled_bookshelf"
- }
- }
- }
- ]
- },
- {
- "condition": "minecraft:all_of",
- "terms": [
- {
- "block": "minecraft:comparator",
- "condition": "minecraft:block_state_property",
- "properties": {
- "facing": "south"
- }
- },
- {
- "condition": "minecraft:location_check",
- "offsetZ": 1,
- "predicate": {
- "block": {
- "blocks": "minecraft:chiseled_bookshelf"
- }
- }
- }
- ]
- },
- {
- "condition": "minecraft:all_of",
- "terms": [
- {
- "block": "minecraft:comparator",
- "condition": "minecraft:block_state_property",
- "properties": {
- "facing": "west"
- }
- },
- {
- "condition": "minecraft:location_check",
- "offsetX": -1,
- "predicate": {
- "block": {
- "blocks": "minecraft:chiseled_bookshelf"
- }
- }
- }
- ]
- },
- {
- "condition": "minecraft:all_of",
- "terms": [
- {
- "block": "minecraft:comparator",
- "condition": "minecraft:block_state_property",
- "properties": {
- "facing": "east"
- }
- },
- {
- "condition": "minecraft:location_check",
- "offsetX": 1,
- "predicate": {
- "block": {
- "blocks": "minecraft:chiseled_bookshelf"
- }
- }
- }
- ]
- }
- ]
- }
- ]
- },
- "trigger": "minecraft:placed_block"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.read_power_from_chiseled_bookshelf.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:chiseled_bookshelf"
- },
- "title": {
- "translate": "advancements.adventure.read_power_from_chiseled_bookshelf.title"
- }
- },
- "requirements": [
- [
- "chiseled_bookshelf",
- "comparator"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/revaulting.json b/src/main/resources/data/minecraft/advancement/adventure/revaulting.json
deleted file mode 100644
index 0c3d0c7..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/revaulting.json
+++ /dev/null
@@ -1,48 +0,0 @@
-{
- "parent": "minecraft:adventure/under_lock_and_key",
- "criteria": {
- "revaulting": {
- "conditions": {
- "location": [
- {
- "condition": "minecraft:location_check",
- "predicate": {
- "block": {
- "blocks": "minecraft:vault",
- "state": {
- "ominous": "true"
- }
- }
- }
- },
- {
- "condition": "minecraft:match_tool",
- "predicate": {
- "items": "minecraft:ominous_trial_key"
- }
- }
- ]
- },
- "trigger": "minecraft:item_used_on_block"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.revaulting.description"
- },
- "frame": "goal",
- "icon": {
- "count": 1,
- "id": "minecraft:ominous_trial_key"
- },
- "title": {
- "translate": "advancements.adventure.revaulting.title"
- }
- },
- "requirements": [
- [
- "revaulting"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/root.json b/src/main/resources/data/minecraft/advancement/adventure/root.json
deleted file mode 100644
index a6b2855..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/root.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "criteria": {
- "killed_by_something": {
- "trigger": "minecraft:entity_killed_player"
- },
- "killed_something": {
- "trigger": "minecraft:player_killed_entity"
- }
- },
- "display": {
- "announce_to_chat": false,
- "background": "minecraft:textures/gui/advancements/backgrounds/adventure.png",
- "description": {
- "translate": "advancements.adventure.root.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:map"
- },
- "show_toast": false,
- "title": {
- "translate": "advancements.adventure.root.title"
- }
- },
- "requirements": [
- [
- "killed_something",
- "killed_by_something"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/salvage_sherd.json b/src/main/resources/data/minecraft/advancement/adventure/salvage_sherd.json
deleted file mode 100644
index c2ea7ac..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/salvage_sherd.json
+++ /dev/null
@@ -1,77 +0,0 @@
-{
- "parent": "minecraft:adventure/root",
- "criteria": {
- "desert_pyramid": {
- "conditions": {
- "loot_table": "minecraft:archaeology/desert_pyramid"
- },
- "trigger": "minecraft:player_generates_container_loot"
- },
- "desert_well": {
- "conditions": {
- "loot_table": "minecraft:archaeology/desert_well"
- },
- "trigger": "minecraft:player_generates_container_loot"
- },
- "has_sherd": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:decorated_pot_sherds"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "ocean_ruin_cold": {
- "conditions": {
- "loot_table": "minecraft:archaeology/ocean_ruin_cold"
- },
- "trigger": "minecraft:player_generates_container_loot"
- },
- "ocean_ruin_warm": {
- "conditions": {
- "loot_table": "minecraft:archaeology/ocean_ruin_warm"
- },
- "trigger": "minecraft:player_generates_container_loot"
- },
- "trail_ruins_common": {
- "conditions": {
- "loot_table": "minecraft:archaeology/trail_ruins_common"
- },
- "trigger": "minecraft:player_generates_container_loot"
- },
- "trail_ruins_rare": {
- "conditions": {
- "loot_table": "minecraft:archaeology/trail_ruins_rare"
- },
- "trigger": "minecraft:player_generates_container_loot"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.salvage_sherd.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:brush"
- },
- "title": {
- "translate": "advancements.adventure.salvage_sherd.title"
- }
- },
- "requirements": [
- [
- "desert_pyramid",
- "desert_well",
- "ocean_ruin_cold",
- "ocean_ruin_warm",
- "trail_ruins_rare",
- "trail_ruins_common"
- ],
- [
- "has_sherd"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/shoot_arrow.json b/src/main/resources/data/minecraft/advancement/adventure/shoot_arrow.json
deleted file mode 100644
index 5584f99..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/shoot_arrow.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
- "parent": "minecraft:adventure/kill_a_mob",
- "criteria": {
- "shot_arrow": {
- "conditions": {
- "damage": {
- "type": {
- "direct_entity": {
- "type": "#minecraft:arrows"
- },
- "tags": [
- {
- "expected": true,
- "id": "minecraft:is_projectile"
- }
- ]
- }
- }
- },
- "trigger": "minecraft:player_hurt_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.shoot_arrow.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:bow"
- },
- "title": {
- "translate": "advancements.adventure.shoot_arrow.title"
- }
- },
- "requirements": [
- [
- "shot_arrow"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/sleep_in_bed.json b/src/main/resources/data/minecraft/advancement/adventure/sleep_in_bed.json
deleted file mode 100644
index 3cd59de..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/sleep_in_bed.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "parent": "minecraft:adventure/root",
- "criteria": {
- "slept_in_bed": {
- "trigger": "minecraft:slept_in_bed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.sleep_in_bed.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:red_bed"
- },
- "title": {
- "translate": "advancements.adventure.sleep_in_bed.title"
- }
- },
- "requirements": [
- [
- "slept_in_bed"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/sniper_duel.json b/src/main/resources/data/minecraft/advancement/adventure/sniper_duel.json
deleted file mode 100644
index c138880..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/sniper_duel.json
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- "parent": "minecraft:adventure/shoot_arrow",
- "criteria": {
- "killed_skeleton": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:skeleton",
- "distance": {
- "horizontal": {
- "min": 50.0
- }
- }
- }
- }
- ],
- "killing_blow": {
- "tags": [
- {
- "expected": true,
- "id": "minecraft:is_projectile"
- }
- ]
- }
- },
- "trigger": "minecraft:player_killed_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.sniper_duel.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:arrow"
- },
- "title": {
- "translate": "advancements.adventure.sniper_duel.title"
- }
- },
- "requirements": [
- [
- "killed_skeleton"
- ]
- ],
- "rewards": {
- "experience": 50
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/spyglass_at_dragon.json b/src/main/resources/data/minecraft/advancement/adventure/spyglass_at_dragon.json
deleted file mode 100644
index 6063eff..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/spyglass_at_dragon.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
- "parent": "minecraft:adventure/spyglass_at_ghast",
- "criteria": {
- "spyglass_at_dragon": {
- "conditions": {
- "item": {
- "items": "minecraft:spyglass"
- },
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:player",
- "looking_at": {
- "type": "minecraft:ender_dragon"
- }
- }
- }
- }
- ]
- },
- "trigger": "minecraft:using_item"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.spyglass_at_dragon.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:spyglass"
- },
- "title": {
- "translate": "advancements.adventure.spyglass_at_dragon.title"
- }
- },
- "requirements": [
- [
- "spyglass_at_dragon"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/spyglass_at_ghast.json b/src/main/resources/data/minecraft/advancement/adventure/spyglass_at_ghast.json
deleted file mode 100644
index 03317f4..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/spyglass_at_ghast.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
- "parent": "minecraft:adventure/spyglass_at_parrot",
- "criteria": {
- "spyglass_at_ghast": {
- "conditions": {
- "item": {
- "items": "minecraft:spyglass"
- },
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:player",
- "looking_at": {
- "type": "minecraft:ghast"
- }
- }
- }
- }
- ]
- },
- "trigger": "minecraft:using_item"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.spyglass_at_ghast.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:spyglass"
- },
- "title": {
- "translate": "advancements.adventure.spyglass_at_ghast.title"
- }
- },
- "requirements": [
- [
- "spyglass_at_ghast"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/spyglass_at_parrot.json b/src/main/resources/data/minecraft/advancement/adventure/spyglass_at_parrot.json
deleted file mode 100644
index 5453e1e..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/spyglass_at_parrot.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
- "parent": "minecraft:adventure/root",
- "criteria": {
- "spyglass_at_parrot": {
- "conditions": {
- "item": {
- "items": "minecraft:spyglass"
- },
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:player",
- "looking_at": {
- "type": "minecraft:parrot"
- }
- }
- }
- }
- ]
- },
- "trigger": "minecraft:using_item"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.spyglass_at_parrot.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:spyglass"
- },
- "title": {
- "translate": "advancements.adventure.spyglass_at_parrot.title"
- }
- },
- "requirements": [
- [
- "spyglass_at_parrot"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/summon_iron_golem.json b/src/main/resources/data/minecraft/advancement/adventure/summon_iron_golem.json
deleted file mode 100644
index 6665e2a..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/summon_iron_golem.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "parent": "minecraft:adventure/trade",
- "criteria": {
- "summoned_golem": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:iron_golem"
- }
- }
- ]
- },
- "trigger": "minecraft:summoned_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.summon_iron_golem.description"
- },
- "frame": "goal",
- "icon": {
- "count": 1,
- "id": "minecraft:carved_pumpkin"
- },
- "title": {
- "translate": "advancements.adventure.summon_iron_golem.title"
- }
- },
- "requirements": [
- [
- "summoned_golem"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/throw_trident.json b/src/main/resources/data/minecraft/advancement/adventure/throw_trident.json
deleted file mode 100644
index c9094c6..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/throw_trident.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
- "parent": "minecraft:adventure/kill_a_mob",
- "criteria": {
- "shot_trident": {
- "conditions": {
- "damage": {
- "type": {
- "direct_entity": {
- "type": "minecraft:trident"
- },
- "tags": [
- {
- "expected": true,
- "id": "minecraft:is_projectile"
- }
- ]
- }
- }
- },
- "trigger": "minecraft:player_hurt_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.throw_trident.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:trident"
- },
- "title": {
- "translate": "advancements.adventure.throw_trident.title"
- }
- },
- "requirements": [
- [
- "shot_trident"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/totem_of_undying.json b/src/main/resources/data/minecraft/advancement/adventure/totem_of_undying.json
deleted file mode 100644
index c5e907c..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/totem_of_undying.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:adventure/kill_a_mob",
- "criteria": {
- "used_totem": {
- "conditions": {
- "item": {
- "items": "minecraft:totem_of_undying"
- }
- },
- "trigger": "minecraft:used_totem"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.totem_of_undying.description"
- },
- "frame": "goal",
- "icon": {
- "count": 1,
- "id": "minecraft:totem_of_undying"
- },
- "title": {
- "translate": "advancements.adventure.totem_of_undying.title"
- }
- },
- "requirements": [
- [
- "used_totem"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/trade.json b/src/main/resources/data/minecraft/advancement/adventure/trade.json
deleted file mode 100644
index b2cbcfd..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/trade.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "parent": "minecraft:adventure/root",
- "criteria": {
- "traded": {
- "trigger": "minecraft:villager_trade"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.trade.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:emerald"
- },
- "title": {
- "translate": "advancements.adventure.trade.title"
- }
- },
- "requirements": [
- [
- "traded"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/trade_at_world_height.json b/src/main/resources/data/minecraft/advancement/adventure/trade_at_world_height.json
deleted file mode 100644
index 02faa83..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/trade_at_world_height.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:adventure/trade",
- "criteria": {
- "trade_at_world_height": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "position": {
- "y": {
- "min": 319.0
- }
- }
- }
- }
- }
- ]
- },
- "trigger": "minecraft:villager_trade"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.trade_at_world_height.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:emerald"
- },
- "title": {
- "translate": "advancements.adventure.trade_at_world_height.title"
- }
- },
- "requirements": [
- [
- "trade_at_world_height"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/trim_with_all_exclusive_armor_patterns.json b/src/main/resources/data/minecraft/advancement/adventure/trim_with_all_exclusive_armor_patterns.json
deleted file mode 100644
index a61139d..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/trim_with_all_exclusive_armor_patterns.json
+++ /dev/null
@@ -1,96 +0,0 @@
-{
- "parent": "minecraft:adventure/trim_with_any_armor_pattern",
- "criteria": {
- "armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:rib_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:silence_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:snout_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:spire_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:tide_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:vex_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:ward_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:wayfinder_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.trim_with_all_exclusive_armor_patterns.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:silence_armor_trim_smithing_template"
- },
- "title": {
- "translate": "advancements.adventure.trim_with_all_exclusive_armor_patterns.title"
- }
- },
- "requirements": [
- [
- "armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim"
- ],
- [
- "armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim"
- ],
- [
- "armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim"
- ],
- [
- "armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim"
- ],
- [
- "armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim"
- ],
- [
- "armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim"
- ],
- [
- "armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim"
- ],
- [
- "armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim"
- ]
- ],
- "rewards": {
- "experience": 150
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/trim_with_any_armor_pattern.json b/src/main/resources/data/minecraft/advancement/adventure/trim_with_any_armor_pattern.json
deleted file mode 100644
index 6576f32..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/trim_with_any_armor_pattern.json
+++ /dev/null
@@ -1,148 +0,0 @@
-{
- "parent": "minecraft:adventure/root",
- "criteria": {
- "armor_trimmed_minecraft:bolt_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:bolt_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:coast_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:coast_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:dune_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:dune_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:eye_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:eye_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:flow_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:flow_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:host_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:host_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:raiser_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:raiser_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:rib_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:sentry_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:sentry_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:shaper_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:shaper_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:silence_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:snout_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:spire_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:tide_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:vex_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:ward_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:wayfinder_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- },
- "armor_trimmed_minecraft:wild_armor_trim_smithing_template_smithing_trim": {
- "conditions": {
- "recipe_id": "minecraft:wild_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_crafted"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.trim_with_any_armor_pattern.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:dune_armor_trim_smithing_template"
- },
- "title": {
- "translate": "advancements.adventure.trim_with_any_armor_pattern.title"
- }
- },
- "requirements": [
- [
- "armor_trimmed_minecraft:bolt_armor_trim_smithing_template_smithing_trim",
- "armor_trimmed_minecraft:coast_armor_trim_smithing_template_smithing_trim",
- "armor_trimmed_minecraft:dune_armor_trim_smithing_template_smithing_trim",
- "armor_trimmed_minecraft:eye_armor_trim_smithing_template_smithing_trim",
- "armor_trimmed_minecraft:flow_armor_trim_smithing_template_smithing_trim",
- "armor_trimmed_minecraft:host_armor_trim_smithing_template_smithing_trim",
- "armor_trimmed_minecraft:raiser_armor_trim_smithing_template_smithing_trim",
- "armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim",
- "armor_trimmed_minecraft:sentry_armor_trim_smithing_template_smithing_trim",
- "armor_trimmed_minecraft:shaper_armor_trim_smithing_template_smithing_trim",
- "armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim",
- "armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim",
- "armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim",
- "armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim",
- "armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim",
- "armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim",
- "armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim",
- "armor_trimmed_minecraft:wild_armor_trim_smithing_template_smithing_trim"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/two_birds_one_arrow.json b/src/main/resources/data/minecraft/advancement/adventure/two_birds_one_arrow.json
deleted file mode 100644
index adea222..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/two_birds_one_arrow.json
+++ /dev/null
@@ -1,52 +0,0 @@
-{
- "parent": "minecraft:adventure/ol_betsy",
- "criteria": {
- "two_birds": {
- "conditions": {
- "victims": [
- [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:phantom"
- }
- }
- ],
- [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:phantom"
- }
- }
- ]
- ]
- },
- "trigger": "minecraft:killed_by_crossbow"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.two_birds_one_arrow.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:crossbow"
- },
- "title": {
- "translate": "advancements.adventure.two_birds_one_arrow.title"
- }
- },
- "requirements": [
- [
- "two_birds"
- ]
- ],
- "rewards": {
- "experience": 65
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/under_lock_and_key.json b/src/main/resources/data/minecraft/advancement/adventure/under_lock_and_key.json
deleted file mode 100644
index 952b4fd..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/under_lock_and_key.json
+++ /dev/null
@@ -1,47 +0,0 @@
-{
- "parent": "minecraft:adventure/minecraft_trials_edition",
- "criteria": {
- "under_lock_and_key": {
- "conditions": {
- "location": [
- {
- "condition": "minecraft:location_check",
- "predicate": {
- "block": {
- "blocks": "minecraft:vault",
- "state": {
- "ominous": "false"
- }
- }
- }
- },
- {
- "condition": "minecraft:match_tool",
- "predicate": {
- "items": "minecraft:trial_key"
- }
- }
- ]
- },
- "trigger": "minecraft:item_used_on_block"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.under_lock_and_key.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:trial_key"
- },
- "title": {
- "translate": "advancements.adventure.under_lock_and_key.title"
- }
- },
- "requirements": [
- [
- "under_lock_and_key"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/very_very_frightening.json b/src/main/resources/data/minecraft/advancement/adventure/very_very_frightening.json
deleted file mode 100644
index 38e6ffc..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/very_very_frightening.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "parent": "minecraft:adventure/throw_trident",
- "criteria": {
- "struck_villager": {
- "conditions": {
- "victims": [
- [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:villager"
- }
- }
- ]
- ]
- },
- "trigger": "minecraft:channeled_lightning"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.very_very_frightening.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:trident"
- },
- "title": {
- "translate": "advancements.adventure.very_very_frightening.title"
- }
- },
- "requirements": [
- [
- "struck_villager"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/voluntary_exile.json b/src/main/resources/data/minecraft/advancement/adventure/voluntary_exile.json
deleted file mode 100644
index e45f9f6..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/voluntary_exile.json
+++ /dev/null
@@ -1,129 +0,0 @@
-{
- "parent": "minecraft:adventure/root",
- "criteria": {
- "voluntary_exile": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "#minecraft:raiders",
- "equipment": {
- "head": {
- "components": {
- "minecraft:attribute_modifiers": {
- "modifiers": []
- },
- "minecraft:banner_patterns": [
- {
- "color": "cyan",
- "pattern": "minecraft:rhombus"
- },
- {
- "color": "light_gray",
- "pattern": "minecraft:stripe_bottom"
- },
- {
- "color": "gray",
- "pattern": "minecraft:stripe_center"
- },
- {
- "color": "light_gray",
- "pattern": "minecraft:border"
- },
- {
- "color": "black",
- "pattern": "minecraft:stripe_middle"
- },
- {
- "color": "light_gray",
- "pattern": "minecraft:half_horizontal"
- },
- {
- "color": "light_gray",
- "pattern": "minecraft:circle"
- },
- {
- "color": "black",
- "pattern": "minecraft:border"
- }
- ],
- "minecraft:enchantments": {
- "levels": {}
- },
- "minecraft:hide_additional_tooltip": {},
- "minecraft:item_name": "{\"color\":\"gold\",\"translate\":\"block.minecraft.ominous_banner\"}",
- "minecraft:lore": [],
- "minecraft:max_stack_size": 16,
- "minecraft:rarity": "common",
- "minecraft:repair_cost": 0
- },
- "items": "minecraft:white_banner"
- }
- }
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.voluntary_exile.description"
- },
- "hidden": true,
- "icon": {
- "components": {
- "minecraft:banner_patterns": [
- {
- "color": "cyan",
- "pattern": "minecraft:rhombus"
- },
- {
- "color": "light_gray",
- "pattern": "minecraft:stripe_bottom"
- },
- {
- "color": "gray",
- "pattern": "minecraft:stripe_center"
- },
- {
- "color": "light_gray",
- "pattern": "minecraft:border"
- },
- {
- "color": "black",
- "pattern": "minecraft:stripe_middle"
- },
- {
- "color": "light_gray",
- "pattern": "minecraft:half_horizontal"
- },
- {
- "color": "light_gray",
- "pattern": "minecraft:circle"
- },
- {
- "color": "black",
- "pattern": "minecraft:border"
- }
- ],
- "minecraft:hide_additional_tooltip": {},
- "minecraft:item_name": "{\"color\":\"gold\",\"translate\":\"block.minecraft.ominous_banner\"}"
- },
- "count": 1,
- "id": "minecraft:white_banner"
- },
- "title": {
- "translate": "advancements.adventure.voluntary_exile.title"
- }
- },
- "requirements": [
- [
- "voluntary_exile"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/walk_on_powder_snow_with_leather_boots.json b/src/main/resources/data/minecraft/advancement/adventure/walk_on_powder_snow_with_leather_boots.json
deleted file mode 100644
index 09ba124..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/walk_on_powder_snow_with_leather_boots.json
+++ /dev/null
@@ -1,46 +0,0 @@
-{
- "parent": "minecraft:adventure/sleep_in_bed",
- "criteria": {
- "walk_on_powder_snow_with_leather_boots": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "equipment": {
- "feet": {
- "items": "minecraft:leather_boots"
- }
- },
- "stepping_on": {
- "block": {
- "blocks": "minecraft:powder_snow"
- }
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.walk_on_powder_snow_with_leather_boots.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:leather_boots"
- },
- "title": {
- "translate": "advancements.adventure.walk_on_powder_snow_with_leather_boots.title"
- }
- },
- "requirements": [
- [
- "walk_on_powder_snow_with_leather_boots"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/who_needs_rockets.json b/src/main/resources/data/minecraft/advancement/adventure/who_needs_rockets.json
deleted file mode 100644
index 2f08766..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/who_needs_rockets.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
- "parent": "minecraft:adventure/minecraft_trials_edition",
- "criteria": {
- "who_needs_rockets": {
- "conditions": {
- "cause": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:wind_charge"
- }
- }
- ],
- "distance": {
- "y": {
- "min": 7.0
- }
- }
- },
- "trigger": "minecraft:fall_after_explosion"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.who_needs_rockets.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:wind_charge"
- },
- "title": {
- "translate": "advancements.adventure.who_needs_rockets.title"
- }
- },
- "requirements": [
- [
- "who_needs_rockets"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/adventure/whos_the_pillager_now.json b/src/main/resources/data/minecraft/advancement/adventure/whos_the_pillager_now.json
deleted file mode 100644
index 8a59f94..0000000
--- a/src/main/resources/data/minecraft/advancement/adventure/whos_the_pillager_now.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "parent": "minecraft:adventure/ol_betsy",
- "criteria": {
- "kill_pillager": {
- "conditions": {
- "victims": [
- [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:pillager"
- }
- }
- ]
- ]
- },
- "trigger": "minecraft:killed_by_crossbow"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.adventure.whos_the_pillager_now.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:crossbow"
- },
- "title": {
- "translate": "advancements.adventure.whos_the_pillager_now.title"
- }
- },
- "requirements": [
- [
- "kill_pillager"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/end/dragon_breath.json b/src/main/resources/data/minecraft/advancement/end/dragon_breath.json
deleted file mode 100644
index 4d8cf62..0000000
--- a/src/main/resources/data/minecraft/advancement/end/dragon_breath.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "parent": "minecraft:end/kill_dragon",
- "criteria": {
- "dragon_breath": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dragon_breath"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.end.dragon_breath.description"
- },
- "frame": "goal",
- "icon": {
- "count": 1,
- "id": "minecraft:dragon_breath"
- },
- "title": {
- "translate": "advancements.end.dragon_breath.title"
- }
- },
- "requirements": [
- [
- "dragon_breath"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/end/dragon_egg.json b/src/main/resources/data/minecraft/advancement/end/dragon_egg.json
deleted file mode 100644
index 906dbbc..0000000
--- a/src/main/resources/data/minecraft/advancement/end/dragon_egg.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "parent": "minecraft:end/kill_dragon",
- "criteria": {
- "dragon_egg": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dragon_egg"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.end.dragon_egg.description"
- },
- "frame": "goal",
- "icon": {
- "count": 1,
- "id": "minecraft:dragon_egg"
- },
- "title": {
- "translate": "advancements.end.dragon_egg.title"
- }
- },
- "requirements": [
- [
- "dragon_egg"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/end/elytra.json b/src/main/resources/data/minecraft/advancement/end/elytra.json
deleted file mode 100644
index 41c0b55..0000000
--- a/src/main/resources/data/minecraft/advancement/end/elytra.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "parent": "minecraft:end/find_end_city",
- "criteria": {
- "elytra": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:elytra"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.end.elytra.description"
- },
- "frame": "goal",
- "icon": {
- "count": 1,
- "id": "minecraft:elytra"
- },
- "title": {
- "translate": "advancements.end.elytra.title"
- }
- },
- "requirements": [
- [
- "elytra"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/end/enter_end_gateway.json b/src/main/resources/data/minecraft/advancement/end/enter_end_gateway.json
deleted file mode 100644
index d0f44ef..0000000
--- a/src/main/resources/data/minecraft/advancement/end/enter_end_gateway.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "parent": "minecraft:end/kill_dragon",
- "criteria": {
- "entered_end_gateway": {
- "conditions": {
- "block": "minecraft:end_gateway"
- },
- "trigger": "minecraft:enter_block"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.end.enter_end_gateway.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:ender_pearl"
- },
- "title": {
- "translate": "advancements.end.enter_end_gateway.title"
- }
- },
- "requirements": [
- [
- "entered_end_gateway"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/end/find_end_city.json b/src/main/resources/data/minecraft/advancement/end/find_end_city.json
deleted file mode 100644
index d2c25c5..0000000
--- a/src/main/resources/data/minecraft/advancement/end/find_end_city.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "parent": "minecraft:end/enter_end_gateway",
- "criteria": {
- "in_city": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "structures": "minecraft:end_city"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.end.find_end_city.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:purpur_block"
- },
- "title": {
- "translate": "advancements.end.find_end_city.title"
- }
- },
- "requirements": [
- [
- "in_city"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/end/kill_dragon.json b/src/main/resources/data/minecraft/advancement/end/kill_dragon.json
deleted file mode 100644
index d5e1637..0000000
--- a/src/main/resources/data/minecraft/advancement/end/kill_dragon.json
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- "parent": "minecraft:end/root",
- "criteria": {
- "killed_dragon": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:ender_dragon"
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.end.kill_dragon.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:dragon_head"
- },
- "title": {
- "translate": "advancements.end.kill_dragon.title"
- }
- },
- "requirements": [
- [
- "killed_dragon"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/end/levitate.json b/src/main/resources/data/minecraft/advancement/end/levitate.json
deleted file mode 100644
index 9339790..0000000
--- a/src/main/resources/data/minecraft/advancement/end/levitate.json
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- "parent": "minecraft:end/find_end_city",
- "criteria": {
- "levitated": {
- "conditions": {
- "distance": {
- "y": {
- "min": 50.0
- }
- }
- },
- "trigger": "minecraft:levitation"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.end.levitate.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:shulker_shell"
- },
- "title": {
- "translate": "advancements.end.levitate.title"
- }
- },
- "requirements": [
- [
- "levitated"
- ]
- ],
- "rewards": {
- "experience": 50
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/end/respawn_dragon.json b/src/main/resources/data/minecraft/advancement/end/respawn_dragon.json
deleted file mode 100644
index c98fc91..0000000
--- a/src/main/resources/data/minecraft/advancement/end/respawn_dragon.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "parent": "minecraft:end/kill_dragon",
- "criteria": {
- "summoned_dragon": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:ender_dragon"
- }
- }
- ]
- },
- "trigger": "minecraft:summoned_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.end.respawn_dragon.description"
- },
- "frame": "goal",
- "icon": {
- "count": 1,
- "id": "minecraft:end_crystal"
- },
- "title": {
- "translate": "advancements.end.respawn_dragon.title"
- }
- },
- "requirements": [
- [
- "summoned_dragon"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/end/root.json b/src/main/resources/data/minecraft/advancement/end/root.json
deleted file mode 100644
index 9d788a5..0000000
--- a/src/main/resources/data/minecraft/advancement/end/root.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "criteria": {
- "entered_end": {
- "conditions": {
- "to": "minecraft:the_end"
- },
- "trigger": "minecraft:changed_dimension"
- }
- },
- "display": {
- "announce_to_chat": false,
- "background": "minecraft:textures/gui/advancements/backgrounds/end.png",
- "description": {
- "translate": "advancements.end.root.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:end_stone"
- },
- "show_toast": false,
- "title": {
- "translate": "advancements.end.root.title"
- }
- },
- "requirements": [
- [
- "entered_end"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/allay_deliver_cake_to_note_block.json b/src/main/resources/data/minecraft/advancement/husbandry/allay_deliver_cake_to_note_block.json
deleted file mode 100644
index 523fc69..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/allay_deliver_cake_to_note_block.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
- "parent": "minecraft:husbandry/allay_deliver_item_to_player",
- "criteria": {
- "allay_deliver_cake_to_note_block": {
- "conditions": {
- "location": [
- {
- "condition": "minecraft:location_check",
- "predicate": {
- "block": {
- "blocks": "minecraft:note_block"
- }
- }
- },
- {
- "condition": "minecraft:match_tool",
- "predicate": {
- "items": "minecraft:cake"
- }
- }
- ]
- },
- "trigger": "minecraft:allay_drop_item_on_block"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.allay_deliver_cake_to_note_block.description"
- },
- "hidden": true,
- "icon": {
- "count": 1,
- "id": "minecraft:note_block"
- },
- "title": {
- "translate": "advancements.husbandry.allay_deliver_cake_to_note_block.title"
- }
- },
- "requirements": [
- [
- "allay_deliver_cake_to_note_block"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/allay_deliver_item_to_player.json b/src/main/resources/data/minecraft/advancement/husbandry/allay_deliver_item_to_player.json
deleted file mode 100644
index 8bc02b9..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/allay_deliver_item_to_player.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "parent": "minecraft:husbandry/root",
- "criteria": {
- "allay_deliver_item_to_player": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:allay"
- }
- }
- ]
- },
- "trigger": "minecraft:thrown_item_picked_up_by_player"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.allay_deliver_item_to_player.description"
- },
- "hidden": true,
- "icon": {
- "count": 1,
- "id": "minecraft:cookie"
- },
- "title": {
- "translate": "advancements.husbandry.allay_deliver_item_to_player.title"
- }
- },
- "requirements": [
- [
- "allay_deliver_item_to_player"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/axolotl_in_a_bucket.json b/src/main/resources/data/minecraft/advancement/husbandry/axolotl_in_a_bucket.json
deleted file mode 100644
index a4d290e..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/axolotl_in_a_bucket.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "parent": "minecraft:husbandry/tactical_fishing",
- "criteria": {
- "axolotl_bucket": {
- "conditions": {
- "item": {
- "items": "minecraft:axolotl_bucket"
- }
- },
- "trigger": "minecraft:filled_bucket"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.axolotl_in_a_bucket.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:axolotl_bucket"
- },
- "title": {
- "translate": "advancements.husbandry.axolotl_in_a_bucket.title"
- }
- },
- "requirements": [
- [
- "axolotl_bucket"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/balanced_diet.json b/src/main/resources/data/minecraft/advancement/husbandry/balanced_diet.json
deleted file mode 100644
index ced7a04..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/balanced_diet.json
+++ /dev/null
@@ -1,464 +0,0 @@
-{
- "parent": "minecraft:husbandry/plant_seed",
- "criteria": {
- "apple": {
- "conditions": {
- "item": {
- "items": "minecraft:apple"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "baked_potato": {
- "conditions": {
- "item": {
- "items": "minecraft:baked_potato"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "beef": {
- "conditions": {
- "item": {
- "items": "minecraft:beef"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "beetroot": {
- "conditions": {
- "item": {
- "items": "minecraft:beetroot"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "beetroot_soup": {
- "conditions": {
- "item": {
- "items": "minecraft:beetroot_soup"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "bread": {
- "conditions": {
- "item": {
- "items": "minecraft:bread"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "carrot": {
- "conditions": {
- "item": {
- "items": "minecraft:carrot"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "chicken": {
- "conditions": {
- "item": {
- "items": "minecraft:chicken"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "chorus_fruit": {
- "conditions": {
- "item": {
- "items": "minecraft:chorus_fruit"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "cod": {
- "conditions": {
- "item": {
- "items": "minecraft:cod"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "cooked_beef": {
- "conditions": {
- "item": {
- "items": "minecraft:cooked_beef"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "cooked_chicken": {
- "conditions": {
- "item": {
- "items": "minecraft:cooked_chicken"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "cooked_cod": {
- "conditions": {
- "item": {
- "items": "minecraft:cooked_cod"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "cooked_mutton": {
- "conditions": {
- "item": {
- "items": "minecraft:cooked_mutton"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "cooked_porkchop": {
- "conditions": {
- "item": {
- "items": "minecraft:cooked_porkchop"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "cooked_rabbit": {
- "conditions": {
- "item": {
- "items": "minecraft:cooked_rabbit"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "cooked_salmon": {
- "conditions": {
- "item": {
- "items": "minecraft:cooked_salmon"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "cookie": {
- "conditions": {
- "item": {
- "items": "minecraft:cookie"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "dried_kelp": {
- "conditions": {
- "item": {
- "items": "minecraft:dried_kelp"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "enchanted_golden_apple": {
- "conditions": {
- "item": {
- "items": "minecraft:enchanted_golden_apple"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "glow_berries": {
- "conditions": {
- "item": {
- "items": "minecraft:glow_berries"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "golden_apple": {
- "conditions": {
- "item": {
- "items": "minecraft:golden_apple"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "golden_carrot": {
- "conditions": {
- "item": {
- "items": "minecraft:golden_carrot"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "honey_bottle": {
- "conditions": {
- "item": {
- "items": "minecraft:honey_bottle"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "melon_slice": {
- "conditions": {
- "item": {
- "items": "minecraft:melon_slice"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "mushroom_stew": {
- "conditions": {
- "item": {
- "items": "minecraft:mushroom_stew"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "mutton": {
- "conditions": {
- "item": {
- "items": "minecraft:mutton"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "poisonous_potato": {
- "conditions": {
- "item": {
- "items": "minecraft:poisonous_potato"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "porkchop": {
- "conditions": {
- "item": {
- "items": "minecraft:porkchop"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "potato": {
- "conditions": {
- "item": {
- "items": "minecraft:potato"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "pufferfish": {
- "conditions": {
- "item": {
- "items": "minecraft:pufferfish"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "pumpkin_pie": {
- "conditions": {
- "item": {
- "items": "minecraft:pumpkin_pie"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "rabbit": {
- "conditions": {
- "item": {
- "items": "minecraft:rabbit"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "rabbit_stew": {
- "conditions": {
- "item": {
- "items": "minecraft:rabbit_stew"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "rotten_flesh": {
- "conditions": {
- "item": {
- "items": "minecraft:rotten_flesh"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "salmon": {
- "conditions": {
- "item": {
- "items": "minecraft:salmon"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "spider_eye": {
- "conditions": {
- "item": {
- "items": "minecraft:spider_eye"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "suspicious_stew": {
- "conditions": {
- "item": {
- "items": "minecraft:suspicious_stew"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "sweet_berries": {
- "conditions": {
- "item": {
- "items": "minecraft:sweet_berries"
- }
- },
- "trigger": "minecraft:consume_item"
- },
- "tropical_fish": {
- "conditions": {
- "item": {
- "items": "minecraft:tropical_fish"
- }
- },
- "trigger": "minecraft:consume_item"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.balanced_diet.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:apple"
- },
- "title": {
- "translate": "advancements.husbandry.balanced_diet.title"
- }
- },
- "requirements": [
- [
- "apple"
- ],
- [
- "mushroom_stew"
- ],
- [
- "bread"
- ],
- [
- "porkchop"
- ],
- [
- "cooked_porkchop"
- ],
- [
- "golden_apple"
- ],
- [
- "enchanted_golden_apple"
- ],
- [
- "cod"
- ],
- [
- "salmon"
- ],
- [
- "tropical_fish"
- ],
- [
- "pufferfish"
- ],
- [
- "cooked_cod"
- ],
- [
- "cooked_salmon"
- ],
- [
- "cookie"
- ],
- [
- "melon_slice"
- ],
- [
- "beef"
- ],
- [
- "cooked_beef"
- ],
- [
- "chicken"
- ],
- [
- "cooked_chicken"
- ],
- [
- "rotten_flesh"
- ],
- [
- "spider_eye"
- ],
- [
- "carrot"
- ],
- [
- "potato"
- ],
- [
- "baked_potato"
- ],
- [
- "poisonous_potato"
- ],
- [
- "golden_carrot"
- ],
- [
- "pumpkin_pie"
- ],
- [
- "rabbit"
- ],
- [
- "cooked_rabbit"
- ],
- [
- "rabbit_stew"
- ],
- [
- "mutton"
- ],
- [
- "cooked_mutton"
- ],
- [
- "chorus_fruit"
- ],
- [
- "beetroot"
- ],
- [
- "beetroot_soup"
- ],
- [
- "dried_kelp"
- ],
- [
- "suspicious_stew"
- ],
- [
- "sweet_berries"
- ],
- [
- "honey_bottle"
- ],
- [
- "glow_berries"
- ]
- ],
- "rewards": {
- "experience": 100
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/bred_all_animals.json b/src/main/resources/data/minecraft/advancement/husbandry/bred_all_animals.json
deleted file mode 100644
index d87b0eb..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/bred_all_animals.json
+++ /dev/null
@@ -1,476 +0,0 @@
-{
- "parent": "minecraft:husbandry/breed_an_animal",
- "criteria": {
- "minecraft:armadillo": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:armadillo"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:axolotl": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:axolotl"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:bee": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:bee"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:camel": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:camel"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:cat": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:cat"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:chicken": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:chicken"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:cow": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:cow"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:donkey": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:donkey"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:fox": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:fox"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:frog": {
- "conditions": {
- "parent": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:frog"
- }
- }
- ],
- "partner": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:frog"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:goat": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:goat"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:hoglin": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:hoglin"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:horse": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:horse"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:llama": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:llama"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:mooshroom": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:mooshroom"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:mule": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:mule"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:ocelot": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:ocelot"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:panda": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:panda"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:pig": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:pig"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:rabbit": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:rabbit"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:sheep": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:sheep"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:sniffer": {
- "conditions": {
- "parent": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:sniffer"
- }
- }
- ],
- "partner": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:sniffer"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:strider": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:strider"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:turtle": {
- "conditions": {
- "parent": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:turtle"
- }
- }
- ],
- "partner": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:turtle"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- },
- "minecraft:wolf": {
- "conditions": {
- "child": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:wolf"
- }
- }
- ]
- },
- "trigger": "minecraft:bred_animals"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.breed_all_animals.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:golden_carrot"
- },
- "title": {
- "translate": "advancements.husbandry.breed_all_animals.title"
- }
- },
- "requirements": [
- [
- "minecraft:horse"
- ],
- [
- "minecraft:donkey"
- ],
- [
- "minecraft:mule"
- ],
- [
- "minecraft:sheep"
- ],
- [
- "minecraft:cow"
- ],
- [
- "minecraft:mooshroom"
- ],
- [
- "minecraft:pig"
- ],
- [
- "minecraft:chicken"
- ],
- [
- "minecraft:wolf"
- ],
- [
- "minecraft:ocelot"
- ],
- [
- "minecraft:rabbit"
- ],
- [
- "minecraft:llama"
- ],
- [
- "minecraft:cat"
- ],
- [
- "minecraft:panda"
- ],
- [
- "minecraft:fox"
- ],
- [
- "minecraft:bee"
- ],
- [
- "minecraft:hoglin"
- ],
- [
- "minecraft:strider"
- ],
- [
- "minecraft:goat"
- ],
- [
- "minecraft:axolotl"
- ],
- [
- "minecraft:camel"
- ],
- [
- "minecraft:armadillo"
- ],
- [
- "minecraft:turtle"
- ],
- [
- "minecraft:frog"
- ],
- [
- "minecraft:sniffer"
- ]
- ],
- "rewards": {
- "experience": 100
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/breed_an_animal.json b/src/main/resources/data/minecraft/advancement/husbandry/breed_an_animal.json
deleted file mode 100644
index 3379603..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/breed_an_animal.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "parent": "minecraft:husbandry/root",
- "criteria": {
- "bred": {
- "trigger": "minecraft:bred_animals"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.breed_an_animal.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:wheat"
- },
- "title": {
- "translate": "advancements.husbandry.breed_an_animal.title"
- }
- },
- "requirements": [
- [
- "bred"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/complete_catalogue.json b/src/main/resources/data/minecraft/advancement/husbandry/complete_catalogue.json
deleted file mode 100644
index 31749d5..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/complete_catalogue.json
+++ /dev/null
@@ -1,244 +0,0 @@
-{
- "parent": "minecraft:husbandry/tame_an_animal",
- "criteria": {
- "minecraft:all_black": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:cat",
- "variant": "minecraft:all_black"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- },
- "minecraft:black": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:cat",
- "variant": "minecraft:black"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- },
- "minecraft:british_shorthair": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:cat",
- "variant": "minecraft:british_shorthair"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- },
- "minecraft:calico": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:cat",
- "variant": "minecraft:calico"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- },
- "minecraft:jellie": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:cat",
- "variant": "minecraft:jellie"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- },
- "minecraft:persian": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:cat",
- "variant": "minecraft:persian"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- },
- "minecraft:ragdoll": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:cat",
- "variant": "minecraft:ragdoll"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- },
- "minecraft:red": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:cat",
- "variant": "minecraft:red"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- },
- "minecraft:siamese": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:cat",
- "variant": "minecraft:siamese"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- },
- "minecraft:tabby": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:cat",
- "variant": "minecraft:tabby"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- },
- "minecraft:white": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:cat",
- "variant": "minecraft:white"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.complete_catalogue.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:cod"
- },
- "title": {
- "translate": "advancements.husbandry.complete_catalogue.title"
- }
- },
- "requirements": [
- [
- "minecraft:all_black"
- ],
- [
- "minecraft:black"
- ],
- [
- "minecraft:british_shorthair"
- ],
- [
- "minecraft:calico"
- ],
- [
- "minecraft:jellie"
- ],
- [
- "minecraft:persian"
- ],
- [
- "minecraft:ragdoll"
- ],
- [
- "minecraft:red"
- ],
- [
- "minecraft:siamese"
- ],
- [
- "minecraft:tabby"
- ],
- [
- "minecraft:white"
- ]
- ],
- "rewards": {
- "experience": 50
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/feed_snifflet.json b/src/main/resources/data/minecraft/advancement/husbandry/feed_snifflet.json
deleted file mode 100644
index 8ec72eb..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/feed_snifflet.json
+++ /dev/null
@@ -1,44 +0,0 @@
-{
- "parent": "minecraft:husbandry/obtain_sniffer_egg",
- "criteria": {
- "feed_snifflet": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:sniffer",
- "flags": {
- "is_baby": true
- }
- }
- }
- ],
- "item": {
- "items": "#minecraft:sniffer_food"
- }
- },
- "trigger": "minecraft:player_interacted_with_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.feed_snifflet.description"
- },
- "hidden": true,
- "icon": {
- "count": 1,
- "id": "minecraft:torchflower_seeds"
- },
- "title": {
- "translate": "advancements.husbandry.feed_snifflet.title"
- }
- },
- "requirements": [
- [
- "feed_snifflet"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/fishy_business.json b/src/main/resources/data/minecraft/advancement/husbandry/fishy_business.json
deleted file mode 100644
index e9da5e3..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/fishy_business.json
+++ /dev/null
@@ -1,58 +0,0 @@
-{
- "parent": "minecraft:husbandry/root",
- "criteria": {
- "cod": {
- "conditions": {
- "item": {
- "items": "minecraft:cod"
- }
- },
- "trigger": "minecraft:fishing_rod_hooked"
- },
- "pufferfish": {
- "conditions": {
- "item": {
- "items": "minecraft:pufferfish"
- }
- },
- "trigger": "minecraft:fishing_rod_hooked"
- },
- "salmon": {
- "conditions": {
- "item": {
- "items": "minecraft:salmon"
- }
- },
- "trigger": "minecraft:fishing_rod_hooked"
- },
- "tropical_fish": {
- "conditions": {
- "item": {
- "items": "minecraft:tropical_fish"
- }
- },
- "trigger": "minecraft:fishing_rod_hooked"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.fishy_business.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:fishing_rod"
- },
- "title": {
- "translate": "advancements.husbandry.fishy_business.title"
- }
- },
- "requirements": [
- [
- "cod",
- "tropical_fish",
- "pufferfish",
- "salmon"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/froglights.json b/src/main/resources/data/minecraft/advancement/husbandry/froglights.json
deleted file mode 100644
index 83dbb62..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/froglights.json
+++ /dev/null
@@ -1,40 +0,0 @@
-{
- "parent": "minecraft:husbandry/leash_all_frog_variants",
- "criteria": {
- "froglights": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:ochre_froglight"
- },
- {
- "items": "minecraft:pearlescent_froglight"
- },
- {
- "items": "minecraft:verdant_froglight"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.froglights.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:verdant_froglight"
- },
- "title": {
- "translate": "advancements.husbandry.froglights.title"
- }
- },
- "requirements": [
- [
- "froglights"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/kill_axolotl_target.json b/src/main/resources/data/minecraft/advancement/husbandry/kill_axolotl_target.json
deleted file mode 100644
index 1a556ff..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/kill_axolotl_target.json
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- "parent": "minecraft:husbandry/axolotl_in_a_bucket",
- "criteria": {
- "kill_axolotl_target": {
- "conditions": {
- "source": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:axolotl"
- }
- }
- ]
- },
- "trigger": "minecraft:effects_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.kill_axolotl_target.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:tropical_fish_bucket"
- },
- "title": {
- "translate": "advancements.husbandry.kill_axolotl_target.title"
- }
- },
- "requirements": [
- [
- "kill_axolotl_target"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/leash_all_frog_variants.json b/src/main/resources/data/minecraft/advancement/husbandry/leash_all_frog_variants.json
deleted file mode 100644
index 52a2ded..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/leash_all_frog_variants.json
+++ /dev/null
@@ -1,92 +0,0 @@
-{
- "parent": "minecraft:husbandry/tadpole_in_a_bucket",
- "criteria": {
- "minecraft:cold": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:frog",
- "type_specific": {
- "type": "minecraft:frog",
- "variant": "minecraft:cold"
- }
- }
- }
- ],
- "item": {
- "items": "minecraft:lead"
- }
- },
- "trigger": "minecraft:player_interacted_with_entity"
- },
- "minecraft:temperate": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:frog",
- "type_specific": {
- "type": "minecraft:frog",
- "variant": "minecraft:temperate"
- }
- }
- }
- ],
- "item": {
- "items": "minecraft:lead"
- }
- },
- "trigger": "minecraft:player_interacted_with_entity"
- },
- "minecraft:warm": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:frog",
- "type_specific": {
- "type": "minecraft:frog",
- "variant": "minecraft:warm"
- }
- }
- }
- ],
- "item": {
- "items": "minecraft:lead"
- }
- },
- "trigger": "minecraft:player_interacted_with_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.leash_all_frog_variants.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:lead"
- },
- "title": {
- "translate": "advancements.husbandry.leash_all_frog_variants.title"
- }
- },
- "requirements": [
- [
- "minecraft:temperate"
- ],
- [
- "minecraft:warm"
- ],
- [
- "minecraft:cold"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/make_a_sign_glow.json b/src/main/resources/data/minecraft/advancement/husbandry/make_a_sign_glow.json
deleted file mode 100644
index 9195039..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/make_a_sign_glow.json
+++ /dev/null
@@ -1,44 +0,0 @@
-{
- "parent": "minecraft:husbandry/root",
- "criteria": {
- "make_a_sign_glow": {
- "conditions": {
- "location": [
- {
- "condition": "minecraft:location_check",
- "predicate": {
- "block": {
- "blocks": "#minecraft:all_signs"
- }
- }
- },
- {
- "condition": "minecraft:match_tool",
- "predicate": {
- "items": "minecraft:glow_ink_sac"
- }
- }
- ]
- },
- "trigger": "minecraft:item_used_on_block"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.make_a_sign_glow.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:glow_ink_sac"
- },
- "title": {
- "translate": "advancements.husbandry.make_a_sign_glow.title"
- }
- },
- "requirements": [
- [
- "make_a_sign_glow"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/obtain_netherite_hoe.json b/src/main/resources/data/minecraft/advancement/husbandry/obtain_netherite_hoe.json
deleted file mode 100644
index d7e27b4..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/obtain_netherite_hoe.json
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- "parent": "minecraft:husbandry/plant_seed",
- "criteria": {
- "netherite_hoe": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:netherite_hoe"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.netherite_hoe.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:netherite_hoe"
- },
- "title": {
- "translate": "advancements.husbandry.netherite_hoe.title"
- }
- },
- "requirements": [
- [
- "netherite_hoe"
- ]
- ],
- "rewards": {
- "experience": 100
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/obtain_sniffer_egg.json b/src/main/resources/data/minecraft/advancement/husbandry/obtain_sniffer_egg.json
deleted file mode 100644
index c9c9fdd..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/obtain_sniffer_egg.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "parent": "minecraft:husbandry/root",
- "criteria": {
- "obtain_sniffer_egg": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sniffer_egg"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.obtain_sniffer_egg.description"
- },
- "hidden": true,
- "icon": {
- "count": 1,
- "id": "minecraft:sniffer_egg"
- },
- "title": {
- "translate": "advancements.husbandry.obtain_sniffer_egg.title"
- }
- },
- "requirements": [
- [
- "obtain_sniffer_egg"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/plant_any_sniffer_seed.json b/src/main/resources/data/minecraft/advancement/husbandry/plant_any_sniffer_seed.json
deleted file mode 100644
index 4bc25a9..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/plant_any_sniffer_seed.json
+++ /dev/null
@@ -1,47 +0,0 @@
-{
- "parent": "minecraft:husbandry/feed_snifflet",
- "criteria": {
- "pitcher_pod": {
- "conditions": {
- "location": [
- {
- "block": "minecraft:pitcher_crop",
- "condition": "minecraft:block_state_property"
- }
- ]
- },
- "trigger": "minecraft:placed_block"
- },
- "torchflower": {
- "conditions": {
- "location": [
- {
- "block": "minecraft:torchflower_crop",
- "condition": "minecraft:block_state_property"
- }
- ]
- },
- "trigger": "minecraft:placed_block"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.plant_any_sniffer_seed.description"
- },
- "hidden": true,
- "icon": {
- "count": 1,
- "id": "minecraft:pitcher_pod"
- },
- "title": {
- "translate": "advancements.husbandry.plant_any_sniffer_seed.title"
- }
- },
- "requirements": [
- [
- "torchflower",
- "pitcher_pod"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/plant_seed.json b/src/main/resources/data/minecraft/advancement/husbandry/plant_seed.json
deleted file mode 100644
index 494fcc6..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/plant_seed.json
+++ /dev/null
@@ -1,106 +0,0 @@
-{
- "parent": "minecraft:husbandry/root",
- "criteria": {
- "beetroots": {
- "conditions": {
- "location": [
- {
- "block": "minecraft:beetroots",
- "condition": "minecraft:block_state_property"
- }
- ]
- },
- "trigger": "minecraft:placed_block"
- },
- "melon_stem": {
- "conditions": {
- "location": [
- {
- "block": "minecraft:melon_stem",
- "condition": "minecraft:block_state_property"
- }
- ]
- },
- "trigger": "minecraft:placed_block"
- },
- "nether_wart": {
- "conditions": {
- "location": [
- {
- "block": "minecraft:nether_wart",
- "condition": "minecraft:block_state_property"
- }
- ]
- },
- "trigger": "minecraft:placed_block"
- },
- "pitcher_pod": {
- "conditions": {
- "location": [
- {
- "block": "minecraft:pitcher_crop",
- "condition": "minecraft:block_state_property"
- }
- ]
- },
- "trigger": "minecraft:placed_block"
- },
- "pumpkin_stem": {
- "conditions": {
- "location": [
- {
- "block": "minecraft:pumpkin_stem",
- "condition": "minecraft:block_state_property"
- }
- ]
- },
- "trigger": "minecraft:placed_block"
- },
- "torchflower": {
- "conditions": {
- "location": [
- {
- "block": "minecraft:torchflower_crop",
- "condition": "minecraft:block_state_property"
- }
- ]
- },
- "trigger": "minecraft:placed_block"
- },
- "wheat": {
- "conditions": {
- "location": [
- {
- "block": "minecraft:wheat",
- "condition": "minecraft:block_state_property"
- }
- ]
- },
- "trigger": "minecraft:placed_block"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.plant_seed.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:wheat"
- },
- "title": {
- "translate": "advancements.husbandry.plant_seed.title"
- }
- },
- "requirements": [
- [
- "wheat",
- "pumpkin_stem",
- "melon_stem",
- "beetroots",
- "nether_wart",
- "torchflower",
- "pitcher_pod"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/remove_wolf_armor.json b/src/main/resources/data/minecraft/advancement/husbandry/remove_wolf_armor.json
deleted file mode 100644
index 57c05fb..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/remove_wolf_armor.json
+++ /dev/null
@@ -1,40 +0,0 @@
-{
- "parent": "minecraft:husbandry/tame_an_animal",
- "criteria": {
- "remove_wolf_armor": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:wolf"
- }
- }
- ],
- "item": {
- "items": "minecraft:shears"
- }
- },
- "trigger": "minecraft:player_interacted_with_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.remove_wolf_armor.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:shears"
- },
- "title": {
- "translate": "advancements.husbandry.remove_wolf_armor.title"
- }
- },
- "requirements": [
- [
- "remove_wolf_armor"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/repair_wolf_armor.json b/src/main/resources/data/minecraft/advancement/husbandry/repair_wolf_armor.json
deleted file mode 100644
index c6ad2fb..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/repair_wolf_armor.json
+++ /dev/null
@@ -1,48 +0,0 @@
-{
- "parent": "minecraft:husbandry/tame_an_animal",
- "criteria": {
- "repair_wolf_armor": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:wolf",
- "equipment": {
- "body": {
- "components": {
- "minecraft:damage": 0
- },
- "items": "minecraft:wolf_armor"
- }
- }
- }
- }
- ],
- "item": {
- "items": "minecraft:armadillo_scute"
- }
- },
- "trigger": "minecraft:player_interacted_with_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.repair_wolf_armor.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:wolf_armor"
- },
- "title": {
- "translate": "advancements.husbandry.repair_wolf_armor.title"
- }
- },
- "requirements": [
- [
- "repair_wolf_armor"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/ride_a_boat_with_a_goat.json b/src/main/resources/data/minecraft/advancement/husbandry/ride_a_boat_with_a_goat.json
deleted file mode 100644
index 0ae432c..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/ride_a_boat_with_a_goat.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
- "parent": "minecraft:husbandry/root",
- "criteria": {
- "ride_a_boat_with_a_goat": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "vehicle": {
- "type": "minecraft:boat",
- "passenger": {
- "type": "minecraft:goat"
- }
- }
- }
- }
- ]
- },
- "trigger": "minecraft:started_riding"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.ride_a_boat_with_a_goat.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:oak_boat"
- },
- "title": {
- "translate": "advancements.husbandry.ride_a_boat_with_a_goat.title"
- }
- },
- "requirements": [
- [
- "ride_a_boat_with_a_goat"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/root.json b/src/main/resources/data/minecraft/advancement/husbandry/root.json
deleted file mode 100644
index 4061aa9..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/root.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "criteria": {
- "consumed_item": {
- "trigger": "minecraft:consume_item"
- }
- },
- "display": {
- "announce_to_chat": false,
- "background": "minecraft:textures/gui/advancements/backgrounds/husbandry.png",
- "description": {
- "translate": "advancements.husbandry.root.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:hay_block"
- },
- "show_toast": false,
- "title": {
- "translate": "advancements.husbandry.root.title"
- }
- },
- "requirements": [
- [
- "consumed_item"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/safely_harvest_honey.json b/src/main/resources/data/minecraft/advancement/husbandry/safely_harvest_honey.json
deleted file mode 100644
index f530dc1..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/safely_harvest_honey.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
- "parent": "minecraft:husbandry/root",
- "criteria": {
- "safely_harvest_honey": {
- "conditions": {
- "location": [
- {
- "condition": "minecraft:location_check",
- "predicate": {
- "block": {
- "blocks": "#minecraft:beehives"
- },
- "smokey": true
- }
- },
- {
- "condition": "minecraft:match_tool",
- "predicate": {
- "items": "minecraft:glass_bottle"
- }
- }
- ]
- },
- "trigger": "minecraft:item_used_on_block"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.safely_harvest_honey.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:honey_bottle"
- },
- "title": {
- "translate": "advancements.husbandry.safely_harvest_honey.title"
- }
- },
- "requirements": [
- [
- "safely_harvest_honey"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/silk_touch_nest.json b/src/main/resources/data/minecraft/advancement/husbandry/silk_touch_nest.json
deleted file mode 100644
index 1fd94b8..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/silk_touch_nest.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
- "parent": "minecraft:husbandry/root",
- "criteria": {
- "silk_touch_nest": {
- "conditions": {
- "block": "minecraft:bee_nest",
- "item": {
- "predicates": {
- "minecraft:enchantments": [
- {
- "enchantments": "minecraft:silk_touch",
- "levels": {
- "min": 1
- }
- }
- ]
- }
- },
- "num_bees_inside": 3
- },
- "trigger": "minecraft:bee_nest_destroyed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.silk_touch_nest.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:bee_nest"
- },
- "title": {
- "translate": "advancements.husbandry.silk_touch_nest.title"
- }
- },
- "requirements": [
- [
- "silk_touch_nest"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/tactical_fishing.json b/src/main/resources/data/minecraft/advancement/husbandry/tactical_fishing.json
deleted file mode 100644
index bc8efbe..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/tactical_fishing.json
+++ /dev/null
@@ -1,58 +0,0 @@
-{
- "parent": "minecraft:husbandry/fishy_business",
- "criteria": {
- "cod_bucket": {
- "conditions": {
- "item": {
- "items": "minecraft:cod_bucket"
- }
- },
- "trigger": "minecraft:filled_bucket"
- },
- "pufferfish_bucket": {
- "conditions": {
- "item": {
- "items": "minecraft:pufferfish_bucket"
- }
- },
- "trigger": "minecraft:filled_bucket"
- },
- "salmon_bucket": {
- "conditions": {
- "item": {
- "items": "minecraft:salmon_bucket"
- }
- },
- "trigger": "minecraft:filled_bucket"
- },
- "tropical_fish_bucket": {
- "conditions": {
- "item": {
- "items": "minecraft:tropical_fish_bucket"
- }
- },
- "trigger": "minecraft:filled_bucket"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.tactical_fishing.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:pufferfish_bucket"
- },
- "title": {
- "translate": "advancements.husbandry.tactical_fishing.title"
- }
- },
- "requirements": [
- [
- "cod_bucket",
- "tropical_fish_bucket",
- "pufferfish_bucket",
- "salmon_bucket"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/tadpole_in_a_bucket.json b/src/main/resources/data/minecraft/advancement/husbandry/tadpole_in_a_bucket.json
deleted file mode 100644
index 66ee8d8..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/tadpole_in_a_bucket.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "parent": "minecraft:husbandry/root",
- "criteria": {
- "tadpole_bucket": {
- "conditions": {
- "item": {
- "items": "minecraft:tadpole_bucket"
- }
- },
- "trigger": "minecraft:filled_bucket"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.tadpole_in_a_bucket.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:tadpole_bucket"
- },
- "title": {
- "translate": "advancements.husbandry.tadpole_in_a_bucket.title"
- }
- },
- "requirements": [
- [
- "tadpole_bucket"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/tame_an_animal.json b/src/main/resources/data/minecraft/advancement/husbandry/tame_an_animal.json
deleted file mode 100644
index 69168b2..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/tame_an_animal.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "parent": "minecraft:husbandry/root",
- "criteria": {
- "tamed_animal": {
- "trigger": "minecraft:tame_animal"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.tame_an_animal.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:lead"
- },
- "title": {
- "translate": "advancements.husbandry.tame_an_animal.title"
- }
- },
- "requirements": [
- [
- "tamed_animal"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/wax_off.json b/src/main/resources/data/minecraft/advancement/husbandry/wax_off.json
deleted file mode 100644
index 288ba95..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/wax_off.json
+++ /dev/null
@@ -1,88 +0,0 @@
-{
- "parent": "minecraft:husbandry/wax_on",
- "criteria": {
- "wax_off": {
- "conditions": {
- "location": [
- {
- "condition": "minecraft:location_check",
- "predicate": {
- "block": {
- "blocks": [
- "minecraft:waxed_copper_block",
- "minecraft:waxed_exposed_copper",
- "minecraft:waxed_weathered_copper",
- "minecraft:waxed_oxidized_copper",
- "minecraft:waxed_cut_copper",
- "minecraft:waxed_exposed_cut_copper",
- "minecraft:waxed_weathered_cut_copper",
- "minecraft:waxed_oxidized_cut_copper",
- "minecraft:waxed_cut_copper_slab",
- "minecraft:waxed_exposed_cut_copper_slab",
- "minecraft:waxed_weathered_cut_copper_slab",
- "minecraft:waxed_oxidized_cut_copper_slab",
- "minecraft:waxed_cut_copper_stairs",
- "minecraft:waxed_exposed_cut_copper_stairs",
- "minecraft:waxed_weathered_cut_copper_stairs",
- "minecraft:waxed_oxidized_cut_copper_stairs",
- "minecraft:waxed_chiseled_copper",
- "minecraft:waxed_exposed_chiseled_copper",
- "minecraft:waxed_weathered_chiseled_copper",
- "minecraft:waxed_oxidized_chiseled_copper",
- "minecraft:waxed_copper_door",
- "minecraft:waxed_exposed_copper_door",
- "minecraft:waxed_weathered_copper_door",
- "minecraft:waxed_oxidized_copper_door",
- "minecraft:waxed_copper_trapdoor",
- "minecraft:waxed_exposed_copper_trapdoor",
- "minecraft:waxed_weathered_copper_trapdoor",
- "minecraft:waxed_oxidized_copper_trapdoor",
- "minecraft:waxed_copper_grate",
- "minecraft:waxed_exposed_copper_grate",
- "minecraft:waxed_weathered_copper_grate",
- "minecraft:waxed_oxidized_copper_grate",
- "minecraft:waxed_copper_bulb",
- "minecraft:waxed_exposed_copper_bulb",
- "minecraft:waxed_weathered_copper_bulb",
- "minecraft:waxed_oxidized_copper_bulb"
- ]
- }
- }
- },
- {
- "condition": "minecraft:match_tool",
- "predicate": {
- "items": [
- "minecraft:wooden_axe",
- "minecraft:golden_axe",
- "minecraft:stone_axe",
- "minecraft:iron_axe",
- "minecraft:diamond_axe",
- "minecraft:netherite_axe"
- ]
- }
- }
- ]
- },
- "trigger": "minecraft:item_used_on_block"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.wax_off.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:stone_axe"
- },
- "title": {
- "translate": "advancements.husbandry.wax_off.title"
- }
- },
- "requirements": [
- [
- "wax_off"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/wax_on.json b/src/main/resources/data/minecraft/advancement/husbandry/wax_on.json
deleted file mode 100644
index ca319bf..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/wax_on.json
+++ /dev/null
@@ -1,81 +0,0 @@
-{
- "parent": "minecraft:husbandry/safely_harvest_honey",
- "criteria": {
- "wax_on": {
- "conditions": {
- "location": [
- {
- "condition": "minecraft:location_check",
- "predicate": {
- "block": {
- "blocks": [
- "minecraft:copper_block",
- "minecraft:exposed_copper",
- "minecraft:weathered_copper",
- "minecraft:oxidized_copper",
- "minecraft:cut_copper",
- "minecraft:exposed_cut_copper",
- "minecraft:weathered_cut_copper",
- "minecraft:oxidized_cut_copper",
- "minecraft:cut_copper_slab",
- "minecraft:exposed_cut_copper_slab",
- "minecraft:weathered_cut_copper_slab",
- "minecraft:oxidized_cut_copper_slab",
- "minecraft:cut_copper_stairs",
- "minecraft:exposed_cut_copper_stairs",
- "minecraft:weathered_cut_copper_stairs",
- "minecraft:oxidized_cut_copper_stairs",
- "minecraft:chiseled_copper",
- "minecraft:exposed_chiseled_copper",
- "minecraft:weathered_chiseled_copper",
- "minecraft:oxidized_chiseled_copper",
- "minecraft:copper_door",
- "minecraft:exposed_copper_door",
- "minecraft:weathered_copper_door",
- "minecraft:oxidized_copper_door",
- "minecraft:copper_trapdoor",
- "minecraft:exposed_copper_trapdoor",
- "minecraft:weathered_copper_trapdoor",
- "minecraft:oxidized_copper_trapdoor",
- "minecraft:copper_grate",
- "minecraft:exposed_copper_grate",
- "minecraft:weathered_copper_grate",
- "minecraft:oxidized_copper_grate",
- "minecraft:copper_bulb",
- "minecraft:exposed_copper_bulb",
- "minecraft:weathered_copper_bulb",
- "minecraft:oxidized_copper_bulb"
- ]
- }
- }
- },
- {
- "condition": "minecraft:match_tool",
- "predicate": {
- "items": "minecraft:honeycomb"
- }
- }
- ]
- },
- "trigger": "minecraft:item_used_on_block"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.wax_on.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:honeycomb"
- },
- "title": {
- "translate": "advancements.husbandry.wax_on.title"
- }
- },
- "requirements": [
- [
- "wax_on"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/husbandry/whole_pack.json b/src/main/resources/data/minecraft/advancement/husbandry/whole_pack.json
deleted file mode 100644
index 26a20d5..0000000
--- a/src/main/resources/data/minecraft/advancement/husbandry/whole_pack.json
+++ /dev/null
@@ -1,204 +0,0 @@
-{
- "parent": "minecraft:husbandry/tame_an_animal",
- "criteria": {
- "minecraft:ashen": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:wolf",
- "variant": "minecraft:ashen"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- },
- "minecraft:black": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:wolf",
- "variant": "minecraft:black"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- },
- "minecraft:chestnut": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:wolf",
- "variant": "minecraft:chestnut"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- },
- "minecraft:pale": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:wolf",
- "variant": "minecraft:pale"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- },
- "minecraft:rusty": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:wolf",
- "variant": "minecraft:rusty"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- },
- "minecraft:snowy": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:wolf",
- "variant": "minecraft:snowy"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- },
- "minecraft:spotted": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:wolf",
- "variant": "minecraft:spotted"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- },
- "minecraft:striped": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:wolf",
- "variant": "minecraft:striped"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- },
- "minecraft:woods": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type_specific": {
- "type": "minecraft:wolf",
- "variant": "minecraft:woods"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:tame_animal"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.husbandry.whole_pack.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:bone"
- },
- "title": {
- "translate": "advancements.husbandry.whole_pack.title"
- }
- },
- "requirements": [
- [
- "minecraft:ashen"
- ],
- [
- "minecraft:black"
- ],
- [
- "minecraft:chestnut"
- ],
- [
- "minecraft:pale"
- ],
- [
- "minecraft:rusty"
- ],
- [
- "minecraft:snowy"
- ],
- [
- "minecraft:spotted"
- ],
- [
- "minecraft:striped"
- ],
- [
- "minecraft:woods"
- ]
- ],
- "rewards": {
- "experience": 50
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/all_effects.json b/src/main/resources/data/minecraft/advancement/nether/all_effects.json
deleted file mode 100644
index fdf89ac..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/all_effects.json
+++ /dev/null
@@ -1,68 +0,0 @@
-{
- "parent": "minecraft:nether/all_potions",
- "criteria": {
- "all_effects": {
- "conditions": {
- "effects": {
- "minecraft:absorption": {},
- "minecraft:bad_omen": {},
- "minecraft:blindness": {},
- "minecraft:conduit_power": {},
- "minecraft:darkness": {},
- "minecraft:dolphins_grace": {},
- "minecraft:fire_resistance": {},
- "minecraft:glowing": {},
- "minecraft:haste": {},
- "minecraft:hero_of_the_village": {},
- "minecraft:hunger": {},
- "minecraft:infested": {},
- "minecraft:invisibility": {},
- "minecraft:jump_boost": {},
- "minecraft:levitation": {},
- "minecraft:mining_fatigue": {},
- "minecraft:nausea": {},
- "minecraft:night_vision": {},
- "minecraft:oozing": {},
- "minecraft:poison": {},
- "minecraft:raid_omen": {},
- "minecraft:regeneration": {},
- "minecraft:resistance": {},
- "minecraft:slow_falling": {},
- "minecraft:slowness": {},
- "minecraft:speed": {},
- "minecraft:strength": {},
- "minecraft:trial_omen": {},
- "minecraft:water_breathing": {},
- "minecraft:weakness": {},
- "minecraft:weaving": {},
- "minecraft:wind_charged": {},
- "minecraft:wither": {}
- }
- },
- "trigger": "minecraft:effects_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.all_effects.description"
- },
- "frame": "challenge",
- "hidden": true,
- "icon": {
- "count": 1,
- "id": "minecraft:bucket"
- },
- "title": {
- "translate": "advancements.nether.all_effects.title"
- }
- },
- "requirements": [
- [
- "all_effects"
- ]
- ],
- "rewards": {
- "experience": 1000
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/all_potions.json b/src/main/resources/data/minecraft/advancement/nether/all_potions.json
deleted file mode 100644
index 43f6f1f..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/all_potions.json
+++ /dev/null
@@ -1,51 +0,0 @@
-{
- "parent": "minecraft:nether/brew_potion",
- "criteria": {
- "all_effects": {
- "conditions": {
- "effects": {
- "minecraft:fire_resistance": {},
- "minecraft:infested": {},
- "minecraft:invisibility": {},
- "minecraft:jump_boost": {},
- "minecraft:night_vision": {},
- "minecraft:oozing": {},
- "minecraft:poison": {},
- "minecraft:regeneration": {},
- "minecraft:resistance": {},
- "minecraft:slow_falling": {},
- "minecraft:slowness": {},
- "minecraft:speed": {},
- "minecraft:strength": {},
- "minecraft:water_breathing": {},
- "minecraft:weakness": {},
- "minecraft:weaving": {},
- "minecraft:wind_charged": {}
- }
- },
- "trigger": "minecraft:effects_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.all_potions.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:milk_bucket"
- },
- "title": {
- "translate": "advancements.nether.all_potions.title"
- }
- },
- "requirements": [
- [
- "all_effects"
- ]
- ],
- "rewards": {
- "experience": 100
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/brew_potion.json b/src/main/resources/data/minecraft/advancement/nether/brew_potion.json
deleted file mode 100644
index c180197..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/brew_potion.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "parent": "minecraft:nether/obtain_blaze_rod",
- "criteria": {
- "potion": {
- "trigger": "minecraft:brewed_potion"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.brew_potion.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:potion"
- },
- "title": {
- "translate": "advancements.nether.brew_potion.title"
- }
- },
- "requirements": [
- [
- "potion"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/charge_respawn_anchor.json b/src/main/resources/data/minecraft/advancement/nether/charge_respawn_anchor.json
deleted file mode 100644
index c7a2b37..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/charge_respawn_anchor.json
+++ /dev/null
@@ -1,47 +0,0 @@
-{
- "parent": "minecraft:nether/obtain_crying_obsidian",
- "criteria": {
- "charge_respawn_anchor": {
- "conditions": {
- "location": [
- {
- "condition": "minecraft:location_check",
- "predicate": {
- "block": {
- "blocks": "minecraft:respawn_anchor",
- "state": {
- "charges": "4"
- }
- }
- }
- },
- {
- "condition": "minecraft:match_tool",
- "predicate": {
- "items": "minecraft:glowstone"
- }
- }
- ]
- },
- "trigger": "minecraft:item_used_on_block"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.charge_respawn_anchor.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:respawn_anchor"
- },
- "title": {
- "translate": "advancements.nether.charge_respawn_anchor.title"
- }
- },
- "requirements": [
- [
- "charge_respawn_anchor"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/create_beacon.json b/src/main/resources/data/minecraft/advancement/nether/create_beacon.json
deleted file mode 100644
index 53aaad6..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/create_beacon.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "parent": "minecraft:nether/summon_wither",
- "criteria": {
- "beacon": {
- "conditions": {
- "level": {
- "min": 1
- }
- },
- "trigger": "minecraft:construct_beacon"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.create_beacon.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:beacon"
- },
- "title": {
- "translate": "advancements.nether.create_beacon.title"
- }
- },
- "requirements": [
- [
- "beacon"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/create_full_beacon.json b/src/main/resources/data/minecraft/advancement/nether/create_full_beacon.json
deleted file mode 100644
index 9744f0e..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/create_full_beacon.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "parent": "minecraft:nether/create_beacon",
- "criteria": {
- "beacon": {
- "conditions": {
- "level": 4
- },
- "trigger": "minecraft:construct_beacon"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.create_full_beacon.description"
- },
- "frame": "goal",
- "icon": {
- "count": 1,
- "id": "minecraft:beacon"
- },
- "title": {
- "translate": "advancements.nether.create_full_beacon.title"
- }
- },
- "requirements": [
- [
- "beacon"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/distract_piglin.json b/src/main/resources/data/minecraft/advancement/nether/distract_piglin.json
deleted file mode 100644
index 2faa718..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/distract_piglin.json
+++ /dev/null
@@ -1,180 +0,0 @@
-{
- "parent": "minecraft:nether/root",
- "criteria": {
- "distract_piglin": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:piglin",
- "flags": {
- "is_baby": false
- }
- }
- }
- ],
- "item": {
- "items": "#minecraft:piglin_loved"
- },
- "player": [
- {
- "condition": "minecraft:inverted",
- "term": {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "equipment": {
- "head": {
- "items": "minecraft:golden_helmet"
- }
- }
- }
- }
- },
- {
- "condition": "minecraft:inverted",
- "term": {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "equipment": {
- "chest": {
- "items": "minecraft:golden_chestplate"
- }
- }
- }
- }
- },
- {
- "condition": "minecraft:inverted",
- "term": {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "equipment": {
- "legs": {
- "items": "minecraft:golden_leggings"
- }
- }
- }
- }
- },
- {
- "condition": "minecraft:inverted",
- "term": {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "equipment": {
- "feet": {
- "items": "minecraft:golden_boots"
- }
- }
- }
- }
- }
- ]
- },
- "trigger": "minecraft:thrown_item_picked_up_by_entity"
- },
- "distract_piglin_directly": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:piglin",
- "flags": {
- "is_baby": false
- }
- }
- }
- ],
- "item": {
- "items": "minecraft:gold_ingot"
- },
- "player": [
- {
- "condition": "minecraft:inverted",
- "term": {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "equipment": {
- "head": {
- "items": "minecraft:golden_helmet"
- }
- }
- }
- }
- },
- {
- "condition": "minecraft:inverted",
- "term": {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "equipment": {
- "chest": {
- "items": "minecraft:golden_chestplate"
- }
- }
- }
- }
- },
- {
- "condition": "minecraft:inverted",
- "term": {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "equipment": {
- "legs": {
- "items": "minecraft:golden_leggings"
- }
- }
- }
- }
- },
- {
- "condition": "minecraft:inverted",
- "term": {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "equipment": {
- "feet": {
- "items": "minecraft:golden_boots"
- }
- }
- }
- }
- }
- ]
- },
- "trigger": "minecraft:player_interacted_with_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.distract_piglin.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:gold_ingot"
- },
- "title": {
- "translate": "advancements.nether.distract_piglin.title"
- }
- },
- "requirements": [
- [
- "distract_piglin",
- "distract_piglin_directly"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/explore_nether.json b/src/main/resources/data/minecraft/advancement/nether/explore_nether.json
deleted file mode 100644
index 76fdf21..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/explore_nether.json
+++ /dev/null
@@ -1,119 +0,0 @@
-{
- "parent": "minecraft:nether/ride_strider",
- "criteria": {
- "minecraft:basalt_deltas": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:basalt_deltas"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:crimson_forest": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:crimson_forest"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:nether_wastes": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:nether_wastes"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:soul_sand_valley": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:soul_sand_valley"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- },
- "minecraft:warped_forest": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "biomes": "minecraft:warped_forest"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.explore_nether.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:netherite_boots"
- },
- "title": {
- "translate": "advancements.nether.explore_nether.title"
- }
- },
- "requirements": [
- [
- "minecraft:nether_wastes"
- ],
- [
- "minecraft:soul_sand_valley"
- ],
- [
- "minecraft:crimson_forest"
- ],
- [
- "minecraft:warped_forest"
- ],
- [
- "minecraft:basalt_deltas"
- ]
- ],
- "rewards": {
- "experience": 500
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/fast_travel.json b/src/main/resources/data/minecraft/advancement/nether/fast_travel.json
deleted file mode 100644
index 3c61107..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/fast_travel.json
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- "parent": "minecraft:nether/root",
- "criteria": {
- "travelled": {
- "conditions": {
- "distance": {
- "horizontal": {
- "min": 7000.0
- }
- }
- },
- "trigger": "minecraft:nether_travel"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.fast_travel.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:map"
- },
- "title": {
- "translate": "advancements.nether.fast_travel.title"
- }
- },
- "requirements": [
- [
- "travelled"
- ]
- ],
- "rewards": {
- "experience": 100
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/find_bastion.json b/src/main/resources/data/minecraft/advancement/nether/find_bastion.json
deleted file mode 100644
index 9b25346..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/find_bastion.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "parent": "minecraft:nether/root",
- "criteria": {
- "bastion": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "structures": "minecraft:bastion_remnant"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.find_bastion.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:polished_blackstone_bricks"
- },
- "title": {
- "translate": "advancements.nether.find_bastion.title"
- }
- },
- "requirements": [
- [
- "bastion"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/find_fortress.json b/src/main/resources/data/minecraft/advancement/nether/find_fortress.json
deleted file mode 100644
index 26b1ee3..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/find_fortress.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "parent": "minecraft:nether/root",
- "criteria": {
- "fortress": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "structures": "minecraft:fortress"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.find_fortress.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:nether_bricks"
- },
- "title": {
- "translate": "advancements.nether.find_fortress.title"
- }
- },
- "requirements": [
- [
- "fortress"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/get_wither_skull.json b/src/main/resources/data/minecraft/advancement/nether/get_wither_skull.json
deleted file mode 100644
index aee6f71..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/get_wither_skull.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "parent": "minecraft:nether/find_fortress",
- "criteria": {
- "wither_skull": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:wither_skeleton_skull"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.get_wither_skull.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:wither_skeleton_skull"
- },
- "title": {
- "translate": "advancements.nether.get_wither_skull.title"
- }
- },
- "requirements": [
- [
- "wither_skull"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/loot_bastion.json b/src/main/resources/data/minecraft/advancement/nether/loot_bastion.json
deleted file mode 100644
index 97a15e0..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/loot_bastion.json
+++ /dev/null
@@ -1,50 +0,0 @@
-{
- "parent": "minecraft:nether/find_bastion",
- "criteria": {
- "loot_bastion_bridge": {
- "conditions": {
- "loot_table": "minecraft:chests/bastion_bridge"
- },
- "trigger": "minecraft:player_generates_container_loot"
- },
- "loot_bastion_hoglin_stable": {
- "conditions": {
- "loot_table": "minecraft:chests/bastion_hoglin_stable"
- },
- "trigger": "minecraft:player_generates_container_loot"
- },
- "loot_bastion_other": {
- "conditions": {
- "loot_table": "minecraft:chests/bastion_other"
- },
- "trigger": "minecraft:player_generates_container_loot"
- },
- "loot_bastion_treasure": {
- "conditions": {
- "loot_table": "minecraft:chests/bastion_treasure"
- },
- "trigger": "minecraft:player_generates_container_loot"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.loot_bastion.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:chest"
- },
- "title": {
- "translate": "advancements.nether.loot_bastion.title"
- }
- },
- "requirements": [
- [
- "loot_bastion_other",
- "loot_bastion_treasure",
- "loot_bastion_hoglin_stable",
- "loot_bastion_bridge"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/netherite_armor.json b/src/main/resources/data/minecraft/advancement/nether/netherite_armor.json
deleted file mode 100644
index 29e64ba..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/netherite_armor.json
+++ /dev/null
@@ -1,46 +0,0 @@
-{
- "parent": "minecraft:nether/obtain_ancient_debris",
- "criteria": {
- "netherite_armor": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:netherite_helmet"
- },
- {
- "items": "minecraft:netherite_chestplate"
- },
- {
- "items": "minecraft:netherite_leggings"
- },
- {
- "items": "minecraft:netherite_boots"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.netherite_armor.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:netherite_chestplate"
- },
- "title": {
- "translate": "advancements.nether.netherite_armor.title"
- }
- },
- "requirements": [
- [
- "netherite_armor"
- ]
- ],
- "rewards": {
- "experience": 100
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/obtain_ancient_debris.json b/src/main/resources/data/minecraft/advancement/nether/obtain_ancient_debris.json
deleted file mode 100644
index d153810..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/obtain_ancient_debris.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "parent": "minecraft:nether/root",
- "criteria": {
- "ancient_debris": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:ancient_debris"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.obtain_ancient_debris.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:ancient_debris"
- },
- "title": {
- "translate": "advancements.nether.obtain_ancient_debris.title"
- }
- },
- "requirements": [
- [
- "ancient_debris"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/obtain_blaze_rod.json b/src/main/resources/data/minecraft/advancement/nether/obtain_blaze_rod.json
deleted file mode 100644
index e18cbbf..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/obtain_blaze_rod.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "parent": "minecraft:nether/find_fortress",
- "criteria": {
- "blaze_rod": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blaze_rod"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.obtain_blaze_rod.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:blaze_rod"
- },
- "title": {
- "translate": "advancements.nether.obtain_blaze_rod.title"
- }
- },
- "requirements": [
- [
- "blaze_rod"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/obtain_crying_obsidian.json b/src/main/resources/data/minecraft/advancement/nether/obtain_crying_obsidian.json
deleted file mode 100644
index 8561c21..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/obtain_crying_obsidian.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "parent": "minecraft:nether/root",
- "criteria": {
- "crying_obsidian": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:crying_obsidian"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.obtain_crying_obsidian.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:crying_obsidian"
- },
- "title": {
- "translate": "advancements.nether.obtain_crying_obsidian.title"
- }
- },
- "requirements": [
- [
- "crying_obsidian"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/return_to_sender.json b/src/main/resources/data/minecraft/advancement/nether/return_to_sender.json
deleted file mode 100644
index 22b88ee..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/return_to_sender.json
+++ /dev/null
@@ -1,52 +0,0 @@
-{
- "parent": "minecraft:nether/root",
- "criteria": {
- "killed_ghast": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:ghast"
- }
- }
- ],
- "killing_blow": {
- "direct_entity": {
- "type": "minecraft:fireball"
- },
- "tags": [
- {
- "expected": true,
- "id": "minecraft:is_projectile"
- }
- ]
- }
- },
- "trigger": "minecraft:player_killed_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.return_to_sender.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:fire_charge"
- },
- "title": {
- "translate": "advancements.nether.return_to_sender.title"
- }
- },
- "requirements": [
- [
- "killed_ghast"
- ]
- ],
- "rewards": {
- "experience": 50
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/ride_strider.json b/src/main/resources/data/minecraft/advancement/nether/ride_strider.json
deleted file mode 100644
index 376de8e..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/ride_strider.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
- "parent": "minecraft:nether/root",
- "criteria": {
- "used_warped_fungus_on_a_stick": {
- "conditions": {
- "item": {
- "items": "minecraft:warped_fungus_on_a_stick"
- },
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "vehicle": {
- "type": "minecraft:strider"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:item_durability_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.ride_strider.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:warped_fungus_on_a_stick"
- },
- "title": {
- "translate": "advancements.nether.ride_strider.title"
- }
- },
- "requirements": [
- [
- "used_warped_fungus_on_a_stick"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/ride_strider_in_overworld_lava.json b/src/main/resources/data/minecraft/advancement/nether/ride_strider_in_overworld_lava.json
deleted file mode 100644
index c172699..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/ride_strider_in_overworld_lava.json
+++ /dev/null
@@ -1,47 +0,0 @@
-{
- "parent": "minecraft:nether/ride_strider",
- "criteria": {
- "ride_entity_distance": {
- "conditions": {
- "distance": {
- "horizontal": {
- "min": 50.0
- }
- },
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "dimension": "minecraft:overworld"
- },
- "vehicle": {
- "type": "minecraft:strider"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:ride_entity_in_lava"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.ride_strider_in_overworld_lava.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:warped_fungus_on_a_stick"
- },
- "title": {
- "translate": "advancements.nether.ride_strider_in_overworld_lava.title"
- }
- },
- "requirements": [
- [
- "ride_entity_distance"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/root.json b/src/main/resources/data/minecraft/advancement/nether/root.json
deleted file mode 100644
index 6ef424e..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/root.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "criteria": {
- "entered_nether": {
- "conditions": {
- "to": "minecraft:the_nether"
- },
- "trigger": "minecraft:changed_dimension"
- }
- },
- "display": {
- "announce_to_chat": false,
- "background": "minecraft:textures/gui/advancements/backgrounds/nether.png",
- "description": {
- "translate": "advancements.nether.root.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:red_nether_bricks"
- },
- "show_toast": false,
- "title": {
- "translate": "advancements.nether.root.title"
- }
- },
- "requirements": [
- [
- "entered_nether"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/summon_wither.json b/src/main/resources/data/minecraft/advancement/nether/summon_wither.json
deleted file mode 100644
index 9c85556..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/summon_wither.json
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- "parent": "minecraft:nether/get_wither_skull",
- "criteria": {
- "summoned": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:wither"
- }
- }
- ]
- },
- "trigger": "minecraft:summoned_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.summon_wither.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:nether_star"
- },
- "title": {
- "translate": "advancements.nether.summon_wither.title"
- }
- },
- "requirements": [
- [
- "summoned"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/uneasy_alliance.json b/src/main/resources/data/minecraft/advancement/nether/uneasy_alliance.json
deleted file mode 100644
index eb27bb7..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/uneasy_alliance.json
+++ /dev/null
@@ -1,44 +0,0 @@
-{
- "parent": "minecraft:nether/return_to_sender",
- "criteria": {
- "killed_ghast": {
- "conditions": {
- "entity": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:ghast",
- "location": {
- "dimension": "minecraft:overworld"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:player_killed_entity"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.uneasy_alliance.description"
- },
- "frame": "challenge",
- "icon": {
- "count": 1,
- "id": "minecraft:ghast_tear"
- },
- "title": {
- "translate": "advancements.nether.uneasy_alliance.title"
- }
- },
- "requirements": [
- [
- "killed_ghast"
- ]
- ],
- "rewards": {
- "experience": 100
- },
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/nether/use_lodestone.json b/src/main/resources/data/minecraft/advancement/nether/use_lodestone.json
deleted file mode 100644
index dfa084d..0000000
--- a/src/main/resources/data/minecraft/advancement/nether/use_lodestone.json
+++ /dev/null
@@ -1,44 +0,0 @@
-{
- "parent": "minecraft:nether/obtain_ancient_debris",
- "criteria": {
- "use_lodestone": {
- "conditions": {
- "location": [
- {
- "condition": "minecraft:location_check",
- "predicate": {
- "block": {
- "blocks": "minecraft:lodestone"
- }
- }
- },
- {
- "condition": "minecraft:match_tool",
- "predicate": {
- "items": "minecraft:compass"
- }
- }
- ]
- },
- "trigger": "minecraft:item_used_on_block"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.nether.use_lodestone.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:lodestone"
- },
- "title": {
- "translate": "advancements.nether.use_lodestone.title"
- }
- },
- "requirements": [
- [
- "use_lodestone"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/brewing/blaze_powder.json b/src/main/resources/data/minecraft/advancement/recipes/brewing/blaze_powder.json
deleted file mode 100644
index 8d1dddd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/brewing/blaze_powder.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blaze_rod": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blaze_rod"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blaze_powder"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blaze_rod"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blaze_powder"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/brewing/brewing_stand.json b/src/main/resources/data/minecraft/advancement/recipes/brewing/brewing_stand.json
deleted file mode 100644
index 0ac47f8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/brewing/brewing_stand.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blaze_rod": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blaze_rod"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brewing_stand"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blaze_rod"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brewing_stand"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/brewing/cauldron.json b/src/main/resources/data/minecraft/advancement/recipes/brewing/cauldron.json
deleted file mode 100644
index ff39eb3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/brewing/cauldron.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cauldron"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_water_bucket": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:water_bucket"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_water_bucket"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cauldron"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/brewing/fermented_spider_eye.json b/src/main/resources/data/minecraft/advancement/recipes/brewing/fermented_spider_eye.json
deleted file mode 100644
index 8a3761d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/brewing/fermented_spider_eye.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_spider_eye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:spider_eye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:fermented_spider_eye"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_spider_eye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:fermented_spider_eye"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/brewing/glass_bottle.json b/src/main/resources/data/minecraft/advancement/recipes/brewing/glass_bottle.json
deleted file mode 100644
index fe21e43..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/brewing/glass_bottle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:glass_bottle"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:glass_bottle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/brewing/glistering_melon_slice.json b/src/main/resources/data/minecraft/advancement/recipes/brewing/glistering_melon_slice.json
deleted file mode 100644
index 857f041..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/brewing/glistering_melon_slice.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_melon": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:melon_slice"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:glistering_melon_slice"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_melon"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:glistering_melon_slice"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/brewing/golden_carrot.json b/src/main/resources/data/minecraft/advancement/recipes/brewing/golden_carrot.json
deleted file mode 100644
index 08d9c0d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/brewing/golden_carrot.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gold_nugget": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gold_nugget"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:golden_carrot"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gold_nugget"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:golden_carrot"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/brewing/magma_cream.json b/src/main/resources/data/minecraft/advancement/recipes/brewing/magma_cream.json
deleted file mode 100644
index fc58250..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/brewing/magma_cream.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blaze_powder": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blaze_powder"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:magma_cream"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blaze_powder"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:magma_cream"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/acacia_planks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/acacia_planks.json
deleted file mode 100644
index 6ac8ef0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/acacia_planks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:acacia_logs"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:acacia_planks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:acacia_planks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/acacia_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/acacia_slab.json
deleted file mode 100644
index b689bb1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/acacia_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:acacia_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:acacia_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:acacia_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/acacia_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/acacia_stairs.json
deleted file mode 100644
index 48d940b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/acacia_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:acacia_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:acacia_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:acacia_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/acacia_wood.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/acacia_wood.json
deleted file mode 100644
index 3e2bb81..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/acacia_wood.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:acacia_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:acacia_wood"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:acacia_wood"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/amethyst_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/amethyst_block.json
deleted file mode 100644
index 427da1b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/amethyst_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_amethyst_shard": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:amethyst_shard"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:amethyst_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_amethyst_shard"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:amethyst_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite.json
deleted file mode 100644
index 66f931d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diorite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:andesite"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:andesite"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite_slab.json
deleted file mode 100644
index 34f4b6f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_andesite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:andesite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:andesite_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_andesite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:andesite_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite_slab_from_andesite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite_slab_from_andesite_stonecutting.json
deleted file mode 100644
index fd703a5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite_slab_from_andesite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_andesite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:andesite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:andesite_slab_from_andesite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_andesite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:andesite_slab_from_andesite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite_stairs.json
deleted file mode 100644
index a5645ee..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_andesite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:andesite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:andesite_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_andesite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:andesite_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite_stairs_from_andesite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite_stairs_from_andesite_stonecutting.json
deleted file mode 100644
index 2206f37..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/andesite_stairs_from_andesite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_andesite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:andesite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:andesite_stairs_from_andesite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_andesite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:andesite_stairs_from_andesite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bamboo_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bamboo_block.json
deleted file mode 100644
index c738c90..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bamboo_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bamboo": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bamboo"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bamboo_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_bamboo"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bamboo_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bamboo_mosaic_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bamboo_mosaic_slab.json
deleted file mode 100644
index 9204c7f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bamboo_mosaic_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bamboo_mosaic": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bamboo_mosaic"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bamboo_mosaic_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_bamboo_mosaic"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bamboo_mosaic_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bamboo_mosaic_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bamboo_mosaic_stairs.json
deleted file mode 100644
index 7ba886b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bamboo_mosaic_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bamboo_mosaic": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bamboo_mosaic"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bamboo_mosaic_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_bamboo_mosaic"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bamboo_mosaic_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bamboo_planks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bamboo_planks.json
deleted file mode 100644
index f8a7cd8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bamboo_planks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_logs": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:bamboo_blocks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bamboo_planks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bamboo_planks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bamboo_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bamboo_slab.json
deleted file mode 100644
index bd1270c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bamboo_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bamboo_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bamboo_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bamboo_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bamboo_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bamboo_stairs.json
deleted file mode 100644
index 671a991..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bamboo_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bamboo_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bamboo_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bamboo_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/birch_planks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/birch_planks.json
deleted file mode 100644
index 33ff452..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/birch_planks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_logs": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:birch_logs"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:birch_planks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:birch_planks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/birch_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/birch_slab.json
deleted file mode 100644
index 22b07f0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/birch_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:birch_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:birch_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:birch_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/birch_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/birch_stairs.json
deleted file mode 100644
index 93c4a0a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/birch_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:birch_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:birch_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:birch_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/birch_wood.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/birch_wood.json
deleted file mode 100644
index ca81455..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/birch_wood.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:birch_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:birch_wood"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:birch_wood"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/black_concrete_powder.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/black_concrete_powder.json
deleted file mode 100644
index cada244..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/black_concrete_powder.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gravel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gravel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_sand": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sand"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:black_concrete_powder"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sand",
- "has_gravel"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:black_concrete_powder"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/black_stained_glass.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/black_stained_glass.json
deleted file mode 100644
index 8cdecae..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/black_stained_glass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:black_stained_glass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:black_stained_glass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/black_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/black_terracotta.json
deleted file mode 100644
index da09c67..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/black_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:black_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:black_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blackstone_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blackstone_slab.json
deleted file mode 100644
index 396bfc7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blackstone_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blackstone_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blackstone_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blackstone_slab_from_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blackstone_slab_from_blackstone_stonecutting.json
deleted file mode 100644
index 358fd4b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blackstone_slab_from_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blackstone_slab_from_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blackstone_slab_from_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blackstone_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blackstone_stairs.json
deleted file mode 100644
index 4d3708f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blackstone_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blackstone_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blackstone_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blackstone_stairs_from_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blackstone_stairs_from_blackstone_stonecutting.json
deleted file mode 100644
index 41a99da..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blackstone_stairs_from_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blackstone_stairs_from_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blackstone_stairs_from_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blue_concrete_powder.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blue_concrete_powder.json
deleted file mode 100644
index 9f25469..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blue_concrete_powder.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gravel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gravel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_sand": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sand"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blue_concrete_powder"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sand",
- "has_gravel"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blue_concrete_powder"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blue_ice.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blue_ice.json
deleted file mode 100644
index da1920a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blue_ice.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_packed_ice": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:packed_ice"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blue_ice"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_packed_ice"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blue_ice"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blue_stained_glass.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blue_stained_glass.json
deleted file mode 100644
index abfc34c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blue_stained_glass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blue_stained_glass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blue_stained_glass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blue_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blue_terracotta.json
deleted file mode 100644
index 76b6ed8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/blue_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blue_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blue_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bone_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bone_block.json
deleted file mode 100644
index efb51c7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bone_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bone_meal": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bone_meal"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bone_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_bone_meal"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bone_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bookshelf.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bookshelf.json
deleted file mode 100644
index 940dc9d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bookshelf.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_book": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:book"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bookshelf"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_book"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bookshelf"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brick_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brick_slab.json
deleted file mode 100644
index bfc8c4a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brick_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brick_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brick_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brick_slab_from_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brick_slab_from_bricks_stonecutting.json
deleted file mode 100644
index 996dd7e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brick_slab_from_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brick_slab_from_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brick_slab_from_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brick_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brick_stairs.json
deleted file mode 100644
index ab6165a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brick_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brick_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brick_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brick_stairs_from_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brick_stairs_from_bricks_stonecutting.json
deleted file mode 100644
index 10f026a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brick_stairs_from_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brick_stairs_from_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brick_stairs_from_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bricks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bricks.json
deleted file mode 100644
index e7da1c7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/bricks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_brick": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:brick"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bricks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_brick"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bricks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brown_concrete_powder.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brown_concrete_powder.json
deleted file mode 100644
index 0d70496..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brown_concrete_powder.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gravel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gravel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_sand": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sand"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brown_concrete_powder"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sand",
- "has_gravel"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brown_concrete_powder"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brown_stained_glass.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brown_stained_glass.json
deleted file mode 100644
index e16a209..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brown_stained_glass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brown_stained_glass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brown_stained_glass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brown_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brown_terracotta.json
deleted file mode 100644
index 3bccb2a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/brown_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brown_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brown_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cherry_planks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cherry_planks.json
deleted file mode 100644
index 00dde3c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cherry_planks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:cherry_logs"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cherry_planks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cherry_planks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cherry_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cherry_slab.json
deleted file mode 100644
index 0ec95c0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cherry_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cherry_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cherry_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cherry_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cherry_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cherry_stairs.json
deleted file mode 100644
index 50c80f1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cherry_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cherry_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cherry_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cherry_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cherry_wood.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cherry_wood.json
deleted file mode 100644
index 083d3a3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cherry_wood.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cherry_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cherry_wood"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cherry_wood"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_bookshelf.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_bookshelf.json
deleted file mode 100644
index 4cac964..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_bookshelf.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_book": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:book"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_bookshelf"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_book"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_bookshelf"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_copper.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_copper.json
deleted file mode 100644
index 51c1eeb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cut_copper_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cut_copper_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cut_copper_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_copper_from_copper_block_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_copper_from_copper_block_stonecutting.json
deleted file mode 100644
index 5140c19..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_copper_from_copper_block_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_copper_from_copper_block_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_copper_from_copper_block_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_copper_from_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_copper_from_cut_copper_stonecutting.json
deleted file mode 100644
index 466dcf8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_copper_from_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_copper_from_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_copper_from_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate.json
deleted file mode 100644
index 5150c4e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_deepslate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_deepslate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate_from_cobbled_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate_from_cobbled_deepslate_stonecutting.json
deleted file mode 100644
index ccf8dc0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate_from_cobbled_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_nether_bricks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_nether_bricks.json
deleted file mode 100644
index 88b409f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_nether_bricks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nether_brick_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nether_brick_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_nether_bricks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nether_brick_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_nether_bricks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_nether_bricks_from_nether_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_nether_bricks_from_nether_bricks_stonecutting.json
deleted file mode 100644
index 0c2324b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_nether_bricks_from_nether_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nether_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nether_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_nether_bricks_from_nether_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nether_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_nether_bricks_from_nether_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone.json
deleted file mode 100644
index e089c93..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_polished_blackstone"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_polished_blackstone"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone_from_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone_from_blackstone_stonecutting.json
deleted file mode 100644
index affd482..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone_from_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_polished_blackstone_from_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_polished_blackstone_from_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone_from_polished_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone_from_polished_blackstone_stonecutting.json
deleted file mode 100644
index f084caa..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone_from_polished_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_polished_blackstone_from_polished_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_polished_blackstone_from_polished_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_quartz_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_quartz_block.json
deleted file mode 100644
index f56f83a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_quartz_block.json
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_chiseled_quartz_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chiseled_quartz_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_quartz_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_quartz_pillar": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz_pillar"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_quartz_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_chiseled_quartz_block",
- "has_quartz_block",
- "has_quartz_pillar"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_quartz_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_quartz_block_from_quartz_block_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_quartz_block_from_quartz_block_stonecutting.json
deleted file mode 100644
index 2a50bf3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_quartz_block_from_quartz_block_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_quartz_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_quartz_block_from_quartz_block_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_quartz_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_quartz_block_from_quartz_block_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_red_sandstone.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_red_sandstone.json
deleted file mode 100644
index 236b2f2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_red_sandstone.json
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_chiseled_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chiseled_red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_cut_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cut_red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_red_sandstone"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_sandstone",
- "has_chiseled_red_sandstone",
- "has_cut_red_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_red_sandstone"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_red_sandstone_from_red_sandstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_red_sandstone_from_red_sandstone_stonecutting.json
deleted file mode 100644
index 2ecfb75..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_red_sandstone_from_red_sandstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_red_sandstone_from_red_sandstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_red_sandstone_from_red_sandstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_sandstone.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_sandstone.json
deleted file mode 100644
index 450da41..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_sandstone.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_sandstone_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sandstone_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_sandstone"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sandstone_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_sandstone"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_sandstone_from_sandstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_sandstone_from_sandstone_stonecutting.json
deleted file mode 100644
index 8582a73..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_sandstone_from_sandstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_sandstone_from_sandstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_sandstone_from_sandstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks.json
deleted file mode 100644
index d51c7ae..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_tag": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_stone_bricks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tag"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_stone_bricks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks_from_stone_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks_from_stone_bricks_stonecutting.json
deleted file mode 100644
index d292337..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks_from_stone_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_stone_bricks_from_stone_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_stone_bricks_from_stone_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks_stone_from_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks_stone_from_stonecutting.json
deleted file mode 100644
index 3e54dab..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks_stone_from_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_stone_bricks_stone_from_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_stone_bricks_stone_from_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff.json
deleted file mode 100644
index bf0d032..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_tuff"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_tuff"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks.json
deleted file mode 100644
index 471700c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_tuff_bricks"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff_brick_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff_brick_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff_brick_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_tuff_bricks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_polished_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_polished_tuff_stonecutting.json
deleted file mode 100644
index d6bcb51..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_polished_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_tuff_bricks_from_polished_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_tuff_bricks_from_polished_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_tuff_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_tuff_bricks_stonecutting.json
deleted file mode 100644
index 6a64f40..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_tuff_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_tuff_bricks_from_tuff_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_tuff_bricks_from_tuff_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_tuff_stonecutting.json
deleted file mode 100644
index f6f51ba..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_tuff_bricks_from_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_tuff_bricks_from_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_from_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_from_tuff_stonecutting.json
deleted file mode 100644
index b596b5b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_from_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chiseled_tuff_from_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chiseled_tuff_from_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/clay.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/clay.json
deleted file mode 100644
index ca22e41..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/clay.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_clay_ball": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:clay_ball"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:clay"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_clay_ball"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:clay"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/coal_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/coal_block.json
deleted file mode 100644
index fae9443..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/coal_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_coal": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:coal"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:coal_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_coal"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:coal_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/coarse_dirt.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/coarse_dirt.json
deleted file mode 100644
index f554b73..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/coarse_dirt.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gravel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gravel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:coarse_dirt"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gravel"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:coarse_dirt"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab.json
deleted file mode 100644
index 514d2f3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cobbled_deepslate_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cobbled_deepslate_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting.json
deleted file mode 100644
index c38bba2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs.json
deleted file mode 100644
index 36881a5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cobbled_deepslate_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cobbled_deepslate_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting.json
deleted file mode 100644
index dc6df98..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab.json
deleted file mode 100644
index e9137a3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobblestone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cobblestone_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cobblestone_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab_from_cobblestone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab_from_cobblestone_stonecutting.json
deleted file mode 100644
index 5a2a0ca..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab_from_cobblestone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobblestone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cobblestone_slab_from_cobblestone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cobblestone_slab_from_cobblestone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs.json
deleted file mode 100644
index 313f238..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobblestone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cobblestone_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cobblestone_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs_from_cobblestone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs_from_cobblestone_stonecutting.json
deleted file mode 100644
index 0d7117d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs_from_cobblestone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobblestone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cobblestone_stairs_from_cobblestone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cobblestone_stairs_from_cobblestone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/copper_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/copper_block.json
deleted file mode 100644
index ccb1af3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/copper_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:copper_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:copper_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/copper_grate.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/copper_grate.json
deleted file mode 100644
index 0748aaa..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/copper_grate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:copper_grate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:copper_grate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/copper_grate_from_copper_block_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/copper_grate_from_copper_block_stonecutting.json
deleted file mode 100644
index db02a2a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/copper_grate_from_copper_block_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:copper_grate_from_copper_block_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:copper_grate_from_copper_block_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cracked_deepslate_bricks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cracked_deepslate_bricks.json
deleted file mode 100644
index 9d01062..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cracked_deepslate_bricks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cracked_deepslate_bricks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cracked_deepslate_bricks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cracked_deepslate_tiles.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cracked_deepslate_tiles.json
deleted file mode 100644
index a4088a4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cracked_deepslate_tiles.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_tiles": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_tiles"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cracked_deepslate_tiles"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_tiles"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cracked_deepslate_tiles"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cracked_nether_bricks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cracked_nether_bricks.json
deleted file mode 100644
index 8f52984..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cracked_nether_bricks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nether_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nether_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cracked_nether_bricks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nether_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cracked_nether_bricks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cracked_polished_blackstone_bricks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cracked_polished_blackstone_bricks.json
deleted file mode 100644
index 1c6e2b1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cracked_polished_blackstone_bricks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cracked_polished_blackstone_bricks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cracked_polished_blackstone_bricks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cracked_stone_bricks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cracked_stone_bricks.json
deleted file mode 100644
index afecad1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cracked_stone_bricks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cracked_stone_bricks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cracked_stone_bricks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/crimson_hyphae.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/crimson_hyphae.json
deleted file mode 100644
index ed56eba..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/crimson_hyphae.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:crimson_stem"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:crimson_hyphae"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:crimson_hyphae"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/crimson_planks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/crimson_planks.json
deleted file mode 100644
index 068c734..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/crimson_planks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_logs": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:crimson_stems"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:crimson_planks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:crimson_planks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/crimson_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/crimson_slab.json
deleted file mode 100644
index 6287bba..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/crimson_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:crimson_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:crimson_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:crimson_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/crimson_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/crimson_stairs.json
deleted file mode 100644
index 54629e8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/crimson_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:crimson_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:crimson_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:crimson_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper.json
deleted file mode 100644
index 5842a49..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cut_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cut_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_from_copper_block_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_from_copper_block_stonecutting.json
deleted file mode 100644
index b0f42ce..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_from_copper_block_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cut_copper_from_copper_block_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cut_copper_from_copper_block_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab.json
deleted file mode 100644
index 8cd916b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cut_copper_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cut_copper_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab_from_copper_block_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab_from_copper_block_stonecutting.json
deleted file mode 100644
index dd6699e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab_from_copper_block_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cut_copper_slab_from_copper_block_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cut_copper_slab_from_copper_block_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab_from_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab_from_cut_copper_stonecutting.json
deleted file mode 100644
index 1e1d347..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab_from_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cut_copper_slab_from_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cut_copper_slab_from_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs.json
deleted file mode 100644
index aa841a4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cut_copper_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cut_copper_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs_from_copper_block_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs_from_copper_block_stonecutting.json
deleted file mode 100644
index d6021a0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs_from_copper_block_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cut_copper_stairs_from_copper_block_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cut_copper_stairs_from_copper_block_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs_from_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs_from_cut_copper_stonecutting.json
deleted file mode 100644
index 7ec3553..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs_from_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cut_copper_stairs_from_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cut_copper_stairs_from_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone.json
deleted file mode 100644
index 4f4e56d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cut_red_sandstone"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cut_red_sandstone"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_from_red_sandstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_from_red_sandstone_stonecutting.json
deleted file mode 100644
index 2626bf8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_from_red_sandstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cut_red_sandstone_from_red_sandstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cut_red_sandstone_from_red_sandstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab.json
deleted file mode 100644
index a40ffcc..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cut_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cut_red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cut_red_sandstone_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cut_red_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cut_red_sandstone_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting.json
deleted file mode 100644
index 6e8c882..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cut_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cut_red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cut_red_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab_from_red_sandstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab_from_red_sandstone_stonecutting.json
deleted file mode 100644
index d7c8a63..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab_from_red_sandstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cut_red_sandstone_slab_from_red_sandstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cut_red_sandstone_slab_from_red_sandstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_sandstone.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_sandstone.json
deleted file mode 100644
index a7b5cc6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_sandstone.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cut_sandstone"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cut_sandstone"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_from_sandstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_from_sandstone_stonecutting.json
deleted file mode 100644
index 73db84e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_from_sandstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cut_sandstone_from_sandstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cut_sandstone_from_sandstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab.json
deleted file mode 100644
index 10affaa..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cut_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cut_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cut_sandstone_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cut_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cut_sandstone_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab_from_cut_sandstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab_from_cut_sandstone_stonecutting.json
deleted file mode 100644
index b634647..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab_from_cut_sandstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cut_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cut_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cut_sandstone_slab_from_cut_sandstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cut_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cut_sandstone_slab_from_cut_sandstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab_from_sandstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab_from_sandstone_stonecutting.json
deleted file mode 100644
index 3017cd6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab_from_sandstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cut_sandstone_slab_from_sandstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cut_sandstone_slab_from_sandstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cyan_concrete_powder.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cyan_concrete_powder.json
deleted file mode 100644
index 7e56c07..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cyan_concrete_powder.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gravel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gravel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_sand": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sand"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cyan_concrete_powder"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sand",
- "has_gravel"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cyan_concrete_powder"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cyan_stained_glass.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cyan_stained_glass.json
deleted file mode 100644
index 392dcac..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cyan_stained_glass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cyan_stained_glass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cyan_stained_glass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cyan_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cyan_terracotta.json
deleted file mode 100644
index 88981ad..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/cyan_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cyan_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cyan_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_oak_planks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_oak_planks.json
deleted file mode 100644
index c2edc97..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_oak_planks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:dark_oak_logs"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_oak_planks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_oak_planks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_oak_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_oak_slab.json
deleted file mode 100644
index b9b7981..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_oak_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dark_oak_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_oak_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_oak_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_oak_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_oak_stairs.json
deleted file mode 100644
index 37fef66..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_oak_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dark_oak_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_oak_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_oak_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_oak_wood.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_oak_wood.json
deleted file mode 100644
index 7f626fb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_oak_wood.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dark_oak_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_oak_wood"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_oak_wood"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_prismarine.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_prismarine.json
deleted file mode 100644
index c7f7a40..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_prismarine.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_prismarine_shard": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:prismarine_shard"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_prismarine"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_prismarine_shard"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_prismarine"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_slab.json
deleted file mode 100644
index 1aebf45..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_dark_prismarine": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dark_prismarine"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_prismarine_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_dark_prismarine"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_prismarine_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_slab_from_dark_prismarine_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_slab_from_dark_prismarine_stonecutting.json
deleted file mode 100644
index b3fb42e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_slab_from_dark_prismarine_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_dark_prismarine": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dark_prismarine"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_prismarine_slab_from_dark_prismarine_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_dark_prismarine"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_prismarine_slab_from_dark_prismarine_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_stairs.json
deleted file mode 100644
index 50d5dcf..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_dark_prismarine": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dark_prismarine"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_prismarine_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_dark_prismarine"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_prismarine_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_stairs_from_dark_prismarine_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_stairs_from_dark_prismarine_stonecutting.json
deleted file mode 100644
index 911f69e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_stairs_from_dark_prismarine_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_dark_prismarine": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dark_prismarine"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_prismarine_stairs_from_dark_prismarine_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_dark_prismarine"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_prismarine_stairs_from_dark_prismarine_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate.json
deleted file mode 100644
index 18d876e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab.json
deleted file mode 100644
index 9a8c5d7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_brick_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_brick_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_cobbled_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_cobbled_deepslate_stonecutting.json
deleted file mode 100644
index 32b6d21..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_cobbled_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_deepslate_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_deepslate_bricks_stonecutting.json
deleted file mode 100644
index c0e7624..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_deepslate_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_polished_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_polished_deepslate_stonecutting.json
deleted file mode 100644
index 7fce54b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_polished_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs.json
deleted file mode 100644
index 513cc8f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_brick_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_brick_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_cobbled_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_cobbled_deepslate_stonecutting.json
deleted file mode 100644
index 3739988..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_cobbled_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_deepslate_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_deepslate_bricks_stonecutting.json
deleted file mode 100644
index 49efdf8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_deepslate_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_polished_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_polished_deepslate_stonecutting.json
deleted file mode 100644
index b194ed1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_polished_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks.json
deleted file mode 100644
index 6f21d28..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_bricks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_bricks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_cobbled_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_cobbled_deepslate_stonecutting.json
deleted file mode 100644
index 50bb9a9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_cobbled_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_polished_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_polished_deepslate_stonecutting.json
deleted file mode 100644
index aef6f1c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_polished_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab.json
deleted file mode 100644
index 8b156c1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_tiles": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_tiles"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tile_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_tiles"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tile_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_cobbled_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_cobbled_deepslate_stonecutting.json
deleted file mode 100644
index a89f85d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_cobbled_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_bricks_stonecutting.json
deleted file mode 100644
index bea52e9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_tiles_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_tiles_stonecutting.json
deleted file mode 100644
index 35cd426..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_tiles_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_tiles": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_tiles"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_tiles"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_polished_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_polished_deepslate_stonecutting.json
deleted file mode 100644
index b79c0f7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_polished_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs.json
deleted file mode 100644
index 7c3c72b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_tiles": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_tiles"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tile_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_tiles"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tile_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_cobbled_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_cobbled_deepslate_stonecutting.json
deleted file mode 100644
index 3ee1d0d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_cobbled_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_bricks_stonecutting.json
deleted file mode 100644
index 3ba8b11..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_tiles_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_tiles_stonecutting.json
deleted file mode 100644
index 3fd2105..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_tiles_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_tiles": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_tiles"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_tiles"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_polished_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_polished_deepslate_stonecutting.json
deleted file mode 100644
index de129b1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_polished_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles.json
deleted file mode 100644
index 3ecb725..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tiles"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tiles"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_cobbled_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_cobbled_deepslate_stonecutting.json
deleted file mode 100644
index 5c4cfb2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_cobbled_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_deepslate_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_deepslate_bricks_stonecutting.json
deleted file mode 100644
index afb22ed..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_deepslate_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_polished_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_polished_deepslate_stonecutting.json
deleted file mode 100644
index 3236263..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_polished_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diamond_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diamond_block.json
deleted file mode 100644
index 06ac57a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diamond_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diamond": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diamond_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diamond"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diamond_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite.json
deleted file mode 100644
index 4f8b5af..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_quartz": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diorite"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_quartz"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diorite"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite_slab.json
deleted file mode 100644
index 666f1f2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diorite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diorite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diorite_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diorite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diorite_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite_slab_from_diorite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite_slab_from_diorite_stonecutting.json
deleted file mode 100644
index bee3144..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite_slab_from_diorite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diorite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diorite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diorite_slab_from_diorite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diorite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diorite_slab_from_diorite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite_stairs.json
deleted file mode 100644
index 70fd044..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diorite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diorite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diorite_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diorite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diorite_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite_stairs_from_diorite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite_stairs_from_diorite_stonecutting.json
deleted file mode 100644
index fbb4c7f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/diorite_stairs_from_diorite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diorite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diorite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diorite_stairs_from_diorite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diorite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diorite_stairs_from_diorite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dried_kelp_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dried_kelp_block.json
deleted file mode 100644
index 6b5058d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dried_kelp_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_dried_kelp": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dried_kelp"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dried_kelp_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_dried_kelp"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dried_kelp_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dripstone_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dripstone_block.json
deleted file mode 100644
index 94c9419..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dripstone_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_pointed_dripstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:pointed_dripstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dripstone_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_pointed_dripstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dripstone_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_black_bed.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_black_bed.json
deleted file mode 100644
index cf361c1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_black_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:black_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_black_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_black_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_black_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_black_carpet.json
deleted file mode 100644
index 3900027..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_black_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:black_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_black_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_black_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_black_wool.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_black_wool.json
deleted file mode 100644
index f3040dc..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_black_wool.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:black_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_black_wool"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_black_wool"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_blue_bed.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_blue_bed.json
deleted file mode 100644
index dc6607d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_blue_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blue_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_blue_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_blue_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_blue_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_blue_carpet.json
deleted file mode 100644
index f1efd20..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_blue_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blue_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_blue_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_blue_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_blue_wool.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_blue_wool.json
deleted file mode 100644
index 66b95b3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_blue_wool.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blue_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_blue_wool"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_blue_wool"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_brown_bed.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_brown_bed.json
deleted file mode 100644
index f57f8d7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_brown_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:brown_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_brown_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_brown_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_brown_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_brown_carpet.json
deleted file mode 100644
index c6754e2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_brown_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:brown_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_brown_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_brown_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_brown_wool.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_brown_wool.json
deleted file mode 100644
index 8345ecb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_brown_wool.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:brown_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_brown_wool"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_brown_wool"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_cyan_bed.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_cyan_bed.json
deleted file mode 100644
index 30eb18a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_cyan_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cyan_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_cyan_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_cyan_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_cyan_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_cyan_carpet.json
deleted file mode 100644
index 6dd04f3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_cyan_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cyan_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_cyan_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_cyan_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_cyan_wool.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_cyan_wool.json
deleted file mode 100644
index dc50081..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_cyan_wool.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cyan_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_cyan_wool"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_cyan_wool"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_gray_bed.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_gray_bed.json
deleted file mode 100644
index 1b0e6ea..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_gray_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gray_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_gray_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_gray_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_gray_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_gray_carpet.json
deleted file mode 100644
index bcc80ed..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_gray_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gray_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_gray_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_gray_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_gray_wool.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_gray_wool.json
deleted file mode 100644
index e7d85ca..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_gray_wool.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gray_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_gray_wool"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_gray_wool"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_green_bed.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_green_bed.json
deleted file mode 100644
index 6211d9d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_green_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:green_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_green_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_green_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_green_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_green_carpet.json
deleted file mode 100644
index c77daae..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_green_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:green_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_green_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_green_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_green_wool.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_green_wool.json
deleted file mode 100644
index 70830bd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_green_wool.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:green_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_green_wool"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_green_wool"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_light_blue_bed.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_light_blue_bed.json
deleted file mode 100644
index dd1cd70..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_light_blue_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_blue_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_light_blue_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_light_blue_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_light_blue_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_light_blue_carpet.json
deleted file mode 100644
index 2d3c370..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_light_blue_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_blue_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_light_blue_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_light_blue_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_light_blue_wool.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_light_blue_wool.json
deleted file mode 100644
index 22148ae..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_light_blue_wool.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_blue_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_light_blue_wool"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_light_blue_wool"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_light_gray_bed.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_light_gray_bed.json
deleted file mode 100644
index ef1f2b6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_light_gray_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_gray_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_light_gray_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_light_gray_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_light_gray_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_light_gray_carpet.json
deleted file mode 100644
index 15d9cd2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_light_gray_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_gray_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_light_gray_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_light_gray_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_light_gray_wool.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_light_gray_wool.json
deleted file mode 100644
index 97d25d4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_light_gray_wool.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_gray_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_light_gray_wool"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_light_gray_wool"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_lime_bed.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_lime_bed.json
deleted file mode 100644
index 775ac65..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_lime_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:lime_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_lime_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_lime_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_lime_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_lime_carpet.json
deleted file mode 100644
index 376f1be..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_lime_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:lime_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_lime_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_lime_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_lime_wool.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_lime_wool.json
deleted file mode 100644
index 47e5df8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_lime_wool.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:lime_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_lime_wool"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_lime_wool"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_magenta_bed.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_magenta_bed.json
deleted file mode 100644
index d950fc6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_magenta_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:magenta_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_magenta_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_magenta_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_magenta_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_magenta_carpet.json
deleted file mode 100644
index e6bc516..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_magenta_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:magenta_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_magenta_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_magenta_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_magenta_wool.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_magenta_wool.json
deleted file mode 100644
index f4bf3fb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_magenta_wool.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:magenta_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_magenta_wool"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_magenta_wool"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_orange_bed.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_orange_bed.json
deleted file mode 100644
index 1cdd148..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_orange_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:orange_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_orange_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_orange_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_orange_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_orange_carpet.json
deleted file mode 100644
index 75628c7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_orange_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:orange_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_orange_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_orange_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_orange_wool.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_orange_wool.json
deleted file mode 100644
index 9054108..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_orange_wool.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:orange_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_orange_wool"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_orange_wool"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_pink_bed.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_pink_bed.json
deleted file mode 100644
index 48541cf..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_pink_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:pink_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_pink_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_pink_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_pink_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_pink_carpet.json
deleted file mode 100644
index cd85f0a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_pink_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:pink_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_pink_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_pink_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_pink_wool.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_pink_wool.json
deleted file mode 100644
index 9b76b8b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_pink_wool.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:pink_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_pink_wool"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_pink_wool"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_purple_bed.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_purple_bed.json
deleted file mode 100644
index f3d0e29..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_purple_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:purple_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_purple_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_purple_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_purple_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_purple_carpet.json
deleted file mode 100644
index 9072913..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_purple_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:purple_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_purple_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_purple_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_purple_wool.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_purple_wool.json
deleted file mode 100644
index f59e38e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_purple_wool.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:purple_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_purple_wool"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_purple_wool"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_red_bed.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_red_bed.json
deleted file mode 100644
index 9ca7efc..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_red_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_red_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_red_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_red_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_red_carpet.json
deleted file mode 100644
index 26226af..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_red_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_red_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_red_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_red_wool.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_red_wool.json
deleted file mode 100644
index 7b9456e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_red_wool.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_red_wool"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_red_wool"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_white_bed.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_white_bed.json
deleted file mode 100644
index ac91e95..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_white_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:white_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_white_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_white_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_white_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_white_carpet.json
deleted file mode 100644
index 3ee77f1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_white_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:white_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_white_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_white_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_white_wool.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_white_wool.json
deleted file mode 100644
index c5b267b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_white_wool.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:white_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_white_wool"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_white_wool"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_yellow_bed.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_yellow_bed.json
deleted file mode 100644
index 4945ceb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_yellow_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:yellow_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_yellow_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_yellow_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_yellow_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_yellow_carpet.json
deleted file mode 100644
index 514a040..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_yellow_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:yellow_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_yellow_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_yellow_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_yellow_wool.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_yellow_wool.json
deleted file mode 100644
index 0a0186c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/dye_yellow_wool.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_needed_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:yellow_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dye_yellow_wool"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_needed_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dye_yellow_wool"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/emerald_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/emerald_block.json
deleted file mode 100644
index 7448651..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/emerald_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_emerald": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:emerald"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:emerald_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_emerald"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:emerald_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab.json
deleted file mode 100644
index 3b54184..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_end_stone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:end_stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:end_stone_brick_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_end_stone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:end_stone_brick_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab_from_end_stone_brick_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab_from_end_stone_brick_stonecutting.json
deleted file mode 100644
index 9173497..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab_from_end_stone_brick_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_end_stone_brick": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:end_stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:end_stone_brick_slab_from_end_stone_brick_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_end_stone_brick"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:end_stone_brick_slab_from_end_stone_brick_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab_from_end_stone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab_from_end_stone_stonecutting.json
deleted file mode 100644
index 00394e8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab_from_end_stone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_end_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:end_stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:end_stone_brick_slab_from_end_stone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_end_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:end_stone_brick_slab_from_end_stone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs.json
deleted file mode 100644
index cf734db..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_end_stone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:end_stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:end_stone_brick_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_end_stone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:end_stone_brick_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs_from_end_stone_brick_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs_from_end_stone_brick_stonecutting.json
deleted file mode 100644
index e828105..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs_from_end_stone_brick_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_end_stone_brick": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:end_stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:end_stone_brick_stairs_from_end_stone_brick_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_end_stone_brick"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:end_stone_brick_stairs_from_end_stone_brick_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs_from_end_stone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs_from_end_stone_stonecutting.json
deleted file mode 100644
index 750d97c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs_from_end_stone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_end_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:end_stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:end_stone_brick_stairs_from_end_stone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_end_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:end_stone_brick_stairs_from_end_stone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_bricks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_bricks.json
deleted file mode 100644
index 3887ba0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_bricks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_end_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:end_stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:end_stone_bricks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_end_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:end_stone_bricks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_bricks_from_end_stone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_bricks_from_end_stone_stonecutting.json
deleted file mode 100644
index 69e6418..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/end_stone_bricks_from_end_stone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_end_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:end_stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:end_stone_bricks_from_end_stone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_end_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:end_stone_bricks_from_end_stone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper.json
deleted file mode 100644
index 901494a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_cut_copper_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_cut_copper_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:exposed_chiseled_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_cut_copper_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:exposed_chiseled_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper_from_exposed_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper_from_exposed_copper_stonecutting.json
deleted file mode 100644
index 4856a0c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper_from_exposed_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:exposed_chiseled_copper_from_exposed_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:exposed_chiseled_copper_from_exposed_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper_from_exposed_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper_from_exposed_cut_copper_stonecutting.json
deleted file mode 100644
index 41988aa..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper_from_exposed_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:exposed_chiseled_copper_from_exposed_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:exposed_chiseled_copper_from_exposed_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_copper_grate.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_copper_grate.json
deleted file mode 100644
index d0b76a6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_copper_grate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:exposed_copper_grate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:exposed_copper_grate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_copper_grate_from_exposed_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_copper_grate_from_exposed_copper_stonecutting.json
deleted file mode 100644
index a393517..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_copper_grate_from_exposed_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:exposed_copper_grate_from_exposed_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:exposed_copper_grate_from_exposed_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper.json
deleted file mode 100644
index 960ad06..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:exposed_cut_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:exposed_cut_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_from_exposed_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_from_exposed_copper_stonecutting.json
deleted file mode 100644
index 32f962b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_from_exposed_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:exposed_cut_copper_from_exposed_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:exposed_cut_copper_from_exposed_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab.json
deleted file mode 100644
index d815d61..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:exposed_cut_copper_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:exposed_cut_copper_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab_from_exposed_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab_from_exposed_copper_stonecutting.json
deleted file mode 100644
index 426fd67..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab_from_exposed_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:exposed_cut_copper_slab_from_exposed_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:exposed_cut_copper_slab_from_exposed_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting.json
deleted file mode 100644
index e9782fd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs.json
deleted file mode 100644
index 1d2bd27..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:exposed_cut_copper_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:exposed_cut_copper_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_copper_stonecutting.json
deleted file mode 100644
index ee4a9fe..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:exposed_cut_copper_stairs_from_exposed_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:exposed_cut_copper_stairs_from_exposed_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting.json
deleted file mode 100644
index 8b07775..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/glass.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/glass.json
deleted file mode 100644
index fea555d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/glass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smelts_to_glass": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:smelts_to_glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:glass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smelts_to_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:glass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/glowstone.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/glowstone.json
deleted file mode 100644
index aa0f34d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/glowstone.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glowstone_dust": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glowstone_dust"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:glowstone"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glowstone_dust"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:glowstone"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/gold_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/gold_block.json
deleted file mode 100644
index 4e4a46e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/gold_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gold_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gold_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gold_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gold_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gold_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/granite.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/granite.json
deleted file mode 100644
index 6bfad77..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/granite.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_quartz": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:granite"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_quartz"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:granite"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/granite_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/granite_slab.json
deleted file mode 100644
index 4633162..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/granite_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_granite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:granite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:granite_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_granite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:granite_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/granite_slab_from_granite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/granite_slab_from_granite_stonecutting.json
deleted file mode 100644
index 84cf8f1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/granite_slab_from_granite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_granite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:granite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:granite_slab_from_granite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_granite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:granite_slab_from_granite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/granite_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/granite_stairs.json
deleted file mode 100644
index 6603cc6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/granite_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_granite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:granite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:granite_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_granite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:granite_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/granite_stairs_from_granite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/granite_stairs_from_granite_stonecutting.json
deleted file mode 100644
index 6082c7f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/granite_stairs_from_granite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_granite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:granite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:granite_stairs_from_granite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_granite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:granite_stairs_from_granite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/gray_concrete_powder.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/gray_concrete_powder.json
deleted file mode 100644
index 1f95253..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/gray_concrete_powder.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gravel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gravel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_sand": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sand"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gray_concrete_powder"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sand",
- "has_gravel"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gray_concrete_powder"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/gray_stained_glass.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/gray_stained_glass.json
deleted file mode 100644
index dc962e8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/gray_stained_glass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gray_stained_glass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gray_stained_glass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/gray_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/gray_terracotta.json
deleted file mode 100644
index 3df2b42..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/gray_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gray_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gray_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/green_concrete_powder.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/green_concrete_powder.json
deleted file mode 100644
index 007e290..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/green_concrete_powder.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gravel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gravel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_sand": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sand"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:green_concrete_powder"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sand",
- "has_gravel"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:green_concrete_powder"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/green_stained_glass.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/green_stained_glass.json
deleted file mode 100644
index 09d3221..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/green_stained_glass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:green_stained_glass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:green_stained_glass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/green_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/green_terracotta.json
deleted file mode 100644
index 5a827b3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/green_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:green_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:green_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/hay_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/hay_block.json
deleted file mode 100644
index 7c3eca3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/hay_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:hay_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_wheat": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:wheat"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_wheat"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:hay_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/iron_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/iron_block.json
deleted file mode 100644
index d1f4ad3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/iron_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/jack_o_lantern.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/jack_o_lantern.json
deleted file mode 100644
index 2d437a5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/jack_o_lantern.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_carved_pumpkin": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:carved_pumpkin"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:jack_o_lantern"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_carved_pumpkin"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:jack_o_lantern"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/jungle_planks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/jungle_planks.json
deleted file mode 100644
index ef63f54..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/jungle_planks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_logs": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:jungle_logs"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:jungle_planks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:jungle_planks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/jungle_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/jungle_slab.json
deleted file mode 100644
index 1ed3e96..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/jungle_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:jungle_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:jungle_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:jungle_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/jungle_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/jungle_stairs.json
deleted file mode 100644
index 72e9cb8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/jungle_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:jungle_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:jungle_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:jungle_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/jungle_wood.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/jungle_wood.json
deleted file mode 100644
index 9b9f749..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/jungle_wood.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:jungle_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:jungle_wood"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:jungle_wood"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/lapis_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/lapis_block.json
deleted file mode 100644
index 347dcbc..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/lapis_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_lapis_lazuli": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:lapis_lazuli"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lapis_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_lapis_lazuli"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lapis_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/light_blue_concrete_powder.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/light_blue_concrete_powder.json
deleted file mode 100644
index 99d9edf..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/light_blue_concrete_powder.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gravel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gravel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_sand": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sand"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_blue_concrete_powder"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sand",
- "has_gravel"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_blue_concrete_powder"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/light_blue_stained_glass.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/light_blue_stained_glass.json
deleted file mode 100644
index ba00647..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/light_blue_stained_glass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_blue_stained_glass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_blue_stained_glass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/light_blue_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/light_blue_terracotta.json
deleted file mode 100644
index 89d3dff..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/light_blue_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_blue_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_blue_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/light_gray_concrete_powder.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/light_gray_concrete_powder.json
deleted file mode 100644
index 191b17a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/light_gray_concrete_powder.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gravel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gravel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_sand": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sand"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_gray_concrete_powder"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sand",
- "has_gravel"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_gray_concrete_powder"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/light_gray_stained_glass.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/light_gray_stained_glass.json
deleted file mode 100644
index e1b4786..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/light_gray_stained_glass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_gray_stained_glass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_gray_stained_glass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/light_gray_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/light_gray_terracotta.json
deleted file mode 100644
index 264ebe7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/light_gray_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_gray_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_gray_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/lime_concrete_powder.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/lime_concrete_powder.json
deleted file mode 100644
index 7b68fd6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/lime_concrete_powder.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gravel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gravel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_sand": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sand"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lime_concrete_powder"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sand",
- "has_gravel"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lime_concrete_powder"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/lime_stained_glass.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/lime_stained_glass.json
deleted file mode 100644
index b13111b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/lime_stained_glass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lime_stained_glass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lime_stained_glass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/lime_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/lime_terracotta.json
deleted file mode 100644
index 42f0ed5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/lime_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lime_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lime_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/magenta_concrete_powder.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/magenta_concrete_powder.json
deleted file mode 100644
index 49b0cde..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/magenta_concrete_powder.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gravel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gravel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_sand": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sand"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:magenta_concrete_powder"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sand",
- "has_gravel"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:magenta_concrete_powder"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/magenta_stained_glass.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/magenta_stained_glass.json
deleted file mode 100644
index 8c72a24..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/magenta_stained_glass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:magenta_stained_glass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:magenta_stained_glass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/magenta_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/magenta_terracotta.json
deleted file mode 100644
index d1c896f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/magenta_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:magenta_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:magenta_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/magma_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/magma_block.json
deleted file mode 100644
index e315951..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/magma_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_magma_cream": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:magma_cream"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:magma_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_magma_cream"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:magma_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mangrove_planks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mangrove_planks.json
deleted file mode 100644
index 2a7cecd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mangrove_planks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_logs": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:mangrove_logs"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mangrove_planks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mangrove_planks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mangrove_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mangrove_slab.json
deleted file mode 100644
index 36e234f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mangrove_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mangrove_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mangrove_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mangrove_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mangrove_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mangrove_stairs.json
deleted file mode 100644
index 921298e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mangrove_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mangrove_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mangrove_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mangrove_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mangrove_wood.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mangrove_wood.json
deleted file mode 100644
index d52aed5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mangrove_wood.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mangrove_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mangrove_wood"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mangrove_wood"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/melon.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/melon.json
deleted file mode 100644
index a23ca0f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/melon.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_melon": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:melon_slice"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:melon"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_melon"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:melon"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_moss_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_moss_block.json
deleted file mode 100644
index 0113de3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_moss_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_moss_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:moss_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mossy_cobblestone_from_moss_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_moss_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mossy_cobblestone_from_moss_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_vine.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_vine.json
deleted file mode 100644
index 9ff8e89..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_vine.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mossy_cobblestone_from_vine"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_vine": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:vine"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_vine"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mossy_cobblestone_from_vine"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_slab.json
deleted file mode 100644
index ab6fcfd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mossy_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mossy_cobblestone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mossy_cobblestone_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mossy_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mossy_cobblestone_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting.json
deleted file mode 100644
index 1a7ce96..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mossy_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mossy_cobblestone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mossy_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_stairs.json
deleted file mode 100644
index a35129d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mossy_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mossy_cobblestone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mossy_cobblestone_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mossy_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mossy_cobblestone_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting.json
deleted file mode 100644
index f6f19ce..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mossy_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mossy_cobblestone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mossy_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_slab.json
deleted file mode 100644
index a79f07a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mossy_stone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mossy_stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mossy_stone_brick_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mossy_stone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mossy_stone_brick_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_slab_from_mossy_stone_brick_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_slab_from_mossy_stone_brick_stonecutting.json
deleted file mode 100644
index bbcbeac..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_slab_from_mossy_stone_brick_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mossy_stone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mossy_stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mossy_stone_brick_slab_from_mossy_stone_brick_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mossy_stone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mossy_stone_brick_slab_from_mossy_stone_brick_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_stairs.json
deleted file mode 100644
index 71802c6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mossy_stone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mossy_stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mossy_stone_brick_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mossy_stone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mossy_stone_brick_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_stairs_from_mossy_stone_brick_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_stairs_from_mossy_stone_brick_stonecutting.json
deleted file mode 100644
index 47c58b7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_stairs_from_mossy_stone_brick_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mossy_stone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mossy_stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mossy_stone_brick_stairs_from_mossy_stone_brick_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mossy_stone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mossy_stone_brick_stairs_from_mossy_stone_brick_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_stone_bricks_from_moss_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_stone_bricks_from_moss_block.json
deleted file mode 100644
index d63c504..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_stone_bricks_from_moss_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_moss_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:moss_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mossy_stone_bricks_from_moss_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_moss_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mossy_stone_bricks_from_moss_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_stone_bricks_from_vine.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_stone_bricks_from_vine.json
deleted file mode 100644
index f3b1e2e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mossy_stone_bricks_from_vine.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mossy_stone_bricks_from_vine"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_vine": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:vine"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_vine"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mossy_stone_bricks_from_vine"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mud_brick_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mud_brick_slab.json
deleted file mode 100644
index d2331ff..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mud_brick_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mud_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mud_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mud_brick_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mud_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mud_brick_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mud_brick_slab_from_mud_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mud_brick_slab_from_mud_bricks_stonecutting.json
deleted file mode 100644
index fed8ff7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mud_brick_slab_from_mud_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mud_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mud_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mud_brick_slab_from_mud_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mud_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mud_brick_slab_from_mud_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mud_brick_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mud_brick_stairs.json
deleted file mode 100644
index dce37c8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mud_brick_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mud_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mud_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mud_brick_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mud_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mud_brick_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mud_brick_stairs_from_mud_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mud_brick_stairs_from_mud_bricks_stonecutting.json
deleted file mode 100644
index 6a1a23e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mud_brick_stairs_from_mud_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mud_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mud_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mud_brick_stairs_from_mud_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mud_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mud_brick_stairs_from_mud_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mud_bricks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mud_bricks.json
deleted file mode 100644
index 0c6d3aa..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/mud_bricks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_packed_mud": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:packed_mud"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mud_bricks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_packed_mud"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mud_bricks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/muddy_mangrove_roots.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/muddy_mangrove_roots.json
deleted file mode 100644
index b704cb5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/muddy_mangrove_roots.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mangrove_roots": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mangrove_roots"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:muddy_mangrove_roots"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mangrove_roots"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:muddy_mangrove_roots"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/nether_brick_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/nether_brick_slab.json
deleted file mode 100644
index c808e02..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/nether_brick_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nether_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nether_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:nether_brick_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nether_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:nether_brick_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/nether_brick_slab_from_nether_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/nether_brick_slab_from_nether_bricks_stonecutting.json
deleted file mode 100644
index 9e803c1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/nether_brick_slab_from_nether_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nether_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nether_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:nether_brick_slab_from_nether_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nether_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:nether_brick_slab_from_nether_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/nether_brick_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/nether_brick_stairs.json
deleted file mode 100644
index b57b944..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/nether_brick_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nether_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nether_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:nether_brick_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nether_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:nether_brick_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/nether_brick_stairs_from_nether_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/nether_brick_stairs_from_nether_bricks_stonecutting.json
deleted file mode 100644
index 2150048..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/nether_brick_stairs_from_nether_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nether_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nether_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:nether_brick_stairs_from_nether_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nether_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:nether_brick_stairs_from_nether_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/nether_bricks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/nether_bricks.json
deleted file mode 100644
index ed2c3ae..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/nether_bricks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nether_brick": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nether_brick"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:nether_bricks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nether_brick"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:nether_bricks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/nether_wart_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/nether_wart_block.json
deleted file mode 100644
index 2728873..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/nether_wart_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nether_wart": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nether_wart"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:nether_wart_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nether_wart"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:nether_wart_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/netherite_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/netherite_block.json
deleted file mode 100644
index 91d676a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/netherite_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_netherite_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:netherite_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:netherite_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_netherite_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:netherite_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oak_planks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oak_planks.json
deleted file mode 100644
index 6c78d04..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oak_planks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_logs": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:oak_logs"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oak_planks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oak_planks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oak_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oak_slab.json
deleted file mode 100644
index cef0e37..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oak_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oak_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oak_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oak_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oak_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oak_stairs.json
deleted file mode 100644
index 4a2b6cf..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oak_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oak_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oak_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oak_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oak_wood.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oak_wood.json
deleted file mode 100644
index bd62427..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oak_wood.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oak_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oak_wood"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oak_wood"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/orange_concrete_powder.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/orange_concrete_powder.json
deleted file mode 100644
index 8116800..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/orange_concrete_powder.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gravel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gravel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_sand": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sand"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:orange_concrete_powder"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sand",
- "has_gravel"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:orange_concrete_powder"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/orange_stained_glass.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/orange_stained_glass.json
deleted file mode 100644
index 5ae8d6f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/orange_stained_glass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:orange_stained_glass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:orange_stained_glass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/orange_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/orange_terracotta.json
deleted file mode 100644
index ca71a5c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/orange_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:orange_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:orange_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper.json
deleted file mode 100644
index 6796d32..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_cut_copper_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_cut_copper_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oxidized_chiseled_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_cut_copper_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oxidized_chiseled_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper_from_oxidized_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper_from_oxidized_copper_stonecutting.json
deleted file mode 100644
index 0a2b057..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper_from_oxidized_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oxidized_chiseled_copper_from_oxidized_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oxidized_chiseled_copper_from_oxidized_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting.json
deleted file mode 100644
index dab869a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_copper_grate.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_copper_grate.json
deleted file mode 100644
index 5cea8fc..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_copper_grate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oxidized_copper_grate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oxidized_copper_grate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_copper_grate_from_oxidized_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_copper_grate_from_oxidized_copper_stonecutting.json
deleted file mode 100644
index ecb7807..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_copper_grate_from_oxidized_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oxidized_copper_grate_from_oxidized_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oxidized_copper_grate_from_oxidized_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper.json
deleted file mode 100644
index 7eb45a1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oxidized_cut_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oxidized_cut_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_from_oxidized_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_from_oxidized_copper_stonecutting.json
deleted file mode 100644
index 6f5bb3b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_from_oxidized_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oxidized_cut_copper_from_oxidized_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oxidized_cut_copper_from_oxidized_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab.json
deleted file mode 100644
index 3cea579..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oxidized_cut_copper_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oxidized_cut_copper_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_copper_stonecutting.json
deleted file mode 100644
index ec034dd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oxidized_cut_copper_slab_from_oxidized_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oxidized_cut_copper_slab_from_oxidized_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting.json
deleted file mode 100644
index d321f6f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs.json
deleted file mode 100644
index 02118cd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oxidized_cut_copper_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oxidized_cut_copper_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting.json
deleted file mode 100644
index 3001961..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting.json
deleted file mode 100644
index 30b343f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/packed_ice.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/packed_ice.json
deleted file mode 100644
index e4ac8a5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/packed_ice.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_ice": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:ice"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:packed_ice"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_ice"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:packed_ice"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/packed_mud.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/packed_mud.json
deleted file mode 100644
index 5cd96a0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/packed_mud.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mud": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mud"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:packed_mud"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mud"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:packed_mud"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/pink_concrete_powder.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/pink_concrete_powder.json
deleted file mode 100644
index d66ee5e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/pink_concrete_powder.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gravel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gravel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_sand": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sand"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:pink_concrete_powder"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sand",
- "has_gravel"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:pink_concrete_powder"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/pink_stained_glass.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/pink_stained_glass.json
deleted file mode 100644
index 08559fc..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/pink_stained_glass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:pink_stained_glass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:pink_stained_glass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/pink_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/pink_terracotta.json
deleted file mode 100644
index 7749715..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/pink_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:pink_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:pink_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite.json
deleted file mode 100644
index ec5ca85..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_andesite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:andesite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_andesite"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_andesite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_andesite"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_from_andesite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_from_andesite_stonecutting.json
deleted file mode 100644
index 07256bf..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_from_andesite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_andesite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:andesite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_andesite_from_andesite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_andesite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_andesite_from_andesite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab.json
deleted file mode 100644
index 7836486..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_andesite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_andesite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_andesite_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_andesite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_andesite_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab_from_andesite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab_from_andesite_stonecutting.json
deleted file mode 100644
index d60cac0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab_from_andesite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_andesite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:andesite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_andesite_slab_from_andesite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_andesite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_andesite_slab_from_andesite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab_from_polished_andesite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab_from_polished_andesite_stonecutting.json
deleted file mode 100644
index 54578ae..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab_from_polished_andesite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_andesite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_andesite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_andesite_slab_from_polished_andesite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_andesite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_andesite_slab_from_polished_andesite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs.json
deleted file mode 100644
index f208355..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_andesite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_andesite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_andesite_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_andesite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_andesite_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs_from_andesite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs_from_andesite_stonecutting.json
deleted file mode 100644
index 3d21f9e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs_from_andesite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_andesite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:andesite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_andesite_stairs_from_andesite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_andesite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_andesite_stairs_from_andesite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs_from_polished_andesite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs_from_polished_andesite_stonecutting.json
deleted file mode 100644
index 21b84f4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs_from_polished_andesite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_andesite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_andesite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_andesite_stairs_from_polished_andesite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_andesite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_andesite_stairs_from_polished_andesite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_basalt.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_basalt.json
deleted file mode 100644
index f048e7a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_basalt.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_basalt": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:basalt"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_basalt"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_basalt"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_basalt"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_basalt_from_basalt_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_basalt_from_basalt_stonecutting.json
deleted file mode 100644
index fad1817..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_basalt_from_basalt_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_basalt": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:basalt"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_basalt_from_basalt_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_basalt"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_basalt_from_basalt_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone.json
deleted file mode 100644
index 13234a3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab.json
deleted file mode 100644
index e30b651..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_brick_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_brick_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_blackstone_stonecutting.json
deleted file mode 100644
index ca11200..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_brick_slab_from_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_brick_slab_from_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting.json
deleted file mode 100644
index 557a6c1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_stonecutting.json
deleted file mode 100644
index e3b0d31..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_brick_slab_from_polished_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_brick_slab_from_polished_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs.json
deleted file mode 100644
index 06d31c5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_brick_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_brick_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_blackstone_stonecutting.json
deleted file mode 100644
index 7b78a36..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_brick_stairs_from_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_brick_stairs_from_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting.json
deleted file mode 100644
index 330d44a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting.json
deleted file mode 100644
index 5570cf0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks.json
deleted file mode 100644
index 6d89484..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_bricks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_bricks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks_from_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks_from_blackstone_stonecutting.json
deleted file mode 100644
index 06d07a1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks_from_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_bricks_from_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_bricks_from_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks_from_polished_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks_from_polished_blackstone_stonecutting.json
deleted file mode 100644
index 972c995..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks_from_polished_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_bricks_from_polished_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_bricks_from_polished_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_from_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_from_blackstone_stonecutting.json
deleted file mode 100644
index fc8687b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_from_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_from_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_from_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab.json
deleted file mode 100644
index 51e8b24..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab_from_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab_from_blackstone_stonecutting.json
deleted file mode 100644
index 28b6e2a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab_from_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_slab_from_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_slab_from_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab_from_polished_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab_from_polished_blackstone_stonecutting.json
deleted file mode 100644
index 1f4768b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab_from_polished_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_slab_from_polished_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_slab_from_polished_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs.json
deleted file mode 100644
index 2ef334c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs_from_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs_from_blackstone_stonecutting.json
deleted file mode 100644
index 17146d8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs_from_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_stairs_from_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_stairs_from_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs_from_polished_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs_from_polished_blackstone_stonecutting.json
deleted file mode 100644
index 16749d6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs_from_polished_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_stairs_from_polished_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_stairs_from_polished_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate.json
deleted file mode 100644
index ecbe21c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_deepslate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_deepslate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_from_cobbled_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_from_cobbled_deepslate_stonecutting.json
deleted file mode 100644
index 0cb2f0c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_from_cobbled_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab.json
deleted file mode 100644
index 5a2f9c9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_deepslate_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_deepslate_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_cobbled_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_cobbled_deepslate_stonecutting.json
deleted file mode 100644
index f5868a8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_cobbled_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_polished_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_polished_deepslate_stonecutting.json
deleted file mode 100644
index ea3650a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_polished_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs.json
deleted file mode 100644
index 5b98823..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_deepslate_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_deepslate_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_cobbled_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_cobbled_deepslate_stonecutting.json
deleted file mode 100644
index 1018229..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_cobbled_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_polished_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_polished_deepslate_stonecutting.json
deleted file mode 100644
index ac64672..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_polished_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite.json
deleted file mode 100644
index 8e20b11..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diorite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diorite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_diorite"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diorite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_diorite"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_from_diorite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_from_diorite_stonecutting.json
deleted file mode 100644
index 002402d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_from_diorite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diorite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diorite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_diorite_from_diorite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diorite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_diorite_from_diorite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab.json
deleted file mode 100644
index eee8ccf..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_diorite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_diorite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_diorite_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_diorite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_diorite_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab_from_diorite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab_from_diorite_stonecutting.json
deleted file mode 100644
index 911b2ab..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab_from_diorite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diorite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diorite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_diorite_slab_from_diorite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diorite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_diorite_slab_from_diorite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab_from_polished_diorite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab_from_polished_diorite_stonecutting.json
deleted file mode 100644
index c18e088..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab_from_polished_diorite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_diorite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_diorite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_diorite_slab_from_polished_diorite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_diorite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_diorite_slab_from_polished_diorite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs.json
deleted file mode 100644
index 622b47e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_diorite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_diorite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_diorite_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_diorite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_diorite_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs_from_diorite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs_from_diorite_stonecutting.json
deleted file mode 100644
index c2a60ae..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs_from_diorite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diorite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diorite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_diorite_stairs_from_diorite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diorite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_diorite_stairs_from_diorite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs_from_polished_diorite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs_from_polished_diorite_stonecutting.json
deleted file mode 100644
index ed96087..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs_from_polished_diorite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_diorite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_diorite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_diorite_stairs_from_polished_diorite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_diorite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_diorite_stairs_from_polished_diorite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite.json
deleted file mode 100644
index 5f1d37e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_granite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:granite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_granite"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_granite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_granite"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_from_granite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_from_granite_stonecutting.json
deleted file mode 100644
index 1e00049..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_from_granite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_granite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:granite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_granite_from_granite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_granite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_granite_from_granite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab.json
deleted file mode 100644
index ac14683..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_granite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_granite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_granite_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_granite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_granite_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab_from_granite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab_from_granite_stonecutting.json
deleted file mode 100644
index b24757d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab_from_granite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_granite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:granite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_granite_slab_from_granite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_granite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_granite_slab_from_granite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab_from_polished_granite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab_from_polished_granite_stonecutting.json
deleted file mode 100644
index 6a43c4d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab_from_polished_granite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_granite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_granite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_granite_slab_from_polished_granite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_granite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_granite_slab_from_polished_granite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs.json
deleted file mode 100644
index 2c2637b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_granite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_granite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_granite_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_granite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_granite_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs_from_granite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs_from_granite_stonecutting.json
deleted file mode 100644
index b137a4e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs_from_granite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_granite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:granite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_granite_stairs_from_granite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_granite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_granite_stairs_from_granite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs_from_polished_granite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs_from_polished_granite_stonecutting.json
deleted file mode 100644
index 117e9df..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs_from_polished_granite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_granite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_granite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_granite_stairs_from_polished_granite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_granite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_granite_stairs_from_polished_granite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff.json
deleted file mode 100644
index 5e61bb3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_tuff"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_tuff"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_from_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_from_tuff_stonecutting.json
deleted file mode 100644
index 7f1be72..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_from_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_tuff_from_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_tuff_from_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab.json
deleted file mode 100644
index b4c6d5c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_tuff_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_tuff_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab_from_polished_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab_from_polished_tuff_stonecutting.json
deleted file mode 100644
index f4063a2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab_from_polished_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_tuff_slab_from_polished_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_tuff_slab_from_polished_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab_from_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab_from_tuff_stonecutting.json
deleted file mode 100644
index 8d875be..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab_from_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_tuff_slab_from_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_tuff_slab_from_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs.json
deleted file mode 100644
index eace7ca..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_tuff_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_tuff_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs_from_polished_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs_from_polished_tuff_stonecutting.json
deleted file mode 100644
index 0633449..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs_from_polished_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_tuff_stairs_from_polished_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_tuff_stairs_from_polished_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs_from_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs_from_tuff_stonecutting.json
deleted file mode 100644
index 3b03fae..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs_from_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_tuff_stairs_from_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_tuff_stairs_from_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine.json
deleted file mode 100644
index dc5eaf9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_prismarine_shard": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:prismarine_shard"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:prismarine"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_prismarine_shard"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:prismarine"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_slab.json
deleted file mode 100644
index 5614f52..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_prismarine_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:prismarine_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:prismarine_brick_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_prismarine_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:prismarine_brick_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_slab_from_prismarine_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_slab_from_prismarine_stonecutting.json
deleted file mode 100644
index 7d6f8bb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_slab_from_prismarine_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_prismarine_brick": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:prismarine_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:prismarine_brick_slab_from_prismarine_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_prismarine_brick"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:prismarine_brick_slab_from_prismarine_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_stairs.json
deleted file mode 100644
index 27f1f32..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_prismarine_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:prismarine_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:prismarine_brick_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_prismarine_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:prismarine_brick_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_stairs_from_prismarine_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_stairs_from_prismarine_stonecutting.json
deleted file mode 100644
index e7d6c7b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_stairs_from_prismarine_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_prismarine_brick": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:prismarine_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:prismarine_brick_stairs_from_prismarine_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_prismarine_brick"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:prismarine_brick_stairs_from_prismarine_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_bricks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_bricks.json
deleted file mode 100644
index a3176df..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_bricks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_prismarine_shard": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:prismarine_shard"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:prismarine_bricks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_prismarine_shard"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:prismarine_bricks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_slab.json
deleted file mode 100644
index abd366e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_prismarine": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:prismarine"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:prismarine_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_prismarine"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:prismarine_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_slab_from_prismarine_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_slab_from_prismarine_stonecutting.json
deleted file mode 100644
index 41d9ae0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_slab_from_prismarine_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_prismarine": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:prismarine"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:prismarine_slab_from_prismarine_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_prismarine"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:prismarine_slab_from_prismarine_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_stairs.json
deleted file mode 100644
index a23db5e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_prismarine": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:prismarine"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:prismarine_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_prismarine"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:prismarine_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_stairs_from_prismarine_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_stairs_from_prismarine_stonecutting.json
deleted file mode 100644
index 5808b08..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/prismarine_stairs_from_prismarine_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_prismarine": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:prismarine"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:prismarine_stairs_from_prismarine_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_prismarine"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:prismarine_stairs_from_prismarine_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purple_concrete_powder.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purple_concrete_powder.json
deleted file mode 100644
index 5de5d7e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purple_concrete_powder.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gravel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gravel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_sand": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sand"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:purple_concrete_powder"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sand",
- "has_gravel"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:purple_concrete_powder"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purple_stained_glass.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purple_stained_glass.json
deleted file mode 100644
index 8289f1d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purple_stained_glass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:purple_stained_glass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:purple_stained_glass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purple_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purple_terracotta.json
deleted file mode 100644
index 81c7336..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purple_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:purple_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:purple_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_block.json
deleted file mode 100644
index 6ce1ad2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_chorus_fruit_popped": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:popped_chorus_fruit"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:purpur_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_chorus_fruit_popped"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:purpur_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_pillar.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_pillar.json
deleted file mode 100644
index 5a128cf..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_pillar.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_purpur_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:purpur_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:purpur_pillar"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_purpur_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:purpur_pillar"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_pillar_from_purpur_block_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_pillar_from_purpur_block_stonecutting.json
deleted file mode 100644
index 9d861ff..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_pillar_from_purpur_block_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_purpur_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:purpur_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:purpur_pillar_from_purpur_block_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_purpur_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:purpur_pillar_from_purpur_block_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_slab.json
deleted file mode 100644
index ff760ee..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_purpur_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:purpur_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:purpur_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_purpur_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:purpur_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_slab_from_purpur_block_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_slab_from_purpur_block_stonecutting.json
deleted file mode 100644
index 21ec6c9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_slab_from_purpur_block_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_purpur_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:purpur_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:purpur_slab_from_purpur_block_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_purpur_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:purpur_slab_from_purpur_block_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_stairs.json
deleted file mode 100644
index de630a1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_purpur_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:purpur_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:purpur_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_purpur_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:purpur_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_stairs_from_purpur_block_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_stairs_from_purpur_block_stonecutting.json
deleted file mode 100644
index 5747d07..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/purpur_stairs_from_purpur_block_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_purpur_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:purpur_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:purpur_stairs_from_purpur_block_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_purpur_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:purpur_stairs_from_purpur_block_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_block.json
deleted file mode 100644
index 816d4cd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_quartz": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:quartz_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_quartz"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:quartz_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_bricks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_bricks.json
deleted file mode 100644
index 3643242..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_bricks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_quartz_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:quartz_bricks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_quartz_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:quartz_bricks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_bricks_from_quartz_block_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_bricks_from_quartz_block_stonecutting.json
deleted file mode 100644
index ca69b17..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_bricks_from_quartz_block_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_quartz_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:quartz_bricks_from_quartz_block_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_quartz_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:quartz_bricks_from_quartz_block_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_pillar.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_pillar.json
deleted file mode 100644
index 482fa9f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_pillar.json
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_chiseled_quartz_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chiseled_quartz_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_quartz_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_quartz_pillar": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz_pillar"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:quartz_pillar"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_chiseled_quartz_block",
- "has_quartz_block",
- "has_quartz_pillar"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:quartz_pillar"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_pillar_from_quartz_block_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_pillar_from_quartz_block_stonecutting.json
deleted file mode 100644
index f5d143c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_pillar_from_quartz_block_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_quartz_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:quartz_pillar_from_quartz_block_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_quartz_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:quartz_pillar_from_quartz_block_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_slab.json
deleted file mode 100644
index 5d18e2b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_slab.json
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_chiseled_quartz_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chiseled_quartz_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_quartz_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_quartz_pillar": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz_pillar"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:quartz_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_chiseled_quartz_block",
- "has_quartz_block",
- "has_quartz_pillar"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:quartz_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_slab_from_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_slab_from_stonecutting.json
deleted file mode 100644
index 6e37acc..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_slab_from_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_quartz_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:quartz_slab_from_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_quartz_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:quartz_slab_from_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_stairs.json
deleted file mode 100644
index de4f081..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_stairs.json
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_chiseled_quartz_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chiseled_quartz_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_quartz_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_quartz_pillar": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz_pillar"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:quartz_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_chiseled_quartz_block",
- "has_quartz_block",
- "has_quartz_pillar"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:quartz_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_stairs_from_quartz_block_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_stairs_from_quartz_block_stonecutting.json
deleted file mode 100644
index d060a07..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/quartz_stairs_from_quartz_block_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_quartz_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:quartz_stairs_from_quartz_block_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_quartz_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:quartz_stairs_from_quartz_block_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/raw_copper_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/raw_copper_block.json
deleted file mode 100644
index 007b887..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/raw_copper_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_raw_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:raw_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:raw_copper_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_raw_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:raw_copper_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/raw_gold_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/raw_gold_block.json
deleted file mode 100644
index a86e63f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/raw_gold_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_raw_gold": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:raw_gold"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:raw_gold_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_raw_gold"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:raw_gold_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/raw_iron_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/raw_iron_block.json
deleted file mode 100644
index 2a415de..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/raw_iron_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_raw_iron": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:raw_iron"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:raw_iron_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_raw_iron"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:raw_iron_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_concrete_powder.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_concrete_powder.json
deleted file mode 100644
index 4f2d639..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_concrete_powder.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gravel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gravel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_sand": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sand"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_concrete_powder"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sand",
- "has_gravel"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_concrete_powder"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_slab.json
deleted file mode 100644
index 4cec61b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_nether_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_nether_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_nether_brick_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_nether_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_nether_brick_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_slab_from_red_nether_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_slab_from_red_nether_bricks_stonecutting.json
deleted file mode 100644
index 3ba4bf2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_slab_from_red_nether_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_nether_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_nether_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_nether_brick_slab_from_red_nether_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_nether_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_nether_brick_slab_from_red_nether_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_stairs.json
deleted file mode 100644
index 750c3b8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_nether_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_nether_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_nether_brick_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_nether_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_nether_brick_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_stairs_from_red_nether_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_stairs_from_red_nether_bricks_stonecutting.json
deleted file mode 100644
index 3ca8fe8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_stairs_from_red_nether_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_nether_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_nether_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_nether_brick_stairs_from_red_nether_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_nether_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_nether_brick_stairs_from_red_nether_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_nether_bricks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_nether_bricks.json
deleted file mode 100644
index fcbfe15..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_nether_bricks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nether_wart": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nether_wart"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_nether_bricks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nether_wart"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_nether_bricks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_sandstone.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_sandstone.json
deleted file mode 100644
index c6932f4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_sandstone.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_sand": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_sand"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_sandstone"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sand"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_sandstone"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_sandstone_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_sandstone_slab.json
deleted file mode 100644
index 37ffc7f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_sandstone_slab.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_chiseled_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chiseled_red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_sandstone_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_sandstone",
- "has_chiseled_red_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_sandstone_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_sandstone_slab_from_red_sandstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_sandstone_slab_from_red_sandstone_stonecutting.json
deleted file mode 100644
index ae459a4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_sandstone_slab_from_red_sandstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_sandstone_slab_from_red_sandstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_sandstone_slab_from_red_sandstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_sandstone_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_sandstone_stairs.json
deleted file mode 100644
index 050e62e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_sandstone_stairs.json
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_chiseled_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chiseled_red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_cut_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cut_red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_sandstone_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_sandstone",
- "has_chiseled_red_sandstone",
- "has_cut_red_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_sandstone_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_sandstone_stairs_from_red_sandstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_sandstone_stairs_from_red_sandstone_stonecutting.json
deleted file mode 100644
index 6d5bc3e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_sandstone_stairs_from_red_sandstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_sandstone_stairs_from_red_sandstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_sandstone_stairs_from_red_sandstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_stained_glass.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_stained_glass.json
deleted file mode 100644
index b65c87a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_stained_glass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_stained_glass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_stained_glass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_terracotta.json
deleted file mode 100644
index 6b9f6fd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/red_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sandstone.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sandstone.json
deleted file mode 100644
index 05ac588..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sandstone.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_sand": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sand"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:sandstone"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sand"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:sandstone"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sandstone_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sandstone_slab.json
deleted file mode 100644
index 5ea1df3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sandstone_slab.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_chiseled_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chiseled_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:sandstone_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sandstone",
- "has_chiseled_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:sandstone_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sandstone_slab_from_sandstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sandstone_slab_from_sandstone_stonecutting.json
deleted file mode 100644
index 8689883..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sandstone_slab_from_sandstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:sandstone_slab_from_sandstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:sandstone_slab_from_sandstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sandstone_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sandstone_stairs.json
deleted file mode 100644
index aff96ef..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sandstone_stairs.json
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_chiseled_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chiseled_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_cut_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cut_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:sandstone_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sandstone",
- "has_chiseled_sandstone",
- "has_cut_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:sandstone_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sandstone_stairs_from_sandstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sandstone_stairs_from_sandstone_stonecutting.json
deleted file mode 100644
index 714dfad..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sandstone_stairs_from_sandstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:sandstone_stairs_from_sandstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:sandstone_stairs_from_sandstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sea_lantern.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sea_lantern.json
deleted file mode 100644
index 1397713..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sea_lantern.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_prismarine_crystals": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:prismarine_crystals"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:sea_lantern"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_prismarine_crystals"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:sea_lantern"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_basalt.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_basalt.json
deleted file mode 100644
index 4ded68b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_basalt.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_basalt": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:basalt"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_basalt"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_basalt"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_basalt"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_quartz.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_quartz.json
deleted file mode 100644
index b3866b8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_quartz.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_quartz_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_quartz"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_quartz_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_quartz"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_slab.json
deleted file mode 100644
index e5ad9a9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smooth_quartz": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:smooth_quartz"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_quartz_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smooth_quartz"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_quartz_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_slab_from_smooth_quartz_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_slab_from_smooth_quartz_stonecutting.json
deleted file mode 100644
index f14f27a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_slab_from_smooth_quartz_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smooth_quartz": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:smooth_quartz"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_quartz_slab_from_smooth_quartz_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smooth_quartz"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_quartz_slab_from_smooth_quartz_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_stairs.json
deleted file mode 100644
index 915eb34..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smooth_quartz": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:smooth_quartz"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_quartz_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smooth_quartz"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_quartz_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_stairs_from_smooth_quartz_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_stairs_from_smooth_quartz_stonecutting.json
deleted file mode 100644
index 7df6a2f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_stairs_from_smooth_quartz_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smooth_quartz": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:smooth_quartz"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_quartz_stairs_from_smooth_quartz_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smooth_quartz"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_quartz_stairs_from_smooth_quartz_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone.json
deleted file mode 100644
index f905834..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_red_sandstone"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_red_sandstone"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_slab.json
deleted file mode 100644
index 53a0750..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smooth_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:smooth_red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_red_sandstone_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smooth_red_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_red_sandstone_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting.json
deleted file mode 100644
index d7800ef..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smooth_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:smooth_red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smooth_red_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_stairs.json
deleted file mode 100644
index e3bb9a3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smooth_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:smooth_red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_red_sandstone_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smooth_red_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_red_sandstone_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting.json
deleted file mode 100644
index ce5fe09..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smooth_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:smooth_red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smooth_red_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone.json
deleted file mode 100644
index 0e7072e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_sandstone"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_sandstone"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_slab.json
deleted file mode 100644
index 0bd95f7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smooth_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:smooth_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_sandstone_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smooth_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_sandstone_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_slab_from_smooth_sandstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_slab_from_smooth_sandstone_stonecutting.json
deleted file mode 100644
index f420e67..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_slab_from_smooth_sandstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smooth_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:smooth_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_sandstone_slab_from_smooth_sandstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smooth_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_sandstone_slab_from_smooth_sandstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_stairs.json
deleted file mode 100644
index ce61f57..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smooth_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:smooth_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_sandstone_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smooth_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_sandstone_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_stairs_from_smooth_sandstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_stairs_from_smooth_sandstone_stonecutting.json
deleted file mode 100644
index 89fff18..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_stairs_from_smooth_sandstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smooth_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:smooth_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_sandstone_stairs_from_smooth_sandstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smooth_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_sandstone_stairs_from_smooth_sandstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_stone.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_stone.json
deleted file mode 100644
index 89b2fb0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_stone.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_stone"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_stone"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_stone_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_stone_slab.json
deleted file mode 100644
index c8a50e8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_stone_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smooth_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:smooth_stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_stone_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smooth_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_stone_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_stone_slab_from_smooth_stone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_stone_slab_from_smooth_stone_stonecutting.json
deleted file mode 100644
index 3023896..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/smooth_stone_slab_from_smooth_stone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smooth_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:smooth_stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smooth_stone_slab_from_smooth_stone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smooth_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smooth_stone_slab_from_smooth_stone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/snow_block.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/snow_block.json
deleted file mode 100644
index 1daf615..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/snow_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_snowball": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:snowball"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:snow_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_snowball"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:snow_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sponge.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sponge.json
deleted file mode 100644
index 4295d89..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/sponge.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:sponge"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_wet_sponge": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:wet_sponge"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_wet_sponge"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:sponge"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/spruce_planks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/spruce_planks.json
deleted file mode 100644
index 67128d1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/spruce_planks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_logs": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:spruce_logs"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:spruce_planks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:spruce_planks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/spruce_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/spruce_slab.json
deleted file mode 100644
index 9ab2ca8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/spruce_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:spruce_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:spruce_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:spruce_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/spruce_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/spruce_stairs.json
deleted file mode 100644
index 6c921e4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/spruce_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:spruce_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:spruce_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:spruce_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/spruce_wood.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/spruce_wood.json
deleted file mode 100644
index 049df90..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/spruce_wood.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:spruce_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:spruce_wood"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:spruce_wood"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone.json
deleted file mode 100644
index edf15f5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobblestone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab.json
deleted file mode 100644
index c8f46fc..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_brick_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_brick_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab_from_stone_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab_from_stone_bricks_stonecutting.json
deleted file mode 100644
index 1315d2d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab_from_stone_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_brick_slab_from_stone_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_brick_slab_from_stone_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab_from_stone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab_from_stone_stonecutting.json
deleted file mode 100644
index 1dca74f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab_from_stone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_brick_slab_from_stone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_brick_slab_from_stone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs.json
deleted file mode 100644
index cf2ece4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_brick_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_brick_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs_from_stone_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs_from_stone_bricks_stonecutting.json
deleted file mode 100644
index e5d0039..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs_from_stone_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_brick_stairs_from_stone_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_brick_stairs_from_stone_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs_from_stone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs_from_stone_stonecutting.json
deleted file mode 100644
index 6d540f1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs_from_stone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_brick_stairs_from_stone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_brick_stairs_from_stone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_bricks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_bricks.json
deleted file mode 100644
index 22788b0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_bricks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_bricks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_bricks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_bricks_from_stone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_bricks_from_stone_stonecutting.json
deleted file mode 100644
index 389841b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_bricks_from_stone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_bricks_from_stone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_bricks_from_stone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_slab.json
deleted file mode 100644
index 52b3962..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_slab_from_stone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_slab_from_stone_stonecutting.json
deleted file mode 100644
index 9772a6e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_slab_from_stone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_slab_from_stone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_slab_from_stone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_stairs.json
deleted file mode 100644
index 59942e1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_stairs_from_stone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_stairs_from_stone_stonecutting.json
deleted file mode 100644
index c10f6cd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stone_stairs_from_stone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_stairs_from_stone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_stairs_from_stone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_acacia_wood.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_acacia_wood.json
deleted file mode 100644
index 6b9f12f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_acacia_wood.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_acacia_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stripped_acacia_wood"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stripped_acacia_wood"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_birch_wood.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_birch_wood.json
deleted file mode 100644
index d8dc4d5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_birch_wood.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_birch_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stripped_birch_wood"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stripped_birch_wood"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_cherry_wood.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_cherry_wood.json
deleted file mode 100644
index dbbe159..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_cherry_wood.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_cherry_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stripped_cherry_wood"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stripped_cherry_wood"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_crimson_hyphae.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_crimson_hyphae.json
deleted file mode 100644
index 51c71c3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_crimson_hyphae.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_crimson_stem"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stripped_crimson_hyphae"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stripped_crimson_hyphae"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_dark_oak_wood.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_dark_oak_wood.json
deleted file mode 100644
index 85bea3e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_dark_oak_wood.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_dark_oak_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stripped_dark_oak_wood"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stripped_dark_oak_wood"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_jungle_wood.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_jungle_wood.json
deleted file mode 100644
index 04a8723..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_jungle_wood.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_jungle_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stripped_jungle_wood"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stripped_jungle_wood"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_mangrove_wood.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_mangrove_wood.json
deleted file mode 100644
index 7c02135..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_mangrove_wood.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_mangrove_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stripped_mangrove_wood"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stripped_mangrove_wood"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_oak_wood.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_oak_wood.json
deleted file mode 100644
index fc3cc86..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_oak_wood.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_oak_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stripped_oak_wood"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stripped_oak_wood"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_spruce_wood.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_spruce_wood.json
deleted file mode 100644
index 7bdbfb2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_spruce_wood.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_spruce_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stripped_spruce_wood"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stripped_spruce_wood"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_warped_hyphae.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_warped_hyphae.json
deleted file mode 100644
index b0d9a4e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/stripped_warped_hyphae.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_warped_stem"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stripped_warped_hyphae"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stripped_warped_hyphae"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/terracotta.json
deleted file mode 100644
index 81d3a79..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_clay_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:clay"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_clay_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tinted_glass.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tinted_glass.json
deleted file mode 100644
index fedd8da..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tinted_glass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_amethyst_shard": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:amethyst_shard"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tinted_glass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_amethyst_shard"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tinted_glass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab.json
deleted file mode 100644
index 5af88e6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_brick_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_brick_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_polished_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_polished_tuff_stonecutting.json
deleted file mode 100644
index 6fc042a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_polished_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_brick_slab_from_polished_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_brick_slab_from_polished_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_tuff_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_tuff_bricks_stonecutting.json
deleted file mode 100644
index 6d86a38..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_tuff_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_brick_slab_from_tuff_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_brick_slab_from_tuff_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_tuff_stonecutting.json
deleted file mode 100644
index 997afe6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_brick_slab_from_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_brick_slab_from_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs.json
deleted file mode 100644
index b1b6ead..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_brick_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_brick_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_polished_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_polished_tuff_stonecutting.json
deleted file mode 100644
index f0ff02c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_polished_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_brick_stairs_from_polished_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_brick_stairs_from_polished_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_tuff_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_tuff_bricks_stonecutting.json
deleted file mode 100644
index a28481c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_tuff_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_brick_stairs_from_tuff_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_brick_stairs_from_tuff_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_tuff_stonecutting.json
deleted file mode 100644
index 9480f34..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_brick_stairs_from_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_brick_stairs_from_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_bricks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_bricks.json
deleted file mode 100644
index 56c6a18..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_bricks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_bricks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_bricks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_bricks_from_polished_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_bricks_from_polished_tuff_stonecutting.json
deleted file mode 100644
index 56159be..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_bricks_from_polished_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_bricks_from_polished_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_bricks_from_polished_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_bricks_from_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_bricks_from_tuff_stonecutting.json
deleted file mode 100644
index ebad311..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_bricks_from_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_bricks_from_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_bricks_from_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_slab.json
deleted file mode 100644
index 28dbd47..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_slab_from_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_slab_from_tuff_stonecutting.json
deleted file mode 100644
index 498bb7b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_slab_from_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_slab_from_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_slab_from_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_stairs.json
deleted file mode 100644
index 1ac1389..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_stairs_from_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_stairs_from_tuff_stonecutting.json
deleted file mode 100644
index 561d405..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/tuff_stairs_from_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_stairs_from_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_stairs_from_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/warped_hyphae.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/warped_hyphae.json
deleted file mode 100644
index 46525e2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/warped_hyphae.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:warped_stem"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:warped_hyphae"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:warped_hyphae"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/warped_planks.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/warped_planks.json
deleted file mode 100644
index 21ccebc..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/warped_planks.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_logs": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:warped_stems"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:warped_planks"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:warped_planks"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/warped_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/warped_slab.json
deleted file mode 100644
index 2d302c6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/warped_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:warped_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:warped_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:warped_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/warped_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/warped_stairs.json
deleted file mode 100644
index bd52cf3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/warped_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:warped_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:warped_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:warped_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper.json
deleted file mode 100644
index 20d25a3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_chiseled_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_cut_copper_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_cut_copper_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_cut_copper_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_chiseled_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_honeycomb.json
deleted file mode 100644
index 23ebad7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_chiseled_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chiseled_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_chiseled_copper_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_chiseled_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_chiseled_copper_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_waxed_copper_block_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_waxed_copper_block_stonecutting.json
deleted file mode 100644
index 629cf87..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_waxed_copper_block_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_chiseled_copper_from_waxed_copper_block_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_chiseled_copper_from_waxed_copper_block_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_waxed_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_waxed_cut_copper_stonecutting.json
deleted file mode 100644
index 8332790..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_waxed_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_chiseled_copper_from_waxed_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_chiseled_copper_from_waxed_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_block_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_block_from_honeycomb.json
deleted file mode 100644
index a65972d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_block_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_copper_block_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_copper_block_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_bulb_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_bulb_from_honeycomb.json
deleted file mode 100644
index 35a2676..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_bulb_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_bulb": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_bulb"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_copper_bulb_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_bulb"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_copper_bulb_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_door_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_door_from_honeycomb.json
deleted file mode 100644
index cda8679..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_door_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_door": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_door"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_copper_door_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_door"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_copper_door_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate.json
deleted file mode 100644
index 7e38162..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_copper_grate"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_copper_grate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate_from_honeycomb.json
deleted file mode 100644
index b2e996e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_grate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_grate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_copper_grate_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_grate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_copper_grate_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate_from_waxed_copper_block_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate_from_waxed_copper_block_stonecutting.json
deleted file mode 100644
index 56c39a2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate_from_waxed_copper_block_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_copper_grate_from_waxed_copper_block_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_copper_grate_from_waxed_copper_block_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_trapdoor_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_trapdoor_from_honeycomb.json
deleted file mode 100644
index 67fe651..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_copper_trapdoor_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_trapdoor": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_trapdoor"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_copper_trapdoor_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_trapdoor"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_copper_trapdoor_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper.json
deleted file mode 100644
index a8f0059..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_cut_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_cut_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_from_honeycomb.json
deleted file mode 100644
index 99c3cde..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_cut_copper_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_cut_copper_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_from_waxed_copper_block_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_from_waxed_copper_block_stonecutting.json
deleted file mode 100644
index d96b28d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_from_waxed_copper_block_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_cut_copper_from_waxed_copper_block_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_cut_copper_from_waxed_copper_block_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab.json
deleted file mode 100644
index 159a33e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_cut_copper_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_cut_copper_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_honeycomb.json
deleted file mode 100644
index 08b2f6e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cut_copper_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cut_copper_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_cut_copper_slab_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cut_copper_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_cut_copper_slab_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_waxed_copper_block_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_waxed_copper_block_stonecutting.json
deleted file mode 100644
index 0253a88..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_waxed_copper_block_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_cut_copper_slab_from_waxed_copper_block_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_cut_copper_slab_from_waxed_copper_block_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting.json
deleted file mode 100644
index aa1b052..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs.json
deleted file mode 100644
index 3934614..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_cut_copper_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_cut_copper_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_honeycomb.json
deleted file mode 100644
index 222709f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cut_copper_stairs": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cut_copper_stairs"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_cut_copper_stairs_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cut_copper_stairs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_cut_copper_stairs_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting.json
deleted file mode 100644
index a058f90..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting.json
deleted file mode 100644
index ef6d1c0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper.json
deleted file mode 100644
index 09a9dae..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_chiseled_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_exposed_cut_copper_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_exposed_cut_copper_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_exposed_cut_copper_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_chiseled_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_honeycomb.json
deleted file mode 100644
index aac7b5a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_chiseled_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_chiseled_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_chiseled_copper_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_chiseled_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_chiseled_copper_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting.json
deleted file mode 100644
index e061d51..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_exposed_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_exposed_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_exposed_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting.json
deleted file mode 100644
index ffff639..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_exposed_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_exposed_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_exposed_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_bulb_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_bulb_from_honeycomb.json
deleted file mode 100644
index 71379ea..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_bulb_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_copper_bulb": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_copper_bulb"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_copper_bulb_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_copper_bulb"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_copper_bulb_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_door_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_door_from_honeycomb.json
deleted file mode 100644
index 72d1990..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_door_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_copper_door": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_copper_door"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_copper_door_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_copper_door"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_copper_door_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_from_honeycomb.json
deleted file mode 100644
index ee54119..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_copper_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_copper_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate.json
deleted file mode 100644
index 32d2400..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_copper_grate"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_exposed_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_exposed_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_exposed_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_copper_grate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate_from_honeycomb.json
deleted file mode 100644
index 2e0b6b5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_copper_grate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_copper_grate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_copper_grate_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_copper_grate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_copper_grate_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting.json
deleted file mode 100644
index 08897f0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_exposed_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_exposed_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_exposed_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_trapdoor_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_trapdoor_from_honeycomb.json
deleted file mode 100644
index 3b9514e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_trapdoor_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_copper_trapdoor": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_copper_trapdoor"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_copper_trapdoor_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_copper_trapdoor"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_copper_trapdoor_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper.json
deleted file mode 100644
index 02896bc..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_cut_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_exposed_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_exposed_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_exposed_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_cut_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_from_honeycomb.json
deleted file mode 100644
index ee22aed..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_cut_copper_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_cut_copper_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting.json
deleted file mode 100644
index 09c272a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_exposed_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_exposed_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_exposed_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab.json
deleted file mode 100644
index 1817e0c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_cut_copper_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_exposed_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_exposed_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_exposed_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_cut_copper_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_honeycomb.json
deleted file mode 100644
index 6448350..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_cut_copper_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_cut_copper_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_cut_copper_slab_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_cut_copper_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_cut_copper_slab_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting.json
deleted file mode 100644
index ec5c46f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_exposed_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_exposed_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_exposed_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting.json
deleted file mode 100644
index 7d9cc7c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_exposed_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_exposed_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_exposed_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs.json
deleted file mode 100644
index c8b842f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_cut_copper_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_exposed_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_exposed_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_exposed_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_cut_copper_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_honeycomb.json
deleted file mode 100644
index b013c6a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_cut_copper_stairs": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_cut_copper_stairs"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_cut_copper_stairs_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_cut_copper_stairs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_cut_copper_stairs_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting.json
deleted file mode 100644
index 2049c56..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_exposed_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_exposed_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_exposed_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting.json
deleted file mode 100644
index 3aebaf7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_exposed_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_exposed_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_exposed_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper.json
deleted file mode 100644
index 3d57720..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_chiseled_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_oxidized_cut_copper_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_oxidized_cut_copper_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_oxidized_cut_copper_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_chiseled_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_honeycomb.json
deleted file mode 100644
index cd81b90..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_chiseled_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_chiseled_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_chiseled_copper_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_chiseled_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_chiseled_copper_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting.json
deleted file mode 100644
index ac05461..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_oxidized_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_oxidized_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_oxidized_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting.json
deleted file mode 100644
index 00468ce..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_oxidized_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_oxidized_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_oxidized_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_bulb_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_bulb_from_honeycomb.json
deleted file mode 100644
index 9371e38..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_bulb_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_copper_bulb": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_copper_bulb"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_copper_bulb_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_copper_bulb"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_copper_bulb_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_door_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_door_from_honeycomb.json
deleted file mode 100644
index f943e07..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_door_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_copper_door": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_copper_door"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_copper_door_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_copper_door"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_copper_door_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_from_honeycomb.json
deleted file mode 100644
index bc670d4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_copper_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_copper_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate.json
deleted file mode 100644
index eb64938..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_copper_grate"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_oxidized_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_oxidized_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_oxidized_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_copper_grate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate_from_honeycomb.json
deleted file mode 100644
index acc1d3c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_copper_grate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_copper_grate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_copper_grate_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_copper_grate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_copper_grate_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting.json
deleted file mode 100644
index d2554e1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_oxidized_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_oxidized_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_oxidized_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_trapdoor_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_trapdoor_from_honeycomb.json
deleted file mode 100644
index 4e7e1f3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_trapdoor_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_copper_trapdoor": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_copper_trapdoor"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_copper_trapdoor_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_copper_trapdoor"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_copper_trapdoor_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper.json
deleted file mode 100644
index 07cf847..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_cut_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_oxidized_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_oxidized_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_oxidized_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_cut_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_from_honeycomb.json
deleted file mode 100644
index 7443a84..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_cut_copper_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_cut_copper_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting.json
deleted file mode 100644
index b4d1d1c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_oxidized_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_oxidized_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_oxidized_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab.json
deleted file mode 100644
index 802efad..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_cut_copper_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_oxidized_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_oxidized_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_oxidized_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_cut_copper_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_honeycomb.json
deleted file mode 100644
index a11599c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_cut_copper_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_cut_copper_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_cut_copper_slab_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_cut_copper_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_cut_copper_slab_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting.json
deleted file mode 100644
index ae7d1e6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_oxidized_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_oxidized_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_oxidized_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting.json
deleted file mode 100644
index e85f445..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_oxidized_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_oxidized_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_oxidized_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs.json
deleted file mode 100644
index 5e41ffe..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_cut_copper_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_oxidized_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_oxidized_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_oxidized_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_cut_copper_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_honeycomb.json
deleted file mode 100644
index 8af01a8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_cut_copper_stairs": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_cut_copper_stairs"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_cut_copper_stairs_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_cut_copper_stairs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_cut_copper_stairs_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting.json
deleted file mode 100644
index 40de729..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_oxidized_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_oxidized_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_oxidized_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting.json
deleted file mode 100644
index 88f608e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_oxidized_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_oxidized_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_oxidized_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper.json
deleted file mode 100644
index 67c1bed..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_chiseled_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_weathered_cut_copper_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_weathered_cut_copper_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_weathered_cut_copper_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_chiseled_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_honeycomb.json
deleted file mode 100644
index 64dfa3c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_chiseled_copper_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_chiseled_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_chiseled_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_chiseled_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_chiseled_copper_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting.json
deleted file mode 100644
index 756dd41..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_weathered_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_weathered_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_weathered_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting.json
deleted file mode 100644
index c2c9519..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_weathered_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_weathered_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_weathered_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_bulb_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_bulb_from_honeycomb.json
deleted file mode 100644
index f96fb0d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_bulb_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_copper_bulb_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_copper_bulb": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_copper_bulb"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_copper_bulb"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_copper_bulb_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_door_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_door_from_honeycomb.json
deleted file mode 100644
index b9b5c90..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_door_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_copper_door_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_copper_door": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_copper_door"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_copper_door"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_copper_door_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_from_honeycomb.json
deleted file mode 100644
index 0655153..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_copper_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_copper_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate.json
deleted file mode 100644
index 136661a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_copper_grate"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_weathered_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_weathered_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_weathered_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_copper_grate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate_from_honeycomb.json
deleted file mode 100644
index c4d3064..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_copper_grate_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_copper_grate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_copper_grate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_copper_grate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_copper_grate_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting.json
deleted file mode 100644
index a192100..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_weathered_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_weathered_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_weathered_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_trapdoor_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_trapdoor_from_honeycomb.json
deleted file mode 100644
index 3f22f84..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_trapdoor_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_copper_trapdoor_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_copper_trapdoor": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_copper_trapdoor"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_copper_trapdoor"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_copper_trapdoor_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper.json
deleted file mode 100644
index 8e49d5b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_cut_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_weathered_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_weathered_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_weathered_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_cut_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_from_honeycomb.json
deleted file mode 100644
index 6c6aac2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_cut_copper_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_cut_copper_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting.json
deleted file mode 100644
index 2683a9b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_weathered_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_weathered_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_weathered_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab.json
deleted file mode 100644
index 9400c11..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_cut_copper_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_weathered_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_weathered_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_weathered_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_cut_copper_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_honeycomb.json
deleted file mode 100644
index d99fbf9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_cut_copper_slab_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_cut_copper_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_cut_copper_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_cut_copper_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_cut_copper_slab_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting.json
deleted file mode 100644
index c9dfd3a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_weathered_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_weathered_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_weathered_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting.json
deleted file mode 100644
index ac6ccdc..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_weathered_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_weathered_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_weathered_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs.json
deleted file mode 100644
index 80eebfe..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_cut_copper_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_weathered_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_weathered_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_weathered_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_cut_copper_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_honeycomb.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_honeycomb.json
deleted file mode 100644
index 72cf96e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_honeycomb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_cut_copper_stairs_from_honeycomb"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_cut_copper_stairs": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_cut_copper_stairs"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_cut_copper_stairs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_cut_copper_stairs_from_honeycomb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting.json
deleted file mode 100644
index df3df9a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_weathered_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_weathered_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_weathered_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting.json
deleted file mode 100644
index 8224385..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_weathered_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_weathered_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_weathered_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper.json
deleted file mode 100644
index 8670845..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:weathered_chiseled_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_cut_copper_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_cut_copper_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_cut_copper_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:weathered_chiseled_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper_from_weathered_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper_from_weathered_copper_stonecutting.json
deleted file mode 100644
index 95c49eb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper_from_weathered_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:weathered_chiseled_copper_from_weathered_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:weathered_chiseled_copper_from_weathered_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper_from_weathered_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper_from_weathered_cut_copper_stonecutting.json
deleted file mode 100644
index c0500e0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper_from_weathered_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:weathered_chiseled_copper_from_weathered_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:weathered_chiseled_copper_from_weathered_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_copper_grate.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_copper_grate.json
deleted file mode 100644
index 126185a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_copper_grate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:weathered_copper_grate"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:weathered_copper_grate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_copper_grate_from_weathered_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_copper_grate_from_weathered_copper_stonecutting.json
deleted file mode 100644
index 4fea89f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_copper_grate_from_weathered_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:weathered_copper_grate_from_weathered_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:weathered_copper_grate_from_weathered_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper.json
deleted file mode 100644
index c65fd54..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:weathered_cut_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:weathered_cut_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_from_weathered_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_from_weathered_copper_stonecutting.json
deleted file mode 100644
index a535372..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_from_weathered_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:weathered_cut_copper_from_weathered_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:weathered_cut_copper_from_weathered_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab.json
deleted file mode 100644
index ca08862..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:weathered_cut_copper_slab"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:weathered_cut_copper_slab"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab_from_weathered_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab_from_weathered_copper_stonecutting.json
deleted file mode 100644
index c63d0b9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab_from_weathered_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:weathered_cut_copper_slab_from_weathered_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:weathered_cut_copper_slab_from_weathered_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting.json
deleted file mode 100644
index 63e0cfa..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs.json
deleted file mode 100644
index 346f925..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:weathered_cut_copper_stairs"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:weathered_cut_copper_stairs"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_copper_stonecutting.json
deleted file mode 100644
index fa296b1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:weathered_cut_copper_stairs_from_weathered_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:weathered_cut_copper_stairs_from_weathered_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting.json
deleted file mode 100644
index 0a7bea3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_cut_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_cut_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_cut_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/white_concrete_powder.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/white_concrete_powder.json
deleted file mode 100644
index ac35a8b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/white_concrete_powder.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gravel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gravel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_sand": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sand"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:white_concrete_powder"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sand",
- "has_gravel"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:white_concrete_powder"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/white_stained_glass.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/white_stained_glass.json
deleted file mode 100644
index 5506270..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/white_stained_glass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:white_stained_glass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:white_stained_glass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/white_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/white_terracotta.json
deleted file mode 100644
index 95ae588..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/white_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:white_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:white_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/white_wool_from_string.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/white_wool_from_string.json
deleted file mode 100644
index dced365..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/white_wool_from_string.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_string": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:string"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:white_wool_from_string"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_string"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:white_wool_from_string"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/yellow_concrete_powder.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/yellow_concrete_powder.json
deleted file mode 100644
index 4e54087..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/yellow_concrete_powder.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gravel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gravel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_sand": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sand"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:yellow_concrete_powder"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sand",
- "has_gravel"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:yellow_concrete_powder"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/yellow_stained_glass.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/yellow_stained_glass.json
deleted file mode 100644
index 7a41459..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/yellow_stained_glass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:yellow_stained_glass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:yellow_stained_glass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/yellow_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/building_blocks/yellow_terracotta.json
deleted file mode 100644
index b0f4b8c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/building_blocks/yellow_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:yellow_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:yellow_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/arrow.json b/src/main/resources/data/minecraft/advancement/recipes/combat/arrow.json
deleted file mode 100644
index d9a949b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/arrow.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_feather": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:feather"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_flint": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:flint"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:arrow"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_feather",
- "has_flint"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:arrow"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/bow.json b/src/main/resources/data/minecraft/advancement/recipes/combat/bow.json
deleted file mode 100644
index 475ddb2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/bow.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_string": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:string"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bow"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_string"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bow"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/crossbow.json b/src/main/resources/data/minecraft/advancement/recipes/combat/crossbow.json
deleted file mode 100644
index 5690c1e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/crossbow.json
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_string": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:string"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:crossbow"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tripwire_hook": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tripwire_hook"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_string",
- "has_iron_ingot",
- "has_tripwire_hook"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:crossbow"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/diamond_boots.json b/src/main/resources/data/minecraft/advancement/recipes/combat/diamond_boots.json
deleted file mode 100644
index 1bbffa7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/diamond_boots.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diamond": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diamond_boots"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diamond"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diamond_boots"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/diamond_chestplate.json b/src/main/resources/data/minecraft/advancement/recipes/combat/diamond_chestplate.json
deleted file mode 100644
index 22c6273..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/diamond_chestplate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diamond": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diamond_chestplate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diamond"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diamond_chestplate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/diamond_helmet.json b/src/main/resources/data/minecraft/advancement/recipes/combat/diamond_helmet.json
deleted file mode 100644
index 9eb5c19..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/diamond_helmet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diamond": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diamond_helmet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diamond"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diamond_helmet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/diamond_leggings.json b/src/main/resources/data/minecraft/advancement/recipes/combat/diamond_leggings.json
deleted file mode 100644
index 4107bea..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/diamond_leggings.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diamond": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diamond_leggings"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diamond"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diamond_leggings"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/diamond_sword.json b/src/main/resources/data/minecraft/advancement/recipes/combat/diamond_sword.json
deleted file mode 100644
index 7b9fb0c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/diamond_sword.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diamond": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diamond_sword"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diamond"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diamond_sword"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/golden_boots.json b/src/main/resources/data/minecraft/advancement/recipes/combat/golden_boots.json
deleted file mode 100644
index ce4e66d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/golden_boots.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gold_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gold_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:golden_boots"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gold_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:golden_boots"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/golden_chestplate.json b/src/main/resources/data/minecraft/advancement/recipes/combat/golden_chestplate.json
deleted file mode 100644
index 1c40b6b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/golden_chestplate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gold_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gold_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:golden_chestplate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gold_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:golden_chestplate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/golden_helmet.json b/src/main/resources/data/minecraft/advancement/recipes/combat/golden_helmet.json
deleted file mode 100644
index ee9bd55..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/golden_helmet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gold_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gold_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:golden_helmet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gold_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:golden_helmet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/golden_leggings.json b/src/main/resources/data/minecraft/advancement/recipes/combat/golden_leggings.json
deleted file mode 100644
index 122729a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/golden_leggings.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gold_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gold_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:golden_leggings"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gold_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:golden_leggings"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/golden_sword.json b/src/main/resources/data/minecraft/advancement/recipes/combat/golden_sword.json
deleted file mode 100644
index 1b3dd22..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/golden_sword.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gold_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gold_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:golden_sword"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gold_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:golden_sword"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/iron_boots.json b/src/main/resources/data/minecraft/advancement/recipes/combat/iron_boots.json
deleted file mode 100644
index 04a213f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/iron_boots.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_boots"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_boots"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/iron_chestplate.json b/src/main/resources/data/minecraft/advancement/recipes/combat/iron_chestplate.json
deleted file mode 100644
index 0b2f585..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/iron_chestplate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_chestplate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_chestplate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/iron_helmet.json b/src/main/resources/data/minecraft/advancement/recipes/combat/iron_helmet.json
deleted file mode 100644
index 53a1667..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/iron_helmet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_helmet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_helmet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/iron_leggings.json b/src/main/resources/data/minecraft/advancement/recipes/combat/iron_leggings.json
deleted file mode 100644
index 0a5c437..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/iron_leggings.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_leggings"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_leggings"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/iron_sword.json b/src/main/resources/data/minecraft/advancement/recipes/combat/iron_sword.json
deleted file mode 100644
index 2fc629c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/iron_sword.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_sword"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_sword"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/leather_boots.json b/src/main/resources/data/minecraft/advancement/recipes/combat/leather_boots.json
deleted file mode 100644
index 8394fc2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/leather_boots.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_leather": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:leather"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:leather_boots"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_leather"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:leather_boots"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/leather_chestplate.json b/src/main/resources/data/minecraft/advancement/recipes/combat/leather_chestplate.json
deleted file mode 100644
index a6626bc..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/leather_chestplate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_leather": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:leather"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:leather_chestplate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_leather"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:leather_chestplate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/leather_helmet.json b/src/main/resources/data/minecraft/advancement/recipes/combat/leather_helmet.json
deleted file mode 100644
index 1b4e445..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/leather_helmet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_leather": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:leather"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:leather_helmet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_leather"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:leather_helmet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/leather_leggings.json b/src/main/resources/data/minecraft/advancement/recipes/combat/leather_leggings.json
deleted file mode 100644
index 726c89a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/leather_leggings.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_leather": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:leather"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:leather_leggings"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_leather"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:leather_leggings"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/mace.json b/src/main/resources/data/minecraft/advancement/recipes/combat/mace.json
deleted file mode 100644
index ba0263b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/mace.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_breeze_rod": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:breeze_rod"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_heavy_core": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:heavy_core"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mace"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_breeze_rod",
- "has_heavy_core"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mace"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/netherite_boots_smithing.json b/src/main/resources/data/minecraft/advancement/recipes/combat/netherite_boots_smithing.json
deleted file mode 100644
index eed5d44..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/netherite_boots_smithing.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_netherite_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:netherite_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:netherite_boots_smithing"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_netherite_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:netherite_boots_smithing"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/netherite_chestplate_smithing.json b/src/main/resources/data/minecraft/advancement/recipes/combat/netherite_chestplate_smithing.json
deleted file mode 100644
index 37b29b5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/netherite_chestplate_smithing.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_netherite_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:netherite_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:netherite_chestplate_smithing"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_netherite_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:netherite_chestplate_smithing"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/netherite_helmet_smithing.json b/src/main/resources/data/minecraft/advancement/recipes/combat/netherite_helmet_smithing.json
deleted file mode 100644
index a8240ad..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/netherite_helmet_smithing.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_netherite_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:netherite_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:netherite_helmet_smithing"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_netherite_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:netherite_helmet_smithing"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/netherite_leggings_smithing.json b/src/main/resources/data/minecraft/advancement/recipes/combat/netherite_leggings_smithing.json
deleted file mode 100644
index da9d1c9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/netherite_leggings_smithing.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_netherite_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:netherite_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:netherite_leggings_smithing"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_netherite_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:netherite_leggings_smithing"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/netherite_sword_smithing.json b/src/main/resources/data/minecraft/advancement/recipes/combat/netherite_sword_smithing.json
deleted file mode 100644
index 3a45cc6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/netherite_sword_smithing.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_netherite_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:netherite_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:netherite_sword_smithing"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_netherite_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:netherite_sword_smithing"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/shield.json b/src/main/resources/data/minecraft/advancement/recipes/combat/shield.json
deleted file mode 100644
index b3e26b8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/shield.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:shield"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:shield"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/spectral_arrow.json b/src/main/resources/data/minecraft/advancement/recipes/combat/spectral_arrow.json
deleted file mode 100644
index af318e4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/spectral_arrow.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glowstone_dust": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glowstone_dust"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:spectral_arrow"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glowstone_dust"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:spectral_arrow"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/stone_sword.json b/src/main/resources/data/minecraft/advancement/recipes/combat/stone_sword.json
deleted file mode 100644
index 9d3a6e9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/stone_sword.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:stone_tool_materials"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_sword"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_sword"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/turtle_helmet.json b/src/main/resources/data/minecraft/advancement/recipes/combat/turtle_helmet.json
deleted file mode 100644
index 81e034c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/turtle_helmet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:turtle_helmet"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_turtle_scute": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:turtle_scute"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_turtle_scute"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:turtle_helmet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/wolf_armor.json b/src/main/resources/data/minecraft/advancement/recipes/combat/wolf_armor.json
deleted file mode 100644
index a280d0b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/wolf_armor.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_armadillo_scute": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:armadillo_scute"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:wolf_armor"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_armadillo_scute"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:wolf_armor"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/combat/wooden_sword.json b/src/main/resources/data/minecraft/advancement/recipes/combat/wooden_sword.json
deleted file mode 100644
index 806742f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/combat/wooden_sword.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stick": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stick"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:wooden_sword"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stick"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:wooden_sword"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/acacia_fence.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/acacia_fence.json
deleted file mode 100644
index 679b762..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/acacia_fence.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:acacia_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:acacia_fence"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:acacia_fence"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/acacia_hanging_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/acacia_hanging_sign.json
deleted file mode 100644
index 684ac23..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/acacia_hanging_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stripped_logs": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_acacia_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:acacia_hanging_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stripped_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:acacia_hanging_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/acacia_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/acacia_sign.json
deleted file mode 100644
index eb4acbd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/acacia_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:acacia_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:acacia_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:acacia_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/andesite_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/andesite_wall.json
deleted file mode 100644
index 540978a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/andesite_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_andesite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:andesite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:andesite_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_andesite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:andesite_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/andesite_wall_from_andesite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/andesite_wall_from_andesite_stonecutting.json
deleted file mode 100644
index 5cc823b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/andesite_wall_from_andesite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_andesite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:andesite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:andesite_wall_from_andesite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_andesite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:andesite_wall_from_andesite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/anvil.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/anvil.json
deleted file mode 100644
index f8749cd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/anvil.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:anvil"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:anvil"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/armor_stand.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/armor_stand.json
deleted file mode 100644
index 9184521..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/armor_stand.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:smooth_stone_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:armor_stand"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:armor_stand"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/bamboo_fence.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/bamboo_fence.json
deleted file mode 100644
index 8d8ae16..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/bamboo_fence.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bamboo_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bamboo_fence"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bamboo_fence"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/bamboo_hanging_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/bamboo_hanging_sign.json
deleted file mode 100644
index 3ced055..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/bamboo_hanging_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stripped_logs": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_bamboo_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bamboo_hanging_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stripped_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bamboo_hanging_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/bamboo_mosaic.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/bamboo_mosaic.json
deleted file mode 100644
index a300333..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/bamboo_mosaic.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bamboo_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bamboo_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bamboo_mosaic"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_bamboo_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bamboo_mosaic"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/bamboo_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/bamboo_sign.json
deleted file mode 100644
index 360d08a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/bamboo_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bamboo_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bamboo_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bamboo_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/barrel.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/barrel.json
deleted file mode 100644
index a78609d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/barrel.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:barrel"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_wood_slab": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:wooden_slabs"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks",
- "has_wood_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:barrel"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/beehive.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/beehive.json
deleted file mode 100644
index f1b9dc7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/beehive.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_honeycomb": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:honeycomb"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:beehive"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_honeycomb"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:beehive"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/birch_fence.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/birch_fence.json
deleted file mode 100644
index c13058b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/birch_fence.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:birch_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:birch_fence"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:birch_fence"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/birch_hanging_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/birch_hanging_sign.json
deleted file mode 100644
index 38248fe..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/birch_hanging_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stripped_logs": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_birch_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:birch_hanging_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stripped_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:birch_hanging_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/birch_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/birch_sign.json
deleted file mode 100644
index 66c8ce8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/birch_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:birch_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:birch_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:birch_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/black_banner.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/black_banner.json
deleted file mode 100644
index e10a4d4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/black_banner.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_black_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:black_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:black_banner"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_black_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:black_banner"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/black_bed.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/black_bed.json
deleted file mode 100644
index 4621673..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/black_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_black_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:black_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:black_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_black_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:black_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/black_candle.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/black_candle.json
deleted file mode 100644
index 37fed0b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/black_candle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_black_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:black_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:black_candle"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_black_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:black_candle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/black_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/black_carpet.json
deleted file mode 100644
index a1d68c3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/black_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_black_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:black_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:black_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_black_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:black_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/black_glazed_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/black_glazed_terracotta.json
deleted file mode 100644
index 98fd4a6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/black_glazed_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_black_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:black_terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:black_glazed_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_black_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:black_glazed_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/black_stained_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/black_stained_glass_pane.json
deleted file mode 100644
index 88db284..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/black_stained_glass_pane.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:black_stained_glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:black_stained_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:black_stained_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/black_stained_glass_pane_from_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/black_stained_glass_pane_from_glass_pane.json
deleted file mode 100644
index 769364b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/black_stained_glass_pane_from_glass_pane.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_black_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:black_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_glass_pane": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass_pane"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:black_stained_glass_pane_from_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass_pane",
- "has_black_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:black_stained_glass_pane_from_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/blackstone_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/blackstone_wall.json
deleted file mode 100644
index e567cb8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/blackstone_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blackstone_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blackstone_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/blackstone_wall_from_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/blackstone_wall_from_blackstone_stonecutting.json
deleted file mode 100644
index e4855a9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/blackstone_wall_from_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blackstone_wall_from_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blackstone_wall_from_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/blast_furnace.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/blast_furnace.json
deleted file mode 100644
index d1a6817..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/blast_furnace.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smooth_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:smooth_stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blast_furnace"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smooth_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blast_furnace"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_banner.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_banner.json
deleted file mode 100644
index 12fe966..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_banner.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blue_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blue_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blue_banner"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blue_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blue_banner"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_bed.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_bed.json
deleted file mode 100644
index d27e965..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blue_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blue_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blue_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blue_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blue_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_candle.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_candle.json
deleted file mode 100644
index e793487..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_candle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blue_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blue_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blue_candle"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blue_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blue_candle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_carpet.json
deleted file mode 100644
index a8901ae..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blue_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blue_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blue_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blue_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blue_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_glazed_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_glazed_terracotta.json
deleted file mode 100644
index dd3a4fd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_glazed_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blue_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blue_terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blue_glazed_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blue_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blue_glazed_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_stained_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_stained_glass_pane.json
deleted file mode 100644
index a986fe4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_stained_glass_pane.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blue_stained_glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blue_stained_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blue_stained_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_stained_glass_pane_from_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_stained_glass_pane_from_glass_pane.json
deleted file mode 100644
index b63151e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/blue_stained_glass_pane_from_glass_pane.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blue_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blue_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_glass_pane": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass_pane"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blue_stained_glass_pane_from_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass_pane",
- "has_blue_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blue_stained_glass_pane_from_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/brick_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/brick_wall.json
deleted file mode 100644
index e2f5d6d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/brick_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brick_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brick_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/brick_wall_from_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/brick_wall_from_bricks_stonecutting.json
deleted file mode 100644
index ed610d9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/brick_wall_from_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brick_wall_from_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brick_wall_from_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_banner.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_banner.json
deleted file mode 100644
index 8ec9f5d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_banner.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_brown_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:brown_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brown_banner"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_brown_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brown_banner"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_bed.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_bed.json
deleted file mode 100644
index 03d31f4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_brown_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:brown_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brown_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_brown_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brown_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_candle.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_candle.json
deleted file mode 100644
index ac9060c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_candle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_brown_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:brown_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brown_candle"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_brown_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brown_candle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_carpet.json
deleted file mode 100644
index 482d967..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_brown_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:brown_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brown_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_brown_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brown_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_glazed_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_glazed_terracotta.json
deleted file mode 100644
index cfb9724..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_glazed_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_brown_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:brown_terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brown_glazed_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_brown_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brown_glazed_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_stained_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_stained_glass_pane.json
deleted file mode 100644
index b446f5f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_stained_glass_pane.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:brown_stained_glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brown_stained_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brown_stained_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_stained_glass_pane_from_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_stained_glass_pane_from_glass_pane.json
deleted file mode 100644
index e13a727..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/brown_stained_glass_pane_from_glass_pane.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_brown_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:brown_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_glass_pane": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass_pane"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brown_stained_glass_pane_from_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass_pane",
- "has_brown_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brown_stained_glass_pane_from_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/campfire.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/campfire.json
deleted file mode 100644
index 66bca0a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/campfire.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_coal": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:coals"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_stick": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stick"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:campfire"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stick",
- "has_coal"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:campfire"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/candle.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/candle.json
deleted file mode 100644
index 13521a0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/candle.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_honeycomb": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:honeycomb"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_string": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:string"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:candle"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_string",
- "has_honeycomb"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:candle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/cartography_table.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/cartography_table.json
deleted file mode 100644
index d3d9de0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/cartography_table.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_paper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:paper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cartography_table"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_paper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cartography_table"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/chain.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/chain.json
deleted file mode 100644
index fb24bb0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/chain.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_nugget": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_nugget"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chain"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_nugget",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chain"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/cherry_fence.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/cherry_fence.json
deleted file mode 100644
index 2d21e1e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/cherry_fence.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cherry_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cherry_fence"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cherry_fence"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/cherry_hanging_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/cherry_hanging_sign.json
deleted file mode 100644
index 9998ef4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/cherry_hanging_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stripped_logs": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_cherry_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cherry_hanging_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stripped_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cherry_hanging_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/cherry_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/cherry_sign.json
deleted file mode 100644
index c1e2114..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/cherry_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cherry_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cherry_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cherry_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/chest.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/chest.json
deleted file mode 100644
index 6e00416..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/chest.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_lots_of_items": {
- "conditions": {
- "slots": {
- "occupied": {
- "min": 10
- }
- }
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chest"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_lots_of_items"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chest"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall.json
deleted file mode 100644
index b695980..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cobbled_deepslate_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cobbled_deepslate_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting.json
deleted file mode 100644
index caeac7f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/cobblestone_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/cobblestone_wall.json
deleted file mode 100644
index cde03a7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/cobblestone_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobblestone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cobblestone_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cobblestone_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/cobblestone_wall_from_cobblestone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/cobblestone_wall_from_cobblestone_stonecutting.json
deleted file mode 100644
index 9cf1be9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/cobblestone_wall_from_cobblestone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobblestone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cobblestone_wall_from_cobblestone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cobblestone_wall_from_cobblestone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/composter.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/composter.json
deleted file mode 100644
index eeb7a2e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/composter.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:composter"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_wood_slab": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:wooden_slabs"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_wood_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:composter"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/crafting_table.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/crafting_table.json
deleted file mode 100644
index a040c87..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/crafting_table.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:crafting_table"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "unlock_right_away": {
- "trigger": "minecraft:tick"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "unlock_right_away"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:crafting_table"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/crimson_fence.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/crimson_fence.json
deleted file mode 100644
index 0d2c70e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/crimson_fence.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:crimson_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:crimson_fence"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:crimson_fence"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/crimson_hanging_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/crimson_hanging_sign.json
deleted file mode 100644
index 24af841..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/crimson_hanging_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stripped_logs": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_crimson_stem"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:crimson_hanging_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stripped_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:crimson_hanging_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/crimson_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/crimson_sign.json
deleted file mode 100644
index 270f36a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/crimson_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:crimson_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:crimson_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:crimson_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_banner.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_banner.json
deleted file mode 100644
index acd7aeb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_banner.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cyan_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cyan_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cyan_banner"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cyan_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cyan_banner"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_bed.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_bed.json
deleted file mode 100644
index 7ea83de..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cyan_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cyan_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cyan_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cyan_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cyan_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_candle.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_candle.json
deleted file mode 100644
index b7b8f75..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_candle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cyan_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cyan_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cyan_candle"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cyan_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cyan_candle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_carpet.json
deleted file mode 100644
index dea236e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cyan_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cyan_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cyan_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cyan_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cyan_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_glazed_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_glazed_terracotta.json
deleted file mode 100644
index 90da75a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_glazed_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cyan_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cyan_terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cyan_glazed_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cyan_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cyan_glazed_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_stained_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_stained_glass_pane.json
deleted file mode 100644
index 3b99317..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_stained_glass_pane.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cyan_stained_glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cyan_stained_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cyan_stained_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_stained_glass_pane_from_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_stained_glass_pane_from_glass_pane.json
deleted file mode 100644
index ff50f60..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/cyan_stained_glass_pane_from_glass_pane.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cyan_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cyan_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_glass_pane": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass_pane"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cyan_stained_glass_pane_from_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass_pane",
- "has_cyan_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cyan_stained_glass_pane_from_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/dark_oak_fence.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/dark_oak_fence.json
deleted file mode 100644
index 971316c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/dark_oak_fence.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dark_oak_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_oak_fence"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_oak_fence"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/dark_oak_hanging_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/dark_oak_hanging_sign.json
deleted file mode 100644
index a80fe55..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/dark_oak_hanging_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stripped_logs": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_dark_oak_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_oak_hanging_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stripped_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_oak_hanging_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/dark_oak_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/dark_oak_sign.json
deleted file mode 100644
index 119fcef..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/dark_oak_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dark_oak_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_oak_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_oak_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/decorated_pot_simple.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/decorated_pot_simple.json
deleted file mode 100644
index 0b33648..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/decorated_pot_simple.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_brick": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:decorated_pot_ingredients"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:decorated_pot_simple"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_brick"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:decorated_pot_simple"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall.json
deleted file mode 100644
index ef37f9b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_brick_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_brick_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_cobbled_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_cobbled_deepslate_stonecutting.json
deleted file mode 100644
index 5563bd2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_cobbled_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_deepslate_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_deepslate_bricks_stonecutting.json
deleted file mode 100644
index b16dae6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_deepslate_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_polished_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_polished_deepslate_stonecutting.json
deleted file mode 100644
index e9c3bbd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_polished_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall.json
deleted file mode 100644
index 9e33f69..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_tiles": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_tiles"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tile_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_tiles"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tile_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_cobbled_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_cobbled_deepslate_stonecutting.json
deleted file mode 100644
index d4dc256..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_cobbled_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_bricks_stonecutting.json
deleted file mode 100644
index f41a111..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_tiles_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_tiles_stonecutting.json
deleted file mode 100644
index ef25a72..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_tiles_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_tiles": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_tiles"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_tiles"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_polished_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_polished_deepslate_stonecutting.json
deleted file mode 100644
index d07c024..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_polished_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/diorite_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/diorite_wall.json
deleted file mode 100644
index 44e7acd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/diorite_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diorite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diorite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diorite_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diorite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diorite_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/diorite_wall_from_diorite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/diorite_wall_from_diorite_stonecutting.json
deleted file mode 100644
index f1bb5f1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/diorite_wall_from_diorite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diorite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diorite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diorite_wall_from_diorite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diorite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diorite_wall_from_diorite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/enchanting_table.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/enchanting_table.json
deleted file mode 100644
index 771cfc3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/enchanting_table.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_obsidian": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:obsidian"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:enchanting_table"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_obsidian"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:enchanting_table"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/end_crystal.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/end_crystal.json
deleted file mode 100644
index 3ac71d8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/end_crystal.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_ender_eye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:ender_eye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:end_crystal"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_ender_eye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:end_crystal"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/end_rod.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/end_rod.json
deleted file mode 100644
index e5a5de9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/end_rod.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_chorus_fruit_popped": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:popped_chorus_fruit"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:end_rod"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_chorus_fruit_popped"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:end_rod"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall.json
deleted file mode 100644
index 2fa03c7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_end_stone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:end_stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:end_stone_brick_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_end_stone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:end_stone_brick_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall_from_end_stone_brick_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall_from_end_stone_brick_stonecutting.json
deleted file mode 100644
index e2f14b9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall_from_end_stone_brick_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_end_stone_brick": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:end_stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:end_stone_brick_wall_from_end_stone_brick_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_end_stone_brick"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:end_stone_brick_wall_from_end_stone_brick_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall_from_end_stone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall_from_end_stone_stonecutting.json
deleted file mode 100644
index eb59cb8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall_from_end_stone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_end_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:end_stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:end_stone_brick_wall_from_end_stone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_end_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:end_stone_brick_wall_from_end_stone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/ender_chest.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/ender_chest.json
deleted file mode 100644
index 75cc0f3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/ender_chest.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_ender_eye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:ender_eye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:ender_chest"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_ender_eye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:ender_chest"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/fletching_table.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/fletching_table.json
deleted file mode 100644
index c35a325..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/fletching_table.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_flint": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:flint"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:fletching_table"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_flint"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:fletching_table"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/flower_pot.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/flower_pot.json
deleted file mode 100644
index 8cc4c02..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/flower_pot.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_brick": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:brick"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:flower_pot"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_brick"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:flower_pot"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/furnace.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/furnace.json
deleted file mode 100644
index 9e13132..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/furnace.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:stone_crafting_materials"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:furnace"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:furnace"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/glass_pane.json
deleted file mode 100644
index 4a55af0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/glass_pane.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/glow_item_frame.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/glow_item_frame.json
deleted file mode 100644
index 60b0e3a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/glow_item_frame.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glow_ink_sac": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glow_ink_sac"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_item_frame": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:item_frame"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:glow_item_frame"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_item_frame",
- "has_glow_ink_sac"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:glow_item_frame"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/granite_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/granite_wall.json
deleted file mode 100644
index abf1709..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/granite_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_granite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:granite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:granite_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_granite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:granite_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/granite_wall_from_granite_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/granite_wall_from_granite_stonecutting.json
deleted file mode 100644
index bd0796c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/granite_wall_from_granite_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_granite": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:granite"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:granite_wall_from_granite_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_granite"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:granite_wall_from_granite_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_banner.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_banner.json
deleted file mode 100644
index 0f5cdb6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_banner.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gray_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gray_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gray_banner"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gray_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gray_banner"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_bed.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_bed.json
deleted file mode 100644
index 5976b3a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gray_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gray_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gray_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gray_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gray_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_candle.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_candle.json
deleted file mode 100644
index 819761c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_candle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gray_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gray_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gray_candle"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gray_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gray_candle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_carpet.json
deleted file mode 100644
index 3e17033..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gray_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gray_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gray_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gray_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gray_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_glazed_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_glazed_terracotta.json
deleted file mode 100644
index 37f33e6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_glazed_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gray_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gray_terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gray_glazed_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gray_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gray_glazed_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_stained_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_stained_glass_pane.json
deleted file mode 100644
index 51b306c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_stained_glass_pane.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gray_stained_glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gray_stained_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gray_stained_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_stained_glass_pane_from_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_stained_glass_pane_from_glass_pane.json
deleted file mode 100644
index 41997e5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/gray_stained_glass_pane_from_glass_pane.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass_pane": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass_pane"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_gray_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gray_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gray_stained_glass_pane_from_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass_pane",
- "has_gray_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gray_stained_glass_pane_from_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/green_banner.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/green_banner.json
deleted file mode 100644
index 550a7fb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/green_banner.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_green_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:green_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:green_banner"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_green_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:green_banner"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/green_bed.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/green_bed.json
deleted file mode 100644
index acf62aa..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/green_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_green_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:green_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:green_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_green_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:green_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/green_candle.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/green_candle.json
deleted file mode 100644
index 4b3a88c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/green_candle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_green_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:green_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:green_candle"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_green_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:green_candle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/green_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/green_carpet.json
deleted file mode 100644
index e10b592..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/green_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_green_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:green_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:green_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_green_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:green_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/green_glazed_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/green_glazed_terracotta.json
deleted file mode 100644
index 6e8830c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/green_glazed_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_green_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:green_terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:green_glazed_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_green_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:green_glazed_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/green_stained_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/green_stained_glass_pane.json
deleted file mode 100644
index 2d081cf..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/green_stained_glass_pane.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:green_stained_glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:green_stained_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:green_stained_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/green_stained_glass_pane_from_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/green_stained_glass_pane_from_glass_pane.json
deleted file mode 100644
index 6c03183..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/green_stained_glass_pane_from_glass_pane.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass_pane": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass_pane"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_green_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:green_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:green_stained_glass_pane_from_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass_pane",
- "has_green_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:green_stained_glass_pane_from_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/grindstone.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/grindstone.json
deleted file mode 100644
index 57e5149..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/grindstone.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone_slab": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone_slab"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:grindstone"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone_slab"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:grindstone"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/honeycomb_block.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/honeycomb_block.json
deleted file mode 100644
index 77367ec..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/honeycomb_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_honeycomb": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:honeycomb"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:honeycomb_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_honeycomb"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:honeycomb_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/iron_bars.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/iron_bars.json
deleted file mode 100644
index 0b0b56c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/iron_bars.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_bars"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_bars"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/item_frame.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/item_frame.json
deleted file mode 100644
index b9a85d9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/item_frame.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_leather": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:leather"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:item_frame"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_leather"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:item_frame"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/jukebox.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/jukebox.json
deleted file mode 100644
index d4a6202..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/jukebox.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diamond": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:jukebox"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diamond"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:jukebox"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/jungle_fence.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/jungle_fence.json
deleted file mode 100644
index 589f773..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/jungle_fence.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:jungle_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:jungle_fence"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:jungle_fence"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/jungle_hanging_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/jungle_hanging_sign.json
deleted file mode 100644
index 1a75d7f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/jungle_hanging_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stripped_logs": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_jungle_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:jungle_hanging_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stripped_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:jungle_hanging_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/jungle_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/jungle_sign.json
deleted file mode 100644
index e432d53..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/jungle_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:jungle_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:jungle_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:jungle_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/ladder.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/ladder.json
deleted file mode 100644
index 6d3f284..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/ladder.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stick": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stick"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:ladder"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stick"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:ladder"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/lantern.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/lantern.json
deleted file mode 100644
index 115abdb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/lantern.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_nugget": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_nugget"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lantern"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_nugget",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lantern"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_banner.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_banner.json
deleted file mode 100644
index 6a4fd4c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_banner.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_light_blue_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_blue_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_blue_banner"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_light_blue_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_blue_banner"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_bed.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_bed.json
deleted file mode 100644
index bfa709a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_light_blue_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_blue_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_blue_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_light_blue_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_blue_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_candle.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_candle.json
deleted file mode 100644
index ddf547a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_candle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_light_blue_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_blue_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_blue_candle"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_light_blue_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_blue_candle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_carpet.json
deleted file mode 100644
index d68bc4b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_light_blue_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_blue_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_blue_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_light_blue_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_blue_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_glazed_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_glazed_terracotta.json
deleted file mode 100644
index 8648482..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_glazed_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_light_blue_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_blue_terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_blue_glazed_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_light_blue_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_blue_glazed_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_stained_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_stained_glass_pane.json
deleted file mode 100644
index 959f02d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_stained_glass_pane.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_blue_stained_glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_blue_stained_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_blue_stained_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_stained_glass_pane_from_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_stained_glass_pane_from_glass_pane.json
deleted file mode 100644
index f21a4d1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_blue_stained_glass_pane_from_glass_pane.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass_pane": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass_pane"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_light_blue_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_blue_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_blue_stained_glass_pane_from_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass_pane",
- "has_light_blue_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_blue_stained_glass_pane_from_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_banner.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_banner.json
deleted file mode 100644
index 25d833f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_banner.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_light_gray_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_gray_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_gray_banner"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_light_gray_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_gray_banner"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_bed.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_bed.json
deleted file mode 100644
index 264c708..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_light_gray_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_gray_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_gray_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_light_gray_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_gray_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_candle.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_candle.json
deleted file mode 100644
index 4d9e477..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_candle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_light_gray_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_gray_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_gray_candle"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_light_gray_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_gray_candle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_carpet.json
deleted file mode 100644
index f378a58..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_light_gray_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_gray_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_gray_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_light_gray_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_gray_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_glazed_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_glazed_terracotta.json
deleted file mode 100644
index 34d2cdd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_glazed_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_light_gray_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_gray_terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_gray_glazed_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_light_gray_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_gray_glazed_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_stained_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_stained_glass_pane.json
deleted file mode 100644
index 0a813c4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_stained_glass_pane.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_gray_stained_glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_gray_stained_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_gray_stained_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_stained_glass_pane_from_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_stained_glass_pane_from_glass_pane.json
deleted file mode 100644
index ff3c07e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/light_gray_stained_glass_pane_from_glass_pane.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass_pane": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass_pane"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_light_gray_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:light_gray_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_gray_stained_glass_pane_from_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass_pane",
- "has_light_gray_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_gray_stained_glass_pane_from_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_banner.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_banner.json
deleted file mode 100644
index 525efd7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_banner.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_lime_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:lime_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lime_banner"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_lime_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lime_banner"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_bed.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_bed.json
deleted file mode 100644
index ebe169e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_lime_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:lime_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lime_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_lime_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lime_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_candle.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_candle.json
deleted file mode 100644
index f11f19a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_candle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_lime_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:lime_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lime_candle"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_lime_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lime_candle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_carpet.json
deleted file mode 100644
index d809633..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_lime_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:lime_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lime_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_lime_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lime_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_glazed_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_glazed_terracotta.json
deleted file mode 100644
index e573f1d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_glazed_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_lime_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:lime_terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lime_glazed_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_lime_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lime_glazed_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_stained_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_stained_glass_pane.json
deleted file mode 100644
index 7ddc0d3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_stained_glass_pane.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:lime_stained_glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lime_stained_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lime_stained_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_stained_glass_pane_from_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_stained_glass_pane_from_glass_pane.json
deleted file mode 100644
index 12eef0c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/lime_stained_glass_pane_from_glass_pane.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass_pane": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass_pane"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_lime_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:lime_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lime_stained_glass_pane_from_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass_pane",
- "has_lime_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lime_stained_glass_pane_from_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/lodestone.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/lodestone.json
deleted file mode 100644
index 3ccf8e6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/lodestone.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_netherite_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:netherite_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lodestone"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_netherite_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lodestone"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/loom.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/loom.json
deleted file mode 100644
index c1829b7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/loom.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_string": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:string"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:loom"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_string"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:loom"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_banner.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_banner.json
deleted file mode 100644
index b9a0ce2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_banner.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_magenta_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:magenta_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:magenta_banner"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_magenta_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:magenta_banner"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_bed.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_bed.json
deleted file mode 100644
index eda1465..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_magenta_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:magenta_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:magenta_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_magenta_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:magenta_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_candle.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_candle.json
deleted file mode 100644
index 201b529..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_candle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_magenta_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:magenta_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:magenta_candle"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_magenta_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:magenta_candle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_carpet.json
deleted file mode 100644
index 01b52ff..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_magenta_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:magenta_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:magenta_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_magenta_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:magenta_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_glazed_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_glazed_terracotta.json
deleted file mode 100644
index 9d3ebde..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_glazed_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_magenta_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:magenta_terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:magenta_glazed_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_magenta_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:magenta_glazed_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_stained_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_stained_glass_pane.json
deleted file mode 100644
index 43b9840..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_stained_glass_pane.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:magenta_stained_glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:magenta_stained_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:magenta_stained_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_stained_glass_pane_from_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_stained_glass_pane_from_glass_pane.json
deleted file mode 100644
index 0f1e26e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/magenta_stained_glass_pane_from_glass_pane.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass_pane": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass_pane"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_magenta_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:magenta_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:magenta_stained_glass_pane_from_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass_pane",
- "has_magenta_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:magenta_stained_glass_pane_from_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/mangrove_fence.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/mangrove_fence.json
deleted file mode 100644
index 103f4d1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/mangrove_fence.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mangrove_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mangrove_fence"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mangrove_fence"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/mangrove_hanging_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/mangrove_hanging_sign.json
deleted file mode 100644
index 33d389b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/mangrove_hanging_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stripped_logs": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_mangrove_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mangrove_hanging_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stripped_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mangrove_hanging_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/mangrove_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/mangrove_sign.json
deleted file mode 100644
index 172ecac..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/mangrove_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mangrove_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mangrove_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mangrove_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/moss_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/moss_carpet.json
deleted file mode 100644
index cec3703..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/moss_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_moss_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:moss_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:moss_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_moss_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:moss_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/mossy_cobblestone_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/mossy_cobblestone_wall.json
deleted file mode 100644
index 84af20f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/mossy_cobblestone_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mossy_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mossy_cobblestone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mossy_cobblestone_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mossy_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mossy_cobblestone_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting.json
deleted file mode 100644
index 672880e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mossy_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mossy_cobblestone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mossy_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/mossy_stone_brick_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/mossy_stone_brick_wall.json
deleted file mode 100644
index 41ec883..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/mossy_stone_brick_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mossy_stone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mossy_stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mossy_stone_brick_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mossy_stone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mossy_stone_brick_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/mossy_stone_brick_wall_from_mossy_stone_brick_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/mossy_stone_brick_wall_from_mossy_stone_brick_stonecutting.json
deleted file mode 100644
index 0ef0e10..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/mossy_stone_brick_wall_from_mossy_stone_brick_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mossy_stone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mossy_stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mossy_stone_brick_wall_from_mossy_stone_brick_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mossy_stone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mossy_stone_brick_wall_from_mossy_stone_brick_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/mud_brick_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/mud_brick_wall.json
deleted file mode 100644
index 03ecfc9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/mud_brick_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mud_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mud_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mud_brick_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mud_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mud_brick_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/mud_brick_wall_from_mud_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/mud_brick_wall_from_mud_bricks_stonecutting.json
deleted file mode 100644
index 60f73b6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/mud_brick_wall_from_mud_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mud_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mud_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mud_brick_wall_from_mud_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mud_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mud_brick_wall_from_mud_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/nether_brick_fence.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/nether_brick_fence.json
deleted file mode 100644
index 689f18e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/nether_brick_fence.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nether_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nether_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:nether_brick_fence"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nether_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:nether_brick_fence"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/nether_brick_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/nether_brick_wall.json
deleted file mode 100644
index 7742728..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/nether_brick_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nether_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nether_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:nether_brick_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nether_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:nether_brick_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/nether_brick_wall_from_nether_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/nether_brick_wall_from_nether_bricks_stonecutting.json
deleted file mode 100644
index 0cdfae7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/nether_brick_wall_from_nether_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nether_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nether_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:nether_brick_wall_from_nether_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nether_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:nether_brick_wall_from_nether_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/oak_fence.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/oak_fence.json
deleted file mode 100644
index 209d0d6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/oak_fence.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oak_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oak_fence"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oak_fence"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/oak_hanging_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/oak_hanging_sign.json
deleted file mode 100644
index 9ce6308..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/oak_hanging_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stripped_logs": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_oak_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oak_hanging_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stripped_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oak_hanging_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/oak_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/oak_sign.json
deleted file mode 100644
index d18ded6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/oak_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oak_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oak_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oak_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_banner.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_banner.json
deleted file mode 100644
index 0295ee4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_banner.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_orange_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:orange_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:orange_banner"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_orange_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:orange_banner"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_bed.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_bed.json
deleted file mode 100644
index 4608278..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_orange_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:orange_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:orange_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_orange_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:orange_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_candle.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_candle.json
deleted file mode 100644
index d99adc2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_candle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_orange_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:orange_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:orange_candle"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_orange_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:orange_candle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_carpet.json
deleted file mode 100644
index 2ff38e0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_orange_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:orange_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:orange_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_orange_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:orange_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_glazed_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_glazed_terracotta.json
deleted file mode 100644
index b833cdf..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_glazed_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_orange_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:orange_terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:orange_glazed_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_orange_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:orange_glazed_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_stained_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_stained_glass_pane.json
deleted file mode 100644
index f5ec07f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_stained_glass_pane.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:orange_stained_glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:orange_stained_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:orange_stained_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_stained_glass_pane_from_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_stained_glass_pane_from_glass_pane.json
deleted file mode 100644
index 293807e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/orange_stained_glass_pane_from_glass_pane.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass_pane": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass_pane"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_orange_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:orange_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:orange_stained_glass_pane_from_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass_pane",
- "has_orange_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:orange_stained_glass_pane_from_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/painting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/painting.json
deleted file mode 100644
index fe37a2d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/painting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:painting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_wool": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:painting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_banner.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_banner.json
deleted file mode 100644
index 20afae6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_banner.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_pink_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:pink_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:pink_banner"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_pink_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:pink_banner"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_bed.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_bed.json
deleted file mode 100644
index 87d48fa..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_pink_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:pink_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:pink_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_pink_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:pink_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_candle.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_candle.json
deleted file mode 100644
index 131449f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_candle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_pink_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:pink_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:pink_candle"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_pink_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:pink_candle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_carpet.json
deleted file mode 100644
index 35f6079..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_pink_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:pink_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:pink_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_pink_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:pink_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_glazed_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_glazed_terracotta.json
deleted file mode 100644
index 2fdcf7f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_glazed_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_pink_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:pink_terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:pink_glazed_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_pink_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:pink_glazed_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_stained_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_stained_glass_pane.json
deleted file mode 100644
index c85bffd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_stained_glass_pane.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:pink_stained_glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:pink_stained_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:pink_stained_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_stained_glass_pane_from_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_stained_glass_pane_from_glass_pane.json
deleted file mode 100644
index 9b632ef..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/pink_stained_glass_pane_from_glass_pane.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass_pane": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass_pane"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_pink_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:pink_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:pink_stained_glass_pane_from_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass_pane",
- "has_pink_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:pink_stained_glass_pane_from_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall.json
deleted file mode 100644
index e1fa93f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_brick_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_brick_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_blackstone_stonecutting.json
deleted file mode 100644
index 5d31d82..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_brick_wall_from_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_brick_wall_from_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting.json
deleted file mode 100644
index 13e2298..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_stonecutting.json
deleted file mode 100644
index 04ae817..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_brick_wall_from_polished_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_brick_wall_from_polished_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall.json
deleted file mode 100644
index 739c693..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall_from_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall_from_blackstone_stonecutting.json
deleted file mode 100644
index 82b745e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall_from_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_wall_from_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_wall_from_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall_from_polished_blackstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall_from_polished_blackstone_stonecutting.json
deleted file mode 100644
index 530da8d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall_from_polished_blackstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_wall_from_polished_blackstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_wall_from_polished_blackstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall.json
deleted file mode 100644
index a58bfda..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_deepslate_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_deepslate_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_cobbled_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_cobbled_deepslate_stonecutting.json
deleted file mode 100644
index 71e7251..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_cobbled_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobbled_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobbled_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobbled_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_polished_deepslate_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_polished_deepslate_stonecutting.json
deleted file mode 100644
index b629985..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_polished_deepslate_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_deepslate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_deepslate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_deepslate"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_tuff_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_tuff_wall.json
deleted file mode 100644
index 401bcf2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_tuff_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_tuff_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_tuff_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_tuff_wall_from_polished_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_tuff_wall_from_polished_tuff_stonecutting.json
deleted file mode 100644
index 5181c79..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_tuff_wall_from_polished_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_tuff_wall_from_polished_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_tuff_wall_from_polished_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_tuff_wall_from_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_tuff_wall_from_tuff_stonecutting.json
deleted file mode 100644
index 98f9815..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/polished_tuff_wall_from_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_tuff_wall_from_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_tuff_wall_from_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/prismarine_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/prismarine_wall.json
deleted file mode 100644
index fbe3921..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/prismarine_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_prismarine": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:prismarine"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:prismarine_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_prismarine"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:prismarine_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/prismarine_wall_from_prismarine_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/prismarine_wall_from_prismarine_stonecutting.json
deleted file mode 100644
index 3d07629..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/prismarine_wall_from_prismarine_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_prismarine": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:prismarine"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:prismarine_wall_from_prismarine_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_prismarine"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:prismarine_wall_from_prismarine_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_banner.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_banner.json
deleted file mode 100644
index 7ae53c0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_banner.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_purple_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:purple_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:purple_banner"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_purple_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:purple_banner"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_bed.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_bed.json
deleted file mode 100644
index 6386d4c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_purple_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:purple_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:purple_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_purple_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:purple_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_candle.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_candle.json
deleted file mode 100644
index 3f4d76d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_candle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_purple_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:purple_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:purple_candle"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_purple_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:purple_candle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_carpet.json
deleted file mode 100644
index 5275850..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_purple_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:purple_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:purple_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_purple_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:purple_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_glazed_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_glazed_terracotta.json
deleted file mode 100644
index 01c9ed2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_glazed_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_purple_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:purple_terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:purple_glazed_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_purple_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:purple_glazed_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_stained_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_stained_glass_pane.json
deleted file mode 100644
index bb77983..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_stained_glass_pane.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:purple_stained_glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:purple_stained_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:purple_stained_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_stained_glass_pane_from_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_stained_glass_pane_from_glass_pane.json
deleted file mode 100644
index 7e0bf03..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/purple_stained_glass_pane_from_glass_pane.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass_pane": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass_pane"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_purple_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:purple_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:purple_stained_glass_pane_from_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass_pane",
- "has_purple_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:purple_stained_glass_pane_from_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_banner.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/red_banner.json
deleted file mode 100644
index 77b5d97..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_banner.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_banner"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_banner"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_bed.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/red_bed.json
deleted file mode 100644
index 7e5754f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_candle.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/red_candle.json
deleted file mode 100644
index 63bf3d6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_candle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_candle"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_candle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/red_carpet.json
deleted file mode 100644
index 88d6459..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_glazed_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/red_glazed_terracotta.json
deleted file mode 100644
index 989a450..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_glazed_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_glazed_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_glazed_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_nether_brick_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/red_nether_brick_wall.json
deleted file mode 100644
index c82f406..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_nether_brick_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_nether_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_nether_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_nether_brick_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_nether_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_nether_brick_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_nether_brick_wall_from_red_nether_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/red_nether_brick_wall_from_red_nether_bricks_stonecutting.json
deleted file mode 100644
index 5a21584..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_nether_brick_wall_from_red_nether_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_nether_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_nether_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_nether_brick_wall_from_red_nether_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_nether_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_nether_brick_wall_from_red_nether_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_sandstone_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/red_sandstone_wall.json
deleted file mode 100644
index 40242a4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_sandstone_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_sandstone_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_sandstone_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_sandstone_wall_from_red_sandstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/red_sandstone_wall_from_red_sandstone_stonecutting.json
deleted file mode 100644
index f974873..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_sandstone_wall_from_red_sandstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_sandstone_wall_from_red_sandstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_sandstone_wall_from_red_sandstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_stained_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/red_stained_glass_pane.json
deleted file mode 100644
index 86e58b9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_stained_glass_pane.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_stained_glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_stained_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_stained_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_stained_glass_pane_from_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/red_stained_glass_pane_from_glass_pane.json
deleted file mode 100644
index 94cb1ae..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/red_stained_glass_pane_from_glass_pane.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass_pane": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass_pane"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_red_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_stained_glass_pane_from_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass_pane",
- "has_red_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_stained_glass_pane_from_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/respawn_anchor.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/respawn_anchor.json
deleted file mode 100644
index ca1ad36..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/respawn_anchor.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_obsidian": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:crying_obsidian"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:respawn_anchor"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_obsidian"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:respawn_anchor"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/sandstone_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/sandstone_wall.json
deleted file mode 100644
index 25e00a1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/sandstone_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:sandstone_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:sandstone_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/sandstone_wall_from_sandstone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/sandstone_wall_from_sandstone_stonecutting.json
deleted file mode 100644
index fa17793..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/sandstone_wall_from_sandstone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_sandstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sandstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:sandstone_wall_from_sandstone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sandstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:sandstone_wall_from_sandstone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/scaffolding.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/scaffolding.json
deleted file mode 100644
index fc54ea8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/scaffolding.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bamboo": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bamboo"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:scaffolding"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_bamboo"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:scaffolding"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/shulker_box.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/shulker_box.json
deleted file mode 100644
index 0531584..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/shulker_box.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_shulker_shell": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:shulker_shell"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:shulker_box"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_shulker_shell"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:shulker_box"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/smithing_table.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/smithing_table.json
deleted file mode 100644
index bfc7a13..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/smithing_table.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smithing_table"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smithing_table"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/smoker.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/smoker.json
deleted file mode 100644
index 5a47eb4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/smoker.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_furnace": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:furnace"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:smoker"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_furnace"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:smoker"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/snow.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/snow.json
deleted file mode 100644
index 4d987ac..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/snow.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_snowball": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:snowball"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:snow"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_snowball"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:snow"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/soul_campfire.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/soul_campfire.json
deleted file mode 100644
index b96e10f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/soul_campfire.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_soul_sand": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:soul_fire_base_blocks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:soul_campfire"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_soul_sand"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:soul_campfire"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/soul_lantern.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/soul_lantern.json
deleted file mode 100644
index d9cbfea..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/soul_lantern.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_soul_torch": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:soul_torch"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:soul_lantern"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_soul_torch"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:soul_lantern"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/soul_torch.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/soul_torch.json
deleted file mode 100644
index cb9bdd3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/soul_torch.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_soul_sand": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:soul_fire_base_blocks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:soul_torch"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_soul_sand"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:soul_torch"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/spruce_fence.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/spruce_fence.json
deleted file mode 100644
index 235f761..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/spruce_fence.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:spruce_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:spruce_fence"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:spruce_fence"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/spruce_hanging_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/spruce_hanging_sign.json
deleted file mode 100644
index 7d476d1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/spruce_hanging_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stripped_logs": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_spruce_log"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:spruce_hanging_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stripped_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:spruce_hanging_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/spruce_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/spruce_sign.json
deleted file mode 100644
index 8087b5b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/spruce_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:spruce_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:spruce_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:spruce_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/stone_brick_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/stone_brick_wall.json
deleted file mode 100644
index b02a902..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/stone_brick_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_brick_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_brick_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/stone_brick_wall_from_stone_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/stone_brick_wall_from_stone_bricks_stonecutting.json
deleted file mode 100644
index dd56594..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/stone_brick_wall_from_stone_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_brick_wall_from_stone_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_brick_wall_from_stone_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/stone_brick_walls_from_stone_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/stone_brick_walls_from_stone_stonecutting.json
deleted file mode 100644
index 28b7e9e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/stone_brick_walls_from_stone_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_brick_walls_from_stone_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_brick_walls_from_stone_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/stonecutter.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/stonecutter.json
deleted file mode 100644
index 9965629..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/stonecutter.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stonecutter"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stonecutter"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/torch.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/torch.json
deleted file mode 100644
index 2c86ba8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/torch.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone_pickaxe": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone_pickaxe"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:torch"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone_pickaxe"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:torch"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/tuff_brick_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/tuff_brick_wall.json
deleted file mode 100644
index d42903e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/tuff_brick_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_brick_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_brick_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_polished_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_polished_tuff_stonecutting.json
deleted file mode 100644
index 1c9055b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_polished_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_brick_wall_from_polished_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_brick_wall_from_polished_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_tuff_bricks_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_tuff_bricks_stonecutting.json
deleted file mode 100644
index 6b311d7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_tuff_bricks_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_brick_wall_from_tuff_bricks_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff_bricks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff_bricks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff_bricks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_brick_wall_from_tuff_bricks_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_tuff_stonecutting.json
deleted file mode 100644
index f536999..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_brick_wall_from_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_brick_wall_from_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/tuff_wall.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/tuff_wall.json
deleted file mode 100644
index a9456cf..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/tuff_wall.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_wall"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_wall"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/tuff_wall_from_tuff_stonecutting.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/tuff_wall_from_tuff_stonecutting.json
deleted file mode 100644
index 6a83e7a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/tuff_wall_from_tuff_stonecutting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tuff_wall_from_tuff_stonecutting"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tuff": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tuff"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tuff"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tuff_wall_from_tuff_stonecutting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/warped_fence.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/warped_fence.json
deleted file mode 100644
index d021617..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/warped_fence.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:warped_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:warped_fence"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:warped_fence"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/warped_hanging_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/warped_hanging_sign.json
deleted file mode 100644
index c0257e3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/warped_hanging_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stripped_logs": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stripped_warped_stem"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:warped_hanging_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stripped_logs"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:warped_hanging_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/warped_sign.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/warped_sign.json
deleted file mode 100644
index 6d4cc76..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/warped_sign.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:warped_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:warped_sign"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:warped_sign"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/white_banner.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/white_banner.json
deleted file mode 100644
index b6c95cd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/white_banner.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:white_banner"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_white_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:white_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_white_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:white_banner"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/white_bed.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/white_bed.json
deleted file mode 100644
index 85620b1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/white_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:white_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_white_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:white_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_white_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:white_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/white_candle.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/white_candle.json
deleted file mode 100644
index 0ce919a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/white_candle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:white_candle"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_white_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:white_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_white_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:white_candle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/white_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/white_carpet.json
deleted file mode 100644
index 58c14de..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/white_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:white_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_white_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:white_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_white_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:white_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/white_glazed_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/white_glazed_terracotta.json
deleted file mode 100644
index a1fa24d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/white_glazed_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:white_glazed_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_white_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:white_terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_white_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:white_glazed_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/white_stained_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/white_stained_glass_pane.json
deleted file mode 100644
index 6054582..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/white_stained_glass_pane.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:white_stained_glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:white_stained_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:white_stained_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/white_stained_glass_pane_from_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/white_stained_glass_pane_from_glass_pane.json
deleted file mode 100644
index 8dafc5c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/white_stained_glass_pane_from_glass_pane.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass_pane": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass_pane"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:white_stained_glass_pane_from_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_white_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:white_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass_pane",
- "has_white_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:white_stained_glass_pane_from_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_banner.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_banner.json
deleted file mode 100644
index b328082..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_banner.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:yellow_banner"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_yellow_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:yellow_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_yellow_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:yellow_banner"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_bed.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_bed.json
deleted file mode 100644
index 00de75d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_bed.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:yellow_bed"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_yellow_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:yellow_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_yellow_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:yellow_bed"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_candle.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_candle.json
deleted file mode 100644
index 7512375..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_candle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:yellow_candle"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_yellow_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:yellow_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_yellow_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:yellow_candle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_carpet.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_carpet.json
deleted file mode 100644
index aa60ede..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_carpet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:yellow_carpet"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_yellow_wool": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:yellow_wool"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_yellow_wool"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:yellow_carpet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_glazed_terracotta.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_glazed_terracotta.json
deleted file mode 100644
index b1a4dca..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_glazed_terracotta.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:yellow_glazed_terracotta"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_yellow_terracotta": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:yellow_terracotta"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_yellow_terracotta"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:yellow_glazed_terracotta"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_stained_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_stained_glass_pane.json
deleted file mode 100644
index 3fb7b04..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_stained_glass_pane.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:yellow_stained_glass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:yellow_stained_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:yellow_stained_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_stained_glass_pane_from_glass_pane.json b/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_stained_glass_pane_from_glass_pane.json
deleted file mode 100644
index 76a2347..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/decorations/yellow_stained_glass_pane_from_glass_pane.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glass_pane": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glass_pane"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:yellow_stained_glass_pane_from_glass_pane"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_yellow_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:yellow_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glass_pane",
- "has_yellow_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:yellow_stained_glass_pane_from_glass_pane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/baked_potato.json b/src/main/resources/data/minecraft/advancement/recipes/food/baked_potato.json
deleted file mode 100644
index 7f2a44f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/baked_potato.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_potato": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:potato"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:baked_potato"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_potato"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:baked_potato"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/baked_potato_from_campfire_cooking.json b/src/main/resources/data/minecraft/advancement/recipes/food/baked_potato_from_campfire_cooking.json
deleted file mode 100644
index fd3565b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/baked_potato_from_campfire_cooking.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_potato": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:potato"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:baked_potato_from_campfire_cooking"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_potato"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:baked_potato_from_campfire_cooking"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/baked_potato_from_smoking.json b/src/main/resources/data/minecraft/advancement/recipes/food/baked_potato_from_smoking.json
deleted file mode 100644
index 73843d5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/baked_potato_from_smoking.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_potato": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:potato"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:baked_potato_from_smoking"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_potato"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:baked_potato_from_smoking"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/beetroot_soup.json b/src/main/resources/data/minecraft/advancement/recipes/food/beetroot_soup.json
deleted file mode 100644
index e04cda7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/beetroot_soup.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_beetroot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:beetroot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:beetroot_soup"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_beetroot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:beetroot_soup"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/bread.json b/src/main/resources/data/minecraft/advancement/recipes/food/bread.json
deleted file mode 100644
index b092f4e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/bread.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bread"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_wheat": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:wheat"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_wheat"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bread"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cake.json b/src/main/resources/data/minecraft/advancement/recipes/food/cake.json
deleted file mode 100644
index 1eaf924..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cake.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_egg": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:egg"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cake"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_egg"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cake"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_beef.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_beef.json
deleted file mode 100644
index 81d289a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_beef.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_beef": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:beef"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_beef"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_beef"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_beef"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_beef_from_campfire_cooking.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_beef_from_campfire_cooking.json
deleted file mode 100644
index 0fac9bb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_beef_from_campfire_cooking.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_beef": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:beef"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_beef_from_campfire_cooking"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_beef"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_beef_from_campfire_cooking"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_beef_from_smoking.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_beef_from_smoking.json
deleted file mode 100644
index d8dc3f1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_beef_from_smoking.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_beef": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:beef"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_beef_from_smoking"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_beef"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_beef_from_smoking"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_chicken.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_chicken.json
deleted file mode 100644
index 4174832..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_chicken.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_chicken": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chicken"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_chicken"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_chicken"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_chicken"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_chicken_from_campfire_cooking.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_chicken_from_campfire_cooking.json
deleted file mode 100644
index d2e1eb2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_chicken_from_campfire_cooking.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_chicken": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chicken"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_chicken_from_campfire_cooking"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_chicken"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_chicken_from_campfire_cooking"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_chicken_from_smoking.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_chicken_from_smoking.json
deleted file mode 100644
index 4d13c86..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_chicken_from_smoking.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_chicken": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chicken"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_chicken_from_smoking"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_chicken"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_chicken_from_smoking"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_cod.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_cod.json
deleted file mode 100644
index 7e51363..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_cod.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cod": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cod"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_cod"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cod"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_cod"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_cod_from_campfire_cooking.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_cod_from_campfire_cooking.json
deleted file mode 100644
index d50367b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_cod_from_campfire_cooking.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cod": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cod"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_cod_from_campfire_cooking"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cod"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_cod_from_campfire_cooking"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_cod_from_smoking.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_cod_from_smoking.json
deleted file mode 100644
index e27bd2f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_cod_from_smoking.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cod": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cod"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_cod_from_smoking"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cod"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_cod_from_smoking"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_mutton.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_mutton.json
deleted file mode 100644
index f49a02a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_mutton.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mutton": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mutton"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_mutton"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mutton"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_mutton"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_mutton_from_campfire_cooking.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_mutton_from_campfire_cooking.json
deleted file mode 100644
index da7a4a4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_mutton_from_campfire_cooking.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mutton": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mutton"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_mutton_from_campfire_cooking"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mutton"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_mutton_from_campfire_cooking"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_mutton_from_smoking.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_mutton_from_smoking.json
deleted file mode 100644
index 9f3ed83..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_mutton_from_smoking.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_mutton": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mutton"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_mutton_from_smoking"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mutton"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_mutton_from_smoking"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_porkchop.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_porkchop.json
deleted file mode 100644
index 3dbb5d6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_porkchop.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_porkchop": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:porkchop"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_porkchop"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_porkchop"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_porkchop"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_porkchop_from_campfire_cooking.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_porkchop_from_campfire_cooking.json
deleted file mode 100644
index 7e42247..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_porkchop_from_campfire_cooking.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_porkchop": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:porkchop"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_porkchop_from_campfire_cooking"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_porkchop"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_porkchop_from_campfire_cooking"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_porkchop_from_smoking.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_porkchop_from_smoking.json
deleted file mode 100644
index 8c3d33b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_porkchop_from_smoking.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_porkchop": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:porkchop"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_porkchop_from_smoking"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_porkchop"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_porkchop_from_smoking"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_rabbit.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_rabbit.json
deleted file mode 100644
index df3b574..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_rabbit.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_rabbit": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:rabbit"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_rabbit"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_rabbit"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_rabbit"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_rabbit_from_campfire_cooking.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_rabbit_from_campfire_cooking.json
deleted file mode 100644
index 7faa256..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_rabbit_from_campfire_cooking.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_rabbit": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:rabbit"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_rabbit_from_campfire_cooking"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_rabbit"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_rabbit_from_campfire_cooking"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_rabbit_from_smoking.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_rabbit_from_smoking.json
deleted file mode 100644
index 46489a8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_rabbit_from_smoking.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_rabbit": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:rabbit"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_rabbit_from_smoking"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_rabbit"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_rabbit_from_smoking"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_salmon.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_salmon.json
deleted file mode 100644
index f0eb80a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_salmon.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_salmon": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:salmon"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_salmon"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_salmon"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_salmon"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_salmon_from_campfire_cooking.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_salmon_from_campfire_cooking.json
deleted file mode 100644
index 0cc70d9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_salmon_from_campfire_cooking.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_salmon": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:salmon"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_salmon_from_campfire_cooking"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_salmon"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_salmon_from_campfire_cooking"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_salmon_from_smoking.json b/src/main/resources/data/minecraft/advancement/recipes/food/cooked_salmon_from_smoking.json
deleted file mode 100644
index 0fa1809..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cooked_salmon_from_smoking.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_salmon": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:salmon"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cooked_salmon_from_smoking"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_salmon"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cooked_salmon_from_smoking"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/cookie.json b/src/main/resources/data/minecraft/advancement/recipes/food/cookie.json
deleted file mode 100644
index d225100..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/cookie.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cocoa": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cocoa_beans"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cookie"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cocoa"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cookie"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/dried_kelp.json b/src/main/resources/data/minecraft/advancement/recipes/food/dried_kelp.json
deleted file mode 100644
index e229120..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/dried_kelp.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_dried_kelp_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dried_kelp_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dried_kelp"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_dried_kelp_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dried_kelp"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/dried_kelp_from_campfire_cooking.json b/src/main/resources/data/minecraft/advancement/recipes/food/dried_kelp_from_campfire_cooking.json
deleted file mode 100644
index 3ad3fd8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/dried_kelp_from_campfire_cooking.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_kelp": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:kelp"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dried_kelp_from_campfire_cooking"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_kelp"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dried_kelp_from_campfire_cooking"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/dried_kelp_from_smelting.json b/src/main/resources/data/minecraft/advancement/recipes/food/dried_kelp_from_smelting.json
deleted file mode 100644
index 82bdc4f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/dried_kelp_from_smelting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_kelp": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:kelp"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dried_kelp_from_smelting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_kelp"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dried_kelp_from_smelting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/dried_kelp_from_smoking.json b/src/main/resources/data/minecraft/advancement/recipes/food/dried_kelp_from_smoking.json
deleted file mode 100644
index 146078a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/dried_kelp_from_smoking.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_kelp": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:kelp"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dried_kelp_from_smoking"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_kelp"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dried_kelp_from_smoking"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/golden_apple.json b/src/main/resources/data/minecraft/advancement/recipes/food/golden_apple.json
deleted file mode 100644
index 69a539d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/golden_apple.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gold_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gold_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:golden_apple"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gold_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:golden_apple"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/honey_bottle.json b/src/main/resources/data/minecraft/advancement/recipes/food/honey_bottle.json
deleted file mode 100644
index 5393059..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/honey_bottle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_honey_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:honey_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:honey_bottle"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_honey_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:honey_bottle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/mushroom_stew.json b/src/main/resources/data/minecraft/advancement/recipes/food/mushroom_stew.json
deleted file mode 100644
index 976a5fc..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/mushroom_stew.json
+++ /dev/null
@@ -1,65 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bowl": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bowl"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_brown_mushroom": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:brown_mushroom"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_mushroom_stew": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mushroom_stew"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_red_mushroom": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_mushroom"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mushroom_stew"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_mushroom_stew",
- "has_bowl",
- "has_brown_mushroom",
- "has_red_mushroom"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mushroom_stew"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/pumpkin_pie.json b/src/main/resources/data/minecraft/advancement/recipes/food/pumpkin_pie.json
deleted file mode 100644
index 9819648..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/pumpkin_pie.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_carved_pumpkin": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:carved_pumpkin"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_pumpkin": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:pumpkin"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:pumpkin_pie"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_carved_pumpkin",
- "has_pumpkin"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:pumpkin_pie"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/rabbit_stew_from_brown_mushroom.json b/src/main/resources/data/minecraft/advancement/recipes/food/rabbit_stew_from_brown_mushroom.json
deleted file mode 100644
index c9e2eaf..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/rabbit_stew_from_brown_mushroom.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cooked_rabbit": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cooked_rabbit"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:rabbit_stew_from_brown_mushroom"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cooked_rabbit"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:rabbit_stew_from_brown_mushroom"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/food/rabbit_stew_from_red_mushroom.json b/src/main/resources/data/minecraft/advancement/recipes/food/rabbit_stew_from_red_mushroom.json
deleted file mode 100644
index bec5196..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/food/rabbit_stew_from_red_mushroom.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cooked_rabbit": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cooked_rabbit"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:rabbit_stew_from_red_mushroom"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cooked_rabbit"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:rabbit_stew_from_red_mushroom"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/beacon.json b/src/main/resources/data/minecraft/advancement/recipes/misc/beacon.json
deleted file mode 100644
index b14a349..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/beacon.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nether_star": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nether_star"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:beacon"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nether_star"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:beacon"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/black_dye.json b/src/main/resources/data/minecraft/advancement/recipes/misc/black_dye.json
deleted file mode 100644
index d06cfdb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/black_dye.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_ink_sac": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:ink_sac"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:black_dye"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_ink_sac"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:black_dye"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/black_dye_from_wither_rose.json b/src/main/resources/data/minecraft/advancement/recipes/misc/black_dye_from_wither_rose.json
deleted file mode 100644
index 2dfe2bb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/black_dye_from_wither_rose.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:black_dye_from_wither_rose"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_wither_rose": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:wither_rose"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_wither_rose"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:black_dye_from_wither_rose"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/blue_dye.json b/src/main/resources/data/minecraft/advancement/recipes/misc/blue_dye.json
deleted file mode 100644
index e8af8c7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/blue_dye.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_lapis_lazuli": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:lapis_lazuli"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blue_dye"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_lapis_lazuli"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blue_dye"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/blue_dye_from_cornflower.json b/src/main/resources/data/minecraft/advancement/recipes/misc/blue_dye_from_cornflower.json
deleted file mode 100644
index d57f392..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/blue_dye_from_cornflower.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cornflower": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cornflower"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:blue_dye_from_cornflower"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cornflower"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:blue_dye_from_cornflower"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/bolt_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/bolt_armor_trim_smithing_template.json
deleted file mode 100644
index d98a282..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/bolt_armor_trim_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bolt_armor_trim_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bolt_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bolt_armor_trim_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_bolt_armor_trim_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bolt_armor_trim_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/bolt_armor_trim_smithing_template_smithing_trim.json b/src/main/resources/data/minecraft/advancement/recipes/misc/bolt_armor_trim_smithing_template_smithing_trim.json
deleted file mode 100644
index d33371a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/bolt_armor_trim_smithing_template_smithing_trim.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smithing_trim_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bolt_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bolt_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smithing_trim_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bolt_armor_trim_smithing_template_smithing_trim"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/bone_meal.json b/src/main/resources/data/minecraft/advancement/recipes/misc/bone_meal.json
deleted file mode 100644
index ca49228..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/bone_meal.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bone_meal"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_bone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bone_meal"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/bone_meal_from_bone_block.json b/src/main/resources/data/minecraft/advancement/recipes/misc/bone_meal_from_bone_block.json
deleted file mode 100644
index 557e21e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/bone_meal_from_bone_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bone_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bone_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bone_meal_from_bone_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_bone_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bone_meal_from_bone_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/book.json b/src/main/resources/data/minecraft/advancement/recipes/misc/book.json
deleted file mode 100644
index 1495fbd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/book.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_paper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:paper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:book"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_paper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:book"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/bowl.json b/src/main/resources/data/minecraft/advancement/recipes/misc/bowl.json
deleted file mode 100644
index 0c6dad6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/bowl.json
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_brown_mushroom": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:brown_mushroom"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_mushroom_stew": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mushroom_stew"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_red_mushroom": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_mushroom"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bowl"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_brown_mushroom",
- "has_red_mushroom",
- "has_mushroom_stew"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bowl"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/brick.json b/src/main/resources/data/minecraft/advancement/recipes/misc/brick.json
deleted file mode 100644
index ca618ad..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/brick.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_clay_ball": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:clay_ball"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brick"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_clay_ball"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brick"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/brown_dye.json b/src/main/resources/data/minecraft/advancement/recipes/misc/brown_dye.json
deleted file mode 100644
index 2e28670..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/brown_dye.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cocoa_beans": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cocoa_beans"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brown_dye"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cocoa_beans"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brown_dye"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/bucket.json b/src/main/resources/data/minecraft/advancement/recipes/misc/bucket.json
deleted file mode 100644
index 4c60b01..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/bucket.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bucket"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bucket"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/charcoal.json b/src/main/resources/data/minecraft/advancement/recipes/misc/charcoal.json
deleted file mode 100644
index 0b8ef61..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/charcoal.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_log": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:logs_that_burn"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:charcoal"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_log"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:charcoal"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/coal.json b/src/main/resources/data/minecraft/advancement/recipes/misc/coal.json
deleted file mode 100644
index 3c91cfb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/coal.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_coal_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:coal_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:coal"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_coal_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:coal"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/coal_from_blasting_coal_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/coal_from_blasting_coal_ore.json
deleted file mode 100644
index cdef977..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/coal_from_blasting_coal_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_coal_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:coal_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:coal_from_blasting_coal_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_coal_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:coal_from_blasting_coal_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/coal_from_blasting_deepslate_coal_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/coal_from_blasting_deepslate_coal_ore.json
deleted file mode 100644
index c1986a9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/coal_from_blasting_deepslate_coal_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_coal_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_coal_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:coal_from_blasting_deepslate_coal_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_coal_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:coal_from_blasting_deepslate_coal_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/coal_from_smelting_coal_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/coal_from_smelting_coal_ore.json
deleted file mode 100644
index 989271b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/coal_from_smelting_coal_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_coal_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:coal_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:coal_from_smelting_coal_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_coal_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:coal_from_smelting_coal_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/coal_from_smelting_deepslate_coal_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/coal_from_smelting_deepslate_coal_ore.json
deleted file mode 100644
index e1b9837..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/coal_from_smelting_deepslate_coal_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_coal_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_coal_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:coal_from_smelting_deepslate_coal_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_coal_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:coal_from_smelting_deepslate_coal_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/coast_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/coast_armor_trim_smithing_template.json
deleted file mode 100644
index 96dfc37..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/coast_armor_trim_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_coast_armor_trim_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:coast_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:coast_armor_trim_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_coast_armor_trim_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:coast_armor_trim_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/coast_armor_trim_smithing_template_smithing_trim.json b/src/main/resources/data/minecraft/advancement/recipes/misc/coast_armor_trim_smithing_template_smithing_trim.json
deleted file mode 100644
index 1d0c534..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/coast_armor_trim_smithing_template_smithing_trim.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smithing_trim_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:coast_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:coast_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smithing_trim_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:coast_armor_trim_smithing_template_smithing_trim"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/conduit.json b/src/main/resources/data/minecraft/advancement/recipes/misc/conduit.json
deleted file mode 100644
index b9efe8b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/conduit.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nautilus_core": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:heart_of_the_sea"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_nautilus_shell": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nautilus_shell"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:conduit"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nautilus_core",
- "has_nautilus_shell"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:conduit"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot.json b/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot.json
deleted file mode 100644
index 2e8f411..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:copper_ingot"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:copper_ingot"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_copper_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_copper_ore.json
deleted file mode 100644
index 37c06ad..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_copper_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:copper_ingot_from_blasting_copper_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:copper_ingot_from_blasting_copper_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_deepslate_copper_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_deepslate_copper_ore.json
deleted file mode 100644
index ac09de7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_deepslate_copper_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_copper_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_copper_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:copper_ingot_from_blasting_deepslate_copper_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_copper_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:copper_ingot_from_blasting_deepslate_copper_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_raw_copper.json b/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_raw_copper.json
deleted file mode 100644
index 0b7081c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_raw_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_raw_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:raw_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:copper_ingot_from_blasting_raw_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_raw_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:copper_ingot_from_blasting_raw_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_copper_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_copper_ore.json
deleted file mode 100644
index 4a5b2d5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_copper_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:copper_ingot_from_smelting_copper_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:copper_ingot_from_smelting_copper_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_deepslate_copper_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_deepslate_copper_ore.json
deleted file mode 100644
index f43f7ad..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_deepslate_copper_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_copper_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_copper_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:copper_ingot_from_smelting_deepslate_copper_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_copper_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:copper_ingot_from_smelting_deepslate_copper_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_raw_copper.json b/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_raw_copper.json
deleted file mode 100644
index caf783c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_raw_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_raw_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:raw_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:copper_ingot_from_smelting_raw_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_raw_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:copper_ingot_from_smelting_raw_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_waxed_copper_block.json b/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_waxed_copper_block.json
deleted file mode 100644
index 6779c8f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/copper_ingot_from_waxed_copper_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:copper_ingot_from_waxed_copper_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:copper_ingot_from_waxed_copper_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/creeper_banner_pattern.json b/src/main/resources/data/minecraft/advancement/recipes/misc/creeper_banner_pattern.json
deleted file mode 100644
index 324e408..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/creeper_banner_pattern.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_creeper_head": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:creeper_head"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:creeper_banner_pattern"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_creeper_head"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:creeper_banner_pattern"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/cyan_dye.json b/src/main/resources/data/minecraft/advancement/recipes/misc/cyan_dye.json
deleted file mode 100644
index 6c4f40c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/cyan_dye.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blue_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blue_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_green_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:green_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cyan_dye"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_green_dye",
- "has_blue_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cyan_dye"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/cyan_dye_from_pitcher_plant.json b/src/main/resources/data/minecraft/advancement/recipes/misc/cyan_dye_from_pitcher_plant.json
deleted file mode 100644
index 116d15d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/cyan_dye_from_pitcher_plant.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_pitcher_plant": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:pitcher_plant"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cyan_dye_from_pitcher_plant"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_pitcher_plant"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cyan_dye_from_pitcher_plant"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/diamond.json b/src/main/resources/data/minecraft/advancement/recipes/misc/diamond.json
deleted file mode 100644
index e6fed72..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/diamond.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diamond_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diamond"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diamond_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diamond"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/diamond_from_blasting_deepslate_diamond_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/diamond_from_blasting_deepslate_diamond_ore.json
deleted file mode 100644
index 65f3bb4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/diamond_from_blasting_deepslate_diamond_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_diamond_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_diamond_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diamond_from_blasting_deepslate_diamond_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_diamond_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diamond_from_blasting_deepslate_diamond_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/diamond_from_blasting_diamond_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/diamond_from_blasting_diamond_ore.json
deleted file mode 100644
index 61e4459..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/diamond_from_blasting_diamond_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diamond_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diamond_from_blasting_diamond_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diamond_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diamond_from_blasting_diamond_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/diamond_from_smelting_deepslate_diamond_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/diamond_from_smelting_deepslate_diamond_ore.json
deleted file mode 100644
index ebeb39b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/diamond_from_smelting_deepslate_diamond_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_diamond_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_diamond_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diamond_from_smelting_deepslate_diamond_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_diamond_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diamond_from_smelting_deepslate_diamond_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/diamond_from_smelting_diamond_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/diamond_from_smelting_diamond_ore.json
deleted file mode 100644
index 2b1afe8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/diamond_from_smelting_diamond_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diamond_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diamond_from_smelting_diamond_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diamond_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diamond_from_smelting_diamond_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/dune_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/dune_armor_trim_smithing_template.json
deleted file mode 100644
index e696da7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/dune_armor_trim_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_dune_armor_trim_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dune_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dune_armor_trim_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_dune_armor_trim_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dune_armor_trim_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/dune_armor_trim_smithing_template_smithing_trim.json b/src/main/resources/data/minecraft/advancement/recipes/misc/dune_armor_trim_smithing_template_smithing_trim.json
deleted file mode 100644
index 297a882..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/dune_armor_trim_smithing_template_smithing_trim.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smithing_trim_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dune_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dune_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smithing_trim_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dune_armor_trim_smithing_template_smithing_trim"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/emerald.json b/src/main/resources/data/minecraft/advancement/recipes/misc/emerald.json
deleted file mode 100644
index 2cd28b7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/emerald.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_emerald_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:emerald_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:emerald"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_emerald_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:emerald"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/emerald_from_blasting_deepslate_emerald_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/emerald_from_blasting_deepslate_emerald_ore.json
deleted file mode 100644
index d7774a7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/emerald_from_blasting_deepslate_emerald_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_emerald_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_emerald_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:emerald_from_blasting_deepslate_emerald_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_emerald_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:emerald_from_blasting_deepslate_emerald_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/emerald_from_blasting_emerald_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/emerald_from_blasting_emerald_ore.json
deleted file mode 100644
index 0876a9e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/emerald_from_blasting_emerald_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_emerald_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:emerald_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:emerald_from_blasting_emerald_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_emerald_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:emerald_from_blasting_emerald_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/emerald_from_smelting_deepslate_emerald_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/emerald_from_smelting_deepslate_emerald_ore.json
deleted file mode 100644
index 2ca8e2f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/emerald_from_smelting_deepslate_emerald_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_emerald_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_emerald_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:emerald_from_smelting_deepslate_emerald_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_emerald_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:emerald_from_smelting_deepslate_emerald_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/emerald_from_smelting_emerald_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/emerald_from_smelting_emerald_ore.json
deleted file mode 100644
index a7e2e78..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/emerald_from_smelting_emerald_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_emerald_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:emerald_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:emerald_from_smelting_emerald_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_emerald_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:emerald_from_smelting_emerald_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/ender_eye.json b/src/main/resources/data/minecraft/advancement/recipes/misc/ender_eye.json
deleted file mode 100644
index 796e594..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/ender_eye.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blaze_powder": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blaze_powder"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:ender_eye"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blaze_powder"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:ender_eye"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/eye_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/eye_armor_trim_smithing_template.json
deleted file mode 100644
index 80ecd63..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/eye_armor_trim_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_eye_armor_trim_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:eye_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:eye_armor_trim_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_eye_armor_trim_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:eye_armor_trim_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/eye_armor_trim_smithing_template_smithing_trim.json b/src/main/resources/data/minecraft/advancement/recipes/misc/eye_armor_trim_smithing_template_smithing_trim.json
deleted file mode 100644
index 9a9412b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/eye_armor_trim_smithing_template_smithing_trim.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smithing_trim_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:eye_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:eye_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smithing_trim_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:eye_armor_trim_smithing_template_smithing_trim"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/fire_charge.json b/src/main/resources/data/minecraft/advancement/recipes/misc/fire_charge.json
deleted file mode 100644
index 8104ff1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/fire_charge.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blaze_powder": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blaze_powder"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:fire_charge"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blaze_powder"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:fire_charge"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/firework_rocket_simple.json b/src/main/resources/data/minecraft/advancement/recipes/misc/firework_rocket_simple.json
deleted file mode 100644
index 6a35e5c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/firework_rocket_simple.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gunpowder": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gunpowder"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:firework_rocket_simple"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gunpowder"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:firework_rocket_simple"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/flow_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/flow_armor_trim_smithing_template.json
deleted file mode 100644
index e664884..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/flow_armor_trim_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_flow_armor_trim_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:flow_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:flow_armor_trim_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_flow_armor_trim_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:flow_armor_trim_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/flow_armor_trim_smithing_template_smithing_trim.json b/src/main/resources/data/minecraft/advancement/recipes/misc/flow_armor_trim_smithing_template_smithing_trim.json
deleted file mode 100644
index de75086..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/flow_armor_trim_smithing_template_smithing_trim.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smithing_trim_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:flow_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:flow_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smithing_trim_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:flow_armor_trim_smithing_template_smithing_trim"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/flower_banner_pattern.json b/src/main/resources/data/minecraft/advancement/recipes/misc/flower_banner_pattern.json
deleted file mode 100644
index 43678b8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/flower_banner_pattern.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxeye_daisy": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxeye_daisy"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:flower_banner_pattern"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxeye_daisy"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:flower_banner_pattern"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_deepslate_gold_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_deepslate_gold_ore.json
deleted file mode 100644
index 5f1ac8a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_deepslate_gold_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_gold_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_gold_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gold_ingot_from_blasting_deepslate_gold_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_gold_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gold_ingot_from_blasting_deepslate_gold_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_gold_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_gold_ore.json
deleted file mode 100644
index 9482a9b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_gold_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gold_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gold_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gold_ingot_from_blasting_gold_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gold_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gold_ingot_from_blasting_gold_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_nether_gold_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_nether_gold_ore.json
deleted file mode 100644
index 71a722d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_nether_gold_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nether_gold_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nether_gold_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gold_ingot_from_blasting_nether_gold_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nether_gold_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gold_ingot_from_blasting_nether_gold_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_raw_gold.json b/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_raw_gold.json
deleted file mode 100644
index a04bbd6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_raw_gold.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_raw_gold": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:raw_gold"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gold_ingot_from_blasting_raw_gold"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_raw_gold"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gold_ingot_from_blasting_raw_gold"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_gold_block.json b/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_gold_block.json
deleted file mode 100644
index 989fc72..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_gold_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gold_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gold_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gold_ingot_from_gold_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gold_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gold_ingot_from_gold_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_nuggets.json b/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_nuggets.json
deleted file mode 100644
index 849a182..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_nuggets.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gold_nugget": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gold_nugget"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gold_ingot_from_nuggets"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gold_nugget"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gold_ingot_from_nuggets"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_deepslate_gold_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_deepslate_gold_ore.json
deleted file mode 100644
index f080f27..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_deepslate_gold_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_gold_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_gold_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gold_ingot_from_smelting_deepslate_gold_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_gold_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gold_ingot_from_smelting_deepslate_gold_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_gold_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_gold_ore.json
deleted file mode 100644
index d2331d3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_gold_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gold_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gold_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gold_ingot_from_smelting_gold_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gold_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gold_ingot_from_smelting_gold_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_nether_gold_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_nether_gold_ore.json
deleted file mode 100644
index 556d16a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_nether_gold_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nether_gold_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nether_gold_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gold_ingot_from_smelting_nether_gold_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nether_gold_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gold_ingot_from_smelting_nether_gold_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_raw_gold.json b/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_raw_gold.json
deleted file mode 100644
index 18fe8e0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_raw_gold.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_raw_gold": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:raw_gold"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gold_ingot_from_smelting_raw_gold"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_raw_gold"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gold_ingot_from_smelting_raw_gold"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_nugget.json b/src/main/resources/data/minecraft/advancement/recipes/misc/gold_nugget.json
deleted file mode 100644
index 6eeaf56..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_nugget.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gold_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gold_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gold_nugget"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gold_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gold_nugget"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_nugget_from_blasting.json b/src/main/resources/data/minecraft/advancement/recipes/misc/gold_nugget_from_blasting.json
deleted file mode 100644
index df1002d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_nugget_from_blasting.json
+++ /dev/null
@@ -1,131 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_golden_axe": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_axe"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_golden_boots": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_boots"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_golden_chestplate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_chestplate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_golden_helmet": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_helmet"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_golden_hoe": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_hoe"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_golden_horse_armor": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_horse_armor"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_golden_leggings": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_leggings"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_golden_pickaxe": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_pickaxe"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_golden_shovel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_shovel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_golden_sword": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_sword"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gold_nugget_from_blasting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_golden_pickaxe",
- "has_golden_shovel",
- "has_golden_axe",
- "has_golden_hoe",
- "has_golden_sword",
- "has_golden_helmet",
- "has_golden_chestplate",
- "has_golden_leggings",
- "has_golden_boots",
- "has_golden_horse_armor"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gold_nugget_from_blasting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_nugget_from_smelting.json b/src/main/resources/data/minecraft/advancement/recipes/misc/gold_nugget_from_smelting.json
deleted file mode 100644
index 034942f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/gold_nugget_from_smelting.json
+++ /dev/null
@@ -1,131 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_golden_axe": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_axe"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_golden_boots": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_boots"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_golden_chestplate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_chestplate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_golden_helmet": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_helmet"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_golden_hoe": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_hoe"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_golden_horse_armor": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_horse_armor"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_golden_leggings": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_leggings"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_golden_pickaxe": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_pickaxe"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_golden_shovel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_shovel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_golden_sword": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:golden_sword"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gold_nugget_from_smelting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_golden_pickaxe",
- "has_golden_shovel",
- "has_golden_axe",
- "has_golden_hoe",
- "has_golden_sword",
- "has_golden_helmet",
- "has_golden_chestplate",
- "has_golden_leggings",
- "has_golden_boots",
- "has_golden_horse_armor"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gold_nugget_from_smelting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/gray_dye.json b/src/main/resources/data/minecraft/advancement/recipes/misc/gray_dye.json
deleted file mode 100644
index 55be0c2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/gray_dye.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_black_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:black_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:gray_dye"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_white_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:white_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_white_dye",
- "has_black_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:gray_dye"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/green_dye.json b/src/main/resources/data/minecraft/advancement/recipes/misc/green_dye.json
deleted file mode 100644
index aca5bc6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/green_dye.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cactus": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cactus"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:green_dye"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cactus"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:green_dye"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/host_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/host_armor_trim_smithing_template.json
deleted file mode 100644
index 94be097..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/host_armor_trim_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_host_armor_trim_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:host_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:host_armor_trim_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_host_armor_trim_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:host_armor_trim_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/host_armor_trim_smithing_template_smithing_trim.json b/src/main/resources/data/minecraft/advancement/recipes/misc/host_armor_trim_smithing_template_smithing_trim.json
deleted file mode 100644
index ab6ffc4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/host_armor_trim_smithing_template_smithing_trim.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smithing_trim_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:host_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:host_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smithing_trim_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:host_armor_trim_smithing_template_smithing_trim"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_deepslate_iron_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_deepslate_iron_ore.json
deleted file mode 100644
index ddbdc90..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_deepslate_iron_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_iron_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_iron_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_ingot_from_blasting_deepslate_iron_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_iron_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_ingot_from_blasting_deepslate_iron_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_iron_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_iron_ore.json
deleted file mode 100644
index 76bad9a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_iron_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_ingot_from_blasting_iron_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_ingot_from_blasting_iron_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_raw_iron.json b/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_raw_iron.json
deleted file mode 100644
index 1d02a7f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_raw_iron.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_raw_iron": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:raw_iron"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_ingot_from_blasting_raw_iron"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_raw_iron"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_ingot_from_blasting_raw_iron"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_iron_block.json b/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_iron_block.json
deleted file mode 100644
index 9de9119..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_iron_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_ingot_from_iron_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_ingot_from_iron_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_nuggets.json b/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_nuggets.json
deleted file mode 100644
index d344b90..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_nuggets.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_nugget": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_nugget"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_ingot_from_nuggets"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_nugget"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_ingot_from_nuggets"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_deepslate_iron_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_deepslate_iron_ore.json
deleted file mode 100644
index 3515fe9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_deepslate_iron_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_iron_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_iron_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_ingot_from_smelting_deepslate_iron_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_iron_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_ingot_from_smelting_deepslate_iron_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_iron_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_iron_ore.json
deleted file mode 100644
index 1f59473..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_iron_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_ingot_from_smelting_iron_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_ingot_from_smelting_iron_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_raw_iron.json b/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_raw_iron.json
deleted file mode 100644
index 997b86c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_raw_iron.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_raw_iron": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:raw_iron"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_ingot_from_smelting_raw_iron"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_raw_iron"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_ingot_from_smelting_raw_iron"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_nugget.json b/src/main/resources/data/minecraft/advancement/recipes/misc/iron_nugget.json
deleted file mode 100644
index b6f1d12..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_nugget.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_nugget"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_nugget"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_nugget_from_blasting.json b/src/main/resources/data/minecraft/advancement/recipes/misc/iron_nugget_from_blasting.json
deleted file mode 100644
index abd38c8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_nugget_from_blasting.json
+++ /dev/null
@@ -1,175 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_chainmail_boots": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chainmail_boots"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_chainmail_chestplate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chainmail_chestplate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_chainmail_helmet": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chainmail_helmet"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_chainmail_leggings": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chainmail_leggings"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_axe": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_axe"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_boots": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_boots"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_chestplate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_chestplate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_helmet": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_helmet"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_hoe": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_hoe"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_horse_armor": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_horse_armor"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_leggings": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_leggings"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_pickaxe": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_pickaxe"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_shovel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_shovel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_sword": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_sword"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_nugget_from_blasting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_pickaxe",
- "has_iron_shovel",
- "has_iron_axe",
- "has_iron_hoe",
- "has_iron_sword",
- "has_iron_helmet",
- "has_iron_chestplate",
- "has_iron_leggings",
- "has_iron_boots",
- "has_iron_horse_armor",
- "has_chainmail_helmet",
- "has_chainmail_chestplate",
- "has_chainmail_leggings",
- "has_chainmail_boots"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_nugget_from_blasting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_nugget_from_smelting.json b/src/main/resources/data/minecraft/advancement/recipes/misc/iron_nugget_from_smelting.json
deleted file mode 100644
index ac5733e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/iron_nugget_from_smelting.json
+++ /dev/null
@@ -1,175 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_chainmail_boots": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chainmail_boots"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_chainmail_chestplate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chainmail_chestplate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_chainmail_helmet": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chainmail_helmet"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_chainmail_leggings": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chainmail_leggings"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_axe": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_axe"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_boots": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_boots"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_chestplate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_chestplate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_helmet": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_helmet"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_hoe": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_hoe"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_horse_armor": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_horse_armor"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_leggings": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_leggings"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_pickaxe": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_pickaxe"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_shovel": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_shovel"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_iron_sword": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_sword"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_nugget_from_smelting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_pickaxe",
- "has_iron_shovel",
- "has_iron_axe",
- "has_iron_hoe",
- "has_iron_sword",
- "has_iron_helmet",
- "has_iron_chestplate",
- "has_iron_leggings",
- "has_iron_boots",
- "has_iron_horse_armor",
- "has_chainmail_helmet",
- "has_chainmail_chestplate",
- "has_chainmail_leggings",
- "has_chainmail_boots"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_nugget_from_smelting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/lapis_lazuli.json b/src/main/resources/data/minecraft/advancement/recipes/misc/lapis_lazuli.json
deleted file mode 100644
index 14e9329..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/lapis_lazuli.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_lapis_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:lapis_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lapis_lazuli"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_lapis_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lapis_lazuli"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_blasting_deepslate_lapis_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_blasting_deepslate_lapis_ore.json
deleted file mode 100644
index 04418e8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_blasting_deepslate_lapis_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_lapis_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_lapis_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lapis_lazuli_from_blasting_deepslate_lapis_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_lapis_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lapis_lazuli_from_blasting_deepslate_lapis_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_blasting_lapis_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_blasting_lapis_ore.json
deleted file mode 100644
index b72a2c3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_blasting_lapis_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_lapis_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:lapis_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lapis_lazuli_from_blasting_lapis_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_lapis_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lapis_lazuli_from_blasting_lapis_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_smelting_deepslate_lapis_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_smelting_deepslate_lapis_ore.json
deleted file mode 100644
index 99265db..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_smelting_deepslate_lapis_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_lapis_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_lapis_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lapis_lazuli_from_smelting_deepslate_lapis_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_lapis_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lapis_lazuli_from_smelting_deepslate_lapis_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_smelting_lapis_ore.json b/src/main/resources/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_smelting_lapis_ore.json
deleted file mode 100644
index 8830f06..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_smelting_lapis_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_lapis_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:lapis_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lapis_lazuli_from_smelting_lapis_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_lapis_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lapis_lazuli_from_smelting_lapis_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/leather.json b/src/main/resources/data/minecraft/advancement/recipes/misc/leather.json
deleted file mode 100644
index 125ece1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/leather.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_rabbit_hide": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:rabbit_hide"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:leather"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_rabbit_hide"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:leather"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/leather_horse_armor.json b/src/main/resources/data/minecraft/advancement/recipes/misc/leather_horse_armor.json
deleted file mode 100644
index ba8c891..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/leather_horse_armor.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_leather": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:leather"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:leather_horse_armor"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_leather"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:leather_horse_armor"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/light_blue_dye_from_blue_orchid.json b/src/main/resources/data/minecraft/advancement/recipes/misc/light_blue_dye_from_blue_orchid.json
deleted file mode 100644
index 3e1a7ce..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/light_blue_dye_from_blue_orchid.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blue_orchid": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blue_orchid"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_blue_dye_from_blue_orchid"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blue_orchid"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_blue_dye_from_blue_orchid"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/light_blue_dye_from_blue_white_dye.json b/src/main/resources/data/minecraft/advancement/recipes/misc/light_blue_dye_from_blue_white_dye.json
deleted file mode 100644
index db51ab9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/light_blue_dye_from_blue_white_dye.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blue_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blue_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_blue_dye_from_blue_white_dye"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_white_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:white_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blue_dye",
- "has_white_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_blue_dye_from_blue_white_dye"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/light_gray_dye_from_azure_bluet.json b/src/main/resources/data/minecraft/advancement/recipes/misc/light_gray_dye_from_azure_bluet.json
deleted file mode 100644
index 16d5a69..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/light_gray_dye_from_azure_bluet.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_azure_bluet": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:azure_bluet"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_gray_dye_from_azure_bluet"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_azure_bluet"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_gray_dye_from_azure_bluet"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/light_gray_dye_from_black_white_dye.json b/src/main/resources/data/minecraft/advancement/recipes/misc/light_gray_dye_from_black_white_dye.json
deleted file mode 100644
index 5bcb43d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/light_gray_dye_from_black_white_dye.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_black_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:black_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_gray_dye_from_black_white_dye"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_white_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:white_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_white_dye",
- "has_black_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_gray_dye_from_black_white_dye"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/light_gray_dye_from_gray_white_dye.json b/src/main/resources/data/minecraft/advancement/recipes/misc/light_gray_dye_from_gray_white_dye.json
deleted file mode 100644
index 70baee0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/light_gray_dye_from_gray_white_dye.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gray_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gray_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_gray_dye_from_gray_white_dye"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_white_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:white_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gray_dye",
- "has_white_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_gray_dye_from_gray_white_dye"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/light_gray_dye_from_oxeye_daisy.json b/src/main/resources/data/minecraft/advancement/recipes/misc/light_gray_dye_from_oxeye_daisy.json
deleted file mode 100644
index ba5e104..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/light_gray_dye_from_oxeye_daisy.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxeye_daisy": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxeye_daisy"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_gray_dye_from_oxeye_daisy"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxeye_daisy"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_gray_dye_from_oxeye_daisy"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/light_gray_dye_from_white_tulip.json b/src/main/resources/data/minecraft/advancement/recipes/misc/light_gray_dye_from_white_tulip.json
deleted file mode 100644
index 0dcf361..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/light_gray_dye_from_white_tulip.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_gray_dye_from_white_tulip"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_white_tulip": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:white_tulip"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_white_tulip"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_gray_dye_from_white_tulip"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/lime_dye.json b/src/main/resources/data/minecraft/advancement/recipes/misc/lime_dye.json
deleted file mode 100644
index 0e3495e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/lime_dye.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_green_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:green_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lime_dye"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_white_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:white_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_green_dye",
- "has_white_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lime_dye"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/lime_dye_from_smelting.json b/src/main/resources/data/minecraft/advancement/recipes/misc/lime_dye_from_smelting.json
deleted file mode 100644
index acda107..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/lime_dye_from_smelting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_sea_pickle": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sea_pickle"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lime_dye_from_smelting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sea_pickle"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lime_dye_from_smelting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/magenta_dye_from_allium.json b/src/main/resources/data/minecraft/advancement/recipes/misc/magenta_dye_from_allium.json
deleted file mode 100644
index ae72827..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/magenta_dye_from_allium.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_allium": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:allium"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:magenta_dye_from_allium"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_allium"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:magenta_dye_from_allium"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/magenta_dye_from_blue_red_pink.json b/src/main/resources/data/minecraft/advancement/recipes/misc/magenta_dye_from_blue_red_pink.json
deleted file mode 100644
index 6b147f6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/magenta_dye_from_blue_red_pink.json
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blue_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blue_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_pink_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:pink_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_red_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:magenta_dye_from_blue_red_pink"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_pink_dye",
- "has_blue_dye",
- "has_red_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:magenta_dye_from_blue_red_pink"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/magenta_dye_from_blue_red_white_dye.json b/src/main/resources/data/minecraft/advancement/recipes/misc/magenta_dye_from_blue_red_white_dye.json
deleted file mode 100644
index 9c5f101..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/magenta_dye_from_blue_red_white_dye.json
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blue_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blue_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_rose_red": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:magenta_dye_from_blue_red_white_dye"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_white_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:white_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blue_dye",
- "has_rose_red",
- "has_white_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:magenta_dye_from_blue_red_white_dye"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/magenta_dye_from_lilac.json b/src/main/resources/data/minecraft/advancement/recipes/misc/magenta_dye_from_lilac.json
deleted file mode 100644
index 56f9ba2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/magenta_dye_from_lilac.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_lilac": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:lilac"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:magenta_dye_from_lilac"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_lilac"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:magenta_dye_from_lilac"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/magenta_dye_from_purple_and_pink.json b/src/main/resources/data/minecraft/advancement/recipes/misc/magenta_dye_from_purple_and_pink.json
deleted file mode 100644
index 687b375..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/magenta_dye_from_purple_and_pink.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_pink_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:pink_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_purple_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:purple_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:magenta_dye_from_purple_and_pink"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_pink_dye",
- "has_purple_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:magenta_dye_from_purple_and_pink"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/map.json b/src/main/resources/data/minecraft/advancement/recipes/misc/map.json
deleted file mode 100644
index 016bfe2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/map.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_compass": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:compass"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:map"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_compass"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:map"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/melon_seeds.json b/src/main/resources/data/minecraft/advancement/recipes/misc/melon_seeds.json
deleted file mode 100644
index 64b5c50..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/melon_seeds.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_melon": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:melon_slice"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:melon_seeds"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_melon"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:melon_seeds"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/mojang_banner_pattern.json b/src/main/resources/data/minecraft/advancement/recipes/misc/mojang_banner_pattern.json
deleted file mode 100644
index 4051b97..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/mojang_banner_pattern.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_enchanted_golden_apple": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:enchanted_golden_apple"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mojang_banner_pattern"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_enchanted_golden_apple"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mojang_banner_pattern"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/music_disc_5.json b/src/main/resources/data/minecraft/advancement/recipes/misc/music_disc_5.json
deleted file mode 100644
index c0ae144..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/music_disc_5.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_disc_fragment_5": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:disc_fragment_5"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:music_disc_5"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_disc_fragment_5"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:music_disc_5"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/nether_brick.json b/src/main/resources/data/minecraft/advancement/recipes/misc/nether_brick.json
deleted file mode 100644
index 6be9306..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/nether_brick.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_netherrack": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:netherrack"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:nether_brick"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_netherrack"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:nether_brick"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/netherite_ingot.json b/src/main/resources/data/minecraft/advancement/recipes/misc/netherite_ingot.json
deleted file mode 100644
index e302547..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/netherite_ingot.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_netherite_scrap": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:netherite_scrap"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:netherite_ingot"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_netherite_scrap"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:netherite_ingot"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/netherite_ingot_from_netherite_block.json b/src/main/resources/data/minecraft/advancement/recipes/misc/netherite_ingot_from_netherite_block.json
deleted file mode 100644
index 058f380..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/netherite_ingot_from_netherite_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_netherite_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:netherite_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:netherite_ingot_from_netherite_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_netherite_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:netherite_ingot_from_netherite_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/netherite_scrap.json b/src/main/resources/data/minecraft/advancement/recipes/misc/netherite_scrap.json
deleted file mode 100644
index ff6c637..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/netherite_scrap.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_ancient_debris": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:ancient_debris"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:netherite_scrap"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_ancient_debris"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:netherite_scrap"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/netherite_scrap_from_blasting.json b/src/main/resources/data/minecraft/advancement/recipes/misc/netherite_scrap_from_blasting.json
deleted file mode 100644
index 999fa98..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/netherite_scrap_from_blasting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_ancient_debris": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:ancient_debris"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:netherite_scrap_from_blasting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_ancient_debris"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:netherite_scrap_from_blasting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/netherite_upgrade_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/netherite_upgrade_smithing_template.json
deleted file mode 100644
index b8234c1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/netherite_upgrade_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_netherite_upgrade_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:netherite_upgrade_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:netherite_upgrade_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_netherite_upgrade_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:netherite_upgrade_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/orange_dye_from_orange_tulip.json b/src/main/resources/data/minecraft/advancement/recipes/misc/orange_dye_from_orange_tulip.json
deleted file mode 100644
index 4f415e1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/orange_dye_from_orange_tulip.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_orange_tulip": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:orange_tulip"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:orange_dye_from_orange_tulip"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_orange_tulip"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:orange_dye_from_orange_tulip"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/orange_dye_from_red_yellow.json b/src/main/resources/data/minecraft/advancement/recipes/misc/orange_dye_from_red_yellow.json
deleted file mode 100644
index e0b836f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/orange_dye_from_red_yellow.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:orange_dye_from_red_yellow"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_yellow_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:yellow_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_dye",
- "has_yellow_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:orange_dye_from_red_yellow"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/orange_dye_from_torchflower.json b/src/main/resources/data/minecraft/advancement/recipes/misc/orange_dye_from_torchflower.json
deleted file mode 100644
index 87b4a3a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/orange_dye_from_torchflower.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:orange_dye_from_torchflower"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_torchflower": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:torchflower"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_torchflower"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:orange_dye_from_torchflower"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/paper.json b/src/main/resources/data/minecraft/advancement/recipes/misc/paper.json
deleted file mode 100644
index 7d00fd6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/paper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_reeds": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sugar_cane"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:paper"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_reeds"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:paper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/pink_dye_from_peony.json b/src/main/resources/data/minecraft/advancement/recipes/misc/pink_dye_from_peony.json
deleted file mode 100644
index 2a417b0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/pink_dye_from_peony.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_peony": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:peony"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:pink_dye_from_peony"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_peony"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:pink_dye_from_peony"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/pink_dye_from_pink_petals.json b/src/main/resources/data/minecraft/advancement/recipes/misc/pink_dye_from_pink_petals.json
deleted file mode 100644
index 5f7f04c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/pink_dye_from_pink_petals.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_pink_petals": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:pink_petals"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:pink_dye_from_pink_petals"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_pink_petals"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:pink_dye_from_pink_petals"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/pink_dye_from_pink_tulip.json b/src/main/resources/data/minecraft/advancement/recipes/misc/pink_dye_from_pink_tulip.json
deleted file mode 100644
index 205ec84..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/pink_dye_from_pink_tulip.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_pink_tulip": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:pink_tulip"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:pink_dye_from_pink_tulip"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_pink_tulip"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:pink_dye_from_pink_tulip"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/pink_dye_from_red_white_dye.json b/src/main/resources/data/minecraft/advancement/recipes/misc/pink_dye_from_red_white_dye.json
deleted file mode 100644
index 003371c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/pink_dye_from_red_white_dye.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:pink_dye_from_red_white_dye"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_white_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:white_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_white_dye",
- "has_red_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:pink_dye_from_red_white_dye"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/popped_chorus_fruit.json b/src/main/resources/data/minecraft/advancement/recipes/misc/popped_chorus_fruit.json
deleted file mode 100644
index 565ca38..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/popped_chorus_fruit.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_chorus_fruit": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:chorus_fruit"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:popped_chorus_fruit"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_chorus_fruit"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:popped_chorus_fruit"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/pumpkin_seeds.json b/src/main/resources/data/minecraft/advancement/recipes/misc/pumpkin_seeds.json
deleted file mode 100644
index b2681bd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/pumpkin_seeds.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_pumpkin": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:pumpkin"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:pumpkin_seeds"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_pumpkin"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:pumpkin_seeds"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/purple_dye.json b/src/main/resources/data/minecraft/advancement/recipes/misc/purple_dye.json
deleted file mode 100644
index 283c4be..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/purple_dye.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_blue_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:blue_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_red_dye": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_dye"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:purple_dye"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_blue_dye",
- "has_red_dye"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:purple_dye"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/quartz.json b/src/main/resources/data/minecraft/advancement/recipes/misc/quartz.json
deleted file mode 100644
index 617b082..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/quartz.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nether_quartz_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nether_quartz_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:quartz"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nether_quartz_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:quartz"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/quartz_from_blasting.json b/src/main/resources/data/minecraft/advancement/recipes/misc/quartz_from_blasting.json
deleted file mode 100644
index 497982d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/quartz_from_blasting.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_nether_quartz_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:nether_quartz_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:quartz_from_blasting"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_nether_quartz_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:quartz_from_blasting"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/raiser_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/raiser_armor_trim_smithing_template.json
deleted file mode 100644
index acf39ca..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/raiser_armor_trim_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_raiser_armor_trim_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:raiser_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:raiser_armor_trim_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_raiser_armor_trim_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:raiser_armor_trim_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/raiser_armor_trim_smithing_template_smithing_trim.json b/src/main/resources/data/minecraft/advancement/recipes/misc/raiser_armor_trim_smithing_template_smithing_trim.json
deleted file mode 100644
index 477d366..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/raiser_armor_trim_smithing_template_smithing_trim.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smithing_trim_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:raiser_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:raiser_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smithing_trim_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:raiser_armor_trim_smithing_template_smithing_trim"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/raw_copper.json b/src/main/resources/data/minecraft/advancement/recipes/misc/raw_copper.json
deleted file mode 100644
index 4fe7ab7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/raw_copper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_raw_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:raw_copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:raw_copper"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_raw_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:raw_copper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/raw_gold.json b/src/main/resources/data/minecraft/advancement/recipes/misc/raw_gold.json
deleted file mode 100644
index e81635d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/raw_gold.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_raw_gold_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:raw_gold_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:raw_gold"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_raw_gold_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:raw_gold"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/raw_iron.json b/src/main/resources/data/minecraft/advancement/recipes/misc/raw_iron.json
deleted file mode 100644
index f97f605..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/raw_iron.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_raw_iron_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:raw_iron_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:raw_iron"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_raw_iron_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:raw_iron"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/red_dye_from_beetroot.json b/src/main/resources/data/minecraft/advancement/recipes/misc/red_dye_from_beetroot.json
deleted file mode 100644
index 7c0c252..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/red_dye_from_beetroot.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_beetroot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:beetroot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_dye_from_beetroot"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_beetroot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_dye_from_beetroot"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/red_dye_from_poppy.json b/src/main/resources/data/minecraft/advancement/recipes/misc/red_dye_from_poppy.json
deleted file mode 100644
index 448bb81..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/red_dye_from_poppy.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_poppy": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:poppy"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_dye_from_poppy"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_poppy"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_dye_from_poppy"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/red_dye_from_rose_bush.json b/src/main/resources/data/minecraft/advancement/recipes/misc/red_dye_from_rose_bush.json
deleted file mode 100644
index bbb00fd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/red_dye_from_rose_bush.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_rose_bush": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:rose_bush"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_dye_from_rose_bush"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_rose_bush"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_dye_from_rose_bush"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/red_dye_from_tulip.json b/src/main/resources/data/minecraft/advancement/recipes/misc/red_dye_from_tulip.json
deleted file mode 100644
index e044398..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/red_dye_from_tulip.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_red_flower": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:red_tulip"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:red_dye_from_tulip"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_red_flower"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:red_dye_from_tulip"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/rib_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/rib_armor_trim_smithing_template.json
deleted file mode 100644
index cc02cd3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/rib_armor_trim_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_rib_armor_trim_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:rib_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:rib_armor_trim_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_rib_armor_trim_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:rib_armor_trim_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/rib_armor_trim_smithing_template_smithing_trim.json b/src/main/resources/data/minecraft/advancement/recipes/misc/rib_armor_trim_smithing_template_smithing_trim.json
deleted file mode 100644
index 732193e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/rib_armor_trim_smithing_template_smithing_trim.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smithing_trim_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:rib_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:rib_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smithing_trim_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:rib_armor_trim_smithing_template_smithing_trim"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/sentry_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/sentry_armor_trim_smithing_template.json
deleted file mode 100644
index 944a2fb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/sentry_armor_trim_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_sentry_armor_trim_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sentry_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:sentry_armor_trim_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sentry_armor_trim_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:sentry_armor_trim_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/sentry_armor_trim_smithing_template_smithing_trim.json b/src/main/resources/data/minecraft/advancement/recipes/misc/sentry_armor_trim_smithing_template_smithing_trim.json
deleted file mode 100644
index efaf125..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/sentry_armor_trim_smithing_template_smithing_trim.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smithing_trim_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sentry_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:sentry_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smithing_trim_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:sentry_armor_trim_smithing_template_smithing_trim"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/shaper_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/shaper_armor_trim_smithing_template.json
deleted file mode 100644
index a68b9cb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/shaper_armor_trim_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_shaper_armor_trim_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:shaper_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:shaper_armor_trim_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_shaper_armor_trim_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:shaper_armor_trim_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/shaper_armor_trim_smithing_template_smithing_trim.json b/src/main/resources/data/minecraft/advancement/recipes/misc/shaper_armor_trim_smithing_template_smithing_trim.json
deleted file mode 100644
index c743861..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/shaper_armor_trim_smithing_template_smithing_trim.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smithing_trim_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:shaper_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:shaper_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smithing_trim_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:shaper_armor_trim_smithing_template_smithing_trim"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/silence_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/silence_armor_trim_smithing_template.json
deleted file mode 100644
index 15b8cc3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/silence_armor_trim_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_silence_armor_trim_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:silence_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:silence_armor_trim_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_silence_armor_trim_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:silence_armor_trim_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/silence_armor_trim_smithing_template_smithing_trim.json b/src/main/resources/data/minecraft/advancement/recipes/misc/silence_armor_trim_smithing_template_smithing_trim.json
deleted file mode 100644
index e07c707..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/silence_armor_trim_smithing_template_smithing_trim.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smithing_trim_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:silence_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:silence_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smithing_trim_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:silence_armor_trim_smithing_template_smithing_trim"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/skull_banner_pattern.json b/src/main/resources/data/minecraft/advancement/recipes/misc/skull_banner_pattern.json
deleted file mode 100644
index de66343..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/skull_banner_pattern.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:skull_banner_pattern"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_wither_skeleton_skull": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:wither_skeleton_skull"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_wither_skeleton_skull"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:skull_banner_pattern"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/slime_ball.json b/src/main/resources/data/minecraft/advancement/recipes/misc/slime_ball.json
deleted file mode 100644
index 38c8a95..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/slime_ball.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_slime_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:slime_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:slime_ball"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_slime_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:slime_ball"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/snout_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/snout_armor_trim_smithing_template.json
deleted file mode 100644
index 87b4beb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/snout_armor_trim_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_snout_armor_trim_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:snout_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:snout_armor_trim_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_snout_armor_trim_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:snout_armor_trim_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/snout_armor_trim_smithing_template_smithing_trim.json b/src/main/resources/data/minecraft/advancement/recipes/misc/snout_armor_trim_smithing_template_smithing_trim.json
deleted file mode 100644
index 47d3d3d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/snout_armor_trim_smithing_template_smithing_trim.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smithing_trim_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:snout_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:snout_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smithing_trim_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:snout_armor_trim_smithing_template_smithing_trim"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/spire_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/spire_armor_trim_smithing_template.json
deleted file mode 100644
index ddb5562..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/spire_armor_trim_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_spire_armor_trim_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:spire_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:spire_armor_trim_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_spire_armor_trim_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:spire_armor_trim_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/spire_armor_trim_smithing_template_smithing_trim.json b/src/main/resources/data/minecraft/advancement/recipes/misc/spire_armor_trim_smithing_template_smithing_trim.json
deleted file mode 100644
index de70999..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/spire_armor_trim_smithing_template_smithing_trim.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smithing_trim_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:spire_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:spire_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smithing_trim_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:spire_armor_trim_smithing_template_smithing_trim"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/stick.json b/src/main/resources/data/minecraft/advancement/recipes/misc/stick.json
deleted file mode 100644
index 74165bb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/stick.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stick"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stick"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/stick_from_bamboo_item.json b/src/main/resources/data/minecraft/advancement/recipes/misc/stick_from_bamboo_item.json
deleted file mode 100644
index 5e481f2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/stick_from_bamboo_item.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bamboo": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bamboo"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stick_from_bamboo_item"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_bamboo"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stick_from_bamboo_item"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/sugar_from_honey_bottle.json b/src/main/resources/data/minecraft/advancement/recipes/misc/sugar_from_honey_bottle.json
deleted file mode 100644
index 57fddc9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/sugar_from_honey_bottle.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_honey_bottle": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:honey_bottle"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:sugar_from_honey_bottle"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_honey_bottle"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:sugar_from_honey_bottle"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/sugar_from_sugar_cane.json b/src/main/resources/data/minecraft/advancement/recipes/misc/sugar_from_sugar_cane.json
deleted file mode 100644
index 3981894..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/sugar_from_sugar_cane.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_sugar_cane": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sugar_cane"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:sugar_from_sugar_cane"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sugar_cane"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:sugar_from_sugar_cane"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/tide_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/tide_armor_trim_smithing_template.json
deleted file mode 100644
index e25917d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/tide_armor_trim_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tide_armor_trim_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tide_armor_trim_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tide_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tide_armor_trim_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tide_armor_trim_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/tide_armor_trim_smithing_template_smithing_trim.json b/src/main/resources/data/minecraft/advancement/recipes/misc/tide_armor_trim_smithing_template_smithing_trim.json
deleted file mode 100644
index 6155cc6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/tide_armor_trim_smithing_template_smithing_trim.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smithing_trim_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tide_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tide_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smithing_trim_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tide_armor_trim_smithing_template_smithing_trim"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/vex_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/vex_armor_trim_smithing_template.json
deleted file mode 100644
index 0f691a6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/vex_armor_trim_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:vex_armor_trim_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_vex_armor_trim_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:vex_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_vex_armor_trim_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:vex_armor_trim_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/vex_armor_trim_smithing_template_smithing_trim.json b/src/main/resources/data/minecraft/advancement/recipes/misc/vex_armor_trim_smithing_template_smithing_trim.json
deleted file mode 100644
index 6820f5d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/vex_armor_trim_smithing_template_smithing_trim.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smithing_trim_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:vex_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:vex_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smithing_trim_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:vex_armor_trim_smithing_template_smithing_trim"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/ward_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/ward_armor_trim_smithing_template.json
deleted file mode 100644
index 5f4a3a7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/ward_armor_trim_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:ward_armor_trim_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_ward_armor_trim_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:ward_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_ward_armor_trim_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:ward_armor_trim_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/ward_armor_trim_smithing_template_smithing_trim.json b/src/main/resources/data/minecraft/advancement/recipes/misc/ward_armor_trim_smithing_template_smithing_trim.json
deleted file mode 100644
index a48941b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/ward_armor_trim_smithing_template_smithing_trim.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smithing_trim_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:ward_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:ward_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smithing_trim_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:ward_armor_trim_smithing_template_smithing_trim"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/wayfinder_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/wayfinder_armor_trim_smithing_template.json
deleted file mode 100644
index b713cb0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/wayfinder_armor_trim_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:wayfinder_armor_trim_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_wayfinder_armor_trim_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:wayfinder_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_wayfinder_armor_trim_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:wayfinder_armor_trim_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/wayfinder_armor_trim_smithing_template_smithing_trim.json b/src/main/resources/data/minecraft/advancement/recipes/misc/wayfinder_armor_trim_smithing_template_smithing_trim.json
deleted file mode 100644
index 173ea22..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/wayfinder_armor_trim_smithing_template_smithing_trim.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smithing_trim_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:wayfinder_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:wayfinder_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smithing_trim_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:wayfinder_armor_trim_smithing_template_smithing_trim"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/wheat.json b/src/main/resources/data/minecraft/advancement/recipes/misc/wheat.json
deleted file mode 100644
index 32380a8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/wheat.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_hay_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:hay_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:wheat"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_hay_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:wheat"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/white_dye.json b/src/main/resources/data/minecraft/advancement/recipes/misc/white_dye.json
deleted file mode 100644
index 53f5a0a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/white_dye.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bone_meal": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bone_meal"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:white_dye"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_bone_meal"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:white_dye"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/white_dye_from_lily_of_the_valley.json b/src/main/resources/data/minecraft/advancement/recipes/misc/white_dye_from_lily_of_the_valley.json
deleted file mode 100644
index 8dfcad0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/white_dye_from_lily_of_the_valley.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_lily_of_the_valley": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:lily_of_the_valley"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:white_dye_from_lily_of_the_valley"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_lily_of_the_valley"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:white_dye_from_lily_of_the_valley"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/wild_armor_trim_smithing_template.json b/src/main/resources/data/minecraft/advancement/recipes/misc/wild_armor_trim_smithing_template.json
deleted file mode 100644
index 6766be1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/wild_armor_trim_smithing_template.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:wild_armor_trim_smithing_template"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_wild_armor_trim_smithing_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:wild_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_wild_armor_trim_smithing_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:wild_armor_trim_smithing_template"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/wild_armor_trim_smithing_template_smithing_trim.json b/src/main/resources/data/minecraft/advancement/recipes/misc/wild_armor_trim_smithing_template_smithing_trim.json
deleted file mode 100644
index 64ffff5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/wild_armor_trim_smithing_template_smithing_trim.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_smithing_trim_template": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:wild_armor_trim_smithing_template"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:wild_armor_trim_smithing_template_smithing_trim"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_smithing_trim_template"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:wild_armor_trim_smithing_template_smithing_trim"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/wind_charge.json b/src/main/resources/data/minecraft/advancement/recipes/misc/wind_charge.json
deleted file mode 100644
index 059e1e3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/wind_charge.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_breeze_rod": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:breeze_rod"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:wind_charge"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_breeze_rod"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:wind_charge"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/writable_book.json b/src/main/resources/data/minecraft/advancement/recipes/misc/writable_book.json
deleted file mode 100644
index 2763d8a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/writable_book.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_book": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:book"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:writable_book"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_book"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:writable_book"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/yellow_dye_from_dandelion.json b/src/main/resources/data/minecraft/advancement/recipes/misc/yellow_dye_from_dandelion.json
deleted file mode 100644
index abec5f1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/yellow_dye_from_dandelion.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_dandelion": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dandelion"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:yellow_dye_from_dandelion"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_dandelion"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:yellow_dye_from_dandelion"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/misc/yellow_dye_from_sunflower.json b/src/main/resources/data/minecraft/advancement/recipes/misc/yellow_dye_from_sunflower.json
deleted file mode 100644
index 4f6e494..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/misc/yellow_dye_from_sunflower.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_sunflower": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:sunflower"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:yellow_dye_from_sunflower"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_sunflower"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:yellow_dye_from_sunflower"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/acacia_button.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/acacia_button.json
deleted file mode 100644
index 6fffe34..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/acacia_button.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:acacia_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:acacia_button"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:acacia_button"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/acacia_door.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/acacia_door.json
deleted file mode 100644
index 2f90170..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/acacia_door.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:acacia_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:acacia_door"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:acacia_door"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/acacia_fence_gate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/acacia_fence_gate.json
deleted file mode 100644
index be861e2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/acacia_fence_gate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:acacia_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:acacia_fence_gate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:acacia_fence_gate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/acacia_pressure_plate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/acacia_pressure_plate.json
deleted file mode 100644
index fc492fa..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/acacia_pressure_plate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:acacia_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:acacia_pressure_plate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:acacia_pressure_plate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/acacia_trapdoor.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/acacia_trapdoor.json
deleted file mode 100644
index e515bb2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/acacia_trapdoor.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:acacia_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:acacia_trapdoor"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:acacia_trapdoor"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/bamboo_button.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/bamboo_button.json
deleted file mode 100644
index 8804b51..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/bamboo_button.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bamboo_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bamboo_button"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bamboo_button"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/bamboo_door.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/bamboo_door.json
deleted file mode 100644
index bec8191..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/bamboo_door.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bamboo_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bamboo_door"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bamboo_door"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/bamboo_fence_gate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/bamboo_fence_gate.json
deleted file mode 100644
index b089d01..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/bamboo_fence_gate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bamboo_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bamboo_fence_gate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bamboo_fence_gate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/bamboo_pressure_plate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/bamboo_pressure_plate.json
deleted file mode 100644
index 7ab171f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/bamboo_pressure_plate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bamboo_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bamboo_pressure_plate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bamboo_pressure_plate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/bamboo_trapdoor.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/bamboo_trapdoor.json
deleted file mode 100644
index 3f90d16..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/bamboo_trapdoor.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bamboo_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bamboo_trapdoor"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bamboo_trapdoor"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/birch_button.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/birch_button.json
deleted file mode 100644
index d3e4b7f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/birch_button.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:birch_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:birch_button"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:birch_button"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/birch_door.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/birch_door.json
deleted file mode 100644
index b35c30c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/birch_door.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:birch_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:birch_door"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:birch_door"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/birch_fence_gate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/birch_fence_gate.json
deleted file mode 100644
index 6af682c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/birch_fence_gate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:birch_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:birch_fence_gate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:birch_fence_gate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/birch_pressure_plate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/birch_pressure_plate.json
deleted file mode 100644
index 58089b3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/birch_pressure_plate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:birch_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:birch_pressure_plate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:birch_pressure_plate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/birch_trapdoor.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/birch_trapdoor.json
deleted file mode 100644
index b5eb36a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/birch_trapdoor.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:birch_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:birch_trapdoor"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:birch_trapdoor"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/calibrated_sculk_sensor.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/calibrated_sculk_sensor.json
deleted file mode 100644
index 4d0d6eb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/calibrated_sculk_sensor.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_amethyst_shard": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:amethyst_shard"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:calibrated_sculk_sensor"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_amethyst_shard"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:calibrated_sculk_sensor"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/cherry_button.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/cherry_button.json
deleted file mode 100644
index 342c373..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/cherry_button.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cherry_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cherry_button"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cherry_button"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/cherry_door.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/cherry_door.json
deleted file mode 100644
index 7b8cc4f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/cherry_door.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cherry_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cherry_door"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cherry_door"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/cherry_fence_gate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/cherry_fence_gate.json
deleted file mode 100644
index 40114d1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/cherry_fence_gate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cherry_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cherry_fence_gate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cherry_fence_gate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/cherry_pressure_plate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/cherry_pressure_plate.json
deleted file mode 100644
index 9cf12d4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/cherry_pressure_plate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cherry_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cherry_pressure_plate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cherry_pressure_plate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/cherry_trapdoor.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/cherry_trapdoor.json
deleted file mode 100644
index dad9882..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/cherry_trapdoor.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cherry_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cherry_trapdoor"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cherry_trapdoor"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/comparator.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/comparator.json
deleted file mode 100644
index 7fc1301..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/comparator.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_quartz": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:comparator"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_quartz"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:comparator"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/copper_bulb.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/copper_bulb.json
deleted file mode 100644
index f9452a6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/copper_bulb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:copper_bulb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:copper_bulb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/copper_door.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/copper_door.json
deleted file mode 100644
index 39580b4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/copper_door.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:copper_door"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:copper_door"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/copper_trapdoor.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/copper_trapdoor.json
deleted file mode 100644
index 2dcecaa..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/copper_trapdoor.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:copper_trapdoor"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:copper_trapdoor"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/crafter.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/crafter.json
deleted file mode 100644
index faf8ca3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/crafter.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_dropper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dropper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:crafter"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_dropper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:crafter"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/crimson_button.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/crimson_button.json
deleted file mode 100644
index e0da592..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/crimson_button.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:crimson_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:crimson_button"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:crimson_button"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/crimson_door.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/crimson_door.json
deleted file mode 100644
index a6834be..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/crimson_door.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:crimson_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:crimson_door"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:crimson_door"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/crimson_fence_gate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/crimson_fence_gate.json
deleted file mode 100644
index 56414eb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/crimson_fence_gate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:crimson_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:crimson_fence_gate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:crimson_fence_gate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/crimson_pressure_plate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/crimson_pressure_plate.json
deleted file mode 100644
index 09dfec8..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/crimson_pressure_plate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:crimson_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:crimson_pressure_plate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:crimson_pressure_plate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/crimson_trapdoor.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/crimson_trapdoor.json
deleted file mode 100644
index 70d978b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/crimson_trapdoor.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:crimson_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:crimson_trapdoor"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:crimson_trapdoor"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/dark_oak_button.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/dark_oak_button.json
deleted file mode 100644
index c5c2860..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/dark_oak_button.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dark_oak_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_oak_button"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_oak_button"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/dark_oak_door.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/dark_oak_door.json
deleted file mode 100644
index bba6f2f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/dark_oak_door.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dark_oak_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_oak_door"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_oak_door"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/dark_oak_fence_gate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/dark_oak_fence_gate.json
deleted file mode 100644
index 54568b5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/dark_oak_fence_gate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dark_oak_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_oak_fence_gate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_oak_fence_gate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/dark_oak_pressure_plate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/dark_oak_pressure_plate.json
deleted file mode 100644
index dd90b8c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/dark_oak_pressure_plate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dark_oak_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_oak_pressure_plate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_oak_pressure_plate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/dark_oak_trapdoor.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/dark_oak_trapdoor.json
deleted file mode 100644
index 47e2dd6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/dark_oak_trapdoor.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:dark_oak_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_oak_trapdoor"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_oak_trapdoor"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/daylight_detector.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/daylight_detector.json
deleted file mode 100644
index 20df85b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/daylight_detector.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_quartz": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:daylight_detector"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_quartz"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:daylight_detector"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/dispenser.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/dispenser.json
deleted file mode 100644
index 721489b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/dispenser.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_bow": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:bow"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dispenser"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_bow"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dispenser"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/dropper.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/dropper.json
deleted file mode 100644
index 6defab3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/dropper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_redstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:redstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dropper"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_redstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dropper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/exposed_copper_bulb.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/exposed_copper_bulb.json
deleted file mode 100644
index 96242b4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/exposed_copper_bulb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_exposed_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:exposed_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:exposed_copper_bulb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_exposed_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:exposed_copper_bulb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/heavy_weighted_pressure_plate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/heavy_weighted_pressure_plate.json
deleted file mode 100644
index 4b2bdd3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/heavy_weighted_pressure_plate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:heavy_weighted_pressure_plate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:heavy_weighted_pressure_plate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/honey_block.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/honey_block.json
deleted file mode 100644
index 89de00e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/honey_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_honey_bottle": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:honey_bottle"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:honey_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_honey_bottle"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:honey_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/hopper.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/hopper.json
deleted file mode 100644
index 4ce4826..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/hopper.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:hopper"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:hopper"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/iron_door.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/iron_door.json
deleted file mode 100644
index 807388c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/iron_door.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_door"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_door"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/iron_trapdoor.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/iron_trapdoor.json
deleted file mode 100644
index 6e3d055..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/iron_trapdoor.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_trapdoor"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_trapdoor"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/jungle_button.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/jungle_button.json
deleted file mode 100644
index a152c02..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/jungle_button.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:jungle_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:jungle_button"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:jungle_button"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/jungle_door.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/jungle_door.json
deleted file mode 100644
index 5c956ee..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/jungle_door.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:jungle_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:jungle_door"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:jungle_door"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/jungle_fence_gate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/jungle_fence_gate.json
deleted file mode 100644
index 7772dec..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/jungle_fence_gate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:jungle_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:jungle_fence_gate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:jungle_fence_gate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/jungle_pressure_plate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/jungle_pressure_plate.json
deleted file mode 100644
index 3010d9a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/jungle_pressure_plate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:jungle_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:jungle_pressure_plate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:jungle_pressure_plate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/jungle_trapdoor.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/jungle_trapdoor.json
deleted file mode 100644
index 2a27a61..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/jungle_trapdoor.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:jungle_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:jungle_trapdoor"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:jungle_trapdoor"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/lectern.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/lectern.json
deleted file mode 100644
index d27109e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/lectern.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_book": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:book"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lectern"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_book"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lectern"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/lever.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/lever.json
deleted file mode 100644
index 80e0dba..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/lever.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:cobblestone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lever"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lever"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/light_weighted_pressure_plate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/light_weighted_pressure_plate.json
deleted file mode 100644
index c11838e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/light_weighted_pressure_plate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gold_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gold_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:light_weighted_pressure_plate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gold_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:light_weighted_pressure_plate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/lightning_rod.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/lightning_rod.json
deleted file mode 100644
index 1f27834..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/lightning_rod.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lightning_rod"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lightning_rod"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/mangrove_button.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/mangrove_button.json
deleted file mode 100644
index d7a409b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/mangrove_button.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mangrove_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mangrove_button"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mangrove_button"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/mangrove_door.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/mangrove_door.json
deleted file mode 100644
index 8479072..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/mangrove_door.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mangrove_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mangrove_door"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mangrove_door"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/mangrove_fence_gate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/mangrove_fence_gate.json
deleted file mode 100644
index eda78b1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/mangrove_fence_gate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mangrove_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mangrove_fence_gate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mangrove_fence_gate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/mangrove_pressure_plate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/mangrove_pressure_plate.json
deleted file mode 100644
index 1d851e9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/mangrove_pressure_plate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mangrove_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mangrove_pressure_plate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mangrove_pressure_plate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/mangrove_trapdoor.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/mangrove_trapdoor.json
deleted file mode 100644
index 7ea289b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/mangrove_trapdoor.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:mangrove_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mangrove_trapdoor"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mangrove_trapdoor"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/note_block.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/note_block.json
deleted file mode 100644
index d7ec664..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/note_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_redstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:redstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:note_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_redstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:note_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/oak_button.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/oak_button.json
deleted file mode 100644
index 62a2145..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/oak_button.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oak_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oak_button"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oak_button"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/oak_door.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/oak_door.json
deleted file mode 100644
index 34a710b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/oak_door.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oak_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oak_door"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oak_door"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/oak_fence_gate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/oak_fence_gate.json
deleted file mode 100644
index d815377..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/oak_fence_gate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oak_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oak_fence_gate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oak_fence_gate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/oak_pressure_plate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/oak_pressure_plate.json
deleted file mode 100644
index 8f9a353..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/oak_pressure_plate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oak_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oak_pressure_plate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oak_pressure_plate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/oak_trapdoor.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/oak_trapdoor.json
deleted file mode 100644
index 873d96e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/oak_trapdoor.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oak_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oak_trapdoor"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oak_trapdoor"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/observer.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/observer.json
deleted file mode 100644
index e40f179..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/observer.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_quartz": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:quartz"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:observer"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_quartz"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:observer"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/oxidized_copper_bulb.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/oxidized_copper_bulb.json
deleted file mode 100644
index c5c57e2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/oxidized_copper_bulb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_oxidized_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:oxidized_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oxidized_copper_bulb"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_oxidized_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oxidized_copper_bulb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/piston.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/piston.json
deleted file mode 100644
index 191c268..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/piston.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_redstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:redstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:piston"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_redstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:piston"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/polished_blackstone_button.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/polished_blackstone_button.json
deleted file mode 100644
index 19b612e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/polished_blackstone_button.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_button"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_button"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/polished_blackstone_pressure_plate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/polished_blackstone_pressure_plate.json
deleted file mode 100644
index ed1d194..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/polished_blackstone_pressure_plate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_polished_blackstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:polished_blackstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:polished_blackstone_pressure_plate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_polished_blackstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:polished_blackstone_pressure_plate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone.json
deleted file mode 100644
index 4660d21..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_redstone_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:redstone_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:redstone"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_redstone_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:redstone"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_block.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_block.json
deleted file mode 100644
index d6fe3b2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_redstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:redstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:redstone_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_redstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:redstone_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_from_blasting_deepslate_redstone_ore.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_from_blasting_deepslate_redstone_ore.json
deleted file mode 100644
index c5437d0..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_from_blasting_deepslate_redstone_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_redstone_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_redstone_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:redstone_from_blasting_deepslate_redstone_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_redstone_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:redstone_from_blasting_deepslate_redstone_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_from_blasting_redstone_ore.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_from_blasting_redstone_ore.json
deleted file mode 100644
index 7235f21..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_from_blasting_redstone_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_redstone_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:redstone_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:redstone_from_blasting_redstone_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_redstone_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:redstone_from_blasting_redstone_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_from_smelting_deepslate_redstone_ore.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_from_smelting_deepslate_redstone_ore.json
deleted file mode 100644
index aa1748d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_from_smelting_deepslate_redstone_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_deepslate_redstone_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:deepslate_redstone_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:redstone_from_smelting_deepslate_redstone_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_deepslate_redstone_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:redstone_from_smelting_deepslate_redstone_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_from_smelting_redstone_ore.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_from_smelting_redstone_ore.json
deleted file mode 100644
index 739f04a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_from_smelting_redstone_ore.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_redstone_ore": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:redstone_ore"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:redstone_from_smelting_redstone_ore"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_redstone_ore"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:redstone_from_smelting_redstone_ore"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_lamp.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_lamp.json
deleted file mode 100644
index 851832a..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_lamp.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_glowstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:glowstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:redstone_lamp"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_glowstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:redstone_lamp"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_torch.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_torch.json
deleted file mode 100644
index d905287..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/redstone_torch.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_redstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:redstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:redstone_torch"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_redstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:redstone_torch"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/repeater.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/repeater.json
deleted file mode 100644
index 6d70605..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/repeater.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_redstone_torch": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:redstone_torch"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:repeater"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_redstone_torch"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:repeater"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/slime_block.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/slime_block.json
deleted file mode 100644
index 8f41914..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/slime_block.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_slime_ball": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:slime_ball"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:slime_block"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_slime_ball"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:slime_block"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/spruce_button.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/spruce_button.json
deleted file mode 100644
index d211788..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/spruce_button.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:spruce_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:spruce_button"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:spruce_button"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/spruce_door.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/spruce_door.json
deleted file mode 100644
index f23de9f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/spruce_door.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:spruce_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:spruce_door"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:spruce_door"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/spruce_fence_gate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/spruce_fence_gate.json
deleted file mode 100644
index 818987e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/spruce_fence_gate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:spruce_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:spruce_fence_gate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:spruce_fence_gate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/spruce_pressure_plate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/spruce_pressure_plate.json
deleted file mode 100644
index ae4e166..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/spruce_pressure_plate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:spruce_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:spruce_pressure_plate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:spruce_pressure_plate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/spruce_trapdoor.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/spruce_trapdoor.json
deleted file mode 100644
index 20f5759..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/spruce_trapdoor.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:spruce_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:spruce_trapdoor"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:spruce_trapdoor"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/sticky_piston.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/sticky_piston.json
deleted file mode 100644
index 60011ec..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/sticky_piston.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_slime_ball": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:slime_ball"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:sticky_piston"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_slime_ball"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:sticky_piston"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/stone_button.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/stone_button.json
deleted file mode 100644
index f802013..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/stone_button.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_button"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_button"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/stone_pressure_plate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/stone_pressure_plate.json
deleted file mode 100644
index e2af12e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/stone_pressure_plate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_pressure_plate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_pressure_plate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/target.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/target.json
deleted file mode 100644
index 21b2ae1..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/target.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_hay_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:hay_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_redstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:redstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:target"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_redstone",
- "has_hay_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:target"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/tnt.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/tnt.json
deleted file mode 100644
index bf95652..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/tnt.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gunpowder": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gunpowder"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tnt"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gunpowder"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tnt"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/trapped_chest.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/trapped_chest.json
deleted file mode 100644
index e5033bc..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/trapped_chest.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:trapped_chest"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_tripwire_hook": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:tripwire_hook"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_tripwire_hook"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:trapped_chest"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/tripwire_hook.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/tripwire_hook.json
deleted file mode 100644
index 3a3cf54..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/tripwire_hook.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_string": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:string"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tripwire_hook"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_string"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tripwire_hook"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/warped_button.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/warped_button.json
deleted file mode 100644
index 267ac24..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/warped_button.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:warped_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:warped_button"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:warped_button"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/warped_door.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/warped_door.json
deleted file mode 100644
index 4088dbb..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/warped_door.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:warped_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:warped_door"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:warped_door"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/warped_fence_gate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/warped_fence_gate.json
deleted file mode 100644
index ed7cfa6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/warped_fence_gate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:warped_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:warped_fence_gate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:warped_fence_gate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/warped_pressure_plate.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/warped_pressure_plate.json
deleted file mode 100644
index 5b9b581..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/warped_pressure_plate.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:warped_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:warped_pressure_plate"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:warped_pressure_plate"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/warped_trapdoor.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/warped_trapdoor.json
deleted file mode 100644
index 6b3ceae..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/warped_trapdoor.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_planks": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:warped_planks"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:warped_trapdoor"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_planks"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:warped_trapdoor"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/waxed_copper_bulb.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/waxed_copper_bulb.json
deleted file mode 100644
index 334612b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/waxed_copper_bulb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_copper_bulb"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_copper_block": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_copper_block"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_copper_block"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_copper_bulb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_bulb.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_bulb.json
deleted file mode 100644
index 4cfd14c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_bulb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_exposed_copper_bulb"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_exposed_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_exposed_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_exposed_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_exposed_copper_bulb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_bulb.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_bulb.json
deleted file mode 100644
index 77d0bb2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_bulb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_oxidized_copper_bulb"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_oxidized_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_oxidized_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_oxidized_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_oxidized_copper_bulb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_bulb.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_bulb.json
deleted file mode 100644
index 3ac483c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_bulb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:waxed_weathered_copper_bulb"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_waxed_weathered_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:waxed_weathered_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_waxed_weathered_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:waxed_weathered_copper_bulb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/redstone/weathered_copper_bulb.json b/src/main/resources/data/minecraft/advancement/recipes/redstone/weathered_copper_bulb.json
deleted file mode 100644
index b19eb0b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/redstone/weathered_copper_bulb.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:weathered_copper_bulb"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_weathered_copper": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:weathered_copper"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_weathered_copper"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:weathered_copper_bulb"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/root.json b/src/main/resources/data/minecraft/advancement/recipes/root.json
deleted file mode 100644
index 78142c5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/root.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "criteria": {
- "impossible": {
- "trigger": "minecraft:impossible"
- }
- },
- "requirements": [
- [
- "impossible"
- ]
- ]
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/brush.json b/src/main/resources/data/minecraft/advancement/recipes/tools/brush.json
deleted file mode 100644
index 00aafb5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/brush.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_copper_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:copper_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:brush"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_copper_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:brush"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/clock.json b/src/main/resources/data/minecraft/advancement/recipes/tools/clock.json
deleted file mode 100644
index dd3f2c4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/clock.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_redstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:redstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:clock"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_redstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:clock"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/compass.json b/src/main/resources/data/minecraft/advancement/recipes/tools/compass.json
deleted file mode 100644
index 627cfb3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/compass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_redstone": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:redstone"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:compass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_redstone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:compass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/diamond_axe.json b/src/main/resources/data/minecraft/advancement/recipes/tools/diamond_axe.json
deleted file mode 100644
index 31dbd4f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/diamond_axe.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diamond": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diamond_axe"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diamond"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diamond_axe"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/diamond_hoe.json b/src/main/resources/data/minecraft/advancement/recipes/tools/diamond_hoe.json
deleted file mode 100644
index 0431c5b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/diamond_hoe.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diamond": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diamond_hoe"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diamond"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diamond_hoe"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/diamond_pickaxe.json b/src/main/resources/data/minecraft/advancement/recipes/tools/diamond_pickaxe.json
deleted file mode 100644
index 71a7554..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/diamond_pickaxe.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diamond": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diamond_pickaxe"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diamond"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diamond_pickaxe"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/diamond_shovel.json b/src/main/resources/data/minecraft/advancement/recipes/tools/diamond_shovel.json
deleted file mode 100644
index e3bc5ce..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/diamond_shovel.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_diamond": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:diamond_shovel"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_diamond"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:diamond_shovel"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/fishing_rod.json b/src/main/resources/data/minecraft/advancement/recipes/tools/fishing_rod.json
deleted file mode 100644
index 95b6b72..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/fishing_rod.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_string": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:string"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:fishing_rod"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_string"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:fishing_rod"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/flint_and_steel.json b/src/main/resources/data/minecraft/advancement/recipes/tools/flint_and_steel.json
deleted file mode 100644
index 8950af6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/flint_and_steel.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_flint": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:flint"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_obsidian": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:obsidian"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:flint_and_steel"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_flint",
- "has_obsidian"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:flint_and_steel"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/golden_axe.json b/src/main/resources/data/minecraft/advancement/recipes/tools/golden_axe.json
deleted file mode 100644
index cbb7232..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/golden_axe.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gold_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gold_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:golden_axe"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gold_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:golden_axe"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/golden_hoe.json b/src/main/resources/data/minecraft/advancement/recipes/tools/golden_hoe.json
deleted file mode 100644
index c08e99b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/golden_hoe.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gold_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gold_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:golden_hoe"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gold_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:golden_hoe"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/golden_pickaxe.json b/src/main/resources/data/minecraft/advancement/recipes/tools/golden_pickaxe.json
deleted file mode 100644
index f360895..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/golden_pickaxe.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gold_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gold_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:golden_pickaxe"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gold_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:golden_pickaxe"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/golden_shovel.json b/src/main/resources/data/minecraft/advancement/recipes/tools/golden_shovel.json
deleted file mode 100644
index e4ceef2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/golden_shovel.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_gold_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:gold_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:golden_shovel"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_gold_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:golden_shovel"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/iron_axe.json b/src/main/resources/data/minecraft/advancement/recipes/tools/iron_axe.json
deleted file mode 100644
index d4dcd43..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/iron_axe.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_axe"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_axe"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/iron_hoe.json b/src/main/resources/data/minecraft/advancement/recipes/tools/iron_hoe.json
deleted file mode 100644
index 90d6087..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/iron_hoe.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_hoe"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_hoe"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/iron_pickaxe.json b/src/main/resources/data/minecraft/advancement/recipes/tools/iron_pickaxe.json
deleted file mode 100644
index 98edb58..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/iron_pickaxe.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_pickaxe"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_pickaxe"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/iron_shovel.json b/src/main/resources/data/minecraft/advancement/recipes/tools/iron_shovel.json
deleted file mode 100644
index 449cfb5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/iron_shovel.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:iron_shovel"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:iron_shovel"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/lead.json b/src/main/resources/data/minecraft/advancement/recipes/tools/lead.json
deleted file mode 100644
index a872bd4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/lead.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_slime_ball": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:slime_ball"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:lead"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_slime_ball"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:lead"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/netherite_axe_smithing.json b/src/main/resources/data/minecraft/advancement/recipes/tools/netherite_axe_smithing.json
deleted file mode 100644
index aa37d1b..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/netherite_axe_smithing.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_netherite_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:netherite_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:netherite_axe_smithing"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_netherite_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:netherite_axe_smithing"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/netherite_hoe_smithing.json b/src/main/resources/data/minecraft/advancement/recipes/tools/netherite_hoe_smithing.json
deleted file mode 100644
index 137ad2f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/netherite_hoe_smithing.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_netherite_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:netherite_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:netherite_hoe_smithing"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_netherite_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:netherite_hoe_smithing"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/netherite_pickaxe_smithing.json b/src/main/resources/data/minecraft/advancement/recipes/tools/netherite_pickaxe_smithing.json
deleted file mode 100644
index efaeb52..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/netherite_pickaxe_smithing.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_netherite_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:netherite_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:netherite_pickaxe_smithing"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_netherite_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:netherite_pickaxe_smithing"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/netherite_shovel_smithing.json b/src/main/resources/data/minecraft/advancement/recipes/tools/netherite_shovel_smithing.json
deleted file mode 100644
index e6db20d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/netherite_shovel_smithing.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_netherite_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:netherite_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:netherite_shovel_smithing"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_netherite_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:netherite_shovel_smithing"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/recovery_compass.json b/src/main/resources/data/minecraft/advancement/recipes/tools/recovery_compass.json
deleted file mode 100644
index 22a7b88..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/recovery_compass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_echo_shard": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:echo_shard"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:recovery_compass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_echo_shard"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:recovery_compass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/shears.json b/src/main/resources/data/minecraft/advancement/recipes/tools/shears.json
deleted file mode 100644
index 4bf08ac..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/shears.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:shears"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:shears"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/spyglass.json b/src/main/resources/data/minecraft/advancement/recipes/tools/spyglass.json
deleted file mode 100644
index de0605c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/spyglass.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_amethyst_shard": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:amethyst_shard"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:spyglass"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_amethyst_shard"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:spyglass"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/stone_axe.json b/src/main/resources/data/minecraft/advancement/recipes/tools/stone_axe.json
deleted file mode 100644
index b2fd156..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/stone_axe.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:stone_tool_materials"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_axe"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_axe"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/stone_hoe.json b/src/main/resources/data/minecraft/advancement/recipes/tools/stone_hoe.json
deleted file mode 100644
index ef5185c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/stone_hoe.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:stone_tool_materials"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_hoe"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_hoe"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/stone_pickaxe.json b/src/main/resources/data/minecraft/advancement/recipes/tools/stone_pickaxe.json
deleted file mode 100644
index 1377811..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/stone_pickaxe.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:stone_tool_materials"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_pickaxe"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_pickaxe"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/stone_shovel.json b/src/main/resources/data/minecraft/advancement/recipes/tools/stone_shovel.json
deleted file mode 100644
index cf566f5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/stone_shovel.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_cobblestone": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:stone_tool_materials"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:stone_shovel"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_cobblestone"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:stone_shovel"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/wooden_axe.json b/src/main/resources/data/minecraft/advancement/recipes/tools/wooden_axe.json
deleted file mode 100644
index f058032..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/wooden_axe.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stick": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stick"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:wooden_axe"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stick"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:wooden_axe"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/wooden_hoe.json b/src/main/resources/data/minecraft/advancement/recipes/tools/wooden_hoe.json
deleted file mode 100644
index 35cefbd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/wooden_hoe.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stick": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stick"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:wooden_hoe"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stick"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:wooden_hoe"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/wooden_pickaxe.json b/src/main/resources/data/minecraft/advancement/recipes/tools/wooden_pickaxe.json
deleted file mode 100644
index e88dc29..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/wooden_pickaxe.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stick": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stick"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:wooden_pickaxe"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stick"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:wooden_pickaxe"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/tools/wooden_shovel.json b/src/main/resources/data/minecraft/advancement/recipes/tools/wooden_shovel.json
deleted file mode 100644
index 8fab2e7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/tools/wooden_shovel.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_stick": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stick"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:wooden_shovel"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_stick"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:wooden_shovel"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/acacia_boat.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/acacia_boat.json
deleted file mode 100644
index ea11dff..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/acacia_boat.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:acacia_boat"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "in_water": {
- "conditions": {
- "block": "minecraft:water"
- },
- "trigger": "minecraft:enter_block"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "in_water"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:acacia_boat"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/acacia_chest_boat.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/acacia_chest_boat.json
deleted file mode 100644
index abe7cd3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/acacia_chest_boat.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_boat": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:boats"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:acacia_chest_boat"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_boat"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:acacia_chest_boat"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/activator_rail.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/activator_rail.json
deleted file mode 100644
index 45aabf4..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/activator_rail.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_rail": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:rail"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:activator_rail"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_rail"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:activator_rail"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/bamboo_chest_raft.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/bamboo_chest_raft.json
deleted file mode 100644
index 3c35ddc..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/bamboo_chest_raft.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_boat": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:boats"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bamboo_chest_raft"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_boat"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bamboo_chest_raft"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/bamboo_raft.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/bamboo_raft.json
deleted file mode 100644
index cd845a7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/bamboo_raft.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:bamboo_raft"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "in_water": {
- "conditions": {
- "block": "minecraft:water"
- },
- "trigger": "minecraft:enter_block"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "in_water"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:bamboo_raft"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/birch_boat.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/birch_boat.json
deleted file mode 100644
index aabc78e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/birch_boat.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:birch_boat"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "in_water": {
- "conditions": {
- "block": "minecraft:water"
- },
- "trigger": "minecraft:enter_block"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "in_water"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:birch_boat"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/birch_chest_boat.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/birch_chest_boat.json
deleted file mode 100644
index a3467b9..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/birch_chest_boat.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_boat": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:boats"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:birch_chest_boat"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_boat"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:birch_chest_boat"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/carrot_on_a_stick.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/carrot_on_a_stick.json
deleted file mode 100644
index e7b3101..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/carrot_on_a_stick.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_carrot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:carrot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:carrot_on_a_stick"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_carrot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:carrot_on_a_stick"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/cherry_boat.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/cherry_boat.json
deleted file mode 100644
index e72ccdf..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/cherry_boat.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cherry_boat"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "in_water": {
- "conditions": {
- "block": "minecraft:water"
- },
- "trigger": "minecraft:enter_block"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "in_water"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cherry_boat"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/cherry_chest_boat.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/cherry_chest_boat.json
deleted file mode 100644
index 8b87f01..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/cherry_chest_boat.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_boat": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:boats"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:cherry_chest_boat"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_boat"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:cherry_chest_boat"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/chest_minecart.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/chest_minecart.json
deleted file mode 100644
index 5d5ba03..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/chest_minecart.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_minecart": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:minecart"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:chest_minecart"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_minecart"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:chest_minecart"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/dark_oak_boat.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/dark_oak_boat.json
deleted file mode 100644
index 6557ca3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/dark_oak_boat.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_oak_boat"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "in_water": {
- "conditions": {
- "block": "minecraft:water"
- },
- "trigger": "minecraft:enter_block"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "in_water"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_oak_boat"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/dark_oak_chest_boat.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/dark_oak_chest_boat.json
deleted file mode 100644
index 98236f7..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/dark_oak_chest_boat.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_boat": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:boats"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:dark_oak_chest_boat"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_boat"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:dark_oak_chest_boat"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/detector_rail.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/detector_rail.json
deleted file mode 100644
index cd2915e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/detector_rail.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_rail": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:rail"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:detector_rail"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_rail"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:detector_rail"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/furnace_minecart.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/furnace_minecart.json
deleted file mode 100644
index a095f3f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/furnace_minecart.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_minecart": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:minecart"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:furnace_minecart"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_minecart"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:furnace_minecart"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/hopper_minecart.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/hopper_minecart.json
deleted file mode 100644
index 7ba8f53..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/hopper_minecart.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_minecart": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:minecart"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:hopper_minecart"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_minecart"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:hopper_minecart"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/jungle_boat.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/jungle_boat.json
deleted file mode 100644
index 604555d..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/jungle_boat.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:jungle_boat"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "in_water": {
- "conditions": {
- "block": "minecraft:water"
- },
- "trigger": "minecraft:enter_block"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "in_water"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:jungle_boat"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/jungle_chest_boat.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/jungle_chest_boat.json
deleted file mode 100644
index 506945c..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/jungle_chest_boat.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_boat": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:boats"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:jungle_chest_boat"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_boat"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:jungle_chest_boat"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/mangrove_boat.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/mangrove_boat.json
deleted file mode 100644
index 2b778cd..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/mangrove_boat.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mangrove_boat"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "in_water": {
- "conditions": {
- "block": "minecraft:water"
- },
- "trigger": "minecraft:enter_block"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "in_water"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mangrove_boat"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/mangrove_chest_boat.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/mangrove_chest_boat.json
deleted file mode 100644
index 8b2d68f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/mangrove_chest_boat.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_boat": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:boats"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:mangrove_chest_boat"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_boat"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:mangrove_chest_boat"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/minecart.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/minecart.json
deleted file mode 100644
index 0bc6a68..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/minecart.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_iron_ingot": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:minecart"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_iron_ingot"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:minecart"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/oak_boat.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/oak_boat.json
deleted file mode 100644
index 6ffdc38..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/oak_boat.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oak_boat"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "in_water": {
- "conditions": {
- "block": "minecraft:water"
- },
- "trigger": "minecraft:enter_block"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "in_water"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oak_boat"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/oak_chest_boat.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/oak_chest_boat.json
deleted file mode 100644
index 141388f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/oak_chest_boat.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_boat": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:boats"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:oak_chest_boat"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_boat"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:oak_chest_boat"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/powered_rail.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/powered_rail.json
deleted file mode 100644
index 5e504c5..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/powered_rail.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_rail": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:rail"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:powered_rail"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_rail"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:powered_rail"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/rail.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/rail.json
deleted file mode 100644
index 78e0b5f..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/rail.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_minecart": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:minecart"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:rail"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_minecart"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:rail"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/spruce_boat.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/spruce_boat.json
deleted file mode 100644
index 70ae85e..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/spruce_boat.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:spruce_boat"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "in_water": {
- "conditions": {
- "block": "minecraft:water"
- },
- "trigger": "minecraft:enter_block"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "in_water"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:spruce_boat"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/spruce_chest_boat.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/spruce_chest_boat.json
deleted file mode 100644
index b365bc2..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/spruce_chest_boat.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_boat": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:boats"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:spruce_chest_boat"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_boat"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:spruce_chest_boat"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/tnt_minecart.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/tnt_minecart.json
deleted file mode 100644
index 86146c6..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/tnt_minecart.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_minecart": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:minecart"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:tnt_minecart"
- },
- "trigger": "minecraft:recipe_unlocked"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_minecart"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:tnt_minecart"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/recipes/transportation/warped_fungus_on_a_stick.json b/src/main/resources/data/minecraft/advancement/recipes/transportation/warped_fungus_on_a_stick.json
deleted file mode 100644
index 8cdeba3..0000000
--- a/src/main/resources/data/minecraft/advancement/recipes/transportation/warped_fungus_on_a_stick.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "parent": "minecraft:recipes/root",
- "criteria": {
- "has_the_recipe": {
- "conditions": {
- "recipe": "minecraft:warped_fungus_on_a_stick"
- },
- "trigger": "minecraft:recipe_unlocked"
- },
- "has_warped_fungus": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:warped_fungus"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "requirements": [
- [
- "has_the_recipe",
- "has_warped_fungus"
- ]
- ],
- "rewards": {
- "recipes": [
- "minecraft:warped_fungus_on_a_stick"
- ]
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/story/cure_zombie_villager.json b/src/main/resources/data/minecraft/advancement/story/cure_zombie_villager.json
deleted file mode 100644
index 47058cc..0000000
--- a/src/main/resources/data/minecraft/advancement/story/cure_zombie_villager.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "parent": "minecraft:story/enter_the_nether",
- "criteria": {
- "cured_zombie": {
- "trigger": "minecraft:cured_zombie_villager"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.story.cure_zombie_villager.description"
- },
- "frame": "goal",
- "icon": {
- "count": 1,
- "id": "minecraft:golden_apple"
- },
- "title": {
- "translate": "advancements.story.cure_zombie_villager.title"
- }
- },
- "requirements": [
- [
- "cured_zombie"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/story/deflect_arrow.json b/src/main/resources/data/minecraft/advancement/story/deflect_arrow.json
deleted file mode 100644
index 33264f0..0000000
--- a/src/main/resources/data/minecraft/advancement/story/deflect_arrow.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "parent": "minecraft:story/obtain_armor",
- "criteria": {
- "deflected_projectile": {
- "conditions": {
- "damage": {
- "type": {
- "tags": [
- {
- "expected": true,
- "id": "minecraft:is_projectile"
- }
- ]
- },
- "blocked": true
- }
- },
- "trigger": "minecraft:entity_hurt_player"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.story.deflect_arrow.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:shield"
- },
- "title": {
- "translate": "advancements.story.deflect_arrow.title"
- }
- },
- "requirements": [
- [
- "deflected_projectile"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/story/enchant_item.json b/src/main/resources/data/minecraft/advancement/story/enchant_item.json
deleted file mode 100644
index 744752a..0000000
--- a/src/main/resources/data/minecraft/advancement/story/enchant_item.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "parent": "minecraft:story/mine_diamond",
- "criteria": {
- "enchanted_item": {
- "trigger": "minecraft:enchanted_item"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.story.enchant_item.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:enchanted_book"
- },
- "title": {
- "translate": "advancements.story.enchant_item.title"
- }
- },
- "requirements": [
- [
- "enchanted_item"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/story/enter_the_end.json b/src/main/resources/data/minecraft/advancement/story/enter_the_end.json
deleted file mode 100644
index eaf4506..0000000
--- a/src/main/resources/data/minecraft/advancement/story/enter_the_end.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "parent": "minecraft:story/follow_ender_eye",
- "criteria": {
- "entered_end": {
- "conditions": {
- "to": "minecraft:the_end"
- },
- "trigger": "minecraft:changed_dimension"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.story.enter_the_end.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:end_stone"
- },
- "title": {
- "translate": "advancements.story.enter_the_end.title"
- }
- },
- "requirements": [
- [
- "entered_end"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/story/enter_the_nether.json b/src/main/resources/data/minecraft/advancement/story/enter_the_nether.json
deleted file mode 100644
index e8a4e32..0000000
--- a/src/main/resources/data/minecraft/advancement/story/enter_the_nether.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "parent": "minecraft:story/form_obsidian",
- "criteria": {
- "entered_nether": {
- "conditions": {
- "to": "minecraft:the_nether"
- },
- "trigger": "minecraft:changed_dimension"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.story.enter_the_nether.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:flint_and_steel"
- },
- "title": {
- "translate": "advancements.story.enter_the_nether.title"
- }
- },
- "requirements": [
- [
- "entered_nether"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/story/follow_ender_eye.json b/src/main/resources/data/minecraft/advancement/story/follow_ender_eye.json
deleted file mode 100644
index a5ccee6..0000000
--- a/src/main/resources/data/minecraft/advancement/story/follow_ender_eye.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "parent": "minecraft:story/enter_the_nether",
- "criteria": {
- "in_stronghold": {
- "conditions": {
- "player": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "structures": "minecraft:stronghold"
- }
- }
- }
- ]
- },
- "trigger": "minecraft:location"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.story.follow_ender_eye.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:ender_eye"
- },
- "title": {
- "translate": "advancements.story.follow_ender_eye.title"
- }
- },
- "requirements": [
- [
- "in_stronghold"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/story/form_obsidian.json b/src/main/resources/data/minecraft/advancement/story/form_obsidian.json
deleted file mode 100644
index f1c5103..0000000
--- a/src/main/resources/data/minecraft/advancement/story/form_obsidian.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "parent": "minecraft:story/lava_bucket",
- "criteria": {
- "obsidian": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:obsidian"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.story.form_obsidian.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:obsidian"
- },
- "title": {
- "translate": "advancements.story.form_obsidian.title"
- }
- },
- "requirements": [
- [
- "obsidian"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/story/iron_tools.json b/src/main/resources/data/minecraft/advancement/story/iron_tools.json
deleted file mode 100644
index e195c9e..0000000
--- a/src/main/resources/data/minecraft/advancement/story/iron_tools.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "parent": "minecraft:story/smelt_iron",
- "criteria": {
- "iron_pickaxe": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_pickaxe"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.story.iron_tools.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:iron_pickaxe"
- },
- "title": {
- "translate": "advancements.story.iron_tools.title"
- }
- },
- "requirements": [
- [
- "iron_pickaxe"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/story/lava_bucket.json b/src/main/resources/data/minecraft/advancement/story/lava_bucket.json
deleted file mode 100644
index 7c229b8..0000000
--- a/src/main/resources/data/minecraft/advancement/story/lava_bucket.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "parent": "minecraft:story/smelt_iron",
- "criteria": {
- "lava_bucket": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:lava_bucket"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.story.lava_bucket.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:lava_bucket"
- },
- "title": {
- "translate": "advancements.story.lava_bucket.title"
- }
- },
- "requirements": [
- [
- "lava_bucket"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/story/mine_diamond.json b/src/main/resources/data/minecraft/advancement/story/mine_diamond.json
deleted file mode 100644
index db99a92..0000000
--- a/src/main/resources/data/minecraft/advancement/story/mine_diamond.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "parent": "minecraft:story/iron_tools",
- "criteria": {
- "diamond": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.story.mine_diamond.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:diamond"
- },
- "title": {
- "translate": "advancements.story.mine_diamond.title"
- }
- },
- "requirements": [
- [
- "diamond"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/story/mine_stone.json b/src/main/resources/data/minecraft/advancement/story/mine_stone.json
deleted file mode 100644
index 2a38800..0000000
--- a/src/main/resources/data/minecraft/advancement/story/mine_stone.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "parent": "minecraft:story/root",
- "criteria": {
- "get_stone": {
- "conditions": {
- "items": [
- {
- "items": "#minecraft:stone_tool_materials"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.story.mine_stone.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:wooden_pickaxe"
- },
- "title": {
- "translate": "advancements.story.mine_stone.title"
- }
- },
- "requirements": [
- [
- "get_stone"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/story/obtain_armor.json b/src/main/resources/data/minecraft/advancement/story/obtain_armor.json
deleted file mode 100644
index 2d2ffb3..0000000
--- a/src/main/resources/data/minecraft/advancement/story/obtain_armor.json
+++ /dev/null
@@ -1,66 +0,0 @@
-{
- "parent": "minecraft:story/smelt_iron",
- "criteria": {
- "iron_boots": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_boots"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "iron_chestplate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_chestplate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "iron_helmet": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_helmet"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "iron_leggings": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_leggings"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.story.obtain_armor.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:iron_chestplate"
- },
- "title": {
- "translate": "advancements.story.obtain_armor.title"
- }
- },
- "requirements": [
- [
- "iron_helmet",
- "iron_chestplate",
- "iron_leggings",
- "iron_boots"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/story/root.json b/src/main/resources/data/minecraft/advancement/story/root.json
deleted file mode 100644
index 0526a2b..0000000
--- a/src/main/resources/data/minecraft/advancement/story/root.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "criteria": {
- "crafting_table": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:crafting_table"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "announce_to_chat": false,
- "background": "minecraft:textures/gui/advancements/backgrounds/stone.png",
- "description": {
- "translate": "advancements.story.root.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:grass_block"
- },
- "show_toast": false,
- "title": {
- "translate": "advancements.story.root.title"
- }
- },
- "requirements": [
- [
- "crafting_table"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/story/shiny_gear.json b/src/main/resources/data/minecraft/advancement/story/shiny_gear.json
deleted file mode 100644
index 80fc868..0000000
--- a/src/main/resources/data/minecraft/advancement/story/shiny_gear.json
+++ /dev/null
@@ -1,66 +0,0 @@
-{
- "parent": "minecraft:story/mine_diamond",
- "criteria": {
- "diamond_boots": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond_boots"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "diamond_chestplate": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond_chestplate"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "diamond_helmet": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond_helmet"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- },
- "diamond_leggings": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:diamond_leggings"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.story.shiny_gear.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:diamond_chestplate"
- },
- "title": {
- "translate": "advancements.story.shiny_gear.title"
- }
- },
- "requirements": [
- [
- "diamond_helmet",
- "diamond_chestplate",
- "diamond_leggings",
- "diamond_boots"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/story/smelt_iron.json b/src/main/resources/data/minecraft/advancement/story/smelt_iron.json
deleted file mode 100644
index 0b11043..0000000
--- a/src/main/resources/data/minecraft/advancement/story/smelt_iron.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "parent": "minecraft:story/upgrade_tools",
- "criteria": {
- "iron": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:iron_ingot"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.story.smelt_iron.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:iron_ingot"
- },
- "title": {
- "translate": "advancements.story.smelt_iron.title"
- }
- },
- "requirements": [
- [
- "iron"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/advancement/story/upgrade_tools.json b/src/main/resources/data/minecraft/advancement/story/upgrade_tools.json
deleted file mode 100644
index 0d396a8..0000000
--- a/src/main/resources/data/minecraft/advancement/story/upgrade_tools.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "parent": "minecraft:story/mine_stone",
- "criteria": {
- "stone_pickaxe": {
- "conditions": {
- "items": [
- {
- "items": "minecraft:stone_pickaxe"
- }
- ]
- },
- "trigger": "minecraft:inventory_changed"
- }
- },
- "display": {
- "description": {
- "translate": "advancements.story.upgrade_tools.description"
- },
- "icon": {
- "count": 1,
- "id": "minecraft:stone_pickaxe"
- },
- "title": {
- "translate": "advancements.story.upgrade_tools.title"
- }
- },
- "requirements": [
- [
- "stone_pickaxe"
- ]
- ],
- "sends_telemetry_event": true
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/base.json b/src/main/resources/data/minecraft/banner_pattern/base.json
deleted file mode 100644
index 2b9ca99..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/base.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:base",
- "translation_key": "block.minecraft.banner.base"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/border.json b/src/main/resources/data/minecraft/banner_pattern/border.json
deleted file mode 100644
index 02a7140..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/border.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:border",
- "translation_key": "block.minecraft.banner.border"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/bricks.json b/src/main/resources/data/minecraft/banner_pattern/bricks.json
deleted file mode 100644
index 96fb4af..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/bricks.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:bricks",
- "translation_key": "block.minecraft.banner.bricks"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/circle.json b/src/main/resources/data/minecraft/banner_pattern/circle.json
deleted file mode 100644
index 6be3abb..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/circle.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:circle",
- "translation_key": "block.minecraft.banner.circle"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/creeper.json b/src/main/resources/data/minecraft/banner_pattern/creeper.json
deleted file mode 100644
index d40f1a0..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/creeper.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:creeper",
- "translation_key": "block.minecraft.banner.creeper"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/cross.json b/src/main/resources/data/minecraft/banner_pattern/cross.json
deleted file mode 100644
index 7aaebd1..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/cross.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:cross",
- "translation_key": "block.minecraft.banner.cross"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/curly_border.json b/src/main/resources/data/minecraft/banner_pattern/curly_border.json
deleted file mode 100644
index 075a738..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/curly_border.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:curly_border",
- "translation_key": "block.minecraft.banner.curly_border"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/diagonal_left.json b/src/main/resources/data/minecraft/banner_pattern/diagonal_left.json
deleted file mode 100644
index aded65e..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/diagonal_left.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:diagonal_left",
- "translation_key": "block.minecraft.banner.diagonal_left"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/diagonal_right.json b/src/main/resources/data/minecraft/banner_pattern/diagonal_right.json
deleted file mode 100644
index 118712e..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/diagonal_right.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:diagonal_right",
- "translation_key": "block.minecraft.banner.diagonal_right"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/diagonal_up_left.json b/src/main/resources/data/minecraft/banner_pattern/diagonal_up_left.json
deleted file mode 100644
index 03568b5..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/diagonal_up_left.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:diagonal_up_left",
- "translation_key": "block.minecraft.banner.diagonal_up_left"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/diagonal_up_right.json b/src/main/resources/data/minecraft/banner_pattern/diagonal_up_right.json
deleted file mode 100644
index fd565eb..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/diagonal_up_right.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:diagonal_up_right",
- "translation_key": "block.minecraft.banner.diagonal_up_right"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/flow.json b/src/main/resources/data/minecraft/banner_pattern/flow.json
deleted file mode 100644
index 00ec9c5..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/flow.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:flow",
- "translation_key": "block.minecraft.banner.flow"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/flower.json b/src/main/resources/data/minecraft/banner_pattern/flower.json
deleted file mode 100644
index 61d1dac..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/flower.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:flower",
- "translation_key": "block.minecraft.banner.flower"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/globe.json b/src/main/resources/data/minecraft/banner_pattern/globe.json
deleted file mode 100644
index 8de960d..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/globe.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:globe",
- "translation_key": "block.minecraft.banner.globe"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/gradient.json b/src/main/resources/data/minecraft/banner_pattern/gradient.json
deleted file mode 100644
index a006dee..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/gradient.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:gradient",
- "translation_key": "block.minecraft.banner.gradient"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/gradient_up.json b/src/main/resources/data/minecraft/banner_pattern/gradient_up.json
deleted file mode 100644
index 13e3ec0..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/gradient_up.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:gradient_up",
- "translation_key": "block.minecraft.banner.gradient_up"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/guster.json b/src/main/resources/data/minecraft/banner_pattern/guster.json
deleted file mode 100644
index 99f7d6b..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/guster.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:guster",
- "translation_key": "block.minecraft.banner.guster"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/half_horizontal.json b/src/main/resources/data/minecraft/banner_pattern/half_horizontal.json
deleted file mode 100644
index 79f588c..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/half_horizontal.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:half_horizontal",
- "translation_key": "block.minecraft.banner.half_horizontal"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/half_horizontal_bottom.json b/src/main/resources/data/minecraft/banner_pattern/half_horizontal_bottom.json
deleted file mode 100644
index ae9e1b2..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/half_horizontal_bottom.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:half_horizontal_bottom",
- "translation_key": "block.minecraft.banner.half_horizontal_bottom"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/half_vertical.json b/src/main/resources/data/minecraft/banner_pattern/half_vertical.json
deleted file mode 100644
index 402cb01..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/half_vertical.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:half_vertical",
- "translation_key": "block.minecraft.banner.half_vertical"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/half_vertical_right.json b/src/main/resources/data/minecraft/banner_pattern/half_vertical_right.json
deleted file mode 100644
index 0f3d722..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/half_vertical_right.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:half_vertical_right",
- "translation_key": "block.minecraft.banner.half_vertical_right"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/mojang.json b/src/main/resources/data/minecraft/banner_pattern/mojang.json
deleted file mode 100644
index fb8de92..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/mojang.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:mojang",
- "translation_key": "block.minecraft.banner.mojang"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/piglin.json b/src/main/resources/data/minecraft/banner_pattern/piglin.json
deleted file mode 100644
index 7250324..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/piglin.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:piglin",
- "translation_key": "block.minecraft.banner.piglin"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/rhombus.json b/src/main/resources/data/minecraft/banner_pattern/rhombus.json
deleted file mode 100644
index 445cc9c..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/rhombus.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:rhombus",
- "translation_key": "block.minecraft.banner.rhombus"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/skull.json b/src/main/resources/data/minecraft/banner_pattern/skull.json
deleted file mode 100644
index 1047618..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/skull.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:skull",
- "translation_key": "block.minecraft.banner.skull"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/small_stripes.json b/src/main/resources/data/minecraft/banner_pattern/small_stripes.json
deleted file mode 100644
index fd76fc0..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/small_stripes.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:small_stripes",
- "translation_key": "block.minecraft.banner.small_stripes"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/square_bottom_left.json b/src/main/resources/data/minecraft/banner_pattern/square_bottom_left.json
deleted file mode 100644
index f7376d6..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/square_bottom_left.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:square_bottom_left",
- "translation_key": "block.minecraft.banner.square_bottom_left"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/square_bottom_right.json b/src/main/resources/data/minecraft/banner_pattern/square_bottom_right.json
deleted file mode 100644
index b78aafa..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/square_bottom_right.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:square_bottom_right",
- "translation_key": "block.minecraft.banner.square_bottom_right"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/square_top_left.json b/src/main/resources/data/minecraft/banner_pattern/square_top_left.json
deleted file mode 100644
index a1505ad..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/square_top_left.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:square_top_left",
- "translation_key": "block.minecraft.banner.square_top_left"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/square_top_right.json b/src/main/resources/data/minecraft/banner_pattern/square_top_right.json
deleted file mode 100644
index 3b09965..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/square_top_right.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:square_top_right",
- "translation_key": "block.minecraft.banner.square_top_right"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/straight_cross.json b/src/main/resources/data/minecraft/banner_pattern/straight_cross.json
deleted file mode 100644
index 8df6cdc..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/straight_cross.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:straight_cross",
- "translation_key": "block.minecraft.banner.straight_cross"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/stripe_bottom.json b/src/main/resources/data/minecraft/banner_pattern/stripe_bottom.json
deleted file mode 100644
index 0aa50a5..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/stripe_bottom.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:stripe_bottom",
- "translation_key": "block.minecraft.banner.stripe_bottom"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/stripe_center.json b/src/main/resources/data/minecraft/banner_pattern/stripe_center.json
deleted file mode 100644
index 98fc7ab..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/stripe_center.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:stripe_center",
- "translation_key": "block.minecraft.banner.stripe_center"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/stripe_downleft.json b/src/main/resources/data/minecraft/banner_pattern/stripe_downleft.json
deleted file mode 100644
index 4034606..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/stripe_downleft.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:stripe_downleft",
- "translation_key": "block.minecraft.banner.stripe_downleft"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/stripe_downright.json b/src/main/resources/data/minecraft/banner_pattern/stripe_downright.json
deleted file mode 100644
index 3d5d185..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/stripe_downright.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:stripe_downright",
- "translation_key": "block.minecraft.banner.stripe_downright"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/stripe_left.json b/src/main/resources/data/minecraft/banner_pattern/stripe_left.json
deleted file mode 100644
index e47d144..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/stripe_left.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:stripe_left",
- "translation_key": "block.minecraft.banner.stripe_left"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/stripe_middle.json b/src/main/resources/data/minecraft/banner_pattern/stripe_middle.json
deleted file mode 100644
index 2a45a92..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/stripe_middle.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:stripe_middle",
- "translation_key": "block.minecraft.banner.stripe_middle"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/stripe_right.json b/src/main/resources/data/minecraft/banner_pattern/stripe_right.json
deleted file mode 100644
index d36b02a..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/stripe_right.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:stripe_right",
- "translation_key": "block.minecraft.banner.stripe_right"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/stripe_top.json b/src/main/resources/data/minecraft/banner_pattern/stripe_top.json
deleted file mode 100644
index 620c2b5..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/stripe_top.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:stripe_top",
- "translation_key": "block.minecraft.banner.stripe_top"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/triangle_bottom.json b/src/main/resources/data/minecraft/banner_pattern/triangle_bottom.json
deleted file mode 100644
index b6d0952..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/triangle_bottom.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:triangle_bottom",
- "translation_key": "block.minecraft.banner.triangle_bottom"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/triangle_top.json b/src/main/resources/data/minecraft/banner_pattern/triangle_top.json
deleted file mode 100644
index 291315d..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/triangle_top.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:triangle_top",
- "translation_key": "block.minecraft.banner.triangle_top"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/triangles_bottom.json b/src/main/resources/data/minecraft/banner_pattern/triangles_bottom.json
deleted file mode 100644
index b837ad0..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/triangles_bottom.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:triangles_bottom",
- "translation_key": "block.minecraft.banner.triangles_bottom"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/banner_pattern/triangles_top.json b/src/main/resources/data/minecraft/banner_pattern/triangles_top.json
deleted file mode 100644
index 370c045..0000000
--- a/src/main/resources/data/minecraft/banner_pattern/triangles_top.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "asset_id": "minecraft:triangles_top",
- "translation_key": "block.minecraft.banner.triangles_top"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/damage_type/ender_pearl.json b/src/main/resources/data/minecraft/damage_type/ender_pearl.json
new file mode 100644
index 0000000..511ec35
--- /dev/null
+++ b/src/main/resources/data/minecraft/damage_type/ender_pearl.json
@@ -0,0 +1,6 @@
+{
+ "death_message_type": "fall_variants",
+ "exhaustion": 0.0,
+ "message_id": "fall",
+ "scaling": "when_caused_by_living_non_player"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/damage_type/mace_smash.json b/src/main/resources/data/minecraft/damage_type/mace_smash.json
new file mode 100644
index 0000000..931f77c
--- /dev/null
+++ b/src/main/resources/data/minecraft/damage_type/mace_smash.json
@@ -0,0 +1,5 @@
+{
+ "exhaustion": 0.1,
+ "message_id": "mace_smash",
+ "scaling": "when_caused_by_living_non_player"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/aqua_affinity.json b/src/main/resources/data/minecraft/enchantment/aqua_affinity.json
deleted file mode 100644
index 42c5461..0000000
--- a/src/main/resources/data/minecraft/enchantment/aqua_affinity.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.aqua_affinity"
- },
- "effects": {
- "minecraft:attributes": [
- {
- "amount": {
- "type": "minecraft:linear",
- "base": 4.0,
- "per_level_above_first": 4.0
- },
- "attribute": "minecraft:player.submerged_mining_speed",
- "id": "minecraft:enchantment.aqua_affinity",
- "operation": "add_multiplied_total"
- }
- ]
- },
- "max_cost": {
- "base": 41,
- "per_level_above_first": 0
- },
- "max_level": 1,
- "min_cost": {
- "base": 1,
- "per_level_above_first": 0
- },
- "slots": [
- "head"
- ],
- "supported_items": "#minecraft:enchantable/head_armor",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/bane_of_arthropods.json b/src/main/resources/data/minecraft/enchantment/bane_of_arthropods.json
deleted file mode 100644
index b42f720..0000000
--- a/src/main/resources/data/minecraft/enchantment/bane_of_arthropods.json
+++ /dev/null
@@ -1,79 +0,0 @@
-{
- "anvil_cost": 2,
- "description": {
- "translate": "enchantment.minecraft.bane_of_arthropods"
- },
- "effects": {
- "minecraft:damage": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 2.5,
- "per_level_above_first": 2.5
- }
- },
- "requirements": {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "#minecraft:sensitive_to_bane_of_arthropods"
- }
- }
- }
- ],
- "minecraft:post_attack": [
- {
- "affected": "victim",
- "effect": {
- "type": "minecraft:apply_mob_effect",
- "max_amplifier": 3.0,
- "max_duration": {
- "type": "minecraft:linear",
- "base": 1.5,
- "per_level_above_first": 0.5
- },
- "min_amplifier": 3.0,
- "min_duration": 1.5,
- "to_apply": "minecraft:slowness"
- },
- "enchanted": "attacker",
- "requirements": {
- "condition": "minecraft:all_of",
- "terms": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "#minecraft:sensitive_to_bane_of_arthropods"
- }
- },
- {
- "condition": "minecraft:damage_source_properties",
- "predicate": {
- "is_direct": true
- }
- }
- ]
- }
- }
- ]
- },
- "exclusive_set": "#minecraft:exclusive_set/damage",
- "max_cost": {
- "base": 25,
- "per_level_above_first": 8
- },
- "max_level": 5,
- "min_cost": {
- "base": 5,
- "per_level_above_first": 8
- },
- "primary_items": "#minecraft:enchantable/sword",
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/weapon",
- "weight": 5
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/binding_curse.json b/src/main/resources/data/minecraft/enchantment/binding_curse.json
deleted file mode 100644
index 69f255a..0000000
--- a/src/main/resources/data/minecraft/enchantment/binding_curse.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "anvil_cost": 8,
- "description": {
- "translate": "enchantment.minecraft.binding_curse"
- },
- "effects": {
- "minecraft:prevent_armor_change": {}
- },
- "max_cost": {
- "base": 50,
- "per_level_above_first": 0
- },
- "max_level": 1,
- "min_cost": {
- "base": 25,
- "per_level_above_first": 0
- },
- "slots": [
- "armor"
- ],
- "supported_items": "#minecraft:enchantable/equippable",
- "weight": 1
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/blast_protection.json b/src/main/resources/data/minecraft/enchantment/blast_protection.json
deleted file mode 100644
index aa6d78f..0000000
--- a/src/main/resources/data/minecraft/enchantment/blast_protection.json
+++ /dev/null
@@ -1,62 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.blast_protection"
- },
- "effects": {
- "minecraft:attributes": [
- {
- "amount": {
- "type": "minecraft:linear",
- "base": 0.15,
- "per_level_above_first": 0.15
- },
- "attribute": "minecraft:generic.explosion_knockback_resistance",
- "id": "minecraft:enchantment.blast_protection",
- "operation": "add_value"
- }
- ],
- "minecraft:damage_protection": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 2.0,
- "per_level_above_first": 2.0
- }
- },
- "requirements": {
- "condition": "minecraft:damage_source_properties",
- "predicate": {
- "tags": [
- {
- "expected": true,
- "id": "minecraft:is_explosion"
- },
- {
- "expected": false,
- "id": "minecraft:bypasses_invulnerability"
- }
- ]
- }
- }
- }
- ]
- },
- "exclusive_set": "#minecraft:exclusive_set/armor",
- "max_cost": {
- "base": 13,
- "per_level_above_first": 8
- },
- "max_level": 4,
- "min_cost": {
- "base": 5,
- "per_level_above_first": 8
- },
- "slots": [
- "armor"
- ],
- "supported_items": "#minecraft:enchantable/armor",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/breach.json b/src/main/resources/data/minecraft/enchantment/breach.json
deleted file mode 100644
index deab4e6..0000000
--- a/src/main/resources/data/minecraft/enchantment/breach.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.breach"
- },
- "effects": {
- "minecraft:armor_effectiveness": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": -0.15,
- "per_level_above_first": -0.15
- }
- }
- }
- ]
- },
- "exclusive_set": "#minecraft:exclusive_set/damage",
- "max_cost": {
- "base": 65,
- "per_level_above_first": 9
- },
- "max_level": 4,
- "min_cost": {
- "base": 15,
- "per_level_above_first": 9
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/mace",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/channeling.json b/src/main/resources/data/minecraft/enchantment/channeling.json
deleted file mode 100644
index fae5a6b..0000000
--- a/src/main/resources/data/minecraft/enchantment/channeling.json
+++ /dev/null
@@ -1,113 +0,0 @@
-{
- "anvil_cost": 8,
- "description": {
- "translate": "enchantment.minecraft.channeling"
- },
- "effects": {
- "minecraft:hit_block": [
- {
- "effect": {
- "type": "minecraft:all_of",
- "effects": [
- {
- "type": "minecraft:summon_entity",
- "entity": "minecraft:lightning_bolt"
- },
- {
- "type": "minecraft:play_sound",
- "pitch": 1.0,
- "sound": "minecraft:item.trident.thunder",
- "volume": 5.0
- }
- ]
- },
- "requirements": {
- "condition": "minecraft:all_of",
- "terms": [
- {
- "condition": "minecraft:weather_check",
- "thundering": true
- },
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "minecraft:trident"
- }
- },
- {
- "condition": "minecraft:location_check",
- "predicate": {
- "can_see_sky": true
- }
- },
- {
- "block": "minecraft:lightning_rod",
- "condition": "minecraft:block_state_property"
- }
- ]
- }
- }
- ],
- "minecraft:post_attack": [
- {
- "affected": "victim",
- "effect": {
- "type": "minecraft:all_of",
- "effects": [
- {
- "type": "minecraft:summon_entity",
- "entity": "minecraft:lightning_bolt"
- },
- {
- "type": "minecraft:play_sound",
- "pitch": 1.0,
- "sound": "minecraft:item.trident.thunder",
- "volume": 5.0
- }
- ]
- },
- "enchanted": "attacker",
- "requirements": {
- "condition": "minecraft:all_of",
- "terms": [
- {
- "condition": "minecraft:weather_check",
- "thundering": true
- },
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "location": {
- "can_see_sky": true
- }
- }
- },
- {
- "condition": "minecraft:entity_properties",
- "entity": "direct_attacker",
- "predicate": {
- "type": "minecraft:trident"
- }
- }
- ]
- }
- }
- ]
- },
- "max_cost": {
- "base": 50,
- "per_level_above_first": 0
- },
- "max_level": 1,
- "min_cost": {
- "base": 25,
- "per_level_above_first": 0
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/trident",
- "weight": 1
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/density.json b/src/main/resources/data/minecraft/enchantment/density.json
deleted file mode 100644
index 63f74ce..0000000
--- a/src/main/resources/data/minecraft/enchantment/density.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "anvil_cost": 2,
- "description": {
- "translate": "enchantment.minecraft.density"
- },
- "effects": {
- "minecraft:smash_damage_per_fallen_block": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 0.5,
- "per_level_above_first": 0.5
- }
- }
- }
- ]
- },
- "exclusive_set": "#minecraft:exclusive_set/damage",
- "max_cost": {
- "base": 25,
- "per_level_above_first": 8
- },
- "max_level": 5,
- "min_cost": {
- "base": 5,
- "per_level_above_first": 8
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/mace",
- "weight": 5
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/depth_strider.json b/src/main/resources/data/minecraft/enchantment/depth_strider.json
deleted file mode 100644
index 0239770..0000000
--- a/src/main/resources/data/minecraft/enchantment/depth_strider.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.depth_strider"
- },
- "effects": {
- "minecraft:attributes": [
- {
- "amount": {
- "type": "minecraft:linear",
- "base": 0.33333334,
- "per_level_above_first": 0.33333334
- },
- "attribute": "minecraft:generic.water_movement_efficiency",
- "id": "minecraft:enchantment.depth_strider",
- "operation": "add_value"
- }
- ]
- },
- "exclusive_set": "#minecraft:exclusive_set/boots",
- "max_cost": {
- "base": 25,
- "per_level_above_first": 10
- },
- "max_level": 3,
- "min_cost": {
- "base": 10,
- "per_level_above_first": 10
- },
- "slots": [
- "feet"
- ],
- "supported_items": "#minecraft:enchantable/foot_armor",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/efficiency.json b/src/main/resources/data/minecraft/enchantment/efficiency.json
deleted file mode 100644
index 28ed6e7..0000000
--- a/src/main/resources/data/minecraft/enchantment/efficiency.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "anvil_cost": 1,
- "description": {
- "translate": "enchantment.minecraft.efficiency"
- },
- "effects": {
- "minecraft:attributes": [
- {
- "amount": {
- "type": "minecraft:levels_squared",
- "added": 1.0
- },
- "attribute": "minecraft:player.mining_efficiency",
- "id": "minecraft:enchantment.efficiency",
- "operation": "add_value"
- }
- ]
- },
- "max_cost": {
- "base": 51,
- "per_level_above_first": 10
- },
- "max_level": 5,
- "min_cost": {
- "base": 1,
- "per_level_above_first": 10
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/mining",
- "weight": 10
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/feather_falling.json b/src/main/resources/data/minecraft/enchantment/feather_falling.json
deleted file mode 100644
index d69f743..0000000
--- a/src/main/resources/data/minecraft/enchantment/feather_falling.json
+++ /dev/null
@@ -1,49 +0,0 @@
-{
- "anvil_cost": 2,
- "description": {
- "translate": "enchantment.minecraft.feather_falling"
- },
- "effects": {
- "minecraft:damage_protection": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 3.0,
- "per_level_above_first": 3.0
- }
- },
- "requirements": {
- "condition": "minecraft:damage_source_properties",
- "predicate": {
- "tags": [
- {
- "expected": true,
- "id": "minecraft:is_fall"
- },
- {
- "expected": false,
- "id": "minecraft:bypasses_invulnerability"
- }
- ]
- }
- }
- }
- ]
- },
- "max_cost": {
- "base": 11,
- "per_level_above_first": 6
- },
- "max_level": 4,
- "min_cost": {
- "base": 5,
- "per_level_above_first": 6
- },
- "slots": [
- "armor"
- ],
- "supported_items": "#minecraft:enchantable/foot_armor",
- "weight": 5
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/fire_aspect.json b/src/main/resources/data/minecraft/enchantment/fire_aspect.json
deleted file mode 100644
index 24f07e8..0000000
--- a/src/main/resources/data/minecraft/enchantment/fire_aspect.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.fire_aspect"
- },
- "effects": {
- "minecraft:post_attack": [
- {
- "affected": "victim",
- "effect": {
- "type": "minecraft:ignite",
- "duration": {
- "type": "minecraft:linear",
- "base": 4.0,
- "per_level_above_first": 4.0
- }
- },
- "enchanted": "attacker",
- "requirements": {
- "condition": "minecraft:damage_source_properties",
- "predicate": {
- "is_direct": true
- }
- }
- }
- ]
- },
- "max_cost": {
- "base": 60,
- "per_level_above_first": 20
- },
- "max_level": 2,
- "min_cost": {
- "base": 10,
- "per_level_above_first": 20
- },
- "primary_items": "#minecraft:enchantable/sword",
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/fire_aspect",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/fire_protection.json b/src/main/resources/data/minecraft/enchantment/fire_protection.json
deleted file mode 100644
index 4769e89..0000000
--- a/src/main/resources/data/minecraft/enchantment/fire_protection.json
+++ /dev/null
@@ -1,67 +0,0 @@
-{
- "anvil_cost": 2,
- "description": {
- "translate": "enchantment.minecraft.fire_protection"
- },
- "effects": {
- "minecraft:attributes": [
- {
- "amount": {
- "type": "minecraft:linear",
- "base": -0.15,
- "per_level_above_first": -0.15
- },
- "attribute": "minecraft:generic.burning_time",
- "id": "minecraft:enchantment.fire_protection",
- "operation": "add_multiplied_base"
- }
- ],
- "minecraft:damage_protection": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 2.0,
- "per_level_above_first": 2.0
- }
- },
- "requirements": {
- "condition": "minecraft:all_of",
- "terms": [
- {
- "condition": "minecraft:damage_source_properties",
- "predicate": {
- "tags": [
- {
- "expected": true,
- "id": "minecraft:is_fire"
- },
- {
- "expected": false,
- "id": "minecraft:bypasses_invulnerability"
- }
- ]
- }
- }
- ]
- }
- }
- ]
- },
- "exclusive_set": "#minecraft:exclusive_set/armor",
- "max_cost": {
- "base": 18,
- "per_level_above_first": 8
- },
- "max_level": 4,
- "min_cost": {
- "base": 10,
- "per_level_above_first": 8
- },
- "slots": [
- "armor"
- ],
- "supported_items": "#minecraft:enchantable/armor",
- "weight": 5
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/flame.json b/src/main/resources/data/minecraft/enchantment/flame.json
deleted file mode 100644
index 7b9af5c..0000000
--- a/src/main/resources/data/minecraft/enchantment/flame.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.flame"
- },
- "effects": {
- "minecraft:projectile_spawned": [
- {
- "effect": {
- "type": "minecraft:ignite",
- "duration": 100.0
- }
- }
- ]
- },
- "max_cost": {
- "base": 50,
- "per_level_above_first": 0
- },
- "max_level": 1,
- "min_cost": {
- "base": 20,
- "per_level_above_first": 0
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/bow",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/fortune.json b/src/main/resources/data/minecraft/enchantment/fortune.json
deleted file mode 100644
index 3d29275..0000000
--- a/src/main/resources/data/minecraft/enchantment/fortune.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.fortune"
- },
- "exclusive_set": "#minecraft:exclusive_set/mining",
- "max_cost": {
- "base": 65,
- "per_level_above_first": 9
- },
- "max_level": 3,
- "min_cost": {
- "base": 15,
- "per_level_above_first": 9
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/mining_loot",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/frost_walker.json b/src/main/resources/data/minecraft/enchantment/frost_walker.json
deleted file mode 100644
index d4313f5..0000000
--- a/src/main/resources/data/minecraft/enchantment/frost_walker.json
+++ /dev/null
@@ -1,110 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.frost_walker"
- },
- "effects": {
- "minecraft:damage_immunity": [
- {
- "effect": {},
- "requirements": {
- "condition": "minecraft:damage_source_properties",
- "predicate": {
- "tags": [
- {
- "expected": true,
- "id": "minecraft:burn_from_stepping"
- },
- {
- "expected": false,
- "id": "minecraft:bypasses_invulnerability"
- }
- ]
- }
- }
- }
- ],
- "minecraft:location_changed": [
- {
- "effect": {
- "type": "minecraft:replace_disk",
- "block_state": {
- "type": "minecraft:simple_state_provider",
- "state": {
- "Name": "minecraft:frosted_ice",
- "Properties": {
- "age": "0"
- }
- }
- },
- "height": 1.0,
- "offset": [
- 0,
- -1,
- 0
- ],
- "predicate": {
- "type": "minecraft:all_of",
- "predicates": [
- {
- "type": "minecraft:matching_block_tag",
- "offset": [
- 0,
- 1,
- 0
- ],
- "tag": "minecraft:air"
- },
- {
- "type": "minecraft:matching_blocks",
- "blocks": "minecraft:water"
- },
- {
- "type": "minecraft:matching_fluids",
- "fluids": "minecraft:water"
- },
- {
- "type": "minecraft:unobstructed"
- }
- ]
- },
- "radius": {
- "type": "minecraft:clamped",
- "max": 16.0,
- "min": 0.0,
- "value": {
- "type": "minecraft:linear",
- "base": 3.0,
- "per_level_above_first": 1.0
- }
- },
- "trigger_game_event": "minecraft:block_place"
- },
- "requirements": {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "flags": {
- "is_on_ground": true
- }
- }
- }
- }
- ]
- },
- "exclusive_set": "#minecraft:exclusive_set/boots",
- "max_cost": {
- "base": 25,
- "per_level_above_first": 10
- },
- "max_level": 2,
- "min_cost": {
- "base": 10,
- "per_level_above_first": 10
- },
- "slots": [
- "feet"
- ],
- "supported_items": "#minecraft:enchantable/foot_armor",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/impaling.json b/src/main/resources/data/minecraft/enchantment/impaling.json
deleted file mode 100644
index 8c1bcf5..0000000
--- a/src/main/resources/data/minecraft/enchantment/impaling.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.impaling"
- },
- "effects": {
- "minecraft:damage": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 2.5,
- "per_level_above_first": 2.5
- }
- },
- "requirements": {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "#minecraft:sensitive_to_impaling"
- }
- }
- }
- ]
- },
- "exclusive_set": "#minecraft:exclusive_set/damage",
- "max_cost": {
- "base": 21,
- "per_level_above_first": 8
- },
- "max_level": 5,
- "min_cost": {
- "base": 1,
- "per_level_above_first": 8
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/trident",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/infinity.json b/src/main/resources/data/minecraft/enchantment/infinity.json
deleted file mode 100644
index 6bb53be..0000000
--- a/src/main/resources/data/minecraft/enchantment/infinity.json
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- "anvil_cost": 8,
- "description": {
- "translate": "enchantment.minecraft.infinity"
- },
- "effects": {
- "minecraft:ammo_use": [
- {
- "effect": {
- "type": "minecraft:set",
- "value": 0.0
- },
- "requirements": {
- "condition": "minecraft:match_tool",
- "predicate": {
- "items": "minecraft:arrow"
- }
- }
- }
- ]
- },
- "exclusive_set": "#minecraft:exclusive_set/bow",
- "max_cost": {
- "base": 50,
- "per_level_above_first": 0
- },
- "max_level": 1,
- "min_cost": {
- "base": 20,
- "per_level_above_first": 0
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/bow",
- "weight": 1
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/knockback.json b/src/main/resources/data/minecraft/enchantment/knockback.json
deleted file mode 100644
index be62e78..0000000
--- a/src/main/resources/data/minecraft/enchantment/knockback.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "anvil_cost": 2,
- "description": {
- "translate": "enchantment.minecraft.knockback"
- },
- "effects": {
- "minecraft:knockback": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 1.0,
- "per_level_above_first": 1.0
- }
- }
- }
- ]
- },
- "max_cost": {
- "base": 55,
- "per_level_above_first": 20
- },
- "max_level": 2,
- "min_cost": {
- "base": 5,
- "per_level_above_first": 20
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/sword",
- "weight": 5
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/looting.json b/src/main/resources/data/minecraft/enchantment/looting.json
deleted file mode 100644
index f90103b..0000000
--- a/src/main/resources/data/minecraft/enchantment/looting.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.looting"
- },
- "effects": {
- "minecraft:equipment_drops": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 0.01,
- "per_level_above_first": 0.01
- }
- },
- "enchanted": "attacker",
- "requirements": {
- "condition": "minecraft:entity_properties",
- "entity": "attacker",
- "predicate": {
- "type": "minecraft:player"
- }
- }
- }
- ]
- },
- "max_cost": {
- "base": 65,
- "per_level_above_first": 9
- },
- "max_level": 3,
- "min_cost": {
- "base": 15,
- "per_level_above_first": 9
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/sword",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/loyalty.json b/src/main/resources/data/minecraft/enchantment/loyalty.json
deleted file mode 100644
index c0769ed..0000000
--- a/src/main/resources/data/minecraft/enchantment/loyalty.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "anvil_cost": 2,
- "description": {
- "translate": "enchantment.minecraft.loyalty"
- },
- "effects": {
- "minecraft:trident_return_acceleration": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 1.0,
- "per_level_above_first": 1.0
- }
- }
- }
- ]
- },
- "max_cost": {
- "base": 50,
- "per_level_above_first": 0
- },
- "max_level": 3,
- "min_cost": {
- "base": 12,
- "per_level_above_first": 7
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/trident",
- "weight": 5
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/luck_of_the_sea.json b/src/main/resources/data/minecraft/enchantment/luck_of_the_sea.json
deleted file mode 100644
index 74b8e79..0000000
--- a/src/main/resources/data/minecraft/enchantment/luck_of_the_sea.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.luck_of_the_sea"
- },
- "effects": {
- "minecraft:fishing_luck_bonus": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 1.0,
- "per_level_above_first": 1.0
- }
- }
- }
- ]
- },
- "max_cost": {
- "base": 65,
- "per_level_above_first": 9
- },
- "max_level": 3,
- "min_cost": {
- "base": 15,
- "per_level_above_first": 9
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/fishing",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/lure.json b/src/main/resources/data/minecraft/enchantment/lure.json
deleted file mode 100644
index 1df8c10..0000000
--- a/src/main/resources/data/minecraft/enchantment/lure.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.lure"
- },
- "effects": {
- "minecraft:fishing_time_reduction": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 5.0,
- "per_level_above_first": 5.0
- }
- }
- }
- ]
- },
- "max_cost": {
- "base": 65,
- "per_level_above_first": 9
- },
- "max_level": 3,
- "min_cost": {
- "base": 15,
- "per_level_above_first": 9
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/fishing",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/mending.json b/src/main/resources/data/minecraft/enchantment/mending.json
deleted file mode 100644
index f762c8d..0000000
--- a/src/main/resources/data/minecraft/enchantment/mending.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.mending"
- },
- "effects": {
- "minecraft:repair_with_xp": [
- {
- "effect": {
- "type": "minecraft:multiply",
- "factor": 2.0
- }
- }
- ]
- },
- "max_cost": {
- "base": 75,
- "per_level_above_first": 25
- },
- "max_level": 1,
- "min_cost": {
- "base": 25,
- "per_level_above_first": 25
- },
- "slots": [
- "any"
- ],
- "supported_items": "#minecraft:enchantable/durability",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/multishot.json b/src/main/resources/data/minecraft/enchantment/multishot.json
deleted file mode 100644
index b656f91..0000000
--- a/src/main/resources/data/minecraft/enchantment/multishot.json
+++ /dev/null
@@ -1,47 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.multishot"
- },
- "effects": {
- "minecraft:projectile_count": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 2.0,
- "per_level_above_first": 2.0
- }
- }
- }
- ],
- "minecraft:projectile_spread": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 10.0,
- "per_level_above_first": 10.0
- }
- }
- }
- ]
- },
- "exclusive_set": "#minecraft:exclusive_set/crossbow",
- "max_cost": {
- "base": 50,
- "per_level_above_first": 0
- },
- "max_level": 1,
- "min_cost": {
- "base": 20,
- "per_level_above_first": 0
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/crossbow",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/piercing.json b/src/main/resources/data/minecraft/enchantment/piercing.json
deleted file mode 100644
index 29ebfa6..0000000
--- a/src/main/resources/data/minecraft/enchantment/piercing.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "anvil_cost": 1,
- "description": {
- "translate": "enchantment.minecraft.piercing"
- },
- "effects": {
- "minecraft:projectile_piercing": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 1.0,
- "per_level_above_first": 1.0
- }
- }
- }
- ]
- },
- "exclusive_set": "#minecraft:exclusive_set/crossbow",
- "max_cost": {
- "base": 50,
- "per_level_above_first": 0
- },
- "max_level": 4,
- "min_cost": {
- "base": 1,
- "per_level_above_first": 10
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/crossbow",
- "weight": 10
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/power.json b/src/main/resources/data/minecraft/enchantment/power.json
deleted file mode 100644
index 9f86f0e..0000000
--- a/src/main/resources/data/minecraft/enchantment/power.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
- "anvil_cost": 1,
- "description": {
- "translate": "enchantment.minecraft.power"
- },
- "effects": {
- "minecraft:damage": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 0.5,
- "per_level_above_first": 0.5
- }
- },
- "requirements": {
- "condition": "minecraft:entity_properties",
- "entity": "direct_attacker",
- "predicate": {
- "type": "#minecraft:arrows"
- }
- }
- }
- ]
- },
- "max_cost": {
- "base": 16,
- "per_level_above_first": 10
- },
- "max_level": 5,
- "min_cost": {
- "base": 1,
- "per_level_above_first": 10
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/bow",
- "weight": 10
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/projectile_protection.json b/src/main/resources/data/minecraft/enchantment/projectile_protection.json
deleted file mode 100644
index 5243164..0000000
--- a/src/main/resources/data/minecraft/enchantment/projectile_protection.json
+++ /dev/null
@@ -1,50 +0,0 @@
-{
- "anvil_cost": 2,
- "description": {
- "translate": "enchantment.minecraft.projectile_protection"
- },
- "effects": {
- "minecraft:damage_protection": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 2.0,
- "per_level_above_first": 2.0
- }
- },
- "requirements": {
- "condition": "minecraft:damage_source_properties",
- "predicate": {
- "tags": [
- {
- "expected": true,
- "id": "minecraft:is_projectile"
- },
- {
- "expected": false,
- "id": "minecraft:bypasses_invulnerability"
- }
- ]
- }
- }
- }
- ]
- },
- "exclusive_set": "#minecraft:exclusive_set/armor",
- "max_cost": {
- "base": 9,
- "per_level_above_first": 6
- },
- "max_level": 4,
- "min_cost": {
- "base": 3,
- "per_level_above_first": 6
- },
- "slots": [
- "armor"
- ],
- "supported_items": "#minecraft:enchantable/armor",
- "weight": 5
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/protection.json b/src/main/resources/data/minecraft/enchantment/protection.json
deleted file mode 100644
index 97b24aa..0000000
--- a/src/main/resources/data/minecraft/enchantment/protection.json
+++ /dev/null
@@ -1,46 +0,0 @@
-{
- "anvil_cost": 1,
- "description": {
- "translate": "enchantment.minecraft.protection"
- },
- "effects": {
- "minecraft:damage_protection": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 1.0,
- "per_level_above_first": 1.0
- }
- },
- "requirements": {
- "condition": "minecraft:damage_source_properties",
- "predicate": {
- "tags": [
- {
- "expected": false,
- "id": "minecraft:bypasses_invulnerability"
- }
- ]
- }
- }
- }
- ]
- },
- "exclusive_set": "#minecraft:exclusive_set/armor",
- "max_cost": {
- "base": 12,
- "per_level_above_first": 11
- },
- "max_level": 4,
- "min_cost": {
- "base": 1,
- "per_level_above_first": 11
- },
- "slots": [
- "armor"
- ],
- "supported_items": "#minecraft:enchantable/armor",
- "weight": 10
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/punch.json b/src/main/resources/data/minecraft/enchantment/punch.json
deleted file mode 100644
index f2db6d3..0000000
--- a/src/main/resources/data/minecraft/enchantment/punch.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.punch"
- },
- "effects": {
- "minecraft:knockback": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 1.0,
- "per_level_above_first": 1.0
- }
- },
- "requirements": {
- "condition": "minecraft:entity_properties",
- "entity": "direct_attacker",
- "predicate": {
- "type": "#minecraft:arrows"
- }
- }
- }
- ]
- },
- "max_cost": {
- "base": 37,
- "per_level_above_first": 20
- },
- "max_level": 2,
- "min_cost": {
- "base": 12,
- "per_level_above_first": 20
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/bow",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/quick_charge.json b/src/main/resources/data/minecraft/enchantment/quick_charge.json
deleted file mode 100644
index 5b320d7..0000000
--- a/src/main/resources/data/minecraft/enchantment/quick_charge.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
- "anvil_cost": 2,
- "description": {
- "translate": "enchantment.minecraft.quick_charge"
- },
- "effects": {
- "minecraft:crossbow_charge_time": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": -0.25,
- "per_level_above_first": -0.25
- }
- },
- "minecraft:crossbow_charging_sounds": [
- {
- "end": "minecraft:item.crossbow.loading_end",
- "start": "minecraft:item.crossbow.quick_charge_1"
- },
- {
- "end": "minecraft:item.crossbow.loading_end",
- "start": "minecraft:item.crossbow.quick_charge_2"
- },
- {
- "end": "minecraft:item.crossbow.loading_end",
- "start": "minecraft:item.crossbow.quick_charge_3"
- }
- ]
- },
- "max_cost": {
- "base": 50,
- "per_level_above_first": 0
- },
- "max_level": 3,
- "min_cost": {
- "base": 12,
- "per_level_above_first": 20
- },
- "slots": [
- "mainhand",
- "offhand"
- ],
- "supported_items": "#minecraft:enchantable/crossbow",
- "weight": 5
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/respiration.json b/src/main/resources/data/minecraft/enchantment/respiration.json
deleted file mode 100644
index 6447425..0000000
--- a/src/main/resources/data/minecraft/enchantment/respiration.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.respiration"
- },
- "effects": {
- "minecraft:attributes": [
- {
- "amount": {
- "type": "minecraft:linear",
- "base": 1.0,
- "per_level_above_first": 1.0
- },
- "attribute": "minecraft:generic.oxygen_bonus",
- "id": "minecraft:enchantment.respiration",
- "operation": "add_value"
- }
- ]
- },
- "max_cost": {
- "base": 40,
- "per_level_above_first": 10
- },
- "max_level": 3,
- "min_cost": {
- "base": 10,
- "per_level_above_first": 10
- },
- "slots": [
- "head"
- ],
- "supported_items": "#minecraft:enchantable/head_armor",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/riptide.json b/src/main/resources/data/minecraft/enchantment/riptide.json
deleted file mode 100644
index 7049ff7..0000000
--- a/src/main/resources/data/minecraft/enchantment/riptide.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.riptide"
- },
- "effects": {
- "minecraft:trident_sound": [
- "minecraft:item.trident.riptide_1",
- "minecraft:item.trident.riptide_2",
- "minecraft:item.trident.riptide_3"
- ],
- "minecraft:trident_spin_attack_strength": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 1.5,
- "per_level_above_first": 0.75
- }
- }
- },
- "exclusive_set": "#minecraft:exclusive_set/riptide",
- "max_cost": {
- "base": 50,
- "per_level_above_first": 0
- },
- "max_level": 3,
- "min_cost": {
- "base": 17,
- "per_level_above_first": 7
- },
- "slots": [
- "hand"
- ],
- "supported_items": "#minecraft:enchantable/trident",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/sharpness.json b/src/main/resources/data/minecraft/enchantment/sharpness.json
deleted file mode 100644
index db64004..0000000
--- a/src/main/resources/data/minecraft/enchantment/sharpness.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "anvil_cost": 1,
- "description": {
- "translate": "enchantment.minecraft.sharpness"
- },
- "effects": {
- "minecraft:damage": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 1.0,
- "per_level_above_first": 0.5
- }
- }
- }
- ]
- },
- "exclusive_set": "#minecraft:exclusive_set/damage",
- "max_cost": {
- "base": 21,
- "per_level_above_first": 11
- },
- "max_level": 5,
- "min_cost": {
- "base": 1,
- "per_level_above_first": 11
- },
- "primary_items": "#minecraft:enchantable/sword",
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/sharp_weapon",
- "weight": 10
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/silk_touch.json b/src/main/resources/data/minecraft/enchantment/silk_touch.json
deleted file mode 100644
index 1e00ee8..0000000
--- a/src/main/resources/data/minecraft/enchantment/silk_touch.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "anvil_cost": 8,
- "description": {
- "translate": "enchantment.minecraft.silk_touch"
- },
- "effects": {
- "minecraft:block_experience": [
- {
- "effect": {
- "type": "minecraft:set",
- "value": 0.0
- }
- }
- ]
- },
- "exclusive_set": "#minecraft:exclusive_set/mining",
- "max_cost": {
- "base": 65,
- "per_level_above_first": 0
- },
- "max_level": 1,
- "min_cost": {
- "base": 15,
- "per_level_above_first": 0
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/mining_loot",
- "weight": 1
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/smite.json b/src/main/resources/data/minecraft/enchantment/smite.json
deleted file mode 100644
index 4586d33..0000000
--- a/src/main/resources/data/minecraft/enchantment/smite.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "anvil_cost": 2,
- "description": {
- "translate": "enchantment.minecraft.smite"
- },
- "effects": {
- "minecraft:damage": [
- {
- "effect": {
- "type": "minecraft:add",
- "value": {
- "type": "minecraft:linear",
- "base": 2.5,
- "per_level_above_first": 2.5
- }
- },
- "requirements": {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "type": "#minecraft:sensitive_to_smite"
- }
- }
- }
- ]
- },
- "exclusive_set": "#minecraft:exclusive_set/damage",
- "max_cost": {
- "base": 25,
- "per_level_above_first": 8
- },
- "max_level": 5,
- "min_cost": {
- "base": 5,
- "per_level_above_first": 8
- },
- "primary_items": "#minecraft:enchantable/sword",
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/weapon",
- "weight": 5
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/soul_speed.json b/src/main/resources/data/minecraft/enchantment/soul_speed.json
deleted file mode 100644
index aac36c4..0000000
--- a/src/main/resources/data/minecraft/enchantment/soul_speed.json
+++ /dev/null
@@ -1,262 +0,0 @@
-{
- "anvil_cost": 8,
- "description": {
- "translate": "enchantment.minecraft.soul_speed"
- },
- "effects": {
- "minecraft:location_changed": [
- {
- "effect": {
- "type": "minecraft:attribute",
- "amount": {
- "type": "minecraft:linear",
- "base": 0.0405,
- "per_level_above_first": 0.0105
- },
- "attribute": "minecraft:generic.movement_speed",
- "id": "minecraft:enchantment.soul_speed",
- "operation": "add_value"
- },
- "requirements": {
- "condition": "minecraft:all_of",
- "terms": [
- {
- "condition": "minecraft:inverted",
- "term": {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "vehicle": {}
- }
- }
- },
- {
- "condition": "minecraft:any_of",
- "terms": [
- {
- "condition": "minecraft:all_of",
- "terms": [
- {
- "active": true,
- "condition": "minecraft:enchantment_active_check"
- },
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "flags": {
- "is_flying": false
- }
- }
- },
- {
- "condition": "minecraft:any_of",
- "terms": [
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "movement_affected_by": {
- "block": {
- "blocks": "#minecraft:soul_speed_blocks"
- }
- }
- }
- },
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "flags": {
- "is_on_ground": false
- }
- }
- }
- ]
- }
- ]
- },
- {
- "condition": "minecraft:all_of",
- "terms": [
- {
- "active": false,
- "condition": "minecraft:enchantment_active_check"
- },
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "flags": {
- "is_flying": false
- },
- "movement_affected_by": {
- "block": {
- "blocks": "#minecraft:soul_speed_blocks"
- }
- }
- }
- }
- ]
- }
- ]
- }
- ]
- }
- },
- {
- "effect": {
- "type": "minecraft:attribute",
- "amount": 1.0,
- "attribute": "minecraft:generic.movement_efficiency",
- "id": "minecraft:enchantment.soul_speed",
- "operation": "add_value"
- },
- "requirements": {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "movement_affected_by": {
- "block": {
- "blocks": "#minecraft:soul_speed_blocks"
- }
- }
- }
- }
- },
- {
- "effect": {
- "type": "minecraft:damage_item",
- "amount": 1.0
- },
- "requirements": {
- "condition": "minecraft:all_of",
- "terms": [
- {
- "chance": {
- "type": "minecraft:enchantment_level",
- "amount": 0.04
- },
- "condition": "minecraft:random_chance"
- },
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "flags": {
- "is_on_ground": true
- },
- "movement_affected_by": {
- "block": {
- "blocks": "#minecraft:soul_speed_blocks"
- }
- }
- }
- }
- ]
- }
- }
- ],
- "minecraft:tick": [
- {
- "effect": {
- "type": "minecraft:spawn_particles",
- "horizontal_position": {
- "type": "in_bounding_box"
- },
- "horizontal_velocity": {
- "movement_scale": -0.2
- },
- "particle": {
- "type": "minecraft:soul"
- },
- "speed": 1.0,
- "vertical_position": {
- "type": "entity_position",
- "offset": 0.1
- },
- "vertical_velocity": {
- "base": 0.1
- }
- },
- "requirements": {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "flags": {
- "is_flying": false,
- "is_on_ground": true
- },
- "movement": {
- "horizontal_speed": {
- "min": 9.999999747378752E-6
- }
- },
- "movement_affected_by": {
- "block": {
- "blocks": "#minecraft:soul_speed_blocks"
- }
- },
- "periodic_tick": 5
- }
- }
- },
- {
- "effect": {
- "type": "minecraft:play_sound",
- "pitch": {
- "type": "minecraft:uniform",
- "max_exclusive": 1.0,
- "min_inclusive": 0.6
- },
- "sound": "minecraft:particle.soul_escape",
- "volume": 0.6
- },
- "requirements": {
- "condition": "minecraft:all_of",
- "terms": [
- {
- "chance": 0.35,
- "condition": "minecraft:random_chance"
- },
- {
- "condition": "minecraft:entity_properties",
- "entity": "this",
- "predicate": {
- "flags": {
- "is_flying": false,
- "is_on_ground": true
- },
- "movement": {
- "horizontal_speed": {
- "min": 9.999999747378752E-6
- }
- },
- "movement_affected_by": {
- "block": {
- "blocks": "#minecraft:soul_speed_blocks"
- }
- },
- "periodic_tick": 5
- }
- }
- ]
- }
- }
- ]
- },
- "max_cost": {
- "base": 25,
- "per_level_above_first": 10
- },
- "max_level": 3,
- "min_cost": {
- "base": 10,
- "per_level_above_first": 10
- },
- "slots": [
- "feet"
- ],
- "supported_items": "#minecraft:enchantable/foot_armor",
- "weight": 1
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/sweeping_edge.json b/src/main/resources/data/minecraft/enchantment/sweeping_edge.json
deleted file mode 100644
index 708011c..0000000
--- a/src/main/resources/data/minecraft/enchantment/sweeping_edge.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.sweeping_edge"
- },
- "effects": {
- "minecraft:attributes": [
- {
- "amount": {
- "type": "minecraft:fraction",
- "denominator": {
- "type": "minecraft:linear",
- "base": 2.0,
- "per_level_above_first": 1.0
- },
- "numerator": {
- "type": "minecraft:linear",
- "base": 1.0,
- "per_level_above_first": 1.0
- }
- },
- "attribute": "minecraft:player.sweeping_damage_ratio",
- "id": "minecraft:enchantment.sweeping_edge",
- "operation": "add_value"
- }
- ]
- },
- "max_cost": {
- "base": 20,
- "per_level_above_first": 9
- },
- "max_level": 3,
- "min_cost": {
- "base": 5,
- "per_level_above_first": 9
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/sword",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/swift_sneak.json b/src/main/resources/data/minecraft/enchantment/swift_sneak.json
deleted file mode 100644
index 0809bb5..0000000
--- a/src/main/resources/data/minecraft/enchantment/swift_sneak.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "anvil_cost": 8,
- "description": {
- "translate": "enchantment.minecraft.swift_sneak"
- },
- "effects": {
- "minecraft:attributes": [
- {
- "amount": {
- "type": "minecraft:linear",
- "base": 0.15,
- "per_level_above_first": 0.15
- },
- "attribute": "minecraft:player.sneaking_speed",
- "id": "minecraft:enchantment.swift_sneak",
- "operation": "add_value"
- }
- ]
- },
- "max_cost": {
- "base": 75,
- "per_level_above_first": 25
- },
- "max_level": 3,
- "min_cost": {
- "base": 25,
- "per_level_above_first": 25
- },
- "slots": [
- "legs"
- ],
- "supported_items": "#minecraft:enchantable/leg_armor",
- "weight": 1
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/thorns.json b/src/main/resources/data/minecraft/enchantment/thorns.json
deleted file mode 100644
index 0f0d4c3..0000000
--- a/src/main/resources/data/minecraft/enchantment/thorns.json
+++ /dev/null
@@ -1,55 +0,0 @@
-{
- "anvil_cost": 8,
- "description": {
- "translate": "enchantment.minecraft.thorns"
- },
- "effects": {
- "minecraft:post_attack": [
- {
- "affected": "attacker",
- "effect": {
- "type": "minecraft:all_of",
- "effects": [
- {
- "type": "minecraft:damage_entity",
- "damage_type": "minecraft:thorns",
- "max_damage": 5.0,
- "min_damage": 1.0
- },
- {
- "type": "minecraft:damage_item",
- "amount": 2.0
- }
- ]
- },
- "enchanted": "victim",
- "requirements": {
- "chance": {
- "type": "minecraft:enchantment_level",
- "amount": {
- "type": "minecraft:linear",
- "base": 0.15,
- "per_level_above_first": 0.15
- }
- },
- "condition": "minecraft:random_chance"
- }
- }
- ]
- },
- "max_cost": {
- "base": 60,
- "per_level_above_first": 20
- },
- "max_level": 3,
- "min_cost": {
- "base": 10,
- "per_level_above_first": 20
- },
- "primary_items": "#minecraft:enchantable/chest_armor",
- "slots": [
- "any"
- ],
- "supported_items": "#minecraft:enchantable/armor",
- "weight": 1
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/unbreaking.json b/src/main/resources/data/minecraft/enchantment/unbreaking.json
deleted file mode 100644
index 6028e42..0000000
--- a/src/main/resources/data/minecraft/enchantment/unbreaking.json
+++ /dev/null
@@ -1,75 +0,0 @@
-{
- "anvil_cost": 2,
- "description": {
- "translate": "enchantment.minecraft.unbreaking"
- },
- "effects": {
- "minecraft:item_damage": [
- {
- "effect": {
- "type": "minecraft:remove_binomial",
- "chance": {
- "type": "minecraft:fraction",
- "denominator": {
- "type": "minecraft:linear",
- "base": 10.0,
- "per_level_above_first": 5.0
- },
- "numerator": {
- "type": "minecraft:linear",
- "base": 2.0,
- "per_level_above_first": 2.0
- }
- }
- },
- "requirements": {
- "condition": "minecraft:match_tool",
- "predicate": {
- "items": "#minecraft:enchantable/armor"
- }
- }
- },
- {
- "effect": {
- "type": "minecraft:remove_binomial",
- "chance": {
- "type": "minecraft:fraction",
- "denominator": {
- "type": "minecraft:linear",
- "base": 2.0,
- "per_level_above_first": 1.0
- },
- "numerator": {
- "type": "minecraft:linear",
- "base": 1.0,
- "per_level_above_first": 1.0
- }
- }
- },
- "requirements": {
- "condition": "minecraft:inverted",
- "term": {
- "condition": "minecraft:match_tool",
- "predicate": {
- "items": "#minecraft:enchantable/armor"
- }
- }
- }
- }
- ]
- },
- "max_cost": {
- "base": 55,
- "per_level_above_first": 8
- },
- "max_level": 3,
- "min_cost": {
- "base": 5,
- "per_level_above_first": 8
- },
- "slots": [
- "any"
- ],
- "supported_items": "#minecraft:enchantable/durability",
- "weight": 5
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/vanishing_curse.json b/src/main/resources/data/minecraft/enchantment/vanishing_curse.json
deleted file mode 100644
index c82f119..0000000
--- a/src/main/resources/data/minecraft/enchantment/vanishing_curse.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "anvil_cost": 8,
- "description": {
- "translate": "enchantment.minecraft.vanishing_curse"
- },
- "effects": {
- "minecraft:prevent_equipment_drop": {}
- },
- "max_cost": {
- "base": 50,
- "per_level_above_first": 0
- },
- "max_level": 1,
- "min_cost": {
- "base": 25,
- "per_level_above_first": 0
- },
- "slots": [
- "any"
- ],
- "supported_items": "#minecraft:enchantable/vanishing",
- "weight": 1
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/enchantment/wind_burst.json b/src/main/resources/data/minecraft/enchantment/wind_burst.json
deleted file mode 100644
index cdc3318..0000000
--- a/src/main/resources/data/minecraft/enchantment/wind_burst.json
+++ /dev/null
@@ -1,68 +0,0 @@
-{
- "anvil_cost": 4,
- "description": {
- "translate": "enchantment.minecraft.wind_burst"
- },
- "effects": {
- "minecraft:post_attack": [
- {
- "affected": "attacker",
- "effect": {
- "type": "minecraft:explode",
- "block_interaction": "trigger",
- "immune_blocks": "#minecraft:blocks_wind_charge_explosions",
- "knockback_multiplier": {
- "type": "minecraft:lookup",
- "fallback": {
- "type": "minecraft:linear",
- "base": 1.5,
- "per_level_above_first": 0.35
- },
- "values": [
- 1.2,
- 1.75,
- 2.2
- ]
- },
- "large_particle": {
- "type": "minecraft:gust_emitter_large"
- },
- "radius": 3.5,
- "small_particle": {
- "type": "minecraft:gust_emitter_small"
- },
- "sound": "minecraft:entity.wind_charge.wind_burst"
- },
- "enchanted": "attacker",
- "requirements": {
- "condition": "minecraft:entity_properties",
- "entity": "direct_attacker",
- "predicate": {
- "flags": {
- "is_flying": false
- },
- "movement": {
- "fall_distance": {
- "min": 1.5
- }
- }
- }
- }
- }
- ]
- },
- "max_cost": {
- "base": 65,
- "per_level_above_first": 9
- },
- "max_level": 3,
- "min_cost": {
- "base": 15,
- "per_level_above_first": 9
- },
- "slots": [
- "mainhand"
- ],
- "supported_items": "#minecraft:enchantable/mace",
- "weight": 2
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/11.json b/src/main/resources/data/minecraft/jukebox_song/11.json
deleted file mode 100644
index 44b6598..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/11.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 11,
- "description": {
- "translate": "jukebox_song.minecraft.11"
- },
- "length_in_seconds": 71.0,
- "sound_event": "minecraft:music_disc.11"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/13.json b/src/main/resources/data/minecraft/jukebox_song/13.json
deleted file mode 100644
index 86dc2f4..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/13.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 1,
- "description": {
- "translate": "jukebox_song.minecraft.13"
- },
- "length_in_seconds": 178.0,
- "sound_event": "minecraft:music_disc.13"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/5.json b/src/main/resources/data/minecraft/jukebox_song/5.json
deleted file mode 100644
index f441bbe..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/5.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 15,
- "description": {
- "translate": "jukebox_song.minecraft.5"
- },
- "length_in_seconds": 178.0,
- "sound_event": "minecraft:music_disc.5"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/blocks.json b/src/main/resources/data/minecraft/jukebox_song/blocks.json
deleted file mode 100644
index 94d000b..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/blocks.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 3,
- "description": {
- "translate": "jukebox_song.minecraft.blocks"
- },
- "length_in_seconds": 345.0,
- "sound_event": "minecraft:music_disc.blocks"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/cat.json b/src/main/resources/data/minecraft/jukebox_song/cat.json
deleted file mode 100644
index 598c165..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/cat.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 2,
- "description": {
- "translate": "jukebox_song.minecraft.cat"
- },
- "length_in_seconds": 185.0,
- "sound_event": "minecraft:music_disc.cat"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/chirp.json b/src/main/resources/data/minecraft/jukebox_song/chirp.json
deleted file mode 100644
index d722880..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/chirp.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 4,
- "description": {
- "translate": "jukebox_song.minecraft.chirp"
- },
- "length_in_seconds": 185.0,
- "sound_event": "minecraft:music_disc.chirp"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/creator.json b/src/main/resources/data/minecraft/jukebox_song/creator.json
deleted file mode 100644
index 3b63f55..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/creator.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 12,
- "description": {
- "translate": "jukebox_song.minecraft.creator"
- },
- "length_in_seconds": 176.0,
- "sound_event": "minecraft:music_disc.creator"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/creator_music_box.json b/src/main/resources/data/minecraft/jukebox_song/creator_music_box.json
deleted file mode 100644
index 6184d36..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/creator_music_box.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 11,
- "description": {
- "translate": "jukebox_song.minecraft.creator_music_box"
- },
- "length_in_seconds": 73.0,
- "sound_event": "minecraft:music_disc.creator_music_box"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/far.json b/src/main/resources/data/minecraft/jukebox_song/far.json
deleted file mode 100644
index f57cf8d..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/far.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 5,
- "description": {
- "translate": "jukebox_song.minecraft.far"
- },
- "length_in_seconds": 174.0,
- "sound_event": "minecraft:music_disc.far"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/mall.json b/src/main/resources/data/minecraft/jukebox_song/mall.json
deleted file mode 100644
index a5a8ddb..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/mall.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 6,
- "description": {
- "translate": "jukebox_song.minecraft.mall"
- },
- "length_in_seconds": 197.0,
- "sound_event": "minecraft:music_disc.mall"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/mellohi.json b/src/main/resources/data/minecraft/jukebox_song/mellohi.json
deleted file mode 100644
index cdea238..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/mellohi.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 7,
- "description": {
- "translate": "jukebox_song.minecraft.mellohi"
- },
- "length_in_seconds": 96.0,
- "sound_event": "minecraft:music_disc.mellohi"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/otherside.json b/src/main/resources/data/minecraft/jukebox_song/otherside.json
deleted file mode 100644
index 7856239..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/otherside.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 14,
- "description": {
- "translate": "jukebox_song.minecraft.otherside"
- },
- "length_in_seconds": 195.0,
- "sound_event": "minecraft:music_disc.otherside"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/pigstep.json b/src/main/resources/data/minecraft/jukebox_song/pigstep.json
deleted file mode 100644
index 3d4d74a..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/pigstep.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 13,
- "description": {
- "translate": "jukebox_song.minecraft.pigstep"
- },
- "length_in_seconds": 149.0,
- "sound_event": "minecraft:music_disc.pigstep"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/precipice.json b/src/main/resources/data/minecraft/jukebox_song/precipice.json
deleted file mode 100644
index 2cb2124..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/precipice.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 13,
- "description": {
- "translate": "jukebox_song.minecraft.precipice"
- },
- "length_in_seconds": 299.0,
- "sound_event": "minecraft:music_disc.precipice"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/relic.json b/src/main/resources/data/minecraft/jukebox_song/relic.json
deleted file mode 100644
index 077ca97..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/relic.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 14,
- "description": {
- "translate": "jukebox_song.minecraft.relic"
- },
- "length_in_seconds": 218.0,
- "sound_event": "minecraft:music_disc.relic"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/stal.json b/src/main/resources/data/minecraft/jukebox_song/stal.json
deleted file mode 100644
index c069d61..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/stal.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 8,
- "description": {
- "translate": "jukebox_song.minecraft.stal"
- },
- "length_in_seconds": 150.0,
- "sound_event": "minecraft:music_disc.stal"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/strad.json b/src/main/resources/data/minecraft/jukebox_song/strad.json
deleted file mode 100644
index 918a7dc..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/strad.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 9,
- "description": {
- "translate": "jukebox_song.minecraft.strad"
- },
- "length_in_seconds": 188.0,
- "sound_event": "minecraft:music_disc.strad"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/wait.json b/src/main/resources/data/minecraft/jukebox_song/wait.json
deleted file mode 100644
index c0cd84b..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/wait.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 12,
- "description": {
- "translate": "jukebox_song.minecraft.wait"
- },
- "length_in_seconds": 238.0,
- "sound_event": "minecraft:music_disc.wait"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/jukebox_song/ward.json b/src/main/resources/data/minecraft/jukebox_song/ward.json
deleted file mode 100644
index 7f08af1..0000000
--- a/src/main/resources/data/minecraft/jukebox_song/ward.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "comparator_output": 10,
- "description": {
- "translate": "jukebox_song.minecraft.ward"
- },
- "length_in_seconds": 251.0,
- "sound_event": "minecraft:music_disc.ward"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/alban.json b/src/main/resources/data/minecraft/painting_variant/alban.json
index 255379b..39719ca 100644
--- a/src/main/resources/data/minecraft/painting_variant/alban.json
+++ b/src/main/resources/data/minecraft/painting_variant/alban.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:alban",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.alban.author"
+ },
"height": 1,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.alban.title"
+ },
"width": 1
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/aztec.json b/src/main/resources/data/minecraft/painting_variant/aztec.json
index 4455e18..40c3729 100644
--- a/src/main/resources/data/minecraft/painting_variant/aztec.json
+++ b/src/main/resources/data/minecraft/painting_variant/aztec.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:aztec",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.aztec.author"
+ },
"height": 1,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.aztec.title"
+ },
"width": 1
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/aztec2.json b/src/main/resources/data/minecraft/painting_variant/aztec2.json
index 1d92296..28a521f 100644
--- a/src/main/resources/data/minecraft/painting_variant/aztec2.json
+++ b/src/main/resources/data/minecraft/painting_variant/aztec2.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:aztec2",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.aztec2.author"
+ },
"height": 1,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.aztec2.title"
+ },
"width": 1
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/backyard.json b/src/main/resources/data/minecraft/painting_variant/backyard.json
index 6af19da..cdd3fc3 100644
--- a/src/main/resources/data/minecraft/painting_variant/backyard.json
+++ b/src/main/resources/data/minecraft/painting_variant/backyard.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:backyard",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.backyard.author"
+ },
"height": 4,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.backyard.title"
+ },
"width": 3
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/baroque.json b/src/main/resources/data/minecraft/painting_variant/baroque.json
index 2506d16..3c593a1 100644
--- a/src/main/resources/data/minecraft/painting_variant/baroque.json
+++ b/src/main/resources/data/minecraft/painting_variant/baroque.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:baroque",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.baroque.author"
+ },
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.baroque.title"
+ },
"width": 2
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/bomb.json b/src/main/resources/data/minecraft/painting_variant/bomb.json
index e9e70fb..ec784d2 100644
--- a/src/main/resources/data/minecraft/painting_variant/bomb.json
+++ b/src/main/resources/data/minecraft/painting_variant/bomb.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:bomb",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.bomb.author"
+ },
"height": 1,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.bomb.title"
+ },
"width": 1
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/bouquet.json b/src/main/resources/data/minecraft/painting_variant/bouquet.json
index 0ae5580..1d8a419 100644
--- a/src/main/resources/data/minecraft/painting_variant/bouquet.json
+++ b/src/main/resources/data/minecraft/painting_variant/bouquet.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:bouquet",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.bouquet.author"
+ },
"height": 3,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.bouquet.title"
+ },
"width": 3
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/burning_skull.json b/src/main/resources/data/minecraft/painting_variant/burning_skull.json
index 8702529..5d28fe2 100644
--- a/src/main/resources/data/minecraft/painting_variant/burning_skull.json
+++ b/src/main/resources/data/minecraft/painting_variant/burning_skull.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:burning_skull",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.burning_skull.author"
+ },
"height": 4,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.burning_skull.title"
+ },
"width": 4
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/bust.json b/src/main/resources/data/minecraft/painting_variant/bust.json
index 7e5751f..4df7b60 100644
--- a/src/main/resources/data/minecraft/painting_variant/bust.json
+++ b/src/main/resources/data/minecraft/painting_variant/bust.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:bust",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.bust.author"
+ },
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.bust.title"
+ },
"width": 2
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/cavebird.json b/src/main/resources/data/minecraft/painting_variant/cavebird.json
index 7de7284..1ab7483 100644
--- a/src/main/resources/data/minecraft/painting_variant/cavebird.json
+++ b/src/main/resources/data/minecraft/painting_variant/cavebird.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:cavebird",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.cavebird.author"
+ },
"height": 3,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.cavebird.title"
+ },
"width": 3
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/changing.json b/src/main/resources/data/minecraft/painting_variant/changing.json
index 4c84b16..4afe244 100644
--- a/src/main/resources/data/minecraft/painting_variant/changing.json
+++ b/src/main/resources/data/minecraft/painting_variant/changing.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:changing",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.changing.author"
+ },
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.changing.title"
+ },
"width": 4
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/cotan.json b/src/main/resources/data/minecraft/painting_variant/cotan.json
index eb2bfc4..067feff 100644
--- a/src/main/resources/data/minecraft/painting_variant/cotan.json
+++ b/src/main/resources/data/minecraft/painting_variant/cotan.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:cotan",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.cotan.author"
+ },
"height": 3,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.cotan.title"
+ },
"width": 3
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/courbet.json b/src/main/resources/data/minecraft/painting_variant/courbet.json
index 30b56b9..6cd1b83 100644
--- a/src/main/resources/data/minecraft/painting_variant/courbet.json
+++ b/src/main/resources/data/minecraft/painting_variant/courbet.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:courbet",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.courbet.author"
+ },
"height": 1,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.courbet.title"
+ },
"width": 2
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/creebet.json b/src/main/resources/data/minecraft/painting_variant/creebet.json
index 2fa2c68..6971065 100644
--- a/src/main/resources/data/minecraft/painting_variant/creebet.json
+++ b/src/main/resources/data/minecraft/painting_variant/creebet.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:creebet",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.creebet.author"
+ },
"height": 1,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.creebet.title"
+ },
"width": 2
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/donkey_kong.json b/src/main/resources/data/minecraft/painting_variant/donkey_kong.json
index df7e438..79ecbd0 100644
--- a/src/main/resources/data/minecraft/painting_variant/donkey_kong.json
+++ b/src/main/resources/data/minecraft/painting_variant/donkey_kong.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:donkey_kong",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.donkey_kong.author"
+ },
"height": 3,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.donkey_kong.title"
+ },
"width": 4
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/earth.json b/src/main/resources/data/minecraft/painting_variant/earth.json
index 457074b..d52b236 100644
--- a/src/main/resources/data/minecraft/painting_variant/earth.json
+++ b/src/main/resources/data/minecraft/painting_variant/earth.json
@@ -1,5 +1,9 @@
{
"asset_id": "minecraft:earth",
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.earth.title"
+ },
"width": 2
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/endboss.json b/src/main/resources/data/minecraft/painting_variant/endboss.json
index bae094f..5d86918 100644
--- a/src/main/resources/data/minecraft/painting_variant/endboss.json
+++ b/src/main/resources/data/minecraft/painting_variant/endboss.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:endboss",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.endboss.author"
+ },
"height": 3,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.endboss.title"
+ },
"width": 3
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/fern.json b/src/main/resources/data/minecraft/painting_variant/fern.json
index f268700..49db47d 100644
--- a/src/main/resources/data/minecraft/painting_variant/fern.json
+++ b/src/main/resources/data/minecraft/painting_variant/fern.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:fern",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.fern.author"
+ },
"height": 3,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.fern.title"
+ },
"width": 3
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/fighters.json b/src/main/resources/data/minecraft/painting_variant/fighters.json
index 2815f0b..091530d 100644
--- a/src/main/resources/data/minecraft/painting_variant/fighters.json
+++ b/src/main/resources/data/minecraft/painting_variant/fighters.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:fighters",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.fighters.author"
+ },
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.fighters.title"
+ },
"width": 4
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/finding.json b/src/main/resources/data/minecraft/painting_variant/finding.json
index ece67f7..235cb6b 100644
--- a/src/main/resources/data/minecraft/painting_variant/finding.json
+++ b/src/main/resources/data/minecraft/painting_variant/finding.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:finding",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.finding.author"
+ },
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.finding.title"
+ },
"width": 4
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/fire.json b/src/main/resources/data/minecraft/painting_variant/fire.json
index 470e511..ff45c9c 100644
--- a/src/main/resources/data/minecraft/painting_variant/fire.json
+++ b/src/main/resources/data/minecraft/painting_variant/fire.json
@@ -1,5 +1,9 @@
{
"asset_id": "minecraft:fire",
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.fire.title"
+ },
"width": 2
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/graham.json b/src/main/resources/data/minecraft/painting_variant/graham.json
index fcee8cc..c34738e 100644
--- a/src/main/resources/data/minecraft/painting_variant/graham.json
+++ b/src/main/resources/data/minecraft/painting_variant/graham.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:graham",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.graham.author"
+ },
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.graham.title"
+ },
"width": 1
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/humble.json b/src/main/resources/data/minecraft/painting_variant/humble.json
index 85e4247..3634339 100644
--- a/src/main/resources/data/minecraft/painting_variant/humble.json
+++ b/src/main/resources/data/minecraft/painting_variant/humble.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:humble",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.humble.author"
+ },
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.humble.title"
+ },
"width": 2
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/kebab.json b/src/main/resources/data/minecraft/painting_variant/kebab.json
index 3c11f25..bff9be3 100644
--- a/src/main/resources/data/minecraft/painting_variant/kebab.json
+++ b/src/main/resources/data/minecraft/painting_variant/kebab.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:kebab",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.kebab.author"
+ },
"height": 1,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.kebab.title"
+ },
"width": 1
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/lowmist.json b/src/main/resources/data/minecraft/painting_variant/lowmist.json
index cbff4a5..d052c78 100644
--- a/src/main/resources/data/minecraft/painting_variant/lowmist.json
+++ b/src/main/resources/data/minecraft/painting_variant/lowmist.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:lowmist",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.lowmist.author"
+ },
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.lowmist.title"
+ },
"width": 4
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/match.json b/src/main/resources/data/minecraft/painting_variant/match.json
index f0307c0..477fd00 100644
--- a/src/main/resources/data/minecraft/painting_variant/match.json
+++ b/src/main/resources/data/minecraft/painting_variant/match.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:match",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.match.author"
+ },
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.match.title"
+ },
"width": 2
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/meditative.json b/src/main/resources/data/minecraft/painting_variant/meditative.json
index 8310bca..95b0559 100644
--- a/src/main/resources/data/minecraft/painting_variant/meditative.json
+++ b/src/main/resources/data/minecraft/painting_variant/meditative.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:meditative",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.meditative.author"
+ },
"height": 1,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.meditative.title"
+ },
"width": 1
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/orb.json b/src/main/resources/data/minecraft/painting_variant/orb.json
index d5fd196..0095844 100644
--- a/src/main/resources/data/minecraft/painting_variant/orb.json
+++ b/src/main/resources/data/minecraft/painting_variant/orb.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:orb",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.orb.author"
+ },
"height": 4,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.orb.title"
+ },
"width": 4
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/owlemons.json b/src/main/resources/data/minecraft/painting_variant/owlemons.json
index 4184052..2909f99 100644
--- a/src/main/resources/data/minecraft/painting_variant/owlemons.json
+++ b/src/main/resources/data/minecraft/painting_variant/owlemons.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:owlemons",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.owlemons.author"
+ },
"height": 3,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.owlemons.title"
+ },
"width": 3
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/passage.json b/src/main/resources/data/minecraft/painting_variant/passage.json
index d7b1653..dc50ade 100644
--- a/src/main/resources/data/minecraft/painting_variant/passage.json
+++ b/src/main/resources/data/minecraft/painting_variant/passage.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:passage",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.passage.author"
+ },
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.passage.title"
+ },
"width": 4
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/pigscene.json b/src/main/resources/data/minecraft/painting_variant/pigscene.json
index 0451235..b9701d6 100644
--- a/src/main/resources/data/minecraft/painting_variant/pigscene.json
+++ b/src/main/resources/data/minecraft/painting_variant/pigscene.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:pigscene",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.pigscene.author"
+ },
"height": 4,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.pigscene.title"
+ },
"width": 4
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/plant.json b/src/main/resources/data/minecraft/painting_variant/plant.json
index 306feb1..35532b6 100644
--- a/src/main/resources/data/minecraft/painting_variant/plant.json
+++ b/src/main/resources/data/minecraft/painting_variant/plant.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:plant",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.plant.author"
+ },
"height": 1,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.plant.title"
+ },
"width": 1
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/pointer.json b/src/main/resources/data/minecraft/painting_variant/pointer.json
index bedc843..747ca76 100644
--- a/src/main/resources/data/minecraft/painting_variant/pointer.json
+++ b/src/main/resources/data/minecraft/painting_variant/pointer.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:pointer",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.pointer.author"
+ },
"height": 4,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.pointer.title"
+ },
"width": 4
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/pond.json b/src/main/resources/data/minecraft/painting_variant/pond.json
index 1a39b4e..2aeccf9 100644
--- a/src/main/resources/data/minecraft/painting_variant/pond.json
+++ b/src/main/resources/data/minecraft/painting_variant/pond.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:pond",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.pond.author"
+ },
"height": 4,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.pond.title"
+ },
"width": 3
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/pool.json b/src/main/resources/data/minecraft/painting_variant/pool.json
index b689482..9fd5043 100644
--- a/src/main/resources/data/minecraft/painting_variant/pool.json
+++ b/src/main/resources/data/minecraft/painting_variant/pool.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:pool",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.pool.author"
+ },
"height": 1,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.pool.title"
+ },
"width": 2
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/prairie_ride.json b/src/main/resources/data/minecraft/painting_variant/prairie_ride.json
index aefcc13..e7b73be 100644
--- a/src/main/resources/data/minecraft/painting_variant/prairie_ride.json
+++ b/src/main/resources/data/minecraft/painting_variant/prairie_ride.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:prairie_ride",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.prairie_ride.author"
+ },
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.prairie_ride.title"
+ },
"width": 1
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/sea.json b/src/main/resources/data/minecraft/painting_variant/sea.json
index 925c428..43bd688 100644
--- a/src/main/resources/data/minecraft/painting_variant/sea.json
+++ b/src/main/resources/data/minecraft/painting_variant/sea.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:sea",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.sea.author"
+ },
"height": 1,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.sea.title"
+ },
"width": 2
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/skeleton.json b/src/main/resources/data/minecraft/painting_variant/skeleton.json
index d2ae4d6..cbf93d8 100644
--- a/src/main/resources/data/minecraft/painting_variant/skeleton.json
+++ b/src/main/resources/data/minecraft/painting_variant/skeleton.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:skeleton",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.skeleton.author"
+ },
"height": 3,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.skeleton.title"
+ },
"width": 4
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/skull_and_roses.json b/src/main/resources/data/minecraft/painting_variant/skull_and_roses.json
index 7ee8cbf..88cfc58 100644
--- a/src/main/resources/data/minecraft/painting_variant/skull_and_roses.json
+++ b/src/main/resources/data/minecraft/painting_variant/skull_and_roses.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:skull_and_roses",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.skull_and_roses.author"
+ },
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.skull_and_roses.title"
+ },
"width": 2
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/stage.json b/src/main/resources/data/minecraft/painting_variant/stage.json
index 7998cd4..001e7a8 100644
--- a/src/main/resources/data/minecraft/painting_variant/stage.json
+++ b/src/main/resources/data/minecraft/painting_variant/stage.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:stage",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.stage.author"
+ },
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.stage.title"
+ },
"width": 2
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/sunflowers.json b/src/main/resources/data/minecraft/painting_variant/sunflowers.json
index 2a29031..837dd23 100644
--- a/src/main/resources/data/minecraft/painting_variant/sunflowers.json
+++ b/src/main/resources/data/minecraft/painting_variant/sunflowers.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:sunflowers",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.sunflowers.author"
+ },
"height": 3,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.sunflowers.title"
+ },
"width": 3
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/sunset.json b/src/main/resources/data/minecraft/painting_variant/sunset.json
index 3a9350d..a2b4470 100644
--- a/src/main/resources/data/minecraft/painting_variant/sunset.json
+++ b/src/main/resources/data/minecraft/painting_variant/sunset.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:sunset",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.sunset.author"
+ },
"height": 1,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.sunset.title"
+ },
"width": 2
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/tides.json b/src/main/resources/data/minecraft/painting_variant/tides.json
index 488d37b..c40d3b1 100644
--- a/src/main/resources/data/minecraft/painting_variant/tides.json
+++ b/src/main/resources/data/minecraft/painting_variant/tides.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:tides",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.tides.author"
+ },
"height": 3,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.tides.title"
+ },
"width": 3
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/unpacked.json b/src/main/resources/data/minecraft/painting_variant/unpacked.json
index 57c2b4a..5a21cc0 100644
--- a/src/main/resources/data/minecraft/painting_variant/unpacked.json
+++ b/src/main/resources/data/minecraft/painting_variant/unpacked.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:unpacked",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.unpacked.author"
+ },
"height": 4,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.unpacked.title"
+ },
"width": 4
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/void.json b/src/main/resources/data/minecraft/painting_variant/void.json
index 2bb9eb5..0ce54d4 100644
--- a/src/main/resources/data/minecraft/painting_variant/void.json
+++ b/src/main/resources/data/minecraft/painting_variant/void.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:void",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.void.author"
+ },
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.void.title"
+ },
"width": 2
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/wanderer.json b/src/main/resources/data/minecraft/painting_variant/wanderer.json
index 2125577..c62b6b6 100644
--- a/src/main/resources/data/minecraft/painting_variant/wanderer.json
+++ b/src/main/resources/data/minecraft/painting_variant/wanderer.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:wanderer",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.wanderer.author"
+ },
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.wanderer.title"
+ },
"width": 1
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/wasteland.json b/src/main/resources/data/minecraft/painting_variant/wasteland.json
index d873432..a126eb2 100644
--- a/src/main/resources/data/minecraft/painting_variant/wasteland.json
+++ b/src/main/resources/data/minecraft/painting_variant/wasteland.json
@@ -1,5 +1,13 @@
{
"asset_id": "minecraft:wasteland",
+ "author": {
+ "color": "gray",
+ "translate": "painting.minecraft.wasteland.author"
+ },
"height": 1,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.wasteland.title"
+ },
"width": 1
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/water.json b/src/main/resources/data/minecraft/painting_variant/water.json
index f1fc49d..f358ae7 100644
--- a/src/main/resources/data/minecraft/painting_variant/water.json
+++ b/src/main/resources/data/minecraft/painting_variant/water.json
@@ -1,5 +1,9 @@
{
"asset_id": "minecraft:water",
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.water.title"
+ },
"width": 2
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/wind.json b/src/main/resources/data/minecraft/painting_variant/wind.json
index b5c2c1d..6b83602 100644
--- a/src/main/resources/data/minecraft/painting_variant/wind.json
+++ b/src/main/resources/data/minecraft/painting_variant/wind.json
@@ -1,5 +1,9 @@
{
"asset_id": "minecraft:wind",
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.wind.title"
+ },
"width": 2
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/painting_variant/wither.json b/src/main/resources/data/minecraft/painting_variant/wither.json
index 482ab3a..8ece65f 100644
--- a/src/main/resources/data/minecraft/painting_variant/wither.json
+++ b/src/main/resources/data/minecraft/painting_variant/wither.json
@@ -1,5 +1,9 @@
{
"asset_id": "minecraft:wither",
"height": 2,
+ "title": {
+ "color": "yellow",
+ "translate": "painting.minecraft.wither.title"
+ },
"width": 2
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/amethyst.json b/src/main/resources/data/minecraft/trim_material/amethyst.json
deleted file mode 100644
index 85945cb..0000000
--- a/src/main/resources/data/minecraft/trim_material/amethyst.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "asset_name": "amethyst",
- "description": {
- "color": "#9A5CC6",
- "translate": "trim_material.minecraft.amethyst"
- },
- "ingredient": "minecraft:amethyst_shard",
- "item_model_index": 1.0
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/copper.json b/src/main/resources/data/minecraft/trim_material/copper.json
deleted file mode 100644
index a014bf7..0000000
--- a/src/main/resources/data/minecraft/trim_material/copper.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "asset_name": "copper",
- "description": {
- "color": "#B4684D",
- "translate": "trim_material.minecraft.copper"
- },
- "ingredient": "minecraft:copper_ingot",
- "item_model_index": 0.5
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/diamond.json b/src/main/resources/data/minecraft/trim_material/diamond.json
deleted file mode 100644
index 21b27e9..0000000
--- a/src/main/resources/data/minecraft/trim_material/diamond.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "asset_name": "diamond",
- "description": {
- "color": "#6EECD2",
- "translate": "trim_material.minecraft.diamond"
- },
- "ingredient": "minecraft:diamond",
- "item_model_index": 0.8,
- "override_armor_materials": {
- "minecraft:diamond": "diamond_darker"
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/emerald.json b/src/main/resources/data/minecraft/trim_material/emerald.json
deleted file mode 100644
index 5776f6c..0000000
--- a/src/main/resources/data/minecraft/trim_material/emerald.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "asset_name": "emerald",
- "description": {
- "color": "#11A036",
- "translate": "trim_material.minecraft.emerald"
- },
- "ingredient": "minecraft:emerald",
- "item_model_index": 0.7
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/gold.json b/src/main/resources/data/minecraft/trim_material/gold.json
deleted file mode 100644
index 195e14f..0000000
--- a/src/main/resources/data/minecraft/trim_material/gold.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "asset_name": "gold",
- "description": {
- "color": "#DEB12D",
- "translate": "trim_material.minecraft.gold"
- },
- "ingredient": "minecraft:gold_ingot",
- "item_model_index": 0.6,
- "override_armor_materials": {
- "minecraft:gold": "gold_darker"
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/iron.json b/src/main/resources/data/minecraft/trim_material/iron.json
deleted file mode 100644
index 69ba5ec..0000000
--- a/src/main/resources/data/minecraft/trim_material/iron.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "asset_name": "iron",
- "description": {
- "color": "#ECECEC",
- "translate": "trim_material.minecraft.iron"
- },
- "ingredient": "minecraft:iron_ingot",
- "item_model_index": 0.2,
- "override_armor_materials": {
- "minecraft:iron": "iron_darker"
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/lapis.json b/src/main/resources/data/minecraft/trim_material/lapis.json
deleted file mode 100644
index eb31702..0000000
--- a/src/main/resources/data/minecraft/trim_material/lapis.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "asset_name": "lapis",
- "description": {
- "color": "#416E97",
- "translate": "trim_material.minecraft.lapis"
- },
- "ingredient": "minecraft:lapis_lazuli",
- "item_model_index": 0.9
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/netherite.json b/src/main/resources/data/minecraft/trim_material/netherite.json
deleted file mode 100644
index 6cdd97a..0000000
--- a/src/main/resources/data/minecraft/trim_material/netherite.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "asset_name": "netherite",
- "description": {
- "color": "#625859",
- "translate": "trim_material.minecraft.netherite"
- },
- "ingredient": "minecraft:netherite_ingot",
- "item_model_index": 0.3,
- "override_armor_materials": {
- "minecraft:netherite": "netherite_darker"
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/quartz.json b/src/main/resources/data/minecraft/trim_material/quartz.json
deleted file mode 100644
index 7600a10..0000000
--- a/src/main/resources/data/minecraft/trim_material/quartz.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "asset_name": "quartz",
- "description": {
- "color": "#E3D4C4",
- "translate": "trim_material.minecraft.quartz"
- },
- "ingredient": "minecraft:quartz",
- "item_model_index": 0.1
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/redstone.json b/src/main/resources/data/minecraft/trim_material/redstone.json
deleted file mode 100644
index 797bd0c..0000000
--- a/src/main/resources/data/minecraft/trim_material/redstone.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "asset_name": "redstone",
- "description": {
- "color": "#971607",
- "translate": "trim_material.minecraft.redstone"
- },
- "ingredient": "minecraft:redstone",
- "item_model_index": 0.4
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/bolt.json b/src/main/resources/data/minecraft/trim_pattern/bolt.json
deleted file mode 100644
index 27c0d9b..0000000
--- a/src/main/resources/data/minecraft/trim_pattern/bolt.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "asset_id": "minecraft:bolt",
- "decal": false,
- "description": {
- "translate": "trim_pattern.minecraft.bolt"
- },
- "template_item": "minecraft:bolt_armor_trim_smithing_template"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/coast.json b/src/main/resources/data/minecraft/trim_pattern/coast.json
deleted file mode 100644
index 6e77fc3..0000000
--- a/src/main/resources/data/minecraft/trim_pattern/coast.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "asset_id": "minecraft:coast",
- "decal": false,
- "description": {
- "translate": "trim_pattern.minecraft.coast"
- },
- "template_item": "minecraft:coast_armor_trim_smithing_template"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/dune.json b/src/main/resources/data/minecraft/trim_pattern/dune.json
deleted file mode 100644
index 2b825b3..0000000
--- a/src/main/resources/data/minecraft/trim_pattern/dune.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "asset_id": "minecraft:dune",
- "decal": false,
- "description": {
- "translate": "trim_pattern.minecraft.dune"
- },
- "template_item": "minecraft:dune_armor_trim_smithing_template"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/eye.json b/src/main/resources/data/minecraft/trim_pattern/eye.json
deleted file mode 100644
index 52260df..0000000
--- a/src/main/resources/data/minecraft/trim_pattern/eye.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "asset_id": "minecraft:eye",
- "decal": false,
- "description": {
- "translate": "trim_pattern.minecraft.eye"
- },
- "template_item": "minecraft:eye_armor_trim_smithing_template"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/flow.json b/src/main/resources/data/minecraft/trim_pattern/flow.json
deleted file mode 100644
index 2d94de8..0000000
--- a/src/main/resources/data/minecraft/trim_pattern/flow.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "asset_id": "minecraft:flow",
- "decal": false,
- "description": {
- "translate": "trim_pattern.minecraft.flow"
- },
- "template_item": "minecraft:flow_armor_trim_smithing_template"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/host.json b/src/main/resources/data/minecraft/trim_pattern/host.json
deleted file mode 100644
index 483d3f4..0000000
--- a/src/main/resources/data/minecraft/trim_pattern/host.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "asset_id": "minecraft:host",
- "decal": false,
- "description": {
- "translate": "trim_pattern.minecraft.host"
- },
- "template_item": "minecraft:host_armor_trim_smithing_template"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/raiser.json b/src/main/resources/data/minecraft/trim_pattern/raiser.json
deleted file mode 100644
index b7d69d4..0000000
--- a/src/main/resources/data/minecraft/trim_pattern/raiser.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "asset_id": "minecraft:raiser",
- "decal": false,
- "description": {
- "translate": "trim_pattern.minecraft.raiser"
- },
- "template_item": "minecraft:raiser_armor_trim_smithing_template"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/rib.json b/src/main/resources/data/minecraft/trim_pattern/rib.json
deleted file mode 100644
index ae0e515..0000000
--- a/src/main/resources/data/minecraft/trim_pattern/rib.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "asset_id": "minecraft:rib",
- "decal": false,
- "description": {
- "translate": "trim_pattern.minecraft.rib"
- },
- "template_item": "minecraft:rib_armor_trim_smithing_template"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/sentry.json b/src/main/resources/data/minecraft/trim_pattern/sentry.json
deleted file mode 100644
index 1d86454..0000000
--- a/src/main/resources/data/minecraft/trim_pattern/sentry.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "asset_id": "minecraft:sentry",
- "decal": false,
- "description": {
- "translate": "trim_pattern.minecraft.sentry"
- },
- "template_item": "minecraft:sentry_armor_trim_smithing_template"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/shaper.json b/src/main/resources/data/minecraft/trim_pattern/shaper.json
deleted file mode 100644
index 38a76d9..0000000
--- a/src/main/resources/data/minecraft/trim_pattern/shaper.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "asset_id": "minecraft:shaper",
- "decal": false,
- "description": {
- "translate": "trim_pattern.minecraft.shaper"
- },
- "template_item": "minecraft:shaper_armor_trim_smithing_template"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/silence.json b/src/main/resources/data/minecraft/trim_pattern/silence.json
deleted file mode 100644
index 0cf9ca8..0000000
--- a/src/main/resources/data/minecraft/trim_pattern/silence.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "asset_id": "minecraft:silence",
- "decal": false,
- "description": {
- "translate": "trim_pattern.minecraft.silence"
- },
- "template_item": "minecraft:silence_armor_trim_smithing_template"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/snout.json b/src/main/resources/data/minecraft/trim_pattern/snout.json
deleted file mode 100644
index 0b23038..0000000
--- a/src/main/resources/data/minecraft/trim_pattern/snout.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "asset_id": "minecraft:snout",
- "decal": false,
- "description": {
- "translate": "trim_pattern.minecraft.snout"
- },
- "template_item": "minecraft:snout_armor_trim_smithing_template"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/spire.json b/src/main/resources/data/minecraft/trim_pattern/spire.json
deleted file mode 100644
index 9df73f5..0000000
--- a/src/main/resources/data/minecraft/trim_pattern/spire.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "asset_id": "minecraft:spire",
- "decal": false,
- "description": {
- "translate": "trim_pattern.minecraft.spire"
- },
- "template_item": "minecraft:spire_armor_trim_smithing_template"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/tide.json b/src/main/resources/data/minecraft/trim_pattern/tide.json
deleted file mode 100644
index a01adda..0000000
--- a/src/main/resources/data/minecraft/trim_pattern/tide.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "asset_id": "minecraft:tide",
- "decal": false,
- "description": {
- "translate": "trim_pattern.minecraft.tide"
- },
- "template_item": "minecraft:tide_armor_trim_smithing_template"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/vex.json b/src/main/resources/data/minecraft/trim_pattern/vex.json
deleted file mode 100644
index bc010f1..0000000
--- a/src/main/resources/data/minecraft/trim_pattern/vex.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "asset_id": "minecraft:vex",
- "decal": false,
- "description": {
- "translate": "trim_pattern.minecraft.vex"
- },
- "template_item": "minecraft:vex_armor_trim_smithing_template"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/ward.json b/src/main/resources/data/minecraft/trim_pattern/ward.json
deleted file mode 100644
index e07ffbc..0000000
--- a/src/main/resources/data/minecraft/trim_pattern/ward.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "asset_id": "minecraft:ward",
- "decal": false,
- "description": {
- "translate": "trim_pattern.minecraft.ward"
- },
- "template_item": "minecraft:ward_armor_trim_smithing_template"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/wayfinder.json b/src/main/resources/data/minecraft/trim_pattern/wayfinder.json
deleted file mode 100644
index ecb8cc9..0000000
--- a/src/main/resources/data/minecraft/trim_pattern/wayfinder.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "asset_id": "minecraft:wayfinder",
- "decal": false,
- "description": {
- "translate": "trim_pattern.minecraft.wayfinder"
- },
- "template_item": "minecraft:wayfinder_armor_trim_smithing_template"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/wild.json b/src/main/resources/data/minecraft/trim_pattern/wild.json
deleted file mode 100644
index 4696f38..0000000
--- a/src/main/resources/data/minecraft/trim_pattern/wild.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "asset_id": "minecraft:wild",
- "decal": false,
- "description": {
- "translate": "trim_pattern.minecraft.wild"
- },
- "template_item": "minecraft:wild_armor_trim_smithing_template"
-}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/wolf_variant/rusty.json b/src/main/resources/data/minecraft/wolf_variant/rusty.json
index 834607a..3fe050b 100644
--- a/src/main/resources/data/minecraft/wolf_variant/rusty.json
+++ b/src/main/resources/data/minecraft/wolf_variant/rusty.json
@@ -1,6 +1,6 @@
{
"angry_texture": "minecraft:entity/wolf/wolf_rusty_angry",
- "biomes": "#minecraft:is_jungle",
+ "biomes": "minecraft:jungle",
"tame_texture": "minecraft:entity/wolf/wolf_rusty_tame",
"wild_texture": "minecraft:entity/wolf/wolf_rusty"
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/wolf_variant/spotted.json b/src/main/resources/data/minecraft/wolf_variant/spotted.json
index f4c5214..96e3154 100644
--- a/src/main/resources/data/minecraft/wolf_variant/spotted.json
+++ b/src/main/resources/data/minecraft/wolf_variant/spotted.json
@@ -1,6 +1,6 @@
{
"angry_texture": "minecraft:entity/wolf/wolf_spotted_angry",
- "biomes": "#minecraft:is_savanna",
+ "biomes": "minecraft:savanna",
"tame_texture": "minecraft:entity/wolf/wolf_spotted_tame",
"wild_texture": "minecraft:entity/wolf/wolf_spotted"
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/wolf_variant/striped.json b/src/main/resources/data/minecraft/wolf_variant/striped.json
index c36f7a6..6168bf3 100644
--- a/src/main/resources/data/minecraft/wolf_variant/striped.json
+++ b/src/main/resources/data/minecraft/wolf_variant/striped.json
@@ -1,6 +1,6 @@
{
"angry_texture": "minecraft:entity/wolf/wolf_striped_angry",
- "biomes": "#minecraft:is_badlands",
+ "biomes": "minecraft:badlands",
"tame_texture": "minecraft:entity/wolf/wolf_striped_tame",
"wild_texture": "minecraft:entity/wolf/wolf_striped"
}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/worldgen/biome/badlands.json b/src/main/resources/data/minecraft/worldgen/biome/badlands.json
index e629c60..910c3af 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/badlands.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/badlands.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"creature_spawn_probability": 0.03,
"downfall": 0.0,
"effects": {
diff --git a/src/main/resources/data/minecraft/worldgen/biome/bamboo_jungle.json b/src/main/resources/data/minecraft/worldgen/biome/bamboo_jungle.json
index 23422fc..67f8168 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/bamboo_jungle.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/bamboo_jungle.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.9,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/basalt_deltas.json b/src/main/resources/data/minecraft/worldgen/biome/basalt_deltas.json
index e062aa6..e73087b 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/basalt_deltas.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/basalt_deltas.json
@@ -1,7 +1,5 @@
{
- "carvers": {
- "air": "minecraft:nether_cave"
- },
+ "carvers": "minecraft:nether_cave",
"downfall": 0.0,
"effects": {
"additions_sound": {
diff --git a/src/main/resources/data/minecraft/worldgen/biome/beach.json b/src/main/resources/data/minecraft/worldgen/biome/beach.json
index 38afdc6..9d42667 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/beach.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/beach.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.4,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/birch_forest.json b/src/main/resources/data/minecraft/worldgen/biome/birch_forest.json
index 6338abf..f733f13 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/birch_forest.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/birch_forest.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.6,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/cherry_grove.json b/src/main/resources/data/minecraft/worldgen/biome/cherry_grove.json
index f96b6a3..649251d 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/cherry_grove.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/cherry_grove.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.8,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/cold_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/cold_ocean.json
index cb5835e..03c21cf 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/cold_ocean.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/cold_ocean.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.5,
"effects": {
"fog_color": 12638463,
@@ -80,7 +78,6 @@
"minecraft:patch_sugar_cane",
"minecraft:patch_pumpkin",
"minecraft:seagrass_cold",
- "minecraft:seagrass_simple",
"minecraft:kelp_cold"
],
[
diff --git a/src/main/resources/data/minecraft/worldgen/biome/crimson_forest.json b/src/main/resources/data/minecraft/worldgen/biome/crimson_forest.json
index 32460a8..6ee72b4 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/crimson_forest.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/crimson_forest.json
@@ -1,7 +1,5 @@
{
- "carvers": {
- "air": "minecraft:nether_cave"
- },
+ "carvers": "minecraft:nether_cave",
"downfall": 0.0,
"effects": {
"additions_sound": {
diff --git a/src/main/resources/data/minecraft/worldgen/biome/dark_forest.json b/src/main/resources/data/minecraft/worldgen/biome/dark_forest.json
index 678b0eb..51a8b33 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/dark_forest.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/dark_forest.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.8,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/deep_cold_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/deep_cold_ocean.json
index 9850e3e..62fa3ce 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/deep_cold_ocean.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/deep_cold_ocean.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.5,
"effects": {
"fog_color": 12638463,
@@ -80,7 +78,6 @@
"minecraft:patch_sugar_cane",
"minecraft:patch_pumpkin",
"minecraft:seagrass_deep_cold",
- "minecraft:seagrass_simple",
"minecraft:kelp_cold"
],
[
diff --git a/src/main/resources/data/minecraft/worldgen/biome/deep_dark.json b/src/main/resources/data/minecraft/worldgen/biome/deep_dark.json
index d9ee2b7..ede5626 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/deep_dark.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/deep_dark.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.4,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/deep_frozen_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/deep_frozen_ocean.json
index 7240954..5f7894b 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/deep_frozen_ocean.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/deep_frozen_ocean.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.5,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/deep_lukewarm_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/deep_lukewarm_ocean.json
index 413f810..8e476c1 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/deep_lukewarm_ocean.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/deep_lukewarm_ocean.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.5,
"effects": {
"fog_color": 12638463,
@@ -80,7 +78,6 @@
"minecraft:patch_sugar_cane",
"minecraft:patch_pumpkin",
"minecraft:seagrass_deep_warm",
- "minecraft:seagrass_simple",
"minecraft:kelp_warm"
],
[
diff --git a/src/main/resources/data/minecraft/worldgen/biome/deep_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/deep_ocean.json
index 56e5219..aa97757 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/deep_ocean.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/deep_ocean.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.5,
"effects": {
"fog_color": 12638463,
@@ -80,7 +78,6 @@
"minecraft:patch_sugar_cane",
"minecraft:patch_pumpkin",
"minecraft:seagrass_deep",
- "minecraft:seagrass_simple",
"minecraft:kelp_cold"
],
[
diff --git a/src/main/resources/data/minecraft/worldgen/biome/desert.json b/src/main/resources/data/minecraft/worldgen/biome/desert.json
index 395a369..2e8eaa0 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/desert.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/desert.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.0,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/dripstone_caves.json b/src/main/resources/data/minecraft/worldgen/biome/dripstone_caves.json
index 6eaaa57..a314172 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/dripstone_caves.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/dripstone_caves.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.4,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/end_barrens.json b/src/main/resources/data/minecraft/worldgen/biome/end_barrens.json
index 1d07576..06dc980 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/end_barrens.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/end_barrens.json
@@ -1,5 +1,5 @@
{
- "carvers": {},
+ "carvers": [],
"downfall": 0.5,
"effects": {
"fog_color": 10518688,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/end_highlands.json b/src/main/resources/data/minecraft/worldgen/biome/end_highlands.json
index 05f1380..9f32627 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/end_highlands.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/end_highlands.json
@@ -1,5 +1,5 @@
{
- "carvers": {},
+ "carvers": [],
"downfall": 0.5,
"effects": {
"fog_color": 10518688,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/end_midlands.json b/src/main/resources/data/minecraft/worldgen/biome/end_midlands.json
index 1d07576..06dc980 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/end_midlands.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/end_midlands.json
@@ -1,5 +1,5 @@
{
- "carvers": {},
+ "carvers": [],
"downfall": 0.5,
"effects": {
"fog_color": 10518688,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/eroded_badlands.json b/src/main/resources/data/minecraft/worldgen/biome/eroded_badlands.json
index e629c60..910c3af 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/eroded_badlands.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/eroded_badlands.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"creature_spawn_probability": 0.03,
"downfall": 0.0,
"effects": {
diff --git a/src/main/resources/data/minecraft/worldgen/biome/flower_forest.json b/src/main/resources/data/minecraft/worldgen/biome/flower_forest.json
index d45edd2..785bd11 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/flower_forest.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/flower_forest.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.8,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/forest.json b/src/main/resources/data/minecraft/worldgen/biome/forest.json
index d81b355..3ab14a6 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/forest.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/forest.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.8,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/frozen_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/frozen_ocean.json
index 2b9a2ae..cf476e5 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/frozen_ocean.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/frozen_ocean.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.5,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/frozen_peaks.json b/src/main/resources/data/minecraft/worldgen/biome/frozen_peaks.json
index 6f06b57..c90f192 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/frozen_peaks.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/frozen_peaks.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.9,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/frozen_river.json b/src/main/resources/data/minecraft/worldgen/biome/frozen_river.json
index 5bc3832..aa57108 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/frozen_river.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/frozen_river.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.5,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/grove.json b/src/main/resources/data/minecraft/worldgen/biome/grove.json
index e5c46d4..f6c2c49 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/grove.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/grove.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.8,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/ice_spikes.json b/src/main/resources/data/minecraft/worldgen/biome/ice_spikes.json
index a034b3d..a67947e 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/ice_spikes.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/ice_spikes.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"creature_spawn_probability": 0.07,
"downfall": 0.5,
"effects": {
diff --git a/src/main/resources/data/minecraft/worldgen/biome/jagged_peaks.json b/src/main/resources/data/minecraft/worldgen/biome/jagged_peaks.json
index 15a7696..9628eb1 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/jagged_peaks.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/jagged_peaks.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.9,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/jungle.json b/src/main/resources/data/minecraft/worldgen/biome/jungle.json
index 2c80557..6436091 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/jungle.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/jungle.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.9,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/lukewarm_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/lukewarm_ocean.json
index 9a259fe..adc1e79 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/lukewarm_ocean.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/lukewarm_ocean.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.5,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/lush_caves.json b/src/main/resources/data/minecraft/worldgen/biome/lush_caves.json
index b3aef76..4a3875c 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/lush_caves.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/lush_caves.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.5,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/mangrove_swamp.json b/src/main/resources/data/minecraft/worldgen/biome/mangrove_swamp.json
index bc4aa91..cbf0f6c 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/mangrove_swamp.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/mangrove_swamp.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.9,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/meadow.json b/src/main/resources/data/minecraft/worldgen/biome/meadow.json
index 4f2ec95..818a2df 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/meadow.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/meadow.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.8,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/mushroom_fields.json b/src/main/resources/data/minecraft/worldgen/biome/mushroom_fields.json
index e8a21c1..75943d0 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/mushroom_fields.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/mushroom_fields.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 1.0,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/nether_wastes.json b/src/main/resources/data/minecraft/worldgen/biome/nether_wastes.json
index d0e13f0..3157262 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/nether_wastes.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/nether_wastes.json
@@ -1,7 +1,5 @@
{
- "carvers": {
- "air": "minecraft:nether_cave"
- },
+ "carvers": "minecraft:nether_cave",
"downfall": 0.0,
"effects": {
"additions_sound": {
diff --git a/src/main/resources/data/minecraft/worldgen/biome/ocean.json b/src/main/resources/data/minecraft/worldgen/biome/ocean.json
index 32b74be..26ca1b7 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/ocean.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/ocean.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.5,
"effects": {
"fog_color": 12638463,
@@ -80,7 +78,6 @@
"minecraft:patch_sugar_cane",
"minecraft:patch_pumpkin",
"minecraft:seagrass_normal",
- "minecraft:seagrass_simple",
"minecraft:kelp_cold"
],
[
diff --git a/src/main/resources/data/minecraft/worldgen/biome/old_growth_birch_forest.json b/src/main/resources/data/minecraft/worldgen/biome/old_growth_birch_forest.json
index eb2da85..ea998ab 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/old_growth_birch_forest.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/old_growth_birch_forest.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.6,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/old_growth_pine_taiga.json b/src/main/resources/data/minecraft/worldgen/biome/old_growth_pine_taiga.json
index 4618b80..b46f36e 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/old_growth_pine_taiga.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/old_growth_pine_taiga.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.8,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/old_growth_spruce_taiga.json b/src/main/resources/data/minecraft/worldgen/biome/old_growth_spruce_taiga.json
index d51fde7..890145e 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/old_growth_spruce_taiga.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/old_growth_spruce_taiga.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.8,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/plains.json b/src/main/resources/data/minecraft/worldgen/biome/plains.json
index a223a71..55e186a 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/plains.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/plains.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.4,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/river.json b/src/main/resources/data/minecraft/worldgen/biome/river.json
index bce49ab..71ab8f2 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/river.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/river.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.5,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/savanna.json b/src/main/resources/data/minecraft/worldgen/biome/savanna.json
index c357a3b..d2b5a1c 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/savanna.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/savanna.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.0,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/savanna_plateau.json b/src/main/resources/data/minecraft/worldgen/biome/savanna_plateau.json
index d1bd9db..1fd89b8 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/savanna_plateau.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/savanna_plateau.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.0,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/small_end_islands.json b/src/main/resources/data/minecraft/worldgen/biome/small_end_islands.json
index c9e4887..fca51ad 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/small_end_islands.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/small_end_islands.json
@@ -1,5 +1,5 @@
{
- "carvers": {},
+ "carvers": [],
"downfall": 0.5,
"effects": {
"fog_color": 10518688,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/snowy_beach.json b/src/main/resources/data/minecraft/worldgen/biome/snowy_beach.json
index 8814e77..134689d 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/snowy_beach.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/snowy_beach.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.3,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/snowy_plains.json b/src/main/resources/data/minecraft/worldgen/biome/snowy_plains.json
index 8d63533..8f009ac 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/snowy_plains.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/snowy_plains.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"creature_spawn_probability": 0.07,
"downfall": 0.5,
"effects": {
diff --git a/src/main/resources/data/minecraft/worldgen/biome/snowy_slopes.json b/src/main/resources/data/minecraft/worldgen/biome/snowy_slopes.json
index fb9dc70..4a4e75e 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/snowy_slopes.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/snowy_slopes.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.9,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/snowy_taiga.json b/src/main/resources/data/minecraft/worldgen/biome/snowy_taiga.json
index 9dd3624..baedf4c 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/snowy_taiga.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/snowy_taiga.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.4,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/soul_sand_valley.json b/src/main/resources/data/minecraft/worldgen/biome/soul_sand_valley.json
index efa0043..5bdb722 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/soul_sand_valley.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/soul_sand_valley.json
@@ -1,7 +1,5 @@
{
- "carvers": {
- "air": "minecraft:nether_cave"
- },
+ "carvers": "minecraft:nether_cave",
"downfall": 0.0,
"effects": {
"additions_sound": {
diff --git a/src/main/resources/data/minecraft/worldgen/biome/sparse_jungle.json b/src/main/resources/data/minecraft/worldgen/biome/sparse_jungle.json
index 629e5cc..c7a88d4 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/sparse_jungle.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/sparse_jungle.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.8,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/stony_peaks.json b/src/main/resources/data/minecraft/worldgen/biome/stony_peaks.json
index e7605b5..4ae7dca 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/stony_peaks.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/stony_peaks.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.3,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/stony_shore.json b/src/main/resources/data/minecraft/worldgen/biome/stony_shore.json
index f4d4428..0e9b086 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/stony_shore.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/stony_shore.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.3,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/sunflower_plains.json b/src/main/resources/data/minecraft/worldgen/biome/sunflower_plains.json
index d365e37..3a1a8bd 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/sunflower_plains.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/sunflower_plains.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.4,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/swamp.json b/src/main/resources/data/minecraft/worldgen/biome/swamp.json
index 1f67a8f..7b3b932 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/swamp.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/swamp.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.9,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/taiga.json b/src/main/resources/data/minecraft/worldgen/biome/taiga.json
index 24c600b..ebbb1ba 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/taiga.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/taiga.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.8,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/the_end.json b/src/main/resources/data/minecraft/worldgen/biome/the_end.json
index 616acd8..5808583 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/the_end.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/the_end.json
@@ -1,5 +1,5 @@
{
- "carvers": {},
+ "carvers": [],
"downfall": 0.5,
"effects": {
"fog_color": 10518688,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/the_void.json b/src/main/resources/data/minecraft/worldgen/biome/the_void.json
index 49d0cca..1fd87f5 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/the_void.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/the_void.json
@@ -1,5 +1,5 @@
{
- "carvers": {},
+ "carvers": [],
"downfall": 0.5,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/warm_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/warm_ocean.json
index b1e1da6..a2d1735 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/warm_ocean.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/warm_ocean.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.5,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/warped_forest.json b/src/main/resources/data/minecraft/worldgen/biome/warped_forest.json
index 4e462ac..c040ec3 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/warped_forest.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/warped_forest.json
@@ -1,7 +1,5 @@
{
- "carvers": {
- "air": "minecraft:nether_cave"
- },
+ "carvers": "minecraft:nether_cave",
"downfall": 0.0,
"effects": {
"additions_sound": {
diff --git a/src/main/resources/data/minecraft/worldgen/biome/windswept_forest.json b/src/main/resources/data/minecraft/worldgen/biome/windswept_forest.json
index 2949efc..79df5cd 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/windswept_forest.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/windswept_forest.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.3,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/windswept_gravelly_hills.json b/src/main/resources/data/minecraft/worldgen/biome/windswept_gravelly_hills.json
index bf89117..504f3ca 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/windswept_gravelly_hills.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/windswept_gravelly_hills.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.3,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/windswept_hills.json b/src/main/resources/data/minecraft/worldgen/biome/windswept_hills.json
index bf89117..504f3ca 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/windswept_hills.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/windswept_hills.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.3,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/windswept_savanna.json b/src/main/resources/data/minecraft/worldgen/biome/windswept_savanna.json
index 522fafd..caad967 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/windswept_savanna.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/windswept_savanna.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"downfall": 0.0,
"effects": {
"fog_color": 12638463,
diff --git a/src/main/resources/data/minecraft/worldgen/biome/wooded_badlands.json b/src/main/resources/data/minecraft/worldgen/biome/wooded_badlands.json
index 5490971..52f7fc2 100644
--- a/src/main/resources/data/minecraft/worldgen/biome/wooded_badlands.json
+++ b/src/main/resources/data/minecraft/worldgen/biome/wooded_badlands.json
@@ -1,11 +1,9 @@
{
- "carvers": {
- "air": [
- "minecraft:cave",
- "minecraft:cave_extra_underground",
- "minecraft:canyon"
- ]
- },
+ "carvers": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ],
"creature_spawn_probability": 0.04,
"downfall": 0.0,
"effects": {
diff --git a/src/main/resources/reports/blocks.json b/src/main/resources/reports/blocks.json
index 769af77..d725a9c 100644
--- a/src/main/resources/reports/blocks.json
+++ b/src/main/resources/reports/blocks.json
@@ -25,7 +25,7 @@
},
"states": [
{
- "id": 8707,
+ "id": 8938,
"properties": {
"face": "floor",
"facing": "north",
@@ -33,7 +33,7 @@
}
},
{
- "id": 8708,
+ "id": 8939,
"properties": {
"face": "floor",
"facing": "north",
@@ -41,7 +41,7 @@
}
},
{
- "id": 8709,
+ "id": 8940,
"properties": {
"face": "floor",
"facing": "south",
@@ -49,7 +49,7 @@
}
},
{
- "id": 8710,
+ "id": 8941,
"properties": {
"face": "floor",
"facing": "south",
@@ -57,7 +57,7 @@
}
},
{
- "id": 8711,
+ "id": 8942,
"properties": {
"face": "floor",
"facing": "west",
@@ -65,7 +65,7 @@
}
},
{
- "id": 8712,
+ "id": 8943,
"properties": {
"face": "floor",
"facing": "west",
@@ -73,7 +73,7 @@
}
},
{
- "id": 8713,
+ "id": 8944,
"properties": {
"face": "floor",
"facing": "east",
@@ -81,7 +81,7 @@
}
},
{
- "id": 8714,
+ "id": 8945,
"properties": {
"face": "floor",
"facing": "east",
@@ -89,7 +89,7 @@
}
},
{
- "id": 8715,
+ "id": 8946,
"properties": {
"face": "wall",
"facing": "north",
@@ -98,7 +98,7 @@
},
{
"default": true,
- "id": 8716,
+ "id": 8947,
"properties": {
"face": "wall",
"facing": "north",
@@ -106,7 +106,7 @@
}
},
{
- "id": 8717,
+ "id": 8948,
"properties": {
"face": "wall",
"facing": "south",
@@ -114,7 +114,7 @@
}
},
{
- "id": 8718,
+ "id": 8949,
"properties": {
"face": "wall",
"facing": "south",
@@ -122,7 +122,7 @@
}
},
{
- "id": 8719,
+ "id": 8950,
"properties": {
"face": "wall",
"facing": "west",
@@ -130,7 +130,7 @@
}
},
{
- "id": 8720,
+ "id": 8951,
"properties": {
"face": "wall",
"facing": "west",
@@ -138,7 +138,7 @@
}
},
{
- "id": 8721,
+ "id": 8952,
"properties": {
"face": "wall",
"facing": "east",
@@ -146,7 +146,7 @@
}
},
{
- "id": 8722,
+ "id": 8953,
"properties": {
"face": "wall",
"facing": "east",
@@ -154,7 +154,7 @@
}
},
{
- "id": 8723,
+ "id": 8954,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -162,7 +162,7 @@
}
},
{
- "id": 8724,
+ "id": 8955,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -170,7 +170,7 @@
}
},
{
- "id": 8725,
+ "id": 8956,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -178,7 +178,7 @@
}
},
{
- "id": 8726,
+ "id": 8957,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -186,7 +186,7 @@
}
},
{
- "id": 8727,
+ "id": 8958,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -194,7 +194,7 @@
}
},
{
- "id": 8728,
+ "id": 8959,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -202,7 +202,7 @@
}
},
{
- "id": 8729,
+ "id": 8960,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -210,7 +210,7 @@
}
},
{
- "id": 8730,
+ "id": 8961,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -251,7 +251,7 @@
},
"states": [
{
- "id": 12014,
+ "id": 12419,
"properties": {
"facing": "north",
"half": "upper",
@@ -261,7 +261,7 @@
}
},
{
- "id": 12015,
+ "id": 12420,
"properties": {
"facing": "north",
"half": "upper",
@@ -271,7 +271,7 @@
}
},
{
- "id": 12016,
+ "id": 12421,
"properties": {
"facing": "north",
"half": "upper",
@@ -281,7 +281,7 @@
}
},
{
- "id": 12017,
+ "id": 12422,
"properties": {
"facing": "north",
"half": "upper",
@@ -291,7 +291,7 @@
}
},
{
- "id": 12018,
+ "id": 12423,
"properties": {
"facing": "north",
"half": "upper",
@@ -301,7 +301,7 @@
}
},
{
- "id": 12019,
+ "id": 12424,
"properties": {
"facing": "north",
"half": "upper",
@@ -311,7 +311,7 @@
}
},
{
- "id": 12020,
+ "id": 12425,
"properties": {
"facing": "north",
"half": "upper",
@@ -321,7 +321,7 @@
}
},
{
- "id": 12021,
+ "id": 12426,
"properties": {
"facing": "north",
"half": "upper",
@@ -331,7 +331,7 @@
}
},
{
- "id": 12022,
+ "id": 12427,
"properties": {
"facing": "north",
"half": "lower",
@@ -341,7 +341,7 @@
}
},
{
- "id": 12023,
+ "id": 12428,
"properties": {
"facing": "north",
"half": "lower",
@@ -351,7 +351,7 @@
}
},
{
- "id": 12024,
+ "id": 12429,
"properties": {
"facing": "north",
"half": "lower",
@@ -362,7 +362,7 @@
},
{
"default": true,
- "id": 12025,
+ "id": 12430,
"properties": {
"facing": "north",
"half": "lower",
@@ -372,7 +372,7 @@
}
},
{
- "id": 12026,
+ "id": 12431,
"properties": {
"facing": "north",
"half": "lower",
@@ -382,7 +382,7 @@
}
},
{
- "id": 12027,
+ "id": 12432,
"properties": {
"facing": "north",
"half": "lower",
@@ -392,7 +392,7 @@
}
},
{
- "id": 12028,
+ "id": 12433,
"properties": {
"facing": "north",
"half": "lower",
@@ -402,7 +402,7 @@
}
},
{
- "id": 12029,
+ "id": 12434,
"properties": {
"facing": "north",
"half": "lower",
@@ -412,7 +412,7 @@
}
},
{
- "id": 12030,
+ "id": 12435,
"properties": {
"facing": "south",
"half": "upper",
@@ -422,7 +422,7 @@
}
},
{
- "id": 12031,
+ "id": 12436,
"properties": {
"facing": "south",
"half": "upper",
@@ -432,7 +432,7 @@
}
},
{
- "id": 12032,
+ "id": 12437,
"properties": {
"facing": "south",
"half": "upper",
@@ -442,7 +442,7 @@
}
},
{
- "id": 12033,
+ "id": 12438,
"properties": {
"facing": "south",
"half": "upper",
@@ -452,7 +452,7 @@
}
},
{
- "id": 12034,
+ "id": 12439,
"properties": {
"facing": "south",
"half": "upper",
@@ -462,7 +462,7 @@
}
},
{
- "id": 12035,
+ "id": 12440,
"properties": {
"facing": "south",
"half": "upper",
@@ -472,7 +472,7 @@
}
},
{
- "id": 12036,
+ "id": 12441,
"properties": {
"facing": "south",
"half": "upper",
@@ -482,7 +482,7 @@
}
},
{
- "id": 12037,
+ "id": 12442,
"properties": {
"facing": "south",
"half": "upper",
@@ -492,7 +492,7 @@
}
},
{
- "id": 12038,
+ "id": 12443,
"properties": {
"facing": "south",
"half": "lower",
@@ -502,7 +502,7 @@
}
},
{
- "id": 12039,
+ "id": 12444,
"properties": {
"facing": "south",
"half": "lower",
@@ -512,7 +512,7 @@
}
},
{
- "id": 12040,
+ "id": 12445,
"properties": {
"facing": "south",
"half": "lower",
@@ -522,7 +522,7 @@
}
},
{
- "id": 12041,
+ "id": 12446,
"properties": {
"facing": "south",
"half": "lower",
@@ -532,7 +532,7 @@
}
},
{
- "id": 12042,
+ "id": 12447,
"properties": {
"facing": "south",
"half": "lower",
@@ -542,7 +542,7 @@
}
},
{
- "id": 12043,
+ "id": 12448,
"properties": {
"facing": "south",
"half": "lower",
@@ -552,7 +552,7 @@
}
},
{
- "id": 12044,
+ "id": 12449,
"properties": {
"facing": "south",
"half": "lower",
@@ -562,7 +562,7 @@
}
},
{
- "id": 12045,
+ "id": 12450,
"properties": {
"facing": "south",
"half": "lower",
@@ -572,7 +572,7 @@
}
},
{
- "id": 12046,
+ "id": 12451,
"properties": {
"facing": "west",
"half": "upper",
@@ -582,7 +582,7 @@
}
},
{
- "id": 12047,
+ "id": 12452,
"properties": {
"facing": "west",
"half": "upper",
@@ -592,7 +592,7 @@
}
},
{
- "id": 12048,
+ "id": 12453,
"properties": {
"facing": "west",
"half": "upper",
@@ -602,7 +602,7 @@
}
},
{
- "id": 12049,
+ "id": 12454,
"properties": {
"facing": "west",
"half": "upper",
@@ -612,7 +612,7 @@
}
},
{
- "id": 12050,
+ "id": 12455,
"properties": {
"facing": "west",
"half": "upper",
@@ -622,7 +622,7 @@
}
},
{
- "id": 12051,
+ "id": 12456,
"properties": {
"facing": "west",
"half": "upper",
@@ -632,7 +632,7 @@
}
},
{
- "id": 12052,
+ "id": 12457,
"properties": {
"facing": "west",
"half": "upper",
@@ -642,7 +642,7 @@
}
},
{
- "id": 12053,
+ "id": 12458,
"properties": {
"facing": "west",
"half": "upper",
@@ -652,7 +652,7 @@
}
},
{
- "id": 12054,
+ "id": 12459,
"properties": {
"facing": "west",
"half": "lower",
@@ -662,7 +662,7 @@
}
},
{
- "id": 12055,
+ "id": 12460,
"properties": {
"facing": "west",
"half": "lower",
@@ -672,7 +672,7 @@
}
},
{
- "id": 12056,
+ "id": 12461,
"properties": {
"facing": "west",
"half": "lower",
@@ -682,7 +682,7 @@
}
},
{
- "id": 12057,
+ "id": 12462,
"properties": {
"facing": "west",
"half": "lower",
@@ -692,7 +692,7 @@
}
},
{
- "id": 12058,
+ "id": 12463,
"properties": {
"facing": "west",
"half": "lower",
@@ -702,7 +702,7 @@
}
},
{
- "id": 12059,
+ "id": 12464,
"properties": {
"facing": "west",
"half": "lower",
@@ -712,7 +712,7 @@
}
},
{
- "id": 12060,
+ "id": 12465,
"properties": {
"facing": "west",
"half": "lower",
@@ -722,7 +722,7 @@
}
},
{
- "id": 12061,
+ "id": 12466,
"properties": {
"facing": "west",
"half": "lower",
@@ -732,7 +732,7 @@
}
},
{
- "id": 12062,
+ "id": 12467,
"properties": {
"facing": "east",
"half": "upper",
@@ -742,7 +742,7 @@
}
},
{
- "id": 12063,
+ "id": 12468,
"properties": {
"facing": "east",
"half": "upper",
@@ -752,7 +752,7 @@
}
},
{
- "id": 12064,
+ "id": 12469,
"properties": {
"facing": "east",
"half": "upper",
@@ -762,7 +762,7 @@
}
},
{
- "id": 12065,
+ "id": 12470,
"properties": {
"facing": "east",
"half": "upper",
@@ -772,7 +772,7 @@
}
},
{
- "id": 12066,
+ "id": 12471,
"properties": {
"facing": "east",
"half": "upper",
@@ -782,7 +782,7 @@
}
},
{
- "id": 12067,
+ "id": 12472,
"properties": {
"facing": "east",
"half": "upper",
@@ -792,7 +792,7 @@
}
},
{
- "id": 12068,
+ "id": 12473,
"properties": {
"facing": "east",
"half": "upper",
@@ -802,7 +802,7 @@
}
},
{
- "id": 12069,
+ "id": 12474,
"properties": {
"facing": "east",
"half": "upper",
@@ -812,7 +812,7 @@
}
},
{
- "id": 12070,
+ "id": 12475,
"properties": {
"facing": "east",
"half": "lower",
@@ -822,7 +822,7 @@
}
},
{
- "id": 12071,
+ "id": 12476,
"properties": {
"facing": "east",
"half": "lower",
@@ -832,7 +832,7 @@
}
},
{
- "id": 12072,
+ "id": 12477,
"properties": {
"facing": "east",
"half": "lower",
@@ -842,7 +842,7 @@
}
},
{
- "id": 12073,
+ "id": 12478,
"properties": {
"facing": "east",
"half": "lower",
@@ -852,7 +852,7 @@
}
},
{
- "id": 12074,
+ "id": 12479,
"properties": {
"facing": "east",
"half": "lower",
@@ -862,7 +862,7 @@
}
},
{
- "id": 12075,
+ "id": 12480,
"properties": {
"facing": "east",
"half": "lower",
@@ -872,7 +872,7 @@
}
},
{
- "id": 12076,
+ "id": 12481,
"properties": {
"facing": "east",
"half": "lower",
@@ -882,7 +882,7 @@
}
},
{
- "id": 12077,
+ "id": 12482,
"properties": {
"facing": "east",
"half": "lower",
@@ -922,7 +922,7 @@
},
"states": [
{
- "id": 11662,
+ "id": 12035,
"properties": {
"east": "true",
"north": "true",
@@ -932,7 +932,7 @@
}
},
{
- "id": 11663,
+ "id": 12036,
"properties": {
"east": "true",
"north": "true",
@@ -942,7 +942,7 @@
}
},
{
- "id": 11664,
+ "id": 12037,
"properties": {
"east": "true",
"north": "true",
@@ -952,7 +952,7 @@
}
},
{
- "id": 11665,
+ "id": 12038,
"properties": {
"east": "true",
"north": "true",
@@ -962,7 +962,7 @@
}
},
{
- "id": 11666,
+ "id": 12039,
"properties": {
"east": "true",
"north": "true",
@@ -972,7 +972,7 @@
}
},
{
- "id": 11667,
+ "id": 12040,
"properties": {
"east": "true",
"north": "true",
@@ -982,7 +982,7 @@
}
},
{
- "id": 11668,
+ "id": 12041,
"properties": {
"east": "true",
"north": "true",
@@ -992,7 +992,7 @@
}
},
{
- "id": 11669,
+ "id": 12042,
"properties": {
"east": "true",
"north": "true",
@@ -1002,7 +1002,7 @@
}
},
{
- "id": 11670,
+ "id": 12043,
"properties": {
"east": "true",
"north": "false",
@@ -1012,7 +1012,7 @@
}
},
{
- "id": 11671,
+ "id": 12044,
"properties": {
"east": "true",
"north": "false",
@@ -1022,7 +1022,7 @@
}
},
{
- "id": 11672,
+ "id": 12045,
"properties": {
"east": "true",
"north": "false",
@@ -1032,7 +1032,7 @@
}
},
{
- "id": 11673,
+ "id": 12046,
"properties": {
"east": "true",
"north": "false",
@@ -1042,7 +1042,7 @@
}
},
{
- "id": 11674,
+ "id": 12047,
"properties": {
"east": "true",
"north": "false",
@@ -1052,7 +1052,7 @@
}
},
{
- "id": 11675,
+ "id": 12048,
"properties": {
"east": "true",
"north": "false",
@@ -1062,7 +1062,7 @@
}
},
{
- "id": 11676,
+ "id": 12049,
"properties": {
"east": "true",
"north": "false",
@@ -1072,7 +1072,7 @@
}
},
{
- "id": 11677,
+ "id": 12050,
"properties": {
"east": "true",
"north": "false",
@@ -1082,7 +1082,7 @@
}
},
{
- "id": 11678,
+ "id": 12051,
"properties": {
"east": "false",
"north": "true",
@@ -1092,7 +1092,7 @@
}
},
{
- "id": 11679,
+ "id": 12052,
"properties": {
"east": "false",
"north": "true",
@@ -1102,7 +1102,7 @@
}
},
{
- "id": 11680,
+ "id": 12053,
"properties": {
"east": "false",
"north": "true",
@@ -1112,7 +1112,7 @@
}
},
{
- "id": 11681,
+ "id": 12054,
"properties": {
"east": "false",
"north": "true",
@@ -1122,7 +1122,7 @@
}
},
{
- "id": 11682,
+ "id": 12055,
"properties": {
"east": "false",
"north": "true",
@@ -1132,7 +1132,7 @@
}
},
{
- "id": 11683,
+ "id": 12056,
"properties": {
"east": "false",
"north": "true",
@@ -1142,7 +1142,7 @@
}
},
{
- "id": 11684,
+ "id": 12057,
"properties": {
"east": "false",
"north": "true",
@@ -1152,7 +1152,7 @@
}
},
{
- "id": 11685,
+ "id": 12058,
"properties": {
"east": "false",
"north": "true",
@@ -1162,7 +1162,7 @@
}
},
{
- "id": 11686,
+ "id": 12059,
"properties": {
"east": "false",
"north": "false",
@@ -1172,7 +1172,7 @@
}
},
{
- "id": 11687,
+ "id": 12060,
"properties": {
"east": "false",
"north": "false",
@@ -1182,7 +1182,7 @@
}
},
{
- "id": 11688,
+ "id": 12061,
"properties": {
"east": "false",
"north": "false",
@@ -1192,7 +1192,7 @@
}
},
{
- "id": 11689,
+ "id": 12062,
"properties": {
"east": "false",
"north": "false",
@@ -1202,7 +1202,7 @@
}
},
{
- "id": 11690,
+ "id": 12063,
"properties": {
"east": "false",
"north": "false",
@@ -1212,7 +1212,7 @@
}
},
{
- "id": 11691,
+ "id": 12064,
"properties": {
"east": "false",
"north": "false",
@@ -1222,7 +1222,7 @@
}
},
{
- "id": 11692,
+ "id": 12065,
"properties": {
"east": "false",
"north": "false",
@@ -1233,7 +1233,7 @@
},
{
"default": true,
- "id": 11693,
+ "id": 12066,
"properties": {
"east": "false",
"north": "false",
@@ -1272,7 +1272,7 @@
},
"states": [
{
- "id": 11406,
+ "id": 11747,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -1281,7 +1281,7 @@
}
},
{
- "id": 11407,
+ "id": 11748,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -1290,7 +1290,7 @@
}
},
{
- "id": 11408,
+ "id": 11749,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -1299,7 +1299,7 @@
}
},
{
- "id": 11409,
+ "id": 11750,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -1308,7 +1308,7 @@
}
},
{
- "id": 11410,
+ "id": 11751,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -1317,7 +1317,7 @@
}
},
{
- "id": 11411,
+ "id": 11752,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -1326,7 +1326,7 @@
}
},
{
- "id": 11412,
+ "id": 11753,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -1336,7 +1336,7 @@
},
{
"default": true,
- "id": 11413,
+ "id": 11754,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -1345,7 +1345,7 @@
}
},
{
- "id": 11414,
+ "id": 11755,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -1354,7 +1354,7 @@
}
},
{
- "id": 11415,
+ "id": 11756,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -1363,7 +1363,7 @@
}
},
{
- "id": 11416,
+ "id": 11757,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -1372,7 +1372,7 @@
}
},
{
- "id": 11417,
+ "id": 11758,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -1381,7 +1381,7 @@
}
},
{
- "id": 11418,
+ "id": 11759,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -1390,7 +1390,7 @@
}
},
{
- "id": 11419,
+ "id": 11760,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -1399,7 +1399,7 @@
}
},
{
- "id": 11420,
+ "id": 11761,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -1408,7 +1408,7 @@
}
},
{
- "id": 11421,
+ "id": 11762,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -1417,7 +1417,7 @@
}
},
{
- "id": 11422,
+ "id": 11763,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -1426,7 +1426,7 @@
}
},
{
- "id": 11423,
+ "id": 11764,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -1435,7 +1435,7 @@
}
},
{
- "id": 11424,
+ "id": 11765,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -1444,7 +1444,7 @@
}
},
{
- "id": 11425,
+ "id": 11766,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -1453,7 +1453,7 @@
}
},
{
- "id": 11426,
+ "id": 11767,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -1462,7 +1462,7 @@
}
},
{
- "id": 11427,
+ "id": 11768,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -1471,7 +1471,7 @@
}
},
{
- "id": 11428,
+ "id": 11769,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -1480,7 +1480,7 @@
}
},
{
- "id": 11429,
+ "id": 11770,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -1489,7 +1489,7 @@
}
},
{
- "id": 11430,
+ "id": 11771,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -1498,7 +1498,7 @@
}
},
{
- "id": 11431,
+ "id": 11772,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -1507,7 +1507,7 @@
}
},
{
- "id": 11432,
+ "id": 11773,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -1516,7 +1516,7 @@
}
},
{
- "id": 11433,
+ "id": 11774,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -1525,7 +1525,7 @@
}
},
{
- "id": 11434,
+ "id": 11775,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -1534,7 +1534,7 @@
}
},
{
- "id": 11435,
+ "id": 11776,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -1543,7 +1543,7 @@
}
},
{
- "id": 11436,
+ "id": 11777,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -1552,7 +1552,7 @@
}
},
{
- "id": 11437,
+ "id": 11778,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -1598,7 +1598,7 @@
},
"states": [
{
- "id": 5026,
+ "id": 5118,
"properties": {
"attached": "true",
"rotation": "0",
@@ -1606,7 +1606,7 @@
}
},
{
- "id": 5027,
+ "id": 5119,
"properties": {
"attached": "true",
"rotation": "0",
@@ -1614,7 +1614,7 @@
}
},
{
- "id": 5028,
+ "id": 5120,
"properties": {
"attached": "true",
"rotation": "1",
@@ -1622,7 +1622,7 @@
}
},
{
- "id": 5029,
+ "id": 5121,
"properties": {
"attached": "true",
"rotation": "1",
@@ -1630,7 +1630,7 @@
}
},
{
- "id": 5030,
+ "id": 5122,
"properties": {
"attached": "true",
"rotation": "2",
@@ -1638,7 +1638,7 @@
}
},
{
- "id": 5031,
+ "id": 5123,
"properties": {
"attached": "true",
"rotation": "2",
@@ -1646,7 +1646,7 @@
}
},
{
- "id": 5032,
+ "id": 5124,
"properties": {
"attached": "true",
"rotation": "3",
@@ -1654,7 +1654,7 @@
}
},
{
- "id": 5033,
+ "id": 5125,
"properties": {
"attached": "true",
"rotation": "3",
@@ -1662,7 +1662,7 @@
}
},
{
- "id": 5034,
+ "id": 5126,
"properties": {
"attached": "true",
"rotation": "4",
@@ -1670,7 +1670,7 @@
}
},
{
- "id": 5035,
+ "id": 5127,
"properties": {
"attached": "true",
"rotation": "4",
@@ -1678,7 +1678,7 @@
}
},
{
- "id": 5036,
+ "id": 5128,
"properties": {
"attached": "true",
"rotation": "5",
@@ -1686,7 +1686,7 @@
}
},
{
- "id": 5037,
+ "id": 5129,
"properties": {
"attached": "true",
"rotation": "5",
@@ -1694,7 +1694,7 @@
}
},
{
- "id": 5038,
+ "id": 5130,
"properties": {
"attached": "true",
"rotation": "6",
@@ -1702,7 +1702,7 @@
}
},
{
- "id": 5039,
+ "id": 5131,
"properties": {
"attached": "true",
"rotation": "6",
@@ -1710,7 +1710,7 @@
}
},
{
- "id": 5040,
+ "id": 5132,
"properties": {
"attached": "true",
"rotation": "7",
@@ -1718,7 +1718,7 @@
}
},
{
- "id": 5041,
+ "id": 5133,
"properties": {
"attached": "true",
"rotation": "7",
@@ -1726,7 +1726,7 @@
}
},
{
- "id": 5042,
+ "id": 5134,
"properties": {
"attached": "true",
"rotation": "8",
@@ -1734,7 +1734,7 @@
}
},
{
- "id": 5043,
+ "id": 5135,
"properties": {
"attached": "true",
"rotation": "8",
@@ -1742,7 +1742,7 @@
}
},
{
- "id": 5044,
+ "id": 5136,
"properties": {
"attached": "true",
"rotation": "9",
@@ -1750,7 +1750,7 @@
}
},
{
- "id": 5045,
+ "id": 5137,
"properties": {
"attached": "true",
"rotation": "9",
@@ -1758,7 +1758,7 @@
}
},
{
- "id": 5046,
+ "id": 5138,
"properties": {
"attached": "true",
"rotation": "10",
@@ -1766,7 +1766,7 @@
}
},
{
- "id": 5047,
+ "id": 5139,
"properties": {
"attached": "true",
"rotation": "10",
@@ -1774,7 +1774,7 @@
}
},
{
- "id": 5048,
+ "id": 5140,
"properties": {
"attached": "true",
"rotation": "11",
@@ -1782,7 +1782,7 @@
}
},
{
- "id": 5049,
+ "id": 5141,
"properties": {
"attached": "true",
"rotation": "11",
@@ -1790,7 +1790,7 @@
}
},
{
- "id": 5050,
+ "id": 5142,
"properties": {
"attached": "true",
"rotation": "12",
@@ -1798,7 +1798,7 @@
}
},
{
- "id": 5051,
+ "id": 5143,
"properties": {
"attached": "true",
"rotation": "12",
@@ -1806,7 +1806,7 @@
}
},
{
- "id": 5052,
+ "id": 5144,
"properties": {
"attached": "true",
"rotation": "13",
@@ -1814,7 +1814,7 @@
}
},
{
- "id": 5053,
+ "id": 5145,
"properties": {
"attached": "true",
"rotation": "13",
@@ -1822,7 +1822,7 @@
}
},
{
- "id": 5054,
+ "id": 5146,
"properties": {
"attached": "true",
"rotation": "14",
@@ -1830,7 +1830,7 @@
}
},
{
- "id": 5055,
+ "id": 5147,
"properties": {
"attached": "true",
"rotation": "14",
@@ -1838,7 +1838,7 @@
}
},
{
- "id": 5056,
+ "id": 5148,
"properties": {
"attached": "true",
"rotation": "15",
@@ -1846,7 +1846,7 @@
}
},
{
- "id": 5057,
+ "id": 5149,
"properties": {
"attached": "true",
"rotation": "15",
@@ -1854,7 +1854,7 @@
}
},
{
- "id": 5058,
+ "id": 5150,
"properties": {
"attached": "false",
"rotation": "0",
@@ -1863,7 +1863,7 @@
},
{
"default": true,
- "id": 5059,
+ "id": 5151,
"properties": {
"attached": "false",
"rotation": "0",
@@ -1871,7 +1871,7 @@
}
},
{
- "id": 5060,
+ "id": 5152,
"properties": {
"attached": "false",
"rotation": "1",
@@ -1879,7 +1879,7 @@
}
},
{
- "id": 5061,
+ "id": 5153,
"properties": {
"attached": "false",
"rotation": "1",
@@ -1887,7 +1887,7 @@
}
},
{
- "id": 5062,
+ "id": 5154,
"properties": {
"attached": "false",
"rotation": "2",
@@ -1895,7 +1895,7 @@
}
},
{
- "id": 5063,
+ "id": 5155,
"properties": {
"attached": "false",
"rotation": "2",
@@ -1903,7 +1903,7 @@
}
},
{
- "id": 5064,
+ "id": 5156,
"properties": {
"attached": "false",
"rotation": "3",
@@ -1911,7 +1911,7 @@
}
},
{
- "id": 5065,
+ "id": 5157,
"properties": {
"attached": "false",
"rotation": "3",
@@ -1919,7 +1919,7 @@
}
},
{
- "id": 5066,
+ "id": 5158,
"properties": {
"attached": "false",
"rotation": "4",
@@ -1927,7 +1927,7 @@
}
},
{
- "id": 5067,
+ "id": 5159,
"properties": {
"attached": "false",
"rotation": "4",
@@ -1935,7 +1935,7 @@
}
},
{
- "id": 5068,
+ "id": 5160,
"properties": {
"attached": "false",
"rotation": "5",
@@ -1943,7 +1943,7 @@
}
},
{
- "id": 5069,
+ "id": 5161,
"properties": {
"attached": "false",
"rotation": "5",
@@ -1951,7 +1951,7 @@
}
},
{
- "id": 5070,
+ "id": 5162,
"properties": {
"attached": "false",
"rotation": "6",
@@ -1959,7 +1959,7 @@
}
},
{
- "id": 5071,
+ "id": 5163,
"properties": {
"attached": "false",
"rotation": "6",
@@ -1967,7 +1967,7 @@
}
},
{
- "id": 5072,
+ "id": 5164,
"properties": {
"attached": "false",
"rotation": "7",
@@ -1975,7 +1975,7 @@
}
},
{
- "id": 5073,
+ "id": 5165,
"properties": {
"attached": "false",
"rotation": "7",
@@ -1983,7 +1983,7 @@
}
},
{
- "id": 5074,
+ "id": 5166,
"properties": {
"attached": "false",
"rotation": "8",
@@ -1991,7 +1991,7 @@
}
},
{
- "id": 5075,
+ "id": 5167,
"properties": {
"attached": "false",
"rotation": "8",
@@ -1999,7 +1999,7 @@
}
},
{
- "id": 5076,
+ "id": 5168,
"properties": {
"attached": "false",
"rotation": "9",
@@ -2007,7 +2007,7 @@
}
},
{
- "id": 5077,
+ "id": 5169,
"properties": {
"attached": "false",
"rotation": "9",
@@ -2015,7 +2015,7 @@
}
},
{
- "id": 5078,
+ "id": 5170,
"properties": {
"attached": "false",
"rotation": "10",
@@ -2023,7 +2023,7 @@
}
},
{
- "id": 5079,
+ "id": 5171,
"properties": {
"attached": "false",
"rotation": "10",
@@ -2031,7 +2031,7 @@
}
},
{
- "id": 5080,
+ "id": 5172,
"properties": {
"attached": "false",
"rotation": "11",
@@ -2039,7 +2039,7 @@
}
},
{
- "id": 5081,
+ "id": 5173,
"properties": {
"attached": "false",
"rotation": "11",
@@ -2047,7 +2047,7 @@
}
},
{
- "id": 5082,
+ "id": 5174,
"properties": {
"attached": "false",
"rotation": "12",
@@ -2055,7 +2055,7 @@
}
},
{
- "id": 5083,
+ "id": 5175,
"properties": {
"attached": "false",
"rotation": "12",
@@ -2063,7 +2063,7 @@
}
},
{
- "id": 5084,
+ "id": 5176,
"properties": {
"attached": "false",
"rotation": "13",
@@ -2071,7 +2071,7 @@
}
},
{
- "id": 5085,
+ "id": 5177,
"properties": {
"attached": "false",
"rotation": "13",
@@ -2079,7 +2079,7 @@
}
},
{
- "id": 5086,
+ "id": 5178,
"properties": {
"attached": "false",
"rotation": "14",
@@ -2087,7 +2087,7 @@
}
},
{
- "id": 5087,
+ "id": 5179,
"properties": {
"attached": "false",
"rotation": "14",
@@ -2095,7 +2095,7 @@
}
},
{
- "id": 5088,
+ "id": 5180,
"properties": {
"attached": "false",
"rotation": "15",
@@ -2103,7 +2103,7 @@
}
},
{
- "id": 5089,
+ "id": 5181,
"properties": {
"attached": "false",
"rotation": "15",
@@ -2137,160 +2137,160 @@
]
},
"states": [
- {
- "id": 349,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 350,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 351,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 352,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 353,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 354,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 355,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 356,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 357,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 358,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 359,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 360,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 361,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 362,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 363,
- "properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
{
"id": 364,
"properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "true",
+ "waterlogged": "true"
}
},
{
"id": 365,
"properties": {
- "distance": "5",
+ "distance": "1",
"persistent": "true",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 366,
"properties": {
- "distance": "5",
- "persistent": "true",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "false",
+ "waterlogged": "true"
}
},
{
"id": 367,
"properties": {
- "distance": "5",
+ "distance": "1",
"persistent": "false",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 368,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 369,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 370,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 371,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 372,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 373,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 374,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 375,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 376,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 377,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 378,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 379,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 380,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 381,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 382,
+ "properties": {
+ "distance": "5",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 383,
"properties": {
"distance": "5",
"persistent": "false",
@@ -2298,7 +2298,7 @@
}
},
{
- "id": 369,
+ "id": 384,
"properties": {
"distance": "6",
"persistent": "true",
@@ -2306,7 +2306,7 @@
}
},
{
- "id": 370,
+ "id": 385,
"properties": {
"distance": "6",
"persistent": "true",
@@ -2314,7 +2314,7 @@
}
},
{
- "id": 371,
+ "id": 386,
"properties": {
"distance": "6",
"persistent": "false",
@@ -2322,7 +2322,7 @@
}
},
{
- "id": 372,
+ "id": 387,
"properties": {
"distance": "6",
"persistent": "false",
@@ -2330,7 +2330,7 @@
}
},
{
- "id": 373,
+ "id": 388,
"properties": {
"distance": "7",
"persistent": "true",
@@ -2338,7 +2338,7 @@
}
},
{
- "id": 374,
+ "id": 389,
"properties": {
"distance": "7",
"persistent": "true",
@@ -2346,7 +2346,7 @@
}
},
{
- "id": 375,
+ "id": 390,
"properties": {
"distance": "7",
"persistent": "false",
@@ -2355,7 +2355,7 @@
},
{
"default": true,
- "id": 376,
+ "id": 391,
"properties": {
"distance": "7",
"persistent": "false",
@@ -2378,20 +2378,20 @@
},
"states": [
{
- "id": 142,
+ "id": 148,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 143,
+ "id": 149,
"properties": {
"axis": "y"
}
},
{
- "id": 144,
+ "id": 150,
"properties": {
"axis": "z"
}
@@ -2424,14 +2424,14 @@
},
"states": [
{
- "id": 5724,
+ "id": 5888,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5725,
+ "id": 5889,
"properties": {
"powered": "false"
}
@@ -2453,13 +2453,13 @@
"states": [
{
"default": true,
- "id": 33,
+ "id": 37,
"properties": {
"stage": "0"
}
},
{
- "id": 34,
+ "id": 38,
"properties": {
"stage": "1"
}
@@ -2498,7 +2498,7 @@
},
"states": [
{
- "id": 4398,
+ "id": 4450,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -2506,217 +2506,217 @@
},
{
"default": true,
- "id": 4399,
+ "id": 4451,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 4400,
+ "id": 4452,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 4401,
+ "id": 4453,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 4402,
+ "id": 4454,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 4403,
+ "id": 4455,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 4404,
+ "id": 4456,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 4405,
+ "id": 4457,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 4406,
+ "id": 4458,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 4407,
+ "id": 4459,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 4408,
+ "id": 4460,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 4409,
+ "id": 4461,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 4410,
+ "id": 4462,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 4411,
+ "id": 4463,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 4412,
+ "id": 4464,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 4413,
+ "id": 4465,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 4414,
+ "id": 4466,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 4415,
+ "id": 4467,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 4416,
+ "id": 4468,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 4417,
+ "id": 4469,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 4418,
+ "id": 4470,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 4419,
+ "id": 4471,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 4420,
+ "id": 4472,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 4421,
+ "id": 4473,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 4422,
+ "id": 4474,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 4423,
+ "id": 4475,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 4424,
+ "id": 4476,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 4425,
+ "id": 4477,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 4426,
+ "id": 4478,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 4427,
+ "id": 4479,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 4428,
+ "id": 4480,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 4429,
+ "id": 4481,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -2742,21 +2742,21 @@
},
"states": [
{
- "id": 11186,
+ "id": 11521,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11187,
+ "id": 11522,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11188,
+ "id": 11523,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -2764,21 +2764,21 @@
},
{
"default": true,
- "id": 11189,
+ "id": 11524,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11190,
+ "id": 11525,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11191,
+ "id": 11526,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -2819,7 +2819,7 @@
},
"states": [
{
- "id": 9884,
+ "id": 10139,
"properties": {
"facing": "north",
"half": "top",
@@ -2828,7 +2828,7 @@
}
},
{
- "id": 9885,
+ "id": 10140,
"properties": {
"facing": "north",
"half": "top",
@@ -2837,7 +2837,7 @@
}
},
{
- "id": 9886,
+ "id": 10141,
"properties": {
"facing": "north",
"half": "top",
@@ -2846,7 +2846,7 @@
}
},
{
- "id": 9887,
+ "id": 10142,
"properties": {
"facing": "north",
"half": "top",
@@ -2855,7 +2855,7 @@
}
},
{
- "id": 9888,
+ "id": 10143,
"properties": {
"facing": "north",
"half": "top",
@@ -2864,7 +2864,7 @@
}
},
{
- "id": 9889,
+ "id": 10144,
"properties": {
"facing": "north",
"half": "top",
@@ -2873,7 +2873,7 @@
}
},
{
- "id": 9890,
+ "id": 10145,
"properties": {
"facing": "north",
"half": "top",
@@ -2882,7 +2882,7 @@
}
},
{
- "id": 9891,
+ "id": 10146,
"properties": {
"facing": "north",
"half": "top",
@@ -2891,7 +2891,7 @@
}
},
{
- "id": 9892,
+ "id": 10147,
"properties": {
"facing": "north",
"half": "top",
@@ -2900,7 +2900,7 @@
}
},
{
- "id": 9893,
+ "id": 10148,
"properties": {
"facing": "north",
"half": "top",
@@ -2909,7 +2909,7 @@
}
},
{
- "id": 9894,
+ "id": 10149,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2919,7 +2919,7 @@
},
{
"default": true,
- "id": 9895,
+ "id": 10150,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2928,7 +2928,7 @@
}
},
{
- "id": 9896,
+ "id": 10151,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2937,7 +2937,7 @@
}
},
{
- "id": 9897,
+ "id": 10152,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2946,7 +2946,7 @@
}
},
{
- "id": 9898,
+ "id": 10153,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2955,7 +2955,7 @@
}
},
{
- "id": 9899,
+ "id": 10154,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2964,7 +2964,7 @@
}
},
{
- "id": 9900,
+ "id": 10155,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2973,7 +2973,7 @@
}
},
{
- "id": 9901,
+ "id": 10156,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2982,7 +2982,7 @@
}
},
{
- "id": 9902,
+ "id": 10157,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2991,7 +2991,7 @@
}
},
{
- "id": 9903,
+ "id": 10158,
"properties": {
"facing": "north",
"half": "bottom",
@@ -3000,7 +3000,7 @@
}
},
{
- "id": 9904,
+ "id": 10159,
"properties": {
"facing": "south",
"half": "top",
@@ -3009,7 +3009,7 @@
}
},
{
- "id": 9905,
+ "id": 10160,
"properties": {
"facing": "south",
"half": "top",
@@ -3018,7 +3018,7 @@
}
},
{
- "id": 9906,
+ "id": 10161,
"properties": {
"facing": "south",
"half": "top",
@@ -3027,7 +3027,7 @@
}
},
{
- "id": 9907,
+ "id": 10162,
"properties": {
"facing": "south",
"half": "top",
@@ -3036,7 +3036,7 @@
}
},
{
- "id": 9908,
+ "id": 10163,
"properties": {
"facing": "south",
"half": "top",
@@ -3045,7 +3045,7 @@
}
},
{
- "id": 9909,
+ "id": 10164,
"properties": {
"facing": "south",
"half": "top",
@@ -3054,7 +3054,7 @@
}
},
{
- "id": 9910,
+ "id": 10165,
"properties": {
"facing": "south",
"half": "top",
@@ -3063,7 +3063,7 @@
}
},
{
- "id": 9911,
+ "id": 10166,
"properties": {
"facing": "south",
"half": "top",
@@ -3072,7 +3072,7 @@
}
},
{
- "id": 9912,
+ "id": 10167,
"properties": {
"facing": "south",
"half": "top",
@@ -3081,7 +3081,7 @@
}
},
{
- "id": 9913,
+ "id": 10168,
"properties": {
"facing": "south",
"half": "top",
@@ -3090,7 +3090,7 @@
}
},
{
- "id": 9914,
+ "id": 10169,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3099,7 +3099,7 @@
}
},
{
- "id": 9915,
+ "id": 10170,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3108,7 +3108,7 @@
}
},
{
- "id": 9916,
+ "id": 10171,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3117,7 +3117,7 @@
}
},
{
- "id": 9917,
+ "id": 10172,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3126,7 +3126,7 @@
}
},
{
- "id": 9918,
+ "id": 10173,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3135,7 +3135,7 @@
}
},
{
- "id": 9919,
+ "id": 10174,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3144,7 +3144,7 @@
}
},
{
- "id": 9920,
+ "id": 10175,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3153,7 +3153,7 @@
}
},
{
- "id": 9921,
+ "id": 10176,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3162,7 +3162,7 @@
}
},
{
- "id": 9922,
+ "id": 10177,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3171,7 +3171,7 @@
}
},
{
- "id": 9923,
+ "id": 10178,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3180,7 +3180,7 @@
}
},
{
- "id": 9924,
+ "id": 10179,
"properties": {
"facing": "west",
"half": "top",
@@ -3189,7 +3189,7 @@
}
},
{
- "id": 9925,
+ "id": 10180,
"properties": {
"facing": "west",
"half": "top",
@@ -3198,7 +3198,7 @@
}
},
{
- "id": 9926,
+ "id": 10181,
"properties": {
"facing": "west",
"half": "top",
@@ -3207,7 +3207,7 @@
}
},
{
- "id": 9927,
+ "id": 10182,
"properties": {
"facing": "west",
"half": "top",
@@ -3216,7 +3216,7 @@
}
},
{
- "id": 9928,
+ "id": 10183,
"properties": {
"facing": "west",
"half": "top",
@@ -3225,7 +3225,7 @@
}
},
{
- "id": 9929,
+ "id": 10184,
"properties": {
"facing": "west",
"half": "top",
@@ -3234,7 +3234,7 @@
}
},
{
- "id": 9930,
+ "id": 10185,
"properties": {
"facing": "west",
"half": "top",
@@ -3243,7 +3243,7 @@
}
},
{
- "id": 9931,
+ "id": 10186,
"properties": {
"facing": "west",
"half": "top",
@@ -3252,7 +3252,7 @@
}
},
{
- "id": 9932,
+ "id": 10187,
"properties": {
"facing": "west",
"half": "top",
@@ -3261,7 +3261,7 @@
}
},
{
- "id": 9933,
+ "id": 10188,
"properties": {
"facing": "west",
"half": "top",
@@ -3270,7 +3270,7 @@
}
},
{
- "id": 9934,
+ "id": 10189,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3279,7 +3279,7 @@
}
},
{
- "id": 9935,
+ "id": 10190,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3288,7 +3288,7 @@
}
},
{
- "id": 9936,
+ "id": 10191,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3297,7 +3297,7 @@
}
},
{
- "id": 9937,
+ "id": 10192,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3306,7 +3306,7 @@
}
},
{
- "id": 9938,
+ "id": 10193,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3315,7 +3315,7 @@
}
},
{
- "id": 9939,
+ "id": 10194,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3324,7 +3324,7 @@
}
},
{
- "id": 9940,
+ "id": 10195,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3333,7 +3333,7 @@
}
},
{
- "id": 9941,
+ "id": 10196,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3342,7 +3342,7 @@
}
},
{
- "id": 9942,
+ "id": 10197,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3351,7 +3351,7 @@
}
},
{
- "id": 9943,
+ "id": 10198,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3360,7 +3360,7 @@
}
},
{
- "id": 9944,
+ "id": 10199,
"properties": {
"facing": "east",
"half": "top",
@@ -3369,7 +3369,7 @@
}
},
{
- "id": 9945,
+ "id": 10200,
"properties": {
"facing": "east",
"half": "top",
@@ -3378,7 +3378,7 @@
}
},
{
- "id": 9946,
+ "id": 10201,
"properties": {
"facing": "east",
"half": "top",
@@ -3387,7 +3387,7 @@
}
},
{
- "id": 9947,
+ "id": 10202,
"properties": {
"facing": "east",
"half": "top",
@@ -3396,7 +3396,7 @@
}
},
{
- "id": 9948,
+ "id": 10203,
"properties": {
"facing": "east",
"half": "top",
@@ -3405,7 +3405,7 @@
}
},
{
- "id": 9949,
+ "id": 10204,
"properties": {
"facing": "east",
"half": "top",
@@ -3414,7 +3414,7 @@
}
},
{
- "id": 9950,
+ "id": 10205,
"properties": {
"facing": "east",
"half": "top",
@@ -3423,7 +3423,7 @@
}
},
{
- "id": 9951,
+ "id": 10206,
"properties": {
"facing": "east",
"half": "top",
@@ -3432,7 +3432,7 @@
}
},
{
- "id": 9952,
+ "id": 10207,
"properties": {
"facing": "east",
"half": "top",
@@ -3441,7 +3441,7 @@
}
},
{
- "id": 9953,
+ "id": 10208,
"properties": {
"facing": "east",
"half": "top",
@@ -3450,7 +3450,7 @@
}
},
{
- "id": 9954,
+ "id": 10209,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3459,7 +3459,7 @@
}
},
{
- "id": 9955,
+ "id": 10210,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3468,7 +3468,7 @@
}
},
{
- "id": 9956,
+ "id": 10211,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3477,7 +3477,7 @@
}
},
{
- "id": 9957,
+ "id": 10212,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3486,7 +3486,7 @@
}
},
{
- "id": 9958,
+ "id": 10213,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3495,7 +3495,7 @@
}
},
{
- "id": 9959,
+ "id": 10214,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3504,7 +3504,7 @@
}
},
{
- "id": 9960,
+ "id": 10215,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3513,7 +3513,7 @@
}
},
{
- "id": 9961,
+ "id": 10216,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3522,7 +3522,7 @@
}
},
{
- "id": 9962,
+ "id": 10217,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3531,7 +3531,7 @@
}
},
{
- "id": 9963,
+ "id": 10218,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3573,7 +3573,7 @@
},
"states": [
{
- "id": 6217,
+ "id": 6383,
"properties": {
"facing": "north",
"half": "top",
@@ -3583,7 +3583,7 @@
}
},
{
- "id": 6218,
+ "id": 6384,
"properties": {
"facing": "north",
"half": "top",
@@ -3593,7 +3593,7 @@
}
},
{
- "id": 6219,
+ "id": 6385,
"properties": {
"facing": "north",
"half": "top",
@@ -3603,7 +3603,7 @@
}
},
{
- "id": 6220,
+ "id": 6386,
"properties": {
"facing": "north",
"half": "top",
@@ -3613,7 +3613,7 @@
}
},
{
- "id": 6221,
+ "id": 6387,
"properties": {
"facing": "north",
"half": "top",
@@ -3623,7 +3623,7 @@
}
},
{
- "id": 6222,
+ "id": 6388,
"properties": {
"facing": "north",
"half": "top",
@@ -3633,7 +3633,7 @@
}
},
{
- "id": 6223,
+ "id": 6389,
"properties": {
"facing": "north",
"half": "top",
@@ -3643,7 +3643,7 @@
}
},
{
- "id": 6224,
+ "id": 6390,
"properties": {
"facing": "north",
"half": "top",
@@ -3653,7 +3653,7 @@
}
},
{
- "id": 6225,
+ "id": 6391,
"properties": {
"facing": "north",
"half": "bottom",
@@ -3663,7 +3663,7 @@
}
},
{
- "id": 6226,
+ "id": 6392,
"properties": {
"facing": "north",
"half": "bottom",
@@ -3673,7 +3673,7 @@
}
},
{
- "id": 6227,
+ "id": 6393,
"properties": {
"facing": "north",
"half": "bottom",
@@ -3683,7 +3683,7 @@
}
},
{
- "id": 6228,
+ "id": 6394,
"properties": {
"facing": "north",
"half": "bottom",
@@ -3693,7 +3693,7 @@
}
},
{
- "id": 6229,
+ "id": 6395,
"properties": {
"facing": "north",
"half": "bottom",
@@ -3703,7 +3703,7 @@
}
},
{
- "id": 6230,
+ "id": 6396,
"properties": {
"facing": "north",
"half": "bottom",
@@ -3713,7 +3713,7 @@
}
},
{
- "id": 6231,
+ "id": 6397,
"properties": {
"facing": "north",
"half": "bottom",
@@ -3724,7 +3724,7 @@
},
{
"default": true,
- "id": 6232,
+ "id": 6398,
"properties": {
"facing": "north",
"half": "bottom",
@@ -3734,7 +3734,7 @@
}
},
{
- "id": 6233,
+ "id": 6399,
"properties": {
"facing": "south",
"half": "top",
@@ -3744,7 +3744,7 @@
}
},
{
- "id": 6234,
+ "id": 6400,
"properties": {
"facing": "south",
"half": "top",
@@ -3754,7 +3754,7 @@
}
},
{
- "id": 6235,
+ "id": 6401,
"properties": {
"facing": "south",
"half": "top",
@@ -3764,7 +3764,7 @@
}
},
{
- "id": 6236,
+ "id": 6402,
"properties": {
"facing": "south",
"half": "top",
@@ -3774,7 +3774,7 @@
}
},
{
- "id": 6237,
+ "id": 6403,
"properties": {
"facing": "south",
"half": "top",
@@ -3784,7 +3784,7 @@
}
},
{
- "id": 6238,
+ "id": 6404,
"properties": {
"facing": "south",
"half": "top",
@@ -3794,7 +3794,7 @@
}
},
{
- "id": 6239,
+ "id": 6405,
"properties": {
"facing": "south",
"half": "top",
@@ -3804,7 +3804,7 @@
}
},
{
- "id": 6240,
+ "id": 6406,
"properties": {
"facing": "south",
"half": "top",
@@ -3814,7 +3814,7 @@
}
},
{
- "id": 6241,
+ "id": 6407,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3824,7 +3824,7 @@
}
},
{
- "id": 6242,
+ "id": 6408,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3834,7 +3834,7 @@
}
},
{
- "id": 6243,
+ "id": 6409,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3844,7 +3844,7 @@
}
},
{
- "id": 6244,
+ "id": 6410,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3854,7 +3854,7 @@
}
},
{
- "id": 6245,
+ "id": 6411,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3864,7 +3864,7 @@
}
},
{
- "id": 6246,
+ "id": 6412,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3874,7 +3874,7 @@
}
},
{
- "id": 6247,
+ "id": 6413,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3884,7 +3884,7 @@
}
},
{
- "id": 6248,
+ "id": 6414,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3894,7 +3894,7 @@
}
},
{
- "id": 6249,
+ "id": 6415,
"properties": {
"facing": "west",
"half": "top",
@@ -3904,7 +3904,7 @@
}
},
{
- "id": 6250,
+ "id": 6416,
"properties": {
"facing": "west",
"half": "top",
@@ -3914,7 +3914,7 @@
}
},
{
- "id": 6251,
+ "id": 6417,
"properties": {
"facing": "west",
"half": "top",
@@ -3924,7 +3924,7 @@
}
},
{
- "id": 6252,
+ "id": 6418,
"properties": {
"facing": "west",
"half": "top",
@@ -3934,7 +3934,7 @@
}
},
{
- "id": 6253,
+ "id": 6419,
"properties": {
"facing": "west",
"half": "top",
@@ -3944,7 +3944,7 @@
}
},
{
- "id": 6254,
+ "id": 6420,
"properties": {
"facing": "west",
"half": "top",
@@ -3954,7 +3954,7 @@
}
},
{
- "id": 6255,
+ "id": 6421,
"properties": {
"facing": "west",
"half": "top",
@@ -3964,7 +3964,7 @@
}
},
{
- "id": 6256,
+ "id": 6422,
"properties": {
"facing": "west",
"half": "top",
@@ -3974,7 +3974,7 @@
}
},
{
- "id": 6257,
+ "id": 6423,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3984,7 +3984,7 @@
}
},
{
- "id": 6258,
+ "id": 6424,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3994,7 +3994,7 @@
}
},
{
- "id": 6259,
+ "id": 6425,
"properties": {
"facing": "west",
"half": "bottom",
@@ -4004,7 +4004,7 @@
}
},
{
- "id": 6260,
+ "id": 6426,
"properties": {
"facing": "west",
"half": "bottom",
@@ -4014,7 +4014,7 @@
}
},
{
- "id": 6261,
+ "id": 6427,
"properties": {
"facing": "west",
"half": "bottom",
@@ -4024,7 +4024,7 @@
}
},
{
- "id": 6262,
+ "id": 6428,
"properties": {
"facing": "west",
"half": "bottom",
@@ -4034,7 +4034,7 @@
}
},
{
- "id": 6263,
+ "id": 6429,
"properties": {
"facing": "west",
"half": "bottom",
@@ -4044,7 +4044,7 @@
}
},
{
- "id": 6264,
+ "id": 6430,
"properties": {
"facing": "west",
"half": "bottom",
@@ -4054,7 +4054,7 @@
}
},
{
- "id": 6265,
+ "id": 6431,
"properties": {
"facing": "east",
"half": "top",
@@ -4064,7 +4064,7 @@
}
},
{
- "id": 6266,
+ "id": 6432,
"properties": {
"facing": "east",
"half": "top",
@@ -4074,7 +4074,7 @@
}
},
{
- "id": 6267,
+ "id": 6433,
"properties": {
"facing": "east",
"half": "top",
@@ -4084,7 +4084,7 @@
}
},
{
- "id": 6268,
+ "id": 6434,
"properties": {
"facing": "east",
"half": "top",
@@ -4094,7 +4094,7 @@
}
},
{
- "id": 6269,
+ "id": 6435,
"properties": {
"facing": "east",
"half": "top",
@@ -4104,7 +4104,7 @@
}
},
{
- "id": 6270,
+ "id": 6436,
"properties": {
"facing": "east",
"half": "top",
@@ -4114,7 +4114,7 @@
}
},
{
- "id": 6271,
+ "id": 6437,
"properties": {
"facing": "east",
"half": "top",
@@ -4124,7 +4124,7 @@
}
},
{
- "id": 6272,
+ "id": 6438,
"properties": {
"facing": "east",
"half": "top",
@@ -4134,7 +4134,7 @@
}
},
{
- "id": 6273,
+ "id": 6439,
"properties": {
"facing": "east",
"half": "bottom",
@@ -4144,7 +4144,7 @@
}
},
{
- "id": 6274,
+ "id": 6440,
"properties": {
"facing": "east",
"half": "bottom",
@@ -4154,7 +4154,7 @@
}
},
{
- "id": 6275,
+ "id": 6441,
"properties": {
"facing": "east",
"half": "bottom",
@@ -4164,7 +4164,7 @@
}
},
{
- "id": 6276,
+ "id": 6442,
"properties": {
"facing": "east",
"half": "bottom",
@@ -4174,7 +4174,7 @@
}
},
{
- "id": 6277,
+ "id": 6443,
"properties": {
"facing": "east",
"half": "bottom",
@@ -4184,7 +4184,7 @@
}
},
{
- "id": 6278,
+ "id": 6444,
"properties": {
"facing": "east",
"half": "bottom",
@@ -4194,7 +4194,7 @@
}
},
{
- "id": 6279,
+ "id": 6445,
"properties": {
"facing": "east",
"half": "bottom",
@@ -4204,7 +4204,7 @@
}
},
{
- "id": 6280,
+ "id": 6446,
"properties": {
"facing": "east",
"half": "bottom",
@@ -4235,7 +4235,7 @@
},
"states": [
{
- "id": 5562,
+ "id": 5718,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -4243,49 +4243,49 @@
},
{
"default": true,
- "id": 5563,
+ "id": 5719,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5564,
+ "id": 5720,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5565,
+ "id": 5721,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5566,
+ "id": 5722,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5567,
+ "id": 5723,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5568,
+ "id": 5724,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5569,
+ "id": 5725,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -4313,7 +4313,7 @@
},
"states": [
{
- "id": 4786,
+ "id": 4870,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -4321,49 +4321,49 @@
},
{
"default": true,
- "id": 4787,
+ "id": 4871,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4788,
+ "id": 4872,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4789,
+ "id": 4873,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4790,
+ "id": 4874,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4791,
+ "id": 4875,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4792,
+ "id": 4876,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4793,
+ "id": 4877,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -4385,20 +4385,20 @@
},
"states": [
{
- "id": 201,
+ "id": 213,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 202,
+ "id": 214,
"properties": {
"axis": "y"
}
},
{
- "id": 203,
+ "id": 215,
"properties": {
"axis": "z"
}
@@ -4430,7 +4430,7 @@
},
"states": [
{
- "id": 9320,
+ "id": 9575,
"properties": {
"powered": "true",
"shape": "north_south",
@@ -4438,7 +4438,7 @@
}
},
{
- "id": 9321,
+ "id": 9576,
"properties": {
"powered": "true",
"shape": "north_south",
@@ -4446,7 +4446,7 @@
}
},
{
- "id": 9322,
+ "id": 9577,
"properties": {
"powered": "true",
"shape": "east_west",
@@ -4454,7 +4454,7 @@
}
},
{
- "id": 9323,
+ "id": 9578,
"properties": {
"powered": "true",
"shape": "east_west",
@@ -4462,7 +4462,7 @@
}
},
{
- "id": 9324,
+ "id": 9579,
"properties": {
"powered": "true",
"shape": "ascending_east",
@@ -4470,7 +4470,7 @@
}
},
{
- "id": 9325,
+ "id": 9580,
"properties": {
"powered": "true",
"shape": "ascending_east",
@@ -4478,7 +4478,7 @@
}
},
{
- "id": 9326,
+ "id": 9581,
"properties": {
"powered": "true",
"shape": "ascending_west",
@@ -4486,7 +4486,7 @@
}
},
{
- "id": 9327,
+ "id": 9582,
"properties": {
"powered": "true",
"shape": "ascending_west",
@@ -4494,7 +4494,7 @@
}
},
{
- "id": 9328,
+ "id": 9583,
"properties": {
"powered": "true",
"shape": "ascending_north",
@@ -4502,7 +4502,7 @@
}
},
{
- "id": 9329,
+ "id": 9584,
"properties": {
"powered": "true",
"shape": "ascending_north",
@@ -4510,7 +4510,7 @@
}
},
{
- "id": 9330,
+ "id": 9585,
"properties": {
"powered": "true",
"shape": "ascending_south",
@@ -4518,7 +4518,7 @@
}
},
{
- "id": 9331,
+ "id": 9586,
"properties": {
"powered": "true",
"shape": "ascending_south",
@@ -4526,7 +4526,7 @@
}
},
{
- "id": 9332,
+ "id": 9587,
"properties": {
"powered": "false",
"shape": "north_south",
@@ -4535,7 +4535,7 @@
},
{
"default": true,
- "id": 9333,
+ "id": 9588,
"properties": {
"powered": "false",
"shape": "north_south",
@@ -4543,7 +4543,7 @@
}
},
{
- "id": 9334,
+ "id": 9589,
"properties": {
"powered": "false",
"shape": "east_west",
@@ -4551,7 +4551,7 @@
}
},
{
- "id": 9335,
+ "id": 9590,
"properties": {
"powered": "false",
"shape": "east_west",
@@ -4559,7 +4559,7 @@
}
},
{
- "id": 9336,
+ "id": 9591,
"properties": {
"powered": "false",
"shape": "ascending_east",
@@ -4567,7 +4567,7 @@
}
},
{
- "id": 9337,
+ "id": 9592,
"properties": {
"powered": "false",
"shape": "ascending_east",
@@ -4575,7 +4575,7 @@
}
},
{
- "id": 9338,
+ "id": 9593,
"properties": {
"powered": "false",
"shape": "ascending_west",
@@ -4583,7 +4583,7 @@
}
},
{
- "id": 9339,
+ "id": 9594,
"properties": {
"powered": "false",
"shape": "ascending_west",
@@ -4591,7 +4591,7 @@
}
},
{
- "id": 9340,
+ "id": 9595,
"properties": {
"powered": "false",
"shape": "ascending_north",
@@ -4599,7 +4599,7 @@
}
},
{
- "id": 9341,
+ "id": 9596,
"properties": {
"powered": "false",
"shape": "ascending_north",
@@ -4607,7 +4607,7 @@
}
},
{
- "id": 9342,
+ "id": 9597,
"properties": {
"powered": "false",
"shape": "ascending_south",
@@ -4615,7 +4615,7 @@
}
},
{
- "id": 9343,
+ "id": 9598,
"properties": {
"powered": "false",
"shape": "ascending_south",
@@ -4650,7 +4650,7 @@
"states": [
{
"default": true,
- "id": 2079
+ "id": 2122
}
]
},
@@ -4662,7 +4662,7 @@
"states": [
{
"default": true,
- "id": 21031
+ "id": 21500
}
]
},
@@ -4689,63 +4689,63 @@
},
"states": [
{
- "id": 21033,
+ "id": 21502,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 21034,
+ "id": 21503,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 21035,
+ "id": 21504,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 21036,
+ "id": 21505,
"properties": {
"facing": "east",
"waterlogged": "false"
}
},
{
- "id": 21037,
+ "id": 21506,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 21038,
+ "id": 21507,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 21039,
+ "id": 21508,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 21040,
+ "id": 21509,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 21041,
+ "id": 21510,
"properties": {
"facing": "up",
"waterlogged": "true"
@@ -4753,21 +4753,21 @@
},
{
"default": true,
- "id": 21042,
+ "id": 21511,
"properties": {
"facing": "up",
"waterlogged": "false"
}
},
{
- "id": 21043,
+ "id": 21512,
"properties": {
"facing": "down",
"waterlogged": "true"
}
},
{
- "id": 21044,
+ "id": 21513,
"properties": {
"facing": "down",
"waterlogged": "false"
@@ -4783,7 +4783,7 @@
"states": [
{
"default": true,
- "id": 19448
+ "id": 19917
}
]
},
@@ -4817,21 +4817,21 @@
},
"states": [
{
- "id": 14136,
+ "id": 14605,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 14137,
+ "id": 14606,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 14138,
+ "id": 14607,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -4839,21 +4839,21 @@
},
{
"default": true,
- "id": 14139,
+ "id": 14608,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 14140,
+ "id": 14609,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 14141,
+ "id": 14610,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -4894,7 +4894,7 @@
},
"states": [
{
- "id": 13762,
+ "id": 14231,
"properties": {
"facing": "north",
"half": "top",
@@ -4903,7 +4903,7 @@
}
},
{
- "id": 13763,
+ "id": 14232,
"properties": {
"facing": "north",
"half": "top",
@@ -4912,7 +4912,7 @@
}
},
{
- "id": 13764,
+ "id": 14233,
"properties": {
"facing": "north",
"half": "top",
@@ -4921,7 +4921,7 @@
}
},
{
- "id": 13765,
+ "id": 14234,
"properties": {
"facing": "north",
"half": "top",
@@ -4930,7 +4930,7 @@
}
},
{
- "id": 13766,
+ "id": 14235,
"properties": {
"facing": "north",
"half": "top",
@@ -4939,7 +4939,7 @@
}
},
{
- "id": 13767,
+ "id": 14236,
"properties": {
"facing": "north",
"half": "top",
@@ -4948,7 +4948,7 @@
}
},
{
- "id": 13768,
+ "id": 14237,
"properties": {
"facing": "north",
"half": "top",
@@ -4957,7 +4957,7 @@
}
},
{
- "id": 13769,
+ "id": 14238,
"properties": {
"facing": "north",
"half": "top",
@@ -4966,7 +4966,7 @@
}
},
{
- "id": 13770,
+ "id": 14239,
"properties": {
"facing": "north",
"half": "top",
@@ -4975,7 +4975,7 @@
}
},
{
- "id": 13771,
+ "id": 14240,
"properties": {
"facing": "north",
"half": "top",
@@ -4984,7 +4984,7 @@
}
},
{
- "id": 13772,
+ "id": 14241,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4994,7 +4994,7 @@
},
{
"default": true,
- "id": 13773,
+ "id": 14242,
"properties": {
"facing": "north",
"half": "bottom",
@@ -5003,7 +5003,7 @@
}
},
{
- "id": 13774,
+ "id": 14243,
"properties": {
"facing": "north",
"half": "bottom",
@@ -5012,7 +5012,7 @@
}
},
{
- "id": 13775,
+ "id": 14244,
"properties": {
"facing": "north",
"half": "bottom",
@@ -5021,7 +5021,7 @@
}
},
{
- "id": 13776,
+ "id": 14245,
"properties": {
"facing": "north",
"half": "bottom",
@@ -5030,7 +5030,7 @@
}
},
{
- "id": 13777,
+ "id": 14246,
"properties": {
"facing": "north",
"half": "bottom",
@@ -5039,7 +5039,7 @@
}
},
{
- "id": 13778,
+ "id": 14247,
"properties": {
"facing": "north",
"half": "bottom",
@@ -5048,7 +5048,7 @@
}
},
{
- "id": 13779,
+ "id": 14248,
"properties": {
"facing": "north",
"half": "bottom",
@@ -5057,7 +5057,7 @@
}
},
{
- "id": 13780,
+ "id": 14249,
"properties": {
"facing": "north",
"half": "bottom",
@@ -5066,7 +5066,7 @@
}
},
{
- "id": 13781,
+ "id": 14250,
"properties": {
"facing": "north",
"half": "bottom",
@@ -5075,7 +5075,7 @@
}
},
{
- "id": 13782,
+ "id": 14251,
"properties": {
"facing": "south",
"half": "top",
@@ -5084,7 +5084,7 @@
}
},
{
- "id": 13783,
+ "id": 14252,
"properties": {
"facing": "south",
"half": "top",
@@ -5093,7 +5093,7 @@
}
},
{
- "id": 13784,
+ "id": 14253,
"properties": {
"facing": "south",
"half": "top",
@@ -5102,7 +5102,7 @@
}
},
{
- "id": 13785,
+ "id": 14254,
"properties": {
"facing": "south",
"half": "top",
@@ -5111,7 +5111,7 @@
}
},
{
- "id": 13786,
+ "id": 14255,
"properties": {
"facing": "south",
"half": "top",
@@ -5120,7 +5120,7 @@
}
},
{
- "id": 13787,
+ "id": 14256,
"properties": {
"facing": "south",
"half": "top",
@@ -5129,7 +5129,7 @@
}
},
{
- "id": 13788,
+ "id": 14257,
"properties": {
"facing": "south",
"half": "top",
@@ -5138,7 +5138,7 @@
}
},
{
- "id": 13789,
+ "id": 14258,
"properties": {
"facing": "south",
"half": "top",
@@ -5147,7 +5147,7 @@
}
},
{
- "id": 13790,
+ "id": 14259,
"properties": {
"facing": "south",
"half": "top",
@@ -5156,7 +5156,7 @@
}
},
{
- "id": 13791,
+ "id": 14260,
"properties": {
"facing": "south",
"half": "top",
@@ -5165,7 +5165,7 @@
}
},
{
- "id": 13792,
+ "id": 14261,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5174,7 +5174,7 @@
}
},
{
- "id": 13793,
+ "id": 14262,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5183,7 +5183,7 @@
}
},
{
- "id": 13794,
+ "id": 14263,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5192,7 +5192,7 @@
}
},
{
- "id": 13795,
+ "id": 14264,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5201,7 +5201,7 @@
}
},
{
- "id": 13796,
+ "id": 14265,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5210,7 +5210,7 @@
}
},
{
- "id": 13797,
+ "id": 14266,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5219,7 +5219,7 @@
}
},
{
- "id": 13798,
+ "id": 14267,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5228,7 +5228,7 @@
}
},
{
- "id": 13799,
+ "id": 14268,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5237,7 +5237,7 @@
}
},
{
- "id": 13800,
+ "id": 14269,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5246,7 +5246,7 @@
}
},
{
- "id": 13801,
+ "id": 14270,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5255,7 +5255,7 @@
}
},
{
- "id": 13802,
+ "id": 14271,
"properties": {
"facing": "west",
"half": "top",
@@ -5264,7 +5264,7 @@
}
},
{
- "id": 13803,
+ "id": 14272,
"properties": {
"facing": "west",
"half": "top",
@@ -5273,7 +5273,7 @@
}
},
{
- "id": 13804,
+ "id": 14273,
"properties": {
"facing": "west",
"half": "top",
@@ -5282,7 +5282,7 @@
}
},
{
- "id": 13805,
+ "id": 14274,
"properties": {
"facing": "west",
"half": "top",
@@ -5291,7 +5291,7 @@
}
},
{
- "id": 13806,
+ "id": 14275,
"properties": {
"facing": "west",
"half": "top",
@@ -5300,7 +5300,7 @@
}
},
{
- "id": 13807,
+ "id": 14276,
"properties": {
"facing": "west",
"half": "top",
@@ -5309,7 +5309,7 @@
}
},
{
- "id": 13808,
+ "id": 14277,
"properties": {
"facing": "west",
"half": "top",
@@ -5318,7 +5318,7 @@
}
},
{
- "id": 13809,
+ "id": 14278,
"properties": {
"facing": "west",
"half": "top",
@@ -5327,7 +5327,7 @@
}
},
{
- "id": 13810,
+ "id": 14279,
"properties": {
"facing": "west",
"half": "top",
@@ -5336,7 +5336,7 @@
}
},
{
- "id": 13811,
+ "id": 14280,
"properties": {
"facing": "west",
"half": "top",
@@ -5345,7 +5345,7 @@
}
},
{
- "id": 13812,
+ "id": 14281,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5354,7 +5354,7 @@
}
},
{
- "id": 13813,
+ "id": 14282,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5363,7 +5363,7 @@
}
},
{
- "id": 13814,
+ "id": 14283,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5372,7 +5372,7 @@
}
},
{
- "id": 13815,
+ "id": 14284,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5381,7 +5381,7 @@
}
},
{
- "id": 13816,
+ "id": 14285,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5390,7 +5390,7 @@
}
},
{
- "id": 13817,
+ "id": 14286,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5399,7 +5399,7 @@
}
},
{
- "id": 13818,
+ "id": 14287,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5408,7 +5408,7 @@
}
},
{
- "id": 13819,
+ "id": 14288,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5417,7 +5417,7 @@
}
},
{
- "id": 13820,
+ "id": 14289,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5426,7 +5426,7 @@
}
},
{
- "id": 13821,
+ "id": 14290,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5435,7 +5435,7 @@
}
},
{
- "id": 13822,
+ "id": 14291,
"properties": {
"facing": "east",
"half": "top",
@@ -5444,7 +5444,7 @@
}
},
{
- "id": 13823,
+ "id": 14292,
"properties": {
"facing": "east",
"half": "top",
@@ -5453,7 +5453,7 @@
}
},
{
- "id": 13824,
+ "id": 14293,
"properties": {
"facing": "east",
"half": "top",
@@ -5462,7 +5462,7 @@
}
},
{
- "id": 13825,
+ "id": 14294,
"properties": {
"facing": "east",
"half": "top",
@@ -5471,7 +5471,7 @@
}
},
{
- "id": 13826,
+ "id": 14295,
"properties": {
"facing": "east",
"half": "top",
@@ -5480,7 +5480,7 @@
}
},
{
- "id": 13827,
+ "id": 14296,
"properties": {
"facing": "east",
"half": "top",
@@ -5489,7 +5489,7 @@
}
},
{
- "id": 13828,
+ "id": 14297,
"properties": {
"facing": "east",
"half": "top",
@@ -5498,7 +5498,7 @@
}
},
{
- "id": 13829,
+ "id": 14298,
"properties": {
"facing": "east",
"half": "top",
@@ -5507,7 +5507,7 @@
}
},
{
- "id": 13830,
+ "id": 14299,
"properties": {
"facing": "east",
"half": "top",
@@ -5516,7 +5516,7 @@
}
},
{
- "id": 13831,
+ "id": 14300,
"properties": {
"facing": "east",
"half": "top",
@@ -5525,7 +5525,7 @@
}
},
{
- "id": 13832,
+ "id": 14301,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5534,7 +5534,7 @@
}
},
{
- "id": 13833,
+ "id": 14302,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5543,7 +5543,7 @@
}
},
{
- "id": 13834,
+ "id": 14303,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5552,7 +5552,7 @@
}
},
{
- "id": 13835,
+ "id": 14304,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5561,7 +5561,7 @@
}
},
{
- "id": 13836,
+ "id": 14305,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5570,7 +5570,7 @@
}
},
{
- "id": 13837,
+ "id": 14306,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5579,7 +5579,7 @@
}
},
{
- "id": 13838,
+ "id": 14307,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5588,7 +5588,7 @@
}
},
{
- "id": 13839,
+ "id": 14308,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5597,7 +5597,7 @@
}
},
{
- "id": 13840,
+ "id": 14309,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5606,7 +5606,7 @@
}
},
{
- "id": 13841,
+ "id": 14310,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5653,7 +5653,7 @@
},
"states": [
{
- "id": 16752,
+ "id": 17221,
"properties": {
"east": "none",
"north": "none",
@@ -5664,7 +5664,7 @@
}
},
{
- "id": 16753,
+ "id": 17222,
"properties": {
"east": "none",
"north": "none",
@@ -5675,7 +5675,7 @@
}
},
{
- "id": 16754,
+ "id": 17223,
"properties": {
"east": "none",
"north": "none",
@@ -5687,7 +5687,7 @@
},
{
"default": true,
- "id": 16755,
+ "id": 17224,
"properties": {
"east": "none",
"north": "none",
@@ -5698,7 +5698,7 @@
}
},
{
- "id": 16756,
+ "id": 17225,
"properties": {
"east": "none",
"north": "none",
@@ -5709,7 +5709,7 @@
}
},
{
- "id": 16757,
+ "id": 17226,
"properties": {
"east": "none",
"north": "none",
@@ -5720,7 +5720,7 @@
}
},
{
- "id": 16758,
+ "id": 17227,
"properties": {
"east": "none",
"north": "none",
@@ -5731,7 +5731,7 @@
}
},
{
- "id": 16759,
+ "id": 17228,
"properties": {
"east": "none",
"north": "none",
@@ -5742,7 +5742,7 @@
}
},
{
- "id": 16760,
+ "id": 17229,
"properties": {
"east": "none",
"north": "none",
@@ -5753,7 +5753,7 @@
}
},
{
- "id": 16761,
+ "id": 17230,
"properties": {
"east": "none",
"north": "none",
@@ -5764,7 +5764,7 @@
}
},
{
- "id": 16762,
+ "id": 17231,
"properties": {
"east": "none",
"north": "none",
@@ -5775,7 +5775,7 @@
}
},
{
- "id": 16763,
+ "id": 17232,
"properties": {
"east": "none",
"north": "none",
@@ -5786,7 +5786,7 @@
}
},
{
- "id": 16764,
+ "id": 17233,
"properties": {
"east": "none",
"north": "none",
@@ -5797,7 +5797,7 @@
}
},
{
- "id": 16765,
+ "id": 17234,
"properties": {
"east": "none",
"north": "none",
@@ -5808,7 +5808,7 @@
}
},
{
- "id": 16766,
+ "id": 17235,
"properties": {
"east": "none",
"north": "none",
@@ -5819,7 +5819,7 @@
}
},
{
- "id": 16767,
+ "id": 17236,
"properties": {
"east": "none",
"north": "none",
@@ -5830,7 +5830,7 @@
}
},
{
- "id": 16768,
+ "id": 17237,
"properties": {
"east": "none",
"north": "none",
@@ -5841,7 +5841,7 @@
}
},
{
- "id": 16769,
+ "id": 17238,
"properties": {
"east": "none",
"north": "none",
@@ -5852,7 +5852,7 @@
}
},
{
- "id": 16770,
+ "id": 17239,
"properties": {
"east": "none",
"north": "none",
@@ -5863,7 +5863,7 @@
}
},
{
- "id": 16771,
+ "id": 17240,
"properties": {
"east": "none",
"north": "none",
@@ -5874,7 +5874,7 @@
}
},
{
- "id": 16772,
+ "id": 17241,
"properties": {
"east": "none",
"north": "none",
@@ -5885,7 +5885,7 @@
}
},
{
- "id": 16773,
+ "id": 17242,
"properties": {
"east": "none",
"north": "none",
@@ -5896,7 +5896,7 @@
}
},
{
- "id": 16774,
+ "id": 17243,
"properties": {
"east": "none",
"north": "none",
@@ -5907,7 +5907,7 @@
}
},
{
- "id": 16775,
+ "id": 17244,
"properties": {
"east": "none",
"north": "none",
@@ -5918,7 +5918,7 @@
}
},
{
- "id": 16776,
+ "id": 17245,
"properties": {
"east": "none",
"north": "none",
@@ -5929,7 +5929,7 @@
}
},
{
- "id": 16777,
+ "id": 17246,
"properties": {
"east": "none",
"north": "none",
@@ -5940,7 +5940,7 @@
}
},
{
- "id": 16778,
+ "id": 17247,
"properties": {
"east": "none",
"north": "none",
@@ -5951,7 +5951,7 @@
}
},
{
- "id": 16779,
+ "id": 17248,
"properties": {
"east": "none",
"north": "none",
@@ -5962,7 +5962,7 @@
}
},
{
- "id": 16780,
+ "id": 17249,
"properties": {
"east": "none",
"north": "none",
@@ -5973,7 +5973,7 @@
}
},
{
- "id": 16781,
+ "id": 17250,
"properties": {
"east": "none",
"north": "none",
@@ -5984,7 +5984,7 @@
}
},
{
- "id": 16782,
+ "id": 17251,
"properties": {
"east": "none",
"north": "none",
@@ -5995,7 +5995,7 @@
}
},
{
- "id": 16783,
+ "id": 17252,
"properties": {
"east": "none",
"north": "none",
@@ -6006,7 +6006,7 @@
}
},
{
- "id": 16784,
+ "id": 17253,
"properties": {
"east": "none",
"north": "none",
@@ -6017,7 +6017,7 @@
}
},
{
- "id": 16785,
+ "id": 17254,
"properties": {
"east": "none",
"north": "none",
@@ -6028,7 +6028,7 @@
}
},
{
- "id": 16786,
+ "id": 17255,
"properties": {
"east": "none",
"north": "none",
@@ -6039,7 +6039,7 @@
}
},
{
- "id": 16787,
+ "id": 17256,
"properties": {
"east": "none",
"north": "none",
@@ -6050,7 +6050,7 @@
}
},
{
- "id": 16788,
+ "id": 17257,
"properties": {
"east": "none",
"north": "low",
@@ -6061,7 +6061,7 @@
}
},
{
- "id": 16789,
+ "id": 17258,
"properties": {
"east": "none",
"north": "low",
@@ -6072,7 +6072,7 @@
}
},
{
- "id": 16790,
+ "id": 17259,
"properties": {
"east": "none",
"north": "low",
@@ -6083,7 +6083,7 @@
}
},
{
- "id": 16791,
+ "id": 17260,
"properties": {
"east": "none",
"north": "low",
@@ -6094,7 +6094,7 @@
}
},
{
- "id": 16792,
+ "id": 17261,
"properties": {
"east": "none",
"north": "low",
@@ -6105,7 +6105,7 @@
}
},
{
- "id": 16793,
+ "id": 17262,
"properties": {
"east": "none",
"north": "low",
@@ -6116,7 +6116,7 @@
}
},
{
- "id": 16794,
+ "id": 17263,
"properties": {
"east": "none",
"north": "low",
@@ -6127,7 +6127,7 @@
}
},
{
- "id": 16795,
+ "id": 17264,
"properties": {
"east": "none",
"north": "low",
@@ -6138,7 +6138,7 @@
}
},
{
- "id": 16796,
+ "id": 17265,
"properties": {
"east": "none",
"north": "low",
@@ -6149,7 +6149,7 @@
}
},
{
- "id": 16797,
+ "id": 17266,
"properties": {
"east": "none",
"north": "low",
@@ -6160,7 +6160,7 @@
}
},
{
- "id": 16798,
+ "id": 17267,
"properties": {
"east": "none",
"north": "low",
@@ -6171,7 +6171,7 @@
}
},
{
- "id": 16799,
+ "id": 17268,
"properties": {
"east": "none",
"north": "low",
@@ -6182,7 +6182,7 @@
}
},
{
- "id": 16800,
+ "id": 17269,
"properties": {
"east": "none",
"north": "low",
@@ -6193,7 +6193,7 @@
}
},
{
- "id": 16801,
+ "id": 17270,
"properties": {
"east": "none",
"north": "low",
@@ -6204,7 +6204,7 @@
}
},
{
- "id": 16802,
+ "id": 17271,
"properties": {
"east": "none",
"north": "low",
@@ -6215,7 +6215,7 @@
}
},
{
- "id": 16803,
+ "id": 17272,
"properties": {
"east": "none",
"north": "low",
@@ -6226,7 +6226,7 @@
}
},
{
- "id": 16804,
+ "id": 17273,
"properties": {
"east": "none",
"north": "low",
@@ -6237,7 +6237,7 @@
}
},
{
- "id": 16805,
+ "id": 17274,
"properties": {
"east": "none",
"north": "low",
@@ -6248,7 +6248,7 @@
}
},
{
- "id": 16806,
+ "id": 17275,
"properties": {
"east": "none",
"north": "low",
@@ -6259,7 +6259,7 @@
}
},
{
- "id": 16807,
+ "id": 17276,
"properties": {
"east": "none",
"north": "low",
@@ -6270,7 +6270,7 @@
}
},
{
- "id": 16808,
+ "id": 17277,
"properties": {
"east": "none",
"north": "low",
@@ -6281,7 +6281,7 @@
}
},
{
- "id": 16809,
+ "id": 17278,
"properties": {
"east": "none",
"north": "low",
@@ -6292,7 +6292,7 @@
}
},
{
- "id": 16810,
+ "id": 17279,
"properties": {
"east": "none",
"north": "low",
@@ -6303,7 +6303,7 @@
}
},
{
- "id": 16811,
+ "id": 17280,
"properties": {
"east": "none",
"north": "low",
@@ -6314,7 +6314,7 @@
}
},
{
- "id": 16812,
+ "id": 17281,
"properties": {
"east": "none",
"north": "low",
@@ -6325,7 +6325,7 @@
}
},
{
- "id": 16813,
+ "id": 17282,
"properties": {
"east": "none",
"north": "low",
@@ -6336,7 +6336,7 @@
}
},
{
- "id": 16814,
+ "id": 17283,
"properties": {
"east": "none",
"north": "low",
@@ -6347,7 +6347,7 @@
}
},
{
- "id": 16815,
+ "id": 17284,
"properties": {
"east": "none",
"north": "low",
@@ -6358,7 +6358,7 @@
}
},
{
- "id": 16816,
+ "id": 17285,
"properties": {
"east": "none",
"north": "low",
@@ -6369,7 +6369,7 @@
}
},
{
- "id": 16817,
+ "id": 17286,
"properties": {
"east": "none",
"north": "low",
@@ -6380,7 +6380,7 @@
}
},
{
- "id": 16818,
+ "id": 17287,
"properties": {
"east": "none",
"north": "low",
@@ -6391,7 +6391,7 @@
}
},
{
- "id": 16819,
+ "id": 17288,
"properties": {
"east": "none",
"north": "low",
@@ -6402,7 +6402,7 @@
}
},
{
- "id": 16820,
+ "id": 17289,
"properties": {
"east": "none",
"north": "low",
@@ -6413,7 +6413,7 @@
}
},
{
- "id": 16821,
+ "id": 17290,
"properties": {
"east": "none",
"north": "low",
@@ -6424,7 +6424,7 @@
}
},
{
- "id": 16822,
+ "id": 17291,
"properties": {
"east": "none",
"north": "low",
@@ -6435,7 +6435,7 @@
}
},
{
- "id": 16823,
+ "id": 17292,
"properties": {
"east": "none",
"north": "low",
@@ -6446,7 +6446,7 @@
}
},
{
- "id": 16824,
+ "id": 17293,
"properties": {
"east": "none",
"north": "tall",
@@ -6457,7 +6457,7 @@
}
},
{
- "id": 16825,
+ "id": 17294,
"properties": {
"east": "none",
"north": "tall",
@@ -6468,7 +6468,7 @@
}
},
{
- "id": 16826,
+ "id": 17295,
"properties": {
"east": "none",
"north": "tall",
@@ -6479,7 +6479,7 @@
}
},
{
- "id": 16827,
+ "id": 17296,
"properties": {
"east": "none",
"north": "tall",
@@ -6490,7 +6490,7 @@
}
},
{
- "id": 16828,
+ "id": 17297,
"properties": {
"east": "none",
"north": "tall",
@@ -6501,7 +6501,7 @@
}
},
{
- "id": 16829,
+ "id": 17298,
"properties": {
"east": "none",
"north": "tall",
@@ -6512,7 +6512,7 @@
}
},
{
- "id": 16830,
+ "id": 17299,
"properties": {
"east": "none",
"north": "tall",
@@ -6523,7 +6523,7 @@
}
},
{
- "id": 16831,
+ "id": 17300,
"properties": {
"east": "none",
"north": "tall",
@@ -6534,7 +6534,7 @@
}
},
{
- "id": 16832,
+ "id": 17301,
"properties": {
"east": "none",
"north": "tall",
@@ -6545,7 +6545,7 @@
}
},
{
- "id": 16833,
+ "id": 17302,
"properties": {
"east": "none",
"north": "tall",
@@ -6556,7 +6556,7 @@
}
},
{
- "id": 16834,
+ "id": 17303,
"properties": {
"east": "none",
"north": "tall",
@@ -6567,7 +6567,7 @@
}
},
{
- "id": 16835,
+ "id": 17304,
"properties": {
"east": "none",
"north": "tall",
@@ -6578,7 +6578,7 @@
}
},
{
- "id": 16836,
+ "id": 17305,
"properties": {
"east": "none",
"north": "tall",
@@ -6589,7 +6589,7 @@
}
},
{
- "id": 16837,
+ "id": 17306,
"properties": {
"east": "none",
"north": "tall",
@@ -6600,7 +6600,7 @@
}
},
{
- "id": 16838,
+ "id": 17307,
"properties": {
"east": "none",
"north": "tall",
@@ -6611,7 +6611,7 @@
}
},
{
- "id": 16839,
+ "id": 17308,
"properties": {
"east": "none",
"north": "tall",
@@ -6622,7 +6622,7 @@
}
},
{
- "id": 16840,
+ "id": 17309,
"properties": {
"east": "none",
"north": "tall",
@@ -6633,7 +6633,7 @@
}
},
{
- "id": 16841,
+ "id": 17310,
"properties": {
"east": "none",
"north": "tall",
@@ -6644,7 +6644,7 @@
}
},
{
- "id": 16842,
+ "id": 17311,
"properties": {
"east": "none",
"north": "tall",
@@ -6655,7 +6655,7 @@
}
},
{
- "id": 16843,
+ "id": 17312,
"properties": {
"east": "none",
"north": "tall",
@@ -6666,7 +6666,7 @@
}
},
{
- "id": 16844,
+ "id": 17313,
"properties": {
"east": "none",
"north": "tall",
@@ -6677,7 +6677,7 @@
}
},
{
- "id": 16845,
+ "id": 17314,
"properties": {
"east": "none",
"north": "tall",
@@ -6688,7 +6688,7 @@
}
},
{
- "id": 16846,
+ "id": 17315,
"properties": {
"east": "none",
"north": "tall",
@@ -6699,7 +6699,7 @@
}
},
{
- "id": 16847,
+ "id": 17316,
"properties": {
"east": "none",
"north": "tall",
@@ -6710,7 +6710,7 @@
}
},
{
- "id": 16848,
+ "id": 17317,
"properties": {
"east": "none",
"north": "tall",
@@ -6721,7 +6721,7 @@
}
},
{
- "id": 16849,
+ "id": 17318,
"properties": {
"east": "none",
"north": "tall",
@@ -6732,7 +6732,7 @@
}
},
{
- "id": 16850,
+ "id": 17319,
"properties": {
"east": "none",
"north": "tall",
@@ -6743,7 +6743,7 @@
}
},
{
- "id": 16851,
+ "id": 17320,
"properties": {
"east": "none",
"north": "tall",
@@ -6754,7 +6754,7 @@
}
},
{
- "id": 16852,
+ "id": 17321,
"properties": {
"east": "none",
"north": "tall",
@@ -6765,7 +6765,7 @@
}
},
{
- "id": 16853,
+ "id": 17322,
"properties": {
"east": "none",
"north": "tall",
@@ -6776,7 +6776,7 @@
}
},
{
- "id": 16854,
+ "id": 17323,
"properties": {
"east": "none",
"north": "tall",
@@ -6787,7 +6787,7 @@
}
},
{
- "id": 16855,
+ "id": 17324,
"properties": {
"east": "none",
"north": "tall",
@@ -6798,7 +6798,7 @@
}
},
{
- "id": 16856,
+ "id": 17325,
"properties": {
"east": "none",
"north": "tall",
@@ -6809,7 +6809,7 @@
}
},
{
- "id": 16857,
+ "id": 17326,
"properties": {
"east": "none",
"north": "tall",
@@ -6820,7 +6820,7 @@
}
},
{
- "id": 16858,
+ "id": 17327,
"properties": {
"east": "none",
"north": "tall",
@@ -6831,7 +6831,7 @@
}
},
{
- "id": 16859,
+ "id": 17328,
"properties": {
"east": "none",
"north": "tall",
@@ -6842,7 +6842,7 @@
}
},
{
- "id": 16860,
+ "id": 17329,
"properties": {
"east": "low",
"north": "none",
@@ -6853,7 +6853,7 @@
}
},
{
- "id": 16861,
+ "id": 17330,
"properties": {
"east": "low",
"north": "none",
@@ -6864,7 +6864,7 @@
}
},
{
- "id": 16862,
+ "id": 17331,
"properties": {
"east": "low",
"north": "none",
@@ -6875,7 +6875,7 @@
}
},
{
- "id": 16863,
+ "id": 17332,
"properties": {
"east": "low",
"north": "none",
@@ -6886,7 +6886,7 @@
}
},
{
- "id": 16864,
+ "id": 17333,
"properties": {
"east": "low",
"north": "none",
@@ -6897,7 +6897,7 @@
}
},
{
- "id": 16865,
+ "id": 17334,
"properties": {
"east": "low",
"north": "none",
@@ -6908,7 +6908,7 @@
}
},
{
- "id": 16866,
+ "id": 17335,
"properties": {
"east": "low",
"north": "none",
@@ -6919,7 +6919,7 @@
}
},
{
- "id": 16867,
+ "id": 17336,
"properties": {
"east": "low",
"north": "none",
@@ -6930,7 +6930,7 @@
}
},
{
- "id": 16868,
+ "id": 17337,
"properties": {
"east": "low",
"north": "none",
@@ -6941,7 +6941,7 @@
}
},
{
- "id": 16869,
+ "id": 17338,
"properties": {
"east": "low",
"north": "none",
@@ -6952,7 +6952,7 @@
}
},
{
- "id": 16870,
+ "id": 17339,
"properties": {
"east": "low",
"north": "none",
@@ -6963,7 +6963,7 @@
}
},
{
- "id": 16871,
+ "id": 17340,
"properties": {
"east": "low",
"north": "none",
@@ -6974,7 +6974,7 @@
}
},
{
- "id": 16872,
+ "id": 17341,
"properties": {
"east": "low",
"north": "none",
@@ -6985,7 +6985,7 @@
}
},
{
- "id": 16873,
+ "id": 17342,
"properties": {
"east": "low",
"north": "none",
@@ -6996,7 +6996,7 @@
}
},
{
- "id": 16874,
+ "id": 17343,
"properties": {
"east": "low",
"north": "none",
@@ -7007,7 +7007,7 @@
}
},
{
- "id": 16875,
+ "id": 17344,
"properties": {
"east": "low",
"north": "none",
@@ -7018,7 +7018,7 @@
}
},
{
- "id": 16876,
+ "id": 17345,
"properties": {
"east": "low",
"north": "none",
@@ -7029,7 +7029,7 @@
}
},
{
- "id": 16877,
+ "id": 17346,
"properties": {
"east": "low",
"north": "none",
@@ -7040,7 +7040,7 @@
}
},
{
- "id": 16878,
+ "id": 17347,
"properties": {
"east": "low",
"north": "none",
@@ -7051,7 +7051,7 @@
}
},
{
- "id": 16879,
+ "id": 17348,
"properties": {
"east": "low",
"north": "none",
@@ -7062,7 +7062,7 @@
}
},
{
- "id": 16880,
+ "id": 17349,
"properties": {
"east": "low",
"north": "none",
@@ -7073,7 +7073,7 @@
}
},
{
- "id": 16881,
+ "id": 17350,
"properties": {
"east": "low",
"north": "none",
@@ -7084,7 +7084,7 @@
}
},
{
- "id": 16882,
+ "id": 17351,
"properties": {
"east": "low",
"north": "none",
@@ -7095,7 +7095,7 @@
}
},
{
- "id": 16883,
+ "id": 17352,
"properties": {
"east": "low",
"north": "none",
@@ -7106,7 +7106,7 @@
}
},
{
- "id": 16884,
+ "id": 17353,
"properties": {
"east": "low",
"north": "none",
@@ -7117,7 +7117,7 @@
}
},
{
- "id": 16885,
+ "id": 17354,
"properties": {
"east": "low",
"north": "none",
@@ -7128,7 +7128,7 @@
}
},
{
- "id": 16886,
+ "id": 17355,
"properties": {
"east": "low",
"north": "none",
@@ -7139,7 +7139,7 @@
}
},
{
- "id": 16887,
+ "id": 17356,
"properties": {
"east": "low",
"north": "none",
@@ -7150,7 +7150,7 @@
}
},
{
- "id": 16888,
+ "id": 17357,
"properties": {
"east": "low",
"north": "none",
@@ -7161,7 +7161,7 @@
}
},
{
- "id": 16889,
+ "id": 17358,
"properties": {
"east": "low",
"north": "none",
@@ -7172,7 +7172,7 @@
}
},
{
- "id": 16890,
+ "id": 17359,
"properties": {
"east": "low",
"north": "none",
@@ -7183,7 +7183,7 @@
}
},
{
- "id": 16891,
+ "id": 17360,
"properties": {
"east": "low",
"north": "none",
@@ -7194,7 +7194,7 @@
}
},
{
- "id": 16892,
+ "id": 17361,
"properties": {
"east": "low",
"north": "none",
@@ -7205,7 +7205,7 @@
}
},
{
- "id": 16893,
+ "id": 17362,
"properties": {
"east": "low",
"north": "none",
@@ -7216,7 +7216,7 @@
}
},
{
- "id": 16894,
+ "id": 17363,
"properties": {
"east": "low",
"north": "none",
@@ -7227,7 +7227,7 @@
}
},
{
- "id": 16895,
+ "id": 17364,
"properties": {
"east": "low",
"north": "none",
@@ -7238,7 +7238,7 @@
}
},
{
- "id": 16896,
+ "id": 17365,
"properties": {
"east": "low",
"north": "low",
@@ -7249,7 +7249,7 @@
}
},
{
- "id": 16897,
+ "id": 17366,
"properties": {
"east": "low",
"north": "low",
@@ -7260,7 +7260,7 @@
}
},
{
- "id": 16898,
+ "id": 17367,
"properties": {
"east": "low",
"north": "low",
@@ -7271,7 +7271,7 @@
}
},
{
- "id": 16899,
+ "id": 17368,
"properties": {
"east": "low",
"north": "low",
@@ -7282,7 +7282,7 @@
}
},
{
- "id": 16900,
+ "id": 17369,
"properties": {
"east": "low",
"north": "low",
@@ -7293,7 +7293,7 @@
}
},
{
- "id": 16901,
+ "id": 17370,
"properties": {
"east": "low",
"north": "low",
@@ -7304,7 +7304,7 @@
}
},
{
- "id": 16902,
+ "id": 17371,
"properties": {
"east": "low",
"north": "low",
@@ -7315,7 +7315,7 @@
}
},
{
- "id": 16903,
+ "id": 17372,
"properties": {
"east": "low",
"north": "low",
@@ -7326,7 +7326,7 @@
}
},
{
- "id": 16904,
+ "id": 17373,
"properties": {
"east": "low",
"north": "low",
@@ -7337,7 +7337,7 @@
}
},
{
- "id": 16905,
+ "id": 17374,
"properties": {
"east": "low",
"north": "low",
@@ -7348,7 +7348,7 @@
}
},
{
- "id": 16906,
+ "id": 17375,
"properties": {
"east": "low",
"north": "low",
@@ -7359,7 +7359,7 @@
}
},
{
- "id": 16907,
+ "id": 17376,
"properties": {
"east": "low",
"north": "low",
@@ -7370,7 +7370,7 @@
}
},
{
- "id": 16908,
+ "id": 17377,
"properties": {
"east": "low",
"north": "low",
@@ -7381,7 +7381,7 @@
}
},
{
- "id": 16909,
+ "id": 17378,
"properties": {
"east": "low",
"north": "low",
@@ -7392,7 +7392,7 @@
}
},
{
- "id": 16910,
+ "id": 17379,
"properties": {
"east": "low",
"north": "low",
@@ -7403,7 +7403,7 @@
}
},
{
- "id": 16911,
+ "id": 17380,
"properties": {
"east": "low",
"north": "low",
@@ -7414,7 +7414,7 @@
}
},
{
- "id": 16912,
+ "id": 17381,
"properties": {
"east": "low",
"north": "low",
@@ -7425,7 +7425,7 @@
}
},
{
- "id": 16913,
+ "id": 17382,
"properties": {
"east": "low",
"north": "low",
@@ -7436,7 +7436,7 @@
}
},
{
- "id": 16914,
+ "id": 17383,
"properties": {
"east": "low",
"north": "low",
@@ -7447,7 +7447,7 @@
}
},
{
- "id": 16915,
+ "id": 17384,
"properties": {
"east": "low",
"north": "low",
@@ -7458,7 +7458,7 @@
}
},
{
- "id": 16916,
+ "id": 17385,
"properties": {
"east": "low",
"north": "low",
@@ -7469,7 +7469,7 @@
}
},
{
- "id": 16917,
+ "id": 17386,
"properties": {
"east": "low",
"north": "low",
@@ -7480,7 +7480,7 @@
}
},
{
- "id": 16918,
+ "id": 17387,
"properties": {
"east": "low",
"north": "low",
@@ -7491,7 +7491,7 @@
}
},
{
- "id": 16919,
+ "id": 17388,
"properties": {
"east": "low",
"north": "low",
@@ -7502,7 +7502,7 @@
}
},
{
- "id": 16920,
+ "id": 17389,
"properties": {
"east": "low",
"north": "low",
@@ -7513,7 +7513,7 @@
}
},
{
- "id": 16921,
+ "id": 17390,
"properties": {
"east": "low",
"north": "low",
@@ -7524,7 +7524,7 @@
}
},
{
- "id": 16922,
+ "id": 17391,
"properties": {
"east": "low",
"north": "low",
@@ -7535,7 +7535,7 @@
}
},
{
- "id": 16923,
+ "id": 17392,
"properties": {
"east": "low",
"north": "low",
@@ -7546,7 +7546,7 @@
}
},
{
- "id": 16924,
+ "id": 17393,
"properties": {
"east": "low",
"north": "low",
@@ -7557,7 +7557,7 @@
}
},
{
- "id": 16925,
+ "id": 17394,
"properties": {
"east": "low",
"north": "low",
@@ -7568,7 +7568,7 @@
}
},
{
- "id": 16926,
+ "id": 17395,
"properties": {
"east": "low",
"north": "low",
@@ -7579,7 +7579,7 @@
}
},
{
- "id": 16927,
+ "id": 17396,
"properties": {
"east": "low",
"north": "low",
@@ -7590,7 +7590,7 @@
}
},
{
- "id": 16928,
+ "id": 17397,
"properties": {
"east": "low",
"north": "low",
@@ -7601,7 +7601,7 @@
}
},
{
- "id": 16929,
+ "id": 17398,
"properties": {
"east": "low",
"north": "low",
@@ -7612,7 +7612,7 @@
}
},
{
- "id": 16930,
+ "id": 17399,
"properties": {
"east": "low",
"north": "low",
@@ -7623,7 +7623,7 @@
}
},
{
- "id": 16931,
+ "id": 17400,
"properties": {
"east": "low",
"north": "low",
@@ -7634,7 +7634,7 @@
}
},
{
- "id": 16932,
+ "id": 17401,
"properties": {
"east": "low",
"north": "tall",
@@ -7645,7 +7645,7 @@
}
},
{
- "id": 16933,
+ "id": 17402,
"properties": {
"east": "low",
"north": "tall",
@@ -7656,7 +7656,7 @@
}
},
{
- "id": 16934,
+ "id": 17403,
"properties": {
"east": "low",
"north": "tall",
@@ -7667,7 +7667,7 @@
}
},
{
- "id": 16935,
+ "id": 17404,
"properties": {
"east": "low",
"north": "tall",
@@ -7678,7 +7678,7 @@
}
},
{
- "id": 16936,
+ "id": 17405,
"properties": {
"east": "low",
"north": "tall",
@@ -7689,7 +7689,7 @@
}
},
{
- "id": 16937,
+ "id": 17406,
"properties": {
"east": "low",
"north": "tall",
@@ -7700,7 +7700,7 @@
}
},
{
- "id": 16938,
+ "id": 17407,
"properties": {
"east": "low",
"north": "tall",
@@ -7711,7 +7711,7 @@
}
},
{
- "id": 16939,
+ "id": 17408,
"properties": {
"east": "low",
"north": "tall",
@@ -7722,7 +7722,7 @@
}
},
{
- "id": 16940,
+ "id": 17409,
"properties": {
"east": "low",
"north": "tall",
@@ -7733,7 +7733,7 @@
}
},
{
- "id": 16941,
+ "id": 17410,
"properties": {
"east": "low",
"north": "tall",
@@ -7744,7 +7744,7 @@
}
},
{
- "id": 16942,
+ "id": 17411,
"properties": {
"east": "low",
"north": "tall",
@@ -7755,7 +7755,7 @@
}
},
{
- "id": 16943,
+ "id": 17412,
"properties": {
"east": "low",
"north": "tall",
@@ -7766,7 +7766,7 @@
}
},
{
- "id": 16944,
+ "id": 17413,
"properties": {
"east": "low",
"north": "tall",
@@ -7777,7 +7777,7 @@
}
},
{
- "id": 16945,
+ "id": 17414,
"properties": {
"east": "low",
"north": "tall",
@@ -7788,7 +7788,7 @@
}
},
{
- "id": 16946,
+ "id": 17415,
"properties": {
"east": "low",
"north": "tall",
@@ -7799,7 +7799,7 @@
}
},
{
- "id": 16947,
+ "id": 17416,
"properties": {
"east": "low",
"north": "tall",
@@ -7810,7 +7810,7 @@
}
},
{
- "id": 16948,
+ "id": 17417,
"properties": {
"east": "low",
"north": "tall",
@@ -7821,7 +7821,7 @@
}
},
{
- "id": 16949,
+ "id": 17418,
"properties": {
"east": "low",
"north": "tall",
@@ -7832,7 +7832,7 @@
}
},
{
- "id": 16950,
+ "id": 17419,
"properties": {
"east": "low",
"north": "tall",
@@ -7843,7 +7843,7 @@
}
},
{
- "id": 16951,
+ "id": 17420,
"properties": {
"east": "low",
"north": "tall",
@@ -7854,7 +7854,7 @@
}
},
{
- "id": 16952,
+ "id": 17421,
"properties": {
"east": "low",
"north": "tall",
@@ -7865,7 +7865,7 @@
}
},
{
- "id": 16953,
+ "id": 17422,
"properties": {
"east": "low",
"north": "tall",
@@ -7876,7 +7876,7 @@
}
},
{
- "id": 16954,
+ "id": 17423,
"properties": {
"east": "low",
"north": "tall",
@@ -7887,7 +7887,7 @@
}
},
{
- "id": 16955,
+ "id": 17424,
"properties": {
"east": "low",
"north": "tall",
@@ -7898,7 +7898,7 @@
}
},
{
- "id": 16956,
+ "id": 17425,
"properties": {
"east": "low",
"north": "tall",
@@ -7909,7 +7909,7 @@
}
},
{
- "id": 16957,
+ "id": 17426,
"properties": {
"east": "low",
"north": "tall",
@@ -7920,7 +7920,7 @@
}
},
{
- "id": 16958,
+ "id": 17427,
"properties": {
"east": "low",
"north": "tall",
@@ -7931,7 +7931,7 @@
}
},
{
- "id": 16959,
+ "id": 17428,
"properties": {
"east": "low",
"north": "tall",
@@ -7942,7 +7942,7 @@
}
},
{
- "id": 16960,
+ "id": 17429,
"properties": {
"east": "low",
"north": "tall",
@@ -7953,7 +7953,7 @@
}
},
{
- "id": 16961,
+ "id": 17430,
"properties": {
"east": "low",
"north": "tall",
@@ -7964,7 +7964,7 @@
}
},
{
- "id": 16962,
+ "id": 17431,
"properties": {
"east": "low",
"north": "tall",
@@ -7975,7 +7975,7 @@
}
},
{
- "id": 16963,
+ "id": 17432,
"properties": {
"east": "low",
"north": "tall",
@@ -7986,7 +7986,7 @@
}
},
{
- "id": 16964,
+ "id": 17433,
"properties": {
"east": "low",
"north": "tall",
@@ -7997,7 +7997,7 @@
}
},
{
- "id": 16965,
+ "id": 17434,
"properties": {
"east": "low",
"north": "tall",
@@ -8008,7 +8008,7 @@
}
},
{
- "id": 16966,
+ "id": 17435,
"properties": {
"east": "low",
"north": "tall",
@@ -8019,7 +8019,7 @@
}
},
{
- "id": 16967,
+ "id": 17436,
"properties": {
"east": "low",
"north": "tall",
@@ -8030,7 +8030,7 @@
}
},
{
- "id": 16968,
+ "id": 17437,
"properties": {
"east": "tall",
"north": "none",
@@ -8041,7 +8041,7 @@
}
},
{
- "id": 16969,
+ "id": 17438,
"properties": {
"east": "tall",
"north": "none",
@@ -8052,7 +8052,7 @@
}
},
{
- "id": 16970,
+ "id": 17439,
"properties": {
"east": "tall",
"north": "none",
@@ -8063,7 +8063,7 @@
}
},
{
- "id": 16971,
+ "id": 17440,
"properties": {
"east": "tall",
"north": "none",
@@ -8074,7 +8074,7 @@
}
},
{
- "id": 16972,
+ "id": 17441,
"properties": {
"east": "tall",
"north": "none",
@@ -8085,7 +8085,7 @@
}
},
{
- "id": 16973,
+ "id": 17442,
"properties": {
"east": "tall",
"north": "none",
@@ -8096,7 +8096,7 @@
}
},
{
- "id": 16974,
+ "id": 17443,
"properties": {
"east": "tall",
"north": "none",
@@ -8107,7 +8107,7 @@
}
},
{
- "id": 16975,
+ "id": 17444,
"properties": {
"east": "tall",
"north": "none",
@@ -8118,7 +8118,7 @@
}
},
{
- "id": 16976,
+ "id": 17445,
"properties": {
"east": "tall",
"north": "none",
@@ -8129,7 +8129,7 @@
}
},
{
- "id": 16977,
+ "id": 17446,
"properties": {
"east": "tall",
"north": "none",
@@ -8140,7 +8140,7 @@
}
},
{
- "id": 16978,
+ "id": 17447,
"properties": {
"east": "tall",
"north": "none",
@@ -8151,7 +8151,7 @@
}
},
{
- "id": 16979,
+ "id": 17448,
"properties": {
"east": "tall",
"north": "none",
@@ -8162,7 +8162,7 @@
}
},
{
- "id": 16980,
+ "id": 17449,
"properties": {
"east": "tall",
"north": "none",
@@ -8173,7 +8173,7 @@
}
},
{
- "id": 16981,
+ "id": 17450,
"properties": {
"east": "tall",
"north": "none",
@@ -8184,7 +8184,7 @@
}
},
{
- "id": 16982,
+ "id": 17451,
"properties": {
"east": "tall",
"north": "none",
@@ -8195,7 +8195,7 @@
}
},
{
- "id": 16983,
+ "id": 17452,
"properties": {
"east": "tall",
"north": "none",
@@ -8206,7 +8206,7 @@
}
},
{
- "id": 16984,
+ "id": 17453,
"properties": {
"east": "tall",
"north": "none",
@@ -8217,7 +8217,7 @@
}
},
{
- "id": 16985,
+ "id": 17454,
"properties": {
"east": "tall",
"north": "none",
@@ -8228,7 +8228,7 @@
}
},
{
- "id": 16986,
+ "id": 17455,
"properties": {
"east": "tall",
"north": "none",
@@ -8239,7 +8239,7 @@
}
},
{
- "id": 16987,
+ "id": 17456,
"properties": {
"east": "tall",
"north": "none",
@@ -8250,7 +8250,7 @@
}
},
{
- "id": 16988,
+ "id": 17457,
"properties": {
"east": "tall",
"north": "none",
@@ -8261,7 +8261,7 @@
}
},
{
- "id": 16989,
+ "id": 17458,
"properties": {
"east": "tall",
"north": "none",
@@ -8272,7 +8272,7 @@
}
},
{
- "id": 16990,
+ "id": 17459,
"properties": {
"east": "tall",
"north": "none",
@@ -8283,7 +8283,7 @@
}
},
{
- "id": 16991,
+ "id": 17460,
"properties": {
"east": "tall",
"north": "none",
@@ -8294,7 +8294,7 @@
}
},
{
- "id": 16992,
+ "id": 17461,
"properties": {
"east": "tall",
"north": "none",
@@ -8305,7 +8305,7 @@
}
},
{
- "id": 16993,
+ "id": 17462,
"properties": {
"east": "tall",
"north": "none",
@@ -8316,7 +8316,7 @@
}
},
{
- "id": 16994,
+ "id": 17463,
"properties": {
"east": "tall",
"north": "none",
@@ -8327,7 +8327,7 @@
}
},
{
- "id": 16995,
+ "id": 17464,
"properties": {
"east": "tall",
"north": "none",
@@ -8338,7 +8338,7 @@
}
},
{
- "id": 16996,
+ "id": 17465,
"properties": {
"east": "tall",
"north": "none",
@@ -8349,7 +8349,7 @@
}
},
{
- "id": 16997,
+ "id": 17466,
"properties": {
"east": "tall",
"north": "none",
@@ -8360,7 +8360,7 @@
}
},
{
- "id": 16998,
+ "id": 17467,
"properties": {
"east": "tall",
"north": "none",
@@ -8371,7 +8371,7 @@
}
},
{
- "id": 16999,
+ "id": 17468,
"properties": {
"east": "tall",
"north": "none",
@@ -8382,7 +8382,7 @@
}
},
{
- "id": 17000,
+ "id": 17469,
"properties": {
"east": "tall",
"north": "none",
@@ -8393,7 +8393,7 @@
}
},
{
- "id": 17001,
+ "id": 17470,
"properties": {
"east": "tall",
"north": "none",
@@ -8404,7 +8404,7 @@
}
},
{
- "id": 17002,
+ "id": 17471,
"properties": {
"east": "tall",
"north": "none",
@@ -8415,7 +8415,7 @@
}
},
{
- "id": 17003,
+ "id": 17472,
"properties": {
"east": "tall",
"north": "none",
@@ -8426,7 +8426,7 @@
}
},
{
- "id": 17004,
+ "id": 17473,
"properties": {
"east": "tall",
"north": "low",
@@ -8437,7 +8437,7 @@
}
},
{
- "id": 17005,
+ "id": 17474,
"properties": {
"east": "tall",
"north": "low",
@@ -8448,7 +8448,7 @@
}
},
{
- "id": 17006,
+ "id": 17475,
"properties": {
"east": "tall",
"north": "low",
@@ -8459,7 +8459,7 @@
}
},
{
- "id": 17007,
+ "id": 17476,
"properties": {
"east": "tall",
"north": "low",
@@ -8470,7 +8470,7 @@
}
},
{
- "id": 17008,
+ "id": 17477,
"properties": {
"east": "tall",
"north": "low",
@@ -8481,7 +8481,7 @@
}
},
{
- "id": 17009,
+ "id": 17478,
"properties": {
"east": "tall",
"north": "low",
@@ -8492,7 +8492,7 @@
}
},
{
- "id": 17010,
+ "id": 17479,
"properties": {
"east": "tall",
"north": "low",
@@ -8503,7 +8503,7 @@
}
},
{
- "id": 17011,
+ "id": 17480,
"properties": {
"east": "tall",
"north": "low",
@@ -8514,7 +8514,7 @@
}
},
{
- "id": 17012,
+ "id": 17481,
"properties": {
"east": "tall",
"north": "low",
@@ -8525,7 +8525,7 @@
}
},
{
- "id": 17013,
+ "id": 17482,
"properties": {
"east": "tall",
"north": "low",
@@ -8536,7 +8536,7 @@
}
},
{
- "id": 17014,
+ "id": 17483,
"properties": {
"east": "tall",
"north": "low",
@@ -8547,7 +8547,7 @@
}
},
{
- "id": 17015,
+ "id": 17484,
"properties": {
"east": "tall",
"north": "low",
@@ -8558,7 +8558,7 @@
}
},
{
- "id": 17016,
+ "id": 17485,
"properties": {
"east": "tall",
"north": "low",
@@ -8569,7 +8569,7 @@
}
},
{
- "id": 17017,
+ "id": 17486,
"properties": {
"east": "tall",
"north": "low",
@@ -8580,7 +8580,7 @@
}
},
{
- "id": 17018,
+ "id": 17487,
"properties": {
"east": "tall",
"north": "low",
@@ -8591,7 +8591,7 @@
}
},
{
- "id": 17019,
+ "id": 17488,
"properties": {
"east": "tall",
"north": "low",
@@ -8602,7 +8602,7 @@
}
},
{
- "id": 17020,
+ "id": 17489,
"properties": {
"east": "tall",
"north": "low",
@@ -8613,7 +8613,7 @@
}
},
{
- "id": 17021,
+ "id": 17490,
"properties": {
"east": "tall",
"north": "low",
@@ -8624,7 +8624,7 @@
}
},
{
- "id": 17022,
+ "id": 17491,
"properties": {
"east": "tall",
"north": "low",
@@ -8635,7 +8635,7 @@
}
},
{
- "id": 17023,
+ "id": 17492,
"properties": {
"east": "tall",
"north": "low",
@@ -8646,7 +8646,7 @@
}
},
{
- "id": 17024,
+ "id": 17493,
"properties": {
"east": "tall",
"north": "low",
@@ -8657,7 +8657,7 @@
}
},
{
- "id": 17025,
+ "id": 17494,
"properties": {
"east": "tall",
"north": "low",
@@ -8668,7 +8668,7 @@
}
},
{
- "id": 17026,
+ "id": 17495,
"properties": {
"east": "tall",
"north": "low",
@@ -8679,7 +8679,7 @@
}
},
{
- "id": 17027,
+ "id": 17496,
"properties": {
"east": "tall",
"north": "low",
@@ -8690,7 +8690,7 @@
}
},
{
- "id": 17028,
+ "id": 17497,
"properties": {
"east": "tall",
"north": "low",
@@ -8701,7 +8701,7 @@
}
},
{
- "id": 17029,
+ "id": 17498,
"properties": {
"east": "tall",
"north": "low",
@@ -8712,7 +8712,7 @@
}
},
{
- "id": 17030,
+ "id": 17499,
"properties": {
"east": "tall",
"north": "low",
@@ -8723,7 +8723,7 @@
}
},
{
- "id": 17031,
+ "id": 17500,
"properties": {
"east": "tall",
"north": "low",
@@ -8734,7 +8734,7 @@
}
},
{
- "id": 17032,
+ "id": 17501,
"properties": {
"east": "tall",
"north": "low",
@@ -8745,7 +8745,7 @@
}
},
{
- "id": 17033,
+ "id": 17502,
"properties": {
"east": "tall",
"north": "low",
@@ -8756,7 +8756,7 @@
}
},
{
- "id": 17034,
+ "id": 17503,
"properties": {
"east": "tall",
"north": "low",
@@ -8767,7 +8767,7 @@
}
},
{
- "id": 17035,
+ "id": 17504,
"properties": {
"east": "tall",
"north": "low",
@@ -8778,7 +8778,7 @@
}
},
{
- "id": 17036,
+ "id": 17505,
"properties": {
"east": "tall",
"north": "low",
@@ -8789,7 +8789,7 @@
}
},
{
- "id": 17037,
+ "id": 17506,
"properties": {
"east": "tall",
"north": "low",
@@ -8800,7 +8800,7 @@
}
},
{
- "id": 17038,
+ "id": 17507,
"properties": {
"east": "tall",
"north": "low",
@@ -8811,7 +8811,7 @@
}
},
{
- "id": 17039,
+ "id": 17508,
"properties": {
"east": "tall",
"north": "low",
@@ -8822,7 +8822,7 @@
}
},
{
- "id": 17040,
+ "id": 17509,
"properties": {
"east": "tall",
"north": "tall",
@@ -8833,7 +8833,7 @@
}
},
{
- "id": 17041,
+ "id": 17510,
"properties": {
"east": "tall",
"north": "tall",
@@ -8844,7 +8844,7 @@
}
},
{
- "id": 17042,
+ "id": 17511,
"properties": {
"east": "tall",
"north": "tall",
@@ -8855,7 +8855,7 @@
}
},
{
- "id": 17043,
+ "id": 17512,
"properties": {
"east": "tall",
"north": "tall",
@@ -8866,7 +8866,7 @@
}
},
{
- "id": 17044,
+ "id": 17513,
"properties": {
"east": "tall",
"north": "tall",
@@ -8877,7 +8877,7 @@
}
},
{
- "id": 17045,
+ "id": 17514,
"properties": {
"east": "tall",
"north": "tall",
@@ -8888,7 +8888,7 @@
}
},
{
- "id": 17046,
+ "id": 17515,
"properties": {
"east": "tall",
"north": "tall",
@@ -8899,7 +8899,7 @@
}
},
{
- "id": 17047,
+ "id": 17516,
"properties": {
"east": "tall",
"north": "tall",
@@ -8910,7 +8910,7 @@
}
},
{
- "id": 17048,
+ "id": 17517,
"properties": {
"east": "tall",
"north": "tall",
@@ -8921,7 +8921,7 @@
}
},
{
- "id": 17049,
+ "id": 17518,
"properties": {
"east": "tall",
"north": "tall",
@@ -8932,7 +8932,7 @@
}
},
{
- "id": 17050,
+ "id": 17519,
"properties": {
"east": "tall",
"north": "tall",
@@ -8943,7 +8943,7 @@
}
},
{
- "id": 17051,
+ "id": 17520,
"properties": {
"east": "tall",
"north": "tall",
@@ -8954,7 +8954,7 @@
}
},
{
- "id": 17052,
+ "id": 17521,
"properties": {
"east": "tall",
"north": "tall",
@@ -8965,7 +8965,7 @@
}
},
{
- "id": 17053,
+ "id": 17522,
"properties": {
"east": "tall",
"north": "tall",
@@ -8976,7 +8976,7 @@
}
},
{
- "id": 17054,
+ "id": 17523,
"properties": {
"east": "tall",
"north": "tall",
@@ -8987,7 +8987,7 @@
}
},
{
- "id": 17055,
+ "id": 17524,
"properties": {
"east": "tall",
"north": "tall",
@@ -8998,7 +8998,7 @@
}
},
{
- "id": 17056,
+ "id": 17525,
"properties": {
"east": "tall",
"north": "tall",
@@ -9009,7 +9009,7 @@
}
},
{
- "id": 17057,
+ "id": 17526,
"properties": {
"east": "tall",
"north": "tall",
@@ -9020,7 +9020,7 @@
}
},
{
- "id": 17058,
+ "id": 17527,
"properties": {
"east": "tall",
"north": "tall",
@@ -9031,7 +9031,7 @@
}
},
{
- "id": 17059,
+ "id": 17528,
"properties": {
"east": "tall",
"north": "tall",
@@ -9042,7 +9042,7 @@
}
},
{
- "id": 17060,
+ "id": 17529,
"properties": {
"east": "tall",
"north": "tall",
@@ -9053,7 +9053,7 @@
}
},
{
- "id": 17061,
+ "id": 17530,
"properties": {
"east": "tall",
"north": "tall",
@@ -9064,7 +9064,7 @@
}
},
{
- "id": 17062,
+ "id": 17531,
"properties": {
"east": "tall",
"north": "tall",
@@ -9075,7 +9075,7 @@
}
},
{
- "id": 17063,
+ "id": 17532,
"properties": {
"east": "tall",
"north": "tall",
@@ -9086,7 +9086,7 @@
}
},
{
- "id": 17064,
+ "id": 17533,
"properties": {
"east": "tall",
"north": "tall",
@@ -9097,7 +9097,7 @@
}
},
{
- "id": 17065,
+ "id": 17534,
"properties": {
"east": "tall",
"north": "tall",
@@ -9108,7 +9108,7 @@
}
},
{
- "id": 17066,
+ "id": 17535,
"properties": {
"east": "tall",
"north": "tall",
@@ -9119,7 +9119,7 @@
}
},
{
- "id": 17067,
+ "id": 17536,
"properties": {
"east": "tall",
"north": "tall",
@@ -9130,7 +9130,7 @@
}
},
{
- "id": 17068,
+ "id": 17537,
"properties": {
"east": "tall",
"north": "tall",
@@ -9141,7 +9141,7 @@
}
},
{
- "id": 17069,
+ "id": 17538,
"properties": {
"east": "tall",
"north": "tall",
@@ -9152,7 +9152,7 @@
}
},
{
- "id": 17070,
+ "id": 17539,
"properties": {
"east": "tall",
"north": "tall",
@@ -9163,7 +9163,7 @@
}
},
{
- "id": 17071,
+ "id": 17540,
"properties": {
"east": "tall",
"north": "tall",
@@ -9174,7 +9174,7 @@
}
},
{
- "id": 17072,
+ "id": 17541,
"properties": {
"east": "tall",
"north": "tall",
@@ -9185,7 +9185,7 @@
}
},
{
- "id": 17073,
+ "id": 17542,
"properties": {
"east": "tall",
"north": "tall",
@@ -9196,7 +9196,7 @@
}
},
{
- "id": 17074,
+ "id": 17543,
"properties": {
"east": "tall",
"north": "tall",
@@ -9207,7 +9207,7 @@
}
},
{
- "id": 17075,
+ "id": 17544,
"properties": {
"east": "tall",
"north": "tall",
@@ -9235,25 +9235,25 @@
"states": [
{
"default": true,
- "id": 9107,
+ "id": 9362,
"properties": {
"facing": "north"
}
},
{
- "id": 9108,
+ "id": 9363,
"properties": {
"facing": "south"
}
},
{
- "id": 9109,
+ "id": 9364,
"properties": {
"facing": "west"
}
},
{
- "id": 9110,
+ "id": 9365,
"properties": {
"facing": "east"
}
@@ -9279,25 +9279,25 @@
"states": [
{
"default": true,
- "id": 6817,
+ "id": 7047,
"properties": {
"facing": "north"
}
},
{
- "id": 6818,
+ "id": 7048,
"properties": {
"facing": "south"
}
},
{
- "id": 6819,
+ "id": 7049,
"properties": {
"facing": "west"
}
},
{
- "id": 6820,
+ "id": 7050,
"properties": {
"facing": "east"
}
@@ -9323,25 +9323,25 @@
"states": [
{
"default": true,
- "id": 6813,
+ "id": 7043,
"properties": {
"facing": "north"
}
},
{
- "id": 6814,
+ "id": 7044,
"properties": {
"facing": "south"
}
},
{
- "id": 6815,
+ "id": 7045,
"properties": {
"facing": "west"
}
},
{
- "id": 6816,
+ "id": 7046,
"properties": {
"facing": "east"
}
@@ -9356,7 +9356,7 @@
"states": [
{
"default": true,
- "id": 24824
+ "id": 25293
}
]
},
@@ -9386,7 +9386,7 @@
},
"states": [
{
- "id": 461,
+ "id": 504,
"properties": {
"distance": "1",
"persistent": "true",
@@ -9394,7 +9394,7 @@
}
},
{
- "id": 462,
+ "id": 505,
"properties": {
"distance": "1",
"persistent": "true",
@@ -9402,7 +9402,7 @@
}
},
{
- "id": 463,
+ "id": 506,
"properties": {
"distance": "1",
"persistent": "false",
@@ -9410,7 +9410,7 @@
}
},
{
- "id": 464,
+ "id": 507,
"properties": {
"distance": "1",
"persistent": "false",
@@ -9418,7 +9418,7 @@
}
},
{
- "id": 465,
+ "id": 508,
"properties": {
"distance": "2",
"persistent": "true",
@@ -9426,7 +9426,7 @@
}
},
{
- "id": 466,
+ "id": 509,
"properties": {
"distance": "2",
"persistent": "true",
@@ -9434,7 +9434,7 @@
}
},
{
- "id": 467,
+ "id": 510,
"properties": {
"distance": "2",
"persistent": "false",
@@ -9442,7 +9442,7 @@
}
},
{
- "id": 468,
+ "id": 511,
"properties": {
"distance": "2",
"persistent": "false",
@@ -9450,7 +9450,7 @@
}
},
{
- "id": 469,
+ "id": 512,
"properties": {
"distance": "3",
"persistent": "true",
@@ -9458,7 +9458,7 @@
}
},
{
- "id": 470,
+ "id": 513,
"properties": {
"distance": "3",
"persistent": "true",
@@ -9466,7 +9466,7 @@
}
},
{
- "id": 471,
+ "id": 514,
"properties": {
"distance": "3",
"persistent": "false",
@@ -9474,7 +9474,7 @@
}
},
{
- "id": 472,
+ "id": 515,
"properties": {
"distance": "3",
"persistent": "false",
@@ -9482,7 +9482,7 @@
}
},
{
- "id": 473,
+ "id": 516,
"properties": {
"distance": "4",
"persistent": "true",
@@ -9490,7 +9490,7 @@
}
},
{
- "id": 474,
+ "id": 517,
"properties": {
"distance": "4",
"persistent": "true",
@@ -9498,7 +9498,7 @@
}
},
{
- "id": 475,
+ "id": 518,
"properties": {
"distance": "4",
"persistent": "false",
@@ -9506,7 +9506,7 @@
}
},
{
- "id": 476,
+ "id": 519,
"properties": {
"distance": "4",
"persistent": "false",
@@ -9514,7 +9514,7 @@
}
},
{
- "id": 477,
+ "id": 520,
"properties": {
"distance": "5",
"persistent": "true",
@@ -9522,7 +9522,7 @@
}
},
{
- "id": 478,
+ "id": 521,
"properties": {
"distance": "5",
"persistent": "true",
@@ -9530,7 +9530,7 @@
}
},
{
- "id": 479,
+ "id": 522,
"properties": {
"distance": "5",
"persistent": "false",
@@ -9538,7 +9538,7 @@
}
},
{
- "id": 480,
+ "id": 523,
"properties": {
"distance": "5",
"persistent": "false",
@@ -9546,7 +9546,7 @@
}
},
{
- "id": 481,
+ "id": 524,
"properties": {
"distance": "6",
"persistent": "true",
@@ -9554,7 +9554,7 @@
}
},
{
- "id": 482,
+ "id": 525,
"properties": {
"distance": "6",
"persistent": "true",
@@ -9562,7 +9562,7 @@
}
},
{
- "id": 483,
+ "id": 526,
"properties": {
"distance": "6",
"persistent": "false",
@@ -9570,7 +9570,7 @@
}
},
{
- "id": 484,
+ "id": 527,
"properties": {
"distance": "6",
"persistent": "false",
@@ -9578,7 +9578,7 @@
}
},
{
- "id": 485,
+ "id": 528,
"properties": {
"distance": "7",
"persistent": "true",
@@ -9586,7 +9586,7 @@
}
},
{
- "id": 486,
+ "id": 529,
"properties": {
"distance": "7",
"persistent": "true",
@@ -9594,7 +9594,7 @@
}
},
{
- "id": 487,
+ "id": 530,
"properties": {
"distance": "7",
"persistent": "false",
@@ -9603,7 +9603,7 @@
},
{
"default": true,
- "id": 488,
+ "id": 531,
"properties": {
"distance": "7",
"persistent": "false",
@@ -9625,7 +9625,7 @@
"states": [
{
"default": true,
- "id": 2080
+ "id": 2123
}
]
},
@@ -9652,7 +9652,7 @@
"states": [
{
"default": true,
- "id": 12945,
+ "id": 13414,
"properties": {
"age": "0",
"leaves": "none",
@@ -9660,7 +9660,7 @@
}
},
{
- "id": 12946,
+ "id": 13415,
"properties": {
"age": "0",
"leaves": "none",
@@ -9668,7 +9668,7 @@
}
},
{
- "id": 12947,
+ "id": 13416,
"properties": {
"age": "0",
"leaves": "small",
@@ -9676,7 +9676,7 @@
}
},
{
- "id": 12948,
+ "id": 13417,
"properties": {
"age": "0",
"leaves": "small",
@@ -9684,7 +9684,7 @@
}
},
{
- "id": 12949,
+ "id": 13418,
"properties": {
"age": "0",
"leaves": "large",
@@ -9692,7 +9692,7 @@
}
},
{
- "id": 12950,
+ "id": 13419,
"properties": {
"age": "0",
"leaves": "large",
@@ -9700,7 +9700,7 @@
}
},
{
- "id": 12951,
+ "id": 13420,
"properties": {
"age": "1",
"leaves": "none",
@@ -9708,7 +9708,7 @@
}
},
{
- "id": 12952,
+ "id": 13421,
"properties": {
"age": "1",
"leaves": "none",
@@ -9716,7 +9716,7 @@
}
},
{
- "id": 12953,
+ "id": 13422,
"properties": {
"age": "1",
"leaves": "small",
@@ -9724,7 +9724,7 @@
}
},
{
- "id": 12954,
+ "id": 13423,
"properties": {
"age": "1",
"leaves": "small",
@@ -9732,7 +9732,7 @@
}
},
{
- "id": 12955,
+ "id": 13424,
"properties": {
"age": "1",
"leaves": "large",
@@ -9740,7 +9740,7 @@
}
},
{
- "id": 12956,
+ "id": 13425,
"properties": {
"age": "1",
"leaves": "large",
@@ -9763,20 +9763,20 @@
},
"states": [
{
- "id": 159,
+ "id": 168,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 160,
+ "id": 169,
"properties": {
"axis": "y"
}
},
{
- "id": 161,
+ "id": 170,
"properties": {
"axis": "z"
}
@@ -9809,7 +9809,7 @@
},
"states": [
{
- "id": 8803,
+ "id": 9058,
"properties": {
"face": "floor",
"facing": "north",
@@ -9817,7 +9817,7 @@
}
},
{
- "id": 8804,
+ "id": 9059,
"properties": {
"face": "floor",
"facing": "north",
@@ -9825,7 +9825,7 @@
}
},
{
- "id": 8805,
+ "id": 9060,
"properties": {
"face": "floor",
"facing": "south",
@@ -9833,7 +9833,7 @@
}
},
{
- "id": 8806,
+ "id": 9061,
"properties": {
"face": "floor",
"facing": "south",
@@ -9841,7 +9841,7 @@
}
},
{
- "id": 8807,
+ "id": 9062,
"properties": {
"face": "floor",
"facing": "west",
@@ -9849,7 +9849,7 @@
}
},
{
- "id": 8808,
+ "id": 9063,
"properties": {
"face": "floor",
"facing": "west",
@@ -9857,7 +9857,7 @@
}
},
{
- "id": 8809,
+ "id": 9064,
"properties": {
"face": "floor",
"facing": "east",
@@ -9865,7 +9865,7 @@
}
},
{
- "id": 8810,
+ "id": 9065,
"properties": {
"face": "floor",
"facing": "east",
@@ -9873,7 +9873,7 @@
}
},
{
- "id": 8811,
+ "id": 9066,
"properties": {
"face": "wall",
"facing": "north",
@@ -9882,7 +9882,7 @@
},
{
"default": true,
- "id": 8812,
+ "id": 9067,
"properties": {
"face": "wall",
"facing": "north",
@@ -9890,7 +9890,7 @@
}
},
{
- "id": 8813,
+ "id": 9068,
"properties": {
"face": "wall",
"facing": "south",
@@ -9898,7 +9898,7 @@
}
},
{
- "id": 8814,
+ "id": 9069,
"properties": {
"face": "wall",
"facing": "south",
@@ -9906,7 +9906,7 @@
}
},
{
- "id": 8815,
+ "id": 9070,
"properties": {
"face": "wall",
"facing": "west",
@@ -9914,7 +9914,7 @@
}
},
{
- "id": 8816,
+ "id": 9071,
"properties": {
"face": "wall",
"facing": "west",
@@ -9922,7 +9922,7 @@
}
},
{
- "id": 8817,
+ "id": 9072,
"properties": {
"face": "wall",
"facing": "east",
@@ -9930,7 +9930,7 @@
}
},
{
- "id": 8818,
+ "id": 9073,
"properties": {
"face": "wall",
"facing": "east",
@@ -9938,7 +9938,7 @@
}
},
{
- "id": 8819,
+ "id": 9074,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -9946,7 +9946,7 @@
}
},
{
- "id": 8820,
+ "id": 9075,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -9954,7 +9954,7 @@
}
},
{
- "id": 8821,
+ "id": 9076,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -9962,7 +9962,7 @@
}
},
{
- "id": 8822,
+ "id": 9077,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -9970,7 +9970,7 @@
}
},
{
- "id": 8823,
+ "id": 9078,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -9978,7 +9978,7 @@
}
},
{
- "id": 8824,
+ "id": 9079,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -9986,7 +9986,7 @@
}
},
{
- "id": 8825,
+ "id": 9080,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -9994,7 +9994,7 @@
}
},
{
- "id": 8826,
+ "id": 9081,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -10035,7 +10035,7 @@
},
"states": [
{
- "id": 12270,
+ "id": 12739,
"properties": {
"facing": "north",
"half": "upper",
@@ -10045,7 +10045,7 @@
}
},
{
- "id": 12271,
+ "id": 12740,
"properties": {
"facing": "north",
"half": "upper",
@@ -10055,7 +10055,7 @@
}
},
{
- "id": 12272,
+ "id": 12741,
"properties": {
"facing": "north",
"half": "upper",
@@ -10065,7 +10065,7 @@
}
},
{
- "id": 12273,
+ "id": 12742,
"properties": {
"facing": "north",
"half": "upper",
@@ -10075,7 +10075,7 @@
}
},
{
- "id": 12274,
+ "id": 12743,
"properties": {
"facing": "north",
"half": "upper",
@@ -10085,7 +10085,7 @@
}
},
{
- "id": 12275,
+ "id": 12744,
"properties": {
"facing": "north",
"half": "upper",
@@ -10095,7 +10095,7 @@
}
},
{
- "id": 12276,
+ "id": 12745,
"properties": {
"facing": "north",
"half": "upper",
@@ -10105,7 +10105,7 @@
}
},
{
- "id": 12277,
+ "id": 12746,
"properties": {
"facing": "north",
"half": "upper",
@@ -10115,7 +10115,7 @@
}
},
{
- "id": 12278,
+ "id": 12747,
"properties": {
"facing": "north",
"half": "lower",
@@ -10125,7 +10125,7 @@
}
},
{
- "id": 12279,
+ "id": 12748,
"properties": {
"facing": "north",
"half": "lower",
@@ -10135,7 +10135,7 @@
}
},
{
- "id": 12280,
+ "id": 12749,
"properties": {
"facing": "north",
"half": "lower",
@@ -10146,7 +10146,7 @@
},
{
"default": true,
- "id": 12281,
+ "id": 12750,
"properties": {
"facing": "north",
"half": "lower",
@@ -10156,7 +10156,7 @@
}
},
{
- "id": 12282,
+ "id": 12751,
"properties": {
"facing": "north",
"half": "lower",
@@ -10166,7 +10166,7 @@
}
},
{
- "id": 12283,
+ "id": 12752,
"properties": {
"facing": "north",
"half": "lower",
@@ -10176,7 +10176,7 @@
}
},
{
- "id": 12284,
+ "id": 12753,
"properties": {
"facing": "north",
"half": "lower",
@@ -10186,7 +10186,7 @@
}
},
{
- "id": 12285,
+ "id": 12754,
"properties": {
"facing": "north",
"half": "lower",
@@ -10196,7 +10196,7 @@
}
},
{
- "id": 12286,
+ "id": 12755,
"properties": {
"facing": "south",
"half": "upper",
@@ -10206,7 +10206,7 @@
}
},
{
- "id": 12287,
+ "id": 12756,
"properties": {
"facing": "south",
"half": "upper",
@@ -10216,7 +10216,7 @@
}
},
{
- "id": 12288,
+ "id": 12757,
"properties": {
"facing": "south",
"half": "upper",
@@ -10226,7 +10226,7 @@
}
},
{
- "id": 12289,
+ "id": 12758,
"properties": {
"facing": "south",
"half": "upper",
@@ -10236,7 +10236,7 @@
}
},
{
- "id": 12290,
+ "id": 12759,
"properties": {
"facing": "south",
"half": "upper",
@@ -10246,7 +10246,7 @@
}
},
{
- "id": 12291,
+ "id": 12760,
"properties": {
"facing": "south",
"half": "upper",
@@ -10256,7 +10256,7 @@
}
},
{
- "id": 12292,
+ "id": 12761,
"properties": {
"facing": "south",
"half": "upper",
@@ -10266,7 +10266,7 @@
}
},
{
- "id": 12293,
+ "id": 12762,
"properties": {
"facing": "south",
"half": "upper",
@@ -10276,7 +10276,7 @@
}
},
{
- "id": 12294,
+ "id": 12763,
"properties": {
"facing": "south",
"half": "lower",
@@ -10286,7 +10286,7 @@
}
},
{
- "id": 12295,
+ "id": 12764,
"properties": {
"facing": "south",
"half": "lower",
@@ -10296,7 +10296,7 @@
}
},
{
- "id": 12296,
+ "id": 12765,
"properties": {
"facing": "south",
"half": "lower",
@@ -10306,7 +10306,7 @@
}
},
{
- "id": 12297,
+ "id": 12766,
"properties": {
"facing": "south",
"half": "lower",
@@ -10316,7 +10316,7 @@
}
},
{
- "id": 12298,
+ "id": 12767,
"properties": {
"facing": "south",
"half": "lower",
@@ -10326,7 +10326,7 @@
}
},
{
- "id": 12299,
+ "id": 12768,
"properties": {
"facing": "south",
"half": "lower",
@@ -10336,7 +10336,7 @@
}
},
{
- "id": 12300,
+ "id": 12769,
"properties": {
"facing": "south",
"half": "lower",
@@ -10346,7 +10346,7 @@
}
},
{
- "id": 12301,
+ "id": 12770,
"properties": {
"facing": "south",
"half": "lower",
@@ -10356,7 +10356,7 @@
}
},
{
- "id": 12302,
+ "id": 12771,
"properties": {
"facing": "west",
"half": "upper",
@@ -10366,7 +10366,7 @@
}
},
{
- "id": 12303,
+ "id": 12772,
"properties": {
"facing": "west",
"half": "upper",
@@ -10376,7 +10376,7 @@
}
},
{
- "id": 12304,
+ "id": 12773,
"properties": {
"facing": "west",
"half": "upper",
@@ -10386,7 +10386,7 @@
}
},
{
- "id": 12305,
+ "id": 12774,
"properties": {
"facing": "west",
"half": "upper",
@@ -10396,7 +10396,7 @@
}
},
{
- "id": 12306,
+ "id": 12775,
"properties": {
"facing": "west",
"half": "upper",
@@ -10406,7 +10406,7 @@
}
},
{
- "id": 12307,
+ "id": 12776,
"properties": {
"facing": "west",
"half": "upper",
@@ -10416,7 +10416,7 @@
}
},
{
- "id": 12308,
+ "id": 12777,
"properties": {
"facing": "west",
"half": "upper",
@@ -10426,7 +10426,7 @@
}
},
{
- "id": 12309,
+ "id": 12778,
"properties": {
"facing": "west",
"half": "upper",
@@ -10436,7 +10436,7 @@
}
},
{
- "id": 12310,
+ "id": 12779,
"properties": {
"facing": "west",
"half": "lower",
@@ -10446,7 +10446,7 @@
}
},
{
- "id": 12311,
+ "id": 12780,
"properties": {
"facing": "west",
"half": "lower",
@@ -10456,7 +10456,7 @@
}
},
{
- "id": 12312,
+ "id": 12781,
"properties": {
"facing": "west",
"half": "lower",
@@ -10466,7 +10466,7 @@
}
},
{
- "id": 12313,
+ "id": 12782,
"properties": {
"facing": "west",
"half": "lower",
@@ -10476,7 +10476,7 @@
}
},
{
- "id": 12314,
+ "id": 12783,
"properties": {
"facing": "west",
"half": "lower",
@@ -10486,7 +10486,7 @@
}
},
{
- "id": 12315,
+ "id": 12784,
"properties": {
"facing": "west",
"half": "lower",
@@ -10496,7 +10496,7 @@
}
},
{
- "id": 12316,
+ "id": 12785,
"properties": {
"facing": "west",
"half": "lower",
@@ -10506,7 +10506,7 @@
}
},
{
- "id": 12317,
+ "id": 12786,
"properties": {
"facing": "west",
"half": "lower",
@@ -10516,7 +10516,7 @@
}
},
{
- "id": 12318,
+ "id": 12787,
"properties": {
"facing": "east",
"half": "upper",
@@ -10526,7 +10526,7 @@
}
},
{
- "id": 12319,
+ "id": 12788,
"properties": {
"facing": "east",
"half": "upper",
@@ -10536,7 +10536,7 @@
}
},
{
- "id": 12320,
+ "id": 12789,
"properties": {
"facing": "east",
"half": "upper",
@@ -10546,7 +10546,7 @@
}
},
{
- "id": 12321,
+ "id": 12790,
"properties": {
"facing": "east",
"half": "upper",
@@ -10556,7 +10556,7 @@
}
},
{
- "id": 12322,
+ "id": 12791,
"properties": {
"facing": "east",
"half": "upper",
@@ -10566,7 +10566,7 @@
}
},
{
- "id": 12323,
+ "id": 12792,
"properties": {
"facing": "east",
"half": "upper",
@@ -10576,7 +10576,7 @@
}
},
{
- "id": 12324,
+ "id": 12793,
"properties": {
"facing": "east",
"half": "upper",
@@ -10586,7 +10586,7 @@
}
},
{
- "id": 12325,
+ "id": 12794,
"properties": {
"facing": "east",
"half": "upper",
@@ -10596,7 +10596,7 @@
}
},
{
- "id": 12326,
+ "id": 12795,
"properties": {
"facing": "east",
"half": "lower",
@@ -10606,7 +10606,7 @@
}
},
{
- "id": 12327,
+ "id": 12796,
"properties": {
"facing": "east",
"half": "lower",
@@ -10616,7 +10616,7 @@
}
},
{
- "id": 12328,
+ "id": 12797,
"properties": {
"facing": "east",
"half": "lower",
@@ -10626,7 +10626,7 @@
}
},
{
- "id": 12329,
+ "id": 12798,
"properties": {
"facing": "east",
"half": "lower",
@@ -10636,7 +10636,7 @@
}
},
{
- "id": 12330,
+ "id": 12799,
"properties": {
"facing": "east",
"half": "lower",
@@ -10646,7 +10646,7 @@
}
},
{
- "id": 12331,
+ "id": 12800,
"properties": {
"facing": "east",
"half": "lower",
@@ -10656,7 +10656,7 @@
}
},
{
- "id": 12332,
+ "id": 12801,
"properties": {
"facing": "east",
"half": "lower",
@@ -10666,7 +10666,7 @@
}
},
{
- "id": 12333,
+ "id": 12802,
"properties": {
"facing": "east",
"half": "lower",
@@ -10706,7 +10706,7 @@
},
"states": [
{
- "id": 11790,
+ "id": 12195,
"properties": {
"east": "true",
"north": "true",
@@ -10716,7 +10716,7 @@
}
},
{
- "id": 11791,
+ "id": 12196,
"properties": {
"east": "true",
"north": "true",
@@ -10726,7 +10726,7 @@
}
},
{
- "id": 11792,
+ "id": 12197,
"properties": {
"east": "true",
"north": "true",
@@ -10736,7 +10736,7 @@
}
},
{
- "id": 11793,
+ "id": 12198,
"properties": {
"east": "true",
"north": "true",
@@ -10746,7 +10746,7 @@
}
},
{
- "id": 11794,
+ "id": 12199,
"properties": {
"east": "true",
"north": "true",
@@ -10756,7 +10756,7 @@
}
},
{
- "id": 11795,
+ "id": 12200,
"properties": {
"east": "true",
"north": "true",
@@ -10766,7 +10766,7 @@
}
},
{
- "id": 11796,
+ "id": 12201,
"properties": {
"east": "true",
"north": "true",
@@ -10776,7 +10776,7 @@
}
},
{
- "id": 11797,
+ "id": 12202,
"properties": {
"east": "true",
"north": "true",
@@ -10786,7 +10786,7 @@
}
},
{
- "id": 11798,
+ "id": 12203,
"properties": {
"east": "true",
"north": "false",
@@ -10796,7 +10796,7 @@
}
},
{
- "id": 11799,
+ "id": 12204,
"properties": {
"east": "true",
"north": "false",
@@ -10806,7 +10806,7 @@
}
},
{
- "id": 11800,
+ "id": 12205,
"properties": {
"east": "true",
"north": "false",
@@ -10816,7 +10816,7 @@
}
},
{
- "id": 11801,
+ "id": 12206,
"properties": {
"east": "true",
"north": "false",
@@ -10826,7 +10826,7 @@
}
},
{
- "id": 11802,
+ "id": 12207,
"properties": {
"east": "true",
"north": "false",
@@ -10836,7 +10836,7 @@
}
},
{
- "id": 11803,
+ "id": 12208,
"properties": {
"east": "true",
"north": "false",
@@ -10846,7 +10846,7 @@
}
},
{
- "id": 11804,
+ "id": 12209,
"properties": {
"east": "true",
"north": "false",
@@ -10856,7 +10856,7 @@
}
},
{
- "id": 11805,
+ "id": 12210,
"properties": {
"east": "true",
"north": "false",
@@ -10866,7 +10866,7 @@
}
},
{
- "id": 11806,
+ "id": 12211,
"properties": {
"east": "false",
"north": "true",
@@ -10876,7 +10876,7 @@
}
},
{
- "id": 11807,
+ "id": 12212,
"properties": {
"east": "false",
"north": "true",
@@ -10886,7 +10886,7 @@
}
},
{
- "id": 11808,
+ "id": 12213,
"properties": {
"east": "false",
"north": "true",
@@ -10896,7 +10896,7 @@
}
},
{
- "id": 11809,
+ "id": 12214,
"properties": {
"east": "false",
"north": "true",
@@ -10906,7 +10906,7 @@
}
},
{
- "id": 11810,
+ "id": 12215,
"properties": {
"east": "false",
"north": "true",
@@ -10916,7 +10916,7 @@
}
},
{
- "id": 11811,
+ "id": 12216,
"properties": {
"east": "false",
"north": "true",
@@ -10926,7 +10926,7 @@
}
},
{
- "id": 11812,
+ "id": 12217,
"properties": {
"east": "false",
"north": "true",
@@ -10936,7 +10936,7 @@
}
},
{
- "id": 11813,
+ "id": 12218,
"properties": {
"east": "false",
"north": "true",
@@ -10946,7 +10946,7 @@
}
},
{
- "id": 11814,
+ "id": 12219,
"properties": {
"east": "false",
"north": "false",
@@ -10956,7 +10956,7 @@
}
},
{
- "id": 11815,
+ "id": 12220,
"properties": {
"east": "false",
"north": "false",
@@ -10966,7 +10966,7 @@
}
},
{
- "id": 11816,
+ "id": 12221,
"properties": {
"east": "false",
"north": "false",
@@ -10976,7 +10976,7 @@
}
},
{
- "id": 11817,
+ "id": 12222,
"properties": {
"east": "false",
"north": "false",
@@ -10986,7 +10986,7 @@
}
},
{
- "id": 11818,
+ "id": 12223,
"properties": {
"east": "false",
"north": "false",
@@ -10996,7 +10996,7 @@
}
},
{
- "id": 11819,
+ "id": 12224,
"properties": {
"east": "false",
"north": "false",
@@ -11006,7 +11006,7 @@
}
},
{
- "id": 11820,
+ "id": 12225,
"properties": {
"east": "false",
"north": "false",
@@ -11017,7 +11017,7 @@
},
{
"default": true,
- "id": 11821,
+ "id": 12226,
"properties": {
"east": "false",
"north": "false",
@@ -11056,7 +11056,7 @@
},
"states": [
{
- "id": 11534,
+ "id": 11907,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -11065,7 +11065,7 @@
}
},
{
- "id": 11535,
+ "id": 11908,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -11074,7 +11074,7 @@
}
},
{
- "id": 11536,
+ "id": 11909,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -11083,7 +11083,7 @@
}
},
{
- "id": 11537,
+ "id": 11910,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -11092,7 +11092,7 @@
}
},
{
- "id": 11538,
+ "id": 11911,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -11101,7 +11101,7 @@
}
},
{
- "id": 11539,
+ "id": 11912,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -11110,7 +11110,7 @@
}
},
{
- "id": 11540,
+ "id": 11913,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -11120,7 +11120,7 @@
},
{
"default": true,
- "id": 11541,
+ "id": 11914,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -11129,7 +11129,7 @@
}
},
{
- "id": 11542,
+ "id": 11915,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -11138,7 +11138,7 @@
}
},
{
- "id": 11543,
+ "id": 11916,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -11147,7 +11147,7 @@
}
},
{
- "id": 11544,
+ "id": 11917,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -11156,7 +11156,7 @@
}
},
{
- "id": 11545,
+ "id": 11918,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -11165,7 +11165,7 @@
}
},
{
- "id": 11546,
+ "id": 11919,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -11174,7 +11174,7 @@
}
},
{
- "id": 11547,
+ "id": 11920,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -11183,7 +11183,7 @@
}
},
{
- "id": 11548,
+ "id": 11921,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -11192,7 +11192,7 @@
}
},
{
- "id": 11549,
+ "id": 11922,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -11201,7 +11201,7 @@
}
},
{
- "id": 11550,
+ "id": 11923,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -11210,7 +11210,7 @@
}
},
{
- "id": 11551,
+ "id": 11924,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -11219,7 +11219,7 @@
}
},
{
- "id": 11552,
+ "id": 11925,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -11228,7 +11228,7 @@
}
},
{
- "id": 11553,
+ "id": 11926,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -11237,7 +11237,7 @@
}
},
{
- "id": 11554,
+ "id": 11927,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -11246,7 +11246,7 @@
}
},
{
- "id": 11555,
+ "id": 11928,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -11255,7 +11255,7 @@
}
},
{
- "id": 11556,
+ "id": 11929,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -11264,7 +11264,7 @@
}
},
{
- "id": 11557,
+ "id": 11930,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -11273,7 +11273,7 @@
}
},
{
- "id": 11558,
+ "id": 11931,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -11282,7 +11282,7 @@
}
},
{
- "id": 11559,
+ "id": 11932,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -11291,7 +11291,7 @@
}
},
{
- "id": 11560,
+ "id": 11933,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -11300,7 +11300,7 @@
}
},
{
- "id": 11561,
+ "id": 11934,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -11309,7 +11309,7 @@
}
},
{
- "id": 11562,
+ "id": 11935,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -11318,7 +11318,7 @@
}
},
{
- "id": 11563,
+ "id": 11936,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -11327,7 +11327,7 @@
}
},
{
- "id": 11564,
+ "id": 11937,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -11336,7 +11336,7 @@
}
},
{
- "id": 11565,
+ "id": 11938,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -11382,7 +11382,7 @@
},
"states": [
{
- "id": 5474,
+ "id": 5630,
"properties": {
"attached": "true",
"rotation": "0",
@@ -11390,7 +11390,7 @@
}
},
{
- "id": 5475,
+ "id": 5631,
"properties": {
"attached": "true",
"rotation": "0",
@@ -11398,7 +11398,7 @@
}
},
{
- "id": 5476,
+ "id": 5632,
"properties": {
"attached": "true",
"rotation": "1",
@@ -11406,7 +11406,7 @@
}
},
{
- "id": 5477,
+ "id": 5633,
"properties": {
"attached": "true",
"rotation": "1",
@@ -11414,7 +11414,7 @@
}
},
{
- "id": 5478,
+ "id": 5634,
"properties": {
"attached": "true",
"rotation": "2",
@@ -11422,7 +11422,7 @@
}
},
{
- "id": 5479,
+ "id": 5635,
"properties": {
"attached": "true",
"rotation": "2",
@@ -11430,7 +11430,7 @@
}
},
{
- "id": 5480,
+ "id": 5636,
"properties": {
"attached": "true",
"rotation": "3",
@@ -11438,7 +11438,7 @@
}
},
{
- "id": 5481,
+ "id": 5637,
"properties": {
"attached": "true",
"rotation": "3",
@@ -11446,7 +11446,7 @@
}
},
{
- "id": 5482,
+ "id": 5638,
"properties": {
"attached": "true",
"rotation": "4",
@@ -11454,7 +11454,7 @@
}
},
{
- "id": 5483,
+ "id": 5639,
"properties": {
"attached": "true",
"rotation": "4",
@@ -11462,7 +11462,7 @@
}
},
{
- "id": 5484,
+ "id": 5640,
"properties": {
"attached": "true",
"rotation": "5",
@@ -11470,7 +11470,7 @@
}
},
{
- "id": 5485,
+ "id": 5641,
"properties": {
"attached": "true",
"rotation": "5",
@@ -11478,7 +11478,7 @@
}
},
{
- "id": 5486,
+ "id": 5642,
"properties": {
"attached": "true",
"rotation": "6",
@@ -11486,7 +11486,7 @@
}
},
{
- "id": 5487,
+ "id": 5643,
"properties": {
"attached": "true",
"rotation": "6",
@@ -11494,7 +11494,7 @@
}
},
{
- "id": 5488,
+ "id": 5644,
"properties": {
"attached": "true",
"rotation": "7",
@@ -11502,7 +11502,7 @@
}
},
{
- "id": 5489,
+ "id": 5645,
"properties": {
"attached": "true",
"rotation": "7",
@@ -11510,7 +11510,7 @@
}
},
{
- "id": 5490,
+ "id": 5646,
"properties": {
"attached": "true",
"rotation": "8",
@@ -11518,7 +11518,7 @@
}
},
{
- "id": 5491,
+ "id": 5647,
"properties": {
"attached": "true",
"rotation": "8",
@@ -11526,7 +11526,7 @@
}
},
{
- "id": 5492,
+ "id": 5648,
"properties": {
"attached": "true",
"rotation": "9",
@@ -11534,7 +11534,7 @@
}
},
{
- "id": 5493,
+ "id": 5649,
"properties": {
"attached": "true",
"rotation": "9",
@@ -11542,7 +11542,7 @@
}
},
{
- "id": 5494,
+ "id": 5650,
"properties": {
"attached": "true",
"rotation": "10",
@@ -11550,7 +11550,7 @@
}
},
{
- "id": 5495,
+ "id": 5651,
"properties": {
"attached": "true",
"rotation": "10",
@@ -11558,7 +11558,7 @@
}
},
{
- "id": 5496,
+ "id": 5652,
"properties": {
"attached": "true",
"rotation": "11",
@@ -11566,7 +11566,7 @@
}
},
{
- "id": 5497,
+ "id": 5653,
"properties": {
"attached": "true",
"rotation": "11",
@@ -11574,7 +11574,7 @@
}
},
{
- "id": 5498,
+ "id": 5654,
"properties": {
"attached": "true",
"rotation": "12",
@@ -11582,7 +11582,7 @@
}
},
{
- "id": 5499,
+ "id": 5655,
"properties": {
"attached": "true",
"rotation": "12",
@@ -11590,7 +11590,7 @@
}
},
{
- "id": 5500,
+ "id": 5656,
"properties": {
"attached": "true",
"rotation": "13",
@@ -11598,7 +11598,7 @@
}
},
{
- "id": 5501,
+ "id": 5657,
"properties": {
"attached": "true",
"rotation": "13",
@@ -11606,7 +11606,7 @@
}
},
{
- "id": 5502,
+ "id": 5658,
"properties": {
"attached": "true",
"rotation": "14",
@@ -11614,7 +11614,7 @@
}
},
{
- "id": 5503,
+ "id": 5659,
"properties": {
"attached": "true",
"rotation": "14",
@@ -11622,7 +11622,7 @@
}
},
{
- "id": 5504,
+ "id": 5660,
"properties": {
"attached": "true",
"rotation": "15",
@@ -11630,7 +11630,7 @@
}
},
{
- "id": 5505,
+ "id": 5661,
"properties": {
"attached": "true",
"rotation": "15",
@@ -11638,7 +11638,7 @@
}
},
{
- "id": 5506,
+ "id": 5662,
"properties": {
"attached": "false",
"rotation": "0",
@@ -11647,7 +11647,7 @@
},
{
"default": true,
- "id": 5507,
+ "id": 5663,
"properties": {
"attached": "false",
"rotation": "0",
@@ -11655,7 +11655,7 @@
}
},
{
- "id": 5508,
+ "id": 5664,
"properties": {
"attached": "false",
"rotation": "1",
@@ -11663,7 +11663,7 @@
}
},
{
- "id": 5509,
+ "id": 5665,
"properties": {
"attached": "false",
"rotation": "1",
@@ -11671,7 +11671,7 @@
}
},
{
- "id": 5510,
+ "id": 5666,
"properties": {
"attached": "false",
"rotation": "2",
@@ -11679,7 +11679,7 @@
}
},
{
- "id": 5511,
+ "id": 5667,
"properties": {
"attached": "false",
"rotation": "2",
@@ -11687,7 +11687,7 @@
}
},
{
- "id": 5512,
+ "id": 5668,
"properties": {
"attached": "false",
"rotation": "3",
@@ -11695,7 +11695,7 @@
}
},
{
- "id": 5513,
+ "id": 5669,
"properties": {
"attached": "false",
"rotation": "3",
@@ -11703,7 +11703,7 @@
}
},
{
- "id": 5514,
+ "id": 5670,
"properties": {
"attached": "false",
"rotation": "4",
@@ -11711,7 +11711,7 @@
}
},
{
- "id": 5515,
+ "id": 5671,
"properties": {
"attached": "false",
"rotation": "4",
@@ -11719,7 +11719,7 @@
}
},
{
- "id": 5516,
+ "id": 5672,
"properties": {
"attached": "false",
"rotation": "5",
@@ -11727,7 +11727,7 @@
}
},
{
- "id": 5517,
+ "id": 5673,
"properties": {
"attached": "false",
"rotation": "5",
@@ -11735,7 +11735,7 @@
}
},
{
- "id": 5518,
+ "id": 5674,
"properties": {
"attached": "false",
"rotation": "6",
@@ -11743,7 +11743,7 @@
}
},
{
- "id": 5519,
+ "id": 5675,
"properties": {
"attached": "false",
"rotation": "6",
@@ -11751,7 +11751,7 @@
}
},
{
- "id": 5520,
+ "id": 5676,
"properties": {
"attached": "false",
"rotation": "7",
@@ -11759,7 +11759,7 @@
}
},
{
- "id": 5521,
+ "id": 5677,
"properties": {
"attached": "false",
"rotation": "7",
@@ -11767,7 +11767,7 @@
}
},
{
- "id": 5522,
+ "id": 5678,
"properties": {
"attached": "false",
"rotation": "8",
@@ -11775,7 +11775,7 @@
}
},
{
- "id": 5523,
+ "id": 5679,
"properties": {
"attached": "false",
"rotation": "8",
@@ -11783,7 +11783,7 @@
}
},
{
- "id": 5524,
+ "id": 5680,
"properties": {
"attached": "false",
"rotation": "9",
@@ -11791,7 +11791,7 @@
}
},
{
- "id": 5525,
+ "id": 5681,
"properties": {
"attached": "false",
"rotation": "9",
@@ -11799,7 +11799,7 @@
}
},
{
- "id": 5526,
+ "id": 5682,
"properties": {
"attached": "false",
"rotation": "10",
@@ -11807,7 +11807,7 @@
}
},
{
- "id": 5527,
+ "id": 5683,
"properties": {
"attached": "false",
"rotation": "10",
@@ -11815,7 +11815,7 @@
}
},
{
- "id": 5528,
+ "id": 5684,
"properties": {
"attached": "false",
"rotation": "11",
@@ -11823,7 +11823,7 @@
}
},
{
- "id": 5529,
+ "id": 5685,
"properties": {
"attached": "false",
"rotation": "11",
@@ -11831,7 +11831,7 @@
}
},
{
- "id": 5530,
+ "id": 5686,
"properties": {
"attached": "false",
"rotation": "12",
@@ -11839,7 +11839,7 @@
}
},
{
- "id": 5531,
+ "id": 5687,
"properties": {
"attached": "false",
"rotation": "12",
@@ -11847,7 +11847,7 @@
}
},
{
- "id": 5532,
+ "id": 5688,
"properties": {
"attached": "false",
"rotation": "13",
@@ -11855,7 +11855,7 @@
}
},
{
- "id": 5533,
+ "id": 5689,
"properties": {
"attached": "false",
"rotation": "13",
@@ -11863,7 +11863,7 @@
}
},
{
- "id": 5534,
+ "id": 5690,
"properties": {
"attached": "false",
"rotation": "14",
@@ -11871,7 +11871,7 @@
}
},
{
- "id": 5535,
+ "id": 5691,
"properties": {
"attached": "false",
"rotation": "14",
@@ -11879,7 +11879,7 @@
}
},
{
- "id": 5536,
+ "id": 5692,
"properties": {
"attached": "false",
"rotation": "15",
@@ -11887,7 +11887,7 @@
}
},
{
- "id": 5537,
+ "id": 5693,
"properties": {
"attached": "false",
"rotation": "15",
@@ -11904,7 +11904,7 @@
"states": [
{
"default": true,
- "id": 24
+ "id": 28
}
]
},
@@ -11926,21 +11926,21 @@
},
"states": [
{
- "id": 11216,
+ "id": 11557,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11217,
+ "id": 11558,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11218,
+ "id": 11559,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -11948,21 +11948,21 @@
},
{
"default": true,
- "id": 11219,
+ "id": 11560,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11220,
+ "id": 11561,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11221,
+ "id": 11562,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -12003,7 +12003,7 @@
},
"states": [
{
- "id": 10284,
+ "id": 10619,
"properties": {
"facing": "north",
"half": "top",
@@ -12012,7 +12012,7 @@
}
},
{
- "id": 10285,
+ "id": 10620,
"properties": {
"facing": "north",
"half": "top",
@@ -12021,7 +12021,7 @@
}
},
{
- "id": 10286,
+ "id": 10621,
"properties": {
"facing": "north",
"half": "top",
@@ -12030,7 +12030,7 @@
}
},
{
- "id": 10287,
+ "id": 10622,
"properties": {
"facing": "north",
"half": "top",
@@ -12039,7 +12039,7 @@
}
},
{
- "id": 10288,
+ "id": 10623,
"properties": {
"facing": "north",
"half": "top",
@@ -12048,7 +12048,7 @@
}
},
{
- "id": 10289,
+ "id": 10624,
"properties": {
"facing": "north",
"half": "top",
@@ -12057,7 +12057,7 @@
}
},
{
- "id": 10290,
+ "id": 10625,
"properties": {
"facing": "north",
"half": "top",
@@ -12066,7 +12066,7 @@
}
},
{
- "id": 10291,
+ "id": 10626,
"properties": {
"facing": "north",
"half": "top",
@@ -12075,7 +12075,7 @@
}
},
{
- "id": 10292,
+ "id": 10627,
"properties": {
"facing": "north",
"half": "top",
@@ -12084,7 +12084,7 @@
}
},
{
- "id": 10293,
+ "id": 10628,
"properties": {
"facing": "north",
"half": "top",
@@ -12093,7 +12093,7 @@
}
},
{
- "id": 10294,
+ "id": 10629,
"properties": {
"facing": "north",
"half": "bottom",
@@ -12103,7 +12103,7 @@
},
{
"default": true,
- "id": 10295,
+ "id": 10630,
"properties": {
"facing": "north",
"half": "bottom",
@@ -12112,7 +12112,7 @@
}
},
{
- "id": 10296,
+ "id": 10631,
"properties": {
"facing": "north",
"half": "bottom",
@@ -12121,7 +12121,7 @@
}
},
{
- "id": 10297,
+ "id": 10632,
"properties": {
"facing": "north",
"half": "bottom",
@@ -12130,7 +12130,7 @@
}
},
{
- "id": 10298,
+ "id": 10633,
"properties": {
"facing": "north",
"half": "bottom",
@@ -12139,7 +12139,7 @@
}
},
{
- "id": 10299,
+ "id": 10634,
"properties": {
"facing": "north",
"half": "bottom",
@@ -12148,7 +12148,7 @@
}
},
{
- "id": 10300,
+ "id": 10635,
"properties": {
"facing": "north",
"half": "bottom",
@@ -12157,7 +12157,7 @@
}
},
{
- "id": 10301,
+ "id": 10636,
"properties": {
"facing": "north",
"half": "bottom",
@@ -12166,7 +12166,7 @@
}
},
{
- "id": 10302,
+ "id": 10637,
"properties": {
"facing": "north",
"half": "bottom",
@@ -12175,7 +12175,7 @@
}
},
{
- "id": 10303,
+ "id": 10638,
"properties": {
"facing": "north",
"half": "bottom",
@@ -12184,7 +12184,7 @@
}
},
{
- "id": 10304,
+ "id": 10639,
"properties": {
"facing": "south",
"half": "top",
@@ -12193,7 +12193,7 @@
}
},
{
- "id": 10305,
+ "id": 10640,
"properties": {
"facing": "south",
"half": "top",
@@ -12202,7 +12202,7 @@
}
},
{
- "id": 10306,
+ "id": 10641,
"properties": {
"facing": "south",
"half": "top",
@@ -12211,7 +12211,7 @@
}
},
{
- "id": 10307,
+ "id": 10642,
"properties": {
"facing": "south",
"half": "top",
@@ -12220,7 +12220,7 @@
}
},
{
- "id": 10308,
+ "id": 10643,
"properties": {
"facing": "south",
"half": "top",
@@ -12229,7 +12229,7 @@
}
},
{
- "id": 10309,
+ "id": 10644,
"properties": {
"facing": "south",
"half": "top",
@@ -12238,7 +12238,7 @@
}
},
{
- "id": 10310,
+ "id": 10645,
"properties": {
"facing": "south",
"half": "top",
@@ -12247,7 +12247,7 @@
}
},
{
- "id": 10311,
+ "id": 10646,
"properties": {
"facing": "south",
"half": "top",
@@ -12256,7 +12256,7 @@
}
},
{
- "id": 10312,
+ "id": 10647,
"properties": {
"facing": "south",
"half": "top",
@@ -12265,7 +12265,7 @@
}
},
{
- "id": 10313,
+ "id": 10648,
"properties": {
"facing": "south",
"half": "top",
@@ -12274,7 +12274,7 @@
}
},
{
- "id": 10314,
+ "id": 10649,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12283,7 +12283,7 @@
}
},
{
- "id": 10315,
+ "id": 10650,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12292,7 +12292,7 @@
}
},
{
- "id": 10316,
+ "id": 10651,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12301,7 +12301,7 @@
}
},
{
- "id": 10317,
+ "id": 10652,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12310,7 +12310,7 @@
}
},
{
- "id": 10318,
+ "id": 10653,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12319,7 +12319,7 @@
}
},
{
- "id": 10319,
+ "id": 10654,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12328,7 +12328,7 @@
}
},
{
- "id": 10320,
+ "id": 10655,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12337,7 +12337,7 @@
}
},
{
- "id": 10321,
+ "id": 10656,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12346,7 +12346,7 @@
}
},
{
- "id": 10322,
+ "id": 10657,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12355,7 +12355,7 @@
}
},
{
- "id": 10323,
+ "id": 10658,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12364,7 +12364,7 @@
}
},
{
- "id": 10324,
+ "id": 10659,
"properties": {
"facing": "west",
"half": "top",
@@ -12373,7 +12373,7 @@
}
},
{
- "id": 10325,
+ "id": 10660,
"properties": {
"facing": "west",
"half": "top",
@@ -12382,7 +12382,7 @@
}
},
{
- "id": 10326,
+ "id": 10661,
"properties": {
"facing": "west",
"half": "top",
@@ -12391,7 +12391,7 @@
}
},
{
- "id": 10327,
+ "id": 10662,
"properties": {
"facing": "west",
"half": "top",
@@ -12400,7 +12400,7 @@
}
},
{
- "id": 10328,
+ "id": 10663,
"properties": {
"facing": "west",
"half": "top",
@@ -12409,7 +12409,7 @@
}
},
{
- "id": 10329,
+ "id": 10664,
"properties": {
"facing": "west",
"half": "top",
@@ -12418,7 +12418,7 @@
}
},
{
- "id": 10330,
+ "id": 10665,
"properties": {
"facing": "west",
"half": "top",
@@ -12427,7 +12427,7 @@
}
},
{
- "id": 10331,
+ "id": 10666,
"properties": {
"facing": "west",
"half": "top",
@@ -12436,7 +12436,7 @@
}
},
{
- "id": 10332,
+ "id": 10667,
"properties": {
"facing": "west",
"half": "top",
@@ -12445,7 +12445,7 @@
}
},
{
- "id": 10333,
+ "id": 10668,
"properties": {
"facing": "west",
"half": "top",
@@ -12454,7 +12454,7 @@
}
},
{
- "id": 10334,
+ "id": 10669,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12463,7 +12463,7 @@
}
},
{
- "id": 10335,
+ "id": 10670,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12472,7 +12472,7 @@
}
},
{
- "id": 10336,
+ "id": 10671,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12481,7 +12481,7 @@
}
},
{
- "id": 10337,
+ "id": 10672,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12490,7 +12490,7 @@
}
},
{
- "id": 10338,
+ "id": 10673,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12499,7 +12499,7 @@
}
},
{
- "id": 10339,
+ "id": 10674,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12508,7 +12508,7 @@
}
},
{
- "id": 10340,
+ "id": 10675,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12517,7 +12517,7 @@
}
},
{
- "id": 10341,
+ "id": 10676,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12526,7 +12526,7 @@
}
},
{
- "id": 10342,
+ "id": 10677,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12535,7 +12535,7 @@
}
},
{
- "id": 10343,
+ "id": 10678,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12544,7 +12544,7 @@
}
},
{
- "id": 10344,
+ "id": 10679,
"properties": {
"facing": "east",
"half": "top",
@@ -12553,7 +12553,7 @@
}
},
{
- "id": 10345,
+ "id": 10680,
"properties": {
"facing": "east",
"half": "top",
@@ -12562,7 +12562,7 @@
}
},
{
- "id": 10346,
+ "id": 10681,
"properties": {
"facing": "east",
"half": "top",
@@ -12571,7 +12571,7 @@
}
},
{
- "id": 10347,
+ "id": 10682,
"properties": {
"facing": "east",
"half": "top",
@@ -12580,7 +12580,7 @@
}
},
{
- "id": 10348,
+ "id": 10683,
"properties": {
"facing": "east",
"half": "top",
@@ -12589,7 +12589,7 @@
}
},
{
- "id": 10349,
+ "id": 10684,
"properties": {
"facing": "east",
"half": "top",
@@ -12598,7 +12598,7 @@
}
},
{
- "id": 10350,
+ "id": 10685,
"properties": {
"facing": "east",
"half": "top",
@@ -12607,7 +12607,7 @@
}
},
{
- "id": 10351,
+ "id": 10686,
"properties": {
"facing": "east",
"half": "top",
@@ -12616,7 +12616,7 @@
}
},
{
- "id": 10352,
+ "id": 10687,
"properties": {
"facing": "east",
"half": "top",
@@ -12625,7 +12625,7 @@
}
},
{
- "id": 10353,
+ "id": 10688,
"properties": {
"facing": "east",
"half": "top",
@@ -12634,7 +12634,7 @@
}
},
{
- "id": 10354,
+ "id": 10689,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12643,7 +12643,7 @@
}
},
{
- "id": 10355,
+ "id": 10690,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12652,7 +12652,7 @@
}
},
{
- "id": 10356,
+ "id": 10691,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12661,7 +12661,7 @@
}
},
{
- "id": 10357,
+ "id": 10692,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12670,7 +12670,7 @@
}
},
{
- "id": 10358,
+ "id": 10693,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12679,7 +12679,7 @@
}
},
{
- "id": 10359,
+ "id": 10694,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12688,7 +12688,7 @@
}
},
{
- "id": 10360,
+ "id": 10695,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12697,7 +12697,7 @@
}
},
{
- "id": 10361,
+ "id": 10696,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12706,7 +12706,7 @@
}
},
{
- "id": 10362,
+ "id": 10697,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12715,7 +12715,7 @@
}
},
{
- "id": 10363,
+ "id": 10698,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12733,7 +12733,7 @@
"states": [
{
"default": true,
- "id": 23
+ "id": 27
}
]
},
@@ -12751,14 +12751,14 @@
},
"states": [
{
- "id": 5732,
+ "id": 5898,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5733,
+ "id": 5899,
"properties": {
"powered": "false"
}
@@ -12773,7 +12773,7 @@
"states": [
{
"default": true,
- "id": 12944
+ "id": 13413
}
]
},
@@ -12809,7 +12809,7 @@
},
"states": [
{
- "id": 4558,
+ "id": 4642,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -12817,217 +12817,217 @@
},
{
"default": true,
- "id": 4559,
+ "id": 4643,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 4560,
+ "id": 4644,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 4561,
+ "id": 4645,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 4562,
+ "id": 4646,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 4563,
+ "id": 4647,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 4564,
+ "id": 4648,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 4565,
+ "id": 4649,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 4566,
+ "id": 4650,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 4567,
+ "id": 4651,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 4568,
+ "id": 4652,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 4569,
+ "id": 4653,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 4570,
+ "id": 4654,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 4571,
+ "id": 4655,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 4572,
+ "id": 4656,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 4573,
+ "id": 4657,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 4574,
+ "id": 4658,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 4575,
+ "id": 4659,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 4576,
+ "id": 4660,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 4577,
+ "id": 4661,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 4578,
+ "id": 4662,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 4579,
+ "id": 4663,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 4580,
+ "id": 4664,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 4581,
+ "id": 4665,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 4582,
+ "id": 4666,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 4583,
+ "id": 4667,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 4584,
+ "id": 4668,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 4585,
+ "id": 4669,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 4586,
+ "id": 4670,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 4587,
+ "id": 4671,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 4588,
+ "id": 4672,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 4589,
+ "id": 4673,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -13053,21 +13053,21 @@
},
"states": [
{
- "id": 11210,
+ "id": 11551,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11211,
+ "id": 11552,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11212,
+ "id": 11553,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -13075,21 +13075,21 @@
},
{
"default": true,
- "id": 11213,
+ "id": 11554,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11214,
+ "id": 11555,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11215,
+ "id": 11556,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -13130,7 +13130,7 @@
},
"states": [
{
- "id": 10204,
+ "id": 10539,
"properties": {
"facing": "north",
"half": "top",
@@ -13139,7 +13139,7 @@
}
},
{
- "id": 10205,
+ "id": 10540,
"properties": {
"facing": "north",
"half": "top",
@@ -13148,7 +13148,7 @@
}
},
{
- "id": 10206,
+ "id": 10541,
"properties": {
"facing": "north",
"half": "top",
@@ -13157,7 +13157,7 @@
}
},
{
- "id": 10207,
+ "id": 10542,
"properties": {
"facing": "north",
"half": "top",
@@ -13166,7 +13166,7 @@
}
},
{
- "id": 10208,
+ "id": 10543,
"properties": {
"facing": "north",
"half": "top",
@@ -13175,7 +13175,7 @@
}
},
{
- "id": 10209,
+ "id": 10544,
"properties": {
"facing": "north",
"half": "top",
@@ -13184,7 +13184,7 @@
}
},
{
- "id": 10210,
+ "id": 10545,
"properties": {
"facing": "north",
"half": "top",
@@ -13193,7 +13193,7 @@
}
},
{
- "id": 10211,
+ "id": 10546,
"properties": {
"facing": "north",
"half": "top",
@@ -13202,7 +13202,7 @@
}
},
{
- "id": 10212,
+ "id": 10547,
"properties": {
"facing": "north",
"half": "top",
@@ -13211,7 +13211,7 @@
}
},
{
- "id": 10213,
+ "id": 10548,
"properties": {
"facing": "north",
"half": "top",
@@ -13220,7 +13220,7 @@
}
},
{
- "id": 10214,
+ "id": 10549,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13230,7 +13230,7 @@
},
{
"default": true,
- "id": 10215,
+ "id": 10550,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13239,7 +13239,7 @@
}
},
{
- "id": 10216,
+ "id": 10551,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13248,7 +13248,7 @@
}
},
{
- "id": 10217,
+ "id": 10552,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13257,7 +13257,7 @@
}
},
{
- "id": 10218,
+ "id": 10553,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13266,7 +13266,7 @@
}
},
{
- "id": 10219,
+ "id": 10554,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13275,7 +13275,7 @@
}
},
{
- "id": 10220,
+ "id": 10555,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13284,7 +13284,7 @@
}
},
{
- "id": 10221,
+ "id": 10556,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13293,7 +13293,7 @@
}
},
{
- "id": 10222,
+ "id": 10557,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13302,7 +13302,7 @@
}
},
{
- "id": 10223,
+ "id": 10558,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13311,7 +13311,7 @@
}
},
{
- "id": 10224,
+ "id": 10559,
"properties": {
"facing": "south",
"half": "top",
@@ -13320,7 +13320,7 @@
}
},
{
- "id": 10225,
+ "id": 10560,
"properties": {
"facing": "south",
"half": "top",
@@ -13329,7 +13329,7 @@
}
},
{
- "id": 10226,
+ "id": 10561,
"properties": {
"facing": "south",
"half": "top",
@@ -13338,7 +13338,7 @@
}
},
{
- "id": 10227,
+ "id": 10562,
"properties": {
"facing": "south",
"half": "top",
@@ -13347,7 +13347,7 @@
}
},
{
- "id": 10228,
+ "id": 10563,
"properties": {
"facing": "south",
"half": "top",
@@ -13356,7 +13356,7 @@
}
},
{
- "id": 10229,
+ "id": 10564,
"properties": {
"facing": "south",
"half": "top",
@@ -13365,7 +13365,7 @@
}
},
{
- "id": 10230,
+ "id": 10565,
"properties": {
"facing": "south",
"half": "top",
@@ -13374,7 +13374,7 @@
}
},
{
- "id": 10231,
+ "id": 10566,
"properties": {
"facing": "south",
"half": "top",
@@ -13383,7 +13383,7 @@
}
},
{
- "id": 10232,
+ "id": 10567,
"properties": {
"facing": "south",
"half": "top",
@@ -13392,7 +13392,7 @@
}
},
{
- "id": 10233,
+ "id": 10568,
"properties": {
"facing": "south",
"half": "top",
@@ -13401,7 +13401,7 @@
}
},
{
- "id": 10234,
+ "id": 10569,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13410,7 +13410,7 @@
}
},
{
- "id": 10235,
+ "id": 10570,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13419,7 +13419,7 @@
}
},
{
- "id": 10236,
+ "id": 10571,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13428,7 +13428,7 @@
}
},
{
- "id": 10237,
+ "id": 10572,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13437,7 +13437,7 @@
}
},
{
- "id": 10238,
+ "id": 10573,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13446,7 +13446,7 @@
}
},
{
- "id": 10239,
+ "id": 10574,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13455,7 +13455,7 @@
}
},
{
- "id": 10240,
+ "id": 10575,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13464,7 +13464,7 @@
}
},
{
- "id": 10241,
+ "id": 10576,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13473,7 +13473,7 @@
}
},
{
- "id": 10242,
+ "id": 10577,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13482,7 +13482,7 @@
}
},
{
- "id": 10243,
+ "id": 10578,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13491,7 +13491,7 @@
}
},
{
- "id": 10244,
+ "id": 10579,
"properties": {
"facing": "west",
"half": "top",
@@ -13500,7 +13500,7 @@
}
},
{
- "id": 10245,
+ "id": 10580,
"properties": {
"facing": "west",
"half": "top",
@@ -13509,7 +13509,7 @@
}
},
{
- "id": 10246,
+ "id": 10581,
"properties": {
"facing": "west",
"half": "top",
@@ -13518,7 +13518,7 @@
}
},
{
- "id": 10247,
+ "id": 10582,
"properties": {
"facing": "west",
"half": "top",
@@ -13527,7 +13527,7 @@
}
},
{
- "id": 10248,
+ "id": 10583,
"properties": {
"facing": "west",
"half": "top",
@@ -13536,7 +13536,7 @@
}
},
{
- "id": 10249,
+ "id": 10584,
"properties": {
"facing": "west",
"half": "top",
@@ -13545,7 +13545,7 @@
}
},
{
- "id": 10250,
+ "id": 10585,
"properties": {
"facing": "west",
"half": "top",
@@ -13554,7 +13554,7 @@
}
},
{
- "id": 10251,
+ "id": 10586,
"properties": {
"facing": "west",
"half": "top",
@@ -13563,7 +13563,7 @@
}
},
{
- "id": 10252,
+ "id": 10587,
"properties": {
"facing": "west",
"half": "top",
@@ -13572,7 +13572,7 @@
}
},
{
- "id": 10253,
+ "id": 10588,
"properties": {
"facing": "west",
"half": "top",
@@ -13581,7 +13581,7 @@
}
},
{
- "id": 10254,
+ "id": 10589,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13590,7 +13590,7 @@
}
},
{
- "id": 10255,
+ "id": 10590,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13599,7 +13599,7 @@
}
},
{
- "id": 10256,
+ "id": 10591,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13608,7 +13608,7 @@
}
},
{
- "id": 10257,
+ "id": 10592,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13617,7 +13617,7 @@
}
},
{
- "id": 10258,
+ "id": 10593,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13626,7 +13626,7 @@
}
},
{
- "id": 10259,
+ "id": 10594,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13635,7 +13635,7 @@
}
},
{
- "id": 10260,
+ "id": 10595,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13644,7 +13644,7 @@
}
},
{
- "id": 10261,
+ "id": 10596,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13653,7 +13653,7 @@
}
},
{
- "id": 10262,
+ "id": 10597,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13662,7 +13662,7 @@
}
},
{
- "id": 10263,
+ "id": 10598,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13671,7 +13671,7 @@
}
},
{
- "id": 10264,
+ "id": 10599,
"properties": {
"facing": "east",
"half": "top",
@@ -13680,7 +13680,7 @@
}
},
{
- "id": 10265,
+ "id": 10600,
"properties": {
"facing": "east",
"half": "top",
@@ -13689,7 +13689,7 @@
}
},
{
- "id": 10266,
+ "id": 10601,
"properties": {
"facing": "east",
"half": "top",
@@ -13698,7 +13698,7 @@
}
},
{
- "id": 10267,
+ "id": 10602,
"properties": {
"facing": "east",
"half": "top",
@@ -13707,7 +13707,7 @@
}
},
{
- "id": 10268,
+ "id": 10603,
"properties": {
"facing": "east",
"half": "top",
@@ -13716,7 +13716,7 @@
}
},
{
- "id": 10269,
+ "id": 10604,
"properties": {
"facing": "east",
"half": "top",
@@ -13725,7 +13725,7 @@
}
},
{
- "id": 10270,
+ "id": 10605,
"properties": {
"facing": "east",
"half": "top",
@@ -13734,7 +13734,7 @@
}
},
{
- "id": 10271,
+ "id": 10606,
"properties": {
"facing": "east",
"half": "top",
@@ -13743,7 +13743,7 @@
}
},
{
- "id": 10272,
+ "id": 10607,
"properties": {
"facing": "east",
"half": "top",
@@ -13752,7 +13752,7 @@
}
},
{
- "id": 10273,
+ "id": 10608,
"properties": {
"facing": "east",
"half": "top",
@@ -13761,7 +13761,7 @@
}
},
{
- "id": 10274,
+ "id": 10609,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13770,7 +13770,7 @@
}
},
{
- "id": 10275,
+ "id": 10610,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13779,7 +13779,7 @@
}
},
{
- "id": 10276,
+ "id": 10611,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13788,7 +13788,7 @@
}
},
{
- "id": 10277,
+ "id": 10612,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13797,7 +13797,7 @@
}
},
{
- "id": 10278,
+ "id": 10613,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13806,7 +13806,7 @@
}
},
{
- "id": 10279,
+ "id": 10614,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13815,7 +13815,7 @@
}
},
{
- "id": 10280,
+ "id": 10615,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13824,7 +13824,7 @@
}
},
{
- "id": 10281,
+ "id": 10616,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13833,7 +13833,7 @@
}
},
{
- "id": 10282,
+ "id": 10617,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13842,7 +13842,7 @@
}
},
{
- "id": 10283,
+ "id": 10618,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13884,7 +13884,7 @@
},
"states": [
{
- "id": 6473,
+ "id": 6703,
"properties": {
"facing": "north",
"half": "top",
@@ -13894,7 +13894,7 @@
}
},
{
- "id": 6474,
+ "id": 6704,
"properties": {
"facing": "north",
"half": "top",
@@ -13904,7 +13904,7 @@
}
},
{
- "id": 6475,
+ "id": 6705,
"properties": {
"facing": "north",
"half": "top",
@@ -13914,7 +13914,7 @@
}
},
{
- "id": 6476,
+ "id": 6706,
"properties": {
"facing": "north",
"half": "top",
@@ -13924,7 +13924,7 @@
}
},
{
- "id": 6477,
+ "id": 6707,
"properties": {
"facing": "north",
"half": "top",
@@ -13934,7 +13934,7 @@
}
},
{
- "id": 6478,
+ "id": 6708,
"properties": {
"facing": "north",
"half": "top",
@@ -13944,7 +13944,7 @@
}
},
{
- "id": 6479,
+ "id": 6709,
"properties": {
"facing": "north",
"half": "top",
@@ -13954,7 +13954,7 @@
}
},
{
- "id": 6480,
+ "id": 6710,
"properties": {
"facing": "north",
"half": "top",
@@ -13964,7 +13964,7 @@
}
},
{
- "id": 6481,
+ "id": 6711,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13974,7 +13974,7 @@
}
},
{
- "id": 6482,
+ "id": 6712,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13984,7 +13984,7 @@
}
},
{
- "id": 6483,
+ "id": 6713,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13994,7 +13994,7 @@
}
},
{
- "id": 6484,
+ "id": 6714,
"properties": {
"facing": "north",
"half": "bottom",
@@ -14004,7 +14004,7 @@
}
},
{
- "id": 6485,
+ "id": 6715,
"properties": {
"facing": "north",
"half": "bottom",
@@ -14014,7 +14014,7 @@
}
},
{
- "id": 6486,
+ "id": 6716,
"properties": {
"facing": "north",
"half": "bottom",
@@ -14024,7 +14024,7 @@
}
},
{
- "id": 6487,
+ "id": 6717,
"properties": {
"facing": "north",
"half": "bottom",
@@ -14035,7 +14035,7 @@
},
{
"default": true,
- "id": 6488,
+ "id": 6718,
"properties": {
"facing": "north",
"half": "bottom",
@@ -14045,7 +14045,7 @@
}
},
{
- "id": 6489,
+ "id": 6719,
"properties": {
"facing": "south",
"half": "top",
@@ -14055,7 +14055,7 @@
}
},
{
- "id": 6490,
+ "id": 6720,
"properties": {
"facing": "south",
"half": "top",
@@ -14065,7 +14065,7 @@
}
},
{
- "id": 6491,
+ "id": 6721,
"properties": {
"facing": "south",
"half": "top",
@@ -14075,7 +14075,7 @@
}
},
{
- "id": 6492,
+ "id": 6722,
"properties": {
"facing": "south",
"half": "top",
@@ -14085,7 +14085,7 @@
}
},
{
- "id": 6493,
+ "id": 6723,
"properties": {
"facing": "south",
"half": "top",
@@ -14095,7 +14095,7 @@
}
},
{
- "id": 6494,
+ "id": 6724,
"properties": {
"facing": "south",
"half": "top",
@@ -14105,7 +14105,7 @@
}
},
{
- "id": 6495,
+ "id": 6725,
"properties": {
"facing": "south",
"half": "top",
@@ -14115,7 +14115,7 @@
}
},
{
- "id": 6496,
+ "id": 6726,
"properties": {
"facing": "south",
"half": "top",
@@ -14125,7 +14125,7 @@
}
},
{
- "id": 6497,
+ "id": 6727,
"properties": {
"facing": "south",
"half": "bottom",
@@ -14135,7 +14135,7 @@
}
},
{
- "id": 6498,
+ "id": 6728,
"properties": {
"facing": "south",
"half": "bottom",
@@ -14145,7 +14145,7 @@
}
},
{
- "id": 6499,
+ "id": 6729,
"properties": {
"facing": "south",
"half": "bottom",
@@ -14155,7 +14155,7 @@
}
},
{
- "id": 6500,
+ "id": 6730,
"properties": {
"facing": "south",
"half": "bottom",
@@ -14165,7 +14165,7 @@
}
},
{
- "id": 6501,
+ "id": 6731,
"properties": {
"facing": "south",
"half": "bottom",
@@ -14175,7 +14175,7 @@
}
},
{
- "id": 6502,
+ "id": 6732,
"properties": {
"facing": "south",
"half": "bottom",
@@ -14185,7 +14185,7 @@
}
},
{
- "id": 6503,
+ "id": 6733,
"properties": {
"facing": "south",
"half": "bottom",
@@ -14195,7 +14195,7 @@
}
},
{
- "id": 6504,
+ "id": 6734,
"properties": {
"facing": "south",
"half": "bottom",
@@ -14205,7 +14205,7 @@
}
},
{
- "id": 6505,
+ "id": 6735,
"properties": {
"facing": "west",
"half": "top",
@@ -14215,7 +14215,7 @@
}
},
{
- "id": 6506,
+ "id": 6736,
"properties": {
"facing": "west",
"half": "top",
@@ -14225,7 +14225,7 @@
}
},
{
- "id": 6507,
+ "id": 6737,
"properties": {
"facing": "west",
"half": "top",
@@ -14235,7 +14235,7 @@
}
},
{
- "id": 6508,
+ "id": 6738,
"properties": {
"facing": "west",
"half": "top",
@@ -14245,7 +14245,7 @@
}
},
{
- "id": 6509,
+ "id": 6739,
"properties": {
"facing": "west",
"half": "top",
@@ -14255,7 +14255,7 @@
}
},
{
- "id": 6510,
+ "id": 6740,
"properties": {
"facing": "west",
"half": "top",
@@ -14265,7 +14265,7 @@
}
},
{
- "id": 6511,
+ "id": 6741,
"properties": {
"facing": "west",
"half": "top",
@@ -14275,7 +14275,7 @@
}
},
{
- "id": 6512,
+ "id": 6742,
"properties": {
"facing": "west",
"half": "top",
@@ -14285,7 +14285,7 @@
}
},
{
- "id": 6513,
+ "id": 6743,
"properties": {
"facing": "west",
"half": "bottom",
@@ -14295,7 +14295,7 @@
}
},
{
- "id": 6514,
+ "id": 6744,
"properties": {
"facing": "west",
"half": "bottom",
@@ -14305,7 +14305,7 @@
}
},
{
- "id": 6515,
+ "id": 6745,
"properties": {
"facing": "west",
"half": "bottom",
@@ -14315,7 +14315,7 @@
}
},
{
- "id": 6516,
+ "id": 6746,
"properties": {
"facing": "west",
"half": "bottom",
@@ -14325,7 +14325,7 @@
}
},
{
- "id": 6517,
+ "id": 6747,
"properties": {
"facing": "west",
"half": "bottom",
@@ -14335,7 +14335,7 @@
}
},
{
- "id": 6518,
+ "id": 6748,
"properties": {
"facing": "west",
"half": "bottom",
@@ -14345,7 +14345,7 @@
}
},
{
- "id": 6519,
+ "id": 6749,
"properties": {
"facing": "west",
"half": "bottom",
@@ -14355,7 +14355,7 @@
}
},
{
- "id": 6520,
+ "id": 6750,
"properties": {
"facing": "west",
"half": "bottom",
@@ -14365,7 +14365,7 @@
}
},
{
- "id": 6521,
+ "id": 6751,
"properties": {
"facing": "east",
"half": "top",
@@ -14375,7 +14375,7 @@
}
},
{
- "id": 6522,
+ "id": 6752,
"properties": {
"facing": "east",
"half": "top",
@@ -14385,7 +14385,7 @@
}
},
{
- "id": 6523,
+ "id": 6753,
"properties": {
"facing": "east",
"half": "top",
@@ -14395,7 +14395,7 @@
}
},
{
- "id": 6524,
+ "id": 6754,
"properties": {
"facing": "east",
"half": "top",
@@ -14405,7 +14405,7 @@
}
},
{
- "id": 6525,
+ "id": 6755,
"properties": {
"facing": "east",
"half": "top",
@@ -14415,7 +14415,7 @@
}
},
{
- "id": 6526,
+ "id": 6756,
"properties": {
"facing": "east",
"half": "top",
@@ -14425,7 +14425,7 @@
}
},
{
- "id": 6527,
+ "id": 6757,
"properties": {
"facing": "east",
"half": "top",
@@ -14435,7 +14435,7 @@
}
},
{
- "id": 6528,
+ "id": 6758,
"properties": {
"facing": "east",
"half": "top",
@@ -14445,7 +14445,7 @@
}
},
{
- "id": 6529,
+ "id": 6759,
"properties": {
"facing": "east",
"half": "bottom",
@@ -14455,7 +14455,7 @@
}
},
{
- "id": 6530,
+ "id": 6760,
"properties": {
"facing": "east",
"half": "bottom",
@@ -14465,7 +14465,7 @@
}
},
{
- "id": 6531,
+ "id": 6761,
"properties": {
"facing": "east",
"half": "bottom",
@@ -14475,7 +14475,7 @@
}
},
{
- "id": 6532,
+ "id": 6762,
"properties": {
"facing": "east",
"half": "bottom",
@@ -14485,7 +14485,7 @@
}
},
{
- "id": 6533,
+ "id": 6763,
"properties": {
"facing": "east",
"half": "bottom",
@@ -14495,7 +14495,7 @@
}
},
{
- "id": 6534,
+ "id": 6764,
"properties": {
"facing": "east",
"half": "bottom",
@@ -14505,7 +14505,7 @@
}
},
{
- "id": 6535,
+ "id": 6765,
"properties": {
"facing": "east",
"half": "bottom",
@@ -14515,7 +14515,7 @@
}
},
{
- "id": 6536,
+ "id": 6766,
"properties": {
"facing": "east",
"half": "bottom",
@@ -14546,7 +14546,7 @@
},
"states": [
{
- "id": 5618,
+ "id": 5782,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -14554,49 +14554,49 @@
},
{
"default": true,
- "id": 5619,
+ "id": 5783,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5620,
+ "id": 5784,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5621,
+ "id": 5785,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5622,
+ "id": 5786,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5623,
+ "id": 5787,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5624,
+ "id": 5788,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5625,
+ "id": 5789,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -14624,7 +14624,7 @@
},
"states": [
{
- "id": 4826,
+ "id": 4918,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -14632,49 +14632,49 @@
},
{
"default": true,
- "id": 4827,
+ "id": 4919,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4828,
+ "id": 4920,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4829,
+ "id": 4921,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4830,
+ "id": 4922,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4831,
+ "id": 4923,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4832,
+ "id": 4924,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4833,
+ "id": 4925,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -14703,7 +14703,7 @@
},
"states": [
{
- "id": 18408,
+ "id": 18877,
"properties": {
"facing": "north",
"open": "true"
@@ -14711,77 +14711,77 @@
},
{
"default": true,
- "id": 18409,
+ "id": 18878,
"properties": {
"facing": "north",
"open": "false"
}
},
{
- "id": 18410,
+ "id": 18879,
"properties": {
"facing": "east",
"open": "true"
}
},
{
- "id": 18411,
+ "id": 18880,
"properties": {
"facing": "east",
"open": "false"
}
},
{
- "id": 18412,
+ "id": 18881,
"properties": {
"facing": "south",
"open": "true"
}
},
{
- "id": 18413,
+ "id": 18882,
"properties": {
"facing": "south",
"open": "false"
}
},
{
- "id": 18414,
+ "id": 18883,
"properties": {
"facing": "west",
"open": "true"
}
},
{
- "id": 18415,
+ "id": 18884,
"properties": {
"facing": "west",
"open": "false"
}
},
{
- "id": 18416,
+ "id": 18885,
"properties": {
"facing": "up",
"open": "true"
}
},
{
- "id": 18417,
+ "id": 18886,
"properties": {
"facing": "up",
"open": "false"
}
},
{
- "id": 18418,
+ "id": 18887,
"properties": {
"facing": "down",
"open": "true"
}
},
{
- "id": 18419,
+ "id": 18888,
"properties": {
"facing": "down",
"open": "false"
@@ -14802,14 +14802,14 @@
},
"states": [
{
- "id": 10365,
+ "id": 10700,
"properties": {
"waterlogged": "true"
}
},
{
"default": true,
- "id": 10366,
+ "id": 10701,
"properties": {
"waterlogged": "false"
}
@@ -14830,20 +14830,20 @@
},
"states": [
{
- "id": 5852,
+ "id": 6018,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 5853,
+ "id": 6019,
"properties": {
"axis": "y"
}
},
{
- "id": 5854,
+ "id": 6020,
"properties": {
"axis": "z"
}
@@ -14858,7 +14858,7 @@
"states": [
{
"default": true,
- "id": 7918
+ "id": 8148
}
]
},
@@ -14870,7 +14870,7 @@
"states": [
{
"default": true,
- "id": 79
+ "id": 85
}
]
},
@@ -14898,168 +14898,168 @@
"states": [
{
"default": true,
- "id": 19397,
+ "id": 19866,
"properties": {
"facing": "north",
"honey_level": "0"
}
},
{
- "id": 19398,
+ "id": 19867,
"properties": {
"facing": "north",
"honey_level": "1"
}
},
{
- "id": 19399,
+ "id": 19868,
"properties": {
"facing": "north",
"honey_level": "2"
}
},
{
- "id": 19400,
+ "id": 19869,
"properties": {
"facing": "north",
"honey_level": "3"
}
},
{
- "id": 19401,
+ "id": 19870,
"properties": {
"facing": "north",
"honey_level": "4"
}
},
{
- "id": 19402,
+ "id": 19871,
"properties": {
"facing": "north",
"honey_level": "5"
}
},
{
- "id": 19403,
+ "id": 19872,
"properties": {
"facing": "south",
"honey_level": "0"
}
},
{
- "id": 19404,
+ "id": 19873,
"properties": {
"facing": "south",
"honey_level": "1"
}
},
{
- "id": 19405,
+ "id": 19874,
"properties": {
"facing": "south",
"honey_level": "2"
}
},
{
- "id": 19406,
+ "id": 19875,
"properties": {
"facing": "south",
"honey_level": "3"
}
},
{
- "id": 19407,
+ "id": 19876,
"properties": {
"facing": "south",
"honey_level": "4"
}
},
{
- "id": 19408,
+ "id": 19877,
"properties": {
"facing": "south",
"honey_level": "5"
}
},
{
- "id": 19409,
+ "id": 19878,
"properties": {
"facing": "west",
"honey_level": "0"
}
},
{
- "id": 19410,
+ "id": 19879,
"properties": {
"facing": "west",
"honey_level": "1"
}
},
{
- "id": 19411,
+ "id": 19880,
"properties": {
"facing": "west",
"honey_level": "2"
}
},
{
- "id": 19412,
+ "id": 19881,
"properties": {
"facing": "west",
"honey_level": "3"
}
},
{
- "id": 19413,
+ "id": 19882,
"properties": {
"facing": "west",
"honey_level": "4"
}
},
{
- "id": 19414,
+ "id": 19883,
"properties": {
"facing": "west",
"honey_level": "5"
}
},
{
- "id": 19415,
+ "id": 19884,
"properties": {
"facing": "east",
"honey_level": "0"
}
},
{
- "id": 19416,
+ "id": 19885,
"properties": {
"facing": "east",
"honey_level": "1"
}
},
{
- "id": 19417,
+ "id": 19886,
"properties": {
"facing": "east",
"honey_level": "2"
}
},
{
- "id": 19418,
+ "id": 19887,
"properties": {
"facing": "east",
"honey_level": "3"
}
},
{
- "id": 19419,
+ "id": 19888,
"properties": {
"facing": "east",
"honey_level": "4"
}
},
{
- "id": 19420,
+ "id": 19889,
"properties": {
"facing": "east",
"honey_level": "5"
@@ -15091,168 +15091,168 @@
"states": [
{
"default": true,
- "id": 19421,
+ "id": 19890,
"properties": {
"facing": "north",
"honey_level": "0"
}
},
{
- "id": 19422,
+ "id": 19891,
"properties": {
"facing": "north",
"honey_level": "1"
}
},
{
- "id": 19423,
+ "id": 19892,
"properties": {
"facing": "north",
"honey_level": "2"
}
},
{
- "id": 19424,
+ "id": 19893,
"properties": {
"facing": "north",
"honey_level": "3"
}
},
{
- "id": 19425,
+ "id": 19894,
"properties": {
"facing": "north",
"honey_level": "4"
}
},
{
- "id": 19426,
+ "id": 19895,
"properties": {
"facing": "north",
"honey_level": "5"
}
},
{
- "id": 19427,
+ "id": 19896,
"properties": {
"facing": "south",
"honey_level": "0"
}
},
{
- "id": 19428,
+ "id": 19897,
"properties": {
"facing": "south",
"honey_level": "1"
}
},
{
- "id": 19429,
+ "id": 19898,
"properties": {
"facing": "south",
"honey_level": "2"
}
},
{
- "id": 19430,
+ "id": 19899,
"properties": {
"facing": "south",
"honey_level": "3"
}
},
{
- "id": 19431,
+ "id": 19900,
"properties": {
"facing": "south",
"honey_level": "4"
}
},
{
- "id": 19432,
+ "id": 19901,
"properties": {
"facing": "south",
"honey_level": "5"
}
},
{
- "id": 19433,
+ "id": 19902,
"properties": {
"facing": "west",
"honey_level": "0"
}
},
{
- "id": 19434,
+ "id": 19903,
"properties": {
"facing": "west",
"honey_level": "1"
}
},
{
- "id": 19435,
+ "id": 19904,
"properties": {
"facing": "west",
"honey_level": "2"
}
},
{
- "id": 19436,
+ "id": 19905,
"properties": {
"facing": "west",
"honey_level": "3"
}
},
{
- "id": 19437,
+ "id": 19906,
"properties": {
"facing": "west",
"honey_level": "4"
}
},
{
- "id": 19438,
+ "id": 19907,
"properties": {
"facing": "west",
"honey_level": "5"
}
},
{
- "id": 19439,
+ "id": 19908,
"properties": {
"facing": "east",
"honey_level": "0"
}
},
{
- "id": 19440,
+ "id": 19909,
"properties": {
"facing": "east",
"honey_level": "1"
}
},
{
- "id": 19441,
+ "id": 19910,
"properties": {
"facing": "east",
"honey_level": "2"
}
},
{
- "id": 19442,
+ "id": 19911,
"properties": {
"facing": "east",
"honey_level": "3"
}
},
{
- "id": 19443,
+ "id": 19912,
"properties": {
"facing": "east",
"honey_level": "4"
}
},
{
- "id": 19444,
+ "id": 19913,
"properties": {
"facing": "east",
"honey_level": "5"
@@ -15276,25 +15276,25 @@
"states": [
{
"default": true,
- "id": 12509,
+ "id": 12978,
"properties": {
"age": "0"
}
},
{
- "id": 12510,
+ "id": 12979,
"properties": {
"age": "1"
}
},
{
- "id": 12511,
+ "id": 12980,
"properties": {
"age": "2"
}
},
{
- "id": 12512,
+ "id": 12981,
"properties": {
"age": "3"
}
@@ -15326,7 +15326,7 @@
},
"states": [
{
- "id": 18471,
+ "id": 18940,
"properties": {
"attachment": "floor",
"facing": "north",
@@ -15335,7 +15335,7 @@
},
{
"default": true,
- "id": 18472,
+ "id": 18941,
"properties": {
"attachment": "floor",
"facing": "north",
@@ -15343,7 +15343,7 @@
}
},
{
- "id": 18473,
+ "id": 18942,
"properties": {
"attachment": "floor",
"facing": "south",
@@ -15351,7 +15351,7 @@
}
},
{
- "id": 18474,
+ "id": 18943,
"properties": {
"attachment": "floor",
"facing": "south",
@@ -15359,7 +15359,7 @@
}
},
{
- "id": 18475,
+ "id": 18944,
"properties": {
"attachment": "floor",
"facing": "west",
@@ -15367,7 +15367,7 @@
}
},
{
- "id": 18476,
+ "id": 18945,
"properties": {
"attachment": "floor",
"facing": "west",
@@ -15375,7 +15375,7 @@
}
},
{
- "id": 18477,
+ "id": 18946,
"properties": {
"attachment": "floor",
"facing": "east",
@@ -15383,7 +15383,7 @@
}
},
{
- "id": 18478,
+ "id": 18947,
"properties": {
"attachment": "floor",
"facing": "east",
@@ -15391,7 +15391,7 @@
}
},
{
- "id": 18479,
+ "id": 18948,
"properties": {
"attachment": "ceiling",
"facing": "north",
@@ -15399,7 +15399,7 @@
}
},
{
- "id": 18480,
+ "id": 18949,
"properties": {
"attachment": "ceiling",
"facing": "north",
@@ -15407,7 +15407,7 @@
}
},
{
- "id": 18481,
+ "id": 18950,
"properties": {
"attachment": "ceiling",
"facing": "south",
@@ -15415,7 +15415,7 @@
}
},
{
- "id": 18482,
+ "id": 18951,
"properties": {
"attachment": "ceiling",
"facing": "south",
@@ -15423,7 +15423,7 @@
}
},
{
- "id": 18483,
+ "id": 18952,
"properties": {
"attachment": "ceiling",
"facing": "west",
@@ -15431,7 +15431,7 @@
}
},
{
- "id": 18484,
+ "id": 18953,
"properties": {
"attachment": "ceiling",
"facing": "west",
@@ -15439,7 +15439,7 @@
}
},
{
- "id": 18485,
+ "id": 18954,
"properties": {
"attachment": "ceiling",
"facing": "east",
@@ -15447,7 +15447,7 @@
}
},
{
- "id": 18486,
+ "id": 18955,
"properties": {
"attachment": "ceiling",
"facing": "east",
@@ -15455,7 +15455,7 @@
}
},
{
- "id": 18487,
+ "id": 18956,
"properties": {
"attachment": "single_wall",
"facing": "north",
@@ -15463,7 +15463,7 @@
}
},
{
- "id": 18488,
+ "id": 18957,
"properties": {
"attachment": "single_wall",
"facing": "north",
@@ -15471,7 +15471,7 @@
}
},
{
- "id": 18489,
+ "id": 18958,
"properties": {
"attachment": "single_wall",
"facing": "south",
@@ -15479,7 +15479,7 @@
}
},
{
- "id": 18490,
+ "id": 18959,
"properties": {
"attachment": "single_wall",
"facing": "south",
@@ -15487,7 +15487,7 @@
}
},
{
- "id": 18491,
+ "id": 18960,
"properties": {
"attachment": "single_wall",
"facing": "west",
@@ -15495,7 +15495,7 @@
}
},
{
- "id": 18492,
+ "id": 18961,
"properties": {
"attachment": "single_wall",
"facing": "west",
@@ -15503,7 +15503,7 @@
}
},
{
- "id": 18493,
+ "id": 18962,
"properties": {
"attachment": "single_wall",
"facing": "east",
@@ -15511,7 +15511,7 @@
}
},
{
- "id": 18494,
+ "id": 18963,
"properties": {
"attachment": "single_wall",
"facing": "east",
@@ -15519,7 +15519,7 @@
}
},
{
- "id": 18495,
+ "id": 18964,
"properties": {
"attachment": "double_wall",
"facing": "north",
@@ -15527,7 +15527,7 @@
}
},
{
- "id": 18496,
+ "id": 18965,
"properties": {
"attachment": "double_wall",
"facing": "north",
@@ -15535,7 +15535,7 @@
}
},
{
- "id": 18497,
+ "id": 18966,
"properties": {
"attachment": "double_wall",
"facing": "south",
@@ -15543,7 +15543,7 @@
}
},
{
- "id": 18498,
+ "id": 18967,
"properties": {
"attachment": "double_wall",
"facing": "south",
@@ -15551,7 +15551,7 @@
}
},
{
- "id": 18499,
+ "id": 18968,
"properties": {
"attachment": "double_wall",
"facing": "west",
@@ -15559,7 +15559,7 @@
}
},
{
- "id": 18500,
+ "id": 18969,
"properties": {
"attachment": "double_wall",
"facing": "west",
@@ -15567,7 +15567,7 @@
}
},
{
- "id": 18501,
+ "id": 18970,
"properties": {
"attachment": "double_wall",
"facing": "east",
@@ -15575,7 +15575,7 @@
}
},
{
- "id": 18502,
+ "id": 18971,
"properties": {
"attachment": "double_wall",
"facing": "east",
@@ -15609,7 +15609,7 @@
},
"states": [
{
- "id": 24844,
+ "id": 25313,
"properties": {
"facing": "north",
"tilt": "none",
@@ -15618,7 +15618,7 @@
},
{
"default": true,
- "id": 24845,
+ "id": 25314,
"properties": {
"facing": "north",
"tilt": "none",
@@ -15626,7 +15626,7 @@
}
},
{
- "id": 24846,
+ "id": 25315,
"properties": {
"facing": "north",
"tilt": "unstable",
@@ -15634,7 +15634,7 @@
}
},
{
- "id": 24847,
+ "id": 25316,
"properties": {
"facing": "north",
"tilt": "unstable",
@@ -15642,7 +15642,7 @@
}
},
{
- "id": 24848,
+ "id": 25317,
"properties": {
"facing": "north",
"tilt": "partial",
@@ -15650,7 +15650,7 @@
}
},
{
- "id": 24849,
+ "id": 25318,
"properties": {
"facing": "north",
"tilt": "partial",
@@ -15658,7 +15658,7 @@
}
},
{
- "id": 24850,
+ "id": 25319,
"properties": {
"facing": "north",
"tilt": "full",
@@ -15666,7 +15666,7 @@
}
},
{
- "id": 24851,
+ "id": 25320,
"properties": {
"facing": "north",
"tilt": "full",
@@ -15674,7 +15674,7 @@
}
},
{
- "id": 24852,
+ "id": 25321,
"properties": {
"facing": "south",
"tilt": "none",
@@ -15682,7 +15682,7 @@
}
},
{
- "id": 24853,
+ "id": 25322,
"properties": {
"facing": "south",
"tilt": "none",
@@ -15690,7 +15690,7 @@
}
},
{
- "id": 24854,
+ "id": 25323,
"properties": {
"facing": "south",
"tilt": "unstable",
@@ -15698,7 +15698,7 @@
}
},
{
- "id": 24855,
+ "id": 25324,
"properties": {
"facing": "south",
"tilt": "unstable",
@@ -15706,7 +15706,7 @@
}
},
{
- "id": 24856,
+ "id": 25325,
"properties": {
"facing": "south",
"tilt": "partial",
@@ -15714,7 +15714,7 @@
}
},
{
- "id": 24857,
+ "id": 25326,
"properties": {
"facing": "south",
"tilt": "partial",
@@ -15722,7 +15722,7 @@
}
},
{
- "id": 24858,
+ "id": 25327,
"properties": {
"facing": "south",
"tilt": "full",
@@ -15730,7 +15730,7 @@
}
},
{
- "id": 24859,
+ "id": 25328,
"properties": {
"facing": "south",
"tilt": "full",
@@ -15738,7 +15738,7 @@
}
},
{
- "id": 24860,
+ "id": 25329,
"properties": {
"facing": "west",
"tilt": "none",
@@ -15746,7 +15746,7 @@
}
},
{
- "id": 24861,
+ "id": 25330,
"properties": {
"facing": "west",
"tilt": "none",
@@ -15754,7 +15754,7 @@
}
},
{
- "id": 24862,
+ "id": 25331,
"properties": {
"facing": "west",
"tilt": "unstable",
@@ -15762,7 +15762,7 @@
}
},
{
- "id": 24863,
+ "id": 25332,
"properties": {
"facing": "west",
"tilt": "unstable",
@@ -15770,7 +15770,7 @@
}
},
{
- "id": 24864,
+ "id": 25333,
"properties": {
"facing": "west",
"tilt": "partial",
@@ -15778,7 +15778,7 @@
}
},
{
- "id": 24865,
+ "id": 25334,
"properties": {
"facing": "west",
"tilt": "partial",
@@ -15786,7 +15786,7 @@
}
},
{
- "id": 24866,
+ "id": 25335,
"properties": {
"facing": "west",
"tilt": "full",
@@ -15794,7 +15794,7 @@
}
},
{
- "id": 24867,
+ "id": 25336,
"properties": {
"facing": "west",
"tilt": "full",
@@ -15802,7 +15802,7 @@
}
},
{
- "id": 24868,
+ "id": 25337,
"properties": {
"facing": "east",
"tilt": "none",
@@ -15810,7 +15810,7 @@
}
},
{
- "id": 24869,
+ "id": 25338,
"properties": {
"facing": "east",
"tilt": "none",
@@ -15818,7 +15818,7 @@
}
},
{
- "id": 24870,
+ "id": 25339,
"properties": {
"facing": "east",
"tilt": "unstable",
@@ -15826,7 +15826,7 @@
}
},
{
- "id": 24871,
+ "id": 25340,
"properties": {
"facing": "east",
"tilt": "unstable",
@@ -15834,7 +15834,7 @@
}
},
{
- "id": 24872,
+ "id": 25341,
"properties": {
"facing": "east",
"tilt": "partial",
@@ -15842,7 +15842,7 @@
}
},
{
- "id": 24873,
+ "id": 25342,
"properties": {
"facing": "east",
"tilt": "partial",
@@ -15850,7 +15850,7 @@
}
},
{
- "id": 24874,
+ "id": 25343,
"properties": {
"facing": "east",
"tilt": "full",
@@ -15858,7 +15858,7 @@
}
},
{
- "id": 24875,
+ "id": 25344,
"properties": {
"facing": "east",
"tilt": "full",
@@ -15886,7 +15886,7 @@
},
"states": [
{
- "id": 24876,
+ "id": 25345,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -15894,49 +15894,49 @@
},
{
"default": true,
- "id": 24877,
+ "id": 25346,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 24878,
+ "id": 25347,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 24879,
+ "id": 25348,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 24880,
+ "id": 25349,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 24881,
+ "id": 25350,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 24882,
+ "id": 25351,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 24883,
+ "id": 25352,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -15970,7 +15970,7 @@
},
"states": [
{
- "id": 8659,
+ "id": 8890,
"properties": {
"face": "floor",
"facing": "north",
@@ -15978,7 +15978,7 @@
}
},
{
- "id": 8660,
+ "id": 8891,
"properties": {
"face": "floor",
"facing": "north",
@@ -15986,7 +15986,7 @@
}
},
{
- "id": 8661,
+ "id": 8892,
"properties": {
"face": "floor",
"facing": "south",
@@ -15994,7 +15994,7 @@
}
},
{
- "id": 8662,
+ "id": 8893,
"properties": {
"face": "floor",
"facing": "south",
@@ -16002,7 +16002,7 @@
}
},
{
- "id": 8663,
+ "id": 8894,
"properties": {
"face": "floor",
"facing": "west",
@@ -16010,7 +16010,7 @@
}
},
{
- "id": 8664,
+ "id": 8895,
"properties": {
"face": "floor",
"facing": "west",
@@ -16018,7 +16018,7 @@
}
},
{
- "id": 8665,
+ "id": 8896,
"properties": {
"face": "floor",
"facing": "east",
@@ -16026,7 +16026,7 @@
}
},
{
- "id": 8666,
+ "id": 8897,
"properties": {
"face": "floor",
"facing": "east",
@@ -16034,7 +16034,7 @@
}
},
{
- "id": 8667,
+ "id": 8898,
"properties": {
"face": "wall",
"facing": "north",
@@ -16043,7 +16043,7 @@
},
{
"default": true,
- "id": 8668,
+ "id": 8899,
"properties": {
"face": "wall",
"facing": "north",
@@ -16051,7 +16051,7 @@
}
},
{
- "id": 8669,
+ "id": 8900,
"properties": {
"face": "wall",
"facing": "south",
@@ -16059,7 +16059,7 @@
}
},
{
- "id": 8670,
+ "id": 8901,
"properties": {
"face": "wall",
"facing": "south",
@@ -16067,7 +16067,7 @@
}
},
{
- "id": 8671,
+ "id": 8902,
"properties": {
"face": "wall",
"facing": "west",
@@ -16075,7 +16075,7 @@
}
},
{
- "id": 8672,
+ "id": 8903,
"properties": {
"face": "wall",
"facing": "west",
@@ -16083,7 +16083,7 @@
}
},
{
- "id": 8673,
+ "id": 8904,
"properties": {
"face": "wall",
"facing": "east",
@@ -16091,7 +16091,7 @@
}
},
{
- "id": 8674,
+ "id": 8905,
"properties": {
"face": "wall",
"facing": "east",
@@ -16099,7 +16099,7 @@
}
},
{
- "id": 8675,
+ "id": 8906,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -16107,7 +16107,7 @@
}
},
{
- "id": 8676,
+ "id": 8907,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -16115,7 +16115,7 @@
}
},
{
- "id": 8677,
+ "id": 8908,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -16123,7 +16123,7 @@
}
},
{
- "id": 8678,
+ "id": 8909,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -16131,7 +16131,7 @@
}
},
{
- "id": 8679,
+ "id": 8910,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -16139,7 +16139,7 @@
}
},
{
- "id": 8680,
+ "id": 8911,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -16147,7 +16147,7 @@
}
},
{
- "id": 8681,
+ "id": 8912,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -16155,7 +16155,7 @@
}
},
{
- "id": 8682,
+ "id": 8913,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -16196,7 +16196,7 @@
},
"states": [
{
- "id": 11886,
+ "id": 12291,
"properties": {
"facing": "north",
"half": "upper",
@@ -16206,7 +16206,7 @@
}
},
{
- "id": 11887,
+ "id": 12292,
"properties": {
"facing": "north",
"half": "upper",
@@ -16216,7 +16216,7 @@
}
},
{
- "id": 11888,
+ "id": 12293,
"properties": {
"facing": "north",
"half": "upper",
@@ -16226,7 +16226,7 @@
}
},
{
- "id": 11889,
+ "id": 12294,
"properties": {
"facing": "north",
"half": "upper",
@@ -16236,7 +16236,7 @@
}
},
{
- "id": 11890,
+ "id": 12295,
"properties": {
"facing": "north",
"half": "upper",
@@ -16246,7 +16246,7 @@
}
},
{
- "id": 11891,
+ "id": 12296,
"properties": {
"facing": "north",
"half": "upper",
@@ -16256,7 +16256,7 @@
}
},
{
- "id": 11892,
+ "id": 12297,
"properties": {
"facing": "north",
"half": "upper",
@@ -16266,7 +16266,7 @@
}
},
{
- "id": 11893,
+ "id": 12298,
"properties": {
"facing": "north",
"half": "upper",
@@ -16276,7 +16276,7 @@
}
},
{
- "id": 11894,
+ "id": 12299,
"properties": {
"facing": "north",
"half": "lower",
@@ -16286,7 +16286,7 @@
}
},
{
- "id": 11895,
+ "id": 12300,
"properties": {
"facing": "north",
"half": "lower",
@@ -16296,7 +16296,7 @@
}
},
{
- "id": 11896,
+ "id": 12301,
"properties": {
"facing": "north",
"half": "lower",
@@ -16307,7 +16307,7 @@
},
{
"default": true,
- "id": 11897,
+ "id": 12302,
"properties": {
"facing": "north",
"half": "lower",
@@ -16317,7 +16317,7 @@
}
},
{
- "id": 11898,
+ "id": 12303,
"properties": {
"facing": "north",
"half": "lower",
@@ -16327,7 +16327,7 @@
}
},
{
- "id": 11899,
+ "id": 12304,
"properties": {
"facing": "north",
"half": "lower",
@@ -16337,7 +16337,7 @@
}
},
{
- "id": 11900,
+ "id": 12305,
"properties": {
"facing": "north",
"half": "lower",
@@ -16347,7 +16347,7 @@
}
},
{
- "id": 11901,
+ "id": 12306,
"properties": {
"facing": "north",
"half": "lower",
@@ -16357,7 +16357,7 @@
}
},
{
- "id": 11902,
+ "id": 12307,
"properties": {
"facing": "south",
"half": "upper",
@@ -16367,7 +16367,7 @@
}
},
{
- "id": 11903,
+ "id": 12308,
"properties": {
"facing": "south",
"half": "upper",
@@ -16377,7 +16377,7 @@
}
},
{
- "id": 11904,
+ "id": 12309,
"properties": {
"facing": "south",
"half": "upper",
@@ -16387,7 +16387,7 @@
}
},
{
- "id": 11905,
+ "id": 12310,
"properties": {
"facing": "south",
"half": "upper",
@@ -16397,7 +16397,7 @@
}
},
{
- "id": 11906,
+ "id": 12311,
"properties": {
"facing": "south",
"half": "upper",
@@ -16407,7 +16407,7 @@
}
},
{
- "id": 11907,
+ "id": 12312,
"properties": {
"facing": "south",
"half": "upper",
@@ -16417,7 +16417,7 @@
}
},
{
- "id": 11908,
+ "id": 12313,
"properties": {
"facing": "south",
"half": "upper",
@@ -16427,7 +16427,7 @@
}
},
{
- "id": 11909,
+ "id": 12314,
"properties": {
"facing": "south",
"half": "upper",
@@ -16437,7 +16437,7 @@
}
},
{
- "id": 11910,
+ "id": 12315,
"properties": {
"facing": "south",
"half": "lower",
@@ -16447,7 +16447,7 @@
}
},
{
- "id": 11911,
+ "id": 12316,
"properties": {
"facing": "south",
"half": "lower",
@@ -16457,7 +16457,7 @@
}
},
{
- "id": 11912,
+ "id": 12317,
"properties": {
"facing": "south",
"half": "lower",
@@ -16467,7 +16467,7 @@
}
},
{
- "id": 11913,
+ "id": 12318,
"properties": {
"facing": "south",
"half": "lower",
@@ -16477,7 +16477,7 @@
}
},
{
- "id": 11914,
+ "id": 12319,
"properties": {
"facing": "south",
"half": "lower",
@@ -16487,7 +16487,7 @@
}
},
{
- "id": 11915,
+ "id": 12320,
"properties": {
"facing": "south",
"half": "lower",
@@ -16497,7 +16497,7 @@
}
},
{
- "id": 11916,
+ "id": 12321,
"properties": {
"facing": "south",
"half": "lower",
@@ -16507,7 +16507,7 @@
}
},
{
- "id": 11917,
+ "id": 12322,
"properties": {
"facing": "south",
"half": "lower",
@@ -16517,7 +16517,7 @@
}
},
{
- "id": 11918,
+ "id": 12323,
"properties": {
"facing": "west",
"half": "upper",
@@ -16527,7 +16527,7 @@
}
},
{
- "id": 11919,
+ "id": 12324,
"properties": {
"facing": "west",
"half": "upper",
@@ -16537,7 +16537,7 @@
}
},
{
- "id": 11920,
+ "id": 12325,
"properties": {
"facing": "west",
"half": "upper",
@@ -16547,7 +16547,7 @@
}
},
{
- "id": 11921,
+ "id": 12326,
"properties": {
"facing": "west",
"half": "upper",
@@ -16557,7 +16557,7 @@
}
},
{
- "id": 11922,
+ "id": 12327,
"properties": {
"facing": "west",
"half": "upper",
@@ -16567,7 +16567,7 @@
}
},
{
- "id": 11923,
+ "id": 12328,
"properties": {
"facing": "west",
"half": "upper",
@@ -16577,7 +16577,7 @@
}
},
{
- "id": 11924,
+ "id": 12329,
"properties": {
"facing": "west",
"half": "upper",
@@ -16587,7 +16587,7 @@
}
},
{
- "id": 11925,
+ "id": 12330,
"properties": {
"facing": "west",
"half": "upper",
@@ -16597,7 +16597,7 @@
}
},
{
- "id": 11926,
+ "id": 12331,
"properties": {
"facing": "west",
"half": "lower",
@@ -16607,7 +16607,7 @@
}
},
{
- "id": 11927,
+ "id": 12332,
"properties": {
"facing": "west",
"half": "lower",
@@ -16617,7 +16617,7 @@
}
},
{
- "id": 11928,
+ "id": 12333,
"properties": {
"facing": "west",
"half": "lower",
@@ -16627,7 +16627,7 @@
}
},
{
- "id": 11929,
+ "id": 12334,
"properties": {
"facing": "west",
"half": "lower",
@@ -16637,7 +16637,7 @@
}
},
{
- "id": 11930,
+ "id": 12335,
"properties": {
"facing": "west",
"half": "lower",
@@ -16647,7 +16647,7 @@
}
},
{
- "id": 11931,
+ "id": 12336,
"properties": {
"facing": "west",
"half": "lower",
@@ -16657,7 +16657,7 @@
}
},
{
- "id": 11932,
+ "id": 12337,
"properties": {
"facing": "west",
"half": "lower",
@@ -16667,7 +16667,7 @@
}
},
{
- "id": 11933,
+ "id": 12338,
"properties": {
"facing": "west",
"half": "lower",
@@ -16677,7 +16677,7 @@
}
},
{
- "id": 11934,
+ "id": 12339,
"properties": {
"facing": "east",
"half": "upper",
@@ -16687,7 +16687,7 @@
}
},
{
- "id": 11935,
+ "id": 12340,
"properties": {
"facing": "east",
"half": "upper",
@@ -16697,7 +16697,7 @@
}
},
{
- "id": 11936,
+ "id": 12341,
"properties": {
"facing": "east",
"half": "upper",
@@ -16707,7 +16707,7 @@
}
},
{
- "id": 11937,
+ "id": 12342,
"properties": {
"facing": "east",
"half": "upper",
@@ -16717,7 +16717,7 @@
}
},
{
- "id": 11938,
+ "id": 12343,
"properties": {
"facing": "east",
"half": "upper",
@@ -16727,7 +16727,7 @@
}
},
{
- "id": 11939,
+ "id": 12344,
"properties": {
"facing": "east",
"half": "upper",
@@ -16737,7 +16737,7 @@
}
},
{
- "id": 11940,
+ "id": 12345,
"properties": {
"facing": "east",
"half": "upper",
@@ -16747,7 +16747,7 @@
}
},
{
- "id": 11941,
+ "id": 12346,
"properties": {
"facing": "east",
"half": "upper",
@@ -16757,7 +16757,7 @@
}
},
{
- "id": 11942,
+ "id": 12347,
"properties": {
"facing": "east",
"half": "lower",
@@ -16767,7 +16767,7 @@
}
},
{
- "id": 11943,
+ "id": 12348,
"properties": {
"facing": "east",
"half": "lower",
@@ -16777,7 +16777,7 @@
}
},
{
- "id": 11944,
+ "id": 12349,
"properties": {
"facing": "east",
"half": "lower",
@@ -16787,7 +16787,7 @@
}
},
{
- "id": 11945,
+ "id": 12350,
"properties": {
"facing": "east",
"half": "lower",
@@ -16797,7 +16797,7 @@
}
},
{
- "id": 11946,
+ "id": 12351,
"properties": {
"facing": "east",
"half": "lower",
@@ -16807,7 +16807,7 @@
}
},
{
- "id": 11947,
+ "id": 12352,
"properties": {
"facing": "east",
"half": "lower",
@@ -16817,7 +16817,7 @@
}
},
{
- "id": 11948,
+ "id": 12353,
"properties": {
"facing": "east",
"half": "lower",
@@ -16827,7 +16827,7 @@
}
},
{
- "id": 11949,
+ "id": 12354,
"properties": {
"facing": "east",
"half": "lower",
@@ -16867,7 +16867,7 @@
},
"states": [
{
- "id": 11598,
+ "id": 11971,
"properties": {
"east": "true",
"north": "true",
@@ -16877,7 +16877,7 @@
}
},
{
- "id": 11599,
+ "id": 11972,
"properties": {
"east": "true",
"north": "true",
@@ -16887,7 +16887,7 @@
}
},
{
- "id": 11600,
+ "id": 11973,
"properties": {
"east": "true",
"north": "true",
@@ -16897,7 +16897,7 @@
}
},
{
- "id": 11601,
+ "id": 11974,
"properties": {
"east": "true",
"north": "true",
@@ -16907,7 +16907,7 @@
}
},
{
- "id": 11602,
+ "id": 11975,
"properties": {
"east": "true",
"north": "true",
@@ -16917,7 +16917,7 @@
}
},
{
- "id": 11603,
+ "id": 11976,
"properties": {
"east": "true",
"north": "true",
@@ -16927,7 +16927,7 @@
}
},
{
- "id": 11604,
+ "id": 11977,
"properties": {
"east": "true",
"north": "true",
@@ -16937,7 +16937,7 @@
}
},
{
- "id": 11605,
+ "id": 11978,
"properties": {
"east": "true",
"north": "true",
@@ -16947,7 +16947,7 @@
}
},
{
- "id": 11606,
+ "id": 11979,
"properties": {
"east": "true",
"north": "false",
@@ -16957,7 +16957,7 @@
}
},
{
- "id": 11607,
+ "id": 11980,
"properties": {
"east": "true",
"north": "false",
@@ -16967,7 +16967,7 @@
}
},
{
- "id": 11608,
+ "id": 11981,
"properties": {
"east": "true",
"north": "false",
@@ -16977,7 +16977,7 @@
}
},
{
- "id": 11609,
+ "id": 11982,
"properties": {
"east": "true",
"north": "false",
@@ -16987,7 +16987,7 @@
}
},
{
- "id": 11610,
+ "id": 11983,
"properties": {
"east": "true",
"north": "false",
@@ -16997,7 +16997,7 @@
}
},
{
- "id": 11611,
+ "id": 11984,
"properties": {
"east": "true",
"north": "false",
@@ -17007,7 +17007,7 @@
}
},
{
- "id": 11612,
+ "id": 11985,
"properties": {
"east": "true",
"north": "false",
@@ -17017,7 +17017,7 @@
}
},
{
- "id": 11613,
+ "id": 11986,
"properties": {
"east": "true",
"north": "false",
@@ -17027,7 +17027,7 @@
}
},
{
- "id": 11614,
+ "id": 11987,
"properties": {
"east": "false",
"north": "true",
@@ -17037,7 +17037,7 @@
}
},
{
- "id": 11615,
+ "id": 11988,
"properties": {
"east": "false",
"north": "true",
@@ -17047,7 +17047,7 @@
}
},
{
- "id": 11616,
+ "id": 11989,
"properties": {
"east": "false",
"north": "true",
@@ -17057,7 +17057,7 @@
}
},
{
- "id": 11617,
+ "id": 11990,
"properties": {
"east": "false",
"north": "true",
@@ -17067,7 +17067,7 @@
}
},
{
- "id": 11618,
+ "id": 11991,
"properties": {
"east": "false",
"north": "true",
@@ -17077,7 +17077,7 @@
}
},
{
- "id": 11619,
+ "id": 11992,
"properties": {
"east": "false",
"north": "true",
@@ -17087,7 +17087,7 @@
}
},
{
- "id": 11620,
+ "id": 11993,
"properties": {
"east": "false",
"north": "true",
@@ -17097,7 +17097,7 @@
}
},
{
- "id": 11621,
+ "id": 11994,
"properties": {
"east": "false",
"north": "true",
@@ -17107,7 +17107,7 @@
}
},
{
- "id": 11622,
+ "id": 11995,
"properties": {
"east": "false",
"north": "false",
@@ -17117,7 +17117,7 @@
}
},
{
- "id": 11623,
+ "id": 11996,
"properties": {
"east": "false",
"north": "false",
@@ -17127,7 +17127,7 @@
}
},
{
- "id": 11624,
+ "id": 11997,
"properties": {
"east": "false",
"north": "false",
@@ -17137,7 +17137,7 @@
}
},
{
- "id": 11625,
+ "id": 11998,
"properties": {
"east": "false",
"north": "false",
@@ -17147,7 +17147,7 @@
}
},
{
- "id": 11626,
+ "id": 11999,
"properties": {
"east": "false",
"north": "false",
@@ -17157,7 +17157,7 @@
}
},
{
- "id": 11627,
+ "id": 12000,
"properties": {
"east": "false",
"north": "false",
@@ -17167,7 +17167,7 @@
}
},
{
- "id": 11628,
+ "id": 12001,
"properties": {
"east": "false",
"north": "false",
@@ -17178,7 +17178,7 @@
},
{
"default": true,
- "id": 11629,
+ "id": 12002,
"properties": {
"east": "false",
"north": "false",
@@ -17217,7 +17217,7 @@
},
"states": [
{
- "id": 11342,
+ "id": 11683,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -17226,7 +17226,7 @@
}
},
{
- "id": 11343,
+ "id": 11684,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -17235,7 +17235,7 @@
}
},
{
- "id": 11344,
+ "id": 11685,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -17244,7 +17244,7 @@
}
},
{
- "id": 11345,
+ "id": 11686,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -17253,7 +17253,7 @@
}
},
{
- "id": 11346,
+ "id": 11687,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -17262,7 +17262,7 @@
}
},
{
- "id": 11347,
+ "id": 11688,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -17271,7 +17271,7 @@
}
},
{
- "id": 11348,
+ "id": 11689,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -17281,7 +17281,7 @@
},
{
"default": true,
- "id": 11349,
+ "id": 11690,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -17290,7 +17290,7 @@
}
},
{
- "id": 11350,
+ "id": 11691,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -17299,7 +17299,7 @@
}
},
{
- "id": 11351,
+ "id": 11692,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -17308,7 +17308,7 @@
}
},
{
- "id": 11352,
+ "id": 11693,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -17317,7 +17317,7 @@
}
},
{
- "id": 11353,
+ "id": 11694,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -17326,7 +17326,7 @@
}
},
{
- "id": 11354,
+ "id": 11695,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -17335,7 +17335,7 @@
}
},
{
- "id": 11355,
+ "id": 11696,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -17344,7 +17344,7 @@
}
},
{
- "id": 11356,
+ "id": 11697,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -17353,7 +17353,7 @@
}
},
{
- "id": 11357,
+ "id": 11698,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -17362,7 +17362,7 @@
}
},
{
- "id": 11358,
+ "id": 11699,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -17371,7 +17371,7 @@
}
},
{
- "id": 11359,
+ "id": 11700,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -17380,7 +17380,7 @@
}
},
{
- "id": 11360,
+ "id": 11701,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -17389,7 +17389,7 @@
}
},
{
- "id": 11361,
+ "id": 11702,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -17398,7 +17398,7 @@
}
},
{
- "id": 11362,
+ "id": 11703,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -17407,7 +17407,7 @@
}
},
{
- "id": 11363,
+ "id": 11704,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -17416,7 +17416,7 @@
}
},
{
- "id": 11364,
+ "id": 11705,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -17425,7 +17425,7 @@
}
},
{
- "id": 11365,
+ "id": 11706,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -17434,7 +17434,7 @@
}
},
{
- "id": 11366,
+ "id": 11707,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -17443,7 +17443,7 @@
}
},
{
- "id": 11367,
+ "id": 11708,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -17452,7 +17452,7 @@
}
},
{
- "id": 11368,
+ "id": 11709,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -17461,7 +17461,7 @@
}
},
{
- "id": 11369,
+ "id": 11710,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -17470,7 +17470,7 @@
}
},
{
- "id": 11370,
+ "id": 11711,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -17479,7 +17479,7 @@
}
},
{
- "id": 11371,
+ "id": 11712,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -17488,7 +17488,7 @@
}
},
{
- "id": 11372,
+ "id": 11713,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -17497,7 +17497,7 @@
}
},
{
- "id": 11373,
+ "id": 11714,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -17543,7 +17543,7 @@
},
"states": [
{
- "id": 4962,
+ "id": 5054,
"properties": {
"attached": "true",
"rotation": "0",
@@ -17551,7 +17551,7 @@
}
},
{
- "id": 4963,
+ "id": 5055,
"properties": {
"attached": "true",
"rotation": "0",
@@ -17559,7 +17559,7 @@
}
},
{
- "id": 4964,
+ "id": 5056,
"properties": {
"attached": "true",
"rotation": "1",
@@ -17567,7 +17567,7 @@
}
},
{
- "id": 4965,
+ "id": 5057,
"properties": {
"attached": "true",
"rotation": "1",
@@ -17575,7 +17575,7 @@
}
},
{
- "id": 4966,
+ "id": 5058,
"properties": {
"attached": "true",
"rotation": "2",
@@ -17583,7 +17583,7 @@
}
},
{
- "id": 4967,
+ "id": 5059,
"properties": {
"attached": "true",
"rotation": "2",
@@ -17591,7 +17591,7 @@
}
},
{
- "id": 4968,
+ "id": 5060,
"properties": {
"attached": "true",
"rotation": "3",
@@ -17599,7 +17599,7 @@
}
},
{
- "id": 4969,
+ "id": 5061,
"properties": {
"attached": "true",
"rotation": "3",
@@ -17607,7 +17607,7 @@
}
},
{
- "id": 4970,
+ "id": 5062,
"properties": {
"attached": "true",
"rotation": "4",
@@ -17615,7 +17615,7 @@
}
},
{
- "id": 4971,
+ "id": 5063,
"properties": {
"attached": "true",
"rotation": "4",
@@ -17623,7 +17623,7 @@
}
},
{
- "id": 4972,
+ "id": 5064,
"properties": {
"attached": "true",
"rotation": "5",
@@ -17631,7 +17631,7 @@
}
},
{
- "id": 4973,
+ "id": 5065,
"properties": {
"attached": "true",
"rotation": "5",
@@ -17639,7 +17639,7 @@
}
},
{
- "id": 4974,
+ "id": 5066,
"properties": {
"attached": "true",
"rotation": "6",
@@ -17647,7 +17647,7 @@
}
},
{
- "id": 4975,
+ "id": 5067,
"properties": {
"attached": "true",
"rotation": "6",
@@ -17655,7 +17655,7 @@
}
},
{
- "id": 4976,
+ "id": 5068,
"properties": {
"attached": "true",
"rotation": "7",
@@ -17663,7 +17663,7 @@
}
},
{
- "id": 4977,
+ "id": 5069,
"properties": {
"attached": "true",
"rotation": "7",
@@ -17671,7 +17671,7 @@
}
},
{
- "id": 4978,
+ "id": 5070,
"properties": {
"attached": "true",
"rotation": "8",
@@ -17679,7 +17679,7 @@
}
},
{
- "id": 4979,
+ "id": 5071,
"properties": {
"attached": "true",
"rotation": "8",
@@ -17687,7 +17687,7 @@
}
},
{
- "id": 4980,
+ "id": 5072,
"properties": {
"attached": "true",
"rotation": "9",
@@ -17695,7 +17695,7 @@
}
},
{
- "id": 4981,
+ "id": 5073,
"properties": {
"attached": "true",
"rotation": "9",
@@ -17703,7 +17703,7 @@
}
},
{
- "id": 4982,
+ "id": 5074,
"properties": {
"attached": "true",
"rotation": "10",
@@ -17711,7 +17711,7 @@
}
},
{
- "id": 4983,
+ "id": 5075,
"properties": {
"attached": "true",
"rotation": "10",
@@ -17719,7 +17719,7 @@
}
},
{
- "id": 4984,
+ "id": 5076,
"properties": {
"attached": "true",
"rotation": "11",
@@ -17727,7 +17727,7 @@
}
},
{
- "id": 4985,
+ "id": 5077,
"properties": {
"attached": "true",
"rotation": "11",
@@ -17735,7 +17735,7 @@
}
},
{
- "id": 4986,
+ "id": 5078,
"properties": {
"attached": "true",
"rotation": "12",
@@ -17743,7 +17743,7 @@
}
},
{
- "id": 4987,
+ "id": 5079,
"properties": {
"attached": "true",
"rotation": "12",
@@ -17751,7 +17751,7 @@
}
},
{
- "id": 4988,
+ "id": 5080,
"properties": {
"attached": "true",
"rotation": "13",
@@ -17759,7 +17759,7 @@
}
},
{
- "id": 4989,
+ "id": 5081,
"properties": {
"attached": "true",
"rotation": "13",
@@ -17767,7 +17767,7 @@
}
},
{
- "id": 4990,
+ "id": 5082,
"properties": {
"attached": "true",
"rotation": "14",
@@ -17775,7 +17775,7 @@
}
},
{
- "id": 4991,
+ "id": 5083,
"properties": {
"attached": "true",
"rotation": "14",
@@ -17783,7 +17783,7 @@
}
},
{
- "id": 4992,
+ "id": 5084,
"properties": {
"attached": "true",
"rotation": "15",
@@ -17791,7 +17791,7 @@
}
},
{
- "id": 4993,
+ "id": 5085,
"properties": {
"attached": "true",
"rotation": "15",
@@ -17799,7 +17799,7 @@
}
},
{
- "id": 4994,
+ "id": 5086,
"properties": {
"attached": "false",
"rotation": "0",
@@ -17808,7 +17808,7 @@
},
{
"default": true,
- "id": 4995,
+ "id": 5087,
"properties": {
"attached": "false",
"rotation": "0",
@@ -17816,7 +17816,7 @@
}
},
{
- "id": 4996,
+ "id": 5088,
"properties": {
"attached": "false",
"rotation": "1",
@@ -17824,7 +17824,7 @@
}
},
{
- "id": 4997,
+ "id": 5089,
"properties": {
"attached": "false",
"rotation": "1",
@@ -17832,7 +17832,7 @@
}
},
{
- "id": 4998,
+ "id": 5090,
"properties": {
"attached": "false",
"rotation": "2",
@@ -17840,7 +17840,7 @@
}
},
{
- "id": 4999,
+ "id": 5091,
"properties": {
"attached": "false",
"rotation": "2",
@@ -17848,7 +17848,7 @@
}
},
{
- "id": 5000,
+ "id": 5092,
"properties": {
"attached": "false",
"rotation": "3",
@@ -17856,7 +17856,7 @@
}
},
{
- "id": 5001,
+ "id": 5093,
"properties": {
"attached": "false",
"rotation": "3",
@@ -17864,7 +17864,7 @@
}
},
{
- "id": 5002,
+ "id": 5094,
"properties": {
"attached": "false",
"rotation": "4",
@@ -17872,7 +17872,7 @@
}
},
{
- "id": 5003,
+ "id": 5095,
"properties": {
"attached": "false",
"rotation": "4",
@@ -17880,7 +17880,7 @@
}
},
{
- "id": 5004,
+ "id": 5096,
"properties": {
"attached": "false",
"rotation": "5",
@@ -17888,7 +17888,7 @@
}
},
{
- "id": 5005,
+ "id": 5097,
"properties": {
"attached": "false",
"rotation": "5",
@@ -17896,7 +17896,7 @@
}
},
{
- "id": 5006,
+ "id": 5098,
"properties": {
"attached": "false",
"rotation": "6",
@@ -17904,7 +17904,7 @@
}
},
{
- "id": 5007,
+ "id": 5099,
"properties": {
"attached": "false",
"rotation": "6",
@@ -17912,7 +17912,7 @@
}
},
{
- "id": 5008,
+ "id": 5100,
"properties": {
"attached": "false",
"rotation": "7",
@@ -17920,7 +17920,7 @@
}
},
{
- "id": 5009,
+ "id": 5101,
"properties": {
"attached": "false",
"rotation": "7",
@@ -17928,7 +17928,7 @@
}
},
{
- "id": 5010,
+ "id": 5102,
"properties": {
"attached": "false",
"rotation": "8",
@@ -17936,7 +17936,7 @@
}
},
{
- "id": 5011,
+ "id": 5103,
"properties": {
"attached": "false",
"rotation": "8",
@@ -17944,7 +17944,7 @@
}
},
{
- "id": 5012,
+ "id": 5104,
"properties": {
"attached": "false",
"rotation": "9",
@@ -17952,7 +17952,7 @@
}
},
{
- "id": 5013,
+ "id": 5105,
"properties": {
"attached": "false",
"rotation": "9",
@@ -17960,7 +17960,7 @@
}
},
{
- "id": 5014,
+ "id": 5106,
"properties": {
"attached": "false",
"rotation": "10",
@@ -17968,7 +17968,7 @@
}
},
{
- "id": 5015,
+ "id": 5107,
"properties": {
"attached": "false",
"rotation": "10",
@@ -17976,7 +17976,7 @@
}
},
{
- "id": 5016,
+ "id": 5108,
"properties": {
"attached": "false",
"rotation": "11",
@@ -17984,7 +17984,7 @@
}
},
{
- "id": 5017,
+ "id": 5109,
"properties": {
"attached": "false",
"rotation": "11",
@@ -17992,7 +17992,7 @@
}
},
{
- "id": 5018,
+ "id": 5110,
"properties": {
"attached": "false",
"rotation": "12",
@@ -18000,7 +18000,7 @@
}
},
{
- "id": 5019,
+ "id": 5111,
"properties": {
"attached": "false",
"rotation": "12",
@@ -18008,7 +18008,7 @@
}
},
{
- "id": 5020,
+ "id": 5112,
"properties": {
"attached": "false",
"rotation": "13",
@@ -18016,7 +18016,7 @@
}
},
{
- "id": 5021,
+ "id": 5113,
"properties": {
"attached": "false",
"rotation": "13",
@@ -18024,7 +18024,7 @@
}
},
{
- "id": 5022,
+ "id": 5114,
"properties": {
"attached": "false",
"rotation": "14",
@@ -18032,7 +18032,7 @@
}
},
{
- "id": 5023,
+ "id": 5115,
"properties": {
"attached": "false",
"rotation": "14",
@@ -18040,7 +18040,7 @@
}
},
{
- "id": 5024,
+ "id": 5116,
"properties": {
"attached": "false",
"rotation": "15",
@@ -18048,7 +18048,7 @@
}
},
{
- "id": 5025,
+ "id": 5117,
"properties": {
"attached": "false",
"rotation": "15",
@@ -18082,160 +18082,160 @@
]
},
"states": [
- {
- "id": 293,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 294,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 295,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 296,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 297,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 298,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 299,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 300,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 301,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 302,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 303,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 304,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 305,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 306,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 307,
- "properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
{
"id": 308,
"properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "true",
+ "waterlogged": "true"
}
},
{
"id": 309,
"properties": {
- "distance": "5",
+ "distance": "1",
"persistent": "true",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 310,
"properties": {
- "distance": "5",
- "persistent": "true",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "false",
+ "waterlogged": "true"
}
},
{
"id": 311,
"properties": {
- "distance": "5",
+ "distance": "1",
"persistent": "false",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 312,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 313,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 314,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 315,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 316,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 317,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 318,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 319,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 320,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 321,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 322,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 323,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 324,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 325,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 326,
+ "properties": {
+ "distance": "5",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 327,
"properties": {
"distance": "5",
"persistent": "false",
@@ -18243,7 +18243,7 @@
}
},
{
- "id": 313,
+ "id": 328,
"properties": {
"distance": "6",
"persistent": "true",
@@ -18251,7 +18251,7 @@
}
},
{
- "id": 314,
+ "id": 329,
"properties": {
"distance": "6",
"persistent": "true",
@@ -18259,7 +18259,7 @@
}
},
{
- "id": 315,
+ "id": 330,
"properties": {
"distance": "6",
"persistent": "false",
@@ -18267,7 +18267,7 @@
}
},
{
- "id": 316,
+ "id": 331,
"properties": {
"distance": "6",
"persistent": "false",
@@ -18275,7 +18275,7 @@
}
},
{
- "id": 317,
+ "id": 332,
"properties": {
"distance": "7",
"persistent": "true",
@@ -18283,7 +18283,7 @@
}
},
{
- "id": 318,
+ "id": 333,
"properties": {
"distance": "7",
"persistent": "true",
@@ -18291,7 +18291,7 @@
}
},
{
- "id": 319,
+ "id": 334,
"properties": {
"distance": "7",
"persistent": "false",
@@ -18300,7 +18300,7 @@
},
{
"default": true,
- "id": 320,
+ "id": 335,
"properties": {
"distance": "7",
"persistent": "false",
@@ -18323,20 +18323,20 @@
},
"states": [
{
- "id": 136,
+ "id": 142,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 137,
+ "id": 143,
"properties": {
"axis": "y"
}
},
{
- "id": 138,
+ "id": 144,
"properties": {
"axis": "z"
}
@@ -18369,14 +18369,14 @@
},
"states": [
{
- "id": 5720,
+ "id": 5884,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5721,
+ "id": 5885,
"properties": {
"powered": "false"
}
@@ -18398,13 +18398,13 @@
"states": [
{
"default": true,
- "id": 29,
+ "id": 33,
"properties": {
"stage": "0"
}
},
{
- "id": 30,
+ "id": 34,
"properties": {
"stage": "1"
}
@@ -18443,7 +18443,7 @@
},
"states": [
{
- "id": 4366,
+ "id": 4418,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -18451,217 +18451,217 @@
},
{
"default": true,
- "id": 4367,
+ "id": 4419,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 4368,
+ "id": 4420,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 4369,
+ "id": 4421,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 4370,
+ "id": 4422,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 4371,
+ "id": 4423,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 4372,
+ "id": 4424,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 4373,
+ "id": 4425,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 4374,
+ "id": 4426,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 4375,
+ "id": 4427,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 4376,
+ "id": 4428,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 4377,
+ "id": 4429,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 4378,
+ "id": 4430,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 4379,
+ "id": 4431,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 4380,
+ "id": 4432,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 4381,
+ "id": 4433,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 4382,
+ "id": 4434,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 4383,
+ "id": 4435,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 4384,
+ "id": 4436,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 4385,
+ "id": 4437,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 4386,
+ "id": 4438,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 4387,
+ "id": 4439,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 4388,
+ "id": 4440,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 4389,
+ "id": 4441,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 4390,
+ "id": 4442,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 4391,
+ "id": 4443,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 4392,
+ "id": 4444,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 4393,
+ "id": 4445,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 4394,
+ "id": 4446,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 4395,
+ "id": 4447,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 4396,
+ "id": 4448,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 4397,
+ "id": 4449,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -18687,21 +18687,21 @@
},
"states": [
{
- "id": 11174,
+ "id": 11509,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11175,
+ "id": 11510,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11176,
+ "id": 11511,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -18709,21 +18709,21 @@
},
{
"default": true,
- "id": 11177,
+ "id": 11512,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11178,
+ "id": 11513,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11179,
+ "id": 11514,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -18764,7 +18764,7 @@
},
"states": [
{
- "id": 7746,
+ "id": 7976,
"properties": {
"facing": "north",
"half": "top",
@@ -18773,7 +18773,7 @@
}
},
{
- "id": 7747,
+ "id": 7977,
"properties": {
"facing": "north",
"half": "top",
@@ -18782,7 +18782,7 @@
}
},
{
- "id": 7748,
+ "id": 7978,
"properties": {
"facing": "north",
"half": "top",
@@ -18791,7 +18791,7 @@
}
},
{
- "id": 7749,
+ "id": 7979,
"properties": {
"facing": "north",
"half": "top",
@@ -18800,7 +18800,7 @@
}
},
{
- "id": 7750,
+ "id": 7980,
"properties": {
"facing": "north",
"half": "top",
@@ -18809,7 +18809,7 @@
}
},
{
- "id": 7751,
+ "id": 7981,
"properties": {
"facing": "north",
"half": "top",
@@ -18818,7 +18818,7 @@
}
},
{
- "id": 7752,
+ "id": 7982,
"properties": {
"facing": "north",
"half": "top",
@@ -18827,7 +18827,7 @@
}
},
{
- "id": 7753,
+ "id": 7983,
"properties": {
"facing": "north",
"half": "top",
@@ -18836,7 +18836,7 @@
}
},
{
- "id": 7754,
+ "id": 7984,
"properties": {
"facing": "north",
"half": "top",
@@ -18845,7 +18845,7 @@
}
},
{
- "id": 7755,
+ "id": 7985,
"properties": {
"facing": "north",
"half": "top",
@@ -18854,7 +18854,7 @@
}
},
{
- "id": 7756,
+ "id": 7986,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18864,7 +18864,7 @@
},
{
"default": true,
- "id": 7757,
+ "id": 7987,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18873,7 +18873,7 @@
}
},
{
- "id": 7758,
+ "id": 7988,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18882,7 +18882,7 @@
}
},
{
- "id": 7759,
+ "id": 7989,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18891,7 +18891,7 @@
}
},
{
- "id": 7760,
+ "id": 7990,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18900,7 +18900,7 @@
}
},
{
- "id": 7761,
+ "id": 7991,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18909,7 +18909,7 @@
}
},
{
- "id": 7762,
+ "id": 7992,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18918,7 +18918,7 @@
}
},
{
- "id": 7763,
+ "id": 7993,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18927,7 +18927,7 @@
}
},
{
- "id": 7764,
+ "id": 7994,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18936,7 +18936,7 @@
}
},
{
- "id": 7765,
+ "id": 7995,
"properties": {
"facing": "north",
"half": "bottom",
@@ -18945,7 +18945,7 @@
}
},
{
- "id": 7766,
+ "id": 7996,
"properties": {
"facing": "south",
"half": "top",
@@ -18954,7 +18954,7 @@
}
},
{
- "id": 7767,
+ "id": 7997,
"properties": {
"facing": "south",
"half": "top",
@@ -18963,7 +18963,7 @@
}
},
{
- "id": 7768,
+ "id": 7998,
"properties": {
"facing": "south",
"half": "top",
@@ -18972,7 +18972,7 @@
}
},
{
- "id": 7769,
+ "id": 7999,
"properties": {
"facing": "south",
"half": "top",
@@ -18981,7 +18981,7 @@
}
},
{
- "id": 7770,
+ "id": 8000,
"properties": {
"facing": "south",
"half": "top",
@@ -18990,7 +18990,7 @@
}
},
{
- "id": 7771,
+ "id": 8001,
"properties": {
"facing": "south",
"half": "top",
@@ -18999,7 +18999,7 @@
}
},
{
- "id": 7772,
+ "id": 8002,
"properties": {
"facing": "south",
"half": "top",
@@ -19008,7 +19008,7 @@
}
},
{
- "id": 7773,
+ "id": 8003,
"properties": {
"facing": "south",
"half": "top",
@@ -19017,7 +19017,7 @@
}
},
{
- "id": 7774,
+ "id": 8004,
"properties": {
"facing": "south",
"half": "top",
@@ -19026,7 +19026,7 @@
}
},
{
- "id": 7775,
+ "id": 8005,
"properties": {
"facing": "south",
"half": "top",
@@ -19035,7 +19035,7 @@
}
},
{
- "id": 7776,
+ "id": 8006,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19044,7 +19044,7 @@
}
},
{
- "id": 7777,
+ "id": 8007,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19053,7 +19053,7 @@
}
},
{
- "id": 7778,
+ "id": 8008,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19062,7 +19062,7 @@
}
},
{
- "id": 7779,
+ "id": 8009,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19071,7 +19071,7 @@
}
},
{
- "id": 7780,
+ "id": 8010,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19080,7 +19080,7 @@
}
},
{
- "id": 7781,
+ "id": 8011,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19089,7 +19089,7 @@
}
},
{
- "id": 7782,
+ "id": 8012,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19098,7 +19098,7 @@
}
},
{
- "id": 7783,
+ "id": 8013,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19107,7 +19107,7 @@
}
},
{
- "id": 7784,
+ "id": 8014,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19116,7 +19116,7 @@
}
},
{
- "id": 7785,
+ "id": 8015,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19125,7 +19125,7 @@
}
},
{
- "id": 7786,
+ "id": 8016,
"properties": {
"facing": "west",
"half": "top",
@@ -19134,7 +19134,7 @@
}
},
{
- "id": 7787,
+ "id": 8017,
"properties": {
"facing": "west",
"half": "top",
@@ -19143,7 +19143,7 @@
}
},
{
- "id": 7788,
+ "id": 8018,
"properties": {
"facing": "west",
"half": "top",
@@ -19152,7 +19152,7 @@
}
},
{
- "id": 7789,
+ "id": 8019,
"properties": {
"facing": "west",
"half": "top",
@@ -19161,7 +19161,7 @@
}
},
{
- "id": 7790,
+ "id": 8020,
"properties": {
"facing": "west",
"half": "top",
@@ -19170,7 +19170,7 @@
}
},
{
- "id": 7791,
+ "id": 8021,
"properties": {
"facing": "west",
"half": "top",
@@ -19179,7 +19179,7 @@
}
},
{
- "id": 7792,
+ "id": 8022,
"properties": {
"facing": "west",
"half": "top",
@@ -19188,7 +19188,7 @@
}
},
{
- "id": 7793,
+ "id": 8023,
"properties": {
"facing": "west",
"half": "top",
@@ -19197,7 +19197,7 @@
}
},
{
- "id": 7794,
+ "id": 8024,
"properties": {
"facing": "west",
"half": "top",
@@ -19206,7 +19206,7 @@
}
},
{
- "id": 7795,
+ "id": 8025,
"properties": {
"facing": "west",
"half": "top",
@@ -19215,7 +19215,7 @@
}
},
{
- "id": 7796,
+ "id": 8026,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19224,7 +19224,7 @@
}
},
{
- "id": 7797,
+ "id": 8027,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19233,7 +19233,7 @@
}
},
{
- "id": 7798,
+ "id": 8028,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19242,7 +19242,7 @@
}
},
{
- "id": 7799,
+ "id": 8029,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19251,7 +19251,7 @@
}
},
{
- "id": 7800,
+ "id": 8030,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19260,7 +19260,7 @@
}
},
{
- "id": 7801,
+ "id": 8031,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19269,7 +19269,7 @@
}
},
{
- "id": 7802,
+ "id": 8032,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19278,7 +19278,7 @@
}
},
{
- "id": 7803,
+ "id": 8033,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19287,7 +19287,7 @@
}
},
{
- "id": 7804,
+ "id": 8034,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19296,7 +19296,7 @@
}
},
{
- "id": 7805,
+ "id": 8035,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19305,7 +19305,7 @@
}
},
{
- "id": 7806,
+ "id": 8036,
"properties": {
"facing": "east",
"half": "top",
@@ -19314,7 +19314,7 @@
}
},
{
- "id": 7807,
+ "id": 8037,
"properties": {
"facing": "east",
"half": "top",
@@ -19323,7 +19323,7 @@
}
},
{
- "id": 7808,
+ "id": 8038,
"properties": {
"facing": "east",
"half": "top",
@@ -19332,7 +19332,7 @@
}
},
{
- "id": 7809,
+ "id": 8039,
"properties": {
"facing": "east",
"half": "top",
@@ -19341,7 +19341,7 @@
}
},
{
- "id": 7810,
+ "id": 8040,
"properties": {
"facing": "east",
"half": "top",
@@ -19350,7 +19350,7 @@
}
},
{
- "id": 7811,
+ "id": 8041,
"properties": {
"facing": "east",
"half": "top",
@@ -19359,7 +19359,7 @@
}
},
{
- "id": 7812,
+ "id": 8042,
"properties": {
"facing": "east",
"half": "top",
@@ -19368,7 +19368,7 @@
}
},
{
- "id": 7813,
+ "id": 8043,
"properties": {
"facing": "east",
"half": "top",
@@ -19377,7 +19377,7 @@
}
},
{
- "id": 7814,
+ "id": 8044,
"properties": {
"facing": "east",
"half": "top",
@@ -19386,7 +19386,7 @@
}
},
{
- "id": 7815,
+ "id": 8045,
"properties": {
"facing": "east",
"half": "top",
@@ -19395,7 +19395,7 @@
}
},
{
- "id": 7816,
+ "id": 8046,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19404,7 +19404,7 @@
}
},
{
- "id": 7817,
+ "id": 8047,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19413,7 +19413,7 @@
}
},
{
- "id": 7818,
+ "id": 8048,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19422,7 +19422,7 @@
}
},
{
- "id": 7819,
+ "id": 8049,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19431,7 +19431,7 @@
}
},
{
- "id": 7820,
+ "id": 8050,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19440,7 +19440,7 @@
}
},
{
- "id": 7821,
+ "id": 8051,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19449,7 +19449,7 @@
}
},
{
- "id": 7822,
+ "id": 8052,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19458,7 +19458,7 @@
}
},
{
- "id": 7823,
+ "id": 8053,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19467,7 +19467,7 @@
}
},
{
- "id": 7824,
+ "id": 8054,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19476,7 +19476,7 @@
}
},
{
- "id": 7825,
+ "id": 8055,
"properties": {
"facing": "east",
"half": "bottom",
@@ -19518,7 +19518,7 @@
},
"states": [
{
- "id": 6089,
+ "id": 6255,
"properties": {
"facing": "north",
"half": "top",
@@ -19528,7 +19528,7 @@
}
},
{
- "id": 6090,
+ "id": 6256,
"properties": {
"facing": "north",
"half": "top",
@@ -19538,7 +19538,7 @@
}
},
{
- "id": 6091,
+ "id": 6257,
"properties": {
"facing": "north",
"half": "top",
@@ -19548,7 +19548,7 @@
}
},
{
- "id": 6092,
+ "id": 6258,
"properties": {
"facing": "north",
"half": "top",
@@ -19558,7 +19558,7 @@
}
},
{
- "id": 6093,
+ "id": 6259,
"properties": {
"facing": "north",
"half": "top",
@@ -19568,7 +19568,7 @@
}
},
{
- "id": 6094,
+ "id": 6260,
"properties": {
"facing": "north",
"half": "top",
@@ -19578,7 +19578,7 @@
}
},
{
- "id": 6095,
+ "id": 6261,
"properties": {
"facing": "north",
"half": "top",
@@ -19588,7 +19588,7 @@
}
},
{
- "id": 6096,
+ "id": 6262,
"properties": {
"facing": "north",
"half": "top",
@@ -19598,7 +19598,7 @@
}
},
{
- "id": 6097,
+ "id": 6263,
"properties": {
"facing": "north",
"half": "bottom",
@@ -19608,7 +19608,7 @@
}
},
{
- "id": 6098,
+ "id": 6264,
"properties": {
"facing": "north",
"half": "bottom",
@@ -19618,7 +19618,7 @@
}
},
{
- "id": 6099,
+ "id": 6265,
"properties": {
"facing": "north",
"half": "bottom",
@@ -19628,7 +19628,7 @@
}
},
{
- "id": 6100,
+ "id": 6266,
"properties": {
"facing": "north",
"half": "bottom",
@@ -19638,7 +19638,7 @@
}
},
{
- "id": 6101,
+ "id": 6267,
"properties": {
"facing": "north",
"half": "bottom",
@@ -19648,7 +19648,7 @@
}
},
{
- "id": 6102,
+ "id": 6268,
"properties": {
"facing": "north",
"half": "bottom",
@@ -19658,7 +19658,7 @@
}
},
{
- "id": 6103,
+ "id": 6269,
"properties": {
"facing": "north",
"half": "bottom",
@@ -19669,7 +19669,7 @@
},
{
"default": true,
- "id": 6104,
+ "id": 6270,
"properties": {
"facing": "north",
"half": "bottom",
@@ -19679,7 +19679,7 @@
}
},
{
- "id": 6105,
+ "id": 6271,
"properties": {
"facing": "south",
"half": "top",
@@ -19689,7 +19689,7 @@
}
},
{
- "id": 6106,
+ "id": 6272,
"properties": {
"facing": "south",
"half": "top",
@@ -19699,7 +19699,7 @@
}
},
{
- "id": 6107,
+ "id": 6273,
"properties": {
"facing": "south",
"half": "top",
@@ -19709,7 +19709,7 @@
}
},
{
- "id": 6108,
+ "id": 6274,
"properties": {
"facing": "south",
"half": "top",
@@ -19719,7 +19719,7 @@
}
},
{
- "id": 6109,
+ "id": 6275,
"properties": {
"facing": "south",
"half": "top",
@@ -19729,7 +19729,7 @@
}
},
{
- "id": 6110,
+ "id": 6276,
"properties": {
"facing": "south",
"half": "top",
@@ -19739,7 +19739,7 @@
}
},
{
- "id": 6111,
+ "id": 6277,
"properties": {
"facing": "south",
"half": "top",
@@ -19749,7 +19749,7 @@
}
},
{
- "id": 6112,
+ "id": 6278,
"properties": {
"facing": "south",
"half": "top",
@@ -19759,7 +19759,7 @@
}
},
{
- "id": 6113,
+ "id": 6279,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19769,7 +19769,7 @@
}
},
{
- "id": 6114,
+ "id": 6280,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19779,7 +19779,7 @@
}
},
{
- "id": 6115,
+ "id": 6281,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19789,7 +19789,7 @@
}
},
{
- "id": 6116,
+ "id": 6282,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19799,7 +19799,7 @@
}
},
{
- "id": 6117,
+ "id": 6283,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19809,7 +19809,7 @@
}
},
{
- "id": 6118,
+ "id": 6284,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19819,7 +19819,7 @@
}
},
{
- "id": 6119,
+ "id": 6285,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19829,7 +19829,7 @@
}
},
{
- "id": 6120,
+ "id": 6286,
"properties": {
"facing": "south",
"half": "bottom",
@@ -19839,7 +19839,7 @@
}
},
{
- "id": 6121,
+ "id": 6287,
"properties": {
"facing": "west",
"half": "top",
@@ -19849,7 +19849,7 @@
}
},
{
- "id": 6122,
+ "id": 6288,
"properties": {
"facing": "west",
"half": "top",
@@ -19859,7 +19859,7 @@
}
},
{
- "id": 6123,
+ "id": 6289,
"properties": {
"facing": "west",
"half": "top",
@@ -19869,7 +19869,7 @@
}
},
{
- "id": 6124,
+ "id": 6290,
"properties": {
"facing": "west",
"half": "top",
@@ -19879,7 +19879,7 @@
}
},
{
- "id": 6125,
+ "id": 6291,
"properties": {
"facing": "west",
"half": "top",
@@ -19889,7 +19889,7 @@
}
},
{
- "id": 6126,
+ "id": 6292,
"properties": {
"facing": "west",
"half": "top",
@@ -19899,7 +19899,7 @@
}
},
{
- "id": 6127,
+ "id": 6293,
"properties": {
"facing": "west",
"half": "top",
@@ -19909,7 +19909,7 @@
}
},
{
- "id": 6128,
+ "id": 6294,
"properties": {
"facing": "west",
"half": "top",
@@ -19919,7 +19919,7 @@
}
},
{
- "id": 6129,
+ "id": 6295,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19929,7 +19929,7 @@
}
},
{
- "id": 6130,
+ "id": 6296,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19939,7 +19939,7 @@
}
},
{
- "id": 6131,
+ "id": 6297,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19949,7 +19949,7 @@
}
},
{
- "id": 6132,
+ "id": 6298,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19959,7 +19959,7 @@
}
},
{
- "id": 6133,
+ "id": 6299,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19969,7 +19969,7 @@
}
},
{
- "id": 6134,
+ "id": 6300,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19979,7 +19979,7 @@
}
},
{
- "id": 6135,
+ "id": 6301,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19989,7 +19989,7 @@
}
},
{
- "id": 6136,
+ "id": 6302,
"properties": {
"facing": "west",
"half": "bottom",
@@ -19999,7 +19999,7 @@
}
},
{
- "id": 6137,
+ "id": 6303,
"properties": {
"facing": "east",
"half": "top",
@@ -20009,7 +20009,7 @@
}
},
{
- "id": 6138,
+ "id": 6304,
"properties": {
"facing": "east",
"half": "top",
@@ -20019,7 +20019,7 @@
}
},
{
- "id": 6139,
+ "id": 6305,
"properties": {
"facing": "east",
"half": "top",
@@ -20029,7 +20029,7 @@
}
},
{
- "id": 6140,
+ "id": 6306,
"properties": {
"facing": "east",
"half": "top",
@@ -20039,7 +20039,7 @@
}
},
{
- "id": 6141,
+ "id": 6307,
"properties": {
"facing": "east",
"half": "top",
@@ -20049,7 +20049,7 @@
}
},
{
- "id": 6142,
+ "id": 6308,
"properties": {
"facing": "east",
"half": "top",
@@ -20059,7 +20059,7 @@
}
},
{
- "id": 6143,
+ "id": 6309,
"properties": {
"facing": "east",
"half": "top",
@@ -20069,7 +20069,7 @@
}
},
{
- "id": 6144,
+ "id": 6310,
"properties": {
"facing": "east",
"half": "top",
@@ -20079,7 +20079,7 @@
}
},
{
- "id": 6145,
+ "id": 6311,
"properties": {
"facing": "east",
"half": "bottom",
@@ -20089,7 +20089,7 @@
}
},
{
- "id": 6146,
+ "id": 6312,
"properties": {
"facing": "east",
"half": "bottom",
@@ -20099,7 +20099,7 @@
}
},
{
- "id": 6147,
+ "id": 6313,
"properties": {
"facing": "east",
"half": "bottom",
@@ -20109,7 +20109,7 @@
}
},
{
- "id": 6148,
+ "id": 6314,
"properties": {
"facing": "east",
"half": "bottom",
@@ -20119,7 +20119,7 @@
}
},
{
- "id": 6149,
+ "id": 6315,
"properties": {
"facing": "east",
"half": "bottom",
@@ -20129,7 +20129,7 @@
}
},
{
- "id": 6150,
+ "id": 6316,
"properties": {
"facing": "east",
"half": "bottom",
@@ -20139,7 +20139,7 @@
}
},
{
- "id": 6151,
+ "id": 6317,
"properties": {
"facing": "east",
"half": "bottom",
@@ -20149,7 +20149,7 @@
}
},
{
- "id": 6152,
+ "id": 6318,
"properties": {
"facing": "east",
"half": "bottom",
@@ -20180,7 +20180,7 @@
},
"states": [
{
- "id": 5554,
+ "id": 5710,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -20188,49 +20188,49 @@
},
{
"default": true,
- "id": 5555,
+ "id": 5711,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5556,
+ "id": 5712,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5557,
+ "id": 5713,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5558,
+ "id": 5714,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5559,
+ "id": 5715,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5560,
+ "id": 5716,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5561,
+ "id": 5717,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -20258,7 +20258,7 @@
},
"states": [
{
- "id": 4778,
+ "id": 4862,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -20266,49 +20266,49 @@
},
{
"default": true,
- "id": 4779,
+ "id": 4863,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4780,
+ "id": 4864,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4781,
+ "id": 4865,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4782,
+ "id": 4866,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4783,
+ "id": 4867,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4784,
+ "id": 4868,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4785,
+ "id": 4869,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -20330,20 +20330,20 @@
},
"states": [
{
- "id": 195,
+ "id": 207,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 196,
+ "id": 208,
"properties": {
"axis": "y"
}
},
{
- "id": 197,
+ "id": 209,
"properties": {
"axis": "z"
}
@@ -20379,97 +20379,97 @@
"states": [
{
"default": true,
- "id": 10999,
+ "id": 11334,
"properties": {
"rotation": "0"
}
},
{
- "id": 11000,
+ "id": 11335,
"properties": {
"rotation": "1"
}
},
{
- "id": 11001,
+ "id": 11336,
"properties": {
"rotation": "2"
}
},
{
- "id": 11002,
+ "id": 11337,
"properties": {
"rotation": "3"
}
},
{
- "id": 11003,
+ "id": 11338,
"properties": {
"rotation": "4"
}
},
{
- "id": 11004,
+ "id": 11339,
"properties": {
"rotation": "5"
}
},
{
- "id": 11005,
+ "id": 11340,
"properties": {
"rotation": "6"
}
},
{
- "id": 11006,
+ "id": 11341,
"properties": {
"rotation": "7"
}
},
{
- "id": 11007,
+ "id": 11342,
"properties": {
"rotation": "8"
}
},
{
- "id": 11008,
+ "id": 11343,
"properties": {
"rotation": "9"
}
},
{
- "id": 11009,
+ "id": 11344,
"properties": {
"rotation": "10"
}
},
{
- "id": 11010,
+ "id": 11345,
"properties": {
"rotation": "11"
}
},
{
- "id": 11011,
+ "id": 11346,
"properties": {
"rotation": "12"
}
},
{
- "id": 11012,
+ "id": 11347,
"properties": {
"rotation": "13"
}
},
{
- "id": 11013,
+ "id": 11348,
"properties": {
"rotation": "14"
}
},
{
- "id": 11014,
+ "id": 11349,
"properties": {
"rotation": "15"
}
@@ -20500,7 +20500,7 @@
},
"states": [
{
- "id": 1928,
+ "id": 1971,
"properties": {
"facing": "north",
"occupied": "true",
@@ -20508,7 +20508,7 @@
}
},
{
- "id": 1929,
+ "id": 1972,
"properties": {
"facing": "north",
"occupied": "true",
@@ -20516,7 +20516,7 @@
}
},
{
- "id": 1930,
+ "id": 1973,
"properties": {
"facing": "north",
"occupied": "false",
@@ -20525,7 +20525,7 @@
},
{
"default": true,
- "id": 1931,
+ "id": 1974,
"properties": {
"facing": "north",
"occupied": "false",
@@ -20533,7 +20533,7 @@
}
},
{
- "id": 1932,
+ "id": 1975,
"properties": {
"facing": "south",
"occupied": "true",
@@ -20541,7 +20541,7 @@
}
},
{
- "id": 1933,
+ "id": 1976,
"properties": {
"facing": "south",
"occupied": "true",
@@ -20549,7 +20549,7 @@
}
},
{
- "id": 1934,
+ "id": 1977,
"properties": {
"facing": "south",
"occupied": "false",
@@ -20557,7 +20557,7 @@
}
},
{
- "id": 1935,
+ "id": 1978,
"properties": {
"facing": "south",
"occupied": "false",
@@ -20565,7 +20565,7 @@
}
},
{
- "id": 1936,
+ "id": 1979,
"properties": {
"facing": "west",
"occupied": "true",
@@ -20573,7 +20573,7 @@
}
},
{
- "id": 1937,
+ "id": 1980,
"properties": {
"facing": "west",
"occupied": "true",
@@ -20581,7 +20581,7 @@
}
},
{
- "id": 1938,
+ "id": 1981,
"properties": {
"facing": "west",
"occupied": "false",
@@ -20589,7 +20589,7 @@
}
},
{
- "id": 1939,
+ "id": 1982,
"properties": {
"facing": "west",
"occupied": "false",
@@ -20597,7 +20597,7 @@
}
},
{
- "id": 1940,
+ "id": 1983,
"properties": {
"facing": "east",
"occupied": "true",
@@ -20605,7 +20605,7 @@
}
},
{
- "id": 1941,
+ "id": 1984,
"properties": {
"facing": "east",
"occupied": "true",
@@ -20613,7 +20613,7 @@
}
},
{
- "id": 1942,
+ "id": 1985,
"properties": {
"facing": "east",
"occupied": "false",
@@ -20621,7 +20621,7 @@
}
},
{
- "id": 1943,
+ "id": 1986,
"properties": {
"facing": "east",
"occupied": "false",
@@ -20653,7 +20653,7 @@
},
"states": [
{
- "id": 20981,
+ "id": 21450,
"properties": {
"candles": "1",
"lit": "true",
@@ -20661,7 +20661,7 @@
}
},
{
- "id": 20982,
+ "id": 21451,
"properties": {
"candles": "1",
"lit": "true",
@@ -20669,7 +20669,7 @@
}
},
{
- "id": 20983,
+ "id": 21452,
"properties": {
"candles": "1",
"lit": "false",
@@ -20678,7 +20678,7 @@
},
{
"default": true,
- "id": 20984,
+ "id": 21453,
"properties": {
"candles": "1",
"lit": "false",
@@ -20686,7 +20686,7 @@
}
},
{
- "id": 20985,
+ "id": 21454,
"properties": {
"candles": "2",
"lit": "true",
@@ -20694,7 +20694,7 @@
}
},
{
- "id": 20986,
+ "id": 21455,
"properties": {
"candles": "2",
"lit": "true",
@@ -20702,7 +20702,7 @@
}
},
{
- "id": 20987,
+ "id": 21456,
"properties": {
"candles": "2",
"lit": "false",
@@ -20710,7 +20710,7 @@
}
},
{
- "id": 20988,
+ "id": 21457,
"properties": {
"candles": "2",
"lit": "false",
@@ -20718,7 +20718,7 @@
}
},
{
- "id": 20989,
+ "id": 21458,
"properties": {
"candles": "3",
"lit": "true",
@@ -20726,7 +20726,7 @@
}
},
{
- "id": 20990,
+ "id": 21459,
"properties": {
"candles": "3",
"lit": "true",
@@ -20734,7 +20734,7 @@
}
},
{
- "id": 20991,
+ "id": 21460,
"properties": {
"candles": "3",
"lit": "false",
@@ -20742,7 +20742,7 @@
}
},
{
- "id": 20992,
+ "id": 21461,
"properties": {
"candles": "3",
"lit": "false",
@@ -20750,7 +20750,7 @@
}
},
{
- "id": 20993,
+ "id": 21462,
"properties": {
"candles": "4",
"lit": "true",
@@ -20758,7 +20758,7 @@
}
},
{
- "id": 20994,
+ "id": 21463,
"properties": {
"candles": "4",
"lit": "true",
@@ -20766,7 +20766,7 @@
}
},
{
- "id": 20995,
+ "id": 21464,
"properties": {
"candles": "4",
"lit": "false",
@@ -20774,7 +20774,7 @@
}
},
{
- "id": 20996,
+ "id": 21465,
"properties": {
"candles": "4",
"lit": "false",
@@ -20797,14 +20797,14 @@
},
"states": [
{
- "id": 21029,
+ "id": 21498,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 21030,
+ "id": 21499,
"properties": {
"lit": "false"
}
@@ -20820,7 +20820,7 @@
"states": [
{
"default": true,
- "id": 10743
+ "id": 11078
}
]
},
@@ -20832,7 +20832,7 @@
"states": [
{
"default": true,
- "id": 12743
+ "id": 13212
}
]
},
@@ -20845,7 +20845,7 @@
"states": [
{
"default": true,
- "id": 12759
+ "id": 13228
}
]
},
@@ -20865,25 +20865,25 @@
"states": [
{
"default": true,
- "id": 12724,
+ "id": 13193,
"properties": {
"facing": "north"
}
},
{
- "id": 12725,
+ "id": 13194,
"properties": {
"facing": "south"
}
},
{
- "id": 12726,
+ "id": 13195,
"properties": {
"facing": "west"
}
},
{
- "id": 12727,
+ "id": 13196,
"properties": {
"facing": "east"
}
@@ -20908,38 +20908,38 @@
},
"states": [
{
- "id": 12658,
+ "id": 13127,
"properties": {
"facing": "north"
}
},
{
- "id": 12659,
+ "id": 13128,
"properties": {
"facing": "east"
}
},
{
- "id": 12660,
+ "id": 13129,
"properties": {
"facing": "south"
}
},
{
- "id": 12661,
+ "id": 13130,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12662,
+ "id": 13131,
"properties": {
"facing": "up"
}
},
{
- "id": 12663,
+ "id": 13132,
"properties": {
"facing": "down"
}
@@ -20955,7 +20955,7 @@
"states": [
{
"default": true,
- "id": 5960
+ "id": 6126
}
]
},
@@ -20989,7 +20989,7 @@
},
"states": [
{
- "id": 9852,
+ "id": 10107,
"properties": {
"east": "true",
"north": "true",
@@ -20999,7 +20999,7 @@
}
},
{
- "id": 9853,
+ "id": 10108,
"properties": {
"east": "true",
"north": "true",
@@ -21009,7 +21009,7 @@
}
},
{
- "id": 9854,
+ "id": 10109,
"properties": {
"east": "true",
"north": "true",
@@ -21019,7 +21019,7 @@
}
},
{
- "id": 9855,
+ "id": 10110,
"properties": {
"east": "true",
"north": "true",
@@ -21029,7 +21029,7 @@
}
},
{
- "id": 9856,
+ "id": 10111,
"properties": {
"east": "true",
"north": "true",
@@ -21039,7 +21039,7 @@
}
},
{
- "id": 9857,
+ "id": 10112,
"properties": {
"east": "true",
"north": "true",
@@ -21049,7 +21049,7 @@
}
},
{
- "id": 9858,
+ "id": 10113,
"properties": {
"east": "true",
"north": "true",
@@ -21059,7 +21059,7 @@
}
},
{
- "id": 9859,
+ "id": 10114,
"properties": {
"east": "true",
"north": "true",
@@ -21069,7 +21069,7 @@
}
},
{
- "id": 9860,
+ "id": 10115,
"properties": {
"east": "true",
"north": "false",
@@ -21079,7 +21079,7 @@
}
},
{
- "id": 9861,
+ "id": 10116,
"properties": {
"east": "true",
"north": "false",
@@ -21089,7 +21089,7 @@
}
},
{
- "id": 9862,
+ "id": 10117,
"properties": {
"east": "true",
"north": "false",
@@ -21099,7 +21099,7 @@
}
},
{
- "id": 9863,
+ "id": 10118,
"properties": {
"east": "true",
"north": "false",
@@ -21109,7 +21109,7 @@
}
},
{
- "id": 9864,
+ "id": 10119,
"properties": {
"east": "true",
"north": "false",
@@ -21119,7 +21119,7 @@
}
},
{
- "id": 9865,
+ "id": 10120,
"properties": {
"east": "true",
"north": "false",
@@ -21129,7 +21129,7 @@
}
},
{
- "id": 9866,
+ "id": 10121,
"properties": {
"east": "true",
"north": "false",
@@ -21139,7 +21139,7 @@
}
},
{
- "id": 9867,
+ "id": 10122,
"properties": {
"east": "true",
"north": "false",
@@ -21149,7 +21149,7 @@
}
},
{
- "id": 9868,
+ "id": 10123,
"properties": {
"east": "false",
"north": "true",
@@ -21159,7 +21159,7 @@
}
},
{
- "id": 9869,
+ "id": 10124,
"properties": {
"east": "false",
"north": "true",
@@ -21169,7 +21169,7 @@
}
},
{
- "id": 9870,
+ "id": 10125,
"properties": {
"east": "false",
"north": "true",
@@ -21179,7 +21179,7 @@
}
},
{
- "id": 9871,
+ "id": 10126,
"properties": {
"east": "false",
"north": "true",
@@ -21189,7 +21189,7 @@
}
},
{
- "id": 9872,
+ "id": 10127,
"properties": {
"east": "false",
"north": "true",
@@ -21199,7 +21199,7 @@
}
},
{
- "id": 9873,
+ "id": 10128,
"properties": {
"east": "false",
"north": "true",
@@ -21209,7 +21209,7 @@
}
},
{
- "id": 9874,
+ "id": 10129,
"properties": {
"east": "false",
"north": "true",
@@ -21219,7 +21219,7 @@
}
},
{
- "id": 9875,
+ "id": 10130,
"properties": {
"east": "false",
"north": "true",
@@ -21229,7 +21229,7 @@
}
},
{
- "id": 9876,
+ "id": 10131,
"properties": {
"east": "false",
"north": "false",
@@ -21239,7 +21239,7 @@
}
},
{
- "id": 9877,
+ "id": 10132,
"properties": {
"east": "false",
"north": "false",
@@ -21249,7 +21249,7 @@
}
},
{
- "id": 9878,
+ "id": 10133,
"properties": {
"east": "false",
"north": "false",
@@ -21259,7 +21259,7 @@
}
},
{
- "id": 9879,
+ "id": 10134,
"properties": {
"east": "false",
"north": "false",
@@ -21269,7 +21269,7 @@
}
},
{
- "id": 9880,
+ "id": 10135,
"properties": {
"east": "false",
"north": "false",
@@ -21279,7 +21279,7 @@
}
},
{
- "id": 9881,
+ "id": 10136,
"properties": {
"east": "false",
"north": "false",
@@ -21289,7 +21289,7 @@
}
},
{
- "id": 9882,
+ "id": 10137,
"properties": {
"east": "false",
"north": "false",
@@ -21300,7 +21300,7 @@
},
{
"default": true,
- "id": 9883,
+ "id": 10138,
"properties": {
"east": "false",
"north": "false",
@@ -21319,7 +21319,7 @@
"states": [
{
"default": true,
- "id": 9371
+ "id": 9626
}
]
},
@@ -21340,25 +21340,25 @@
"states": [
{
"default": true,
- "id": 11075,
+ "id": 11410,
"properties": {
"facing": "north"
}
},
{
- "id": 11076,
+ "id": 11411,
"properties": {
"facing": "south"
}
},
{
- "id": 11077,
+ "id": 11412,
"properties": {
"facing": "west"
}
},
{
- "id": 11078,
+ "id": 11413,
"properties": {
"facing": "east"
}
@@ -21373,7 +21373,7 @@
"states": [
{
"default": true,
- "id": 2062
+ "id": 2105
}
]
},
@@ -21385,7 +21385,7 @@
"states": [
{
"default": true,
- "id": 19460
+ "id": 19929
}
]
},
@@ -21407,21 +21407,21 @@
},
"states": [
{
- "id": 19865,
+ "id": 20334,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 19866,
+ "id": 20335,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 19867,
+ "id": 20336,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -21429,21 +21429,21 @@
},
{
"default": true,
- "id": 19868,
+ "id": 20337,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 19869,
+ "id": 20338,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 19870,
+ "id": 20339,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -21484,7 +21484,7 @@
},
"states": [
{
- "id": 19461,
+ "id": 19930,
"properties": {
"facing": "north",
"half": "top",
@@ -21493,7 +21493,7 @@
}
},
{
- "id": 19462,
+ "id": 19931,
"properties": {
"facing": "north",
"half": "top",
@@ -21502,7 +21502,7 @@
}
},
{
- "id": 19463,
+ "id": 19932,
"properties": {
"facing": "north",
"half": "top",
@@ -21511,7 +21511,7 @@
}
},
{
- "id": 19464,
+ "id": 19933,
"properties": {
"facing": "north",
"half": "top",
@@ -21520,7 +21520,7 @@
}
},
{
- "id": 19465,
+ "id": 19934,
"properties": {
"facing": "north",
"half": "top",
@@ -21529,7 +21529,7 @@
}
},
{
- "id": 19466,
+ "id": 19935,
"properties": {
"facing": "north",
"half": "top",
@@ -21538,7 +21538,7 @@
}
},
{
- "id": 19467,
+ "id": 19936,
"properties": {
"facing": "north",
"half": "top",
@@ -21547,7 +21547,7 @@
}
},
{
- "id": 19468,
+ "id": 19937,
"properties": {
"facing": "north",
"half": "top",
@@ -21556,7 +21556,7 @@
}
},
{
- "id": 19469,
+ "id": 19938,
"properties": {
"facing": "north",
"half": "top",
@@ -21565,7 +21565,7 @@
}
},
{
- "id": 19470,
+ "id": 19939,
"properties": {
"facing": "north",
"half": "top",
@@ -21574,7 +21574,7 @@
}
},
{
- "id": 19471,
+ "id": 19940,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21584,7 +21584,7 @@
},
{
"default": true,
- "id": 19472,
+ "id": 19941,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21593,7 +21593,7 @@
}
},
{
- "id": 19473,
+ "id": 19942,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21602,7 +21602,7 @@
}
},
{
- "id": 19474,
+ "id": 19943,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21611,7 +21611,7 @@
}
},
{
- "id": 19475,
+ "id": 19944,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21620,7 +21620,7 @@
}
},
{
- "id": 19476,
+ "id": 19945,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21629,7 +21629,7 @@
}
},
{
- "id": 19477,
+ "id": 19946,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21638,7 +21638,7 @@
}
},
{
- "id": 19478,
+ "id": 19947,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21647,7 +21647,7 @@
}
},
{
- "id": 19479,
+ "id": 19948,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21656,7 +21656,7 @@
}
},
{
- "id": 19480,
+ "id": 19949,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21665,7 +21665,7 @@
}
},
{
- "id": 19481,
+ "id": 19950,
"properties": {
"facing": "south",
"half": "top",
@@ -21674,7 +21674,7 @@
}
},
{
- "id": 19482,
+ "id": 19951,
"properties": {
"facing": "south",
"half": "top",
@@ -21683,7 +21683,7 @@
}
},
{
- "id": 19483,
+ "id": 19952,
"properties": {
"facing": "south",
"half": "top",
@@ -21692,7 +21692,7 @@
}
},
{
- "id": 19484,
+ "id": 19953,
"properties": {
"facing": "south",
"half": "top",
@@ -21701,7 +21701,7 @@
}
},
{
- "id": 19485,
+ "id": 19954,
"properties": {
"facing": "south",
"half": "top",
@@ -21710,7 +21710,7 @@
}
},
{
- "id": 19486,
+ "id": 19955,
"properties": {
"facing": "south",
"half": "top",
@@ -21719,7 +21719,7 @@
}
},
{
- "id": 19487,
+ "id": 19956,
"properties": {
"facing": "south",
"half": "top",
@@ -21728,7 +21728,7 @@
}
},
{
- "id": 19488,
+ "id": 19957,
"properties": {
"facing": "south",
"half": "top",
@@ -21737,7 +21737,7 @@
}
},
{
- "id": 19489,
+ "id": 19958,
"properties": {
"facing": "south",
"half": "top",
@@ -21746,7 +21746,7 @@
}
},
{
- "id": 19490,
+ "id": 19959,
"properties": {
"facing": "south",
"half": "top",
@@ -21755,7 +21755,7 @@
}
},
{
- "id": 19491,
+ "id": 19960,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21764,7 +21764,7 @@
}
},
{
- "id": 19492,
+ "id": 19961,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21773,7 +21773,7 @@
}
},
{
- "id": 19493,
+ "id": 19962,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21782,7 +21782,7 @@
}
},
{
- "id": 19494,
+ "id": 19963,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21791,7 +21791,7 @@
}
},
{
- "id": 19495,
+ "id": 19964,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21800,7 +21800,7 @@
}
},
{
- "id": 19496,
+ "id": 19965,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21809,7 +21809,7 @@
}
},
{
- "id": 19497,
+ "id": 19966,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21818,7 +21818,7 @@
}
},
{
- "id": 19498,
+ "id": 19967,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21827,7 +21827,7 @@
}
},
{
- "id": 19499,
+ "id": 19968,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21836,7 +21836,7 @@
}
},
{
- "id": 19500,
+ "id": 19969,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21845,7 +21845,7 @@
}
},
{
- "id": 19501,
+ "id": 19970,
"properties": {
"facing": "west",
"half": "top",
@@ -21854,7 +21854,7 @@
}
},
{
- "id": 19502,
+ "id": 19971,
"properties": {
"facing": "west",
"half": "top",
@@ -21863,7 +21863,7 @@
}
},
{
- "id": 19503,
+ "id": 19972,
"properties": {
"facing": "west",
"half": "top",
@@ -21872,7 +21872,7 @@
}
},
{
- "id": 19504,
+ "id": 19973,
"properties": {
"facing": "west",
"half": "top",
@@ -21881,7 +21881,7 @@
}
},
{
- "id": 19505,
+ "id": 19974,
"properties": {
"facing": "west",
"half": "top",
@@ -21890,7 +21890,7 @@
}
},
{
- "id": 19506,
+ "id": 19975,
"properties": {
"facing": "west",
"half": "top",
@@ -21899,7 +21899,7 @@
}
},
{
- "id": 19507,
+ "id": 19976,
"properties": {
"facing": "west",
"half": "top",
@@ -21908,7 +21908,7 @@
}
},
{
- "id": 19508,
+ "id": 19977,
"properties": {
"facing": "west",
"half": "top",
@@ -21917,7 +21917,7 @@
}
},
{
- "id": 19509,
+ "id": 19978,
"properties": {
"facing": "west",
"half": "top",
@@ -21926,7 +21926,7 @@
}
},
{
- "id": 19510,
+ "id": 19979,
"properties": {
"facing": "west",
"half": "top",
@@ -21935,7 +21935,7 @@
}
},
{
- "id": 19511,
+ "id": 19980,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21944,7 +21944,7 @@
}
},
{
- "id": 19512,
+ "id": 19981,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21953,7 +21953,7 @@
}
},
{
- "id": 19513,
+ "id": 19982,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21962,7 +21962,7 @@
}
},
{
- "id": 19514,
+ "id": 19983,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21971,7 +21971,7 @@
}
},
{
- "id": 19515,
+ "id": 19984,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21980,7 +21980,7 @@
}
},
{
- "id": 19516,
+ "id": 19985,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21989,7 +21989,7 @@
}
},
{
- "id": 19517,
+ "id": 19986,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21998,7 +21998,7 @@
}
},
{
- "id": 19518,
+ "id": 19987,
"properties": {
"facing": "west",
"half": "bottom",
@@ -22007,7 +22007,7 @@
}
},
{
- "id": 19519,
+ "id": 19988,
"properties": {
"facing": "west",
"half": "bottom",
@@ -22016,7 +22016,7 @@
}
},
{
- "id": 19520,
+ "id": 19989,
"properties": {
"facing": "west",
"half": "bottom",
@@ -22025,7 +22025,7 @@
}
},
{
- "id": 19521,
+ "id": 19990,
"properties": {
"facing": "east",
"half": "top",
@@ -22034,7 +22034,7 @@
}
},
{
- "id": 19522,
+ "id": 19991,
"properties": {
"facing": "east",
"half": "top",
@@ -22043,7 +22043,7 @@
}
},
{
- "id": 19523,
+ "id": 19992,
"properties": {
"facing": "east",
"half": "top",
@@ -22052,7 +22052,7 @@
}
},
{
- "id": 19524,
+ "id": 19993,
"properties": {
"facing": "east",
"half": "top",
@@ -22061,7 +22061,7 @@
}
},
{
- "id": 19525,
+ "id": 19994,
"properties": {
"facing": "east",
"half": "top",
@@ -22070,7 +22070,7 @@
}
},
{
- "id": 19526,
+ "id": 19995,
"properties": {
"facing": "east",
"half": "top",
@@ -22079,7 +22079,7 @@
}
},
{
- "id": 19527,
+ "id": 19996,
"properties": {
"facing": "east",
"half": "top",
@@ -22088,7 +22088,7 @@
}
},
{
- "id": 19528,
+ "id": 19997,
"properties": {
"facing": "east",
"half": "top",
@@ -22097,7 +22097,7 @@
}
},
{
- "id": 19529,
+ "id": 19998,
"properties": {
"facing": "east",
"half": "top",
@@ -22106,7 +22106,7 @@
}
},
{
- "id": 19530,
+ "id": 19999,
"properties": {
"facing": "east",
"half": "top",
@@ -22115,7 +22115,7 @@
}
},
{
- "id": 19531,
+ "id": 20000,
"properties": {
"facing": "east",
"half": "bottom",
@@ -22124,7 +22124,7 @@
}
},
{
- "id": 19532,
+ "id": 20001,
"properties": {
"facing": "east",
"half": "bottom",
@@ -22133,7 +22133,7 @@
}
},
{
- "id": 19533,
+ "id": 20002,
"properties": {
"facing": "east",
"half": "bottom",
@@ -22142,7 +22142,7 @@
}
},
{
- "id": 19534,
+ "id": 20003,
"properties": {
"facing": "east",
"half": "bottom",
@@ -22151,7 +22151,7 @@
}
},
{
- "id": 19535,
+ "id": 20004,
"properties": {
"facing": "east",
"half": "bottom",
@@ -22160,7 +22160,7 @@
}
},
{
- "id": 19536,
+ "id": 20005,
"properties": {
"facing": "east",
"half": "bottom",
@@ -22169,7 +22169,7 @@
}
},
{
- "id": 19537,
+ "id": 20006,
"properties": {
"facing": "east",
"half": "bottom",
@@ -22178,7 +22178,7 @@
}
},
{
- "id": 19538,
+ "id": 20007,
"properties": {
"facing": "east",
"half": "bottom",
@@ -22187,7 +22187,7 @@
}
},
{
- "id": 19539,
+ "id": 20008,
"properties": {
"facing": "east",
"half": "bottom",
@@ -22196,7 +22196,7 @@
}
},
{
- "id": 19540,
+ "id": 20009,
"properties": {
"facing": "east",
"half": "bottom",
@@ -22243,7 +22243,7 @@
},
"states": [
{
- "id": 19541,
+ "id": 20010,
"properties": {
"east": "none",
"north": "none",
@@ -22254,7 +22254,7 @@
}
},
{
- "id": 19542,
+ "id": 20011,
"properties": {
"east": "none",
"north": "none",
@@ -22265,7 +22265,7 @@
}
},
{
- "id": 19543,
+ "id": 20012,
"properties": {
"east": "none",
"north": "none",
@@ -22277,7 +22277,7 @@
},
{
"default": true,
- "id": 19544,
+ "id": 20013,
"properties": {
"east": "none",
"north": "none",
@@ -22288,7 +22288,7 @@
}
},
{
- "id": 19545,
+ "id": 20014,
"properties": {
"east": "none",
"north": "none",
@@ -22299,7 +22299,7 @@
}
},
{
- "id": 19546,
+ "id": 20015,
"properties": {
"east": "none",
"north": "none",
@@ -22310,7 +22310,7 @@
}
},
{
- "id": 19547,
+ "id": 20016,
"properties": {
"east": "none",
"north": "none",
@@ -22321,7 +22321,7 @@
}
},
{
- "id": 19548,
+ "id": 20017,
"properties": {
"east": "none",
"north": "none",
@@ -22332,7 +22332,7 @@
}
},
{
- "id": 19549,
+ "id": 20018,
"properties": {
"east": "none",
"north": "none",
@@ -22343,7 +22343,7 @@
}
},
{
- "id": 19550,
+ "id": 20019,
"properties": {
"east": "none",
"north": "none",
@@ -22354,7 +22354,7 @@
}
},
{
- "id": 19551,
+ "id": 20020,
"properties": {
"east": "none",
"north": "none",
@@ -22365,7 +22365,7 @@
}
},
{
- "id": 19552,
+ "id": 20021,
"properties": {
"east": "none",
"north": "none",
@@ -22376,7 +22376,7 @@
}
},
{
- "id": 19553,
+ "id": 20022,
"properties": {
"east": "none",
"north": "none",
@@ -22387,7 +22387,7 @@
}
},
{
- "id": 19554,
+ "id": 20023,
"properties": {
"east": "none",
"north": "none",
@@ -22398,7 +22398,7 @@
}
},
{
- "id": 19555,
+ "id": 20024,
"properties": {
"east": "none",
"north": "none",
@@ -22409,7 +22409,7 @@
}
},
{
- "id": 19556,
+ "id": 20025,
"properties": {
"east": "none",
"north": "none",
@@ -22420,7 +22420,7 @@
}
},
{
- "id": 19557,
+ "id": 20026,
"properties": {
"east": "none",
"north": "none",
@@ -22431,7 +22431,7 @@
}
},
{
- "id": 19558,
+ "id": 20027,
"properties": {
"east": "none",
"north": "none",
@@ -22442,7 +22442,7 @@
}
},
{
- "id": 19559,
+ "id": 20028,
"properties": {
"east": "none",
"north": "none",
@@ -22453,7 +22453,7 @@
}
},
{
- "id": 19560,
+ "id": 20029,
"properties": {
"east": "none",
"north": "none",
@@ -22464,7 +22464,7 @@
}
},
{
- "id": 19561,
+ "id": 20030,
"properties": {
"east": "none",
"north": "none",
@@ -22475,7 +22475,7 @@
}
},
{
- "id": 19562,
+ "id": 20031,
"properties": {
"east": "none",
"north": "none",
@@ -22486,7 +22486,7 @@
}
},
{
- "id": 19563,
+ "id": 20032,
"properties": {
"east": "none",
"north": "none",
@@ -22497,7 +22497,7 @@
}
},
{
- "id": 19564,
+ "id": 20033,
"properties": {
"east": "none",
"north": "none",
@@ -22508,7 +22508,7 @@
}
},
{
- "id": 19565,
+ "id": 20034,
"properties": {
"east": "none",
"north": "none",
@@ -22519,7 +22519,7 @@
}
},
{
- "id": 19566,
+ "id": 20035,
"properties": {
"east": "none",
"north": "none",
@@ -22530,7 +22530,7 @@
}
},
{
- "id": 19567,
+ "id": 20036,
"properties": {
"east": "none",
"north": "none",
@@ -22541,7 +22541,7 @@
}
},
{
- "id": 19568,
+ "id": 20037,
"properties": {
"east": "none",
"north": "none",
@@ -22552,7 +22552,7 @@
}
},
{
- "id": 19569,
+ "id": 20038,
"properties": {
"east": "none",
"north": "none",
@@ -22563,7 +22563,7 @@
}
},
{
- "id": 19570,
+ "id": 20039,
"properties": {
"east": "none",
"north": "none",
@@ -22574,7 +22574,7 @@
}
},
{
- "id": 19571,
+ "id": 20040,
"properties": {
"east": "none",
"north": "none",
@@ -22585,7 +22585,7 @@
}
},
{
- "id": 19572,
+ "id": 20041,
"properties": {
"east": "none",
"north": "none",
@@ -22596,7 +22596,7 @@
}
},
{
- "id": 19573,
+ "id": 20042,
"properties": {
"east": "none",
"north": "none",
@@ -22607,7 +22607,7 @@
}
},
{
- "id": 19574,
+ "id": 20043,
"properties": {
"east": "none",
"north": "none",
@@ -22618,7 +22618,7 @@
}
},
{
- "id": 19575,
+ "id": 20044,
"properties": {
"east": "none",
"north": "none",
@@ -22629,7 +22629,7 @@
}
},
{
- "id": 19576,
+ "id": 20045,
"properties": {
"east": "none",
"north": "none",
@@ -22640,7 +22640,7 @@
}
},
{
- "id": 19577,
+ "id": 20046,
"properties": {
"east": "none",
"north": "low",
@@ -22651,7 +22651,7 @@
}
},
{
- "id": 19578,
+ "id": 20047,
"properties": {
"east": "none",
"north": "low",
@@ -22662,7 +22662,7 @@
}
},
{
- "id": 19579,
+ "id": 20048,
"properties": {
"east": "none",
"north": "low",
@@ -22673,7 +22673,7 @@
}
},
{
- "id": 19580,
+ "id": 20049,
"properties": {
"east": "none",
"north": "low",
@@ -22684,7 +22684,7 @@
}
},
{
- "id": 19581,
+ "id": 20050,
"properties": {
"east": "none",
"north": "low",
@@ -22695,7 +22695,7 @@
}
},
{
- "id": 19582,
+ "id": 20051,
"properties": {
"east": "none",
"north": "low",
@@ -22706,7 +22706,7 @@
}
},
{
- "id": 19583,
+ "id": 20052,
"properties": {
"east": "none",
"north": "low",
@@ -22717,7 +22717,7 @@
}
},
{
- "id": 19584,
+ "id": 20053,
"properties": {
"east": "none",
"north": "low",
@@ -22728,7 +22728,7 @@
}
},
{
- "id": 19585,
+ "id": 20054,
"properties": {
"east": "none",
"north": "low",
@@ -22739,7 +22739,7 @@
}
},
{
- "id": 19586,
+ "id": 20055,
"properties": {
"east": "none",
"north": "low",
@@ -22750,7 +22750,7 @@
}
},
{
- "id": 19587,
+ "id": 20056,
"properties": {
"east": "none",
"north": "low",
@@ -22761,7 +22761,7 @@
}
},
{
- "id": 19588,
+ "id": 20057,
"properties": {
"east": "none",
"north": "low",
@@ -22772,7 +22772,7 @@
}
},
{
- "id": 19589,
+ "id": 20058,
"properties": {
"east": "none",
"north": "low",
@@ -22783,7 +22783,7 @@
}
},
{
- "id": 19590,
+ "id": 20059,
"properties": {
"east": "none",
"north": "low",
@@ -22794,7 +22794,7 @@
}
},
{
- "id": 19591,
+ "id": 20060,
"properties": {
"east": "none",
"north": "low",
@@ -22805,7 +22805,7 @@
}
},
{
- "id": 19592,
+ "id": 20061,
"properties": {
"east": "none",
"north": "low",
@@ -22816,7 +22816,7 @@
}
},
{
- "id": 19593,
+ "id": 20062,
"properties": {
"east": "none",
"north": "low",
@@ -22827,7 +22827,7 @@
}
},
{
- "id": 19594,
+ "id": 20063,
"properties": {
"east": "none",
"north": "low",
@@ -22838,7 +22838,7 @@
}
},
{
- "id": 19595,
+ "id": 20064,
"properties": {
"east": "none",
"north": "low",
@@ -22849,7 +22849,7 @@
}
},
{
- "id": 19596,
+ "id": 20065,
"properties": {
"east": "none",
"north": "low",
@@ -22860,7 +22860,7 @@
}
},
{
- "id": 19597,
+ "id": 20066,
"properties": {
"east": "none",
"north": "low",
@@ -22871,7 +22871,7 @@
}
},
{
- "id": 19598,
+ "id": 20067,
"properties": {
"east": "none",
"north": "low",
@@ -22882,7 +22882,7 @@
}
},
{
- "id": 19599,
+ "id": 20068,
"properties": {
"east": "none",
"north": "low",
@@ -22893,7 +22893,7 @@
}
},
{
- "id": 19600,
+ "id": 20069,
"properties": {
"east": "none",
"north": "low",
@@ -22904,7 +22904,7 @@
}
},
{
- "id": 19601,
+ "id": 20070,
"properties": {
"east": "none",
"north": "low",
@@ -22915,7 +22915,7 @@
}
},
{
- "id": 19602,
+ "id": 20071,
"properties": {
"east": "none",
"north": "low",
@@ -22926,7 +22926,7 @@
}
},
{
- "id": 19603,
+ "id": 20072,
"properties": {
"east": "none",
"north": "low",
@@ -22937,7 +22937,7 @@
}
},
{
- "id": 19604,
+ "id": 20073,
"properties": {
"east": "none",
"north": "low",
@@ -22948,7 +22948,7 @@
}
},
{
- "id": 19605,
+ "id": 20074,
"properties": {
"east": "none",
"north": "low",
@@ -22959,7 +22959,7 @@
}
},
{
- "id": 19606,
+ "id": 20075,
"properties": {
"east": "none",
"north": "low",
@@ -22970,7 +22970,7 @@
}
},
{
- "id": 19607,
+ "id": 20076,
"properties": {
"east": "none",
"north": "low",
@@ -22981,7 +22981,7 @@
}
},
{
- "id": 19608,
+ "id": 20077,
"properties": {
"east": "none",
"north": "low",
@@ -22992,7 +22992,7 @@
}
},
{
- "id": 19609,
+ "id": 20078,
"properties": {
"east": "none",
"north": "low",
@@ -23003,7 +23003,7 @@
}
},
{
- "id": 19610,
+ "id": 20079,
"properties": {
"east": "none",
"north": "low",
@@ -23014,7 +23014,7 @@
}
},
{
- "id": 19611,
+ "id": 20080,
"properties": {
"east": "none",
"north": "low",
@@ -23025,7 +23025,7 @@
}
},
{
- "id": 19612,
+ "id": 20081,
"properties": {
"east": "none",
"north": "low",
@@ -23036,7 +23036,7 @@
}
},
{
- "id": 19613,
+ "id": 20082,
"properties": {
"east": "none",
"north": "tall",
@@ -23047,7 +23047,7 @@
}
},
{
- "id": 19614,
+ "id": 20083,
"properties": {
"east": "none",
"north": "tall",
@@ -23058,7 +23058,7 @@
}
},
{
- "id": 19615,
+ "id": 20084,
"properties": {
"east": "none",
"north": "tall",
@@ -23069,7 +23069,7 @@
}
},
{
- "id": 19616,
+ "id": 20085,
"properties": {
"east": "none",
"north": "tall",
@@ -23080,7 +23080,7 @@
}
},
{
- "id": 19617,
+ "id": 20086,
"properties": {
"east": "none",
"north": "tall",
@@ -23091,7 +23091,7 @@
}
},
{
- "id": 19618,
+ "id": 20087,
"properties": {
"east": "none",
"north": "tall",
@@ -23102,7 +23102,7 @@
}
},
{
- "id": 19619,
+ "id": 20088,
"properties": {
"east": "none",
"north": "tall",
@@ -23113,7 +23113,7 @@
}
},
{
- "id": 19620,
+ "id": 20089,
"properties": {
"east": "none",
"north": "tall",
@@ -23124,7 +23124,7 @@
}
},
{
- "id": 19621,
+ "id": 20090,
"properties": {
"east": "none",
"north": "tall",
@@ -23135,7 +23135,7 @@
}
},
{
- "id": 19622,
+ "id": 20091,
"properties": {
"east": "none",
"north": "tall",
@@ -23146,7 +23146,7 @@
}
},
{
- "id": 19623,
+ "id": 20092,
"properties": {
"east": "none",
"north": "tall",
@@ -23157,7 +23157,7 @@
}
},
{
- "id": 19624,
+ "id": 20093,
"properties": {
"east": "none",
"north": "tall",
@@ -23168,7 +23168,7 @@
}
},
{
- "id": 19625,
+ "id": 20094,
"properties": {
"east": "none",
"north": "tall",
@@ -23179,7 +23179,7 @@
}
},
{
- "id": 19626,
+ "id": 20095,
"properties": {
"east": "none",
"north": "tall",
@@ -23190,7 +23190,7 @@
}
},
{
- "id": 19627,
+ "id": 20096,
"properties": {
"east": "none",
"north": "tall",
@@ -23201,7 +23201,7 @@
}
},
{
- "id": 19628,
+ "id": 20097,
"properties": {
"east": "none",
"north": "tall",
@@ -23212,7 +23212,7 @@
}
},
{
- "id": 19629,
+ "id": 20098,
"properties": {
"east": "none",
"north": "tall",
@@ -23223,7 +23223,7 @@
}
},
{
- "id": 19630,
+ "id": 20099,
"properties": {
"east": "none",
"north": "tall",
@@ -23234,7 +23234,7 @@
}
},
{
- "id": 19631,
+ "id": 20100,
"properties": {
"east": "none",
"north": "tall",
@@ -23245,7 +23245,7 @@
}
},
{
- "id": 19632,
+ "id": 20101,
"properties": {
"east": "none",
"north": "tall",
@@ -23256,7 +23256,7 @@
}
},
{
- "id": 19633,
+ "id": 20102,
"properties": {
"east": "none",
"north": "tall",
@@ -23267,7 +23267,7 @@
}
},
{
- "id": 19634,
+ "id": 20103,
"properties": {
"east": "none",
"north": "tall",
@@ -23278,7 +23278,7 @@
}
},
{
- "id": 19635,
+ "id": 20104,
"properties": {
"east": "none",
"north": "tall",
@@ -23289,7 +23289,7 @@
}
},
{
- "id": 19636,
+ "id": 20105,
"properties": {
"east": "none",
"north": "tall",
@@ -23300,7 +23300,7 @@
}
},
{
- "id": 19637,
+ "id": 20106,
"properties": {
"east": "none",
"north": "tall",
@@ -23311,7 +23311,7 @@
}
},
{
- "id": 19638,
+ "id": 20107,
"properties": {
"east": "none",
"north": "tall",
@@ -23322,7 +23322,7 @@
}
},
{
- "id": 19639,
+ "id": 20108,
"properties": {
"east": "none",
"north": "tall",
@@ -23333,7 +23333,7 @@
}
},
{
- "id": 19640,
+ "id": 20109,
"properties": {
"east": "none",
"north": "tall",
@@ -23344,7 +23344,7 @@
}
},
{
- "id": 19641,
+ "id": 20110,
"properties": {
"east": "none",
"north": "tall",
@@ -23355,7 +23355,7 @@
}
},
{
- "id": 19642,
+ "id": 20111,
"properties": {
"east": "none",
"north": "tall",
@@ -23366,7 +23366,7 @@
}
},
{
- "id": 19643,
+ "id": 20112,
"properties": {
"east": "none",
"north": "tall",
@@ -23377,7 +23377,7 @@
}
},
{
- "id": 19644,
+ "id": 20113,
"properties": {
"east": "none",
"north": "tall",
@@ -23388,7 +23388,7 @@
}
},
{
- "id": 19645,
+ "id": 20114,
"properties": {
"east": "none",
"north": "tall",
@@ -23399,7 +23399,7 @@
}
},
{
- "id": 19646,
+ "id": 20115,
"properties": {
"east": "none",
"north": "tall",
@@ -23410,7 +23410,7 @@
}
},
{
- "id": 19647,
+ "id": 20116,
"properties": {
"east": "none",
"north": "tall",
@@ -23421,7 +23421,7 @@
}
},
{
- "id": 19648,
+ "id": 20117,
"properties": {
"east": "none",
"north": "tall",
@@ -23432,7 +23432,7 @@
}
},
{
- "id": 19649,
+ "id": 20118,
"properties": {
"east": "low",
"north": "none",
@@ -23443,7 +23443,7 @@
}
},
{
- "id": 19650,
+ "id": 20119,
"properties": {
"east": "low",
"north": "none",
@@ -23454,7 +23454,7 @@
}
},
{
- "id": 19651,
+ "id": 20120,
"properties": {
"east": "low",
"north": "none",
@@ -23465,7 +23465,7 @@
}
},
{
- "id": 19652,
+ "id": 20121,
"properties": {
"east": "low",
"north": "none",
@@ -23476,7 +23476,7 @@
}
},
{
- "id": 19653,
+ "id": 20122,
"properties": {
"east": "low",
"north": "none",
@@ -23487,7 +23487,7 @@
}
},
{
- "id": 19654,
+ "id": 20123,
"properties": {
"east": "low",
"north": "none",
@@ -23498,7 +23498,7 @@
}
},
{
- "id": 19655,
+ "id": 20124,
"properties": {
"east": "low",
"north": "none",
@@ -23509,7 +23509,7 @@
}
},
{
- "id": 19656,
+ "id": 20125,
"properties": {
"east": "low",
"north": "none",
@@ -23520,7 +23520,7 @@
}
},
{
- "id": 19657,
+ "id": 20126,
"properties": {
"east": "low",
"north": "none",
@@ -23531,7 +23531,7 @@
}
},
{
- "id": 19658,
+ "id": 20127,
"properties": {
"east": "low",
"north": "none",
@@ -23542,7 +23542,7 @@
}
},
{
- "id": 19659,
+ "id": 20128,
"properties": {
"east": "low",
"north": "none",
@@ -23553,7 +23553,7 @@
}
},
{
- "id": 19660,
+ "id": 20129,
"properties": {
"east": "low",
"north": "none",
@@ -23564,7 +23564,7 @@
}
},
{
- "id": 19661,
+ "id": 20130,
"properties": {
"east": "low",
"north": "none",
@@ -23575,7 +23575,7 @@
}
},
{
- "id": 19662,
+ "id": 20131,
"properties": {
"east": "low",
"north": "none",
@@ -23586,7 +23586,7 @@
}
},
{
- "id": 19663,
+ "id": 20132,
"properties": {
"east": "low",
"north": "none",
@@ -23597,7 +23597,7 @@
}
},
{
- "id": 19664,
+ "id": 20133,
"properties": {
"east": "low",
"north": "none",
@@ -23608,7 +23608,7 @@
}
},
{
- "id": 19665,
+ "id": 20134,
"properties": {
"east": "low",
"north": "none",
@@ -23619,7 +23619,7 @@
}
},
{
- "id": 19666,
+ "id": 20135,
"properties": {
"east": "low",
"north": "none",
@@ -23630,7 +23630,7 @@
}
},
{
- "id": 19667,
+ "id": 20136,
"properties": {
"east": "low",
"north": "none",
@@ -23641,7 +23641,7 @@
}
},
{
- "id": 19668,
+ "id": 20137,
"properties": {
"east": "low",
"north": "none",
@@ -23652,7 +23652,7 @@
}
},
{
- "id": 19669,
+ "id": 20138,
"properties": {
"east": "low",
"north": "none",
@@ -23663,7 +23663,7 @@
}
},
{
- "id": 19670,
+ "id": 20139,
"properties": {
"east": "low",
"north": "none",
@@ -23674,7 +23674,7 @@
}
},
{
- "id": 19671,
+ "id": 20140,
"properties": {
"east": "low",
"north": "none",
@@ -23685,7 +23685,7 @@
}
},
{
- "id": 19672,
+ "id": 20141,
"properties": {
"east": "low",
"north": "none",
@@ -23696,7 +23696,7 @@
}
},
{
- "id": 19673,
+ "id": 20142,
"properties": {
"east": "low",
"north": "none",
@@ -23707,7 +23707,7 @@
}
},
{
- "id": 19674,
+ "id": 20143,
"properties": {
"east": "low",
"north": "none",
@@ -23718,7 +23718,7 @@
}
},
{
- "id": 19675,
+ "id": 20144,
"properties": {
"east": "low",
"north": "none",
@@ -23729,7 +23729,7 @@
}
},
{
- "id": 19676,
+ "id": 20145,
"properties": {
"east": "low",
"north": "none",
@@ -23740,7 +23740,7 @@
}
},
{
- "id": 19677,
+ "id": 20146,
"properties": {
"east": "low",
"north": "none",
@@ -23751,7 +23751,7 @@
}
},
{
- "id": 19678,
+ "id": 20147,
"properties": {
"east": "low",
"north": "none",
@@ -23762,7 +23762,7 @@
}
},
{
- "id": 19679,
+ "id": 20148,
"properties": {
"east": "low",
"north": "none",
@@ -23773,7 +23773,7 @@
}
},
{
- "id": 19680,
+ "id": 20149,
"properties": {
"east": "low",
"north": "none",
@@ -23784,7 +23784,7 @@
}
},
{
- "id": 19681,
+ "id": 20150,
"properties": {
"east": "low",
"north": "none",
@@ -23795,7 +23795,7 @@
}
},
{
- "id": 19682,
+ "id": 20151,
"properties": {
"east": "low",
"north": "none",
@@ -23806,7 +23806,7 @@
}
},
{
- "id": 19683,
+ "id": 20152,
"properties": {
"east": "low",
"north": "none",
@@ -23817,7 +23817,7 @@
}
},
{
- "id": 19684,
+ "id": 20153,
"properties": {
"east": "low",
"north": "none",
@@ -23828,7 +23828,7 @@
}
},
{
- "id": 19685,
+ "id": 20154,
"properties": {
"east": "low",
"north": "low",
@@ -23839,7 +23839,7 @@
}
},
{
- "id": 19686,
+ "id": 20155,
"properties": {
"east": "low",
"north": "low",
@@ -23850,7 +23850,7 @@
}
},
{
- "id": 19687,
+ "id": 20156,
"properties": {
"east": "low",
"north": "low",
@@ -23861,7 +23861,7 @@
}
},
{
- "id": 19688,
+ "id": 20157,
"properties": {
"east": "low",
"north": "low",
@@ -23872,7 +23872,7 @@
}
},
{
- "id": 19689,
+ "id": 20158,
"properties": {
"east": "low",
"north": "low",
@@ -23883,7 +23883,7 @@
}
},
{
- "id": 19690,
+ "id": 20159,
"properties": {
"east": "low",
"north": "low",
@@ -23894,7 +23894,7 @@
}
},
{
- "id": 19691,
+ "id": 20160,
"properties": {
"east": "low",
"north": "low",
@@ -23905,7 +23905,7 @@
}
},
{
- "id": 19692,
+ "id": 20161,
"properties": {
"east": "low",
"north": "low",
@@ -23916,7 +23916,7 @@
}
},
{
- "id": 19693,
+ "id": 20162,
"properties": {
"east": "low",
"north": "low",
@@ -23927,7 +23927,7 @@
}
},
{
- "id": 19694,
+ "id": 20163,
"properties": {
"east": "low",
"north": "low",
@@ -23938,7 +23938,7 @@
}
},
{
- "id": 19695,
+ "id": 20164,
"properties": {
"east": "low",
"north": "low",
@@ -23949,7 +23949,7 @@
}
},
{
- "id": 19696,
+ "id": 20165,
"properties": {
"east": "low",
"north": "low",
@@ -23960,7 +23960,7 @@
}
},
{
- "id": 19697,
+ "id": 20166,
"properties": {
"east": "low",
"north": "low",
@@ -23971,7 +23971,7 @@
}
},
{
- "id": 19698,
+ "id": 20167,
"properties": {
"east": "low",
"north": "low",
@@ -23982,7 +23982,7 @@
}
},
{
- "id": 19699,
+ "id": 20168,
"properties": {
"east": "low",
"north": "low",
@@ -23993,7 +23993,7 @@
}
},
{
- "id": 19700,
+ "id": 20169,
"properties": {
"east": "low",
"north": "low",
@@ -24004,7 +24004,7 @@
}
},
{
- "id": 19701,
+ "id": 20170,
"properties": {
"east": "low",
"north": "low",
@@ -24015,7 +24015,7 @@
}
},
{
- "id": 19702,
+ "id": 20171,
"properties": {
"east": "low",
"north": "low",
@@ -24026,7 +24026,7 @@
}
},
{
- "id": 19703,
+ "id": 20172,
"properties": {
"east": "low",
"north": "low",
@@ -24037,7 +24037,7 @@
}
},
{
- "id": 19704,
+ "id": 20173,
"properties": {
"east": "low",
"north": "low",
@@ -24048,7 +24048,7 @@
}
},
{
- "id": 19705,
+ "id": 20174,
"properties": {
"east": "low",
"north": "low",
@@ -24059,7 +24059,7 @@
}
},
{
- "id": 19706,
+ "id": 20175,
"properties": {
"east": "low",
"north": "low",
@@ -24070,7 +24070,7 @@
}
},
{
- "id": 19707,
+ "id": 20176,
"properties": {
"east": "low",
"north": "low",
@@ -24081,7 +24081,7 @@
}
},
{
- "id": 19708,
+ "id": 20177,
"properties": {
"east": "low",
"north": "low",
@@ -24092,7 +24092,7 @@
}
},
{
- "id": 19709,
+ "id": 20178,
"properties": {
"east": "low",
"north": "low",
@@ -24103,7 +24103,7 @@
}
},
{
- "id": 19710,
+ "id": 20179,
"properties": {
"east": "low",
"north": "low",
@@ -24114,7 +24114,7 @@
}
},
{
- "id": 19711,
+ "id": 20180,
"properties": {
"east": "low",
"north": "low",
@@ -24125,7 +24125,7 @@
}
},
{
- "id": 19712,
+ "id": 20181,
"properties": {
"east": "low",
"north": "low",
@@ -24136,7 +24136,7 @@
}
},
{
- "id": 19713,
+ "id": 20182,
"properties": {
"east": "low",
"north": "low",
@@ -24147,7 +24147,7 @@
}
},
{
- "id": 19714,
+ "id": 20183,
"properties": {
"east": "low",
"north": "low",
@@ -24158,7 +24158,7 @@
}
},
{
- "id": 19715,
+ "id": 20184,
"properties": {
"east": "low",
"north": "low",
@@ -24169,7 +24169,7 @@
}
},
{
- "id": 19716,
+ "id": 20185,
"properties": {
"east": "low",
"north": "low",
@@ -24180,7 +24180,7 @@
}
},
{
- "id": 19717,
+ "id": 20186,
"properties": {
"east": "low",
"north": "low",
@@ -24191,7 +24191,7 @@
}
},
{
- "id": 19718,
+ "id": 20187,
"properties": {
"east": "low",
"north": "low",
@@ -24202,7 +24202,7 @@
}
},
{
- "id": 19719,
+ "id": 20188,
"properties": {
"east": "low",
"north": "low",
@@ -24213,7 +24213,7 @@
}
},
{
- "id": 19720,
+ "id": 20189,
"properties": {
"east": "low",
"north": "low",
@@ -24224,7 +24224,7 @@
}
},
{
- "id": 19721,
+ "id": 20190,
"properties": {
"east": "low",
"north": "tall",
@@ -24235,7 +24235,7 @@
}
},
{
- "id": 19722,
+ "id": 20191,
"properties": {
"east": "low",
"north": "tall",
@@ -24246,7 +24246,7 @@
}
},
{
- "id": 19723,
+ "id": 20192,
"properties": {
"east": "low",
"north": "tall",
@@ -24257,7 +24257,7 @@
}
},
{
- "id": 19724,
+ "id": 20193,
"properties": {
"east": "low",
"north": "tall",
@@ -24268,7 +24268,7 @@
}
},
{
- "id": 19725,
+ "id": 20194,
"properties": {
"east": "low",
"north": "tall",
@@ -24279,7 +24279,7 @@
}
},
{
- "id": 19726,
+ "id": 20195,
"properties": {
"east": "low",
"north": "tall",
@@ -24290,7 +24290,7 @@
}
},
{
- "id": 19727,
+ "id": 20196,
"properties": {
"east": "low",
"north": "tall",
@@ -24301,7 +24301,7 @@
}
},
{
- "id": 19728,
+ "id": 20197,
"properties": {
"east": "low",
"north": "tall",
@@ -24312,7 +24312,7 @@
}
},
{
- "id": 19729,
+ "id": 20198,
"properties": {
"east": "low",
"north": "tall",
@@ -24323,7 +24323,7 @@
}
},
{
- "id": 19730,
+ "id": 20199,
"properties": {
"east": "low",
"north": "tall",
@@ -24334,7 +24334,7 @@
}
},
{
- "id": 19731,
+ "id": 20200,
"properties": {
"east": "low",
"north": "tall",
@@ -24345,7 +24345,7 @@
}
},
{
- "id": 19732,
+ "id": 20201,
"properties": {
"east": "low",
"north": "tall",
@@ -24356,7 +24356,7 @@
}
},
{
- "id": 19733,
+ "id": 20202,
"properties": {
"east": "low",
"north": "tall",
@@ -24367,7 +24367,7 @@
}
},
{
- "id": 19734,
+ "id": 20203,
"properties": {
"east": "low",
"north": "tall",
@@ -24378,7 +24378,7 @@
}
},
{
- "id": 19735,
+ "id": 20204,
"properties": {
"east": "low",
"north": "tall",
@@ -24389,7 +24389,7 @@
}
},
{
- "id": 19736,
+ "id": 20205,
"properties": {
"east": "low",
"north": "tall",
@@ -24400,7 +24400,7 @@
}
},
{
- "id": 19737,
+ "id": 20206,
"properties": {
"east": "low",
"north": "tall",
@@ -24411,7 +24411,7 @@
}
},
{
- "id": 19738,
+ "id": 20207,
"properties": {
"east": "low",
"north": "tall",
@@ -24422,7 +24422,7 @@
}
},
{
- "id": 19739,
+ "id": 20208,
"properties": {
"east": "low",
"north": "tall",
@@ -24433,7 +24433,7 @@
}
},
{
- "id": 19740,
+ "id": 20209,
"properties": {
"east": "low",
"north": "tall",
@@ -24444,7 +24444,7 @@
}
},
{
- "id": 19741,
+ "id": 20210,
"properties": {
"east": "low",
"north": "tall",
@@ -24455,7 +24455,7 @@
}
},
{
- "id": 19742,
+ "id": 20211,
"properties": {
"east": "low",
"north": "tall",
@@ -24466,7 +24466,7 @@
}
},
{
- "id": 19743,
+ "id": 20212,
"properties": {
"east": "low",
"north": "tall",
@@ -24477,7 +24477,7 @@
}
},
{
- "id": 19744,
+ "id": 20213,
"properties": {
"east": "low",
"north": "tall",
@@ -24488,7 +24488,7 @@
}
},
{
- "id": 19745,
+ "id": 20214,
"properties": {
"east": "low",
"north": "tall",
@@ -24499,7 +24499,7 @@
}
},
{
- "id": 19746,
+ "id": 20215,
"properties": {
"east": "low",
"north": "tall",
@@ -24510,7 +24510,7 @@
}
},
{
- "id": 19747,
+ "id": 20216,
"properties": {
"east": "low",
"north": "tall",
@@ -24521,7 +24521,7 @@
}
},
{
- "id": 19748,
+ "id": 20217,
"properties": {
"east": "low",
"north": "tall",
@@ -24532,7 +24532,7 @@
}
},
{
- "id": 19749,
+ "id": 20218,
"properties": {
"east": "low",
"north": "tall",
@@ -24543,7 +24543,7 @@
}
},
{
- "id": 19750,
+ "id": 20219,
"properties": {
"east": "low",
"north": "tall",
@@ -24554,7 +24554,7 @@
}
},
{
- "id": 19751,
+ "id": 20220,
"properties": {
"east": "low",
"north": "tall",
@@ -24565,7 +24565,7 @@
}
},
{
- "id": 19752,
+ "id": 20221,
"properties": {
"east": "low",
"north": "tall",
@@ -24576,7 +24576,7 @@
}
},
{
- "id": 19753,
+ "id": 20222,
"properties": {
"east": "low",
"north": "tall",
@@ -24587,7 +24587,7 @@
}
},
{
- "id": 19754,
+ "id": 20223,
"properties": {
"east": "low",
"north": "tall",
@@ -24598,7 +24598,7 @@
}
},
{
- "id": 19755,
+ "id": 20224,
"properties": {
"east": "low",
"north": "tall",
@@ -24609,7 +24609,7 @@
}
},
{
- "id": 19756,
+ "id": 20225,
"properties": {
"east": "low",
"north": "tall",
@@ -24620,7 +24620,7 @@
}
},
{
- "id": 19757,
+ "id": 20226,
"properties": {
"east": "tall",
"north": "none",
@@ -24631,7 +24631,7 @@
}
},
{
- "id": 19758,
+ "id": 20227,
"properties": {
"east": "tall",
"north": "none",
@@ -24642,7 +24642,7 @@
}
},
{
- "id": 19759,
+ "id": 20228,
"properties": {
"east": "tall",
"north": "none",
@@ -24653,7 +24653,7 @@
}
},
{
- "id": 19760,
+ "id": 20229,
"properties": {
"east": "tall",
"north": "none",
@@ -24664,7 +24664,7 @@
}
},
{
- "id": 19761,
+ "id": 20230,
"properties": {
"east": "tall",
"north": "none",
@@ -24675,7 +24675,7 @@
}
},
{
- "id": 19762,
+ "id": 20231,
"properties": {
"east": "tall",
"north": "none",
@@ -24686,7 +24686,7 @@
}
},
{
- "id": 19763,
+ "id": 20232,
"properties": {
"east": "tall",
"north": "none",
@@ -24697,7 +24697,7 @@
}
},
{
- "id": 19764,
+ "id": 20233,
"properties": {
"east": "tall",
"north": "none",
@@ -24708,7 +24708,7 @@
}
},
{
- "id": 19765,
+ "id": 20234,
"properties": {
"east": "tall",
"north": "none",
@@ -24719,7 +24719,7 @@
}
},
{
- "id": 19766,
+ "id": 20235,
"properties": {
"east": "tall",
"north": "none",
@@ -24730,7 +24730,7 @@
}
},
{
- "id": 19767,
+ "id": 20236,
"properties": {
"east": "tall",
"north": "none",
@@ -24741,7 +24741,7 @@
}
},
{
- "id": 19768,
+ "id": 20237,
"properties": {
"east": "tall",
"north": "none",
@@ -24752,7 +24752,7 @@
}
},
{
- "id": 19769,
+ "id": 20238,
"properties": {
"east": "tall",
"north": "none",
@@ -24763,7 +24763,7 @@
}
},
{
- "id": 19770,
+ "id": 20239,
"properties": {
"east": "tall",
"north": "none",
@@ -24774,7 +24774,7 @@
}
},
{
- "id": 19771,
+ "id": 20240,
"properties": {
"east": "tall",
"north": "none",
@@ -24785,7 +24785,7 @@
}
},
{
- "id": 19772,
+ "id": 20241,
"properties": {
"east": "tall",
"north": "none",
@@ -24796,7 +24796,7 @@
}
},
{
- "id": 19773,
+ "id": 20242,
"properties": {
"east": "tall",
"north": "none",
@@ -24807,7 +24807,7 @@
}
},
{
- "id": 19774,
+ "id": 20243,
"properties": {
"east": "tall",
"north": "none",
@@ -24818,7 +24818,7 @@
}
},
{
- "id": 19775,
+ "id": 20244,
"properties": {
"east": "tall",
"north": "none",
@@ -24829,7 +24829,7 @@
}
},
{
- "id": 19776,
+ "id": 20245,
"properties": {
"east": "tall",
"north": "none",
@@ -24840,7 +24840,7 @@
}
},
{
- "id": 19777,
+ "id": 20246,
"properties": {
"east": "tall",
"north": "none",
@@ -24851,7 +24851,7 @@
}
},
{
- "id": 19778,
+ "id": 20247,
"properties": {
"east": "tall",
"north": "none",
@@ -24862,7 +24862,7 @@
}
},
{
- "id": 19779,
+ "id": 20248,
"properties": {
"east": "tall",
"north": "none",
@@ -24873,7 +24873,7 @@
}
},
{
- "id": 19780,
+ "id": 20249,
"properties": {
"east": "tall",
"north": "none",
@@ -24884,7 +24884,7 @@
}
},
{
- "id": 19781,
+ "id": 20250,
"properties": {
"east": "tall",
"north": "none",
@@ -24895,7 +24895,7 @@
}
},
{
- "id": 19782,
+ "id": 20251,
"properties": {
"east": "tall",
"north": "none",
@@ -24906,7 +24906,7 @@
}
},
{
- "id": 19783,
+ "id": 20252,
"properties": {
"east": "tall",
"north": "none",
@@ -24917,7 +24917,7 @@
}
},
{
- "id": 19784,
+ "id": 20253,
"properties": {
"east": "tall",
"north": "none",
@@ -24928,7 +24928,7 @@
}
},
{
- "id": 19785,
+ "id": 20254,
"properties": {
"east": "tall",
"north": "none",
@@ -24939,7 +24939,7 @@
}
},
{
- "id": 19786,
+ "id": 20255,
"properties": {
"east": "tall",
"north": "none",
@@ -24950,7 +24950,7 @@
}
},
{
- "id": 19787,
+ "id": 20256,
"properties": {
"east": "tall",
"north": "none",
@@ -24961,7 +24961,7 @@
}
},
{
- "id": 19788,
+ "id": 20257,
"properties": {
"east": "tall",
"north": "none",
@@ -24972,7 +24972,7 @@
}
},
{
- "id": 19789,
+ "id": 20258,
"properties": {
"east": "tall",
"north": "none",
@@ -24983,7 +24983,7 @@
}
},
{
- "id": 19790,
+ "id": 20259,
"properties": {
"east": "tall",
"north": "none",
@@ -24994,7 +24994,7 @@
}
},
{
- "id": 19791,
+ "id": 20260,
"properties": {
"east": "tall",
"north": "none",
@@ -25005,7 +25005,7 @@
}
},
{
- "id": 19792,
+ "id": 20261,
"properties": {
"east": "tall",
"north": "none",
@@ -25016,7 +25016,7 @@
}
},
{
- "id": 19793,
+ "id": 20262,
"properties": {
"east": "tall",
"north": "low",
@@ -25027,7 +25027,7 @@
}
},
{
- "id": 19794,
+ "id": 20263,
"properties": {
"east": "tall",
"north": "low",
@@ -25038,7 +25038,7 @@
}
},
{
- "id": 19795,
+ "id": 20264,
"properties": {
"east": "tall",
"north": "low",
@@ -25049,7 +25049,7 @@
}
},
{
- "id": 19796,
+ "id": 20265,
"properties": {
"east": "tall",
"north": "low",
@@ -25060,7 +25060,7 @@
}
},
{
- "id": 19797,
+ "id": 20266,
"properties": {
"east": "tall",
"north": "low",
@@ -25071,7 +25071,7 @@
}
},
{
- "id": 19798,
+ "id": 20267,
"properties": {
"east": "tall",
"north": "low",
@@ -25082,7 +25082,7 @@
}
},
{
- "id": 19799,
+ "id": 20268,
"properties": {
"east": "tall",
"north": "low",
@@ -25093,7 +25093,7 @@
}
},
{
- "id": 19800,
+ "id": 20269,
"properties": {
"east": "tall",
"north": "low",
@@ -25104,7 +25104,7 @@
}
},
{
- "id": 19801,
+ "id": 20270,
"properties": {
"east": "tall",
"north": "low",
@@ -25115,7 +25115,7 @@
}
},
{
- "id": 19802,
+ "id": 20271,
"properties": {
"east": "tall",
"north": "low",
@@ -25126,7 +25126,7 @@
}
},
{
- "id": 19803,
+ "id": 20272,
"properties": {
"east": "tall",
"north": "low",
@@ -25137,7 +25137,7 @@
}
},
{
- "id": 19804,
+ "id": 20273,
"properties": {
"east": "tall",
"north": "low",
@@ -25148,7 +25148,7 @@
}
},
{
- "id": 19805,
+ "id": 20274,
"properties": {
"east": "tall",
"north": "low",
@@ -25159,7 +25159,7 @@
}
},
{
- "id": 19806,
+ "id": 20275,
"properties": {
"east": "tall",
"north": "low",
@@ -25170,7 +25170,7 @@
}
},
{
- "id": 19807,
+ "id": 20276,
"properties": {
"east": "tall",
"north": "low",
@@ -25181,7 +25181,7 @@
}
},
{
- "id": 19808,
+ "id": 20277,
"properties": {
"east": "tall",
"north": "low",
@@ -25192,7 +25192,7 @@
}
},
{
- "id": 19809,
+ "id": 20278,
"properties": {
"east": "tall",
"north": "low",
@@ -25203,7 +25203,7 @@
}
},
{
- "id": 19810,
+ "id": 20279,
"properties": {
"east": "tall",
"north": "low",
@@ -25214,7 +25214,7 @@
}
},
{
- "id": 19811,
+ "id": 20280,
"properties": {
"east": "tall",
"north": "low",
@@ -25225,7 +25225,7 @@
}
},
{
- "id": 19812,
+ "id": 20281,
"properties": {
"east": "tall",
"north": "low",
@@ -25236,7 +25236,7 @@
}
},
{
- "id": 19813,
+ "id": 20282,
"properties": {
"east": "tall",
"north": "low",
@@ -25247,7 +25247,7 @@
}
},
{
- "id": 19814,
+ "id": 20283,
"properties": {
"east": "tall",
"north": "low",
@@ -25258,7 +25258,7 @@
}
},
{
- "id": 19815,
+ "id": 20284,
"properties": {
"east": "tall",
"north": "low",
@@ -25269,7 +25269,7 @@
}
},
{
- "id": 19816,
+ "id": 20285,
"properties": {
"east": "tall",
"north": "low",
@@ -25280,7 +25280,7 @@
}
},
{
- "id": 19817,
+ "id": 20286,
"properties": {
"east": "tall",
"north": "low",
@@ -25291,7 +25291,7 @@
}
},
{
- "id": 19818,
+ "id": 20287,
"properties": {
"east": "tall",
"north": "low",
@@ -25302,7 +25302,7 @@
}
},
{
- "id": 19819,
+ "id": 20288,
"properties": {
"east": "tall",
"north": "low",
@@ -25313,7 +25313,7 @@
}
},
{
- "id": 19820,
+ "id": 20289,
"properties": {
"east": "tall",
"north": "low",
@@ -25324,7 +25324,7 @@
}
},
{
- "id": 19821,
+ "id": 20290,
"properties": {
"east": "tall",
"north": "low",
@@ -25335,7 +25335,7 @@
}
},
{
- "id": 19822,
+ "id": 20291,
"properties": {
"east": "tall",
"north": "low",
@@ -25346,7 +25346,7 @@
}
},
{
- "id": 19823,
+ "id": 20292,
"properties": {
"east": "tall",
"north": "low",
@@ -25357,7 +25357,7 @@
}
},
{
- "id": 19824,
+ "id": 20293,
"properties": {
"east": "tall",
"north": "low",
@@ -25368,7 +25368,7 @@
}
},
{
- "id": 19825,
+ "id": 20294,
"properties": {
"east": "tall",
"north": "low",
@@ -25379,7 +25379,7 @@
}
},
{
- "id": 19826,
+ "id": 20295,
"properties": {
"east": "tall",
"north": "low",
@@ -25390,7 +25390,7 @@
}
},
{
- "id": 19827,
+ "id": 20296,
"properties": {
"east": "tall",
"north": "low",
@@ -25401,7 +25401,7 @@
}
},
{
- "id": 19828,
+ "id": 20297,
"properties": {
"east": "tall",
"north": "low",
@@ -25412,7 +25412,7 @@
}
},
{
- "id": 19829,
+ "id": 20298,
"properties": {
"east": "tall",
"north": "tall",
@@ -25423,7 +25423,7 @@
}
},
{
- "id": 19830,
+ "id": 20299,
"properties": {
"east": "tall",
"north": "tall",
@@ -25434,7 +25434,7 @@
}
},
{
- "id": 19831,
+ "id": 20300,
"properties": {
"east": "tall",
"north": "tall",
@@ -25445,7 +25445,7 @@
}
},
{
- "id": 19832,
+ "id": 20301,
"properties": {
"east": "tall",
"north": "tall",
@@ -25456,7 +25456,7 @@
}
},
{
- "id": 19833,
+ "id": 20302,
"properties": {
"east": "tall",
"north": "tall",
@@ -25467,7 +25467,7 @@
}
},
{
- "id": 19834,
+ "id": 20303,
"properties": {
"east": "tall",
"north": "tall",
@@ -25478,7 +25478,7 @@
}
},
{
- "id": 19835,
+ "id": 20304,
"properties": {
"east": "tall",
"north": "tall",
@@ -25489,7 +25489,7 @@
}
},
{
- "id": 19836,
+ "id": 20305,
"properties": {
"east": "tall",
"north": "tall",
@@ -25500,7 +25500,7 @@
}
},
{
- "id": 19837,
+ "id": 20306,
"properties": {
"east": "tall",
"north": "tall",
@@ -25511,7 +25511,7 @@
}
},
{
- "id": 19838,
+ "id": 20307,
"properties": {
"east": "tall",
"north": "tall",
@@ -25522,7 +25522,7 @@
}
},
{
- "id": 19839,
+ "id": 20308,
"properties": {
"east": "tall",
"north": "tall",
@@ -25533,7 +25533,7 @@
}
},
{
- "id": 19840,
+ "id": 20309,
"properties": {
"east": "tall",
"north": "tall",
@@ -25544,7 +25544,7 @@
}
},
{
- "id": 19841,
+ "id": 20310,
"properties": {
"east": "tall",
"north": "tall",
@@ -25555,7 +25555,7 @@
}
},
{
- "id": 19842,
+ "id": 20311,
"properties": {
"east": "tall",
"north": "tall",
@@ -25566,7 +25566,7 @@
}
},
{
- "id": 19843,
+ "id": 20312,
"properties": {
"east": "tall",
"north": "tall",
@@ -25577,7 +25577,7 @@
}
},
{
- "id": 19844,
+ "id": 20313,
"properties": {
"east": "tall",
"north": "tall",
@@ -25588,7 +25588,7 @@
}
},
{
- "id": 19845,
+ "id": 20314,
"properties": {
"east": "tall",
"north": "tall",
@@ -25599,7 +25599,7 @@
}
},
{
- "id": 19846,
+ "id": 20315,
"properties": {
"east": "tall",
"north": "tall",
@@ -25610,7 +25610,7 @@
}
},
{
- "id": 19847,
+ "id": 20316,
"properties": {
"east": "tall",
"north": "tall",
@@ -25621,7 +25621,7 @@
}
},
{
- "id": 19848,
+ "id": 20317,
"properties": {
"east": "tall",
"north": "tall",
@@ -25632,7 +25632,7 @@
}
},
{
- "id": 19849,
+ "id": 20318,
"properties": {
"east": "tall",
"north": "tall",
@@ -25643,7 +25643,7 @@
}
},
{
- "id": 19850,
+ "id": 20319,
"properties": {
"east": "tall",
"north": "tall",
@@ -25654,7 +25654,7 @@
}
},
{
- "id": 19851,
+ "id": 20320,
"properties": {
"east": "tall",
"north": "tall",
@@ -25665,7 +25665,7 @@
}
},
{
- "id": 19852,
+ "id": 20321,
"properties": {
"east": "tall",
"north": "tall",
@@ -25676,7 +25676,7 @@
}
},
{
- "id": 19853,
+ "id": 20322,
"properties": {
"east": "tall",
"north": "tall",
@@ -25687,7 +25687,7 @@
}
},
{
- "id": 19854,
+ "id": 20323,
"properties": {
"east": "tall",
"north": "tall",
@@ -25698,7 +25698,7 @@
}
},
{
- "id": 19855,
+ "id": 20324,
"properties": {
"east": "tall",
"north": "tall",
@@ -25709,7 +25709,7 @@
}
},
{
- "id": 19856,
+ "id": 20325,
"properties": {
"east": "tall",
"north": "tall",
@@ -25720,7 +25720,7 @@
}
},
{
- "id": 19857,
+ "id": 20326,
"properties": {
"east": "tall",
"north": "tall",
@@ -25731,7 +25731,7 @@
}
},
{
- "id": 19858,
+ "id": 20327,
"properties": {
"east": "tall",
"north": "tall",
@@ -25742,7 +25742,7 @@
}
},
{
- "id": 19859,
+ "id": 20328,
"properties": {
"east": "tall",
"north": "tall",
@@ -25753,7 +25753,7 @@
}
},
{
- "id": 19860,
+ "id": 20329,
"properties": {
"east": "tall",
"north": "tall",
@@ -25764,7 +25764,7 @@
}
},
{
- "id": 19861,
+ "id": 20330,
"properties": {
"east": "tall",
"north": "tall",
@@ -25775,7 +25775,7 @@
}
},
{
- "id": 19862,
+ "id": 20331,
"properties": {
"east": "tall",
"north": "tall",
@@ -25786,7 +25786,7 @@
}
},
{
- "id": 19863,
+ "id": 20332,
"properties": {
"east": "tall",
"north": "tall",
@@ -25797,7 +25797,7 @@
}
},
{
- "id": 19864,
+ "id": 20333,
"properties": {
"east": "tall",
"north": "tall",
@@ -25828,7 +25828,7 @@
},
"states": [
{
- "id": 18428,
+ "id": 18897,
"properties": {
"facing": "north",
"lit": "true"
@@ -25836,49 +25836,49 @@
},
{
"default": true,
- "id": 18429,
+ "id": 18898,
"properties": {
"facing": "north",
"lit": "false"
}
},
{
- "id": 18430,
+ "id": 18899,
"properties": {
"facing": "south",
"lit": "true"
}
},
{
- "id": 18431,
+ "id": 18900,
"properties": {
"facing": "south",
"lit": "false"
}
},
{
- "id": 18432,
+ "id": 18901,
"properties": {
"facing": "west",
"lit": "true"
}
},
{
- "id": 18433,
+ "id": 18902,
"properties": {
"facing": "west",
"lit": "false"
}
},
{
- "id": 18434,
+ "id": 18903,
"properties": {
"facing": "east",
"lit": "true"
}
},
{
- "id": 18435,
+ "id": 18904,
"properties": {
"facing": "east",
"lit": "false"
@@ -25915,97 +25915,97 @@
"states": [
{
"default": true,
- "id": 10935,
+ "id": 11270,
"properties": {
"rotation": "0"
}
},
{
- "id": 10936,
+ "id": 11271,
"properties": {
"rotation": "1"
}
},
{
- "id": 10937,
+ "id": 11272,
"properties": {
"rotation": "2"
}
},
{
- "id": 10938,
+ "id": 11273,
"properties": {
"rotation": "3"
}
},
{
- "id": 10939,
+ "id": 11274,
"properties": {
"rotation": "4"
}
},
{
- "id": 10940,
+ "id": 11275,
"properties": {
"rotation": "5"
}
},
{
- "id": 10941,
+ "id": 11276,
"properties": {
"rotation": "6"
}
},
{
- "id": 10942,
+ "id": 11277,
"properties": {
"rotation": "7"
}
},
{
- "id": 10943,
+ "id": 11278,
"properties": {
"rotation": "8"
}
},
{
- "id": 10944,
+ "id": 11279,
"properties": {
"rotation": "9"
}
},
{
- "id": 10945,
+ "id": 11280,
"properties": {
"rotation": "10"
}
},
{
- "id": 10946,
+ "id": 11281,
"properties": {
"rotation": "11"
}
},
{
- "id": 10947,
+ "id": 11282,
"properties": {
"rotation": "12"
}
},
{
- "id": 10948,
+ "id": 11283,
"properties": {
"rotation": "13"
}
},
{
- "id": 10949,
+ "id": 11284,
"properties": {
"rotation": "14"
}
},
{
- "id": 10950,
+ "id": 11285,
"properties": {
"rotation": "15"
}
@@ -26036,7 +26036,7 @@
},
"states": [
{
- "id": 1864,
+ "id": 1907,
"properties": {
"facing": "north",
"occupied": "true",
@@ -26044,7 +26044,7 @@
}
},
{
- "id": 1865,
+ "id": 1908,
"properties": {
"facing": "north",
"occupied": "true",
@@ -26052,7 +26052,7 @@
}
},
{
- "id": 1866,
+ "id": 1909,
"properties": {
"facing": "north",
"occupied": "false",
@@ -26061,7 +26061,7 @@
},
{
"default": true,
- "id": 1867,
+ "id": 1910,
"properties": {
"facing": "north",
"occupied": "false",
@@ -26069,7 +26069,7 @@
}
},
{
- "id": 1868,
+ "id": 1911,
"properties": {
"facing": "south",
"occupied": "true",
@@ -26077,7 +26077,7 @@
}
},
{
- "id": 1869,
+ "id": 1912,
"properties": {
"facing": "south",
"occupied": "true",
@@ -26085,7 +26085,7 @@
}
},
{
- "id": 1870,
+ "id": 1913,
"properties": {
"facing": "south",
"occupied": "false",
@@ -26093,7 +26093,7 @@
}
},
{
- "id": 1871,
+ "id": 1914,
"properties": {
"facing": "south",
"occupied": "false",
@@ -26101,7 +26101,7 @@
}
},
{
- "id": 1872,
+ "id": 1915,
"properties": {
"facing": "west",
"occupied": "true",
@@ -26109,7 +26109,7 @@
}
},
{
- "id": 1873,
+ "id": 1916,
"properties": {
"facing": "west",
"occupied": "true",
@@ -26117,7 +26117,7 @@
}
},
{
- "id": 1874,
+ "id": 1917,
"properties": {
"facing": "west",
"occupied": "false",
@@ -26125,7 +26125,7 @@
}
},
{
- "id": 1875,
+ "id": 1918,
"properties": {
"facing": "west",
"occupied": "false",
@@ -26133,7 +26133,7 @@
}
},
{
- "id": 1876,
+ "id": 1919,
"properties": {
"facing": "east",
"occupied": "true",
@@ -26141,7 +26141,7 @@
}
},
{
- "id": 1877,
+ "id": 1920,
"properties": {
"facing": "east",
"occupied": "true",
@@ -26149,7 +26149,7 @@
}
},
{
- "id": 1878,
+ "id": 1921,
"properties": {
"facing": "east",
"occupied": "false",
@@ -26157,7 +26157,7 @@
}
},
{
- "id": 1879,
+ "id": 1922,
"properties": {
"facing": "east",
"occupied": "false",
@@ -26189,7 +26189,7 @@
},
"states": [
{
- "id": 20917,
+ "id": 21386,
"properties": {
"candles": "1",
"lit": "true",
@@ -26197,7 +26197,7 @@
}
},
{
- "id": 20918,
+ "id": 21387,
"properties": {
"candles": "1",
"lit": "true",
@@ -26205,7 +26205,7 @@
}
},
{
- "id": 20919,
+ "id": 21388,
"properties": {
"candles": "1",
"lit": "false",
@@ -26214,7 +26214,7 @@
},
{
"default": true,
- "id": 20920,
+ "id": 21389,
"properties": {
"candles": "1",
"lit": "false",
@@ -26222,7 +26222,7 @@
}
},
{
- "id": 20921,
+ "id": 21390,
"properties": {
"candles": "2",
"lit": "true",
@@ -26230,7 +26230,7 @@
}
},
{
- "id": 20922,
+ "id": 21391,
"properties": {
"candles": "2",
"lit": "true",
@@ -26238,7 +26238,7 @@
}
},
{
- "id": 20923,
+ "id": 21392,
"properties": {
"candles": "2",
"lit": "false",
@@ -26246,7 +26246,7 @@
}
},
{
- "id": 20924,
+ "id": 21393,
"properties": {
"candles": "2",
"lit": "false",
@@ -26254,7 +26254,7 @@
}
},
{
- "id": 20925,
+ "id": 21394,
"properties": {
"candles": "3",
"lit": "true",
@@ -26262,7 +26262,7 @@
}
},
{
- "id": 20926,
+ "id": 21395,
"properties": {
"candles": "3",
"lit": "true",
@@ -26270,7 +26270,7 @@
}
},
{
- "id": 20927,
+ "id": 21396,
"properties": {
"candles": "3",
"lit": "false",
@@ -26278,7 +26278,7 @@
}
},
{
- "id": 20928,
+ "id": 21397,
"properties": {
"candles": "3",
"lit": "false",
@@ -26286,7 +26286,7 @@
}
},
{
- "id": 20929,
+ "id": 21398,
"properties": {
"candles": "4",
"lit": "true",
@@ -26294,7 +26294,7 @@
}
},
{
- "id": 20930,
+ "id": 21399,
"properties": {
"candles": "4",
"lit": "true",
@@ -26302,7 +26302,7 @@
}
},
{
- "id": 20931,
+ "id": 21400,
"properties": {
"candles": "4",
"lit": "false",
@@ -26310,7 +26310,7 @@
}
},
{
- "id": 20932,
+ "id": 21401,
"properties": {
"candles": "4",
"lit": "false",
@@ -26333,14 +26333,14 @@
},
"states": [
{
- "id": 21021,
+ "id": 21490,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 21022,
+ "id": 21491,
"properties": {
"lit": "false"
}
@@ -26356,7 +26356,7 @@
"states": [
{
"default": true,
- "id": 10739
+ "id": 11074
}
]
},
@@ -26368,7 +26368,7 @@
"states": [
{
"default": true,
- "id": 12739
+ "id": 13208
}
]
},
@@ -26381,7 +26381,7 @@
"states": [
{
"default": true,
- "id": 12755
+ "id": 13224
}
]
},
@@ -26401,25 +26401,25 @@
"states": [
{
"default": true,
- "id": 12708,
+ "id": 13177,
"properties": {
"facing": "north"
}
},
{
- "id": 12709,
+ "id": 13178,
"properties": {
"facing": "south"
}
},
{
- "id": 12710,
+ "id": 13179,
"properties": {
"facing": "west"
}
},
{
- "id": 12711,
+ "id": 13180,
"properties": {
"facing": "east"
}
@@ -26434,7 +26434,7 @@
"states": [
{
"default": true,
- "id": 12941
+ "id": 13410
}
]
},
@@ -26452,7 +26452,7 @@
"states": [
{
"default": true,
- "id": 2078
+ "id": 2121
}
]
},
@@ -26474,38 +26474,38 @@
},
"states": [
{
- "id": 12634,
+ "id": 13103,
"properties": {
"facing": "north"
}
},
{
- "id": 12635,
+ "id": 13104,
"properties": {
"facing": "east"
}
},
{
- "id": 12636,
+ "id": 13105,
"properties": {
"facing": "south"
}
},
{
- "id": 12637,
+ "id": 13106,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12638,
+ "id": 13107,
"properties": {
"facing": "up"
}
},
{
- "id": 12639,
+ "id": 13108,
"properties": {
"facing": "down"
}
@@ -26521,7 +26521,7 @@
"states": [
{
"default": true,
- "id": 5956
+ "id": 6122
}
]
},
@@ -26555,7 +26555,7 @@
},
"states": [
{
- "id": 9724,
+ "id": 9979,
"properties": {
"east": "true",
"north": "true",
@@ -26565,7 +26565,7 @@
}
},
{
- "id": 9725,
+ "id": 9980,
"properties": {
"east": "true",
"north": "true",
@@ -26575,7 +26575,7 @@
}
},
{
- "id": 9726,
+ "id": 9981,
"properties": {
"east": "true",
"north": "true",
@@ -26585,7 +26585,7 @@
}
},
{
- "id": 9727,
+ "id": 9982,
"properties": {
"east": "true",
"north": "true",
@@ -26595,7 +26595,7 @@
}
},
{
- "id": 9728,
+ "id": 9983,
"properties": {
"east": "true",
"north": "true",
@@ -26605,7 +26605,7 @@
}
},
{
- "id": 9729,
+ "id": 9984,
"properties": {
"east": "true",
"north": "true",
@@ -26615,7 +26615,7 @@
}
},
{
- "id": 9730,
+ "id": 9985,
"properties": {
"east": "true",
"north": "true",
@@ -26625,7 +26625,7 @@
}
},
{
- "id": 9731,
+ "id": 9986,
"properties": {
"east": "true",
"north": "true",
@@ -26635,7 +26635,7 @@
}
},
{
- "id": 9732,
+ "id": 9987,
"properties": {
"east": "true",
"north": "false",
@@ -26645,7 +26645,7 @@
}
},
{
- "id": 9733,
+ "id": 9988,
"properties": {
"east": "true",
"north": "false",
@@ -26655,7 +26655,7 @@
}
},
{
- "id": 9734,
+ "id": 9989,
"properties": {
"east": "true",
"north": "false",
@@ -26665,7 +26665,7 @@
}
},
{
- "id": 9735,
+ "id": 9990,
"properties": {
"east": "true",
"north": "false",
@@ -26675,7 +26675,7 @@
}
},
{
- "id": 9736,
+ "id": 9991,
"properties": {
"east": "true",
"north": "false",
@@ -26685,7 +26685,7 @@
}
},
{
- "id": 9737,
+ "id": 9992,
"properties": {
"east": "true",
"north": "false",
@@ -26695,7 +26695,7 @@
}
},
{
- "id": 9738,
+ "id": 9993,
"properties": {
"east": "true",
"north": "false",
@@ -26705,7 +26705,7 @@
}
},
{
- "id": 9739,
+ "id": 9994,
"properties": {
"east": "true",
"north": "false",
@@ -26715,7 +26715,7 @@
}
},
{
- "id": 9740,
+ "id": 9995,
"properties": {
"east": "false",
"north": "true",
@@ -26725,7 +26725,7 @@
}
},
{
- "id": 9741,
+ "id": 9996,
"properties": {
"east": "false",
"north": "true",
@@ -26735,7 +26735,7 @@
}
},
{
- "id": 9742,
+ "id": 9997,
"properties": {
"east": "false",
"north": "true",
@@ -26745,7 +26745,7 @@
}
},
{
- "id": 9743,
+ "id": 9998,
"properties": {
"east": "false",
"north": "true",
@@ -26755,7 +26755,7 @@
}
},
{
- "id": 9744,
+ "id": 9999,
"properties": {
"east": "false",
"north": "true",
@@ -26765,7 +26765,7 @@
}
},
{
- "id": 9745,
+ "id": 10000,
"properties": {
"east": "false",
"north": "true",
@@ -26775,7 +26775,7 @@
}
},
{
- "id": 9746,
+ "id": 10001,
"properties": {
"east": "false",
"north": "true",
@@ -26785,7 +26785,7 @@
}
},
{
- "id": 9747,
+ "id": 10002,
"properties": {
"east": "false",
"north": "true",
@@ -26795,7 +26795,7 @@
}
},
{
- "id": 9748,
+ "id": 10003,
"properties": {
"east": "false",
"north": "false",
@@ -26805,7 +26805,7 @@
}
},
{
- "id": 9749,
+ "id": 10004,
"properties": {
"east": "false",
"north": "false",
@@ -26815,7 +26815,7 @@
}
},
{
- "id": 9750,
+ "id": 10005,
"properties": {
"east": "false",
"north": "false",
@@ -26825,7 +26825,7 @@
}
},
{
- "id": 9751,
+ "id": 10006,
"properties": {
"east": "false",
"north": "false",
@@ -26835,7 +26835,7 @@
}
},
{
- "id": 9752,
+ "id": 10007,
"properties": {
"east": "false",
"north": "false",
@@ -26845,7 +26845,7 @@
}
},
{
- "id": 9753,
+ "id": 10008,
"properties": {
"east": "false",
"north": "false",
@@ -26855,7 +26855,7 @@
}
},
{
- "id": 9754,
+ "id": 10009,
"properties": {
"east": "false",
"north": "false",
@@ -26866,7 +26866,7 @@
},
{
"default": true,
- "id": 9755,
+ "id": 10010,
"properties": {
"east": "false",
"north": "false",
@@ -26885,7 +26885,7 @@
"states": [
{
"default": true,
- "id": 9367
+ "id": 9622
}
]
},
@@ -26906,25 +26906,25 @@
"states": [
{
"default": true,
- "id": 11059,
+ "id": 11394,
"properties": {
"facing": "north"
}
},
{
- "id": 11060,
+ "id": 11395,
"properties": {
"facing": "south"
}
},
{
- "id": 11061,
+ "id": 11396,
"properties": {
"facing": "west"
}
},
{
- "id": 11062,
+ "id": 11397,
"properties": {
"facing": "east"
}
@@ -26939,7 +26939,7 @@
"states": [
{
"default": true,
- "id": 2058
+ "id": 2101
}
]
},
@@ -26957,20 +26957,20 @@
},
"states": [
{
- "id": 12546,
+ "id": 13015,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 12547,
+ "id": 13016,
"properties": {
"axis": "y"
}
},
{
- "id": 12548,
+ "id": 13017,
"properties": {
"axis": "z"
}
@@ -26985,7 +26985,7 @@
"states": [
{
"default": true,
- "id": 2096
+ "id": 2139
}
]
},
@@ -27004,13 +27004,13 @@
"states": [
{
"default": true,
- "id": 12825,
+ "id": 13294,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12826,
+ "id": 13295,
"properties": {
"waterlogged": "false"
}
@@ -27026,7 +27026,7 @@
"states": [
{
"default": true,
- "id": 12809
+ "id": 13278
}
]
},
@@ -27045,13 +27045,13 @@
"states": [
{
"default": true,
- "id": 12845,
+ "id": 13314,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12846,
+ "id": 13315,
"properties": {
"waterlogged": "false"
}
@@ -27079,56 +27079,56 @@
"states": [
{
"default": true,
- "id": 12901,
+ "id": 13370,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12902,
+ "id": 13371,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12903,
+ "id": 13372,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12904,
+ "id": 13373,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12905,
+ "id": 13374,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12906,
+ "id": 13375,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12907,
+ "id": 13376,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12908,
+ "id": 13377,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -27157,7 +27157,7 @@
},
"states": [
{
- "id": 7390,
+ "id": 7620,
"properties": {
"has_bottle_0": "true",
"has_bottle_1": "true",
@@ -27165,7 +27165,7 @@
}
},
{
- "id": 7391,
+ "id": 7621,
"properties": {
"has_bottle_0": "true",
"has_bottle_1": "true",
@@ -27173,7 +27173,7 @@
}
},
{
- "id": 7392,
+ "id": 7622,
"properties": {
"has_bottle_0": "true",
"has_bottle_1": "false",
@@ -27181,7 +27181,7 @@
}
},
{
- "id": 7393,
+ "id": 7623,
"properties": {
"has_bottle_0": "true",
"has_bottle_1": "false",
@@ -27189,7 +27189,7 @@
}
},
{
- "id": 7394,
+ "id": 7624,
"properties": {
"has_bottle_0": "false",
"has_bottle_1": "true",
@@ -27197,7 +27197,7 @@
}
},
{
- "id": 7395,
+ "id": 7625,
"properties": {
"has_bottle_0": "false",
"has_bottle_1": "true",
@@ -27205,7 +27205,7 @@
}
},
{
- "id": 7396,
+ "id": 7626,
"properties": {
"has_bottle_0": "false",
"has_bottle_1": "false",
@@ -27214,7 +27214,7 @@
},
{
"default": true,
- "id": 7397,
+ "id": 7627,
"properties": {
"has_bottle_0": "false",
"has_bottle_1": "false",
@@ -27241,21 +27241,21 @@
},
"states": [
{
- "id": 11258,
+ "id": 11599,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11259,
+ "id": 11600,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11260,
+ "id": 11601,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -27263,21 +27263,21 @@
},
{
"default": true,
- "id": 11261,
+ "id": 11602,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11262,
+ "id": 11603,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11263,
+ "id": 11604,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -27318,7 +27318,7 @@
},
"states": [
{
- "id": 7029,
+ "id": 7259,
"properties": {
"facing": "north",
"half": "top",
@@ -27327,7 +27327,7 @@
}
},
{
- "id": 7030,
+ "id": 7260,
"properties": {
"facing": "north",
"half": "top",
@@ -27336,7 +27336,7 @@
}
},
{
- "id": 7031,
+ "id": 7261,
"properties": {
"facing": "north",
"half": "top",
@@ -27345,7 +27345,7 @@
}
},
{
- "id": 7032,
+ "id": 7262,
"properties": {
"facing": "north",
"half": "top",
@@ -27354,7 +27354,7 @@
}
},
{
- "id": 7033,
+ "id": 7263,
"properties": {
"facing": "north",
"half": "top",
@@ -27363,7 +27363,7 @@
}
},
{
- "id": 7034,
+ "id": 7264,
"properties": {
"facing": "north",
"half": "top",
@@ -27372,7 +27372,7 @@
}
},
{
- "id": 7035,
+ "id": 7265,
"properties": {
"facing": "north",
"half": "top",
@@ -27381,7 +27381,7 @@
}
},
{
- "id": 7036,
+ "id": 7266,
"properties": {
"facing": "north",
"half": "top",
@@ -27390,7 +27390,7 @@
}
},
{
- "id": 7037,
+ "id": 7267,
"properties": {
"facing": "north",
"half": "top",
@@ -27399,7 +27399,7 @@
}
},
{
- "id": 7038,
+ "id": 7268,
"properties": {
"facing": "north",
"half": "top",
@@ -27408,7 +27408,7 @@
}
},
{
- "id": 7039,
+ "id": 7269,
"properties": {
"facing": "north",
"half": "bottom",
@@ -27418,7 +27418,7 @@
},
{
"default": true,
- "id": 7040,
+ "id": 7270,
"properties": {
"facing": "north",
"half": "bottom",
@@ -27427,7 +27427,7 @@
}
},
{
- "id": 7041,
+ "id": 7271,
"properties": {
"facing": "north",
"half": "bottom",
@@ -27436,7 +27436,7 @@
}
},
{
- "id": 7042,
+ "id": 7272,
"properties": {
"facing": "north",
"half": "bottom",
@@ -27445,7 +27445,7 @@
}
},
{
- "id": 7043,
+ "id": 7273,
"properties": {
"facing": "north",
"half": "bottom",
@@ -27454,7 +27454,7 @@
}
},
{
- "id": 7044,
+ "id": 7274,
"properties": {
"facing": "north",
"half": "bottom",
@@ -27463,7 +27463,7 @@
}
},
{
- "id": 7045,
+ "id": 7275,
"properties": {
"facing": "north",
"half": "bottom",
@@ -27472,7 +27472,7 @@
}
},
{
- "id": 7046,
+ "id": 7276,
"properties": {
"facing": "north",
"half": "bottom",
@@ -27481,7 +27481,7 @@
}
},
{
- "id": 7047,
+ "id": 7277,
"properties": {
"facing": "north",
"half": "bottom",
@@ -27490,7 +27490,7 @@
}
},
{
- "id": 7048,
+ "id": 7278,
"properties": {
"facing": "north",
"half": "bottom",
@@ -27499,7 +27499,7 @@
}
},
{
- "id": 7049,
+ "id": 7279,
"properties": {
"facing": "south",
"half": "top",
@@ -27508,7 +27508,7 @@
}
},
{
- "id": 7050,
+ "id": 7280,
"properties": {
"facing": "south",
"half": "top",
@@ -27517,7 +27517,7 @@
}
},
{
- "id": 7051,
+ "id": 7281,
"properties": {
"facing": "south",
"half": "top",
@@ -27526,7 +27526,7 @@
}
},
{
- "id": 7052,
+ "id": 7282,
"properties": {
"facing": "south",
"half": "top",
@@ -27535,7 +27535,7 @@
}
},
{
- "id": 7053,
+ "id": 7283,
"properties": {
"facing": "south",
"half": "top",
@@ -27544,7 +27544,7 @@
}
},
{
- "id": 7054,
+ "id": 7284,
"properties": {
"facing": "south",
"half": "top",
@@ -27553,7 +27553,7 @@
}
},
{
- "id": 7055,
+ "id": 7285,
"properties": {
"facing": "south",
"half": "top",
@@ -27562,7 +27562,7 @@
}
},
{
- "id": 7056,
+ "id": 7286,
"properties": {
"facing": "south",
"half": "top",
@@ -27571,7 +27571,7 @@
}
},
{
- "id": 7057,
+ "id": 7287,
"properties": {
"facing": "south",
"half": "top",
@@ -27580,7 +27580,7 @@
}
},
{
- "id": 7058,
+ "id": 7288,
"properties": {
"facing": "south",
"half": "top",
@@ -27589,7 +27589,7 @@
}
},
{
- "id": 7059,
+ "id": 7289,
"properties": {
"facing": "south",
"half": "bottom",
@@ -27598,7 +27598,7 @@
}
},
{
- "id": 7060,
+ "id": 7290,
"properties": {
"facing": "south",
"half": "bottom",
@@ -27607,7 +27607,7 @@
}
},
{
- "id": 7061,
+ "id": 7291,
"properties": {
"facing": "south",
"half": "bottom",
@@ -27616,7 +27616,7 @@
}
},
{
- "id": 7062,
+ "id": 7292,
"properties": {
"facing": "south",
"half": "bottom",
@@ -27625,7 +27625,7 @@
}
},
{
- "id": 7063,
+ "id": 7293,
"properties": {
"facing": "south",
"half": "bottom",
@@ -27634,7 +27634,7 @@
}
},
{
- "id": 7064,
+ "id": 7294,
"properties": {
"facing": "south",
"half": "bottom",
@@ -27643,7 +27643,7 @@
}
},
{
- "id": 7065,
+ "id": 7295,
"properties": {
"facing": "south",
"half": "bottom",
@@ -27652,7 +27652,7 @@
}
},
{
- "id": 7066,
+ "id": 7296,
"properties": {
"facing": "south",
"half": "bottom",
@@ -27661,7 +27661,7 @@
}
},
{
- "id": 7067,
+ "id": 7297,
"properties": {
"facing": "south",
"half": "bottom",
@@ -27670,7 +27670,7 @@
}
},
{
- "id": 7068,
+ "id": 7298,
"properties": {
"facing": "south",
"half": "bottom",
@@ -27679,7 +27679,7 @@
}
},
{
- "id": 7069,
+ "id": 7299,
"properties": {
"facing": "west",
"half": "top",
@@ -27688,7 +27688,7 @@
}
},
{
- "id": 7070,
+ "id": 7300,
"properties": {
"facing": "west",
"half": "top",
@@ -27697,7 +27697,7 @@
}
},
{
- "id": 7071,
+ "id": 7301,
"properties": {
"facing": "west",
"half": "top",
@@ -27706,7 +27706,7 @@
}
},
{
- "id": 7072,
+ "id": 7302,
"properties": {
"facing": "west",
"half": "top",
@@ -27715,7 +27715,7 @@
}
},
{
- "id": 7073,
+ "id": 7303,
"properties": {
"facing": "west",
"half": "top",
@@ -27724,7 +27724,7 @@
}
},
{
- "id": 7074,
+ "id": 7304,
"properties": {
"facing": "west",
"half": "top",
@@ -27733,7 +27733,7 @@
}
},
{
- "id": 7075,
+ "id": 7305,
"properties": {
"facing": "west",
"half": "top",
@@ -27742,7 +27742,7 @@
}
},
{
- "id": 7076,
+ "id": 7306,
"properties": {
"facing": "west",
"half": "top",
@@ -27751,7 +27751,7 @@
}
},
{
- "id": 7077,
+ "id": 7307,
"properties": {
"facing": "west",
"half": "top",
@@ -27760,7 +27760,7 @@
}
},
{
- "id": 7078,
+ "id": 7308,
"properties": {
"facing": "west",
"half": "top",
@@ -27769,7 +27769,7 @@
}
},
{
- "id": 7079,
+ "id": 7309,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27778,7 +27778,7 @@
}
},
{
- "id": 7080,
+ "id": 7310,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27787,7 +27787,7 @@
}
},
{
- "id": 7081,
+ "id": 7311,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27796,7 +27796,7 @@
}
},
{
- "id": 7082,
+ "id": 7312,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27805,7 +27805,7 @@
}
},
{
- "id": 7083,
+ "id": 7313,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27814,7 +27814,7 @@
}
},
{
- "id": 7084,
+ "id": 7314,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27823,7 +27823,7 @@
}
},
{
- "id": 7085,
+ "id": 7315,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27832,7 +27832,7 @@
}
},
{
- "id": 7086,
+ "id": 7316,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27841,7 +27841,7 @@
}
},
{
- "id": 7087,
+ "id": 7317,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27850,7 +27850,7 @@
}
},
{
- "id": 7088,
+ "id": 7318,
"properties": {
"facing": "west",
"half": "bottom",
@@ -27859,7 +27859,7 @@
}
},
{
- "id": 7089,
+ "id": 7319,
"properties": {
"facing": "east",
"half": "top",
@@ -27868,7 +27868,7 @@
}
},
{
- "id": 7090,
+ "id": 7320,
"properties": {
"facing": "east",
"half": "top",
@@ -27877,7 +27877,7 @@
}
},
{
- "id": 7091,
+ "id": 7321,
"properties": {
"facing": "east",
"half": "top",
@@ -27886,7 +27886,7 @@
}
},
{
- "id": 7092,
+ "id": 7322,
"properties": {
"facing": "east",
"half": "top",
@@ -27895,7 +27895,7 @@
}
},
{
- "id": 7093,
+ "id": 7323,
"properties": {
"facing": "east",
"half": "top",
@@ -27904,7 +27904,7 @@
}
},
{
- "id": 7094,
+ "id": 7324,
"properties": {
"facing": "east",
"half": "top",
@@ -27913,7 +27913,7 @@
}
},
{
- "id": 7095,
+ "id": 7325,
"properties": {
"facing": "east",
"half": "top",
@@ -27922,7 +27922,7 @@
}
},
{
- "id": 7096,
+ "id": 7326,
"properties": {
"facing": "east",
"half": "top",
@@ -27931,7 +27931,7 @@
}
},
{
- "id": 7097,
+ "id": 7327,
"properties": {
"facing": "east",
"half": "top",
@@ -27940,7 +27940,7 @@
}
},
{
- "id": 7098,
+ "id": 7328,
"properties": {
"facing": "east",
"half": "top",
@@ -27949,7 +27949,7 @@
}
},
{
- "id": 7099,
+ "id": 7329,
"properties": {
"facing": "east",
"half": "bottom",
@@ -27958,7 +27958,7 @@
}
},
{
- "id": 7100,
+ "id": 7330,
"properties": {
"facing": "east",
"half": "bottom",
@@ -27967,7 +27967,7 @@
}
},
{
- "id": 7101,
+ "id": 7331,
"properties": {
"facing": "east",
"half": "bottom",
@@ -27976,7 +27976,7 @@
}
},
{
- "id": 7102,
+ "id": 7332,
"properties": {
"facing": "east",
"half": "bottom",
@@ -27985,7 +27985,7 @@
}
},
{
- "id": 7103,
+ "id": 7333,
"properties": {
"facing": "east",
"half": "bottom",
@@ -27994,7 +27994,7 @@
}
},
{
- "id": 7104,
+ "id": 7334,
"properties": {
"facing": "east",
"half": "bottom",
@@ -28003,7 +28003,7 @@
}
},
{
- "id": 7105,
+ "id": 7335,
"properties": {
"facing": "east",
"half": "bottom",
@@ -28012,7 +28012,7 @@
}
},
{
- "id": 7106,
+ "id": 7336,
"properties": {
"facing": "east",
"half": "bottom",
@@ -28021,7 +28021,7 @@
}
},
{
- "id": 7107,
+ "id": 7337,
"properties": {
"facing": "east",
"half": "bottom",
@@ -28030,7 +28030,7 @@
}
},
{
- "id": 7108,
+ "id": 7338,
"properties": {
"facing": "east",
"half": "bottom",
@@ -28077,7 +28077,7 @@
},
"states": [
{
- "id": 14160,
+ "id": 14629,
"properties": {
"east": "none",
"north": "none",
@@ -28088,7 +28088,7 @@
}
},
{
- "id": 14161,
+ "id": 14630,
"properties": {
"east": "none",
"north": "none",
@@ -28099,7 +28099,7 @@
}
},
{
- "id": 14162,
+ "id": 14631,
"properties": {
"east": "none",
"north": "none",
@@ -28111,7 +28111,7 @@
},
{
"default": true,
- "id": 14163,
+ "id": 14632,
"properties": {
"east": "none",
"north": "none",
@@ -28122,7 +28122,7 @@
}
},
{
- "id": 14164,
+ "id": 14633,
"properties": {
"east": "none",
"north": "none",
@@ -28133,7 +28133,7 @@
}
},
{
- "id": 14165,
+ "id": 14634,
"properties": {
"east": "none",
"north": "none",
@@ -28144,7 +28144,7 @@
}
},
{
- "id": 14166,
+ "id": 14635,
"properties": {
"east": "none",
"north": "none",
@@ -28155,7 +28155,7 @@
}
},
{
- "id": 14167,
+ "id": 14636,
"properties": {
"east": "none",
"north": "none",
@@ -28166,7 +28166,7 @@
}
},
{
- "id": 14168,
+ "id": 14637,
"properties": {
"east": "none",
"north": "none",
@@ -28177,7 +28177,7 @@
}
},
{
- "id": 14169,
+ "id": 14638,
"properties": {
"east": "none",
"north": "none",
@@ -28188,7 +28188,7 @@
}
},
{
- "id": 14170,
+ "id": 14639,
"properties": {
"east": "none",
"north": "none",
@@ -28199,7 +28199,7 @@
}
},
{
- "id": 14171,
+ "id": 14640,
"properties": {
"east": "none",
"north": "none",
@@ -28210,7 +28210,7 @@
}
},
{
- "id": 14172,
+ "id": 14641,
"properties": {
"east": "none",
"north": "none",
@@ -28221,7 +28221,7 @@
}
},
{
- "id": 14173,
+ "id": 14642,
"properties": {
"east": "none",
"north": "none",
@@ -28232,7 +28232,7 @@
}
},
{
- "id": 14174,
+ "id": 14643,
"properties": {
"east": "none",
"north": "none",
@@ -28243,7 +28243,7 @@
}
},
{
- "id": 14175,
+ "id": 14644,
"properties": {
"east": "none",
"north": "none",
@@ -28254,7 +28254,7 @@
}
},
{
- "id": 14176,
+ "id": 14645,
"properties": {
"east": "none",
"north": "none",
@@ -28265,7 +28265,7 @@
}
},
{
- "id": 14177,
+ "id": 14646,
"properties": {
"east": "none",
"north": "none",
@@ -28276,7 +28276,7 @@
}
},
{
- "id": 14178,
+ "id": 14647,
"properties": {
"east": "none",
"north": "none",
@@ -28287,7 +28287,7 @@
}
},
{
- "id": 14179,
+ "id": 14648,
"properties": {
"east": "none",
"north": "none",
@@ -28298,7 +28298,7 @@
}
},
{
- "id": 14180,
+ "id": 14649,
"properties": {
"east": "none",
"north": "none",
@@ -28309,7 +28309,7 @@
}
},
{
- "id": 14181,
+ "id": 14650,
"properties": {
"east": "none",
"north": "none",
@@ -28320,7 +28320,7 @@
}
},
{
- "id": 14182,
+ "id": 14651,
"properties": {
"east": "none",
"north": "none",
@@ -28331,7 +28331,7 @@
}
},
{
- "id": 14183,
+ "id": 14652,
"properties": {
"east": "none",
"north": "none",
@@ -28342,7 +28342,7 @@
}
},
{
- "id": 14184,
+ "id": 14653,
"properties": {
"east": "none",
"north": "none",
@@ -28353,7 +28353,7 @@
}
},
{
- "id": 14185,
+ "id": 14654,
"properties": {
"east": "none",
"north": "none",
@@ -28364,7 +28364,7 @@
}
},
{
- "id": 14186,
+ "id": 14655,
"properties": {
"east": "none",
"north": "none",
@@ -28375,7 +28375,7 @@
}
},
{
- "id": 14187,
+ "id": 14656,
"properties": {
"east": "none",
"north": "none",
@@ -28386,7 +28386,7 @@
}
},
{
- "id": 14188,
+ "id": 14657,
"properties": {
"east": "none",
"north": "none",
@@ -28397,7 +28397,7 @@
}
},
{
- "id": 14189,
+ "id": 14658,
"properties": {
"east": "none",
"north": "none",
@@ -28408,7 +28408,7 @@
}
},
{
- "id": 14190,
+ "id": 14659,
"properties": {
"east": "none",
"north": "none",
@@ -28419,7 +28419,7 @@
}
},
{
- "id": 14191,
+ "id": 14660,
"properties": {
"east": "none",
"north": "none",
@@ -28430,7 +28430,7 @@
}
},
{
- "id": 14192,
+ "id": 14661,
"properties": {
"east": "none",
"north": "none",
@@ -28441,7 +28441,7 @@
}
},
{
- "id": 14193,
+ "id": 14662,
"properties": {
"east": "none",
"north": "none",
@@ -28452,7 +28452,7 @@
}
},
{
- "id": 14194,
+ "id": 14663,
"properties": {
"east": "none",
"north": "none",
@@ -28463,7 +28463,7 @@
}
},
{
- "id": 14195,
+ "id": 14664,
"properties": {
"east": "none",
"north": "none",
@@ -28474,7 +28474,7 @@
}
},
{
- "id": 14196,
+ "id": 14665,
"properties": {
"east": "none",
"north": "low",
@@ -28485,7 +28485,7 @@
}
},
{
- "id": 14197,
+ "id": 14666,
"properties": {
"east": "none",
"north": "low",
@@ -28496,7 +28496,7 @@
}
},
{
- "id": 14198,
+ "id": 14667,
"properties": {
"east": "none",
"north": "low",
@@ -28507,7 +28507,7 @@
}
},
{
- "id": 14199,
+ "id": 14668,
"properties": {
"east": "none",
"north": "low",
@@ -28518,7 +28518,7 @@
}
},
{
- "id": 14200,
+ "id": 14669,
"properties": {
"east": "none",
"north": "low",
@@ -28529,7 +28529,7 @@
}
},
{
- "id": 14201,
+ "id": 14670,
"properties": {
"east": "none",
"north": "low",
@@ -28540,7 +28540,7 @@
}
},
{
- "id": 14202,
+ "id": 14671,
"properties": {
"east": "none",
"north": "low",
@@ -28551,7 +28551,7 @@
}
},
{
- "id": 14203,
+ "id": 14672,
"properties": {
"east": "none",
"north": "low",
@@ -28562,7 +28562,7 @@
}
},
{
- "id": 14204,
+ "id": 14673,
"properties": {
"east": "none",
"north": "low",
@@ -28573,7 +28573,7 @@
}
},
{
- "id": 14205,
+ "id": 14674,
"properties": {
"east": "none",
"north": "low",
@@ -28584,7 +28584,7 @@
}
},
{
- "id": 14206,
+ "id": 14675,
"properties": {
"east": "none",
"north": "low",
@@ -28595,7 +28595,7 @@
}
},
{
- "id": 14207,
+ "id": 14676,
"properties": {
"east": "none",
"north": "low",
@@ -28606,7 +28606,7 @@
}
},
{
- "id": 14208,
+ "id": 14677,
"properties": {
"east": "none",
"north": "low",
@@ -28617,7 +28617,7 @@
}
},
{
- "id": 14209,
+ "id": 14678,
"properties": {
"east": "none",
"north": "low",
@@ -28628,7 +28628,7 @@
}
},
{
- "id": 14210,
+ "id": 14679,
"properties": {
"east": "none",
"north": "low",
@@ -28639,7 +28639,7 @@
}
},
{
- "id": 14211,
+ "id": 14680,
"properties": {
"east": "none",
"north": "low",
@@ -28650,7 +28650,7 @@
}
},
{
- "id": 14212,
+ "id": 14681,
"properties": {
"east": "none",
"north": "low",
@@ -28661,7 +28661,7 @@
}
},
{
- "id": 14213,
+ "id": 14682,
"properties": {
"east": "none",
"north": "low",
@@ -28672,7 +28672,7 @@
}
},
{
- "id": 14214,
+ "id": 14683,
"properties": {
"east": "none",
"north": "low",
@@ -28683,7 +28683,7 @@
}
},
{
- "id": 14215,
+ "id": 14684,
"properties": {
"east": "none",
"north": "low",
@@ -28694,7 +28694,7 @@
}
},
{
- "id": 14216,
+ "id": 14685,
"properties": {
"east": "none",
"north": "low",
@@ -28705,7 +28705,7 @@
}
},
{
- "id": 14217,
+ "id": 14686,
"properties": {
"east": "none",
"north": "low",
@@ -28716,7 +28716,7 @@
}
},
{
- "id": 14218,
+ "id": 14687,
"properties": {
"east": "none",
"north": "low",
@@ -28727,7 +28727,7 @@
}
},
{
- "id": 14219,
+ "id": 14688,
"properties": {
"east": "none",
"north": "low",
@@ -28738,7 +28738,7 @@
}
},
{
- "id": 14220,
+ "id": 14689,
"properties": {
"east": "none",
"north": "low",
@@ -28749,7 +28749,7 @@
}
},
{
- "id": 14221,
+ "id": 14690,
"properties": {
"east": "none",
"north": "low",
@@ -28760,7 +28760,7 @@
}
},
{
- "id": 14222,
+ "id": 14691,
"properties": {
"east": "none",
"north": "low",
@@ -28771,7 +28771,7 @@
}
},
{
- "id": 14223,
+ "id": 14692,
"properties": {
"east": "none",
"north": "low",
@@ -28782,7 +28782,7 @@
}
},
{
- "id": 14224,
+ "id": 14693,
"properties": {
"east": "none",
"north": "low",
@@ -28793,7 +28793,7 @@
}
},
{
- "id": 14225,
+ "id": 14694,
"properties": {
"east": "none",
"north": "low",
@@ -28804,7 +28804,7 @@
}
},
{
- "id": 14226,
+ "id": 14695,
"properties": {
"east": "none",
"north": "low",
@@ -28815,7 +28815,7 @@
}
},
{
- "id": 14227,
+ "id": 14696,
"properties": {
"east": "none",
"north": "low",
@@ -28826,7 +28826,7 @@
}
},
{
- "id": 14228,
+ "id": 14697,
"properties": {
"east": "none",
"north": "low",
@@ -28837,7 +28837,7 @@
}
},
{
- "id": 14229,
+ "id": 14698,
"properties": {
"east": "none",
"north": "low",
@@ -28848,7 +28848,7 @@
}
},
{
- "id": 14230,
+ "id": 14699,
"properties": {
"east": "none",
"north": "low",
@@ -28859,7 +28859,7 @@
}
},
{
- "id": 14231,
+ "id": 14700,
"properties": {
"east": "none",
"north": "low",
@@ -28870,7 +28870,7 @@
}
},
{
- "id": 14232,
+ "id": 14701,
"properties": {
"east": "none",
"north": "tall",
@@ -28881,7 +28881,7 @@
}
},
{
- "id": 14233,
+ "id": 14702,
"properties": {
"east": "none",
"north": "tall",
@@ -28892,7 +28892,7 @@
}
},
{
- "id": 14234,
+ "id": 14703,
"properties": {
"east": "none",
"north": "tall",
@@ -28903,7 +28903,7 @@
}
},
{
- "id": 14235,
+ "id": 14704,
"properties": {
"east": "none",
"north": "tall",
@@ -28914,7 +28914,7 @@
}
},
{
- "id": 14236,
+ "id": 14705,
"properties": {
"east": "none",
"north": "tall",
@@ -28925,7 +28925,7 @@
}
},
{
- "id": 14237,
+ "id": 14706,
"properties": {
"east": "none",
"north": "tall",
@@ -28936,7 +28936,7 @@
}
},
{
- "id": 14238,
+ "id": 14707,
"properties": {
"east": "none",
"north": "tall",
@@ -28947,7 +28947,7 @@
}
},
{
- "id": 14239,
+ "id": 14708,
"properties": {
"east": "none",
"north": "tall",
@@ -28958,7 +28958,7 @@
}
},
{
- "id": 14240,
+ "id": 14709,
"properties": {
"east": "none",
"north": "tall",
@@ -28969,7 +28969,7 @@
}
},
{
- "id": 14241,
+ "id": 14710,
"properties": {
"east": "none",
"north": "tall",
@@ -28980,7 +28980,7 @@
}
},
{
- "id": 14242,
+ "id": 14711,
"properties": {
"east": "none",
"north": "tall",
@@ -28991,7 +28991,7 @@
}
},
{
- "id": 14243,
+ "id": 14712,
"properties": {
"east": "none",
"north": "tall",
@@ -29002,7 +29002,7 @@
}
},
{
- "id": 14244,
+ "id": 14713,
"properties": {
"east": "none",
"north": "tall",
@@ -29013,7 +29013,7 @@
}
},
{
- "id": 14245,
+ "id": 14714,
"properties": {
"east": "none",
"north": "tall",
@@ -29024,7 +29024,7 @@
}
},
{
- "id": 14246,
+ "id": 14715,
"properties": {
"east": "none",
"north": "tall",
@@ -29035,7 +29035,7 @@
}
},
{
- "id": 14247,
+ "id": 14716,
"properties": {
"east": "none",
"north": "tall",
@@ -29046,7 +29046,7 @@
}
},
{
- "id": 14248,
+ "id": 14717,
"properties": {
"east": "none",
"north": "tall",
@@ -29057,7 +29057,7 @@
}
},
{
- "id": 14249,
+ "id": 14718,
"properties": {
"east": "none",
"north": "tall",
@@ -29068,7 +29068,7 @@
}
},
{
- "id": 14250,
+ "id": 14719,
"properties": {
"east": "none",
"north": "tall",
@@ -29079,7 +29079,7 @@
}
},
{
- "id": 14251,
+ "id": 14720,
"properties": {
"east": "none",
"north": "tall",
@@ -29090,7 +29090,7 @@
}
},
{
- "id": 14252,
+ "id": 14721,
"properties": {
"east": "none",
"north": "tall",
@@ -29101,7 +29101,7 @@
}
},
{
- "id": 14253,
+ "id": 14722,
"properties": {
"east": "none",
"north": "tall",
@@ -29112,7 +29112,7 @@
}
},
{
- "id": 14254,
+ "id": 14723,
"properties": {
"east": "none",
"north": "tall",
@@ -29123,7 +29123,7 @@
}
},
{
- "id": 14255,
+ "id": 14724,
"properties": {
"east": "none",
"north": "tall",
@@ -29134,7 +29134,7 @@
}
},
{
- "id": 14256,
+ "id": 14725,
"properties": {
"east": "none",
"north": "tall",
@@ -29145,7 +29145,7 @@
}
},
{
- "id": 14257,
+ "id": 14726,
"properties": {
"east": "none",
"north": "tall",
@@ -29156,7 +29156,7 @@
}
},
{
- "id": 14258,
+ "id": 14727,
"properties": {
"east": "none",
"north": "tall",
@@ -29167,7 +29167,7 @@
}
},
{
- "id": 14259,
+ "id": 14728,
"properties": {
"east": "none",
"north": "tall",
@@ -29178,7 +29178,7 @@
}
},
{
- "id": 14260,
+ "id": 14729,
"properties": {
"east": "none",
"north": "tall",
@@ -29189,7 +29189,7 @@
}
},
{
- "id": 14261,
+ "id": 14730,
"properties": {
"east": "none",
"north": "tall",
@@ -29200,7 +29200,7 @@
}
},
{
- "id": 14262,
+ "id": 14731,
"properties": {
"east": "none",
"north": "tall",
@@ -29211,7 +29211,7 @@
}
},
{
- "id": 14263,
+ "id": 14732,
"properties": {
"east": "none",
"north": "tall",
@@ -29222,7 +29222,7 @@
}
},
{
- "id": 14264,
+ "id": 14733,
"properties": {
"east": "none",
"north": "tall",
@@ -29233,7 +29233,7 @@
}
},
{
- "id": 14265,
+ "id": 14734,
"properties": {
"east": "none",
"north": "tall",
@@ -29244,7 +29244,7 @@
}
},
{
- "id": 14266,
+ "id": 14735,
"properties": {
"east": "none",
"north": "tall",
@@ -29255,7 +29255,7 @@
}
},
{
- "id": 14267,
+ "id": 14736,
"properties": {
"east": "none",
"north": "tall",
@@ -29266,7 +29266,7 @@
}
},
{
- "id": 14268,
+ "id": 14737,
"properties": {
"east": "low",
"north": "none",
@@ -29277,7 +29277,7 @@
}
},
{
- "id": 14269,
+ "id": 14738,
"properties": {
"east": "low",
"north": "none",
@@ -29288,7 +29288,7 @@
}
},
{
- "id": 14270,
+ "id": 14739,
"properties": {
"east": "low",
"north": "none",
@@ -29299,7 +29299,7 @@
}
},
{
- "id": 14271,
+ "id": 14740,
"properties": {
"east": "low",
"north": "none",
@@ -29310,7 +29310,7 @@
}
},
{
- "id": 14272,
+ "id": 14741,
"properties": {
"east": "low",
"north": "none",
@@ -29321,7 +29321,7 @@
}
},
{
- "id": 14273,
+ "id": 14742,
"properties": {
"east": "low",
"north": "none",
@@ -29332,7 +29332,7 @@
}
},
{
- "id": 14274,
+ "id": 14743,
"properties": {
"east": "low",
"north": "none",
@@ -29343,7 +29343,7 @@
}
},
{
- "id": 14275,
+ "id": 14744,
"properties": {
"east": "low",
"north": "none",
@@ -29354,7 +29354,7 @@
}
},
{
- "id": 14276,
+ "id": 14745,
"properties": {
"east": "low",
"north": "none",
@@ -29365,7 +29365,7 @@
}
},
{
- "id": 14277,
+ "id": 14746,
"properties": {
"east": "low",
"north": "none",
@@ -29376,7 +29376,7 @@
}
},
{
- "id": 14278,
+ "id": 14747,
"properties": {
"east": "low",
"north": "none",
@@ -29387,7 +29387,7 @@
}
},
{
- "id": 14279,
+ "id": 14748,
"properties": {
"east": "low",
"north": "none",
@@ -29398,7 +29398,7 @@
}
},
{
- "id": 14280,
+ "id": 14749,
"properties": {
"east": "low",
"north": "none",
@@ -29409,7 +29409,7 @@
}
},
{
- "id": 14281,
+ "id": 14750,
"properties": {
"east": "low",
"north": "none",
@@ -29420,7 +29420,7 @@
}
},
{
- "id": 14282,
+ "id": 14751,
"properties": {
"east": "low",
"north": "none",
@@ -29431,7 +29431,7 @@
}
},
{
- "id": 14283,
+ "id": 14752,
"properties": {
"east": "low",
"north": "none",
@@ -29442,7 +29442,7 @@
}
},
{
- "id": 14284,
+ "id": 14753,
"properties": {
"east": "low",
"north": "none",
@@ -29453,7 +29453,7 @@
}
},
{
- "id": 14285,
+ "id": 14754,
"properties": {
"east": "low",
"north": "none",
@@ -29464,7 +29464,7 @@
}
},
{
- "id": 14286,
+ "id": 14755,
"properties": {
"east": "low",
"north": "none",
@@ -29475,7 +29475,7 @@
}
},
{
- "id": 14287,
+ "id": 14756,
"properties": {
"east": "low",
"north": "none",
@@ -29486,7 +29486,7 @@
}
},
{
- "id": 14288,
+ "id": 14757,
"properties": {
"east": "low",
"north": "none",
@@ -29497,7 +29497,7 @@
}
},
{
- "id": 14289,
+ "id": 14758,
"properties": {
"east": "low",
"north": "none",
@@ -29508,7 +29508,7 @@
}
},
{
- "id": 14290,
+ "id": 14759,
"properties": {
"east": "low",
"north": "none",
@@ -29519,7 +29519,7 @@
}
},
{
- "id": 14291,
+ "id": 14760,
"properties": {
"east": "low",
"north": "none",
@@ -29530,7 +29530,7 @@
}
},
{
- "id": 14292,
+ "id": 14761,
"properties": {
"east": "low",
"north": "none",
@@ -29541,7 +29541,7 @@
}
},
{
- "id": 14293,
+ "id": 14762,
"properties": {
"east": "low",
"north": "none",
@@ -29552,7 +29552,7 @@
}
},
{
- "id": 14294,
+ "id": 14763,
"properties": {
"east": "low",
"north": "none",
@@ -29563,7 +29563,7 @@
}
},
{
- "id": 14295,
+ "id": 14764,
"properties": {
"east": "low",
"north": "none",
@@ -29574,7 +29574,7 @@
}
},
{
- "id": 14296,
+ "id": 14765,
"properties": {
"east": "low",
"north": "none",
@@ -29585,7 +29585,7 @@
}
},
{
- "id": 14297,
+ "id": 14766,
"properties": {
"east": "low",
"north": "none",
@@ -29596,7 +29596,7 @@
}
},
{
- "id": 14298,
+ "id": 14767,
"properties": {
"east": "low",
"north": "none",
@@ -29607,7 +29607,7 @@
}
},
{
- "id": 14299,
+ "id": 14768,
"properties": {
"east": "low",
"north": "none",
@@ -29618,7 +29618,7 @@
}
},
{
- "id": 14300,
+ "id": 14769,
"properties": {
"east": "low",
"north": "none",
@@ -29629,7 +29629,7 @@
}
},
{
- "id": 14301,
+ "id": 14770,
"properties": {
"east": "low",
"north": "none",
@@ -29640,7 +29640,7 @@
}
},
{
- "id": 14302,
+ "id": 14771,
"properties": {
"east": "low",
"north": "none",
@@ -29651,7 +29651,7 @@
}
},
{
- "id": 14303,
+ "id": 14772,
"properties": {
"east": "low",
"north": "none",
@@ -29662,7 +29662,7 @@
}
},
{
- "id": 14304,
+ "id": 14773,
"properties": {
"east": "low",
"north": "low",
@@ -29673,7 +29673,7 @@
}
},
{
- "id": 14305,
+ "id": 14774,
"properties": {
"east": "low",
"north": "low",
@@ -29684,7 +29684,7 @@
}
},
{
- "id": 14306,
+ "id": 14775,
"properties": {
"east": "low",
"north": "low",
@@ -29695,7 +29695,7 @@
}
},
{
- "id": 14307,
+ "id": 14776,
"properties": {
"east": "low",
"north": "low",
@@ -29706,7 +29706,7 @@
}
},
{
- "id": 14308,
+ "id": 14777,
"properties": {
"east": "low",
"north": "low",
@@ -29717,7 +29717,7 @@
}
},
{
- "id": 14309,
+ "id": 14778,
"properties": {
"east": "low",
"north": "low",
@@ -29728,7 +29728,7 @@
}
},
{
- "id": 14310,
+ "id": 14779,
"properties": {
"east": "low",
"north": "low",
@@ -29739,7 +29739,7 @@
}
},
{
- "id": 14311,
+ "id": 14780,
"properties": {
"east": "low",
"north": "low",
@@ -29750,7 +29750,7 @@
}
},
{
- "id": 14312,
+ "id": 14781,
"properties": {
"east": "low",
"north": "low",
@@ -29761,7 +29761,7 @@
}
},
{
- "id": 14313,
+ "id": 14782,
"properties": {
"east": "low",
"north": "low",
@@ -29772,7 +29772,7 @@
}
},
{
- "id": 14314,
+ "id": 14783,
"properties": {
"east": "low",
"north": "low",
@@ -29783,7 +29783,7 @@
}
},
{
- "id": 14315,
+ "id": 14784,
"properties": {
"east": "low",
"north": "low",
@@ -29794,7 +29794,7 @@
}
},
{
- "id": 14316,
+ "id": 14785,
"properties": {
"east": "low",
"north": "low",
@@ -29805,7 +29805,7 @@
}
},
{
- "id": 14317,
+ "id": 14786,
"properties": {
"east": "low",
"north": "low",
@@ -29816,7 +29816,7 @@
}
},
{
- "id": 14318,
+ "id": 14787,
"properties": {
"east": "low",
"north": "low",
@@ -29827,7 +29827,7 @@
}
},
{
- "id": 14319,
+ "id": 14788,
"properties": {
"east": "low",
"north": "low",
@@ -29838,7 +29838,7 @@
}
},
{
- "id": 14320,
+ "id": 14789,
"properties": {
"east": "low",
"north": "low",
@@ -29849,7 +29849,7 @@
}
},
{
- "id": 14321,
+ "id": 14790,
"properties": {
"east": "low",
"north": "low",
@@ -29860,7 +29860,7 @@
}
},
{
- "id": 14322,
+ "id": 14791,
"properties": {
"east": "low",
"north": "low",
@@ -29871,7 +29871,7 @@
}
},
{
- "id": 14323,
+ "id": 14792,
"properties": {
"east": "low",
"north": "low",
@@ -29882,7 +29882,7 @@
}
},
{
- "id": 14324,
+ "id": 14793,
"properties": {
"east": "low",
"north": "low",
@@ -29893,7 +29893,7 @@
}
},
{
- "id": 14325,
+ "id": 14794,
"properties": {
"east": "low",
"north": "low",
@@ -29904,7 +29904,7 @@
}
},
{
- "id": 14326,
+ "id": 14795,
"properties": {
"east": "low",
"north": "low",
@@ -29915,7 +29915,7 @@
}
},
{
- "id": 14327,
+ "id": 14796,
"properties": {
"east": "low",
"north": "low",
@@ -29926,7 +29926,7 @@
}
},
{
- "id": 14328,
+ "id": 14797,
"properties": {
"east": "low",
"north": "low",
@@ -29937,7 +29937,7 @@
}
},
{
- "id": 14329,
+ "id": 14798,
"properties": {
"east": "low",
"north": "low",
@@ -29948,7 +29948,7 @@
}
},
{
- "id": 14330,
+ "id": 14799,
"properties": {
"east": "low",
"north": "low",
@@ -29959,7 +29959,7 @@
}
},
{
- "id": 14331,
+ "id": 14800,
"properties": {
"east": "low",
"north": "low",
@@ -29970,7 +29970,7 @@
}
},
{
- "id": 14332,
+ "id": 14801,
"properties": {
"east": "low",
"north": "low",
@@ -29981,7 +29981,7 @@
}
},
{
- "id": 14333,
+ "id": 14802,
"properties": {
"east": "low",
"north": "low",
@@ -29992,7 +29992,7 @@
}
},
{
- "id": 14334,
+ "id": 14803,
"properties": {
"east": "low",
"north": "low",
@@ -30003,7 +30003,7 @@
}
},
{
- "id": 14335,
+ "id": 14804,
"properties": {
"east": "low",
"north": "low",
@@ -30014,7 +30014,7 @@
}
},
{
- "id": 14336,
+ "id": 14805,
"properties": {
"east": "low",
"north": "low",
@@ -30025,7 +30025,7 @@
}
},
{
- "id": 14337,
+ "id": 14806,
"properties": {
"east": "low",
"north": "low",
@@ -30036,7 +30036,7 @@
}
},
{
- "id": 14338,
+ "id": 14807,
"properties": {
"east": "low",
"north": "low",
@@ -30047,7 +30047,7 @@
}
},
{
- "id": 14339,
+ "id": 14808,
"properties": {
"east": "low",
"north": "low",
@@ -30058,7 +30058,7 @@
}
},
{
- "id": 14340,
+ "id": 14809,
"properties": {
"east": "low",
"north": "tall",
@@ -30069,7 +30069,7 @@
}
},
{
- "id": 14341,
+ "id": 14810,
"properties": {
"east": "low",
"north": "tall",
@@ -30080,7 +30080,7 @@
}
},
{
- "id": 14342,
+ "id": 14811,
"properties": {
"east": "low",
"north": "tall",
@@ -30091,7 +30091,7 @@
}
},
{
- "id": 14343,
+ "id": 14812,
"properties": {
"east": "low",
"north": "tall",
@@ -30102,7 +30102,7 @@
}
},
{
- "id": 14344,
+ "id": 14813,
"properties": {
"east": "low",
"north": "tall",
@@ -30113,7 +30113,7 @@
}
},
{
- "id": 14345,
+ "id": 14814,
"properties": {
"east": "low",
"north": "tall",
@@ -30124,7 +30124,7 @@
}
},
{
- "id": 14346,
+ "id": 14815,
"properties": {
"east": "low",
"north": "tall",
@@ -30135,7 +30135,7 @@
}
},
{
- "id": 14347,
+ "id": 14816,
"properties": {
"east": "low",
"north": "tall",
@@ -30146,7 +30146,7 @@
}
},
{
- "id": 14348,
+ "id": 14817,
"properties": {
"east": "low",
"north": "tall",
@@ -30157,7 +30157,7 @@
}
},
{
- "id": 14349,
+ "id": 14818,
"properties": {
"east": "low",
"north": "tall",
@@ -30168,7 +30168,7 @@
}
},
{
- "id": 14350,
+ "id": 14819,
"properties": {
"east": "low",
"north": "tall",
@@ -30179,7 +30179,7 @@
}
},
{
- "id": 14351,
+ "id": 14820,
"properties": {
"east": "low",
"north": "tall",
@@ -30190,7 +30190,7 @@
}
},
{
- "id": 14352,
+ "id": 14821,
"properties": {
"east": "low",
"north": "tall",
@@ -30201,7 +30201,7 @@
}
},
{
- "id": 14353,
+ "id": 14822,
"properties": {
"east": "low",
"north": "tall",
@@ -30212,7 +30212,7 @@
}
},
{
- "id": 14354,
+ "id": 14823,
"properties": {
"east": "low",
"north": "tall",
@@ -30223,7 +30223,7 @@
}
},
{
- "id": 14355,
+ "id": 14824,
"properties": {
"east": "low",
"north": "tall",
@@ -30234,7 +30234,7 @@
}
},
{
- "id": 14356,
+ "id": 14825,
"properties": {
"east": "low",
"north": "tall",
@@ -30245,7 +30245,7 @@
}
},
{
- "id": 14357,
+ "id": 14826,
"properties": {
"east": "low",
"north": "tall",
@@ -30256,7 +30256,7 @@
}
},
{
- "id": 14358,
+ "id": 14827,
"properties": {
"east": "low",
"north": "tall",
@@ -30267,7 +30267,7 @@
}
},
{
- "id": 14359,
+ "id": 14828,
"properties": {
"east": "low",
"north": "tall",
@@ -30278,7 +30278,7 @@
}
},
{
- "id": 14360,
+ "id": 14829,
"properties": {
"east": "low",
"north": "tall",
@@ -30289,7 +30289,7 @@
}
},
{
- "id": 14361,
+ "id": 14830,
"properties": {
"east": "low",
"north": "tall",
@@ -30300,7 +30300,7 @@
}
},
{
- "id": 14362,
+ "id": 14831,
"properties": {
"east": "low",
"north": "tall",
@@ -30311,7 +30311,7 @@
}
},
{
- "id": 14363,
+ "id": 14832,
"properties": {
"east": "low",
"north": "tall",
@@ -30322,7 +30322,7 @@
}
},
{
- "id": 14364,
+ "id": 14833,
"properties": {
"east": "low",
"north": "tall",
@@ -30333,7 +30333,7 @@
}
},
{
- "id": 14365,
+ "id": 14834,
"properties": {
"east": "low",
"north": "tall",
@@ -30344,7 +30344,7 @@
}
},
{
- "id": 14366,
+ "id": 14835,
"properties": {
"east": "low",
"north": "tall",
@@ -30355,7 +30355,7 @@
}
},
{
- "id": 14367,
+ "id": 14836,
"properties": {
"east": "low",
"north": "tall",
@@ -30366,7 +30366,7 @@
}
},
{
- "id": 14368,
+ "id": 14837,
"properties": {
"east": "low",
"north": "tall",
@@ -30377,7 +30377,7 @@
}
},
{
- "id": 14369,
+ "id": 14838,
"properties": {
"east": "low",
"north": "tall",
@@ -30388,7 +30388,7 @@
}
},
{
- "id": 14370,
+ "id": 14839,
"properties": {
"east": "low",
"north": "tall",
@@ -30399,7 +30399,7 @@
}
},
{
- "id": 14371,
+ "id": 14840,
"properties": {
"east": "low",
"north": "tall",
@@ -30410,7 +30410,7 @@
}
},
{
- "id": 14372,
+ "id": 14841,
"properties": {
"east": "low",
"north": "tall",
@@ -30421,7 +30421,7 @@
}
},
{
- "id": 14373,
+ "id": 14842,
"properties": {
"east": "low",
"north": "tall",
@@ -30432,7 +30432,7 @@
}
},
{
- "id": 14374,
+ "id": 14843,
"properties": {
"east": "low",
"north": "tall",
@@ -30443,7 +30443,7 @@
}
},
{
- "id": 14375,
+ "id": 14844,
"properties": {
"east": "low",
"north": "tall",
@@ -30454,7 +30454,7 @@
}
},
{
- "id": 14376,
+ "id": 14845,
"properties": {
"east": "tall",
"north": "none",
@@ -30465,7 +30465,7 @@
}
},
{
- "id": 14377,
+ "id": 14846,
"properties": {
"east": "tall",
"north": "none",
@@ -30476,7 +30476,7 @@
}
},
{
- "id": 14378,
+ "id": 14847,
"properties": {
"east": "tall",
"north": "none",
@@ -30487,7 +30487,7 @@
}
},
{
- "id": 14379,
+ "id": 14848,
"properties": {
"east": "tall",
"north": "none",
@@ -30498,7 +30498,7 @@
}
},
{
- "id": 14380,
+ "id": 14849,
"properties": {
"east": "tall",
"north": "none",
@@ -30509,7 +30509,7 @@
}
},
{
- "id": 14381,
+ "id": 14850,
"properties": {
"east": "tall",
"north": "none",
@@ -30520,7 +30520,7 @@
}
},
{
- "id": 14382,
+ "id": 14851,
"properties": {
"east": "tall",
"north": "none",
@@ -30531,7 +30531,7 @@
}
},
{
- "id": 14383,
+ "id": 14852,
"properties": {
"east": "tall",
"north": "none",
@@ -30542,7 +30542,7 @@
}
},
{
- "id": 14384,
+ "id": 14853,
"properties": {
"east": "tall",
"north": "none",
@@ -30553,7 +30553,7 @@
}
},
{
- "id": 14385,
+ "id": 14854,
"properties": {
"east": "tall",
"north": "none",
@@ -30564,7 +30564,7 @@
}
},
{
- "id": 14386,
+ "id": 14855,
"properties": {
"east": "tall",
"north": "none",
@@ -30575,7 +30575,7 @@
}
},
{
- "id": 14387,
+ "id": 14856,
"properties": {
"east": "tall",
"north": "none",
@@ -30586,7 +30586,7 @@
}
},
{
- "id": 14388,
+ "id": 14857,
"properties": {
"east": "tall",
"north": "none",
@@ -30597,7 +30597,7 @@
}
},
{
- "id": 14389,
+ "id": 14858,
"properties": {
"east": "tall",
"north": "none",
@@ -30608,7 +30608,7 @@
}
},
{
- "id": 14390,
+ "id": 14859,
"properties": {
"east": "tall",
"north": "none",
@@ -30619,7 +30619,7 @@
}
},
{
- "id": 14391,
+ "id": 14860,
"properties": {
"east": "tall",
"north": "none",
@@ -30630,7 +30630,7 @@
}
},
{
- "id": 14392,
+ "id": 14861,
"properties": {
"east": "tall",
"north": "none",
@@ -30641,7 +30641,7 @@
}
},
{
- "id": 14393,
+ "id": 14862,
"properties": {
"east": "tall",
"north": "none",
@@ -30652,7 +30652,7 @@
}
},
{
- "id": 14394,
+ "id": 14863,
"properties": {
"east": "tall",
"north": "none",
@@ -30663,7 +30663,7 @@
}
},
{
- "id": 14395,
+ "id": 14864,
"properties": {
"east": "tall",
"north": "none",
@@ -30674,7 +30674,7 @@
}
},
{
- "id": 14396,
+ "id": 14865,
"properties": {
"east": "tall",
"north": "none",
@@ -30685,7 +30685,7 @@
}
},
{
- "id": 14397,
+ "id": 14866,
"properties": {
"east": "tall",
"north": "none",
@@ -30696,7 +30696,7 @@
}
},
{
- "id": 14398,
+ "id": 14867,
"properties": {
"east": "tall",
"north": "none",
@@ -30707,7 +30707,7 @@
}
},
{
- "id": 14399,
+ "id": 14868,
"properties": {
"east": "tall",
"north": "none",
@@ -30718,7 +30718,7 @@
}
},
{
- "id": 14400,
+ "id": 14869,
"properties": {
"east": "tall",
"north": "none",
@@ -30729,7 +30729,7 @@
}
},
{
- "id": 14401,
+ "id": 14870,
"properties": {
"east": "tall",
"north": "none",
@@ -30740,7 +30740,7 @@
}
},
{
- "id": 14402,
+ "id": 14871,
"properties": {
"east": "tall",
"north": "none",
@@ -30751,7 +30751,7 @@
}
},
{
- "id": 14403,
+ "id": 14872,
"properties": {
"east": "tall",
"north": "none",
@@ -30762,7 +30762,7 @@
}
},
{
- "id": 14404,
+ "id": 14873,
"properties": {
"east": "tall",
"north": "none",
@@ -30773,7 +30773,7 @@
}
},
{
- "id": 14405,
+ "id": 14874,
"properties": {
"east": "tall",
"north": "none",
@@ -30784,7 +30784,7 @@
}
},
{
- "id": 14406,
+ "id": 14875,
"properties": {
"east": "tall",
"north": "none",
@@ -30795,7 +30795,7 @@
}
},
{
- "id": 14407,
+ "id": 14876,
"properties": {
"east": "tall",
"north": "none",
@@ -30806,7 +30806,7 @@
}
},
{
- "id": 14408,
+ "id": 14877,
"properties": {
"east": "tall",
"north": "none",
@@ -30817,7 +30817,7 @@
}
},
{
- "id": 14409,
+ "id": 14878,
"properties": {
"east": "tall",
"north": "none",
@@ -30828,7 +30828,7 @@
}
},
{
- "id": 14410,
+ "id": 14879,
"properties": {
"east": "tall",
"north": "none",
@@ -30839,7 +30839,7 @@
}
},
{
- "id": 14411,
+ "id": 14880,
"properties": {
"east": "tall",
"north": "none",
@@ -30850,7 +30850,7 @@
}
},
{
- "id": 14412,
+ "id": 14881,
"properties": {
"east": "tall",
"north": "low",
@@ -30861,7 +30861,7 @@
}
},
{
- "id": 14413,
+ "id": 14882,
"properties": {
"east": "tall",
"north": "low",
@@ -30872,7 +30872,7 @@
}
},
{
- "id": 14414,
+ "id": 14883,
"properties": {
"east": "tall",
"north": "low",
@@ -30883,7 +30883,7 @@
}
},
{
- "id": 14415,
+ "id": 14884,
"properties": {
"east": "tall",
"north": "low",
@@ -30894,7 +30894,7 @@
}
},
{
- "id": 14416,
+ "id": 14885,
"properties": {
"east": "tall",
"north": "low",
@@ -30905,7 +30905,7 @@
}
},
{
- "id": 14417,
+ "id": 14886,
"properties": {
"east": "tall",
"north": "low",
@@ -30916,7 +30916,7 @@
}
},
{
- "id": 14418,
+ "id": 14887,
"properties": {
"east": "tall",
"north": "low",
@@ -30927,7 +30927,7 @@
}
},
{
- "id": 14419,
+ "id": 14888,
"properties": {
"east": "tall",
"north": "low",
@@ -30938,7 +30938,7 @@
}
},
{
- "id": 14420,
+ "id": 14889,
"properties": {
"east": "tall",
"north": "low",
@@ -30949,7 +30949,7 @@
}
},
{
- "id": 14421,
+ "id": 14890,
"properties": {
"east": "tall",
"north": "low",
@@ -30960,7 +30960,7 @@
}
},
{
- "id": 14422,
+ "id": 14891,
"properties": {
"east": "tall",
"north": "low",
@@ -30971,7 +30971,7 @@
}
},
{
- "id": 14423,
+ "id": 14892,
"properties": {
"east": "tall",
"north": "low",
@@ -30982,7 +30982,7 @@
}
},
{
- "id": 14424,
+ "id": 14893,
"properties": {
"east": "tall",
"north": "low",
@@ -30993,7 +30993,7 @@
}
},
{
- "id": 14425,
+ "id": 14894,
"properties": {
"east": "tall",
"north": "low",
@@ -31004,7 +31004,7 @@
}
},
{
- "id": 14426,
+ "id": 14895,
"properties": {
"east": "tall",
"north": "low",
@@ -31015,7 +31015,7 @@
}
},
{
- "id": 14427,
+ "id": 14896,
"properties": {
"east": "tall",
"north": "low",
@@ -31026,7 +31026,7 @@
}
},
{
- "id": 14428,
+ "id": 14897,
"properties": {
"east": "tall",
"north": "low",
@@ -31037,7 +31037,7 @@
}
},
{
- "id": 14429,
+ "id": 14898,
"properties": {
"east": "tall",
"north": "low",
@@ -31048,7 +31048,7 @@
}
},
{
- "id": 14430,
+ "id": 14899,
"properties": {
"east": "tall",
"north": "low",
@@ -31059,7 +31059,7 @@
}
},
{
- "id": 14431,
+ "id": 14900,
"properties": {
"east": "tall",
"north": "low",
@@ -31070,7 +31070,7 @@
}
},
{
- "id": 14432,
+ "id": 14901,
"properties": {
"east": "tall",
"north": "low",
@@ -31081,7 +31081,7 @@
}
},
{
- "id": 14433,
+ "id": 14902,
"properties": {
"east": "tall",
"north": "low",
@@ -31092,7 +31092,7 @@
}
},
{
- "id": 14434,
+ "id": 14903,
"properties": {
"east": "tall",
"north": "low",
@@ -31103,7 +31103,7 @@
}
},
{
- "id": 14435,
+ "id": 14904,
"properties": {
"east": "tall",
"north": "low",
@@ -31114,7 +31114,7 @@
}
},
{
- "id": 14436,
+ "id": 14905,
"properties": {
"east": "tall",
"north": "low",
@@ -31125,7 +31125,7 @@
}
},
{
- "id": 14437,
+ "id": 14906,
"properties": {
"east": "tall",
"north": "low",
@@ -31136,7 +31136,7 @@
}
},
{
- "id": 14438,
+ "id": 14907,
"properties": {
"east": "tall",
"north": "low",
@@ -31147,7 +31147,7 @@
}
},
{
- "id": 14439,
+ "id": 14908,
"properties": {
"east": "tall",
"north": "low",
@@ -31158,7 +31158,7 @@
}
},
{
- "id": 14440,
+ "id": 14909,
"properties": {
"east": "tall",
"north": "low",
@@ -31169,7 +31169,7 @@
}
},
{
- "id": 14441,
+ "id": 14910,
"properties": {
"east": "tall",
"north": "low",
@@ -31180,7 +31180,7 @@
}
},
{
- "id": 14442,
+ "id": 14911,
"properties": {
"east": "tall",
"north": "low",
@@ -31191,7 +31191,7 @@
}
},
{
- "id": 14443,
+ "id": 14912,
"properties": {
"east": "tall",
"north": "low",
@@ -31202,7 +31202,7 @@
}
},
{
- "id": 14444,
+ "id": 14913,
"properties": {
"east": "tall",
"north": "low",
@@ -31213,7 +31213,7 @@
}
},
{
- "id": 14445,
+ "id": 14914,
"properties": {
"east": "tall",
"north": "low",
@@ -31224,7 +31224,7 @@
}
},
{
- "id": 14446,
+ "id": 14915,
"properties": {
"east": "tall",
"north": "low",
@@ -31235,7 +31235,7 @@
}
},
{
- "id": 14447,
+ "id": 14916,
"properties": {
"east": "tall",
"north": "low",
@@ -31246,7 +31246,7 @@
}
},
{
- "id": 14448,
+ "id": 14917,
"properties": {
"east": "tall",
"north": "tall",
@@ -31257,7 +31257,7 @@
}
},
{
- "id": 14449,
+ "id": 14918,
"properties": {
"east": "tall",
"north": "tall",
@@ -31268,7 +31268,7 @@
}
},
{
- "id": 14450,
+ "id": 14919,
"properties": {
"east": "tall",
"north": "tall",
@@ -31279,7 +31279,7 @@
}
},
{
- "id": 14451,
+ "id": 14920,
"properties": {
"east": "tall",
"north": "tall",
@@ -31290,7 +31290,7 @@
}
},
{
- "id": 14452,
+ "id": 14921,
"properties": {
"east": "tall",
"north": "tall",
@@ -31301,7 +31301,7 @@
}
},
{
- "id": 14453,
+ "id": 14922,
"properties": {
"east": "tall",
"north": "tall",
@@ -31312,7 +31312,7 @@
}
},
{
- "id": 14454,
+ "id": 14923,
"properties": {
"east": "tall",
"north": "tall",
@@ -31323,7 +31323,7 @@
}
},
{
- "id": 14455,
+ "id": 14924,
"properties": {
"east": "tall",
"north": "tall",
@@ -31334,7 +31334,7 @@
}
},
{
- "id": 14456,
+ "id": 14925,
"properties": {
"east": "tall",
"north": "tall",
@@ -31345,7 +31345,7 @@
}
},
{
- "id": 14457,
+ "id": 14926,
"properties": {
"east": "tall",
"north": "tall",
@@ -31356,7 +31356,7 @@
}
},
{
- "id": 14458,
+ "id": 14927,
"properties": {
"east": "tall",
"north": "tall",
@@ -31367,7 +31367,7 @@
}
},
{
- "id": 14459,
+ "id": 14928,
"properties": {
"east": "tall",
"north": "tall",
@@ -31378,7 +31378,7 @@
}
},
{
- "id": 14460,
+ "id": 14929,
"properties": {
"east": "tall",
"north": "tall",
@@ -31389,7 +31389,7 @@
}
},
{
- "id": 14461,
+ "id": 14930,
"properties": {
"east": "tall",
"north": "tall",
@@ -31400,7 +31400,7 @@
}
},
{
- "id": 14462,
+ "id": 14931,
"properties": {
"east": "tall",
"north": "tall",
@@ -31411,7 +31411,7 @@
}
},
{
- "id": 14463,
+ "id": 14932,
"properties": {
"east": "tall",
"north": "tall",
@@ -31422,7 +31422,7 @@
}
},
{
- "id": 14464,
+ "id": 14933,
"properties": {
"east": "tall",
"north": "tall",
@@ -31433,7 +31433,7 @@
}
},
{
- "id": 14465,
+ "id": 14934,
"properties": {
"east": "tall",
"north": "tall",
@@ -31444,7 +31444,7 @@
}
},
{
- "id": 14466,
+ "id": 14935,
"properties": {
"east": "tall",
"north": "tall",
@@ -31455,7 +31455,7 @@
}
},
{
- "id": 14467,
+ "id": 14936,
"properties": {
"east": "tall",
"north": "tall",
@@ -31466,7 +31466,7 @@
}
},
{
- "id": 14468,
+ "id": 14937,
"properties": {
"east": "tall",
"north": "tall",
@@ -31477,7 +31477,7 @@
}
},
{
- "id": 14469,
+ "id": 14938,
"properties": {
"east": "tall",
"north": "tall",
@@ -31488,7 +31488,7 @@
}
},
{
- "id": 14470,
+ "id": 14939,
"properties": {
"east": "tall",
"north": "tall",
@@ -31499,7 +31499,7 @@
}
},
{
- "id": 14471,
+ "id": 14940,
"properties": {
"east": "tall",
"north": "tall",
@@ -31510,7 +31510,7 @@
}
},
{
- "id": 14472,
+ "id": 14941,
"properties": {
"east": "tall",
"north": "tall",
@@ -31521,7 +31521,7 @@
}
},
{
- "id": 14473,
+ "id": 14942,
"properties": {
"east": "tall",
"north": "tall",
@@ -31532,7 +31532,7 @@
}
},
{
- "id": 14474,
+ "id": 14943,
"properties": {
"east": "tall",
"north": "tall",
@@ -31543,7 +31543,7 @@
}
},
{
- "id": 14475,
+ "id": 14944,
"properties": {
"east": "tall",
"north": "tall",
@@ -31554,7 +31554,7 @@
}
},
{
- "id": 14476,
+ "id": 14945,
"properties": {
"east": "tall",
"north": "tall",
@@ -31565,7 +31565,7 @@
}
},
{
- "id": 14477,
+ "id": 14946,
"properties": {
"east": "tall",
"north": "tall",
@@ -31576,7 +31576,7 @@
}
},
{
- "id": 14478,
+ "id": 14947,
"properties": {
"east": "tall",
"north": "tall",
@@ -31587,7 +31587,7 @@
}
},
{
- "id": 14479,
+ "id": 14948,
"properties": {
"east": "tall",
"north": "tall",
@@ -31598,7 +31598,7 @@
}
},
{
- "id": 14480,
+ "id": 14949,
"properties": {
"east": "tall",
"north": "tall",
@@ -31609,7 +31609,7 @@
}
},
{
- "id": 14481,
+ "id": 14950,
"properties": {
"east": "tall",
"north": "tall",
@@ -31620,7 +31620,7 @@
}
},
{
- "id": 14482,
+ "id": 14951,
"properties": {
"east": "tall",
"north": "tall",
@@ -31631,7 +31631,7 @@
}
},
{
- "id": 14483,
+ "id": 14952,
"properties": {
"east": "tall",
"north": "tall",
@@ -31651,7 +31651,7 @@
"states": [
{
"default": true,
- "id": 2093
+ "id": 2136
}
]
},
@@ -31684,97 +31684,97 @@
"states": [
{
"default": true,
- "id": 10951,
+ "id": 11286,
"properties": {
"rotation": "0"
}
},
{
- "id": 10952,
+ "id": 11287,
"properties": {
"rotation": "1"
}
},
{
- "id": 10953,
+ "id": 11288,
"properties": {
"rotation": "2"
}
},
{
- "id": 10954,
+ "id": 11289,
"properties": {
"rotation": "3"
}
},
{
- "id": 10955,
+ "id": 11290,
"properties": {
"rotation": "4"
}
},
{
- "id": 10956,
+ "id": 11291,
"properties": {
"rotation": "5"
}
},
{
- "id": 10957,
+ "id": 11292,
"properties": {
"rotation": "6"
}
},
{
- "id": 10958,
+ "id": 11293,
"properties": {
"rotation": "7"
}
},
{
- "id": 10959,
+ "id": 11294,
"properties": {
"rotation": "8"
}
},
{
- "id": 10960,
+ "id": 11295,
"properties": {
"rotation": "9"
}
},
{
- "id": 10961,
+ "id": 11296,
"properties": {
"rotation": "10"
}
},
{
- "id": 10962,
+ "id": 11297,
"properties": {
"rotation": "11"
}
},
{
- "id": 10963,
+ "id": 11298,
"properties": {
"rotation": "12"
}
},
{
- "id": 10964,
+ "id": 11299,
"properties": {
"rotation": "13"
}
},
{
- "id": 10965,
+ "id": 11300,
"properties": {
"rotation": "14"
}
},
{
- "id": 10966,
+ "id": 11301,
"properties": {
"rotation": "15"
}
@@ -31805,7 +31805,7 @@
},
"states": [
{
- "id": 1880,
+ "id": 1923,
"properties": {
"facing": "north",
"occupied": "true",
@@ -31813,7 +31813,7 @@
}
},
{
- "id": 1881,
+ "id": 1924,
"properties": {
"facing": "north",
"occupied": "true",
@@ -31821,7 +31821,7 @@
}
},
{
- "id": 1882,
+ "id": 1925,
"properties": {
"facing": "north",
"occupied": "false",
@@ -31830,7 +31830,7 @@
},
{
"default": true,
- "id": 1883,
+ "id": 1926,
"properties": {
"facing": "north",
"occupied": "false",
@@ -31838,7 +31838,7 @@
}
},
{
- "id": 1884,
+ "id": 1927,
"properties": {
"facing": "south",
"occupied": "true",
@@ -31846,7 +31846,7 @@
}
},
{
- "id": 1885,
+ "id": 1928,
"properties": {
"facing": "south",
"occupied": "true",
@@ -31854,7 +31854,7 @@
}
},
{
- "id": 1886,
+ "id": 1929,
"properties": {
"facing": "south",
"occupied": "false",
@@ -31862,7 +31862,7 @@
}
},
{
- "id": 1887,
+ "id": 1930,
"properties": {
"facing": "south",
"occupied": "false",
@@ -31870,7 +31870,7 @@
}
},
{
- "id": 1888,
+ "id": 1931,
"properties": {
"facing": "west",
"occupied": "true",
@@ -31878,7 +31878,7 @@
}
},
{
- "id": 1889,
+ "id": 1932,
"properties": {
"facing": "west",
"occupied": "true",
@@ -31886,7 +31886,7 @@
}
},
{
- "id": 1890,
+ "id": 1933,
"properties": {
"facing": "west",
"occupied": "false",
@@ -31894,7 +31894,7 @@
}
},
{
- "id": 1891,
+ "id": 1934,
"properties": {
"facing": "west",
"occupied": "false",
@@ -31902,7 +31902,7 @@
}
},
{
- "id": 1892,
+ "id": 1935,
"properties": {
"facing": "east",
"occupied": "true",
@@ -31910,7 +31910,7 @@
}
},
{
- "id": 1893,
+ "id": 1936,
"properties": {
"facing": "east",
"occupied": "true",
@@ -31918,7 +31918,7 @@
}
},
{
- "id": 1894,
+ "id": 1937,
"properties": {
"facing": "east",
"occupied": "false",
@@ -31926,7 +31926,7 @@
}
},
{
- "id": 1895,
+ "id": 1938,
"properties": {
"facing": "east",
"occupied": "false",
@@ -31958,7 +31958,7 @@
},
"states": [
{
- "id": 20933,
+ "id": 21402,
"properties": {
"candles": "1",
"lit": "true",
@@ -31966,7 +31966,7 @@
}
},
{
- "id": 20934,
+ "id": 21403,
"properties": {
"candles": "1",
"lit": "true",
@@ -31974,7 +31974,7 @@
}
},
{
- "id": 20935,
+ "id": 21404,
"properties": {
"candles": "1",
"lit": "false",
@@ -31983,7 +31983,7 @@
},
{
"default": true,
- "id": 20936,
+ "id": 21405,
"properties": {
"candles": "1",
"lit": "false",
@@ -31991,7 +31991,7 @@
}
},
{
- "id": 20937,
+ "id": 21406,
"properties": {
"candles": "2",
"lit": "true",
@@ -31999,7 +31999,7 @@
}
},
{
- "id": 20938,
+ "id": 21407,
"properties": {
"candles": "2",
"lit": "true",
@@ -32007,7 +32007,7 @@
}
},
{
- "id": 20939,
+ "id": 21408,
"properties": {
"candles": "2",
"lit": "false",
@@ -32015,7 +32015,7 @@
}
},
{
- "id": 20940,
+ "id": 21409,
"properties": {
"candles": "2",
"lit": "false",
@@ -32023,7 +32023,7 @@
}
},
{
- "id": 20941,
+ "id": 21410,
"properties": {
"candles": "3",
"lit": "true",
@@ -32031,7 +32031,7 @@
}
},
{
- "id": 20942,
+ "id": 21411,
"properties": {
"candles": "3",
"lit": "true",
@@ -32039,7 +32039,7 @@
}
},
{
- "id": 20943,
+ "id": 21412,
"properties": {
"candles": "3",
"lit": "false",
@@ -32047,7 +32047,7 @@
}
},
{
- "id": 20944,
+ "id": 21413,
"properties": {
"candles": "3",
"lit": "false",
@@ -32055,7 +32055,7 @@
}
},
{
- "id": 20945,
+ "id": 21414,
"properties": {
"candles": "4",
"lit": "true",
@@ -32063,7 +32063,7 @@
}
},
{
- "id": 20946,
+ "id": 21415,
"properties": {
"candles": "4",
"lit": "true",
@@ -32071,7 +32071,7 @@
}
},
{
- "id": 20947,
+ "id": 21416,
"properties": {
"candles": "4",
"lit": "false",
@@ -32079,7 +32079,7 @@
}
},
{
- "id": 20948,
+ "id": 21417,
"properties": {
"candles": "4",
"lit": "false",
@@ -32102,14 +32102,14 @@
},
"states": [
{
- "id": 21023,
+ "id": 21492,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 21024,
+ "id": 21493,
"properties": {
"lit": "false"
}
@@ -32125,7 +32125,7 @@
"states": [
{
"default": true,
- "id": 10740
+ "id": 11075
}
]
},
@@ -32137,7 +32137,7 @@
"states": [
{
"default": true,
- "id": 12740
+ "id": 13209
}
]
},
@@ -32150,7 +32150,7 @@
"states": [
{
"default": true,
- "id": 12756
+ "id": 13225
}
]
},
@@ -32170,25 +32170,25 @@
"states": [
{
"default": true,
- "id": 12712,
+ "id": 13181,
"properties": {
"facing": "north"
}
},
{
- "id": 12713,
+ "id": 13182,
"properties": {
"facing": "south"
}
},
{
- "id": 12714,
+ "id": 13183,
"properties": {
"facing": "west"
}
},
{
- "id": 12715,
+ "id": 13184,
"properties": {
"facing": "east"
}
@@ -32204,7 +32204,7 @@
"states": [
{
"default": true,
- "id": 2089
+ "id": 2132
}
]
},
@@ -32242,7 +32242,7 @@
"states": [
{
"default": true,
- "id": 6549,
+ "id": 6779,
"properties": {
"down": "true",
"east": "true",
@@ -32253,7 +32253,7 @@
}
},
{
- "id": 6550,
+ "id": 6780,
"properties": {
"down": "true",
"east": "true",
@@ -32264,7 +32264,7 @@
}
},
{
- "id": 6551,
+ "id": 6781,
"properties": {
"down": "true",
"east": "true",
@@ -32275,7 +32275,7 @@
}
},
{
- "id": 6552,
+ "id": 6782,
"properties": {
"down": "true",
"east": "true",
@@ -32286,7 +32286,7 @@
}
},
{
- "id": 6553,
+ "id": 6783,
"properties": {
"down": "true",
"east": "true",
@@ -32297,7 +32297,7 @@
}
},
{
- "id": 6554,
+ "id": 6784,
"properties": {
"down": "true",
"east": "true",
@@ -32308,7 +32308,7 @@
}
},
{
- "id": 6555,
+ "id": 6785,
"properties": {
"down": "true",
"east": "true",
@@ -32319,7 +32319,7 @@
}
},
{
- "id": 6556,
+ "id": 6786,
"properties": {
"down": "true",
"east": "true",
@@ -32330,7 +32330,7 @@
}
},
{
- "id": 6557,
+ "id": 6787,
"properties": {
"down": "true",
"east": "true",
@@ -32341,7 +32341,7 @@
}
},
{
- "id": 6558,
+ "id": 6788,
"properties": {
"down": "true",
"east": "true",
@@ -32352,7 +32352,7 @@
}
},
{
- "id": 6559,
+ "id": 6789,
"properties": {
"down": "true",
"east": "true",
@@ -32363,7 +32363,7 @@
}
},
{
- "id": 6560,
+ "id": 6790,
"properties": {
"down": "true",
"east": "true",
@@ -32374,7 +32374,7 @@
}
},
{
- "id": 6561,
+ "id": 6791,
"properties": {
"down": "true",
"east": "true",
@@ -32385,7 +32385,7 @@
}
},
{
- "id": 6562,
+ "id": 6792,
"properties": {
"down": "true",
"east": "true",
@@ -32396,7 +32396,7 @@
}
},
{
- "id": 6563,
+ "id": 6793,
"properties": {
"down": "true",
"east": "true",
@@ -32407,7 +32407,7 @@
}
},
{
- "id": 6564,
+ "id": 6794,
"properties": {
"down": "true",
"east": "true",
@@ -32418,7 +32418,7 @@
}
},
{
- "id": 6565,
+ "id": 6795,
"properties": {
"down": "true",
"east": "false",
@@ -32429,7 +32429,7 @@
}
},
{
- "id": 6566,
+ "id": 6796,
"properties": {
"down": "true",
"east": "false",
@@ -32440,7 +32440,7 @@
}
},
{
- "id": 6567,
+ "id": 6797,
"properties": {
"down": "true",
"east": "false",
@@ -32451,7 +32451,7 @@
}
},
{
- "id": 6568,
+ "id": 6798,
"properties": {
"down": "true",
"east": "false",
@@ -32462,7 +32462,7 @@
}
},
{
- "id": 6569,
+ "id": 6799,
"properties": {
"down": "true",
"east": "false",
@@ -32473,7 +32473,7 @@
}
},
{
- "id": 6570,
+ "id": 6800,
"properties": {
"down": "true",
"east": "false",
@@ -32484,7 +32484,7 @@
}
},
{
- "id": 6571,
+ "id": 6801,
"properties": {
"down": "true",
"east": "false",
@@ -32495,7 +32495,7 @@
}
},
{
- "id": 6572,
+ "id": 6802,
"properties": {
"down": "true",
"east": "false",
@@ -32506,7 +32506,7 @@
}
},
{
- "id": 6573,
+ "id": 6803,
"properties": {
"down": "true",
"east": "false",
@@ -32517,7 +32517,7 @@
}
},
{
- "id": 6574,
+ "id": 6804,
"properties": {
"down": "true",
"east": "false",
@@ -32528,7 +32528,7 @@
}
},
{
- "id": 6575,
+ "id": 6805,
"properties": {
"down": "true",
"east": "false",
@@ -32539,7 +32539,7 @@
}
},
{
- "id": 6576,
+ "id": 6806,
"properties": {
"down": "true",
"east": "false",
@@ -32550,7 +32550,7 @@
}
},
{
- "id": 6577,
+ "id": 6807,
"properties": {
"down": "true",
"east": "false",
@@ -32561,7 +32561,7 @@
}
},
{
- "id": 6578,
+ "id": 6808,
"properties": {
"down": "true",
"east": "false",
@@ -32572,7 +32572,7 @@
}
},
{
- "id": 6579,
+ "id": 6809,
"properties": {
"down": "true",
"east": "false",
@@ -32583,7 +32583,7 @@
}
},
{
- "id": 6580,
+ "id": 6810,
"properties": {
"down": "true",
"east": "false",
@@ -32594,7 +32594,7 @@
}
},
{
- "id": 6581,
+ "id": 6811,
"properties": {
"down": "false",
"east": "true",
@@ -32605,7 +32605,7 @@
}
},
{
- "id": 6582,
+ "id": 6812,
"properties": {
"down": "false",
"east": "true",
@@ -32616,7 +32616,7 @@
}
},
{
- "id": 6583,
+ "id": 6813,
"properties": {
"down": "false",
"east": "true",
@@ -32627,7 +32627,7 @@
}
},
{
- "id": 6584,
+ "id": 6814,
"properties": {
"down": "false",
"east": "true",
@@ -32638,7 +32638,7 @@
}
},
{
- "id": 6585,
+ "id": 6815,
"properties": {
"down": "false",
"east": "true",
@@ -32649,7 +32649,7 @@
}
},
{
- "id": 6586,
+ "id": 6816,
"properties": {
"down": "false",
"east": "true",
@@ -32660,7 +32660,7 @@
}
},
{
- "id": 6587,
+ "id": 6817,
"properties": {
"down": "false",
"east": "true",
@@ -32671,7 +32671,7 @@
}
},
{
- "id": 6588,
+ "id": 6818,
"properties": {
"down": "false",
"east": "true",
@@ -32682,7 +32682,7 @@
}
},
{
- "id": 6589,
+ "id": 6819,
"properties": {
"down": "false",
"east": "true",
@@ -32693,7 +32693,7 @@
}
},
{
- "id": 6590,
+ "id": 6820,
"properties": {
"down": "false",
"east": "true",
@@ -32704,7 +32704,7 @@
}
},
{
- "id": 6591,
+ "id": 6821,
"properties": {
"down": "false",
"east": "true",
@@ -32715,7 +32715,7 @@
}
},
{
- "id": 6592,
+ "id": 6822,
"properties": {
"down": "false",
"east": "true",
@@ -32726,7 +32726,7 @@
}
},
{
- "id": 6593,
+ "id": 6823,
"properties": {
"down": "false",
"east": "true",
@@ -32737,7 +32737,7 @@
}
},
{
- "id": 6594,
+ "id": 6824,
"properties": {
"down": "false",
"east": "true",
@@ -32748,7 +32748,7 @@
}
},
{
- "id": 6595,
+ "id": 6825,
"properties": {
"down": "false",
"east": "true",
@@ -32759,7 +32759,7 @@
}
},
{
- "id": 6596,
+ "id": 6826,
"properties": {
"down": "false",
"east": "true",
@@ -32770,7 +32770,7 @@
}
},
{
- "id": 6597,
+ "id": 6827,
"properties": {
"down": "false",
"east": "false",
@@ -32781,7 +32781,7 @@
}
},
{
- "id": 6598,
+ "id": 6828,
"properties": {
"down": "false",
"east": "false",
@@ -32792,7 +32792,7 @@
}
},
{
- "id": 6599,
+ "id": 6829,
"properties": {
"down": "false",
"east": "false",
@@ -32803,7 +32803,7 @@
}
},
{
- "id": 6600,
+ "id": 6830,
"properties": {
"down": "false",
"east": "false",
@@ -32814,7 +32814,7 @@
}
},
{
- "id": 6601,
+ "id": 6831,
"properties": {
"down": "false",
"east": "false",
@@ -32825,7 +32825,7 @@
}
},
{
- "id": 6602,
+ "id": 6832,
"properties": {
"down": "false",
"east": "false",
@@ -32836,7 +32836,7 @@
}
},
{
- "id": 6603,
+ "id": 6833,
"properties": {
"down": "false",
"east": "false",
@@ -32847,7 +32847,7 @@
}
},
{
- "id": 6604,
+ "id": 6834,
"properties": {
"down": "false",
"east": "false",
@@ -32858,7 +32858,7 @@
}
},
{
- "id": 6605,
+ "id": 6835,
"properties": {
"down": "false",
"east": "false",
@@ -32869,7 +32869,7 @@
}
},
{
- "id": 6606,
+ "id": 6836,
"properties": {
"down": "false",
"east": "false",
@@ -32880,7 +32880,7 @@
}
},
{
- "id": 6607,
+ "id": 6837,
"properties": {
"down": "false",
"east": "false",
@@ -32891,7 +32891,7 @@
}
},
{
- "id": 6608,
+ "id": 6838,
"properties": {
"down": "false",
"east": "false",
@@ -32902,7 +32902,7 @@
}
},
{
- "id": 6609,
+ "id": 6839,
"properties": {
"down": "false",
"east": "false",
@@ -32913,7 +32913,7 @@
}
},
{
- "id": 6610,
+ "id": 6840,
"properties": {
"down": "false",
"east": "false",
@@ -32924,7 +32924,7 @@
}
},
{
- "id": 6611,
+ "id": 6841,
"properties": {
"down": "false",
"east": "false",
@@ -32935,7 +32935,7 @@
}
},
{
- "id": 6612,
+ "id": 6842,
"properties": {
"down": "false",
"east": "false",
@@ -32965,38 +32965,38 @@
},
"states": [
{
- "id": 12640,
+ "id": 13109,
"properties": {
"facing": "north"
}
},
{
- "id": 12641,
+ "id": 13110,
"properties": {
"facing": "east"
}
},
{
- "id": 12642,
+ "id": 13111,
"properties": {
"facing": "south"
}
},
{
- "id": 12643,
+ "id": 13112,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12644,
+ "id": 13113,
"properties": {
"facing": "up"
}
},
{
- "id": 12645,
+ "id": 13114,
"properties": {
"facing": "down"
}
@@ -33012,7 +33012,7 @@
"states": [
{
"default": true,
- "id": 5957
+ "id": 6123
}
]
},
@@ -33046,7 +33046,7 @@
},
"states": [
{
- "id": 9756,
+ "id": 10011,
"properties": {
"east": "true",
"north": "true",
@@ -33056,7 +33056,7 @@
}
},
{
- "id": 9757,
+ "id": 10012,
"properties": {
"east": "true",
"north": "true",
@@ -33066,7 +33066,7 @@
}
},
{
- "id": 9758,
+ "id": 10013,
"properties": {
"east": "true",
"north": "true",
@@ -33076,7 +33076,7 @@
}
},
{
- "id": 9759,
+ "id": 10014,
"properties": {
"east": "true",
"north": "true",
@@ -33086,7 +33086,7 @@
}
},
{
- "id": 9760,
+ "id": 10015,
"properties": {
"east": "true",
"north": "true",
@@ -33096,7 +33096,7 @@
}
},
{
- "id": 9761,
+ "id": 10016,
"properties": {
"east": "true",
"north": "true",
@@ -33106,7 +33106,7 @@
}
},
{
- "id": 9762,
+ "id": 10017,
"properties": {
"east": "true",
"north": "true",
@@ -33116,7 +33116,7 @@
}
},
{
- "id": 9763,
+ "id": 10018,
"properties": {
"east": "true",
"north": "true",
@@ -33126,7 +33126,7 @@
}
},
{
- "id": 9764,
+ "id": 10019,
"properties": {
"east": "true",
"north": "false",
@@ -33136,7 +33136,7 @@
}
},
{
- "id": 9765,
+ "id": 10020,
"properties": {
"east": "true",
"north": "false",
@@ -33146,7 +33146,7 @@
}
},
{
- "id": 9766,
+ "id": 10021,
"properties": {
"east": "true",
"north": "false",
@@ -33156,7 +33156,7 @@
}
},
{
- "id": 9767,
+ "id": 10022,
"properties": {
"east": "true",
"north": "false",
@@ -33166,7 +33166,7 @@
}
},
{
- "id": 9768,
+ "id": 10023,
"properties": {
"east": "true",
"north": "false",
@@ -33176,7 +33176,7 @@
}
},
{
- "id": 9769,
+ "id": 10024,
"properties": {
"east": "true",
"north": "false",
@@ -33186,7 +33186,7 @@
}
},
{
- "id": 9770,
+ "id": 10025,
"properties": {
"east": "true",
"north": "false",
@@ -33196,7 +33196,7 @@
}
},
{
- "id": 9771,
+ "id": 10026,
"properties": {
"east": "true",
"north": "false",
@@ -33206,7 +33206,7 @@
}
},
{
- "id": 9772,
+ "id": 10027,
"properties": {
"east": "false",
"north": "true",
@@ -33216,7 +33216,7 @@
}
},
{
- "id": 9773,
+ "id": 10028,
"properties": {
"east": "false",
"north": "true",
@@ -33226,7 +33226,7 @@
}
},
{
- "id": 9774,
+ "id": 10029,
"properties": {
"east": "false",
"north": "true",
@@ -33236,7 +33236,7 @@
}
},
{
- "id": 9775,
+ "id": 10030,
"properties": {
"east": "false",
"north": "true",
@@ -33246,7 +33246,7 @@
}
},
{
- "id": 9776,
+ "id": 10031,
"properties": {
"east": "false",
"north": "true",
@@ -33256,7 +33256,7 @@
}
},
{
- "id": 9777,
+ "id": 10032,
"properties": {
"east": "false",
"north": "true",
@@ -33266,7 +33266,7 @@
}
},
{
- "id": 9778,
+ "id": 10033,
"properties": {
"east": "false",
"north": "true",
@@ -33276,7 +33276,7 @@
}
},
{
- "id": 9779,
+ "id": 10034,
"properties": {
"east": "false",
"north": "true",
@@ -33286,7 +33286,7 @@
}
},
{
- "id": 9780,
+ "id": 10035,
"properties": {
"east": "false",
"north": "false",
@@ -33296,7 +33296,7 @@
}
},
{
- "id": 9781,
+ "id": 10036,
"properties": {
"east": "false",
"north": "false",
@@ -33306,7 +33306,7 @@
}
},
{
- "id": 9782,
+ "id": 10037,
"properties": {
"east": "false",
"north": "false",
@@ -33316,7 +33316,7 @@
}
},
{
- "id": 9783,
+ "id": 10038,
"properties": {
"east": "false",
"north": "false",
@@ -33326,7 +33326,7 @@
}
},
{
- "id": 9784,
+ "id": 10039,
"properties": {
"east": "false",
"north": "false",
@@ -33336,7 +33336,7 @@
}
},
{
- "id": 9785,
+ "id": 10040,
"properties": {
"east": "false",
"north": "false",
@@ -33346,7 +33346,7 @@
}
},
{
- "id": 9786,
+ "id": 10041,
"properties": {
"east": "false",
"north": "false",
@@ -33357,7 +33357,7 @@
},
{
"default": true,
- "id": 9787,
+ "id": 10042,
"properties": {
"east": "false",
"north": "false",
@@ -33376,7 +33376,7 @@
"states": [
{
"default": true,
- "id": 9368
+ "id": 9623
}
]
},
@@ -33397,25 +33397,25 @@
"states": [
{
"default": true,
- "id": 11063,
+ "id": 11398,
"properties": {
"facing": "north"
}
},
{
- "id": 11064,
+ "id": 11399,
"properties": {
"facing": "south"
}
},
{
- "id": 11065,
+ "id": 11400,
"properties": {
"facing": "west"
}
},
{
- "id": 11066,
+ "id": 11401,
"properties": {
"facing": "east"
}
@@ -33430,7 +33430,7 @@
"states": [
{
"default": true,
- "id": 2059
+ "id": 2102
}
]
},
@@ -33448,13 +33448,13 @@
"states": [
{
"default": true,
- "id": 12960,
+ "id": 13429,
"properties": {
"drag": "true"
}
},
{
- "id": 12961,
+ "id": 13430,
"properties": {
"drag": "false"
}
@@ -33476,13 +33476,13 @@
"states": [
{
"default": true,
- "id": 12827,
+ "id": 13296,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12828,
+ "id": 13297,
"properties": {
"waterlogged": "false"
}
@@ -33498,7 +33498,7 @@
"states": [
{
"default": true,
- "id": 12810
+ "id": 13279
}
]
},
@@ -33517,13 +33517,13 @@
"states": [
{
"default": true,
- "id": 12847,
+ "id": 13316,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12848,
+ "id": 13317,
"properties": {
"waterlogged": "false"
}
@@ -33551,56 +33551,56 @@
"states": [
{
"default": true,
- "id": 12909,
+ "id": 13378,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12910,
+ "id": 13379,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12911,
+ "id": 13380,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12912,
+ "id": 13381,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12913,
+ "id": 13382,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12914,
+ "id": 13383,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12915,
+ "id": 13384,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12916,
+ "id": 13385,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -33616,7 +33616,7 @@
"states": [
{
"default": true,
- "id": 21032
+ "id": 21501
}
]
},
@@ -33648,97 +33648,97 @@
"states": [
{
"default": true,
- "id": 5782,
+ "id": 5948,
"properties": {
"age": "0"
}
},
{
- "id": 5783,
+ "id": 5949,
"properties": {
"age": "1"
}
},
{
- "id": 5784,
+ "id": 5950,
"properties": {
"age": "2"
}
},
{
- "id": 5785,
+ "id": 5951,
"properties": {
"age": "3"
}
},
{
- "id": 5786,
+ "id": 5952,
"properties": {
"age": "4"
}
},
{
- "id": 5787,
+ "id": 5953,
"properties": {
"age": "5"
}
},
{
- "id": 5788,
+ "id": 5954,
"properties": {
"age": "6"
}
},
{
- "id": 5789,
+ "id": 5955,
"properties": {
"age": "7"
}
},
{
- "id": 5790,
+ "id": 5956,
"properties": {
"age": "8"
}
},
{
- "id": 5791,
+ "id": 5957,
"properties": {
"age": "9"
}
},
{
- "id": 5792,
+ "id": 5958,
"properties": {
"age": "10"
}
},
{
- "id": 5793,
+ "id": 5959,
"properties": {
"age": "11"
}
},
{
- "id": 5794,
+ "id": 5960,
"properties": {
"age": "12"
}
},
{
- "id": 5795,
+ "id": 5961,
"properties": {
"age": "13"
}
},
{
- "id": 5796,
+ "id": 5962,
"properties": {
"age": "14"
}
},
{
- "id": 5797,
+ "id": 5963,
"properties": {
"age": "15"
}
@@ -33764,43 +33764,43 @@
"states": [
{
"default": true,
- "id": 5874,
+ "id": 6040,
"properties": {
"bites": "0"
}
},
{
- "id": 5875,
+ "id": 6041,
"properties": {
"bites": "1"
}
},
{
- "id": 5876,
+ "id": 6042,
"properties": {
"bites": "2"
}
},
{
- "id": 5877,
+ "id": 6043,
"properties": {
"bites": "3"
}
},
{
- "id": 5878,
+ "id": 6044,
"properties": {
"bites": "4"
}
},
{
- "id": 5879,
+ "id": 6045,
"properties": {
"bites": "5"
}
},
{
- "id": 5880,
+ "id": 6046,
"properties": {
"bites": "6"
}
@@ -33815,7 +33815,7 @@
"states": [
{
"default": true,
- "id": 22316
+ "id": 22785
}
]
},
@@ -33861,7 +33861,7 @@
},
"states": [
{
- "id": 22415,
+ "id": 22884,
"properties": {
"facing": "north",
"power": "0",
@@ -33871,7 +33871,7 @@
},
{
"default": true,
- "id": 22416,
+ "id": 22885,
"properties": {
"facing": "north",
"power": "0",
@@ -33880,7 +33880,7 @@
}
},
{
- "id": 22417,
+ "id": 22886,
"properties": {
"facing": "north",
"power": "0",
@@ -33889,7 +33889,7 @@
}
},
{
- "id": 22418,
+ "id": 22887,
"properties": {
"facing": "north",
"power": "0",
@@ -33898,7 +33898,7 @@
}
},
{
- "id": 22419,
+ "id": 22888,
"properties": {
"facing": "north",
"power": "0",
@@ -33907,7 +33907,7 @@
}
},
{
- "id": 22420,
+ "id": 22889,
"properties": {
"facing": "north",
"power": "0",
@@ -33916,7 +33916,7 @@
}
},
{
- "id": 22421,
+ "id": 22890,
"properties": {
"facing": "north",
"power": "1",
@@ -33925,7 +33925,7 @@
}
},
{
- "id": 22422,
+ "id": 22891,
"properties": {
"facing": "north",
"power": "1",
@@ -33934,7 +33934,7 @@
}
},
{
- "id": 22423,
+ "id": 22892,
"properties": {
"facing": "north",
"power": "1",
@@ -33943,7 +33943,7 @@
}
},
{
- "id": 22424,
+ "id": 22893,
"properties": {
"facing": "north",
"power": "1",
@@ -33952,7 +33952,7 @@
}
},
{
- "id": 22425,
+ "id": 22894,
"properties": {
"facing": "north",
"power": "1",
@@ -33961,7 +33961,7 @@
}
},
{
- "id": 22426,
+ "id": 22895,
"properties": {
"facing": "north",
"power": "1",
@@ -33970,7 +33970,7 @@
}
},
{
- "id": 22427,
+ "id": 22896,
"properties": {
"facing": "north",
"power": "2",
@@ -33979,7 +33979,7 @@
}
},
{
- "id": 22428,
+ "id": 22897,
"properties": {
"facing": "north",
"power": "2",
@@ -33988,7 +33988,7 @@
}
},
{
- "id": 22429,
+ "id": 22898,
"properties": {
"facing": "north",
"power": "2",
@@ -33997,7 +33997,7 @@
}
},
{
- "id": 22430,
+ "id": 22899,
"properties": {
"facing": "north",
"power": "2",
@@ -34006,7 +34006,7 @@
}
},
{
- "id": 22431,
+ "id": 22900,
"properties": {
"facing": "north",
"power": "2",
@@ -34015,7 +34015,7 @@
}
},
{
- "id": 22432,
+ "id": 22901,
"properties": {
"facing": "north",
"power": "2",
@@ -34024,7 +34024,7 @@
}
},
{
- "id": 22433,
+ "id": 22902,
"properties": {
"facing": "north",
"power": "3",
@@ -34033,7 +34033,7 @@
}
},
{
- "id": 22434,
+ "id": 22903,
"properties": {
"facing": "north",
"power": "3",
@@ -34042,7 +34042,7 @@
}
},
{
- "id": 22435,
+ "id": 22904,
"properties": {
"facing": "north",
"power": "3",
@@ -34051,7 +34051,7 @@
}
},
{
- "id": 22436,
+ "id": 22905,
"properties": {
"facing": "north",
"power": "3",
@@ -34060,7 +34060,7 @@
}
},
{
- "id": 22437,
+ "id": 22906,
"properties": {
"facing": "north",
"power": "3",
@@ -34069,7 +34069,7 @@
}
},
{
- "id": 22438,
+ "id": 22907,
"properties": {
"facing": "north",
"power": "3",
@@ -34078,7 +34078,7 @@
}
},
{
- "id": 22439,
+ "id": 22908,
"properties": {
"facing": "north",
"power": "4",
@@ -34087,7 +34087,7 @@
}
},
{
- "id": 22440,
+ "id": 22909,
"properties": {
"facing": "north",
"power": "4",
@@ -34096,7 +34096,7 @@
}
},
{
- "id": 22441,
+ "id": 22910,
"properties": {
"facing": "north",
"power": "4",
@@ -34105,7 +34105,7 @@
}
},
{
- "id": 22442,
+ "id": 22911,
"properties": {
"facing": "north",
"power": "4",
@@ -34114,7 +34114,7 @@
}
},
{
- "id": 22443,
+ "id": 22912,
"properties": {
"facing": "north",
"power": "4",
@@ -34123,7 +34123,7 @@
}
},
{
- "id": 22444,
+ "id": 22913,
"properties": {
"facing": "north",
"power": "4",
@@ -34132,7 +34132,7 @@
}
},
{
- "id": 22445,
+ "id": 22914,
"properties": {
"facing": "north",
"power": "5",
@@ -34141,7 +34141,7 @@
}
},
{
- "id": 22446,
+ "id": 22915,
"properties": {
"facing": "north",
"power": "5",
@@ -34150,7 +34150,7 @@
}
},
{
- "id": 22447,
+ "id": 22916,
"properties": {
"facing": "north",
"power": "5",
@@ -34159,7 +34159,7 @@
}
},
{
- "id": 22448,
+ "id": 22917,
"properties": {
"facing": "north",
"power": "5",
@@ -34168,7 +34168,7 @@
}
},
{
- "id": 22449,
+ "id": 22918,
"properties": {
"facing": "north",
"power": "5",
@@ -34177,7 +34177,7 @@
}
},
{
- "id": 22450,
+ "id": 22919,
"properties": {
"facing": "north",
"power": "5",
@@ -34186,7 +34186,7 @@
}
},
{
- "id": 22451,
+ "id": 22920,
"properties": {
"facing": "north",
"power": "6",
@@ -34195,7 +34195,7 @@
}
},
{
- "id": 22452,
+ "id": 22921,
"properties": {
"facing": "north",
"power": "6",
@@ -34204,7 +34204,7 @@
}
},
{
- "id": 22453,
+ "id": 22922,
"properties": {
"facing": "north",
"power": "6",
@@ -34213,7 +34213,7 @@
}
},
{
- "id": 22454,
+ "id": 22923,
"properties": {
"facing": "north",
"power": "6",
@@ -34222,7 +34222,7 @@
}
},
{
- "id": 22455,
+ "id": 22924,
"properties": {
"facing": "north",
"power": "6",
@@ -34231,7 +34231,7 @@
}
},
{
- "id": 22456,
+ "id": 22925,
"properties": {
"facing": "north",
"power": "6",
@@ -34240,7 +34240,7 @@
}
},
{
- "id": 22457,
+ "id": 22926,
"properties": {
"facing": "north",
"power": "7",
@@ -34249,7 +34249,7 @@
}
},
{
- "id": 22458,
+ "id": 22927,
"properties": {
"facing": "north",
"power": "7",
@@ -34258,7 +34258,7 @@
}
},
{
- "id": 22459,
+ "id": 22928,
"properties": {
"facing": "north",
"power": "7",
@@ -34267,7 +34267,7 @@
}
},
{
- "id": 22460,
+ "id": 22929,
"properties": {
"facing": "north",
"power": "7",
@@ -34276,7 +34276,7 @@
}
},
{
- "id": 22461,
+ "id": 22930,
"properties": {
"facing": "north",
"power": "7",
@@ -34285,7 +34285,7 @@
}
},
{
- "id": 22462,
+ "id": 22931,
"properties": {
"facing": "north",
"power": "7",
@@ -34294,7 +34294,7 @@
}
},
{
- "id": 22463,
+ "id": 22932,
"properties": {
"facing": "north",
"power": "8",
@@ -34303,7 +34303,7 @@
}
},
{
- "id": 22464,
+ "id": 22933,
"properties": {
"facing": "north",
"power": "8",
@@ -34312,7 +34312,7 @@
}
},
{
- "id": 22465,
+ "id": 22934,
"properties": {
"facing": "north",
"power": "8",
@@ -34321,7 +34321,7 @@
}
},
{
- "id": 22466,
+ "id": 22935,
"properties": {
"facing": "north",
"power": "8",
@@ -34330,7 +34330,7 @@
}
},
{
- "id": 22467,
+ "id": 22936,
"properties": {
"facing": "north",
"power": "8",
@@ -34339,7 +34339,7 @@
}
},
{
- "id": 22468,
+ "id": 22937,
"properties": {
"facing": "north",
"power": "8",
@@ -34348,7 +34348,7 @@
}
},
{
- "id": 22469,
+ "id": 22938,
"properties": {
"facing": "north",
"power": "9",
@@ -34357,7 +34357,7 @@
}
},
{
- "id": 22470,
+ "id": 22939,
"properties": {
"facing": "north",
"power": "9",
@@ -34366,7 +34366,7 @@
}
},
{
- "id": 22471,
+ "id": 22940,
"properties": {
"facing": "north",
"power": "9",
@@ -34375,7 +34375,7 @@
}
},
{
- "id": 22472,
+ "id": 22941,
"properties": {
"facing": "north",
"power": "9",
@@ -34384,7 +34384,7 @@
}
},
{
- "id": 22473,
+ "id": 22942,
"properties": {
"facing": "north",
"power": "9",
@@ -34393,7 +34393,7 @@
}
},
{
- "id": 22474,
+ "id": 22943,
"properties": {
"facing": "north",
"power": "9",
@@ -34402,7 +34402,7 @@
}
},
{
- "id": 22475,
+ "id": 22944,
"properties": {
"facing": "north",
"power": "10",
@@ -34411,7 +34411,7 @@
}
},
{
- "id": 22476,
+ "id": 22945,
"properties": {
"facing": "north",
"power": "10",
@@ -34420,7 +34420,7 @@
}
},
{
- "id": 22477,
+ "id": 22946,
"properties": {
"facing": "north",
"power": "10",
@@ -34429,7 +34429,7 @@
}
},
{
- "id": 22478,
+ "id": 22947,
"properties": {
"facing": "north",
"power": "10",
@@ -34438,7 +34438,7 @@
}
},
{
- "id": 22479,
+ "id": 22948,
"properties": {
"facing": "north",
"power": "10",
@@ -34447,7 +34447,7 @@
}
},
{
- "id": 22480,
+ "id": 22949,
"properties": {
"facing": "north",
"power": "10",
@@ -34456,7 +34456,7 @@
}
},
{
- "id": 22481,
+ "id": 22950,
"properties": {
"facing": "north",
"power": "11",
@@ -34465,7 +34465,7 @@
}
},
{
- "id": 22482,
+ "id": 22951,
"properties": {
"facing": "north",
"power": "11",
@@ -34474,7 +34474,7 @@
}
},
{
- "id": 22483,
+ "id": 22952,
"properties": {
"facing": "north",
"power": "11",
@@ -34483,7 +34483,7 @@
}
},
{
- "id": 22484,
+ "id": 22953,
"properties": {
"facing": "north",
"power": "11",
@@ -34492,7 +34492,7 @@
}
},
{
- "id": 22485,
+ "id": 22954,
"properties": {
"facing": "north",
"power": "11",
@@ -34501,7 +34501,7 @@
}
},
{
- "id": 22486,
+ "id": 22955,
"properties": {
"facing": "north",
"power": "11",
@@ -34510,7 +34510,7 @@
}
},
{
- "id": 22487,
+ "id": 22956,
"properties": {
"facing": "north",
"power": "12",
@@ -34519,7 +34519,7 @@
}
},
{
- "id": 22488,
+ "id": 22957,
"properties": {
"facing": "north",
"power": "12",
@@ -34528,7 +34528,7 @@
}
},
{
- "id": 22489,
+ "id": 22958,
"properties": {
"facing": "north",
"power": "12",
@@ -34537,7 +34537,7 @@
}
},
{
- "id": 22490,
+ "id": 22959,
"properties": {
"facing": "north",
"power": "12",
@@ -34546,7 +34546,7 @@
}
},
{
- "id": 22491,
+ "id": 22960,
"properties": {
"facing": "north",
"power": "12",
@@ -34555,7 +34555,7 @@
}
},
{
- "id": 22492,
+ "id": 22961,
"properties": {
"facing": "north",
"power": "12",
@@ -34564,7 +34564,7 @@
}
},
{
- "id": 22493,
+ "id": 22962,
"properties": {
"facing": "north",
"power": "13",
@@ -34573,7 +34573,7 @@
}
},
{
- "id": 22494,
+ "id": 22963,
"properties": {
"facing": "north",
"power": "13",
@@ -34582,7 +34582,7 @@
}
},
{
- "id": 22495,
+ "id": 22964,
"properties": {
"facing": "north",
"power": "13",
@@ -34591,7 +34591,7 @@
}
},
{
- "id": 22496,
+ "id": 22965,
"properties": {
"facing": "north",
"power": "13",
@@ -34600,7 +34600,7 @@
}
},
{
- "id": 22497,
+ "id": 22966,
"properties": {
"facing": "north",
"power": "13",
@@ -34609,7 +34609,7 @@
}
},
{
- "id": 22498,
+ "id": 22967,
"properties": {
"facing": "north",
"power": "13",
@@ -34618,7 +34618,7 @@
}
},
{
- "id": 22499,
+ "id": 22968,
"properties": {
"facing": "north",
"power": "14",
@@ -34627,7 +34627,7 @@
}
},
{
- "id": 22500,
+ "id": 22969,
"properties": {
"facing": "north",
"power": "14",
@@ -34636,7 +34636,7 @@
}
},
{
- "id": 22501,
+ "id": 22970,
"properties": {
"facing": "north",
"power": "14",
@@ -34645,7 +34645,7 @@
}
},
{
- "id": 22502,
+ "id": 22971,
"properties": {
"facing": "north",
"power": "14",
@@ -34654,7 +34654,7 @@
}
},
{
- "id": 22503,
+ "id": 22972,
"properties": {
"facing": "north",
"power": "14",
@@ -34663,7 +34663,7 @@
}
},
{
- "id": 22504,
+ "id": 22973,
"properties": {
"facing": "north",
"power": "14",
@@ -34672,7 +34672,7 @@
}
},
{
- "id": 22505,
+ "id": 22974,
"properties": {
"facing": "north",
"power": "15",
@@ -34681,7 +34681,7 @@
}
},
{
- "id": 22506,
+ "id": 22975,
"properties": {
"facing": "north",
"power": "15",
@@ -34690,7 +34690,7 @@
}
},
{
- "id": 22507,
+ "id": 22976,
"properties": {
"facing": "north",
"power": "15",
@@ -34699,7 +34699,7 @@
}
},
{
- "id": 22508,
+ "id": 22977,
"properties": {
"facing": "north",
"power": "15",
@@ -34708,7 +34708,7 @@
}
},
{
- "id": 22509,
+ "id": 22978,
"properties": {
"facing": "north",
"power": "15",
@@ -34717,7 +34717,7 @@
}
},
{
- "id": 22510,
+ "id": 22979,
"properties": {
"facing": "north",
"power": "15",
@@ -34726,7 +34726,7 @@
}
},
{
- "id": 22511,
+ "id": 22980,
"properties": {
"facing": "south",
"power": "0",
@@ -34735,7 +34735,7 @@
}
},
{
- "id": 22512,
+ "id": 22981,
"properties": {
"facing": "south",
"power": "0",
@@ -34744,7 +34744,7 @@
}
},
{
- "id": 22513,
+ "id": 22982,
"properties": {
"facing": "south",
"power": "0",
@@ -34753,7 +34753,7 @@
}
},
{
- "id": 22514,
+ "id": 22983,
"properties": {
"facing": "south",
"power": "0",
@@ -34762,7 +34762,7 @@
}
},
{
- "id": 22515,
+ "id": 22984,
"properties": {
"facing": "south",
"power": "0",
@@ -34771,7 +34771,7 @@
}
},
{
- "id": 22516,
+ "id": 22985,
"properties": {
"facing": "south",
"power": "0",
@@ -34780,7 +34780,7 @@
}
},
{
- "id": 22517,
+ "id": 22986,
"properties": {
"facing": "south",
"power": "1",
@@ -34789,7 +34789,7 @@
}
},
{
- "id": 22518,
+ "id": 22987,
"properties": {
"facing": "south",
"power": "1",
@@ -34798,7 +34798,7 @@
}
},
{
- "id": 22519,
+ "id": 22988,
"properties": {
"facing": "south",
"power": "1",
@@ -34807,7 +34807,7 @@
}
},
{
- "id": 22520,
+ "id": 22989,
"properties": {
"facing": "south",
"power": "1",
@@ -34816,7 +34816,7 @@
}
},
{
- "id": 22521,
+ "id": 22990,
"properties": {
"facing": "south",
"power": "1",
@@ -34825,7 +34825,7 @@
}
},
{
- "id": 22522,
+ "id": 22991,
"properties": {
"facing": "south",
"power": "1",
@@ -34834,7 +34834,7 @@
}
},
{
- "id": 22523,
+ "id": 22992,
"properties": {
"facing": "south",
"power": "2",
@@ -34843,7 +34843,7 @@
}
},
{
- "id": 22524,
+ "id": 22993,
"properties": {
"facing": "south",
"power": "2",
@@ -34852,7 +34852,7 @@
}
},
{
- "id": 22525,
+ "id": 22994,
"properties": {
"facing": "south",
"power": "2",
@@ -34861,7 +34861,7 @@
}
},
{
- "id": 22526,
+ "id": 22995,
"properties": {
"facing": "south",
"power": "2",
@@ -34870,7 +34870,7 @@
}
},
{
- "id": 22527,
+ "id": 22996,
"properties": {
"facing": "south",
"power": "2",
@@ -34879,7 +34879,7 @@
}
},
{
- "id": 22528,
+ "id": 22997,
"properties": {
"facing": "south",
"power": "2",
@@ -34888,7 +34888,7 @@
}
},
{
- "id": 22529,
+ "id": 22998,
"properties": {
"facing": "south",
"power": "3",
@@ -34897,7 +34897,7 @@
}
},
{
- "id": 22530,
+ "id": 22999,
"properties": {
"facing": "south",
"power": "3",
@@ -34906,7 +34906,7 @@
}
},
{
- "id": 22531,
+ "id": 23000,
"properties": {
"facing": "south",
"power": "3",
@@ -34915,7 +34915,7 @@
}
},
{
- "id": 22532,
+ "id": 23001,
"properties": {
"facing": "south",
"power": "3",
@@ -34924,7 +34924,7 @@
}
},
{
- "id": 22533,
+ "id": 23002,
"properties": {
"facing": "south",
"power": "3",
@@ -34933,7 +34933,7 @@
}
},
{
- "id": 22534,
+ "id": 23003,
"properties": {
"facing": "south",
"power": "3",
@@ -34942,7 +34942,7 @@
}
},
{
- "id": 22535,
+ "id": 23004,
"properties": {
"facing": "south",
"power": "4",
@@ -34951,7 +34951,7 @@
}
},
{
- "id": 22536,
+ "id": 23005,
"properties": {
"facing": "south",
"power": "4",
@@ -34960,7 +34960,7 @@
}
},
{
- "id": 22537,
+ "id": 23006,
"properties": {
"facing": "south",
"power": "4",
@@ -34969,7 +34969,7 @@
}
},
{
- "id": 22538,
+ "id": 23007,
"properties": {
"facing": "south",
"power": "4",
@@ -34978,7 +34978,7 @@
}
},
{
- "id": 22539,
+ "id": 23008,
"properties": {
"facing": "south",
"power": "4",
@@ -34987,7 +34987,7 @@
}
},
{
- "id": 22540,
+ "id": 23009,
"properties": {
"facing": "south",
"power": "4",
@@ -34996,7 +34996,7 @@
}
},
{
- "id": 22541,
+ "id": 23010,
"properties": {
"facing": "south",
"power": "5",
@@ -35005,7 +35005,7 @@
}
},
{
- "id": 22542,
+ "id": 23011,
"properties": {
"facing": "south",
"power": "5",
@@ -35014,7 +35014,7 @@
}
},
{
- "id": 22543,
+ "id": 23012,
"properties": {
"facing": "south",
"power": "5",
@@ -35023,7 +35023,7 @@
}
},
{
- "id": 22544,
+ "id": 23013,
"properties": {
"facing": "south",
"power": "5",
@@ -35032,7 +35032,7 @@
}
},
{
- "id": 22545,
+ "id": 23014,
"properties": {
"facing": "south",
"power": "5",
@@ -35041,7 +35041,7 @@
}
},
{
- "id": 22546,
+ "id": 23015,
"properties": {
"facing": "south",
"power": "5",
@@ -35050,7 +35050,7 @@
}
},
{
- "id": 22547,
+ "id": 23016,
"properties": {
"facing": "south",
"power": "6",
@@ -35059,7 +35059,7 @@
}
},
{
- "id": 22548,
+ "id": 23017,
"properties": {
"facing": "south",
"power": "6",
@@ -35068,7 +35068,7 @@
}
},
{
- "id": 22549,
+ "id": 23018,
"properties": {
"facing": "south",
"power": "6",
@@ -35077,7 +35077,7 @@
}
},
{
- "id": 22550,
+ "id": 23019,
"properties": {
"facing": "south",
"power": "6",
@@ -35086,7 +35086,7 @@
}
},
{
- "id": 22551,
+ "id": 23020,
"properties": {
"facing": "south",
"power": "6",
@@ -35095,7 +35095,7 @@
}
},
{
- "id": 22552,
+ "id": 23021,
"properties": {
"facing": "south",
"power": "6",
@@ -35104,7 +35104,7 @@
}
},
{
- "id": 22553,
+ "id": 23022,
"properties": {
"facing": "south",
"power": "7",
@@ -35113,7 +35113,7 @@
}
},
{
- "id": 22554,
+ "id": 23023,
"properties": {
"facing": "south",
"power": "7",
@@ -35122,7 +35122,7 @@
}
},
{
- "id": 22555,
+ "id": 23024,
"properties": {
"facing": "south",
"power": "7",
@@ -35131,7 +35131,7 @@
}
},
{
- "id": 22556,
+ "id": 23025,
"properties": {
"facing": "south",
"power": "7",
@@ -35140,7 +35140,7 @@
}
},
{
- "id": 22557,
+ "id": 23026,
"properties": {
"facing": "south",
"power": "7",
@@ -35149,7 +35149,7 @@
}
},
{
- "id": 22558,
+ "id": 23027,
"properties": {
"facing": "south",
"power": "7",
@@ -35158,7 +35158,7 @@
}
},
{
- "id": 22559,
+ "id": 23028,
"properties": {
"facing": "south",
"power": "8",
@@ -35167,7 +35167,7 @@
}
},
{
- "id": 22560,
+ "id": 23029,
"properties": {
"facing": "south",
"power": "8",
@@ -35176,7 +35176,7 @@
}
},
{
- "id": 22561,
+ "id": 23030,
"properties": {
"facing": "south",
"power": "8",
@@ -35185,7 +35185,7 @@
}
},
{
- "id": 22562,
+ "id": 23031,
"properties": {
"facing": "south",
"power": "8",
@@ -35194,7 +35194,7 @@
}
},
{
- "id": 22563,
+ "id": 23032,
"properties": {
"facing": "south",
"power": "8",
@@ -35203,7 +35203,7 @@
}
},
{
- "id": 22564,
+ "id": 23033,
"properties": {
"facing": "south",
"power": "8",
@@ -35212,7 +35212,7 @@
}
},
{
- "id": 22565,
+ "id": 23034,
"properties": {
"facing": "south",
"power": "9",
@@ -35221,7 +35221,7 @@
}
},
{
- "id": 22566,
+ "id": 23035,
"properties": {
"facing": "south",
"power": "9",
@@ -35230,7 +35230,7 @@
}
},
{
- "id": 22567,
+ "id": 23036,
"properties": {
"facing": "south",
"power": "9",
@@ -35239,7 +35239,7 @@
}
},
{
- "id": 22568,
+ "id": 23037,
"properties": {
"facing": "south",
"power": "9",
@@ -35248,7 +35248,7 @@
}
},
{
- "id": 22569,
+ "id": 23038,
"properties": {
"facing": "south",
"power": "9",
@@ -35257,7 +35257,7 @@
}
},
{
- "id": 22570,
+ "id": 23039,
"properties": {
"facing": "south",
"power": "9",
@@ -35266,7 +35266,7 @@
}
},
{
- "id": 22571,
+ "id": 23040,
"properties": {
"facing": "south",
"power": "10",
@@ -35275,7 +35275,7 @@
}
},
{
- "id": 22572,
+ "id": 23041,
"properties": {
"facing": "south",
"power": "10",
@@ -35284,7 +35284,7 @@
}
},
{
- "id": 22573,
+ "id": 23042,
"properties": {
"facing": "south",
"power": "10",
@@ -35293,7 +35293,7 @@
}
},
{
- "id": 22574,
+ "id": 23043,
"properties": {
"facing": "south",
"power": "10",
@@ -35302,7 +35302,7 @@
}
},
{
- "id": 22575,
+ "id": 23044,
"properties": {
"facing": "south",
"power": "10",
@@ -35311,7 +35311,7 @@
}
},
{
- "id": 22576,
+ "id": 23045,
"properties": {
"facing": "south",
"power": "10",
@@ -35320,7 +35320,7 @@
}
},
{
- "id": 22577,
+ "id": 23046,
"properties": {
"facing": "south",
"power": "11",
@@ -35329,7 +35329,7 @@
}
},
{
- "id": 22578,
+ "id": 23047,
"properties": {
"facing": "south",
"power": "11",
@@ -35338,7 +35338,7 @@
}
},
{
- "id": 22579,
+ "id": 23048,
"properties": {
"facing": "south",
"power": "11",
@@ -35347,7 +35347,7 @@
}
},
{
- "id": 22580,
+ "id": 23049,
"properties": {
"facing": "south",
"power": "11",
@@ -35356,7 +35356,7 @@
}
},
{
- "id": 22581,
+ "id": 23050,
"properties": {
"facing": "south",
"power": "11",
@@ -35365,7 +35365,7 @@
}
},
{
- "id": 22582,
+ "id": 23051,
"properties": {
"facing": "south",
"power": "11",
@@ -35374,7 +35374,7 @@
}
},
{
- "id": 22583,
+ "id": 23052,
"properties": {
"facing": "south",
"power": "12",
@@ -35383,7 +35383,7 @@
}
},
{
- "id": 22584,
+ "id": 23053,
"properties": {
"facing": "south",
"power": "12",
@@ -35392,7 +35392,7 @@
}
},
{
- "id": 22585,
+ "id": 23054,
"properties": {
"facing": "south",
"power": "12",
@@ -35401,7 +35401,7 @@
}
},
{
- "id": 22586,
+ "id": 23055,
"properties": {
"facing": "south",
"power": "12",
@@ -35410,7 +35410,7 @@
}
},
{
- "id": 22587,
+ "id": 23056,
"properties": {
"facing": "south",
"power": "12",
@@ -35419,7 +35419,7 @@
}
},
{
- "id": 22588,
+ "id": 23057,
"properties": {
"facing": "south",
"power": "12",
@@ -35428,7 +35428,7 @@
}
},
{
- "id": 22589,
+ "id": 23058,
"properties": {
"facing": "south",
"power": "13",
@@ -35437,7 +35437,7 @@
}
},
{
- "id": 22590,
+ "id": 23059,
"properties": {
"facing": "south",
"power": "13",
@@ -35446,7 +35446,7 @@
}
},
{
- "id": 22591,
+ "id": 23060,
"properties": {
"facing": "south",
"power": "13",
@@ -35455,7 +35455,7 @@
}
},
{
- "id": 22592,
+ "id": 23061,
"properties": {
"facing": "south",
"power": "13",
@@ -35464,7 +35464,7 @@
}
},
{
- "id": 22593,
+ "id": 23062,
"properties": {
"facing": "south",
"power": "13",
@@ -35473,7 +35473,7 @@
}
},
{
- "id": 22594,
+ "id": 23063,
"properties": {
"facing": "south",
"power": "13",
@@ -35482,7 +35482,7 @@
}
},
{
- "id": 22595,
+ "id": 23064,
"properties": {
"facing": "south",
"power": "14",
@@ -35491,7 +35491,7 @@
}
},
{
- "id": 22596,
+ "id": 23065,
"properties": {
"facing": "south",
"power": "14",
@@ -35500,7 +35500,7 @@
}
},
{
- "id": 22597,
+ "id": 23066,
"properties": {
"facing": "south",
"power": "14",
@@ -35509,7 +35509,7 @@
}
},
{
- "id": 22598,
+ "id": 23067,
"properties": {
"facing": "south",
"power": "14",
@@ -35518,7 +35518,7 @@
}
},
{
- "id": 22599,
+ "id": 23068,
"properties": {
"facing": "south",
"power": "14",
@@ -35527,7 +35527,7 @@
}
},
{
- "id": 22600,
+ "id": 23069,
"properties": {
"facing": "south",
"power": "14",
@@ -35536,7 +35536,7 @@
}
},
{
- "id": 22601,
+ "id": 23070,
"properties": {
"facing": "south",
"power": "15",
@@ -35545,7 +35545,7 @@
}
},
{
- "id": 22602,
+ "id": 23071,
"properties": {
"facing": "south",
"power": "15",
@@ -35554,7 +35554,7 @@
}
},
{
- "id": 22603,
+ "id": 23072,
"properties": {
"facing": "south",
"power": "15",
@@ -35563,7 +35563,7 @@
}
},
{
- "id": 22604,
+ "id": 23073,
"properties": {
"facing": "south",
"power": "15",
@@ -35572,7 +35572,7 @@
}
},
{
- "id": 22605,
+ "id": 23074,
"properties": {
"facing": "south",
"power": "15",
@@ -35581,7 +35581,7 @@
}
},
{
- "id": 22606,
+ "id": 23075,
"properties": {
"facing": "south",
"power": "15",
@@ -35590,7 +35590,7 @@
}
},
{
- "id": 22607,
+ "id": 23076,
"properties": {
"facing": "west",
"power": "0",
@@ -35599,7 +35599,7 @@
}
},
{
- "id": 22608,
+ "id": 23077,
"properties": {
"facing": "west",
"power": "0",
@@ -35608,7 +35608,7 @@
}
},
{
- "id": 22609,
+ "id": 23078,
"properties": {
"facing": "west",
"power": "0",
@@ -35617,7 +35617,7 @@
}
},
{
- "id": 22610,
+ "id": 23079,
"properties": {
"facing": "west",
"power": "0",
@@ -35626,7 +35626,7 @@
}
},
{
- "id": 22611,
+ "id": 23080,
"properties": {
"facing": "west",
"power": "0",
@@ -35635,7 +35635,7 @@
}
},
{
- "id": 22612,
+ "id": 23081,
"properties": {
"facing": "west",
"power": "0",
@@ -35644,7 +35644,7 @@
}
},
{
- "id": 22613,
+ "id": 23082,
"properties": {
"facing": "west",
"power": "1",
@@ -35653,7 +35653,7 @@
}
},
{
- "id": 22614,
+ "id": 23083,
"properties": {
"facing": "west",
"power": "1",
@@ -35662,7 +35662,7 @@
}
},
{
- "id": 22615,
+ "id": 23084,
"properties": {
"facing": "west",
"power": "1",
@@ -35671,7 +35671,7 @@
}
},
{
- "id": 22616,
+ "id": 23085,
"properties": {
"facing": "west",
"power": "1",
@@ -35680,7 +35680,7 @@
}
},
{
- "id": 22617,
+ "id": 23086,
"properties": {
"facing": "west",
"power": "1",
@@ -35689,7 +35689,7 @@
}
},
{
- "id": 22618,
+ "id": 23087,
"properties": {
"facing": "west",
"power": "1",
@@ -35698,7 +35698,7 @@
}
},
{
- "id": 22619,
+ "id": 23088,
"properties": {
"facing": "west",
"power": "2",
@@ -35707,7 +35707,7 @@
}
},
{
- "id": 22620,
+ "id": 23089,
"properties": {
"facing": "west",
"power": "2",
@@ -35716,7 +35716,7 @@
}
},
{
- "id": 22621,
+ "id": 23090,
"properties": {
"facing": "west",
"power": "2",
@@ -35725,7 +35725,7 @@
}
},
{
- "id": 22622,
+ "id": 23091,
"properties": {
"facing": "west",
"power": "2",
@@ -35734,7 +35734,7 @@
}
},
{
- "id": 22623,
+ "id": 23092,
"properties": {
"facing": "west",
"power": "2",
@@ -35743,7 +35743,7 @@
}
},
{
- "id": 22624,
+ "id": 23093,
"properties": {
"facing": "west",
"power": "2",
@@ -35752,7 +35752,7 @@
}
},
{
- "id": 22625,
+ "id": 23094,
"properties": {
"facing": "west",
"power": "3",
@@ -35761,7 +35761,7 @@
}
},
{
- "id": 22626,
+ "id": 23095,
"properties": {
"facing": "west",
"power": "3",
@@ -35770,7 +35770,7 @@
}
},
{
- "id": 22627,
+ "id": 23096,
"properties": {
"facing": "west",
"power": "3",
@@ -35779,7 +35779,7 @@
}
},
{
- "id": 22628,
+ "id": 23097,
"properties": {
"facing": "west",
"power": "3",
@@ -35788,7 +35788,7 @@
}
},
{
- "id": 22629,
+ "id": 23098,
"properties": {
"facing": "west",
"power": "3",
@@ -35797,7 +35797,7 @@
}
},
{
- "id": 22630,
+ "id": 23099,
"properties": {
"facing": "west",
"power": "3",
@@ -35806,7 +35806,7 @@
}
},
{
- "id": 22631,
+ "id": 23100,
"properties": {
"facing": "west",
"power": "4",
@@ -35815,7 +35815,7 @@
}
},
{
- "id": 22632,
+ "id": 23101,
"properties": {
"facing": "west",
"power": "4",
@@ -35824,7 +35824,7 @@
}
},
{
- "id": 22633,
+ "id": 23102,
"properties": {
"facing": "west",
"power": "4",
@@ -35833,7 +35833,7 @@
}
},
{
- "id": 22634,
+ "id": 23103,
"properties": {
"facing": "west",
"power": "4",
@@ -35842,7 +35842,7 @@
}
},
{
- "id": 22635,
+ "id": 23104,
"properties": {
"facing": "west",
"power": "4",
@@ -35851,7 +35851,7 @@
}
},
{
- "id": 22636,
+ "id": 23105,
"properties": {
"facing": "west",
"power": "4",
@@ -35860,7 +35860,7 @@
}
},
{
- "id": 22637,
+ "id": 23106,
"properties": {
"facing": "west",
"power": "5",
@@ -35869,7 +35869,7 @@
}
},
{
- "id": 22638,
+ "id": 23107,
"properties": {
"facing": "west",
"power": "5",
@@ -35878,7 +35878,7 @@
}
},
{
- "id": 22639,
+ "id": 23108,
"properties": {
"facing": "west",
"power": "5",
@@ -35887,7 +35887,7 @@
}
},
{
- "id": 22640,
+ "id": 23109,
"properties": {
"facing": "west",
"power": "5",
@@ -35896,7 +35896,7 @@
}
},
{
- "id": 22641,
+ "id": 23110,
"properties": {
"facing": "west",
"power": "5",
@@ -35905,7 +35905,7 @@
}
},
{
- "id": 22642,
+ "id": 23111,
"properties": {
"facing": "west",
"power": "5",
@@ -35914,7 +35914,7 @@
}
},
{
- "id": 22643,
+ "id": 23112,
"properties": {
"facing": "west",
"power": "6",
@@ -35923,7 +35923,7 @@
}
},
{
- "id": 22644,
+ "id": 23113,
"properties": {
"facing": "west",
"power": "6",
@@ -35932,7 +35932,7 @@
}
},
{
- "id": 22645,
+ "id": 23114,
"properties": {
"facing": "west",
"power": "6",
@@ -35941,7 +35941,7 @@
}
},
{
- "id": 22646,
+ "id": 23115,
"properties": {
"facing": "west",
"power": "6",
@@ -35950,7 +35950,7 @@
}
},
{
- "id": 22647,
+ "id": 23116,
"properties": {
"facing": "west",
"power": "6",
@@ -35959,7 +35959,7 @@
}
},
{
- "id": 22648,
+ "id": 23117,
"properties": {
"facing": "west",
"power": "6",
@@ -35968,7 +35968,7 @@
}
},
{
- "id": 22649,
+ "id": 23118,
"properties": {
"facing": "west",
"power": "7",
@@ -35977,7 +35977,7 @@
}
},
{
- "id": 22650,
+ "id": 23119,
"properties": {
"facing": "west",
"power": "7",
@@ -35986,7 +35986,7 @@
}
},
{
- "id": 22651,
+ "id": 23120,
"properties": {
"facing": "west",
"power": "7",
@@ -35995,7 +35995,7 @@
}
},
{
- "id": 22652,
+ "id": 23121,
"properties": {
"facing": "west",
"power": "7",
@@ -36004,7 +36004,7 @@
}
},
{
- "id": 22653,
+ "id": 23122,
"properties": {
"facing": "west",
"power": "7",
@@ -36013,7 +36013,7 @@
}
},
{
- "id": 22654,
+ "id": 23123,
"properties": {
"facing": "west",
"power": "7",
@@ -36022,7 +36022,7 @@
}
},
{
- "id": 22655,
+ "id": 23124,
"properties": {
"facing": "west",
"power": "8",
@@ -36031,7 +36031,7 @@
}
},
{
- "id": 22656,
+ "id": 23125,
"properties": {
"facing": "west",
"power": "8",
@@ -36040,7 +36040,7 @@
}
},
{
- "id": 22657,
+ "id": 23126,
"properties": {
"facing": "west",
"power": "8",
@@ -36049,7 +36049,7 @@
}
},
{
- "id": 22658,
+ "id": 23127,
"properties": {
"facing": "west",
"power": "8",
@@ -36058,7 +36058,7 @@
}
},
{
- "id": 22659,
+ "id": 23128,
"properties": {
"facing": "west",
"power": "8",
@@ -36067,7 +36067,7 @@
}
},
{
- "id": 22660,
+ "id": 23129,
"properties": {
"facing": "west",
"power": "8",
@@ -36076,7 +36076,7 @@
}
},
{
- "id": 22661,
+ "id": 23130,
"properties": {
"facing": "west",
"power": "9",
@@ -36085,7 +36085,7 @@
}
},
{
- "id": 22662,
+ "id": 23131,
"properties": {
"facing": "west",
"power": "9",
@@ -36094,7 +36094,7 @@
}
},
{
- "id": 22663,
+ "id": 23132,
"properties": {
"facing": "west",
"power": "9",
@@ -36103,7 +36103,7 @@
}
},
{
- "id": 22664,
+ "id": 23133,
"properties": {
"facing": "west",
"power": "9",
@@ -36112,7 +36112,7 @@
}
},
{
- "id": 22665,
+ "id": 23134,
"properties": {
"facing": "west",
"power": "9",
@@ -36121,7 +36121,7 @@
}
},
{
- "id": 22666,
+ "id": 23135,
"properties": {
"facing": "west",
"power": "9",
@@ -36130,7 +36130,7 @@
}
},
{
- "id": 22667,
+ "id": 23136,
"properties": {
"facing": "west",
"power": "10",
@@ -36139,7 +36139,7 @@
}
},
{
- "id": 22668,
+ "id": 23137,
"properties": {
"facing": "west",
"power": "10",
@@ -36148,7 +36148,7 @@
}
},
{
- "id": 22669,
+ "id": 23138,
"properties": {
"facing": "west",
"power": "10",
@@ -36157,7 +36157,7 @@
}
},
{
- "id": 22670,
+ "id": 23139,
"properties": {
"facing": "west",
"power": "10",
@@ -36166,7 +36166,7 @@
}
},
{
- "id": 22671,
+ "id": 23140,
"properties": {
"facing": "west",
"power": "10",
@@ -36175,7 +36175,7 @@
}
},
{
- "id": 22672,
+ "id": 23141,
"properties": {
"facing": "west",
"power": "10",
@@ -36184,7 +36184,7 @@
}
},
{
- "id": 22673,
+ "id": 23142,
"properties": {
"facing": "west",
"power": "11",
@@ -36193,7 +36193,7 @@
}
},
{
- "id": 22674,
+ "id": 23143,
"properties": {
"facing": "west",
"power": "11",
@@ -36202,7 +36202,7 @@
}
},
{
- "id": 22675,
+ "id": 23144,
"properties": {
"facing": "west",
"power": "11",
@@ -36211,7 +36211,7 @@
}
},
{
- "id": 22676,
+ "id": 23145,
"properties": {
"facing": "west",
"power": "11",
@@ -36220,7 +36220,7 @@
}
},
{
- "id": 22677,
+ "id": 23146,
"properties": {
"facing": "west",
"power": "11",
@@ -36229,7 +36229,7 @@
}
},
{
- "id": 22678,
+ "id": 23147,
"properties": {
"facing": "west",
"power": "11",
@@ -36238,7 +36238,7 @@
}
},
{
- "id": 22679,
+ "id": 23148,
"properties": {
"facing": "west",
"power": "12",
@@ -36247,7 +36247,7 @@
}
},
{
- "id": 22680,
+ "id": 23149,
"properties": {
"facing": "west",
"power": "12",
@@ -36256,7 +36256,7 @@
}
},
{
- "id": 22681,
+ "id": 23150,
"properties": {
"facing": "west",
"power": "12",
@@ -36265,7 +36265,7 @@
}
},
{
- "id": 22682,
+ "id": 23151,
"properties": {
"facing": "west",
"power": "12",
@@ -36274,7 +36274,7 @@
}
},
{
- "id": 22683,
+ "id": 23152,
"properties": {
"facing": "west",
"power": "12",
@@ -36283,7 +36283,7 @@
}
},
{
- "id": 22684,
+ "id": 23153,
"properties": {
"facing": "west",
"power": "12",
@@ -36292,7 +36292,7 @@
}
},
{
- "id": 22685,
+ "id": 23154,
"properties": {
"facing": "west",
"power": "13",
@@ -36301,7 +36301,7 @@
}
},
{
- "id": 22686,
+ "id": 23155,
"properties": {
"facing": "west",
"power": "13",
@@ -36310,7 +36310,7 @@
}
},
{
- "id": 22687,
+ "id": 23156,
"properties": {
"facing": "west",
"power": "13",
@@ -36319,7 +36319,7 @@
}
},
{
- "id": 22688,
+ "id": 23157,
"properties": {
"facing": "west",
"power": "13",
@@ -36328,7 +36328,7 @@
}
},
{
- "id": 22689,
+ "id": 23158,
"properties": {
"facing": "west",
"power": "13",
@@ -36337,7 +36337,7 @@
}
},
{
- "id": 22690,
+ "id": 23159,
"properties": {
"facing": "west",
"power": "13",
@@ -36346,7 +36346,7 @@
}
},
{
- "id": 22691,
+ "id": 23160,
"properties": {
"facing": "west",
"power": "14",
@@ -36355,7 +36355,7 @@
}
},
{
- "id": 22692,
+ "id": 23161,
"properties": {
"facing": "west",
"power": "14",
@@ -36364,7 +36364,7 @@
}
},
{
- "id": 22693,
+ "id": 23162,
"properties": {
"facing": "west",
"power": "14",
@@ -36373,7 +36373,7 @@
}
},
{
- "id": 22694,
+ "id": 23163,
"properties": {
"facing": "west",
"power": "14",
@@ -36382,7 +36382,7 @@
}
},
{
- "id": 22695,
+ "id": 23164,
"properties": {
"facing": "west",
"power": "14",
@@ -36391,7 +36391,7 @@
}
},
{
- "id": 22696,
+ "id": 23165,
"properties": {
"facing": "west",
"power": "14",
@@ -36400,7 +36400,7 @@
}
},
{
- "id": 22697,
+ "id": 23166,
"properties": {
"facing": "west",
"power": "15",
@@ -36409,7 +36409,7 @@
}
},
{
- "id": 22698,
+ "id": 23167,
"properties": {
"facing": "west",
"power": "15",
@@ -36418,7 +36418,7 @@
}
},
{
- "id": 22699,
+ "id": 23168,
"properties": {
"facing": "west",
"power": "15",
@@ -36427,7 +36427,7 @@
}
},
{
- "id": 22700,
+ "id": 23169,
"properties": {
"facing": "west",
"power": "15",
@@ -36436,7 +36436,7 @@
}
},
{
- "id": 22701,
+ "id": 23170,
"properties": {
"facing": "west",
"power": "15",
@@ -36445,7 +36445,7 @@
}
},
{
- "id": 22702,
+ "id": 23171,
"properties": {
"facing": "west",
"power": "15",
@@ -36454,7 +36454,7 @@
}
},
{
- "id": 22703,
+ "id": 23172,
"properties": {
"facing": "east",
"power": "0",
@@ -36463,7 +36463,7 @@
}
},
{
- "id": 22704,
+ "id": 23173,
"properties": {
"facing": "east",
"power": "0",
@@ -36472,7 +36472,7 @@
}
},
{
- "id": 22705,
+ "id": 23174,
"properties": {
"facing": "east",
"power": "0",
@@ -36481,7 +36481,7 @@
}
},
{
- "id": 22706,
+ "id": 23175,
"properties": {
"facing": "east",
"power": "0",
@@ -36490,7 +36490,7 @@
}
},
{
- "id": 22707,
+ "id": 23176,
"properties": {
"facing": "east",
"power": "0",
@@ -36499,7 +36499,7 @@
}
},
{
- "id": 22708,
+ "id": 23177,
"properties": {
"facing": "east",
"power": "0",
@@ -36508,7 +36508,7 @@
}
},
{
- "id": 22709,
+ "id": 23178,
"properties": {
"facing": "east",
"power": "1",
@@ -36517,7 +36517,7 @@
}
},
{
- "id": 22710,
+ "id": 23179,
"properties": {
"facing": "east",
"power": "1",
@@ -36526,7 +36526,7 @@
}
},
{
- "id": 22711,
+ "id": 23180,
"properties": {
"facing": "east",
"power": "1",
@@ -36535,7 +36535,7 @@
}
},
{
- "id": 22712,
+ "id": 23181,
"properties": {
"facing": "east",
"power": "1",
@@ -36544,7 +36544,7 @@
}
},
{
- "id": 22713,
+ "id": 23182,
"properties": {
"facing": "east",
"power": "1",
@@ -36553,7 +36553,7 @@
}
},
{
- "id": 22714,
+ "id": 23183,
"properties": {
"facing": "east",
"power": "1",
@@ -36562,7 +36562,7 @@
}
},
{
- "id": 22715,
+ "id": 23184,
"properties": {
"facing": "east",
"power": "2",
@@ -36571,7 +36571,7 @@
}
},
{
- "id": 22716,
+ "id": 23185,
"properties": {
"facing": "east",
"power": "2",
@@ -36580,7 +36580,7 @@
}
},
{
- "id": 22717,
+ "id": 23186,
"properties": {
"facing": "east",
"power": "2",
@@ -36589,7 +36589,7 @@
}
},
{
- "id": 22718,
+ "id": 23187,
"properties": {
"facing": "east",
"power": "2",
@@ -36598,7 +36598,7 @@
}
},
{
- "id": 22719,
+ "id": 23188,
"properties": {
"facing": "east",
"power": "2",
@@ -36607,7 +36607,7 @@
}
},
{
- "id": 22720,
+ "id": 23189,
"properties": {
"facing": "east",
"power": "2",
@@ -36616,7 +36616,7 @@
}
},
{
- "id": 22721,
+ "id": 23190,
"properties": {
"facing": "east",
"power": "3",
@@ -36625,7 +36625,7 @@
}
},
{
- "id": 22722,
+ "id": 23191,
"properties": {
"facing": "east",
"power": "3",
@@ -36634,7 +36634,7 @@
}
},
{
- "id": 22723,
+ "id": 23192,
"properties": {
"facing": "east",
"power": "3",
@@ -36643,7 +36643,7 @@
}
},
{
- "id": 22724,
+ "id": 23193,
"properties": {
"facing": "east",
"power": "3",
@@ -36652,7 +36652,7 @@
}
},
{
- "id": 22725,
+ "id": 23194,
"properties": {
"facing": "east",
"power": "3",
@@ -36661,7 +36661,7 @@
}
},
{
- "id": 22726,
+ "id": 23195,
"properties": {
"facing": "east",
"power": "3",
@@ -36670,7 +36670,7 @@
}
},
{
- "id": 22727,
+ "id": 23196,
"properties": {
"facing": "east",
"power": "4",
@@ -36679,7 +36679,7 @@
}
},
{
- "id": 22728,
+ "id": 23197,
"properties": {
"facing": "east",
"power": "4",
@@ -36688,7 +36688,7 @@
}
},
{
- "id": 22729,
+ "id": 23198,
"properties": {
"facing": "east",
"power": "4",
@@ -36697,7 +36697,7 @@
}
},
{
- "id": 22730,
+ "id": 23199,
"properties": {
"facing": "east",
"power": "4",
@@ -36706,7 +36706,7 @@
}
},
{
- "id": 22731,
+ "id": 23200,
"properties": {
"facing": "east",
"power": "4",
@@ -36715,7 +36715,7 @@
}
},
{
- "id": 22732,
+ "id": 23201,
"properties": {
"facing": "east",
"power": "4",
@@ -36724,7 +36724,7 @@
}
},
{
- "id": 22733,
+ "id": 23202,
"properties": {
"facing": "east",
"power": "5",
@@ -36733,7 +36733,7 @@
}
},
{
- "id": 22734,
+ "id": 23203,
"properties": {
"facing": "east",
"power": "5",
@@ -36742,7 +36742,7 @@
}
},
{
- "id": 22735,
+ "id": 23204,
"properties": {
"facing": "east",
"power": "5",
@@ -36751,7 +36751,7 @@
}
},
{
- "id": 22736,
+ "id": 23205,
"properties": {
"facing": "east",
"power": "5",
@@ -36760,7 +36760,7 @@
}
},
{
- "id": 22737,
+ "id": 23206,
"properties": {
"facing": "east",
"power": "5",
@@ -36769,7 +36769,7 @@
}
},
{
- "id": 22738,
+ "id": 23207,
"properties": {
"facing": "east",
"power": "5",
@@ -36778,7 +36778,7 @@
}
},
{
- "id": 22739,
+ "id": 23208,
"properties": {
"facing": "east",
"power": "6",
@@ -36787,7 +36787,7 @@
}
},
{
- "id": 22740,
+ "id": 23209,
"properties": {
"facing": "east",
"power": "6",
@@ -36796,7 +36796,7 @@
}
},
{
- "id": 22741,
+ "id": 23210,
"properties": {
"facing": "east",
"power": "6",
@@ -36805,7 +36805,7 @@
}
},
{
- "id": 22742,
+ "id": 23211,
"properties": {
"facing": "east",
"power": "6",
@@ -36814,7 +36814,7 @@
}
},
{
- "id": 22743,
+ "id": 23212,
"properties": {
"facing": "east",
"power": "6",
@@ -36823,7 +36823,7 @@
}
},
{
- "id": 22744,
+ "id": 23213,
"properties": {
"facing": "east",
"power": "6",
@@ -36832,7 +36832,7 @@
}
},
{
- "id": 22745,
+ "id": 23214,
"properties": {
"facing": "east",
"power": "7",
@@ -36841,7 +36841,7 @@
}
},
{
- "id": 22746,
+ "id": 23215,
"properties": {
"facing": "east",
"power": "7",
@@ -36850,7 +36850,7 @@
}
},
{
- "id": 22747,
+ "id": 23216,
"properties": {
"facing": "east",
"power": "7",
@@ -36859,7 +36859,7 @@
}
},
{
- "id": 22748,
+ "id": 23217,
"properties": {
"facing": "east",
"power": "7",
@@ -36868,7 +36868,7 @@
}
},
{
- "id": 22749,
+ "id": 23218,
"properties": {
"facing": "east",
"power": "7",
@@ -36877,7 +36877,7 @@
}
},
{
- "id": 22750,
+ "id": 23219,
"properties": {
"facing": "east",
"power": "7",
@@ -36886,7 +36886,7 @@
}
},
{
- "id": 22751,
+ "id": 23220,
"properties": {
"facing": "east",
"power": "8",
@@ -36895,7 +36895,7 @@
}
},
{
- "id": 22752,
+ "id": 23221,
"properties": {
"facing": "east",
"power": "8",
@@ -36904,7 +36904,7 @@
}
},
{
- "id": 22753,
+ "id": 23222,
"properties": {
"facing": "east",
"power": "8",
@@ -36913,7 +36913,7 @@
}
},
{
- "id": 22754,
+ "id": 23223,
"properties": {
"facing": "east",
"power": "8",
@@ -36922,7 +36922,7 @@
}
},
{
- "id": 22755,
+ "id": 23224,
"properties": {
"facing": "east",
"power": "8",
@@ -36931,7 +36931,7 @@
}
},
{
- "id": 22756,
+ "id": 23225,
"properties": {
"facing": "east",
"power": "8",
@@ -36940,7 +36940,7 @@
}
},
{
- "id": 22757,
+ "id": 23226,
"properties": {
"facing": "east",
"power": "9",
@@ -36949,7 +36949,7 @@
}
},
{
- "id": 22758,
+ "id": 23227,
"properties": {
"facing": "east",
"power": "9",
@@ -36958,7 +36958,7 @@
}
},
{
- "id": 22759,
+ "id": 23228,
"properties": {
"facing": "east",
"power": "9",
@@ -36967,7 +36967,7 @@
}
},
{
- "id": 22760,
+ "id": 23229,
"properties": {
"facing": "east",
"power": "9",
@@ -36976,7 +36976,7 @@
}
},
{
- "id": 22761,
+ "id": 23230,
"properties": {
"facing": "east",
"power": "9",
@@ -36985,7 +36985,7 @@
}
},
{
- "id": 22762,
+ "id": 23231,
"properties": {
"facing": "east",
"power": "9",
@@ -36994,7 +36994,7 @@
}
},
{
- "id": 22763,
+ "id": 23232,
"properties": {
"facing": "east",
"power": "10",
@@ -37003,7 +37003,7 @@
}
},
{
- "id": 22764,
+ "id": 23233,
"properties": {
"facing": "east",
"power": "10",
@@ -37012,7 +37012,7 @@
}
},
{
- "id": 22765,
+ "id": 23234,
"properties": {
"facing": "east",
"power": "10",
@@ -37021,7 +37021,7 @@
}
},
{
- "id": 22766,
+ "id": 23235,
"properties": {
"facing": "east",
"power": "10",
@@ -37030,7 +37030,7 @@
}
},
{
- "id": 22767,
+ "id": 23236,
"properties": {
"facing": "east",
"power": "10",
@@ -37039,7 +37039,7 @@
}
},
{
- "id": 22768,
+ "id": 23237,
"properties": {
"facing": "east",
"power": "10",
@@ -37048,7 +37048,7 @@
}
},
{
- "id": 22769,
+ "id": 23238,
"properties": {
"facing": "east",
"power": "11",
@@ -37057,7 +37057,7 @@
}
},
{
- "id": 22770,
+ "id": 23239,
"properties": {
"facing": "east",
"power": "11",
@@ -37066,7 +37066,7 @@
}
},
{
- "id": 22771,
+ "id": 23240,
"properties": {
"facing": "east",
"power": "11",
@@ -37075,7 +37075,7 @@
}
},
{
- "id": 22772,
+ "id": 23241,
"properties": {
"facing": "east",
"power": "11",
@@ -37084,7 +37084,7 @@
}
},
{
- "id": 22773,
+ "id": 23242,
"properties": {
"facing": "east",
"power": "11",
@@ -37093,7 +37093,7 @@
}
},
{
- "id": 22774,
+ "id": 23243,
"properties": {
"facing": "east",
"power": "11",
@@ -37102,7 +37102,7 @@
}
},
{
- "id": 22775,
+ "id": 23244,
"properties": {
"facing": "east",
"power": "12",
@@ -37111,7 +37111,7 @@
}
},
{
- "id": 22776,
+ "id": 23245,
"properties": {
"facing": "east",
"power": "12",
@@ -37120,7 +37120,7 @@
}
},
{
- "id": 22777,
+ "id": 23246,
"properties": {
"facing": "east",
"power": "12",
@@ -37129,7 +37129,7 @@
}
},
{
- "id": 22778,
+ "id": 23247,
"properties": {
"facing": "east",
"power": "12",
@@ -37138,7 +37138,7 @@
}
},
{
- "id": 22779,
+ "id": 23248,
"properties": {
"facing": "east",
"power": "12",
@@ -37147,7 +37147,7 @@
}
},
{
- "id": 22780,
+ "id": 23249,
"properties": {
"facing": "east",
"power": "12",
@@ -37156,7 +37156,7 @@
}
},
{
- "id": 22781,
+ "id": 23250,
"properties": {
"facing": "east",
"power": "13",
@@ -37165,7 +37165,7 @@
}
},
{
- "id": 22782,
+ "id": 23251,
"properties": {
"facing": "east",
"power": "13",
@@ -37174,7 +37174,7 @@
}
},
{
- "id": 22783,
+ "id": 23252,
"properties": {
"facing": "east",
"power": "13",
@@ -37183,7 +37183,7 @@
}
},
{
- "id": 22784,
+ "id": 23253,
"properties": {
"facing": "east",
"power": "13",
@@ -37192,7 +37192,7 @@
}
},
{
- "id": 22785,
+ "id": 23254,
"properties": {
"facing": "east",
"power": "13",
@@ -37201,7 +37201,7 @@
}
},
{
- "id": 22786,
+ "id": 23255,
"properties": {
"facing": "east",
"power": "13",
@@ -37210,7 +37210,7 @@
}
},
{
- "id": 22787,
+ "id": 23256,
"properties": {
"facing": "east",
"power": "14",
@@ -37219,7 +37219,7 @@
}
},
{
- "id": 22788,
+ "id": 23257,
"properties": {
"facing": "east",
"power": "14",
@@ -37228,7 +37228,7 @@
}
},
{
- "id": 22789,
+ "id": 23258,
"properties": {
"facing": "east",
"power": "14",
@@ -37237,7 +37237,7 @@
}
},
{
- "id": 22790,
+ "id": 23259,
"properties": {
"facing": "east",
"power": "14",
@@ -37246,7 +37246,7 @@
}
},
{
- "id": 22791,
+ "id": 23260,
"properties": {
"facing": "east",
"power": "14",
@@ -37255,7 +37255,7 @@
}
},
{
- "id": 22792,
+ "id": 23261,
"properties": {
"facing": "east",
"power": "14",
@@ -37264,7 +37264,7 @@
}
},
{
- "id": 22793,
+ "id": 23262,
"properties": {
"facing": "east",
"power": "15",
@@ -37273,7 +37273,7 @@
}
},
{
- "id": 22794,
+ "id": 23263,
"properties": {
"facing": "east",
"power": "15",
@@ -37282,7 +37282,7 @@
}
},
{
- "id": 22795,
+ "id": 23264,
"properties": {
"facing": "east",
"power": "15",
@@ -37291,7 +37291,7 @@
}
},
{
- "id": 22796,
+ "id": 23265,
"properties": {
"facing": "east",
"power": "15",
@@ -37300,7 +37300,7 @@
}
},
{
- "id": 22797,
+ "id": 23266,
"properties": {
"facing": "east",
"power": "15",
@@ -37309,7 +37309,7 @@
}
},
{
- "id": 22798,
+ "id": 23267,
"properties": {
"facing": "east",
"power": "15",
@@ -37348,7 +37348,7 @@
},
"states": [
{
- "id": 18511,
+ "id": 18980,
"properties": {
"facing": "north",
"lit": "true",
@@ -37357,7 +37357,7 @@
}
},
{
- "id": 18512,
+ "id": 18981,
"properties": {
"facing": "north",
"lit": "true",
@@ -37366,7 +37366,7 @@
}
},
{
- "id": 18513,
+ "id": 18982,
"properties": {
"facing": "north",
"lit": "true",
@@ -37376,7 +37376,7 @@
},
{
"default": true,
- "id": 18514,
+ "id": 18983,
"properties": {
"facing": "north",
"lit": "true",
@@ -37385,7 +37385,7 @@
}
},
{
- "id": 18515,
+ "id": 18984,
"properties": {
"facing": "north",
"lit": "false",
@@ -37394,7 +37394,7 @@
}
},
{
- "id": 18516,
+ "id": 18985,
"properties": {
"facing": "north",
"lit": "false",
@@ -37403,7 +37403,7 @@
}
},
{
- "id": 18517,
+ "id": 18986,
"properties": {
"facing": "north",
"lit": "false",
@@ -37412,7 +37412,7 @@
}
},
{
- "id": 18518,
+ "id": 18987,
"properties": {
"facing": "north",
"lit": "false",
@@ -37421,7 +37421,7 @@
}
},
{
- "id": 18519,
+ "id": 18988,
"properties": {
"facing": "south",
"lit": "true",
@@ -37430,7 +37430,7 @@
}
},
{
- "id": 18520,
+ "id": 18989,
"properties": {
"facing": "south",
"lit": "true",
@@ -37439,7 +37439,7 @@
}
},
{
- "id": 18521,
+ "id": 18990,
"properties": {
"facing": "south",
"lit": "true",
@@ -37448,7 +37448,7 @@
}
},
{
- "id": 18522,
+ "id": 18991,
"properties": {
"facing": "south",
"lit": "true",
@@ -37457,7 +37457,7 @@
}
},
{
- "id": 18523,
+ "id": 18992,
"properties": {
"facing": "south",
"lit": "false",
@@ -37466,7 +37466,7 @@
}
},
{
- "id": 18524,
+ "id": 18993,
"properties": {
"facing": "south",
"lit": "false",
@@ -37475,7 +37475,7 @@
}
},
{
- "id": 18525,
+ "id": 18994,
"properties": {
"facing": "south",
"lit": "false",
@@ -37484,7 +37484,7 @@
}
},
{
- "id": 18526,
+ "id": 18995,
"properties": {
"facing": "south",
"lit": "false",
@@ -37493,7 +37493,7 @@
}
},
{
- "id": 18527,
+ "id": 18996,
"properties": {
"facing": "west",
"lit": "true",
@@ -37502,7 +37502,7 @@
}
},
{
- "id": 18528,
+ "id": 18997,
"properties": {
"facing": "west",
"lit": "true",
@@ -37511,7 +37511,7 @@
}
},
{
- "id": 18529,
+ "id": 18998,
"properties": {
"facing": "west",
"lit": "true",
@@ -37520,7 +37520,7 @@
}
},
{
- "id": 18530,
+ "id": 18999,
"properties": {
"facing": "west",
"lit": "true",
@@ -37529,7 +37529,7 @@
}
},
{
- "id": 18531,
+ "id": 19000,
"properties": {
"facing": "west",
"lit": "false",
@@ -37538,7 +37538,7 @@
}
},
{
- "id": 18532,
+ "id": 19001,
"properties": {
"facing": "west",
"lit": "false",
@@ -37547,7 +37547,7 @@
}
},
{
- "id": 18533,
+ "id": 19002,
"properties": {
"facing": "west",
"lit": "false",
@@ -37556,7 +37556,7 @@
}
},
{
- "id": 18534,
+ "id": 19003,
"properties": {
"facing": "west",
"lit": "false",
@@ -37565,7 +37565,7 @@
}
},
{
- "id": 18535,
+ "id": 19004,
"properties": {
"facing": "east",
"lit": "true",
@@ -37574,7 +37574,7 @@
}
},
{
- "id": 18536,
+ "id": 19005,
"properties": {
"facing": "east",
"lit": "true",
@@ -37583,7 +37583,7 @@
}
},
{
- "id": 18537,
+ "id": 19006,
"properties": {
"facing": "east",
"lit": "true",
@@ -37592,7 +37592,7 @@
}
},
{
- "id": 18538,
+ "id": 19007,
"properties": {
"facing": "east",
"lit": "true",
@@ -37601,7 +37601,7 @@
}
},
{
- "id": 18539,
+ "id": 19008,
"properties": {
"facing": "east",
"lit": "false",
@@ -37610,7 +37610,7 @@
}
},
{
- "id": 18540,
+ "id": 19009,
"properties": {
"facing": "east",
"lit": "false",
@@ -37619,7 +37619,7 @@
}
},
{
- "id": 18541,
+ "id": 19010,
"properties": {
"facing": "east",
"lit": "false",
@@ -37628,7 +37628,7 @@
}
},
{
- "id": 18542,
+ "id": 19011,
"properties": {
"facing": "east",
"lit": "false",
@@ -37661,7 +37661,7 @@
},
"states": [
{
- "id": 20725,
+ "id": 21194,
"properties": {
"candles": "1",
"lit": "true",
@@ -37669,7 +37669,7 @@
}
},
{
- "id": 20726,
+ "id": 21195,
"properties": {
"candles": "1",
"lit": "true",
@@ -37677,7 +37677,7 @@
}
},
{
- "id": 20727,
+ "id": 21196,
"properties": {
"candles": "1",
"lit": "false",
@@ -37686,7 +37686,7 @@
},
{
"default": true,
- "id": 20728,
+ "id": 21197,
"properties": {
"candles": "1",
"lit": "false",
@@ -37694,7 +37694,7 @@
}
},
{
- "id": 20729,
+ "id": 21198,
"properties": {
"candles": "2",
"lit": "true",
@@ -37702,7 +37702,7 @@
}
},
{
- "id": 20730,
+ "id": 21199,
"properties": {
"candles": "2",
"lit": "true",
@@ -37710,7 +37710,7 @@
}
},
{
- "id": 20731,
+ "id": 21200,
"properties": {
"candles": "2",
"lit": "false",
@@ -37718,7 +37718,7 @@
}
},
{
- "id": 20732,
+ "id": 21201,
"properties": {
"candles": "2",
"lit": "false",
@@ -37726,7 +37726,7 @@
}
},
{
- "id": 20733,
+ "id": 21202,
"properties": {
"candles": "3",
"lit": "true",
@@ -37734,7 +37734,7 @@
}
},
{
- "id": 20734,
+ "id": 21203,
"properties": {
"candles": "3",
"lit": "true",
@@ -37742,7 +37742,7 @@
}
},
{
- "id": 20735,
+ "id": 21204,
"properties": {
"candles": "3",
"lit": "false",
@@ -37750,7 +37750,7 @@
}
},
{
- "id": 20736,
+ "id": 21205,
"properties": {
"candles": "3",
"lit": "false",
@@ -37758,7 +37758,7 @@
}
},
{
- "id": 20737,
+ "id": 21206,
"properties": {
"candles": "4",
"lit": "true",
@@ -37766,7 +37766,7 @@
}
},
{
- "id": 20738,
+ "id": 21207,
"properties": {
"candles": "4",
"lit": "true",
@@ -37774,7 +37774,7 @@
}
},
{
- "id": 20739,
+ "id": 21208,
"properties": {
"candles": "4",
"lit": "false",
@@ -37782,7 +37782,7 @@
}
},
{
- "id": 20740,
+ "id": 21209,
"properties": {
"candles": "4",
"lit": "false",
@@ -37805,14 +37805,14 @@
},
"states": [
{
- "id": 20997,
+ "id": 21466,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20998,
+ "id": 21467,
"properties": {
"lit": "false"
}
@@ -37839,49 +37839,49 @@
"states": [
{
"default": true,
- "id": 8595,
+ "id": 8826,
"properties": {
"age": "0"
}
},
{
- "id": 8596,
+ "id": 8827,
"properties": {
"age": "1"
}
},
{
- "id": 8597,
+ "id": 8828,
"properties": {
"age": "2"
}
},
{
- "id": 8598,
+ "id": 8829,
"properties": {
"age": "3"
}
},
{
- "id": 8599,
+ "id": 8830,
"properties": {
"age": "4"
}
},
{
- "id": 8600,
+ "id": 8831,
"properties": {
"age": "5"
}
},
{
- "id": 8601,
+ "id": 8832,
"properties": {
"age": "6"
}
},
{
- "id": 8602,
+ "id": 8833,
"properties": {
"age": "7"
}
@@ -37896,13 +37896,13 @@
"states": [
{
"default": true,
- "id": 18436
+ "id": 18905
}
]
},
"minecraft:carved_pumpkin": {
"definition": {
- "type": "minecraft:carved_pumpkin",
+ "type": "minecraft:jack_o_lantern",
"properties": {}
},
"properties": {
@@ -37916,25 +37916,25 @@
"states": [
{
"default": true,
- "id": 5866,
+ "id": 6032,
"properties": {
"facing": "north"
}
},
{
- "id": 5867,
+ "id": 6033,
"properties": {
"facing": "south"
}
},
{
- "id": 5868,
+ "id": 6034,
"properties": {
"facing": "west"
}
},
{
- "id": 5869,
+ "id": 6035,
"properties": {
"facing": "east"
}
@@ -37949,7 +37949,7 @@
"states": [
{
"default": true,
- "id": 7398
+ "id": 7628
}
]
},
@@ -37961,7 +37961,7 @@
"states": [
{
"default": true,
- "id": 12959
+ "id": 13428
}
]
},
@@ -38006,7 +38006,7 @@
},
"states": [
{
- "id": 24769,
+ "id": 25238,
"properties": {
"age": "0",
"berries": "true"
@@ -38014,357 +38014,357 @@
},
{
"default": true,
- "id": 24770,
+ "id": 25239,
"properties": {
"age": "0",
"berries": "false"
}
},
{
- "id": 24771,
+ "id": 25240,
"properties": {
"age": "1",
"berries": "true"
}
},
{
- "id": 24772,
+ "id": 25241,
"properties": {
"age": "1",
"berries": "false"
}
},
{
- "id": 24773,
+ "id": 25242,
"properties": {
"age": "2",
"berries": "true"
}
},
{
- "id": 24774,
+ "id": 25243,
"properties": {
"age": "2",
"berries": "false"
}
},
{
- "id": 24775,
+ "id": 25244,
"properties": {
"age": "3",
"berries": "true"
}
},
{
- "id": 24776,
+ "id": 25245,
"properties": {
"age": "3",
"berries": "false"
}
},
{
- "id": 24777,
+ "id": 25246,
"properties": {
"age": "4",
"berries": "true"
}
},
{
- "id": 24778,
+ "id": 25247,
"properties": {
"age": "4",
"berries": "false"
}
},
{
- "id": 24779,
+ "id": 25248,
"properties": {
"age": "5",
"berries": "true"
}
},
{
- "id": 24780,
+ "id": 25249,
"properties": {
"age": "5",
"berries": "false"
}
},
{
- "id": 24781,
+ "id": 25250,
"properties": {
"age": "6",
"berries": "true"
}
},
{
- "id": 24782,
+ "id": 25251,
"properties": {
"age": "6",
"berries": "false"
}
},
{
- "id": 24783,
+ "id": 25252,
"properties": {
"age": "7",
"berries": "true"
}
},
{
- "id": 24784,
+ "id": 25253,
"properties": {
"age": "7",
"berries": "false"
}
},
{
- "id": 24785,
+ "id": 25254,
"properties": {
"age": "8",
"berries": "true"
}
},
{
- "id": 24786,
+ "id": 25255,
"properties": {
"age": "8",
"berries": "false"
}
},
{
- "id": 24787,
+ "id": 25256,
"properties": {
"age": "9",
"berries": "true"
}
},
{
- "id": 24788,
+ "id": 25257,
"properties": {
"age": "9",
"berries": "false"
}
},
{
- "id": 24789,
+ "id": 25258,
"properties": {
"age": "10",
"berries": "true"
}
},
{
- "id": 24790,
+ "id": 25259,
"properties": {
"age": "10",
"berries": "false"
}
},
{
- "id": 24791,
+ "id": 25260,
"properties": {
"age": "11",
"berries": "true"
}
},
{
- "id": 24792,
+ "id": 25261,
"properties": {
"age": "11",
"berries": "false"
}
},
{
- "id": 24793,
+ "id": 25262,
"properties": {
"age": "12",
"berries": "true"
}
},
{
- "id": 24794,
+ "id": 25263,
"properties": {
"age": "12",
"berries": "false"
}
},
{
- "id": 24795,
+ "id": 25264,
"properties": {
"age": "13",
"berries": "true"
}
},
{
- "id": 24796,
+ "id": 25265,
"properties": {
"age": "13",
"berries": "false"
}
},
{
- "id": 24797,
+ "id": 25266,
"properties": {
"age": "14",
"berries": "true"
}
},
{
- "id": 24798,
+ "id": 25267,
"properties": {
"age": "14",
"berries": "false"
}
},
{
- "id": 24799,
+ "id": 25268,
"properties": {
"age": "15",
"berries": "true"
}
},
{
- "id": 24800,
+ "id": 25269,
"properties": {
"age": "15",
"berries": "false"
}
},
{
- "id": 24801,
+ "id": 25270,
"properties": {
"age": "16",
"berries": "true"
}
},
{
- "id": 24802,
+ "id": 25271,
"properties": {
"age": "16",
"berries": "false"
}
},
{
- "id": 24803,
+ "id": 25272,
"properties": {
"age": "17",
"berries": "true"
}
},
{
- "id": 24804,
+ "id": 25273,
"properties": {
"age": "17",
"berries": "false"
}
},
{
- "id": 24805,
+ "id": 25274,
"properties": {
"age": "18",
"berries": "true"
}
},
{
- "id": 24806,
+ "id": 25275,
"properties": {
"age": "18",
"berries": "false"
}
},
{
- "id": 24807,
+ "id": 25276,
"properties": {
"age": "19",
"berries": "true"
}
},
{
- "id": 24808,
+ "id": 25277,
"properties": {
"age": "19",
"berries": "false"
}
},
{
- "id": 24809,
+ "id": 25278,
"properties": {
"age": "20",
"berries": "true"
}
},
{
- "id": 24810,
+ "id": 25279,
"properties": {
"age": "20",
"berries": "false"
}
},
{
- "id": 24811,
+ "id": 25280,
"properties": {
"age": "21",
"berries": "true"
}
},
{
- "id": 24812,
+ "id": 25281,
"properties": {
"age": "21",
"berries": "false"
}
},
{
- "id": 24813,
+ "id": 25282,
"properties": {
"age": "22",
"berries": "true"
}
},
{
- "id": 24814,
+ "id": 25283,
"properties": {
"age": "22",
"berries": "false"
}
},
{
- "id": 24815,
+ "id": 25284,
"properties": {
"age": "23",
"berries": "true"
}
},
{
- "id": 24816,
+ "id": 25285,
"properties": {
"age": "23",
"berries": "false"
}
},
{
- "id": 24817,
+ "id": 25286,
"properties": {
"age": "24",
"berries": "true"
}
},
{
- "id": 24818,
+ "id": 25287,
"properties": {
"age": "24",
"berries": "false"
}
},
{
- "id": 24819,
+ "id": 25288,
"properties": {
"age": "25",
"berries": "true"
}
},
{
- "id": 24820,
+ "id": 25289,
"properties": {
"age": "25",
"berries": "false"
@@ -38385,14 +38385,14 @@
},
"states": [
{
- "id": 24821,
+ "id": 25290,
"properties": {
"berries": "true"
}
},
{
"default": true,
- "id": 24822,
+ "id": 25291,
"properties": {
"berries": "false"
}
@@ -38417,21 +38417,21 @@
},
"states": [
{
- "id": 6773,
+ "id": 7003,
"properties": {
"axis": "x",
"waterlogged": "true"
}
},
{
- "id": 6774,
+ "id": 7004,
"properties": {
"axis": "x",
"waterlogged": "false"
}
},
{
- "id": 6775,
+ "id": 7005,
"properties": {
"axis": "y",
"waterlogged": "true"
@@ -38439,21 +38439,21 @@
},
{
"default": true,
- "id": 6776,
+ "id": 7006,
"properties": {
"axis": "y",
"waterlogged": "false"
}
},
{
- "id": 6777,
+ "id": 7007,
"properties": {
"axis": "z",
"waterlogged": "true"
}
},
{
- "id": 6778,
+ "id": 7008,
"properties": {
"axis": "z",
"waterlogged": "false"
@@ -38483,42 +38483,42 @@
},
"states": [
{
- "id": 12527,
+ "id": 12996,
"properties": {
"conditional": "true",
"facing": "north"
}
},
{
- "id": 12528,
+ "id": 12997,
"properties": {
"conditional": "true",
"facing": "east"
}
},
{
- "id": 12529,
+ "id": 12998,
"properties": {
"conditional": "true",
"facing": "south"
}
},
{
- "id": 12530,
+ "id": 12999,
"properties": {
"conditional": "true",
"facing": "west"
}
},
{
- "id": 12531,
+ "id": 13000,
"properties": {
"conditional": "true",
"facing": "up"
}
},
{
- "id": 12532,
+ "id": 13001,
"properties": {
"conditional": "true",
"facing": "down"
@@ -38526,42 +38526,42 @@
},
{
"default": true,
- "id": 12533,
+ "id": 13002,
"properties": {
"conditional": "false",
"facing": "north"
}
},
{
- "id": 12534,
+ "id": 13003,
"properties": {
"conditional": "false",
"facing": "east"
}
},
{
- "id": 12535,
+ "id": 13004,
"properties": {
"conditional": "false",
"facing": "south"
}
},
{
- "id": 12536,
+ "id": 13005,
"properties": {
"conditional": "false",
"facing": "west"
}
},
{
- "id": 12537,
+ "id": 13006,
"properties": {
"conditional": "false",
"facing": "up"
}
},
{
- "id": 12538,
+ "id": 13007,
"properties": {
"conditional": "false",
"facing": "down"
@@ -38595,7 +38595,7 @@
},
"states": [
{
- "id": 8731,
+ "id": 8962,
"properties": {
"face": "floor",
"facing": "north",
@@ -38603,7 +38603,7 @@
}
},
{
- "id": 8732,
+ "id": 8963,
"properties": {
"face": "floor",
"facing": "north",
@@ -38611,7 +38611,7 @@
}
},
{
- "id": 8733,
+ "id": 8964,
"properties": {
"face": "floor",
"facing": "south",
@@ -38619,7 +38619,7 @@
}
},
{
- "id": 8734,
+ "id": 8965,
"properties": {
"face": "floor",
"facing": "south",
@@ -38627,7 +38627,7 @@
}
},
{
- "id": 8735,
+ "id": 8966,
"properties": {
"face": "floor",
"facing": "west",
@@ -38635,7 +38635,7 @@
}
},
{
- "id": 8736,
+ "id": 8967,
"properties": {
"face": "floor",
"facing": "west",
@@ -38643,7 +38643,7 @@
}
},
{
- "id": 8737,
+ "id": 8968,
"properties": {
"face": "floor",
"facing": "east",
@@ -38651,7 +38651,7 @@
}
},
{
- "id": 8738,
+ "id": 8969,
"properties": {
"face": "floor",
"facing": "east",
@@ -38659,7 +38659,7 @@
}
},
{
- "id": 8739,
+ "id": 8970,
"properties": {
"face": "wall",
"facing": "north",
@@ -38668,7 +38668,7 @@
},
{
"default": true,
- "id": 8740,
+ "id": 8971,
"properties": {
"face": "wall",
"facing": "north",
@@ -38676,7 +38676,7 @@
}
},
{
- "id": 8741,
+ "id": 8972,
"properties": {
"face": "wall",
"facing": "south",
@@ -38684,7 +38684,7 @@
}
},
{
- "id": 8742,
+ "id": 8973,
"properties": {
"face": "wall",
"facing": "south",
@@ -38692,7 +38692,7 @@
}
},
{
- "id": 8743,
+ "id": 8974,
"properties": {
"face": "wall",
"facing": "west",
@@ -38700,7 +38700,7 @@
}
},
{
- "id": 8744,
+ "id": 8975,
"properties": {
"face": "wall",
"facing": "west",
@@ -38708,7 +38708,7 @@
}
},
{
- "id": 8745,
+ "id": 8976,
"properties": {
"face": "wall",
"facing": "east",
@@ -38716,7 +38716,7 @@
}
},
{
- "id": 8746,
+ "id": 8977,
"properties": {
"face": "wall",
"facing": "east",
@@ -38724,7 +38724,7 @@
}
},
{
- "id": 8747,
+ "id": 8978,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -38732,7 +38732,7 @@
}
},
{
- "id": 8748,
+ "id": 8979,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -38740,7 +38740,7 @@
}
},
{
- "id": 8749,
+ "id": 8980,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -38748,7 +38748,7 @@
}
},
{
- "id": 8750,
+ "id": 8981,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -38756,7 +38756,7 @@
}
},
{
- "id": 8751,
+ "id": 8982,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -38764,7 +38764,7 @@
}
},
{
- "id": 8752,
+ "id": 8983,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -38772,7 +38772,7 @@
}
},
{
- "id": 8753,
+ "id": 8984,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -38780,7 +38780,7 @@
}
},
{
- "id": 8754,
+ "id": 8985,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -38821,7 +38821,7 @@
},
"states": [
{
- "id": 12078,
+ "id": 12483,
"properties": {
"facing": "north",
"half": "upper",
@@ -38831,7 +38831,7 @@
}
},
{
- "id": 12079,
+ "id": 12484,
"properties": {
"facing": "north",
"half": "upper",
@@ -38841,7 +38841,7 @@
}
},
{
- "id": 12080,
+ "id": 12485,
"properties": {
"facing": "north",
"half": "upper",
@@ -38851,7 +38851,7 @@
}
},
{
- "id": 12081,
+ "id": 12486,
"properties": {
"facing": "north",
"half": "upper",
@@ -38861,7 +38861,7 @@
}
},
{
- "id": 12082,
+ "id": 12487,
"properties": {
"facing": "north",
"half": "upper",
@@ -38871,7 +38871,7 @@
}
},
{
- "id": 12083,
+ "id": 12488,
"properties": {
"facing": "north",
"half": "upper",
@@ -38881,7 +38881,7 @@
}
},
{
- "id": 12084,
+ "id": 12489,
"properties": {
"facing": "north",
"half": "upper",
@@ -38891,7 +38891,7 @@
}
},
{
- "id": 12085,
+ "id": 12490,
"properties": {
"facing": "north",
"half": "upper",
@@ -38901,7 +38901,7 @@
}
},
{
- "id": 12086,
+ "id": 12491,
"properties": {
"facing": "north",
"half": "lower",
@@ -38911,7 +38911,7 @@
}
},
{
- "id": 12087,
+ "id": 12492,
"properties": {
"facing": "north",
"half": "lower",
@@ -38921,7 +38921,7 @@
}
},
{
- "id": 12088,
+ "id": 12493,
"properties": {
"facing": "north",
"half": "lower",
@@ -38932,7 +38932,7 @@
},
{
"default": true,
- "id": 12089,
+ "id": 12494,
"properties": {
"facing": "north",
"half": "lower",
@@ -38942,7 +38942,7 @@
}
},
{
- "id": 12090,
+ "id": 12495,
"properties": {
"facing": "north",
"half": "lower",
@@ -38952,7 +38952,7 @@
}
},
{
- "id": 12091,
+ "id": 12496,
"properties": {
"facing": "north",
"half": "lower",
@@ -38962,7 +38962,7 @@
}
},
{
- "id": 12092,
+ "id": 12497,
"properties": {
"facing": "north",
"half": "lower",
@@ -38972,7 +38972,7 @@
}
},
{
- "id": 12093,
+ "id": 12498,
"properties": {
"facing": "north",
"half": "lower",
@@ -38982,7 +38982,7 @@
}
},
{
- "id": 12094,
+ "id": 12499,
"properties": {
"facing": "south",
"half": "upper",
@@ -38992,7 +38992,7 @@
}
},
{
- "id": 12095,
+ "id": 12500,
"properties": {
"facing": "south",
"half": "upper",
@@ -39002,7 +39002,7 @@
}
},
{
- "id": 12096,
+ "id": 12501,
"properties": {
"facing": "south",
"half": "upper",
@@ -39012,7 +39012,7 @@
}
},
{
- "id": 12097,
+ "id": 12502,
"properties": {
"facing": "south",
"half": "upper",
@@ -39022,7 +39022,7 @@
}
},
{
- "id": 12098,
+ "id": 12503,
"properties": {
"facing": "south",
"half": "upper",
@@ -39032,7 +39032,7 @@
}
},
{
- "id": 12099,
+ "id": 12504,
"properties": {
"facing": "south",
"half": "upper",
@@ -39042,7 +39042,7 @@
}
},
{
- "id": 12100,
+ "id": 12505,
"properties": {
"facing": "south",
"half": "upper",
@@ -39052,7 +39052,7 @@
}
},
{
- "id": 12101,
+ "id": 12506,
"properties": {
"facing": "south",
"half": "upper",
@@ -39062,7 +39062,7 @@
}
},
{
- "id": 12102,
+ "id": 12507,
"properties": {
"facing": "south",
"half": "lower",
@@ -39072,7 +39072,7 @@
}
},
{
- "id": 12103,
+ "id": 12508,
"properties": {
"facing": "south",
"half": "lower",
@@ -39082,7 +39082,7 @@
}
},
{
- "id": 12104,
+ "id": 12509,
"properties": {
"facing": "south",
"half": "lower",
@@ -39092,7 +39092,7 @@
}
},
{
- "id": 12105,
+ "id": 12510,
"properties": {
"facing": "south",
"half": "lower",
@@ -39102,7 +39102,7 @@
}
},
{
- "id": 12106,
+ "id": 12511,
"properties": {
"facing": "south",
"half": "lower",
@@ -39112,7 +39112,7 @@
}
},
{
- "id": 12107,
+ "id": 12512,
"properties": {
"facing": "south",
"half": "lower",
@@ -39122,7 +39122,7 @@
}
},
{
- "id": 12108,
+ "id": 12513,
"properties": {
"facing": "south",
"half": "lower",
@@ -39132,7 +39132,7 @@
}
},
{
- "id": 12109,
+ "id": 12514,
"properties": {
"facing": "south",
"half": "lower",
@@ -39142,7 +39142,7 @@
}
},
{
- "id": 12110,
+ "id": 12515,
"properties": {
"facing": "west",
"half": "upper",
@@ -39152,7 +39152,7 @@
}
},
{
- "id": 12111,
+ "id": 12516,
"properties": {
"facing": "west",
"half": "upper",
@@ -39162,7 +39162,7 @@
}
},
{
- "id": 12112,
+ "id": 12517,
"properties": {
"facing": "west",
"half": "upper",
@@ -39172,7 +39172,7 @@
}
},
{
- "id": 12113,
+ "id": 12518,
"properties": {
"facing": "west",
"half": "upper",
@@ -39182,7 +39182,7 @@
}
},
{
- "id": 12114,
+ "id": 12519,
"properties": {
"facing": "west",
"half": "upper",
@@ -39192,7 +39192,7 @@
}
},
{
- "id": 12115,
+ "id": 12520,
"properties": {
"facing": "west",
"half": "upper",
@@ -39202,7 +39202,7 @@
}
},
{
- "id": 12116,
+ "id": 12521,
"properties": {
"facing": "west",
"half": "upper",
@@ -39212,7 +39212,7 @@
}
},
{
- "id": 12117,
+ "id": 12522,
"properties": {
"facing": "west",
"half": "upper",
@@ -39222,7 +39222,7 @@
}
},
{
- "id": 12118,
+ "id": 12523,
"properties": {
"facing": "west",
"half": "lower",
@@ -39232,7 +39232,7 @@
}
},
{
- "id": 12119,
+ "id": 12524,
"properties": {
"facing": "west",
"half": "lower",
@@ -39242,7 +39242,7 @@
}
},
{
- "id": 12120,
+ "id": 12525,
"properties": {
"facing": "west",
"half": "lower",
@@ -39252,7 +39252,7 @@
}
},
{
- "id": 12121,
+ "id": 12526,
"properties": {
"facing": "west",
"half": "lower",
@@ -39262,7 +39262,7 @@
}
},
{
- "id": 12122,
+ "id": 12527,
"properties": {
"facing": "west",
"half": "lower",
@@ -39272,7 +39272,7 @@
}
},
{
- "id": 12123,
+ "id": 12528,
"properties": {
"facing": "west",
"half": "lower",
@@ -39282,7 +39282,7 @@
}
},
{
- "id": 12124,
+ "id": 12529,
"properties": {
"facing": "west",
"half": "lower",
@@ -39292,7 +39292,7 @@
}
},
{
- "id": 12125,
+ "id": 12530,
"properties": {
"facing": "west",
"half": "lower",
@@ -39302,7 +39302,7 @@
}
},
{
- "id": 12126,
+ "id": 12531,
"properties": {
"facing": "east",
"half": "upper",
@@ -39312,7 +39312,7 @@
}
},
{
- "id": 12127,
+ "id": 12532,
"properties": {
"facing": "east",
"half": "upper",
@@ -39322,7 +39322,7 @@
}
},
{
- "id": 12128,
+ "id": 12533,
"properties": {
"facing": "east",
"half": "upper",
@@ -39332,7 +39332,7 @@
}
},
{
- "id": 12129,
+ "id": 12534,
"properties": {
"facing": "east",
"half": "upper",
@@ -39342,7 +39342,7 @@
}
},
{
- "id": 12130,
+ "id": 12535,
"properties": {
"facing": "east",
"half": "upper",
@@ -39352,7 +39352,7 @@
}
},
{
- "id": 12131,
+ "id": 12536,
"properties": {
"facing": "east",
"half": "upper",
@@ -39362,7 +39362,7 @@
}
},
{
- "id": 12132,
+ "id": 12537,
"properties": {
"facing": "east",
"half": "upper",
@@ -39372,7 +39372,7 @@
}
},
{
- "id": 12133,
+ "id": 12538,
"properties": {
"facing": "east",
"half": "upper",
@@ -39382,7 +39382,7 @@
}
},
{
- "id": 12134,
+ "id": 12539,
"properties": {
"facing": "east",
"half": "lower",
@@ -39392,7 +39392,7 @@
}
},
{
- "id": 12135,
+ "id": 12540,
"properties": {
"facing": "east",
"half": "lower",
@@ -39402,7 +39402,7 @@
}
},
{
- "id": 12136,
+ "id": 12541,
"properties": {
"facing": "east",
"half": "lower",
@@ -39412,7 +39412,7 @@
}
},
{
- "id": 12137,
+ "id": 12542,
"properties": {
"facing": "east",
"half": "lower",
@@ -39422,7 +39422,7 @@
}
},
{
- "id": 12138,
+ "id": 12543,
"properties": {
"facing": "east",
"half": "lower",
@@ -39432,7 +39432,7 @@
}
},
{
- "id": 12139,
+ "id": 12544,
"properties": {
"facing": "east",
"half": "lower",
@@ -39442,7 +39442,7 @@
}
},
{
- "id": 12140,
+ "id": 12545,
"properties": {
"facing": "east",
"half": "lower",
@@ -39452,7 +39452,7 @@
}
},
{
- "id": 12141,
+ "id": 12546,
"properties": {
"facing": "east",
"half": "lower",
@@ -39492,7 +39492,7 @@
},
"states": [
{
- "id": 11694,
+ "id": 12067,
"properties": {
"east": "true",
"north": "true",
@@ -39502,7 +39502,7 @@
}
},
{
- "id": 11695,
+ "id": 12068,
"properties": {
"east": "true",
"north": "true",
@@ -39512,7 +39512,7 @@
}
},
{
- "id": 11696,
+ "id": 12069,
"properties": {
"east": "true",
"north": "true",
@@ -39522,7 +39522,7 @@
}
},
{
- "id": 11697,
+ "id": 12070,
"properties": {
"east": "true",
"north": "true",
@@ -39532,7 +39532,7 @@
}
},
{
- "id": 11698,
+ "id": 12071,
"properties": {
"east": "true",
"north": "true",
@@ -39542,7 +39542,7 @@
}
},
{
- "id": 11699,
+ "id": 12072,
"properties": {
"east": "true",
"north": "true",
@@ -39552,7 +39552,7 @@
}
},
{
- "id": 11700,
+ "id": 12073,
"properties": {
"east": "true",
"north": "true",
@@ -39562,7 +39562,7 @@
}
},
{
- "id": 11701,
+ "id": 12074,
"properties": {
"east": "true",
"north": "true",
@@ -39572,7 +39572,7 @@
}
},
{
- "id": 11702,
+ "id": 12075,
"properties": {
"east": "true",
"north": "false",
@@ -39582,7 +39582,7 @@
}
},
{
- "id": 11703,
+ "id": 12076,
"properties": {
"east": "true",
"north": "false",
@@ -39592,7 +39592,7 @@
}
},
{
- "id": 11704,
+ "id": 12077,
"properties": {
"east": "true",
"north": "false",
@@ -39602,7 +39602,7 @@
}
},
{
- "id": 11705,
+ "id": 12078,
"properties": {
"east": "true",
"north": "false",
@@ -39612,7 +39612,7 @@
}
},
{
- "id": 11706,
+ "id": 12079,
"properties": {
"east": "true",
"north": "false",
@@ -39622,7 +39622,7 @@
}
},
{
- "id": 11707,
+ "id": 12080,
"properties": {
"east": "true",
"north": "false",
@@ -39632,7 +39632,7 @@
}
},
{
- "id": 11708,
+ "id": 12081,
"properties": {
"east": "true",
"north": "false",
@@ -39642,7 +39642,7 @@
}
},
{
- "id": 11709,
+ "id": 12082,
"properties": {
"east": "true",
"north": "false",
@@ -39652,7 +39652,7 @@
}
},
{
- "id": 11710,
+ "id": 12083,
"properties": {
"east": "false",
"north": "true",
@@ -39662,7 +39662,7 @@
}
},
{
- "id": 11711,
+ "id": 12084,
"properties": {
"east": "false",
"north": "true",
@@ -39672,7 +39672,7 @@
}
},
{
- "id": 11712,
+ "id": 12085,
"properties": {
"east": "false",
"north": "true",
@@ -39682,7 +39682,7 @@
}
},
{
- "id": 11713,
+ "id": 12086,
"properties": {
"east": "false",
"north": "true",
@@ -39692,7 +39692,7 @@
}
},
{
- "id": 11714,
+ "id": 12087,
"properties": {
"east": "false",
"north": "true",
@@ -39702,7 +39702,7 @@
}
},
{
- "id": 11715,
+ "id": 12088,
"properties": {
"east": "false",
"north": "true",
@@ -39712,7 +39712,7 @@
}
},
{
- "id": 11716,
+ "id": 12089,
"properties": {
"east": "false",
"north": "true",
@@ -39722,7 +39722,7 @@
}
},
{
- "id": 11717,
+ "id": 12090,
"properties": {
"east": "false",
"north": "true",
@@ -39732,7 +39732,7 @@
}
},
{
- "id": 11718,
+ "id": 12091,
"properties": {
"east": "false",
"north": "false",
@@ -39742,7 +39742,7 @@
}
},
{
- "id": 11719,
+ "id": 12092,
"properties": {
"east": "false",
"north": "false",
@@ -39752,7 +39752,7 @@
}
},
{
- "id": 11720,
+ "id": 12093,
"properties": {
"east": "false",
"north": "false",
@@ -39762,7 +39762,7 @@
}
},
{
- "id": 11721,
+ "id": 12094,
"properties": {
"east": "false",
"north": "false",
@@ -39772,7 +39772,7 @@
}
},
{
- "id": 11722,
+ "id": 12095,
"properties": {
"east": "false",
"north": "false",
@@ -39782,7 +39782,7 @@
}
},
{
- "id": 11723,
+ "id": 12096,
"properties": {
"east": "false",
"north": "false",
@@ -39792,7 +39792,7 @@
}
},
{
- "id": 11724,
+ "id": 12097,
"properties": {
"east": "false",
"north": "false",
@@ -39803,7 +39803,7 @@
},
{
"default": true,
- "id": 11725,
+ "id": 12098,
"properties": {
"east": "false",
"north": "false",
@@ -39842,7 +39842,7 @@
},
"states": [
{
- "id": 11438,
+ "id": 11779,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -39851,7 +39851,7 @@
}
},
{
- "id": 11439,
+ "id": 11780,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -39860,7 +39860,7 @@
}
},
{
- "id": 11440,
+ "id": 11781,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -39869,7 +39869,7 @@
}
},
{
- "id": 11441,
+ "id": 11782,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -39878,7 +39878,7 @@
}
},
{
- "id": 11442,
+ "id": 11783,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -39887,7 +39887,7 @@
}
},
{
- "id": 11443,
+ "id": 11784,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -39896,7 +39896,7 @@
}
},
{
- "id": 11444,
+ "id": 11785,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -39906,7 +39906,7 @@
},
{
"default": true,
- "id": 11445,
+ "id": 11786,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -39915,7 +39915,7 @@
}
},
{
- "id": 11446,
+ "id": 11787,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -39924,7 +39924,7 @@
}
},
{
- "id": 11447,
+ "id": 11788,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -39933,7 +39933,7 @@
}
},
{
- "id": 11448,
+ "id": 11789,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -39942,7 +39942,7 @@
}
},
{
- "id": 11449,
+ "id": 11790,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -39951,7 +39951,7 @@
}
},
{
- "id": 11450,
+ "id": 11791,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -39960,7 +39960,7 @@
}
},
{
- "id": 11451,
+ "id": 11792,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -39969,7 +39969,7 @@
}
},
{
- "id": 11452,
+ "id": 11793,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -39978,7 +39978,7 @@
}
},
{
- "id": 11453,
+ "id": 11794,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -39987,7 +39987,7 @@
}
},
{
- "id": 11454,
+ "id": 11795,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -39996,7 +39996,7 @@
}
},
{
- "id": 11455,
+ "id": 11796,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -40005,7 +40005,7 @@
}
},
{
- "id": 11456,
+ "id": 11797,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -40014,7 +40014,7 @@
}
},
{
- "id": 11457,
+ "id": 11798,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -40023,7 +40023,7 @@
}
},
{
- "id": 11458,
+ "id": 11799,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -40032,7 +40032,7 @@
}
},
{
- "id": 11459,
+ "id": 11800,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -40041,7 +40041,7 @@
}
},
{
- "id": 11460,
+ "id": 11801,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -40050,7 +40050,7 @@
}
},
{
- "id": 11461,
+ "id": 11802,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -40059,7 +40059,7 @@
}
},
{
- "id": 11462,
+ "id": 11803,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -40068,7 +40068,7 @@
}
},
{
- "id": 11463,
+ "id": 11804,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -40077,7 +40077,7 @@
}
},
{
- "id": 11464,
+ "id": 11805,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -40086,7 +40086,7 @@
}
},
{
- "id": 11465,
+ "id": 11806,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -40095,7 +40095,7 @@
}
},
{
- "id": 11466,
+ "id": 11807,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -40104,7 +40104,7 @@
}
},
{
- "id": 11467,
+ "id": 11808,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -40113,7 +40113,7 @@
}
},
{
- "id": 11468,
+ "id": 11809,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -40122,7 +40122,7 @@
}
},
{
- "id": 11469,
+ "id": 11810,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -40168,7 +40168,7 @@
},
"states": [
{
- "id": 5090,
+ "id": 5182,
"properties": {
"attached": "true",
"rotation": "0",
@@ -40176,7 +40176,7 @@
}
},
{
- "id": 5091,
+ "id": 5183,
"properties": {
"attached": "true",
"rotation": "0",
@@ -40184,7 +40184,7 @@
}
},
{
- "id": 5092,
+ "id": 5184,
"properties": {
"attached": "true",
"rotation": "1",
@@ -40192,7 +40192,7 @@
}
},
{
- "id": 5093,
+ "id": 5185,
"properties": {
"attached": "true",
"rotation": "1",
@@ -40200,7 +40200,7 @@
}
},
{
- "id": 5094,
+ "id": 5186,
"properties": {
"attached": "true",
"rotation": "2",
@@ -40208,7 +40208,7 @@
}
},
{
- "id": 5095,
+ "id": 5187,
"properties": {
"attached": "true",
"rotation": "2",
@@ -40216,7 +40216,7 @@
}
},
{
- "id": 5096,
+ "id": 5188,
"properties": {
"attached": "true",
"rotation": "3",
@@ -40224,7 +40224,7 @@
}
},
{
- "id": 5097,
+ "id": 5189,
"properties": {
"attached": "true",
"rotation": "3",
@@ -40232,7 +40232,7 @@
}
},
{
- "id": 5098,
+ "id": 5190,
"properties": {
"attached": "true",
"rotation": "4",
@@ -40240,7 +40240,7 @@
}
},
{
- "id": 5099,
+ "id": 5191,
"properties": {
"attached": "true",
"rotation": "4",
@@ -40248,7 +40248,7 @@
}
},
{
- "id": 5100,
+ "id": 5192,
"properties": {
"attached": "true",
"rotation": "5",
@@ -40256,7 +40256,7 @@
}
},
{
- "id": 5101,
+ "id": 5193,
"properties": {
"attached": "true",
"rotation": "5",
@@ -40264,7 +40264,7 @@
}
},
{
- "id": 5102,
+ "id": 5194,
"properties": {
"attached": "true",
"rotation": "6",
@@ -40272,7 +40272,7 @@
}
},
{
- "id": 5103,
+ "id": 5195,
"properties": {
"attached": "true",
"rotation": "6",
@@ -40280,7 +40280,7 @@
}
},
{
- "id": 5104,
+ "id": 5196,
"properties": {
"attached": "true",
"rotation": "7",
@@ -40288,7 +40288,7 @@
}
},
{
- "id": 5105,
+ "id": 5197,
"properties": {
"attached": "true",
"rotation": "7",
@@ -40296,7 +40296,7 @@
}
},
{
- "id": 5106,
+ "id": 5198,
"properties": {
"attached": "true",
"rotation": "8",
@@ -40304,7 +40304,7 @@
}
},
{
- "id": 5107,
+ "id": 5199,
"properties": {
"attached": "true",
"rotation": "8",
@@ -40312,7 +40312,7 @@
}
},
{
- "id": 5108,
+ "id": 5200,
"properties": {
"attached": "true",
"rotation": "9",
@@ -40320,7 +40320,7 @@
}
},
{
- "id": 5109,
+ "id": 5201,
"properties": {
"attached": "true",
"rotation": "9",
@@ -40328,7 +40328,7 @@
}
},
{
- "id": 5110,
+ "id": 5202,
"properties": {
"attached": "true",
"rotation": "10",
@@ -40336,7 +40336,7 @@
}
},
{
- "id": 5111,
+ "id": 5203,
"properties": {
"attached": "true",
"rotation": "10",
@@ -40344,7 +40344,7 @@
}
},
{
- "id": 5112,
+ "id": 5204,
"properties": {
"attached": "true",
"rotation": "11",
@@ -40352,7 +40352,7 @@
}
},
{
- "id": 5113,
+ "id": 5205,
"properties": {
"attached": "true",
"rotation": "11",
@@ -40360,7 +40360,7 @@
}
},
{
- "id": 5114,
+ "id": 5206,
"properties": {
"attached": "true",
"rotation": "12",
@@ -40368,7 +40368,7 @@
}
},
{
- "id": 5115,
+ "id": 5207,
"properties": {
"attached": "true",
"rotation": "12",
@@ -40376,7 +40376,7 @@
}
},
{
- "id": 5116,
+ "id": 5208,
"properties": {
"attached": "true",
"rotation": "13",
@@ -40384,7 +40384,7 @@
}
},
{
- "id": 5117,
+ "id": 5209,
"properties": {
"attached": "true",
"rotation": "13",
@@ -40392,7 +40392,7 @@
}
},
{
- "id": 5118,
+ "id": 5210,
"properties": {
"attached": "true",
"rotation": "14",
@@ -40400,7 +40400,7 @@
}
},
{
- "id": 5119,
+ "id": 5211,
"properties": {
"attached": "true",
"rotation": "14",
@@ -40408,7 +40408,7 @@
}
},
{
- "id": 5120,
+ "id": 5212,
"properties": {
"attached": "true",
"rotation": "15",
@@ -40416,7 +40416,7 @@
}
},
{
- "id": 5121,
+ "id": 5213,
"properties": {
"attached": "true",
"rotation": "15",
@@ -40424,7 +40424,7 @@
}
},
{
- "id": 5122,
+ "id": 5214,
"properties": {
"attached": "false",
"rotation": "0",
@@ -40433,7 +40433,7 @@
},
{
"default": true,
- "id": 5123,
+ "id": 5215,
"properties": {
"attached": "false",
"rotation": "0",
@@ -40441,7 +40441,7 @@
}
},
{
- "id": 5124,
+ "id": 5216,
"properties": {
"attached": "false",
"rotation": "1",
@@ -40449,7 +40449,7 @@
}
},
{
- "id": 5125,
+ "id": 5217,
"properties": {
"attached": "false",
"rotation": "1",
@@ -40457,7 +40457,7 @@
}
},
{
- "id": 5126,
+ "id": 5218,
"properties": {
"attached": "false",
"rotation": "2",
@@ -40465,7 +40465,7 @@
}
},
{
- "id": 5127,
+ "id": 5219,
"properties": {
"attached": "false",
"rotation": "2",
@@ -40473,7 +40473,7 @@
}
},
{
- "id": 5128,
+ "id": 5220,
"properties": {
"attached": "false",
"rotation": "3",
@@ -40481,7 +40481,7 @@
}
},
{
- "id": 5129,
+ "id": 5221,
"properties": {
"attached": "false",
"rotation": "3",
@@ -40489,7 +40489,7 @@
}
},
{
- "id": 5130,
+ "id": 5222,
"properties": {
"attached": "false",
"rotation": "4",
@@ -40497,7 +40497,7 @@
}
},
{
- "id": 5131,
+ "id": 5223,
"properties": {
"attached": "false",
"rotation": "4",
@@ -40505,7 +40505,7 @@
}
},
{
- "id": 5132,
+ "id": 5224,
"properties": {
"attached": "false",
"rotation": "5",
@@ -40513,7 +40513,7 @@
}
},
{
- "id": 5133,
+ "id": 5225,
"properties": {
"attached": "false",
"rotation": "5",
@@ -40521,7 +40521,7 @@
}
},
{
- "id": 5134,
+ "id": 5226,
"properties": {
"attached": "false",
"rotation": "6",
@@ -40529,7 +40529,7 @@
}
},
{
- "id": 5135,
+ "id": 5227,
"properties": {
"attached": "false",
"rotation": "6",
@@ -40537,7 +40537,7 @@
}
},
{
- "id": 5136,
+ "id": 5228,
"properties": {
"attached": "false",
"rotation": "7",
@@ -40545,7 +40545,7 @@
}
},
{
- "id": 5137,
+ "id": 5229,
"properties": {
"attached": "false",
"rotation": "7",
@@ -40553,7 +40553,7 @@
}
},
{
- "id": 5138,
+ "id": 5230,
"properties": {
"attached": "false",
"rotation": "8",
@@ -40561,7 +40561,7 @@
}
},
{
- "id": 5139,
+ "id": 5231,
"properties": {
"attached": "false",
"rotation": "8",
@@ -40569,7 +40569,7 @@
}
},
{
- "id": 5140,
+ "id": 5232,
"properties": {
"attached": "false",
"rotation": "9",
@@ -40577,7 +40577,7 @@
}
},
{
- "id": 5141,
+ "id": 5233,
"properties": {
"attached": "false",
"rotation": "9",
@@ -40585,7 +40585,7 @@
}
},
{
- "id": 5142,
+ "id": 5234,
"properties": {
"attached": "false",
"rotation": "10",
@@ -40593,7 +40593,7 @@
}
},
{
- "id": 5143,
+ "id": 5235,
"properties": {
"attached": "false",
"rotation": "10",
@@ -40601,7 +40601,7 @@
}
},
{
- "id": 5144,
+ "id": 5236,
"properties": {
"attached": "false",
"rotation": "11",
@@ -40609,7 +40609,7 @@
}
},
{
- "id": 5145,
+ "id": 5237,
"properties": {
"attached": "false",
"rotation": "11",
@@ -40617,7 +40617,7 @@
}
},
{
- "id": 5146,
+ "id": 5238,
"properties": {
"attached": "false",
"rotation": "12",
@@ -40625,7 +40625,7 @@
}
},
{
- "id": 5147,
+ "id": 5239,
"properties": {
"attached": "false",
"rotation": "12",
@@ -40633,7 +40633,7 @@
}
},
{
- "id": 5148,
+ "id": 5240,
"properties": {
"attached": "false",
"rotation": "13",
@@ -40641,7 +40641,7 @@
}
},
{
- "id": 5149,
+ "id": 5241,
"properties": {
"attached": "false",
"rotation": "13",
@@ -40649,7 +40649,7 @@
}
},
{
- "id": 5150,
+ "id": 5242,
"properties": {
"attached": "false",
"rotation": "14",
@@ -40657,7 +40657,7 @@
}
},
{
- "id": 5151,
+ "id": 5243,
"properties": {
"attached": "false",
"rotation": "14",
@@ -40665,7 +40665,7 @@
}
},
{
- "id": 5152,
+ "id": 5244,
"properties": {
"attached": "false",
"rotation": "15",
@@ -40673,7 +40673,7 @@
}
},
{
- "id": 5153,
+ "id": 5245,
"properties": {
"attached": "false",
"rotation": "15",
@@ -40707,160 +40707,160 @@
]
},
"states": [
- {
- "id": 377,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 378,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 379,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 380,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 381,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 382,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 383,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 384,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 385,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 386,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 387,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 388,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 389,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 390,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 391,
- "properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
{
"id": 392,
"properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "true",
+ "waterlogged": "true"
}
},
{
"id": 393,
"properties": {
- "distance": "5",
+ "distance": "1",
"persistent": "true",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 394,
"properties": {
- "distance": "5",
- "persistent": "true",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "false",
+ "waterlogged": "true"
}
},
{
"id": 395,
"properties": {
- "distance": "5",
+ "distance": "1",
"persistent": "false",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 396,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 397,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 398,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 399,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 400,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 401,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 402,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 403,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 404,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 405,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 406,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 407,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 408,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 409,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 410,
+ "properties": {
+ "distance": "5",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 411,
"properties": {
"distance": "5",
"persistent": "false",
@@ -40868,7 +40868,7 @@
}
},
{
- "id": 397,
+ "id": 412,
"properties": {
"distance": "6",
"persistent": "true",
@@ -40876,7 +40876,7 @@
}
},
{
- "id": 398,
+ "id": 413,
"properties": {
"distance": "6",
"persistent": "true",
@@ -40884,7 +40884,7 @@
}
},
{
- "id": 399,
+ "id": 414,
"properties": {
"distance": "6",
"persistent": "false",
@@ -40892,7 +40892,7 @@
}
},
{
- "id": 400,
+ "id": 415,
"properties": {
"distance": "6",
"persistent": "false",
@@ -40900,7 +40900,7 @@
}
},
{
- "id": 401,
+ "id": 416,
"properties": {
"distance": "7",
"persistent": "true",
@@ -40908,7 +40908,7 @@
}
},
{
- "id": 402,
+ "id": 417,
"properties": {
"distance": "7",
"persistent": "true",
@@ -40916,7 +40916,7 @@
}
},
{
- "id": 403,
+ "id": 418,
"properties": {
"distance": "7",
"persistent": "false",
@@ -40925,7 +40925,7 @@
},
{
"default": true,
- "id": 404,
+ "id": 419,
"properties": {
"distance": "7",
"persistent": "false",
@@ -40948,20 +40948,20 @@
},
"states": [
{
- "id": 145,
+ "id": 151,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 146,
+ "id": 152,
"properties": {
"axis": "y"
}
},
{
- "id": 147,
+ "id": 153,
"properties": {
"axis": "z"
}
@@ -40994,14 +40994,14 @@
},
"states": [
{
- "id": 5726,
+ "id": 5890,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5727,
+ "id": 5891,
"properties": {
"powered": "false"
}
@@ -41023,13 +41023,13 @@
"states": [
{
"default": true,
- "id": 35,
+ "id": 39,
"properties": {
"stage": "0"
}
},
{
- "id": 36,
+ "id": 40,
"properties": {
"stage": "1"
}
@@ -41068,7 +41068,7 @@
},
"states": [
{
- "id": 4430,
+ "id": 4482,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -41076,217 +41076,217 @@
},
{
"default": true,
- "id": 4431,
+ "id": 4483,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 4432,
+ "id": 4484,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 4433,
+ "id": 4485,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 4434,
+ "id": 4486,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 4435,
+ "id": 4487,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 4436,
+ "id": 4488,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 4437,
+ "id": 4489,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 4438,
+ "id": 4490,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 4439,
+ "id": 4491,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 4440,
+ "id": 4492,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 4441,
+ "id": 4493,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 4442,
+ "id": 4494,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 4443,
+ "id": 4495,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 4444,
+ "id": 4496,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 4445,
+ "id": 4497,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 4446,
+ "id": 4498,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 4447,
+ "id": 4499,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 4448,
+ "id": 4500,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 4449,
+ "id": 4501,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 4450,
+ "id": 4502,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 4451,
+ "id": 4503,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 4452,
+ "id": 4504,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 4453,
+ "id": 4505,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 4454,
+ "id": 4506,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 4455,
+ "id": 4507,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 4456,
+ "id": 4508,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 4457,
+ "id": 4509,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 4458,
+ "id": 4510,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 4459,
+ "id": 4511,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 4460,
+ "id": 4512,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 4461,
+ "id": 4513,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -41312,21 +41312,21 @@
},
"states": [
{
- "id": 11192,
+ "id": 11527,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11193,
+ "id": 11528,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11194,
+ "id": 11529,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -41334,21 +41334,21 @@
},
{
"default": true,
- "id": 11195,
+ "id": 11530,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11196,
+ "id": 11531,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11197,
+ "id": 11532,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -41389,7 +41389,7 @@
},
"states": [
{
- "id": 9964,
+ "id": 10219,
"properties": {
"facing": "north",
"half": "top",
@@ -41398,7 +41398,7 @@
}
},
{
- "id": 9965,
+ "id": 10220,
"properties": {
"facing": "north",
"half": "top",
@@ -41407,7 +41407,7 @@
}
},
{
- "id": 9966,
+ "id": 10221,
"properties": {
"facing": "north",
"half": "top",
@@ -41416,7 +41416,7 @@
}
},
{
- "id": 9967,
+ "id": 10222,
"properties": {
"facing": "north",
"half": "top",
@@ -41425,7 +41425,7 @@
}
},
{
- "id": 9968,
+ "id": 10223,
"properties": {
"facing": "north",
"half": "top",
@@ -41434,7 +41434,7 @@
}
},
{
- "id": 9969,
+ "id": 10224,
"properties": {
"facing": "north",
"half": "top",
@@ -41443,7 +41443,7 @@
}
},
{
- "id": 9970,
+ "id": 10225,
"properties": {
"facing": "north",
"half": "top",
@@ -41452,7 +41452,7 @@
}
},
{
- "id": 9971,
+ "id": 10226,
"properties": {
"facing": "north",
"half": "top",
@@ -41461,7 +41461,7 @@
}
},
{
- "id": 9972,
+ "id": 10227,
"properties": {
"facing": "north",
"half": "top",
@@ -41470,7 +41470,7 @@
}
},
{
- "id": 9973,
+ "id": 10228,
"properties": {
"facing": "north",
"half": "top",
@@ -41479,7 +41479,7 @@
}
},
{
- "id": 9974,
+ "id": 10229,
"properties": {
"facing": "north",
"half": "bottom",
@@ -41489,7 +41489,7 @@
},
{
"default": true,
- "id": 9975,
+ "id": 10230,
"properties": {
"facing": "north",
"half": "bottom",
@@ -41498,7 +41498,7 @@
}
},
{
- "id": 9976,
+ "id": 10231,
"properties": {
"facing": "north",
"half": "bottom",
@@ -41507,7 +41507,7 @@
}
},
{
- "id": 9977,
+ "id": 10232,
"properties": {
"facing": "north",
"half": "bottom",
@@ -41516,7 +41516,7 @@
}
},
{
- "id": 9978,
+ "id": 10233,
"properties": {
"facing": "north",
"half": "bottom",
@@ -41525,7 +41525,7 @@
}
},
{
- "id": 9979,
+ "id": 10234,
"properties": {
"facing": "north",
"half": "bottom",
@@ -41534,7 +41534,7 @@
}
},
{
- "id": 9980,
+ "id": 10235,
"properties": {
"facing": "north",
"half": "bottom",
@@ -41543,7 +41543,7 @@
}
},
{
- "id": 9981,
+ "id": 10236,
"properties": {
"facing": "north",
"half": "bottom",
@@ -41552,7 +41552,7 @@
}
},
{
- "id": 9982,
+ "id": 10237,
"properties": {
"facing": "north",
"half": "bottom",
@@ -41561,7 +41561,7 @@
}
},
{
- "id": 9983,
+ "id": 10238,
"properties": {
"facing": "north",
"half": "bottom",
@@ -41570,7 +41570,7 @@
}
},
{
- "id": 9984,
+ "id": 10239,
"properties": {
"facing": "south",
"half": "top",
@@ -41579,7 +41579,7 @@
}
},
{
- "id": 9985,
+ "id": 10240,
"properties": {
"facing": "south",
"half": "top",
@@ -41588,7 +41588,7 @@
}
},
{
- "id": 9986,
+ "id": 10241,
"properties": {
"facing": "south",
"half": "top",
@@ -41597,7 +41597,7 @@
}
},
{
- "id": 9987,
+ "id": 10242,
"properties": {
"facing": "south",
"half": "top",
@@ -41606,7 +41606,7 @@
}
},
{
- "id": 9988,
+ "id": 10243,
"properties": {
"facing": "south",
"half": "top",
@@ -41615,7 +41615,7 @@
}
},
{
- "id": 9989,
+ "id": 10244,
"properties": {
"facing": "south",
"half": "top",
@@ -41624,7 +41624,7 @@
}
},
{
- "id": 9990,
+ "id": 10245,
"properties": {
"facing": "south",
"half": "top",
@@ -41633,7 +41633,7 @@
}
},
{
- "id": 9991,
+ "id": 10246,
"properties": {
"facing": "south",
"half": "top",
@@ -41642,7 +41642,7 @@
}
},
{
- "id": 9992,
+ "id": 10247,
"properties": {
"facing": "south",
"half": "top",
@@ -41651,7 +41651,7 @@
}
},
{
- "id": 9993,
+ "id": 10248,
"properties": {
"facing": "south",
"half": "top",
@@ -41660,7 +41660,7 @@
}
},
{
- "id": 9994,
+ "id": 10249,
"properties": {
"facing": "south",
"half": "bottom",
@@ -41669,7 +41669,7 @@
}
},
{
- "id": 9995,
+ "id": 10250,
"properties": {
"facing": "south",
"half": "bottom",
@@ -41678,7 +41678,7 @@
}
},
{
- "id": 9996,
+ "id": 10251,
"properties": {
"facing": "south",
"half": "bottom",
@@ -41687,7 +41687,7 @@
}
},
{
- "id": 9997,
+ "id": 10252,
"properties": {
"facing": "south",
"half": "bottom",
@@ -41696,7 +41696,7 @@
}
},
{
- "id": 9998,
+ "id": 10253,
"properties": {
"facing": "south",
"half": "bottom",
@@ -41705,7 +41705,7 @@
}
},
{
- "id": 9999,
+ "id": 10254,
"properties": {
"facing": "south",
"half": "bottom",
@@ -41714,7 +41714,7 @@
}
},
{
- "id": 10000,
+ "id": 10255,
"properties": {
"facing": "south",
"half": "bottom",
@@ -41723,7 +41723,7 @@
}
},
{
- "id": 10001,
+ "id": 10256,
"properties": {
"facing": "south",
"half": "bottom",
@@ -41732,7 +41732,7 @@
}
},
{
- "id": 10002,
+ "id": 10257,
"properties": {
"facing": "south",
"half": "bottom",
@@ -41741,7 +41741,7 @@
}
},
{
- "id": 10003,
+ "id": 10258,
"properties": {
"facing": "south",
"half": "bottom",
@@ -41750,7 +41750,7 @@
}
},
{
- "id": 10004,
+ "id": 10259,
"properties": {
"facing": "west",
"half": "top",
@@ -41759,7 +41759,7 @@
}
},
{
- "id": 10005,
+ "id": 10260,
"properties": {
"facing": "west",
"half": "top",
@@ -41768,7 +41768,7 @@
}
},
{
- "id": 10006,
+ "id": 10261,
"properties": {
"facing": "west",
"half": "top",
@@ -41777,7 +41777,7 @@
}
},
{
- "id": 10007,
+ "id": 10262,
"properties": {
"facing": "west",
"half": "top",
@@ -41786,7 +41786,7 @@
}
},
{
- "id": 10008,
+ "id": 10263,
"properties": {
"facing": "west",
"half": "top",
@@ -41795,7 +41795,7 @@
}
},
{
- "id": 10009,
+ "id": 10264,
"properties": {
"facing": "west",
"half": "top",
@@ -41804,7 +41804,7 @@
}
},
{
- "id": 10010,
+ "id": 10265,
"properties": {
"facing": "west",
"half": "top",
@@ -41813,7 +41813,7 @@
}
},
{
- "id": 10011,
+ "id": 10266,
"properties": {
"facing": "west",
"half": "top",
@@ -41822,7 +41822,7 @@
}
},
{
- "id": 10012,
+ "id": 10267,
"properties": {
"facing": "west",
"half": "top",
@@ -41831,7 +41831,7 @@
}
},
{
- "id": 10013,
+ "id": 10268,
"properties": {
"facing": "west",
"half": "top",
@@ -41840,7 +41840,7 @@
}
},
{
- "id": 10014,
+ "id": 10269,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41849,7 +41849,7 @@
}
},
{
- "id": 10015,
+ "id": 10270,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41858,7 +41858,7 @@
}
},
{
- "id": 10016,
+ "id": 10271,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41867,7 +41867,7 @@
}
},
{
- "id": 10017,
+ "id": 10272,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41876,7 +41876,7 @@
}
},
{
- "id": 10018,
+ "id": 10273,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41885,7 +41885,7 @@
}
},
{
- "id": 10019,
+ "id": 10274,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41894,7 +41894,7 @@
}
},
{
- "id": 10020,
+ "id": 10275,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41903,7 +41903,7 @@
}
},
{
- "id": 10021,
+ "id": 10276,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41912,7 +41912,7 @@
}
},
{
- "id": 10022,
+ "id": 10277,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41921,7 +41921,7 @@
}
},
{
- "id": 10023,
+ "id": 10278,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41930,7 +41930,7 @@
}
},
{
- "id": 10024,
+ "id": 10279,
"properties": {
"facing": "east",
"half": "top",
@@ -41939,7 +41939,7 @@
}
},
{
- "id": 10025,
+ "id": 10280,
"properties": {
"facing": "east",
"half": "top",
@@ -41948,7 +41948,7 @@
}
},
{
- "id": 10026,
+ "id": 10281,
"properties": {
"facing": "east",
"half": "top",
@@ -41957,7 +41957,7 @@
}
},
{
- "id": 10027,
+ "id": 10282,
"properties": {
"facing": "east",
"half": "top",
@@ -41966,7 +41966,7 @@
}
},
{
- "id": 10028,
+ "id": 10283,
"properties": {
"facing": "east",
"half": "top",
@@ -41975,7 +41975,7 @@
}
},
{
- "id": 10029,
+ "id": 10284,
"properties": {
"facing": "east",
"half": "top",
@@ -41984,7 +41984,7 @@
}
},
{
- "id": 10030,
+ "id": 10285,
"properties": {
"facing": "east",
"half": "top",
@@ -41993,7 +41993,7 @@
}
},
{
- "id": 10031,
+ "id": 10286,
"properties": {
"facing": "east",
"half": "top",
@@ -42002,7 +42002,7 @@
}
},
{
- "id": 10032,
+ "id": 10287,
"properties": {
"facing": "east",
"half": "top",
@@ -42011,7 +42011,7 @@
}
},
{
- "id": 10033,
+ "id": 10288,
"properties": {
"facing": "east",
"half": "top",
@@ -42020,7 +42020,7 @@
}
},
{
- "id": 10034,
+ "id": 10289,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42029,7 +42029,7 @@
}
},
{
- "id": 10035,
+ "id": 10290,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42038,7 +42038,7 @@
}
},
{
- "id": 10036,
+ "id": 10291,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42047,7 +42047,7 @@
}
},
{
- "id": 10037,
+ "id": 10292,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42056,7 +42056,7 @@
}
},
{
- "id": 10038,
+ "id": 10293,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42065,7 +42065,7 @@
}
},
{
- "id": 10039,
+ "id": 10294,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42074,7 +42074,7 @@
}
},
{
- "id": 10040,
+ "id": 10295,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42083,7 +42083,7 @@
}
},
{
- "id": 10041,
+ "id": 10296,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42092,7 +42092,7 @@
}
},
{
- "id": 10042,
+ "id": 10297,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42101,7 +42101,7 @@
}
},
{
- "id": 10043,
+ "id": 10298,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42143,7 +42143,7 @@
},
"states": [
{
- "id": 6281,
+ "id": 6447,
"properties": {
"facing": "north",
"half": "top",
@@ -42153,7 +42153,7 @@
}
},
{
- "id": 6282,
+ "id": 6448,
"properties": {
"facing": "north",
"half": "top",
@@ -42163,7 +42163,7 @@
}
},
{
- "id": 6283,
+ "id": 6449,
"properties": {
"facing": "north",
"half": "top",
@@ -42173,7 +42173,7 @@
}
},
{
- "id": 6284,
+ "id": 6450,
"properties": {
"facing": "north",
"half": "top",
@@ -42183,7 +42183,7 @@
}
},
{
- "id": 6285,
+ "id": 6451,
"properties": {
"facing": "north",
"half": "top",
@@ -42193,7 +42193,7 @@
}
},
{
- "id": 6286,
+ "id": 6452,
"properties": {
"facing": "north",
"half": "top",
@@ -42203,7 +42203,7 @@
}
},
{
- "id": 6287,
+ "id": 6453,
"properties": {
"facing": "north",
"half": "top",
@@ -42213,7 +42213,7 @@
}
},
{
- "id": 6288,
+ "id": 6454,
"properties": {
"facing": "north",
"half": "top",
@@ -42223,7 +42223,7 @@
}
},
{
- "id": 6289,
+ "id": 6455,
"properties": {
"facing": "north",
"half": "bottom",
@@ -42233,7 +42233,7 @@
}
},
{
- "id": 6290,
+ "id": 6456,
"properties": {
"facing": "north",
"half": "bottom",
@@ -42243,7 +42243,7 @@
}
},
{
- "id": 6291,
+ "id": 6457,
"properties": {
"facing": "north",
"half": "bottom",
@@ -42253,7 +42253,7 @@
}
},
{
- "id": 6292,
+ "id": 6458,
"properties": {
"facing": "north",
"half": "bottom",
@@ -42263,7 +42263,7 @@
}
},
{
- "id": 6293,
+ "id": 6459,
"properties": {
"facing": "north",
"half": "bottom",
@@ -42273,7 +42273,7 @@
}
},
{
- "id": 6294,
+ "id": 6460,
"properties": {
"facing": "north",
"half": "bottom",
@@ -42283,7 +42283,7 @@
}
},
{
- "id": 6295,
+ "id": 6461,
"properties": {
"facing": "north",
"half": "bottom",
@@ -42294,7 +42294,7 @@
},
{
"default": true,
- "id": 6296,
+ "id": 6462,
"properties": {
"facing": "north",
"half": "bottom",
@@ -42304,7 +42304,7 @@
}
},
{
- "id": 6297,
+ "id": 6463,
"properties": {
"facing": "south",
"half": "top",
@@ -42314,7 +42314,7 @@
}
},
{
- "id": 6298,
+ "id": 6464,
"properties": {
"facing": "south",
"half": "top",
@@ -42324,7 +42324,7 @@
}
},
{
- "id": 6299,
+ "id": 6465,
"properties": {
"facing": "south",
"half": "top",
@@ -42334,7 +42334,7 @@
}
},
{
- "id": 6300,
+ "id": 6466,
"properties": {
"facing": "south",
"half": "top",
@@ -42344,7 +42344,7 @@
}
},
{
- "id": 6301,
+ "id": 6467,
"properties": {
"facing": "south",
"half": "top",
@@ -42354,7 +42354,7 @@
}
},
{
- "id": 6302,
+ "id": 6468,
"properties": {
"facing": "south",
"half": "top",
@@ -42364,7 +42364,7 @@
}
},
{
- "id": 6303,
+ "id": 6469,
"properties": {
"facing": "south",
"half": "top",
@@ -42374,7 +42374,7 @@
}
},
{
- "id": 6304,
+ "id": 6470,
"properties": {
"facing": "south",
"half": "top",
@@ -42384,7 +42384,7 @@
}
},
{
- "id": 6305,
+ "id": 6471,
"properties": {
"facing": "south",
"half": "bottom",
@@ -42394,7 +42394,7 @@
}
},
{
- "id": 6306,
+ "id": 6472,
"properties": {
"facing": "south",
"half": "bottom",
@@ -42404,7 +42404,7 @@
}
},
{
- "id": 6307,
+ "id": 6473,
"properties": {
"facing": "south",
"half": "bottom",
@@ -42414,7 +42414,7 @@
}
},
{
- "id": 6308,
+ "id": 6474,
"properties": {
"facing": "south",
"half": "bottom",
@@ -42424,7 +42424,7 @@
}
},
{
- "id": 6309,
+ "id": 6475,
"properties": {
"facing": "south",
"half": "bottom",
@@ -42434,7 +42434,7 @@
}
},
{
- "id": 6310,
+ "id": 6476,
"properties": {
"facing": "south",
"half": "bottom",
@@ -42444,7 +42444,7 @@
}
},
{
- "id": 6311,
+ "id": 6477,
"properties": {
"facing": "south",
"half": "bottom",
@@ -42454,7 +42454,7 @@
}
},
{
- "id": 6312,
+ "id": 6478,
"properties": {
"facing": "south",
"half": "bottom",
@@ -42464,7 +42464,7 @@
}
},
{
- "id": 6313,
+ "id": 6479,
"properties": {
"facing": "west",
"half": "top",
@@ -42474,7 +42474,7 @@
}
},
{
- "id": 6314,
+ "id": 6480,
"properties": {
"facing": "west",
"half": "top",
@@ -42484,7 +42484,7 @@
}
},
{
- "id": 6315,
+ "id": 6481,
"properties": {
"facing": "west",
"half": "top",
@@ -42494,7 +42494,7 @@
}
},
{
- "id": 6316,
+ "id": 6482,
"properties": {
"facing": "west",
"half": "top",
@@ -42504,7 +42504,7 @@
}
},
{
- "id": 6317,
+ "id": 6483,
"properties": {
"facing": "west",
"half": "top",
@@ -42514,7 +42514,7 @@
}
},
{
- "id": 6318,
+ "id": 6484,
"properties": {
"facing": "west",
"half": "top",
@@ -42524,7 +42524,7 @@
}
},
{
- "id": 6319,
+ "id": 6485,
"properties": {
"facing": "west",
"half": "top",
@@ -42534,7 +42534,7 @@
}
},
{
- "id": 6320,
+ "id": 6486,
"properties": {
"facing": "west",
"half": "top",
@@ -42544,7 +42544,7 @@
}
},
{
- "id": 6321,
+ "id": 6487,
"properties": {
"facing": "west",
"half": "bottom",
@@ -42554,7 +42554,7 @@
}
},
{
- "id": 6322,
+ "id": 6488,
"properties": {
"facing": "west",
"half": "bottom",
@@ -42564,7 +42564,7 @@
}
},
{
- "id": 6323,
+ "id": 6489,
"properties": {
"facing": "west",
"half": "bottom",
@@ -42574,7 +42574,7 @@
}
},
{
- "id": 6324,
+ "id": 6490,
"properties": {
"facing": "west",
"half": "bottom",
@@ -42584,7 +42584,7 @@
}
},
{
- "id": 6325,
+ "id": 6491,
"properties": {
"facing": "west",
"half": "bottom",
@@ -42594,7 +42594,7 @@
}
},
{
- "id": 6326,
+ "id": 6492,
"properties": {
"facing": "west",
"half": "bottom",
@@ -42604,7 +42604,7 @@
}
},
{
- "id": 6327,
+ "id": 6493,
"properties": {
"facing": "west",
"half": "bottom",
@@ -42614,7 +42614,7 @@
}
},
{
- "id": 6328,
+ "id": 6494,
"properties": {
"facing": "west",
"half": "bottom",
@@ -42624,7 +42624,7 @@
}
},
{
- "id": 6329,
+ "id": 6495,
"properties": {
"facing": "east",
"half": "top",
@@ -42634,7 +42634,7 @@
}
},
{
- "id": 6330,
+ "id": 6496,
"properties": {
"facing": "east",
"half": "top",
@@ -42644,7 +42644,7 @@
}
},
{
- "id": 6331,
+ "id": 6497,
"properties": {
"facing": "east",
"half": "top",
@@ -42654,7 +42654,7 @@
}
},
{
- "id": 6332,
+ "id": 6498,
"properties": {
"facing": "east",
"half": "top",
@@ -42664,7 +42664,7 @@
}
},
{
- "id": 6333,
+ "id": 6499,
"properties": {
"facing": "east",
"half": "top",
@@ -42674,7 +42674,7 @@
}
},
{
- "id": 6334,
+ "id": 6500,
"properties": {
"facing": "east",
"half": "top",
@@ -42684,7 +42684,7 @@
}
},
{
- "id": 6335,
+ "id": 6501,
"properties": {
"facing": "east",
"half": "top",
@@ -42694,7 +42694,7 @@
}
},
{
- "id": 6336,
+ "id": 6502,
"properties": {
"facing": "east",
"half": "top",
@@ -42704,7 +42704,7 @@
}
},
{
- "id": 6337,
+ "id": 6503,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42714,7 +42714,7 @@
}
},
{
- "id": 6338,
+ "id": 6504,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42724,7 +42724,7 @@
}
},
{
- "id": 6339,
+ "id": 6505,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42734,7 +42734,7 @@
}
},
{
- "id": 6340,
+ "id": 6506,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42744,7 +42744,7 @@
}
},
{
- "id": 6341,
+ "id": 6507,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42754,7 +42754,7 @@
}
},
{
- "id": 6342,
+ "id": 6508,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42764,7 +42764,7 @@
}
},
{
- "id": 6343,
+ "id": 6509,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42774,7 +42774,7 @@
}
},
{
- "id": 6344,
+ "id": 6510,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42805,7 +42805,7 @@
},
"states": [
{
- "id": 5570,
+ "id": 5726,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -42813,49 +42813,49 @@
},
{
"default": true,
- "id": 5571,
+ "id": 5727,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5572,
+ "id": 5728,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5573,
+ "id": 5729,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5574,
+ "id": 5730,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5575,
+ "id": 5731,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5576,
+ "id": 5732,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5577,
+ "id": 5733,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -42883,7 +42883,7 @@
},
"states": [
{
- "id": 4794,
+ "id": 4878,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -42891,49 +42891,49 @@
},
{
"default": true,
- "id": 4795,
+ "id": 4879,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4796,
+ "id": 4880,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4797,
+ "id": 4881,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4798,
+ "id": 4882,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4799,
+ "id": 4883,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4800,
+ "id": 4884,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4801,
+ "id": 4885,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -42955,20 +42955,20 @@
},
"states": [
{
- "id": 204,
+ "id": 216,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 205,
+ "id": 217,
"properties": {
"axis": "y"
}
},
{
- "id": 206,
+ "id": 218,
"properties": {
"axis": "z"
}
@@ -42999,7 +42999,7 @@
},
"states": [
{
- "id": 2954,
+ "id": 3006,
"properties": {
"type": "single",
"facing": "north",
@@ -43008,7 +43008,7 @@
},
{
"default": true,
- "id": 2955,
+ "id": 3007,
"properties": {
"type": "single",
"facing": "north",
@@ -43016,7 +43016,7 @@
}
},
{
- "id": 2956,
+ "id": 3008,
"properties": {
"type": "left",
"facing": "north",
@@ -43024,7 +43024,7 @@
}
},
{
- "id": 2957,
+ "id": 3009,
"properties": {
"type": "left",
"facing": "north",
@@ -43032,7 +43032,7 @@
}
},
{
- "id": 2958,
+ "id": 3010,
"properties": {
"type": "right",
"facing": "north",
@@ -43040,7 +43040,7 @@
}
},
{
- "id": 2959,
+ "id": 3011,
"properties": {
"type": "right",
"facing": "north",
@@ -43048,7 +43048,7 @@
}
},
{
- "id": 2960,
+ "id": 3012,
"properties": {
"type": "single",
"facing": "south",
@@ -43056,7 +43056,7 @@
}
},
{
- "id": 2961,
+ "id": 3013,
"properties": {
"type": "single",
"facing": "south",
@@ -43064,7 +43064,7 @@
}
},
{
- "id": 2962,
+ "id": 3014,
"properties": {
"type": "left",
"facing": "south",
@@ -43072,7 +43072,7 @@
}
},
{
- "id": 2963,
+ "id": 3015,
"properties": {
"type": "left",
"facing": "south",
@@ -43080,7 +43080,7 @@
}
},
{
- "id": 2964,
+ "id": 3016,
"properties": {
"type": "right",
"facing": "south",
@@ -43088,7 +43088,7 @@
}
},
{
- "id": 2965,
+ "id": 3017,
"properties": {
"type": "right",
"facing": "south",
@@ -43096,7 +43096,7 @@
}
},
{
- "id": 2966,
+ "id": 3018,
"properties": {
"type": "single",
"facing": "west",
@@ -43104,7 +43104,7 @@
}
},
{
- "id": 2967,
+ "id": 3019,
"properties": {
"type": "single",
"facing": "west",
@@ -43112,7 +43112,7 @@
}
},
{
- "id": 2968,
+ "id": 3020,
"properties": {
"type": "left",
"facing": "west",
@@ -43120,7 +43120,7 @@
}
},
{
- "id": 2969,
+ "id": 3021,
"properties": {
"type": "left",
"facing": "west",
@@ -43128,7 +43128,7 @@
}
},
{
- "id": 2970,
+ "id": 3022,
"properties": {
"type": "right",
"facing": "west",
@@ -43136,7 +43136,7 @@
}
},
{
- "id": 2971,
+ "id": 3023,
"properties": {
"type": "right",
"facing": "west",
@@ -43144,7 +43144,7 @@
}
},
{
- "id": 2972,
+ "id": 3024,
"properties": {
"type": "single",
"facing": "east",
@@ -43152,7 +43152,7 @@
}
},
{
- "id": 2973,
+ "id": 3025,
"properties": {
"type": "single",
"facing": "east",
@@ -43160,7 +43160,7 @@
}
},
{
- "id": 2974,
+ "id": 3026,
"properties": {
"type": "left",
"facing": "east",
@@ -43168,7 +43168,7 @@
}
},
{
- "id": 2975,
+ "id": 3027,
"properties": {
"type": "left",
"facing": "east",
@@ -43176,7 +43176,7 @@
}
},
{
- "id": 2976,
+ "id": 3028,
"properties": {
"type": "right",
"facing": "east",
@@ -43184,7 +43184,7 @@
}
},
{
- "id": 2977,
+ "id": 3029,
"properties": {
"type": "right",
"facing": "east",
@@ -43209,25 +43209,25 @@
"states": [
{
"default": true,
- "id": 9111,
+ "id": 9366,
"properties": {
"facing": "north"
}
},
{
- "id": 9112,
+ "id": 9367,
"properties": {
"facing": "south"
}
},
{
- "id": 9113,
+ "id": 9368,
"properties": {
"facing": "west"
}
},
{
- "id": 9114,
+ "id": 9369,
"properties": {
"facing": "east"
}
@@ -43272,572 +43272,572 @@
]
},
"states": [
- {
- "id": 2097,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2098,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2099,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2100,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2101,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2102,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2103,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2104,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2105,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2106,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2107,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2108,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2109,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2110,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2111,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2112,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2113,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2114,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2115,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2116,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2117,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2118,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2119,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2120,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2121,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2122,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2123,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2124,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2125,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2126,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2127,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2128,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2129,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2130,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2131,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2132,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2133,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2134,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2135,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2136,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2137,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2138,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2139,
- "properties": {
- "facing": "north",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
{
"id": 2140,
"properties": {
"facing": "north",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "true",
- "slot_2_occupied": "false",
+ "slot_2_occupied": "true",
"slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
}
},
{
"id": 2141,
"properties": {
"facing": "north",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
"slot_4_occupied": "true",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2142,
"properties": {
"facing": "north",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
}
},
{
"id": 2143,
"properties": {
"facing": "north",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
"slot_4_occupied": "false",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2144,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2145,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2146,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2147,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2148,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2149,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2150,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2151,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2152,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2153,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2154,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2155,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2156,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2157,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2158,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2159,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2160,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2161,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2162,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2163,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2164,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2165,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2166,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2167,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2168,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2169,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2170,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2171,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2172,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2173,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2174,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2175,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2176,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2177,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2178,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2179,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2180,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2181,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2182,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2183,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2184,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2185,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2186,
+ "properties": {
+ "facing": "north",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2187,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -43849,7 +43849,7 @@
}
},
{
- "id": 2145,
+ "id": 2188,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -43861,7 +43861,7 @@
}
},
{
- "id": 2146,
+ "id": 2189,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -43873,7 +43873,7 @@
}
},
{
- "id": 2147,
+ "id": 2190,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -43885,7 +43885,7 @@
}
},
{
- "id": 2148,
+ "id": 2191,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -43897,7 +43897,7 @@
}
},
{
- "id": 2149,
+ "id": 2192,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -43909,7 +43909,7 @@
}
},
{
- "id": 2150,
+ "id": 2193,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -43921,7 +43921,7 @@
}
},
{
- "id": 2151,
+ "id": 2194,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -43933,7 +43933,7 @@
}
},
{
- "id": 2152,
+ "id": 2195,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -43945,7 +43945,7 @@
}
},
{
- "id": 2153,
+ "id": 2196,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -43957,7 +43957,7 @@
}
},
{
- "id": 2154,
+ "id": 2197,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -43969,7 +43969,7 @@
}
},
{
- "id": 2155,
+ "id": 2198,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -43981,7 +43981,7 @@
}
},
{
- "id": 2156,
+ "id": 2199,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -43993,7 +43993,7 @@
}
},
{
- "id": 2157,
+ "id": 2200,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -44005,7 +44005,7 @@
}
},
{
- "id": 2158,
+ "id": 2201,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -44017,7 +44017,7 @@
}
},
{
- "id": 2159,
+ "id": 2202,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -44030,7 +44030,7 @@
},
{
"default": true,
- "id": 2160,
+ "id": 2203,
"properties": {
"facing": "north",
"slot_0_occupied": "false",
@@ -44041,752 +44041,752 @@
"slot_5_occupied": "false"
}
},
- {
- "id": 2161,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2162,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2163,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2164,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2165,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2166,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2167,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2168,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2169,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2170,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2171,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2172,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2173,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2174,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2175,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2176,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2177,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2178,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2179,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2180,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2181,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2182,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2183,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2184,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2185,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2186,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2187,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2188,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2189,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2190,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2191,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2192,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2193,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2194,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2195,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2196,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2197,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2198,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2199,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2200,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2201,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2202,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2203,
- "properties": {
- "facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
{
"id": 2204,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "true",
- "slot_2_occupied": "false",
+ "slot_2_occupied": "true",
"slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
}
},
{
"id": 2205,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
"slot_4_occupied": "true",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2206,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
}
},
{
"id": 2207,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
"slot_4_occupied": "false",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2208,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "true",
- "slot_2_occupied": "false",
+ "slot_2_occupied": "true",
"slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
}
},
{
"id": 2209,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
- "slot_3_occupied": "true",
+ "slot_3_occupied": "false",
"slot_4_occupied": "true",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2210,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
}
},
{
"id": 2211,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
- "slot_3_occupied": "true",
+ "slot_3_occupied": "false",
"slot_4_occupied": "false",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2212,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
"slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
}
},
{
"id": 2213,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
"slot_4_occupied": "true",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2214,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
}
},
{
"id": 2215,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
"slot_4_occupied": "false",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2216,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
"slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
}
},
{
"id": 2217,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
- "slot_3_occupied": "true",
+ "slot_3_occupied": "false",
"slot_4_occupied": "true",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2218,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
}
},
{
"id": 2219,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
- "slot_3_occupied": "true",
+ "slot_3_occupied": "false",
"slot_4_occupied": "false",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2220,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "false",
- "slot_2_occupied": "false",
+ "slot_2_occupied": "true",
"slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
}
},
{
"id": 2221,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
"slot_4_occupied": "true",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2222,
"properties": {
"facing": "south",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
}
},
{
"id": 2223,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2224,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2225,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2226,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2227,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2228,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2229,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2230,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2231,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2232,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2233,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2234,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2235,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2236,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2237,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2238,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2239,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2240,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2241,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2242,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2243,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2244,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2245,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2246,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2247,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2248,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2249,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2250,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2251,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2252,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2253,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2254,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2255,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2256,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2257,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2258,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2259,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2260,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2261,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2262,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2263,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2264,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2265,
+ "properties": {
+ "facing": "south",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2266,
"properties": {
"facing": "south",
"slot_0_occupied": "false",
@@ -44798,7 +44798,7 @@
}
},
{
- "id": 2224,
+ "id": 2267,
"properties": {
"facing": "south",
"slot_0_occupied": "false",
@@ -44809,752 +44809,752 @@
"slot_5_occupied": "false"
}
},
- {
- "id": 2225,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2226,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2227,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2228,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2229,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2230,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2231,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2232,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2233,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2234,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2235,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2236,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2237,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2238,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2239,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2240,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2241,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2242,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2243,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2244,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2245,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2246,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2247,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2248,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2249,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2250,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2251,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2252,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2253,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2254,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2255,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2256,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2257,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2258,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2259,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2260,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2261,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2262,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2263,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2264,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2265,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2266,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2267,
- "properties": {
- "facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
{
"id": 2268,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "true",
- "slot_2_occupied": "false",
+ "slot_2_occupied": "true",
"slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
}
},
{
"id": 2269,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
"slot_4_occupied": "true",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2270,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
}
},
{
"id": 2271,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
"slot_4_occupied": "false",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2272,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "true",
- "slot_2_occupied": "false",
+ "slot_2_occupied": "true",
"slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
}
},
{
"id": 2273,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
- "slot_3_occupied": "true",
+ "slot_3_occupied": "false",
"slot_4_occupied": "true",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2274,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
}
},
{
"id": 2275,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "true",
- "slot_3_occupied": "true",
+ "slot_3_occupied": "false",
"slot_4_occupied": "false",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2276,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
"slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
}
},
{
"id": 2277,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
"slot_4_occupied": "true",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2278,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
}
},
{
"id": 2279,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
"slot_4_occupied": "false",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2280,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
"slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
}
},
{
"id": 2281,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
- "slot_3_occupied": "true",
+ "slot_3_occupied": "false",
"slot_4_occupied": "true",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2282,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
}
},
{
"id": 2283,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
- "slot_1_occupied": "false",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
"slot_2_occupied": "false",
- "slot_3_occupied": "true",
+ "slot_3_occupied": "false",
"slot_4_occupied": "false",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2284,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "false",
- "slot_2_occupied": "false",
+ "slot_2_occupied": "true",
"slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
}
},
{
"id": 2285,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
"slot_4_occupied": "true",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2286,
"properties": {
"facing": "west",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
}
},
{
"id": 2287,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2288,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2289,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2290,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2291,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2292,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2293,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2294,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2295,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2296,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2297,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2298,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2299,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2300,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2301,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2302,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2303,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2304,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2305,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2306,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2307,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2308,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2309,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2310,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2311,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2312,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2313,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2314,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2315,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2316,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2317,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2318,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2319,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2320,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2321,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2322,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2323,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2324,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2325,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2326,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2327,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2328,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2329,
+ "properties": {
+ "facing": "west",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2330,
"properties": {
"facing": "west",
"slot_0_occupied": "false",
@@ -45566,7 +45566,7 @@
}
},
{
- "id": 2288,
+ "id": 2331,
"properties": {
"facing": "west",
"slot_0_occupied": "false",
@@ -45577,572 +45577,572 @@
"slot_5_occupied": "false"
}
},
- {
- "id": 2289,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2290,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2291,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2292,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2293,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2294,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2295,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2296,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2297,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2298,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2299,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2300,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2301,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2302,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2303,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2304,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2305,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2306,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2307,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2308,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2309,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2310,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2311,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2312,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2313,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2314,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2315,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2316,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2317,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2318,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2319,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2320,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "true",
- "slot_1_occupied": "false",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2321,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2322,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2323,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2324,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2325,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2326,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2327,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2328,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "true",
- "slot_3_occupied": "false",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2329,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "true"
- }
- },
- {
- "id": 2330,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
- }
- },
- {
- "id": 2331,
- "properties": {
- "facing": "east",
- "slot_0_occupied": "false",
- "slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "true"
- }
- },
{
"id": 2332,
"properties": {
"facing": "east",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "true",
- "slot_2_occupied": "false",
+ "slot_2_occupied": "true",
"slot_3_occupied": "true",
- "slot_4_occupied": "false",
- "slot_5_occupied": "false"
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
}
},
{
"id": 2333,
"properties": {
"facing": "east",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
"slot_4_occupied": "true",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2334,
"properties": {
"facing": "east",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
- "slot_4_occupied": "true",
- "slot_5_occupied": "false"
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
}
},
{
"id": 2335,
"properties": {
"facing": "east",
- "slot_0_occupied": "false",
+ "slot_0_occupied": "true",
"slot_1_occupied": "true",
- "slot_2_occupied": "false",
- "slot_3_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
"slot_4_occupied": "false",
- "slot_5_occupied": "true"
+ "slot_5_occupied": "false"
}
},
{
"id": 2336,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2337,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2338,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2339,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2340,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2341,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2342,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2343,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2344,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2345,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2346,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2347,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2348,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2349,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2350,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2351,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2352,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2353,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2354,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2355,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2356,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2357,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2358,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2359,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2360,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2361,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2362,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2363,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "true",
+ "slot_1_occupied": "false",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2364,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2365,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2366,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2367,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2368,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2369,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2370,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2371,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "true",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2372,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2373,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2374,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2375,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "true",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2376,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2377,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "true",
+ "slot_5_occupied": "false"
+ }
+ },
+ {
+ "id": 2378,
+ "properties": {
+ "facing": "east",
+ "slot_0_occupied": "false",
+ "slot_1_occupied": "true",
+ "slot_2_occupied": "false",
+ "slot_3_occupied": "false",
+ "slot_4_occupied": "false",
+ "slot_5_occupied": "true"
+ }
+ },
+ {
+ "id": 2379,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -46154,7 +46154,7 @@
}
},
{
- "id": 2337,
+ "id": 2380,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -46166,7 +46166,7 @@
}
},
{
- "id": 2338,
+ "id": 2381,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -46178,7 +46178,7 @@
}
},
{
- "id": 2339,
+ "id": 2382,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -46190,7 +46190,7 @@
}
},
{
- "id": 2340,
+ "id": 2383,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -46202,7 +46202,7 @@
}
},
{
- "id": 2341,
+ "id": 2384,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -46214,7 +46214,7 @@
}
},
{
- "id": 2342,
+ "id": 2385,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -46226,7 +46226,7 @@
}
},
{
- "id": 2343,
+ "id": 2386,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -46238,7 +46238,7 @@
}
},
{
- "id": 2344,
+ "id": 2387,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -46250,7 +46250,7 @@
}
},
{
- "id": 2345,
+ "id": 2388,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -46262,7 +46262,7 @@
}
},
{
- "id": 2346,
+ "id": 2389,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -46274,7 +46274,7 @@
}
},
{
- "id": 2347,
+ "id": 2390,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -46286,7 +46286,7 @@
}
},
{
- "id": 2348,
+ "id": 2391,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -46298,7 +46298,7 @@
}
},
{
- "id": 2349,
+ "id": 2392,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -46310,7 +46310,7 @@
}
},
{
- "id": 2350,
+ "id": 2393,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -46322,7 +46322,7 @@
}
},
{
- "id": 2351,
+ "id": 2394,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -46334,7 +46334,7 @@
}
},
{
- "id": 2352,
+ "id": 2395,
"properties": {
"facing": "east",
"slot_0_occupied": "false",
@@ -46356,7 +46356,7 @@
"states": [
{
"default": true,
- "id": 22951
+ "id": 23420
}
]
},
@@ -46368,7 +46368,7 @@
"states": [
{
"default": true,
- "id": 26551
+ "id": 27020
}
]
},
@@ -46380,7 +46380,7 @@
"states": [
{
"default": true,
- "id": 20722
+ "id": 21191
}
]
},
@@ -46392,7 +46392,7 @@
"states": [
{
"default": true,
- "id": 19874
+ "id": 20343
}
]
},
@@ -46404,7 +46404,7 @@
"states": [
{
"default": true,
- "id": 9236
+ "id": 9491
}
]
},
@@ -46416,7 +46416,7 @@
"states": [
{
"default": true,
- "id": 11080
+ "id": 11415
}
]
},
@@ -46428,7 +46428,7 @@
"states": [
{
"default": true,
- "id": 536
+ "id": 579
}
]
},
@@ -46440,7 +46440,7 @@
"states": [
{
"default": true,
- "id": 6540
+ "id": 6770
}
]
},
@@ -46452,7 +46452,7 @@
"states": [
{
"default": true,
- "id": 21903
+ "id": 22372
}
]
},
@@ -46464,7 +46464,7 @@
"states": [
{
"default": true,
- "id": 22315
+ "id": 22784
}
]
},
@@ -46487,37 +46487,37 @@
"states": [
{
"default": true,
- "id": 12404,
+ "id": 12873,
"properties": {
"age": "0"
}
},
{
- "id": 12405,
+ "id": 12874,
"properties": {
"age": "1"
}
},
{
- "id": 12406,
+ "id": 12875,
"properties": {
"age": "2"
}
},
{
- "id": 12407,
+ "id": 12876,
"properties": {
"age": "3"
}
},
{
- "id": 12408,
+ "id": 12877,
"properties": {
"age": "4"
}
},
{
- "id": 12409,
+ "id": 12878,
"properties": {
"age": "5"
}
@@ -46557,7 +46557,7 @@
},
"states": [
{
- "id": 12340,
+ "id": 12809,
"properties": {
"down": "true",
"east": "true",
@@ -46568,7 +46568,7 @@
}
},
{
- "id": 12341,
+ "id": 12810,
"properties": {
"down": "true",
"east": "true",
@@ -46579,7 +46579,7 @@
}
},
{
- "id": 12342,
+ "id": 12811,
"properties": {
"down": "true",
"east": "true",
@@ -46590,7 +46590,7 @@
}
},
{
- "id": 12343,
+ "id": 12812,
"properties": {
"down": "true",
"east": "true",
@@ -46601,7 +46601,7 @@
}
},
{
- "id": 12344,
+ "id": 12813,
"properties": {
"down": "true",
"east": "true",
@@ -46612,7 +46612,7 @@
}
},
{
- "id": 12345,
+ "id": 12814,
"properties": {
"down": "true",
"east": "true",
@@ -46623,7 +46623,7 @@
}
},
{
- "id": 12346,
+ "id": 12815,
"properties": {
"down": "true",
"east": "true",
@@ -46634,7 +46634,7 @@
}
},
{
- "id": 12347,
+ "id": 12816,
"properties": {
"down": "true",
"east": "true",
@@ -46645,7 +46645,7 @@
}
},
{
- "id": 12348,
+ "id": 12817,
"properties": {
"down": "true",
"east": "true",
@@ -46656,7 +46656,7 @@
}
},
{
- "id": 12349,
+ "id": 12818,
"properties": {
"down": "true",
"east": "true",
@@ -46667,7 +46667,7 @@
}
},
{
- "id": 12350,
+ "id": 12819,
"properties": {
"down": "true",
"east": "true",
@@ -46678,7 +46678,7 @@
}
},
{
- "id": 12351,
+ "id": 12820,
"properties": {
"down": "true",
"east": "true",
@@ -46689,7 +46689,7 @@
}
},
{
- "id": 12352,
+ "id": 12821,
"properties": {
"down": "true",
"east": "true",
@@ -46700,7 +46700,7 @@
}
},
{
- "id": 12353,
+ "id": 12822,
"properties": {
"down": "true",
"east": "true",
@@ -46711,7 +46711,7 @@
}
},
{
- "id": 12354,
+ "id": 12823,
"properties": {
"down": "true",
"east": "true",
@@ -46722,7 +46722,7 @@
}
},
{
- "id": 12355,
+ "id": 12824,
"properties": {
"down": "true",
"east": "true",
@@ -46733,7 +46733,7 @@
}
},
{
- "id": 12356,
+ "id": 12825,
"properties": {
"down": "true",
"east": "false",
@@ -46744,7 +46744,7 @@
}
},
{
- "id": 12357,
+ "id": 12826,
"properties": {
"down": "true",
"east": "false",
@@ -46755,7 +46755,7 @@
}
},
{
- "id": 12358,
+ "id": 12827,
"properties": {
"down": "true",
"east": "false",
@@ -46766,7 +46766,7 @@
}
},
{
- "id": 12359,
+ "id": 12828,
"properties": {
"down": "true",
"east": "false",
@@ -46777,7 +46777,7 @@
}
},
{
- "id": 12360,
+ "id": 12829,
"properties": {
"down": "true",
"east": "false",
@@ -46788,7 +46788,7 @@
}
},
{
- "id": 12361,
+ "id": 12830,
"properties": {
"down": "true",
"east": "false",
@@ -46799,7 +46799,7 @@
}
},
{
- "id": 12362,
+ "id": 12831,
"properties": {
"down": "true",
"east": "false",
@@ -46810,7 +46810,7 @@
}
},
{
- "id": 12363,
+ "id": 12832,
"properties": {
"down": "true",
"east": "false",
@@ -46821,7 +46821,7 @@
}
},
{
- "id": 12364,
+ "id": 12833,
"properties": {
"down": "true",
"east": "false",
@@ -46832,7 +46832,7 @@
}
},
{
- "id": 12365,
+ "id": 12834,
"properties": {
"down": "true",
"east": "false",
@@ -46843,7 +46843,7 @@
}
},
{
- "id": 12366,
+ "id": 12835,
"properties": {
"down": "true",
"east": "false",
@@ -46854,7 +46854,7 @@
}
},
{
- "id": 12367,
+ "id": 12836,
"properties": {
"down": "true",
"east": "false",
@@ -46865,7 +46865,7 @@
}
},
{
- "id": 12368,
+ "id": 12837,
"properties": {
"down": "true",
"east": "false",
@@ -46876,7 +46876,7 @@
}
},
{
- "id": 12369,
+ "id": 12838,
"properties": {
"down": "true",
"east": "false",
@@ -46887,7 +46887,7 @@
}
},
{
- "id": 12370,
+ "id": 12839,
"properties": {
"down": "true",
"east": "false",
@@ -46898,7 +46898,7 @@
}
},
{
- "id": 12371,
+ "id": 12840,
"properties": {
"down": "true",
"east": "false",
@@ -46909,7 +46909,7 @@
}
},
{
- "id": 12372,
+ "id": 12841,
"properties": {
"down": "false",
"east": "true",
@@ -46920,7 +46920,7 @@
}
},
{
- "id": 12373,
+ "id": 12842,
"properties": {
"down": "false",
"east": "true",
@@ -46931,7 +46931,7 @@
}
},
{
- "id": 12374,
+ "id": 12843,
"properties": {
"down": "false",
"east": "true",
@@ -46942,7 +46942,7 @@
}
},
{
- "id": 12375,
+ "id": 12844,
"properties": {
"down": "false",
"east": "true",
@@ -46953,7 +46953,7 @@
}
},
{
- "id": 12376,
+ "id": 12845,
"properties": {
"down": "false",
"east": "true",
@@ -46964,7 +46964,7 @@
}
},
{
- "id": 12377,
+ "id": 12846,
"properties": {
"down": "false",
"east": "true",
@@ -46975,7 +46975,7 @@
}
},
{
- "id": 12378,
+ "id": 12847,
"properties": {
"down": "false",
"east": "true",
@@ -46986,7 +46986,7 @@
}
},
{
- "id": 12379,
+ "id": 12848,
"properties": {
"down": "false",
"east": "true",
@@ -46997,7 +46997,7 @@
}
},
{
- "id": 12380,
+ "id": 12849,
"properties": {
"down": "false",
"east": "true",
@@ -47008,7 +47008,7 @@
}
},
{
- "id": 12381,
+ "id": 12850,
"properties": {
"down": "false",
"east": "true",
@@ -47019,7 +47019,7 @@
}
},
{
- "id": 12382,
+ "id": 12851,
"properties": {
"down": "false",
"east": "true",
@@ -47030,7 +47030,7 @@
}
},
{
- "id": 12383,
+ "id": 12852,
"properties": {
"down": "false",
"east": "true",
@@ -47041,7 +47041,7 @@
}
},
{
- "id": 12384,
+ "id": 12853,
"properties": {
"down": "false",
"east": "true",
@@ -47052,7 +47052,7 @@
}
},
{
- "id": 12385,
+ "id": 12854,
"properties": {
"down": "false",
"east": "true",
@@ -47063,7 +47063,7 @@
}
},
{
- "id": 12386,
+ "id": 12855,
"properties": {
"down": "false",
"east": "true",
@@ -47074,7 +47074,7 @@
}
},
{
- "id": 12387,
+ "id": 12856,
"properties": {
"down": "false",
"east": "true",
@@ -47085,7 +47085,7 @@
}
},
{
- "id": 12388,
+ "id": 12857,
"properties": {
"down": "false",
"east": "false",
@@ -47096,7 +47096,7 @@
}
},
{
- "id": 12389,
+ "id": 12858,
"properties": {
"down": "false",
"east": "false",
@@ -47107,7 +47107,7 @@
}
},
{
- "id": 12390,
+ "id": 12859,
"properties": {
"down": "false",
"east": "false",
@@ -47118,7 +47118,7 @@
}
},
{
- "id": 12391,
+ "id": 12860,
"properties": {
"down": "false",
"east": "false",
@@ -47129,7 +47129,7 @@
}
},
{
- "id": 12392,
+ "id": 12861,
"properties": {
"down": "false",
"east": "false",
@@ -47140,7 +47140,7 @@
}
},
{
- "id": 12393,
+ "id": 12862,
"properties": {
"down": "false",
"east": "false",
@@ -47151,7 +47151,7 @@
}
},
{
- "id": 12394,
+ "id": 12863,
"properties": {
"down": "false",
"east": "false",
@@ -47162,7 +47162,7 @@
}
},
{
- "id": 12395,
+ "id": 12864,
"properties": {
"down": "false",
"east": "false",
@@ -47173,7 +47173,7 @@
}
},
{
- "id": 12396,
+ "id": 12865,
"properties": {
"down": "false",
"east": "false",
@@ -47184,7 +47184,7 @@
}
},
{
- "id": 12397,
+ "id": 12866,
"properties": {
"down": "false",
"east": "false",
@@ -47195,7 +47195,7 @@
}
},
{
- "id": 12398,
+ "id": 12867,
"properties": {
"down": "false",
"east": "false",
@@ -47206,7 +47206,7 @@
}
},
{
- "id": 12399,
+ "id": 12868,
"properties": {
"down": "false",
"east": "false",
@@ -47217,7 +47217,7 @@
}
},
{
- "id": 12400,
+ "id": 12869,
"properties": {
"down": "false",
"east": "false",
@@ -47228,7 +47228,7 @@
}
},
{
- "id": 12401,
+ "id": 12870,
"properties": {
"down": "false",
"east": "false",
@@ -47239,7 +47239,7 @@
}
},
{
- "id": 12402,
+ "id": 12871,
"properties": {
"down": "false",
"east": "false",
@@ -47251,7 +47251,7 @@
},
{
"default": true,
- "id": 12403,
+ "id": 12872,
"properties": {
"down": "false",
"east": "false",
@@ -47271,7 +47271,7 @@
"states": [
{
"default": true,
- "id": 5798
+ "id": 5964
}
]
},
@@ -47283,7 +47283,7 @@
"states": [
{
"default": true,
- "id": 10745
+ "id": 11080
}
]
},
@@ -47300,7 +47300,7 @@
"states": [
{
"default": true,
- "id": 127
+ "id": 133
}
]
},
@@ -47324,7 +47324,7 @@
"states": [
{
"default": true,
- "id": 24907
+ "id": 25376
}
]
},
@@ -47346,21 +47346,21 @@
},
"states": [
{
- "id": 24988,
+ "id": 25457,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 24989,
+ "id": 25458,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 24990,
+ "id": 25459,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -47368,21 +47368,21 @@
},
{
"default": true,
- "id": 24991,
+ "id": 25460,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 24992,
+ "id": 25461,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 24993,
+ "id": 25462,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -47423,7 +47423,7 @@
},
"states": [
{
- "id": 24908,
+ "id": 25377,
"properties": {
"facing": "north",
"half": "top",
@@ -47432,7 +47432,7 @@
}
},
{
- "id": 24909,
+ "id": 25378,
"properties": {
"facing": "north",
"half": "top",
@@ -47441,7 +47441,7 @@
}
},
{
- "id": 24910,
+ "id": 25379,
"properties": {
"facing": "north",
"half": "top",
@@ -47450,7 +47450,7 @@
}
},
{
- "id": 24911,
+ "id": 25380,
"properties": {
"facing": "north",
"half": "top",
@@ -47459,7 +47459,7 @@
}
},
{
- "id": 24912,
+ "id": 25381,
"properties": {
"facing": "north",
"half": "top",
@@ -47468,7 +47468,7 @@
}
},
{
- "id": 24913,
+ "id": 25382,
"properties": {
"facing": "north",
"half": "top",
@@ -47477,7 +47477,7 @@
}
},
{
- "id": 24914,
+ "id": 25383,
"properties": {
"facing": "north",
"half": "top",
@@ -47486,7 +47486,7 @@
}
},
{
- "id": 24915,
+ "id": 25384,
"properties": {
"facing": "north",
"half": "top",
@@ -47495,7 +47495,7 @@
}
},
{
- "id": 24916,
+ "id": 25385,
"properties": {
"facing": "north",
"half": "top",
@@ -47504,7 +47504,7 @@
}
},
{
- "id": 24917,
+ "id": 25386,
"properties": {
"facing": "north",
"half": "top",
@@ -47513,7 +47513,7 @@
}
},
{
- "id": 24918,
+ "id": 25387,
"properties": {
"facing": "north",
"half": "bottom",
@@ -47523,7 +47523,7 @@
},
{
"default": true,
- "id": 24919,
+ "id": 25388,
"properties": {
"facing": "north",
"half": "bottom",
@@ -47532,7 +47532,7 @@
}
},
{
- "id": 24920,
+ "id": 25389,
"properties": {
"facing": "north",
"half": "bottom",
@@ -47541,7 +47541,7 @@
}
},
{
- "id": 24921,
+ "id": 25390,
"properties": {
"facing": "north",
"half": "bottom",
@@ -47550,7 +47550,7 @@
}
},
{
- "id": 24922,
+ "id": 25391,
"properties": {
"facing": "north",
"half": "bottom",
@@ -47559,7 +47559,7 @@
}
},
{
- "id": 24923,
+ "id": 25392,
"properties": {
"facing": "north",
"half": "bottom",
@@ -47568,7 +47568,7 @@
}
},
{
- "id": 24924,
+ "id": 25393,
"properties": {
"facing": "north",
"half": "bottom",
@@ -47577,7 +47577,7 @@
}
},
{
- "id": 24925,
+ "id": 25394,
"properties": {
"facing": "north",
"half": "bottom",
@@ -47586,7 +47586,7 @@
}
},
{
- "id": 24926,
+ "id": 25395,
"properties": {
"facing": "north",
"half": "bottom",
@@ -47595,7 +47595,7 @@
}
},
{
- "id": 24927,
+ "id": 25396,
"properties": {
"facing": "north",
"half": "bottom",
@@ -47604,7 +47604,7 @@
}
},
{
- "id": 24928,
+ "id": 25397,
"properties": {
"facing": "south",
"half": "top",
@@ -47613,7 +47613,7 @@
}
},
{
- "id": 24929,
+ "id": 25398,
"properties": {
"facing": "south",
"half": "top",
@@ -47622,7 +47622,7 @@
}
},
{
- "id": 24930,
+ "id": 25399,
"properties": {
"facing": "south",
"half": "top",
@@ -47631,7 +47631,7 @@
}
},
{
- "id": 24931,
+ "id": 25400,
"properties": {
"facing": "south",
"half": "top",
@@ -47640,7 +47640,7 @@
}
},
{
- "id": 24932,
+ "id": 25401,
"properties": {
"facing": "south",
"half": "top",
@@ -47649,7 +47649,7 @@
}
},
{
- "id": 24933,
+ "id": 25402,
"properties": {
"facing": "south",
"half": "top",
@@ -47658,7 +47658,7 @@
}
},
{
- "id": 24934,
+ "id": 25403,
"properties": {
"facing": "south",
"half": "top",
@@ -47667,7 +47667,7 @@
}
},
{
- "id": 24935,
+ "id": 25404,
"properties": {
"facing": "south",
"half": "top",
@@ -47676,7 +47676,7 @@
}
},
{
- "id": 24936,
+ "id": 25405,
"properties": {
"facing": "south",
"half": "top",
@@ -47685,7 +47685,7 @@
}
},
{
- "id": 24937,
+ "id": 25406,
"properties": {
"facing": "south",
"half": "top",
@@ -47694,7 +47694,7 @@
}
},
{
- "id": 24938,
+ "id": 25407,
"properties": {
"facing": "south",
"half": "bottom",
@@ -47703,7 +47703,7 @@
}
},
{
- "id": 24939,
+ "id": 25408,
"properties": {
"facing": "south",
"half": "bottom",
@@ -47712,7 +47712,7 @@
}
},
{
- "id": 24940,
+ "id": 25409,
"properties": {
"facing": "south",
"half": "bottom",
@@ -47721,7 +47721,7 @@
}
},
{
- "id": 24941,
+ "id": 25410,
"properties": {
"facing": "south",
"half": "bottom",
@@ -47730,7 +47730,7 @@
}
},
{
- "id": 24942,
+ "id": 25411,
"properties": {
"facing": "south",
"half": "bottom",
@@ -47739,7 +47739,7 @@
}
},
{
- "id": 24943,
+ "id": 25412,
"properties": {
"facing": "south",
"half": "bottom",
@@ -47748,7 +47748,7 @@
}
},
{
- "id": 24944,
+ "id": 25413,
"properties": {
"facing": "south",
"half": "bottom",
@@ -47757,7 +47757,7 @@
}
},
{
- "id": 24945,
+ "id": 25414,
"properties": {
"facing": "south",
"half": "bottom",
@@ -47766,7 +47766,7 @@
}
},
{
- "id": 24946,
+ "id": 25415,
"properties": {
"facing": "south",
"half": "bottom",
@@ -47775,7 +47775,7 @@
}
},
{
- "id": 24947,
+ "id": 25416,
"properties": {
"facing": "south",
"half": "bottom",
@@ -47784,7 +47784,7 @@
}
},
{
- "id": 24948,
+ "id": 25417,
"properties": {
"facing": "west",
"half": "top",
@@ -47793,7 +47793,7 @@
}
},
{
- "id": 24949,
+ "id": 25418,
"properties": {
"facing": "west",
"half": "top",
@@ -47802,7 +47802,7 @@
}
},
{
- "id": 24950,
+ "id": 25419,
"properties": {
"facing": "west",
"half": "top",
@@ -47811,7 +47811,7 @@
}
},
{
- "id": 24951,
+ "id": 25420,
"properties": {
"facing": "west",
"half": "top",
@@ -47820,7 +47820,7 @@
}
},
{
- "id": 24952,
+ "id": 25421,
"properties": {
"facing": "west",
"half": "top",
@@ -47829,7 +47829,7 @@
}
},
{
- "id": 24953,
+ "id": 25422,
"properties": {
"facing": "west",
"half": "top",
@@ -47838,7 +47838,7 @@
}
},
{
- "id": 24954,
+ "id": 25423,
"properties": {
"facing": "west",
"half": "top",
@@ -47847,7 +47847,7 @@
}
},
{
- "id": 24955,
+ "id": 25424,
"properties": {
"facing": "west",
"half": "top",
@@ -47856,7 +47856,7 @@
}
},
{
- "id": 24956,
+ "id": 25425,
"properties": {
"facing": "west",
"half": "top",
@@ -47865,7 +47865,7 @@
}
},
{
- "id": 24957,
+ "id": 25426,
"properties": {
"facing": "west",
"half": "top",
@@ -47874,7 +47874,7 @@
}
},
{
- "id": 24958,
+ "id": 25427,
"properties": {
"facing": "west",
"half": "bottom",
@@ -47883,7 +47883,7 @@
}
},
{
- "id": 24959,
+ "id": 25428,
"properties": {
"facing": "west",
"half": "bottom",
@@ -47892,7 +47892,7 @@
}
},
{
- "id": 24960,
+ "id": 25429,
"properties": {
"facing": "west",
"half": "bottom",
@@ -47901,7 +47901,7 @@
}
},
{
- "id": 24961,
+ "id": 25430,
"properties": {
"facing": "west",
"half": "bottom",
@@ -47910,7 +47910,7 @@
}
},
{
- "id": 24962,
+ "id": 25431,
"properties": {
"facing": "west",
"half": "bottom",
@@ -47919,7 +47919,7 @@
}
},
{
- "id": 24963,
+ "id": 25432,
"properties": {
"facing": "west",
"half": "bottom",
@@ -47928,7 +47928,7 @@
}
},
{
- "id": 24964,
+ "id": 25433,
"properties": {
"facing": "west",
"half": "bottom",
@@ -47937,7 +47937,7 @@
}
},
{
- "id": 24965,
+ "id": 25434,
"properties": {
"facing": "west",
"half": "bottom",
@@ -47946,7 +47946,7 @@
}
},
{
- "id": 24966,
+ "id": 25435,
"properties": {
"facing": "west",
"half": "bottom",
@@ -47955,7 +47955,7 @@
}
},
{
- "id": 24967,
+ "id": 25436,
"properties": {
"facing": "west",
"half": "bottom",
@@ -47964,7 +47964,7 @@
}
},
{
- "id": 24968,
+ "id": 25437,
"properties": {
"facing": "east",
"half": "top",
@@ -47973,7 +47973,7 @@
}
},
{
- "id": 24969,
+ "id": 25438,
"properties": {
"facing": "east",
"half": "top",
@@ -47982,7 +47982,7 @@
}
},
{
- "id": 24970,
+ "id": 25439,
"properties": {
"facing": "east",
"half": "top",
@@ -47991,7 +47991,7 @@
}
},
{
- "id": 24971,
+ "id": 25440,
"properties": {
"facing": "east",
"half": "top",
@@ -48000,7 +48000,7 @@
}
},
{
- "id": 24972,
+ "id": 25441,
"properties": {
"facing": "east",
"half": "top",
@@ -48009,7 +48009,7 @@
}
},
{
- "id": 24973,
+ "id": 25442,
"properties": {
"facing": "east",
"half": "top",
@@ -48018,7 +48018,7 @@
}
},
{
- "id": 24974,
+ "id": 25443,
"properties": {
"facing": "east",
"half": "top",
@@ -48027,7 +48027,7 @@
}
},
{
- "id": 24975,
+ "id": 25444,
"properties": {
"facing": "east",
"half": "top",
@@ -48036,7 +48036,7 @@
}
},
{
- "id": 24976,
+ "id": 25445,
"properties": {
"facing": "east",
"half": "top",
@@ -48045,7 +48045,7 @@
}
},
{
- "id": 24977,
+ "id": 25446,
"properties": {
"facing": "east",
"half": "top",
@@ -48054,7 +48054,7 @@
}
},
{
- "id": 24978,
+ "id": 25447,
"properties": {
"facing": "east",
"half": "bottom",
@@ -48063,7 +48063,7 @@
}
},
{
- "id": 24979,
+ "id": 25448,
"properties": {
"facing": "east",
"half": "bottom",
@@ -48072,7 +48072,7 @@
}
},
{
- "id": 24980,
+ "id": 25449,
"properties": {
"facing": "east",
"half": "bottom",
@@ -48081,7 +48081,7 @@
}
},
{
- "id": 24981,
+ "id": 25450,
"properties": {
"facing": "east",
"half": "bottom",
@@ -48090,7 +48090,7 @@
}
},
{
- "id": 24982,
+ "id": 25451,
"properties": {
"facing": "east",
"half": "bottom",
@@ -48099,7 +48099,7 @@
}
},
{
- "id": 24983,
+ "id": 25452,
"properties": {
"facing": "east",
"half": "bottom",
@@ -48108,7 +48108,7 @@
}
},
{
- "id": 24984,
+ "id": 25453,
"properties": {
"facing": "east",
"half": "bottom",
@@ -48117,7 +48117,7 @@
}
},
{
- "id": 24985,
+ "id": 25454,
"properties": {
"facing": "east",
"half": "bottom",
@@ -48126,7 +48126,7 @@
}
},
{
- "id": 24986,
+ "id": 25455,
"properties": {
"facing": "east",
"half": "bottom",
@@ -48135,7 +48135,7 @@
}
},
{
- "id": 24987,
+ "id": 25456,
"properties": {
"facing": "east",
"half": "bottom",
@@ -48182,7 +48182,7 @@
},
"states": [
{
- "id": 24994,
+ "id": 25463,
"properties": {
"east": "none",
"north": "none",
@@ -48193,7 +48193,7 @@
}
},
{
- "id": 24995,
+ "id": 25464,
"properties": {
"east": "none",
"north": "none",
@@ -48204,7 +48204,7 @@
}
},
{
- "id": 24996,
+ "id": 25465,
"properties": {
"east": "none",
"north": "none",
@@ -48216,7 +48216,7 @@
},
{
"default": true,
- "id": 24997,
+ "id": 25466,
"properties": {
"east": "none",
"north": "none",
@@ -48227,7 +48227,7 @@
}
},
{
- "id": 24998,
+ "id": 25467,
"properties": {
"east": "none",
"north": "none",
@@ -48238,7 +48238,7 @@
}
},
{
- "id": 24999,
+ "id": 25468,
"properties": {
"east": "none",
"north": "none",
@@ -48249,7 +48249,7 @@
}
},
{
- "id": 25000,
+ "id": 25469,
"properties": {
"east": "none",
"north": "none",
@@ -48260,7 +48260,7 @@
}
},
{
- "id": 25001,
+ "id": 25470,
"properties": {
"east": "none",
"north": "none",
@@ -48271,7 +48271,7 @@
}
},
{
- "id": 25002,
+ "id": 25471,
"properties": {
"east": "none",
"north": "none",
@@ -48282,7 +48282,7 @@
}
},
{
- "id": 25003,
+ "id": 25472,
"properties": {
"east": "none",
"north": "none",
@@ -48293,7 +48293,7 @@
}
},
{
- "id": 25004,
+ "id": 25473,
"properties": {
"east": "none",
"north": "none",
@@ -48304,7 +48304,7 @@
}
},
{
- "id": 25005,
+ "id": 25474,
"properties": {
"east": "none",
"north": "none",
@@ -48315,7 +48315,7 @@
}
},
{
- "id": 25006,
+ "id": 25475,
"properties": {
"east": "none",
"north": "none",
@@ -48326,7 +48326,7 @@
}
},
{
- "id": 25007,
+ "id": 25476,
"properties": {
"east": "none",
"north": "none",
@@ -48337,7 +48337,7 @@
}
},
{
- "id": 25008,
+ "id": 25477,
"properties": {
"east": "none",
"north": "none",
@@ -48348,7 +48348,7 @@
}
},
{
- "id": 25009,
+ "id": 25478,
"properties": {
"east": "none",
"north": "none",
@@ -48359,7 +48359,7 @@
}
},
{
- "id": 25010,
+ "id": 25479,
"properties": {
"east": "none",
"north": "none",
@@ -48370,7 +48370,7 @@
}
},
{
- "id": 25011,
+ "id": 25480,
"properties": {
"east": "none",
"north": "none",
@@ -48381,7 +48381,7 @@
}
},
{
- "id": 25012,
+ "id": 25481,
"properties": {
"east": "none",
"north": "none",
@@ -48392,7 +48392,7 @@
}
},
{
- "id": 25013,
+ "id": 25482,
"properties": {
"east": "none",
"north": "none",
@@ -48403,7 +48403,7 @@
}
},
{
- "id": 25014,
+ "id": 25483,
"properties": {
"east": "none",
"north": "none",
@@ -48414,7 +48414,7 @@
}
},
{
- "id": 25015,
+ "id": 25484,
"properties": {
"east": "none",
"north": "none",
@@ -48425,7 +48425,7 @@
}
},
{
- "id": 25016,
+ "id": 25485,
"properties": {
"east": "none",
"north": "none",
@@ -48436,7 +48436,7 @@
}
},
{
- "id": 25017,
+ "id": 25486,
"properties": {
"east": "none",
"north": "none",
@@ -48447,7 +48447,7 @@
}
},
{
- "id": 25018,
+ "id": 25487,
"properties": {
"east": "none",
"north": "none",
@@ -48458,7 +48458,7 @@
}
},
{
- "id": 25019,
+ "id": 25488,
"properties": {
"east": "none",
"north": "none",
@@ -48469,7 +48469,7 @@
}
},
{
- "id": 25020,
+ "id": 25489,
"properties": {
"east": "none",
"north": "none",
@@ -48480,7 +48480,7 @@
}
},
{
- "id": 25021,
+ "id": 25490,
"properties": {
"east": "none",
"north": "none",
@@ -48491,7 +48491,7 @@
}
},
{
- "id": 25022,
+ "id": 25491,
"properties": {
"east": "none",
"north": "none",
@@ -48502,7 +48502,7 @@
}
},
{
- "id": 25023,
+ "id": 25492,
"properties": {
"east": "none",
"north": "none",
@@ -48513,7 +48513,7 @@
}
},
{
- "id": 25024,
+ "id": 25493,
"properties": {
"east": "none",
"north": "none",
@@ -48524,7 +48524,7 @@
}
},
{
- "id": 25025,
+ "id": 25494,
"properties": {
"east": "none",
"north": "none",
@@ -48535,7 +48535,7 @@
}
},
{
- "id": 25026,
+ "id": 25495,
"properties": {
"east": "none",
"north": "none",
@@ -48546,7 +48546,7 @@
}
},
{
- "id": 25027,
+ "id": 25496,
"properties": {
"east": "none",
"north": "none",
@@ -48557,7 +48557,7 @@
}
},
{
- "id": 25028,
+ "id": 25497,
"properties": {
"east": "none",
"north": "none",
@@ -48568,7 +48568,7 @@
}
},
{
- "id": 25029,
+ "id": 25498,
"properties": {
"east": "none",
"north": "none",
@@ -48579,7 +48579,7 @@
}
},
{
- "id": 25030,
+ "id": 25499,
"properties": {
"east": "none",
"north": "low",
@@ -48590,7 +48590,7 @@
}
},
{
- "id": 25031,
+ "id": 25500,
"properties": {
"east": "none",
"north": "low",
@@ -48601,7 +48601,7 @@
}
},
{
- "id": 25032,
+ "id": 25501,
"properties": {
"east": "none",
"north": "low",
@@ -48612,7 +48612,7 @@
}
},
{
- "id": 25033,
+ "id": 25502,
"properties": {
"east": "none",
"north": "low",
@@ -48623,7 +48623,7 @@
}
},
{
- "id": 25034,
+ "id": 25503,
"properties": {
"east": "none",
"north": "low",
@@ -48634,7 +48634,7 @@
}
},
{
- "id": 25035,
+ "id": 25504,
"properties": {
"east": "none",
"north": "low",
@@ -48645,7 +48645,7 @@
}
},
{
- "id": 25036,
+ "id": 25505,
"properties": {
"east": "none",
"north": "low",
@@ -48656,7 +48656,7 @@
}
},
{
- "id": 25037,
+ "id": 25506,
"properties": {
"east": "none",
"north": "low",
@@ -48667,7 +48667,7 @@
}
},
{
- "id": 25038,
+ "id": 25507,
"properties": {
"east": "none",
"north": "low",
@@ -48678,7 +48678,7 @@
}
},
{
- "id": 25039,
+ "id": 25508,
"properties": {
"east": "none",
"north": "low",
@@ -48689,7 +48689,7 @@
}
},
{
- "id": 25040,
+ "id": 25509,
"properties": {
"east": "none",
"north": "low",
@@ -48700,7 +48700,7 @@
}
},
{
- "id": 25041,
+ "id": 25510,
"properties": {
"east": "none",
"north": "low",
@@ -48711,7 +48711,7 @@
}
},
{
- "id": 25042,
+ "id": 25511,
"properties": {
"east": "none",
"north": "low",
@@ -48722,7 +48722,7 @@
}
},
{
- "id": 25043,
+ "id": 25512,
"properties": {
"east": "none",
"north": "low",
@@ -48733,7 +48733,7 @@
}
},
{
- "id": 25044,
+ "id": 25513,
"properties": {
"east": "none",
"north": "low",
@@ -48744,7 +48744,7 @@
}
},
{
- "id": 25045,
+ "id": 25514,
"properties": {
"east": "none",
"north": "low",
@@ -48755,7 +48755,7 @@
}
},
{
- "id": 25046,
+ "id": 25515,
"properties": {
"east": "none",
"north": "low",
@@ -48766,7 +48766,7 @@
}
},
{
- "id": 25047,
+ "id": 25516,
"properties": {
"east": "none",
"north": "low",
@@ -48777,7 +48777,7 @@
}
},
{
- "id": 25048,
+ "id": 25517,
"properties": {
"east": "none",
"north": "low",
@@ -48788,7 +48788,7 @@
}
},
{
- "id": 25049,
+ "id": 25518,
"properties": {
"east": "none",
"north": "low",
@@ -48799,7 +48799,7 @@
}
},
{
- "id": 25050,
+ "id": 25519,
"properties": {
"east": "none",
"north": "low",
@@ -48810,7 +48810,7 @@
}
},
{
- "id": 25051,
+ "id": 25520,
"properties": {
"east": "none",
"north": "low",
@@ -48821,7 +48821,7 @@
}
},
{
- "id": 25052,
+ "id": 25521,
"properties": {
"east": "none",
"north": "low",
@@ -48832,7 +48832,7 @@
}
},
{
- "id": 25053,
+ "id": 25522,
"properties": {
"east": "none",
"north": "low",
@@ -48843,7 +48843,7 @@
}
},
{
- "id": 25054,
+ "id": 25523,
"properties": {
"east": "none",
"north": "low",
@@ -48854,7 +48854,7 @@
}
},
{
- "id": 25055,
+ "id": 25524,
"properties": {
"east": "none",
"north": "low",
@@ -48865,7 +48865,7 @@
}
},
{
- "id": 25056,
+ "id": 25525,
"properties": {
"east": "none",
"north": "low",
@@ -48876,7 +48876,7 @@
}
},
{
- "id": 25057,
+ "id": 25526,
"properties": {
"east": "none",
"north": "low",
@@ -48887,7 +48887,7 @@
}
},
{
- "id": 25058,
+ "id": 25527,
"properties": {
"east": "none",
"north": "low",
@@ -48898,7 +48898,7 @@
}
},
{
- "id": 25059,
+ "id": 25528,
"properties": {
"east": "none",
"north": "low",
@@ -48909,7 +48909,7 @@
}
},
{
- "id": 25060,
+ "id": 25529,
"properties": {
"east": "none",
"north": "low",
@@ -48920,7 +48920,7 @@
}
},
{
- "id": 25061,
+ "id": 25530,
"properties": {
"east": "none",
"north": "low",
@@ -48931,7 +48931,7 @@
}
},
{
- "id": 25062,
+ "id": 25531,
"properties": {
"east": "none",
"north": "low",
@@ -48942,7 +48942,7 @@
}
},
{
- "id": 25063,
+ "id": 25532,
"properties": {
"east": "none",
"north": "low",
@@ -48953,7 +48953,7 @@
}
},
{
- "id": 25064,
+ "id": 25533,
"properties": {
"east": "none",
"north": "low",
@@ -48964,7 +48964,7 @@
}
},
{
- "id": 25065,
+ "id": 25534,
"properties": {
"east": "none",
"north": "low",
@@ -48975,7 +48975,7 @@
}
},
{
- "id": 25066,
+ "id": 25535,
"properties": {
"east": "none",
"north": "tall",
@@ -48986,7 +48986,7 @@
}
},
{
- "id": 25067,
+ "id": 25536,
"properties": {
"east": "none",
"north": "tall",
@@ -48997,7 +48997,7 @@
}
},
{
- "id": 25068,
+ "id": 25537,
"properties": {
"east": "none",
"north": "tall",
@@ -49008,7 +49008,7 @@
}
},
{
- "id": 25069,
+ "id": 25538,
"properties": {
"east": "none",
"north": "tall",
@@ -49019,7 +49019,7 @@
}
},
{
- "id": 25070,
+ "id": 25539,
"properties": {
"east": "none",
"north": "tall",
@@ -49030,7 +49030,7 @@
}
},
{
- "id": 25071,
+ "id": 25540,
"properties": {
"east": "none",
"north": "tall",
@@ -49041,7 +49041,7 @@
}
},
{
- "id": 25072,
+ "id": 25541,
"properties": {
"east": "none",
"north": "tall",
@@ -49052,7 +49052,7 @@
}
},
{
- "id": 25073,
+ "id": 25542,
"properties": {
"east": "none",
"north": "tall",
@@ -49063,7 +49063,7 @@
}
},
{
- "id": 25074,
+ "id": 25543,
"properties": {
"east": "none",
"north": "tall",
@@ -49074,7 +49074,7 @@
}
},
{
- "id": 25075,
+ "id": 25544,
"properties": {
"east": "none",
"north": "tall",
@@ -49085,7 +49085,7 @@
}
},
{
- "id": 25076,
+ "id": 25545,
"properties": {
"east": "none",
"north": "tall",
@@ -49096,7 +49096,7 @@
}
},
{
- "id": 25077,
+ "id": 25546,
"properties": {
"east": "none",
"north": "tall",
@@ -49107,7 +49107,7 @@
}
},
{
- "id": 25078,
+ "id": 25547,
"properties": {
"east": "none",
"north": "tall",
@@ -49118,7 +49118,7 @@
}
},
{
- "id": 25079,
+ "id": 25548,
"properties": {
"east": "none",
"north": "tall",
@@ -49129,7 +49129,7 @@
}
},
{
- "id": 25080,
+ "id": 25549,
"properties": {
"east": "none",
"north": "tall",
@@ -49140,7 +49140,7 @@
}
},
{
- "id": 25081,
+ "id": 25550,
"properties": {
"east": "none",
"north": "tall",
@@ -49151,7 +49151,7 @@
}
},
{
- "id": 25082,
+ "id": 25551,
"properties": {
"east": "none",
"north": "tall",
@@ -49162,7 +49162,7 @@
}
},
{
- "id": 25083,
+ "id": 25552,
"properties": {
"east": "none",
"north": "tall",
@@ -49173,7 +49173,7 @@
}
},
{
- "id": 25084,
+ "id": 25553,
"properties": {
"east": "none",
"north": "tall",
@@ -49184,7 +49184,7 @@
}
},
{
- "id": 25085,
+ "id": 25554,
"properties": {
"east": "none",
"north": "tall",
@@ -49195,7 +49195,7 @@
}
},
{
- "id": 25086,
+ "id": 25555,
"properties": {
"east": "none",
"north": "tall",
@@ -49206,7 +49206,7 @@
}
},
{
- "id": 25087,
+ "id": 25556,
"properties": {
"east": "none",
"north": "tall",
@@ -49217,7 +49217,7 @@
}
},
{
- "id": 25088,
+ "id": 25557,
"properties": {
"east": "none",
"north": "tall",
@@ -49228,7 +49228,7 @@
}
},
{
- "id": 25089,
+ "id": 25558,
"properties": {
"east": "none",
"north": "tall",
@@ -49239,7 +49239,7 @@
}
},
{
- "id": 25090,
+ "id": 25559,
"properties": {
"east": "none",
"north": "tall",
@@ -49250,7 +49250,7 @@
}
},
{
- "id": 25091,
+ "id": 25560,
"properties": {
"east": "none",
"north": "tall",
@@ -49261,7 +49261,7 @@
}
},
{
- "id": 25092,
+ "id": 25561,
"properties": {
"east": "none",
"north": "tall",
@@ -49272,7 +49272,7 @@
}
},
{
- "id": 25093,
+ "id": 25562,
"properties": {
"east": "none",
"north": "tall",
@@ -49283,7 +49283,7 @@
}
},
{
- "id": 25094,
+ "id": 25563,
"properties": {
"east": "none",
"north": "tall",
@@ -49294,7 +49294,7 @@
}
},
{
- "id": 25095,
+ "id": 25564,
"properties": {
"east": "none",
"north": "tall",
@@ -49305,7 +49305,7 @@
}
},
{
- "id": 25096,
+ "id": 25565,
"properties": {
"east": "none",
"north": "tall",
@@ -49316,7 +49316,7 @@
}
},
{
- "id": 25097,
+ "id": 25566,
"properties": {
"east": "none",
"north": "tall",
@@ -49327,7 +49327,7 @@
}
},
{
- "id": 25098,
+ "id": 25567,
"properties": {
"east": "none",
"north": "tall",
@@ -49338,7 +49338,7 @@
}
},
{
- "id": 25099,
+ "id": 25568,
"properties": {
"east": "none",
"north": "tall",
@@ -49349,7 +49349,7 @@
}
},
{
- "id": 25100,
+ "id": 25569,
"properties": {
"east": "none",
"north": "tall",
@@ -49360,7 +49360,7 @@
}
},
{
- "id": 25101,
+ "id": 25570,
"properties": {
"east": "none",
"north": "tall",
@@ -49371,7 +49371,7 @@
}
},
{
- "id": 25102,
+ "id": 25571,
"properties": {
"east": "low",
"north": "none",
@@ -49382,7 +49382,7 @@
}
},
{
- "id": 25103,
+ "id": 25572,
"properties": {
"east": "low",
"north": "none",
@@ -49393,7 +49393,7 @@
}
},
{
- "id": 25104,
+ "id": 25573,
"properties": {
"east": "low",
"north": "none",
@@ -49404,7 +49404,7 @@
}
},
{
- "id": 25105,
+ "id": 25574,
"properties": {
"east": "low",
"north": "none",
@@ -49415,7 +49415,7 @@
}
},
{
- "id": 25106,
+ "id": 25575,
"properties": {
"east": "low",
"north": "none",
@@ -49426,7 +49426,7 @@
}
},
{
- "id": 25107,
+ "id": 25576,
"properties": {
"east": "low",
"north": "none",
@@ -49437,7 +49437,7 @@
}
},
{
- "id": 25108,
+ "id": 25577,
"properties": {
"east": "low",
"north": "none",
@@ -49448,7 +49448,7 @@
}
},
{
- "id": 25109,
+ "id": 25578,
"properties": {
"east": "low",
"north": "none",
@@ -49459,7 +49459,7 @@
}
},
{
- "id": 25110,
+ "id": 25579,
"properties": {
"east": "low",
"north": "none",
@@ -49470,7 +49470,7 @@
}
},
{
- "id": 25111,
+ "id": 25580,
"properties": {
"east": "low",
"north": "none",
@@ -49481,7 +49481,7 @@
}
},
{
- "id": 25112,
+ "id": 25581,
"properties": {
"east": "low",
"north": "none",
@@ -49492,7 +49492,7 @@
}
},
{
- "id": 25113,
+ "id": 25582,
"properties": {
"east": "low",
"north": "none",
@@ -49503,7 +49503,7 @@
}
},
{
- "id": 25114,
+ "id": 25583,
"properties": {
"east": "low",
"north": "none",
@@ -49514,7 +49514,7 @@
}
},
{
- "id": 25115,
+ "id": 25584,
"properties": {
"east": "low",
"north": "none",
@@ -49525,7 +49525,7 @@
}
},
{
- "id": 25116,
+ "id": 25585,
"properties": {
"east": "low",
"north": "none",
@@ -49536,7 +49536,7 @@
}
},
{
- "id": 25117,
+ "id": 25586,
"properties": {
"east": "low",
"north": "none",
@@ -49547,7 +49547,7 @@
}
},
{
- "id": 25118,
+ "id": 25587,
"properties": {
"east": "low",
"north": "none",
@@ -49558,7 +49558,7 @@
}
},
{
- "id": 25119,
+ "id": 25588,
"properties": {
"east": "low",
"north": "none",
@@ -49569,7 +49569,7 @@
}
},
{
- "id": 25120,
+ "id": 25589,
"properties": {
"east": "low",
"north": "none",
@@ -49580,7 +49580,7 @@
}
},
{
- "id": 25121,
+ "id": 25590,
"properties": {
"east": "low",
"north": "none",
@@ -49591,7 +49591,7 @@
}
},
{
- "id": 25122,
+ "id": 25591,
"properties": {
"east": "low",
"north": "none",
@@ -49602,7 +49602,7 @@
}
},
{
- "id": 25123,
+ "id": 25592,
"properties": {
"east": "low",
"north": "none",
@@ -49613,7 +49613,7 @@
}
},
{
- "id": 25124,
+ "id": 25593,
"properties": {
"east": "low",
"north": "none",
@@ -49624,7 +49624,7 @@
}
},
{
- "id": 25125,
+ "id": 25594,
"properties": {
"east": "low",
"north": "none",
@@ -49635,7 +49635,7 @@
}
},
{
- "id": 25126,
+ "id": 25595,
"properties": {
"east": "low",
"north": "none",
@@ -49646,7 +49646,7 @@
}
},
{
- "id": 25127,
+ "id": 25596,
"properties": {
"east": "low",
"north": "none",
@@ -49657,7 +49657,7 @@
}
},
{
- "id": 25128,
+ "id": 25597,
"properties": {
"east": "low",
"north": "none",
@@ -49668,7 +49668,7 @@
}
},
{
- "id": 25129,
+ "id": 25598,
"properties": {
"east": "low",
"north": "none",
@@ -49679,7 +49679,7 @@
}
},
{
- "id": 25130,
+ "id": 25599,
"properties": {
"east": "low",
"north": "none",
@@ -49690,7 +49690,7 @@
}
},
{
- "id": 25131,
+ "id": 25600,
"properties": {
"east": "low",
"north": "none",
@@ -49701,7 +49701,7 @@
}
},
{
- "id": 25132,
+ "id": 25601,
"properties": {
"east": "low",
"north": "none",
@@ -49712,7 +49712,7 @@
}
},
{
- "id": 25133,
+ "id": 25602,
"properties": {
"east": "low",
"north": "none",
@@ -49723,7 +49723,7 @@
}
},
{
- "id": 25134,
+ "id": 25603,
"properties": {
"east": "low",
"north": "none",
@@ -49734,7 +49734,7 @@
}
},
{
- "id": 25135,
+ "id": 25604,
"properties": {
"east": "low",
"north": "none",
@@ -49745,7 +49745,7 @@
}
},
{
- "id": 25136,
+ "id": 25605,
"properties": {
"east": "low",
"north": "none",
@@ -49756,7 +49756,7 @@
}
},
{
- "id": 25137,
+ "id": 25606,
"properties": {
"east": "low",
"north": "none",
@@ -49767,7 +49767,7 @@
}
},
{
- "id": 25138,
+ "id": 25607,
"properties": {
"east": "low",
"north": "low",
@@ -49778,7 +49778,7 @@
}
},
{
- "id": 25139,
+ "id": 25608,
"properties": {
"east": "low",
"north": "low",
@@ -49789,7 +49789,7 @@
}
},
{
- "id": 25140,
+ "id": 25609,
"properties": {
"east": "low",
"north": "low",
@@ -49800,7 +49800,7 @@
}
},
{
- "id": 25141,
+ "id": 25610,
"properties": {
"east": "low",
"north": "low",
@@ -49811,7 +49811,7 @@
}
},
{
- "id": 25142,
+ "id": 25611,
"properties": {
"east": "low",
"north": "low",
@@ -49822,7 +49822,7 @@
}
},
{
- "id": 25143,
+ "id": 25612,
"properties": {
"east": "low",
"north": "low",
@@ -49833,7 +49833,7 @@
}
},
{
- "id": 25144,
+ "id": 25613,
"properties": {
"east": "low",
"north": "low",
@@ -49844,7 +49844,7 @@
}
},
{
- "id": 25145,
+ "id": 25614,
"properties": {
"east": "low",
"north": "low",
@@ -49855,7 +49855,7 @@
}
},
{
- "id": 25146,
+ "id": 25615,
"properties": {
"east": "low",
"north": "low",
@@ -49866,7 +49866,7 @@
}
},
{
- "id": 25147,
+ "id": 25616,
"properties": {
"east": "low",
"north": "low",
@@ -49877,7 +49877,7 @@
}
},
{
- "id": 25148,
+ "id": 25617,
"properties": {
"east": "low",
"north": "low",
@@ -49888,7 +49888,7 @@
}
},
{
- "id": 25149,
+ "id": 25618,
"properties": {
"east": "low",
"north": "low",
@@ -49899,7 +49899,7 @@
}
},
{
- "id": 25150,
+ "id": 25619,
"properties": {
"east": "low",
"north": "low",
@@ -49910,7 +49910,7 @@
}
},
{
- "id": 25151,
+ "id": 25620,
"properties": {
"east": "low",
"north": "low",
@@ -49921,7 +49921,7 @@
}
},
{
- "id": 25152,
+ "id": 25621,
"properties": {
"east": "low",
"north": "low",
@@ -49932,7 +49932,7 @@
}
},
{
- "id": 25153,
+ "id": 25622,
"properties": {
"east": "low",
"north": "low",
@@ -49943,7 +49943,7 @@
}
},
{
- "id": 25154,
+ "id": 25623,
"properties": {
"east": "low",
"north": "low",
@@ -49954,7 +49954,7 @@
}
},
{
- "id": 25155,
+ "id": 25624,
"properties": {
"east": "low",
"north": "low",
@@ -49965,7 +49965,7 @@
}
},
{
- "id": 25156,
+ "id": 25625,
"properties": {
"east": "low",
"north": "low",
@@ -49976,7 +49976,7 @@
}
},
{
- "id": 25157,
+ "id": 25626,
"properties": {
"east": "low",
"north": "low",
@@ -49987,7 +49987,7 @@
}
},
{
- "id": 25158,
+ "id": 25627,
"properties": {
"east": "low",
"north": "low",
@@ -49998,7 +49998,7 @@
}
},
{
- "id": 25159,
+ "id": 25628,
"properties": {
"east": "low",
"north": "low",
@@ -50009,7 +50009,7 @@
}
},
{
- "id": 25160,
+ "id": 25629,
"properties": {
"east": "low",
"north": "low",
@@ -50020,7 +50020,7 @@
}
},
{
- "id": 25161,
+ "id": 25630,
"properties": {
"east": "low",
"north": "low",
@@ -50031,7 +50031,7 @@
}
},
{
- "id": 25162,
+ "id": 25631,
"properties": {
"east": "low",
"north": "low",
@@ -50042,7 +50042,7 @@
}
},
{
- "id": 25163,
+ "id": 25632,
"properties": {
"east": "low",
"north": "low",
@@ -50053,7 +50053,7 @@
}
},
{
- "id": 25164,
+ "id": 25633,
"properties": {
"east": "low",
"north": "low",
@@ -50064,7 +50064,7 @@
}
},
{
- "id": 25165,
+ "id": 25634,
"properties": {
"east": "low",
"north": "low",
@@ -50075,7 +50075,7 @@
}
},
{
- "id": 25166,
+ "id": 25635,
"properties": {
"east": "low",
"north": "low",
@@ -50086,7 +50086,7 @@
}
},
{
- "id": 25167,
+ "id": 25636,
"properties": {
"east": "low",
"north": "low",
@@ -50097,7 +50097,7 @@
}
},
{
- "id": 25168,
+ "id": 25637,
"properties": {
"east": "low",
"north": "low",
@@ -50108,7 +50108,7 @@
}
},
{
- "id": 25169,
+ "id": 25638,
"properties": {
"east": "low",
"north": "low",
@@ -50119,7 +50119,7 @@
}
},
{
- "id": 25170,
+ "id": 25639,
"properties": {
"east": "low",
"north": "low",
@@ -50130,7 +50130,7 @@
}
},
{
- "id": 25171,
+ "id": 25640,
"properties": {
"east": "low",
"north": "low",
@@ -50141,7 +50141,7 @@
}
},
{
- "id": 25172,
+ "id": 25641,
"properties": {
"east": "low",
"north": "low",
@@ -50152,7 +50152,7 @@
}
},
{
- "id": 25173,
+ "id": 25642,
"properties": {
"east": "low",
"north": "low",
@@ -50163,7 +50163,7 @@
}
},
{
- "id": 25174,
+ "id": 25643,
"properties": {
"east": "low",
"north": "tall",
@@ -50174,7 +50174,7 @@
}
},
{
- "id": 25175,
+ "id": 25644,
"properties": {
"east": "low",
"north": "tall",
@@ -50185,7 +50185,7 @@
}
},
{
- "id": 25176,
+ "id": 25645,
"properties": {
"east": "low",
"north": "tall",
@@ -50196,7 +50196,7 @@
}
},
{
- "id": 25177,
+ "id": 25646,
"properties": {
"east": "low",
"north": "tall",
@@ -50207,7 +50207,7 @@
}
},
{
- "id": 25178,
+ "id": 25647,
"properties": {
"east": "low",
"north": "tall",
@@ -50218,7 +50218,7 @@
}
},
{
- "id": 25179,
+ "id": 25648,
"properties": {
"east": "low",
"north": "tall",
@@ -50229,7 +50229,7 @@
}
},
{
- "id": 25180,
+ "id": 25649,
"properties": {
"east": "low",
"north": "tall",
@@ -50240,7 +50240,7 @@
}
},
{
- "id": 25181,
+ "id": 25650,
"properties": {
"east": "low",
"north": "tall",
@@ -50251,7 +50251,7 @@
}
},
{
- "id": 25182,
+ "id": 25651,
"properties": {
"east": "low",
"north": "tall",
@@ -50262,7 +50262,7 @@
}
},
{
- "id": 25183,
+ "id": 25652,
"properties": {
"east": "low",
"north": "tall",
@@ -50273,7 +50273,7 @@
}
},
{
- "id": 25184,
+ "id": 25653,
"properties": {
"east": "low",
"north": "tall",
@@ -50284,7 +50284,7 @@
}
},
{
- "id": 25185,
+ "id": 25654,
"properties": {
"east": "low",
"north": "tall",
@@ -50295,7 +50295,7 @@
}
},
{
- "id": 25186,
+ "id": 25655,
"properties": {
"east": "low",
"north": "tall",
@@ -50306,7 +50306,7 @@
}
},
{
- "id": 25187,
+ "id": 25656,
"properties": {
"east": "low",
"north": "tall",
@@ -50317,7 +50317,7 @@
}
},
{
- "id": 25188,
+ "id": 25657,
"properties": {
"east": "low",
"north": "tall",
@@ -50328,7 +50328,7 @@
}
},
{
- "id": 25189,
+ "id": 25658,
"properties": {
"east": "low",
"north": "tall",
@@ -50339,7 +50339,7 @@
}
},
{
- "id": 25190,
+ "id": 25659,
"properties": {
"east": "low",
"north": "tall",
@@ -50350,7 +50350,7 @@
}
},
{
- "id": 25191,
+ "id": 25660,
"properties": {
"east": "low",
"north": "tall",
@@ -50361,7 +50361,7 @@
}
},
{
- "id": 25192,
+ "id": 25661,
"properties": {
"east": "low",
"north": "tall",
@@ -50372,7 +50372,7 @@
}
},
{
- "id": 25193,
+ "id": 25662,
"properties": {
"east": "low",
"north": "tall",
@@ -50383,7 +50383,7 @@
}
},
{
- "id": 25194,
+ "id": 25663,
"properties": {
"east": "low",
"north": "tall",
@@ -50394,7 +50394,7 @@
}
},
{
- "id": 25195,
+ "id": 25664,
"properties": {
"east": "low",
"north": "tall",
@@ -50405,7 +50405,7 @@
}
},
{
- "id": 25196,
+ "id": 25665,
"properties": {
"east": "low",
"north": "tall",
@@ -50416,7 +50416,7 @@
}
},
{
- "id": 25197,
+ "id": 25666,
"properties": {
"east": "low",
"north": "tall",
@@ -50427,7 +50427,7 @@
}
},
{
- "id": 25198,
+ "id": 25667,
"properties": {
"east": "low",
"north": "tall",
@@ -50438,7 +50438,7 @@
}
},
{
- "id": 25199,
+ "id": 25668,
"properties": {
"east": "low",
"north": "tall",
@@ -50449,7 +50449,7 @@
}
},
{
- "id": 25200,
+ "id": 25669,
"properties": {
"east": "low",
"north": "tall",
@@ -50460,7 +50460,7 @@
}
},
{
- "id": 25201,
+ "id": 25670,
"properties": {
"east": "low",
"north": "tall",
@@ -50471,7 +50471,7 @@
}
},
{
- "id": 25202,
+ "id": 25671,
"properties": {
"east": "low",
"north": "tall",
@@ -50482,7 +50482,7 @@
}
},
{
- "id": 25203,
+ "id": 25672,
"properties": {
"east": "low",
"north": "tall",
@@ -50493,7 +50493,7 @@
}
},
{
- "id": 25204,
+ "id": 25673,
"properties": {
"east": "low",
"north": "tall",
@@ -50504,7 +50504,7 @@
}
},
{
- "id": 25205,
+ "id": 25674,
"properties": {
"east": "low",
"north": "tall",
@@ -50515,7 +50515,7 @@
}
},
{
- "id": 25206,
+ "id": 25675,
"properties": {
"east": "low",
"north": "tall",
@@ -50526,7 +50526,7 @@
}
},
{
- "id": 25207,
+ "id": 25676,
"properties": {
"east": "low",
"north": "tall",
@@ -50537,7 +50537,7 @@
}
},
{
- "id": 25208,
+ "id": 25677,
"properties": {
"east": "low",
"north": "tall",
@@ -50548,7 +50548,7 @@
}
},
{
- "id": 25209,
+ "id": 25678,
"properties": {
"east": "low",
"north": "tall",
@@ -50559,7 +50559,7 @@
}
},
{
- "id": 25210,
+ "id": 25679,
"properties": {
"east": "tall",
"north": "none",
@@ -50570,7 +50570,7 @@
}
},
{
- "id": 25211,
+ "id": 25680,
"properties": {
"east": "tall",
"north": "none",
@@ -50581,7 +50581,7 @@
}
},
{
- "id": 25212,
+ "id": 25681,
"properties": {
"east": "tall",
"north": "none",
@@ -50592,7 +50592,7 @@
}
},
{
- "id": 25213,
+ "id": 25682,
"properties": {
"east": "tall",
"north": "none",
@@ -50603,7 +50603,7 @@
}
},
{
- "id": 25214,
+ "id": 25683,
"properties": {
"east": "tall",
"north": "none",
@@ -50614,7 +50614,7 @@
}
},
{
- "id": 25215,
+ "id": 25684,
"properties": {
"east": "tall",
"north": "none",
@@ -50625,7 +50625,7 @@
}
},
{
- "id": 25216,
+ "id": 25685,
"properties": {
"east": "tall",
"north": "none",
@@ -50636,7 +50636,7 @@
}
},
{
- "id": 25217,
+ "id": 25686,
"properties": {
"east": "tall",
"north": "none",
@@ -50647,7 +50647,7 @@
}
},
{
- "id": 25218,
+ "id": 25687,
"properties": {
"east": "tall",
"north": "none",
@@ -50658,7 +50658,7 @@
}
},
{
- "id": 25219,
+ "id": 25688,
"properties": {
"east": "tall",
"north": "none",
@@ -50669,7 +50669,7 @@
}
},
{
- "id": 25220,
+ "id": 25689,
"properties": {
"east": "tall",
"north": "none",
@@ -50680,7 +50680,7 @@
}
},
{
- "id": 25221,
+ "id": 25690,
"properties": {
"east": "tall",
"north": "none",
@@ -50691,7 +50691,7 @@
}
},
{
- "id": 25222,
+ "id": 25691,
"properties": {
"east": "tall",
"north": "none",
@@ -50702,7 +50702,7 @@
}
},
{
- "id": 25223,
+ "id": 25692,
"properties": {
"east": "tall",
"north": "none",
@@ -50713,7 +50713,7 @@
}
},
{
- "id": 25224,
+ "id": 25693,
"properties": {
"east": "tall",
"north": "none",
@@ -50724,7 +50724,7 @@
}
},
{
- "id": 25225,
+ "id": 25694,
"properties": {
"east": "tall",
"north": "none",
@@ -50735,7 +50735,7 @@
}
},
{
- "id": 25226,
+ "id": 25695,
"properties": {
"east": "tall",
"north": "none",
@@ -50746,7 +50746,7 @@
}
},
{
- "id": 25227,
+ "id": 25696,
"properties": {
"east": "tall",
"north": "none",
@@ -50757,7 +50757,7 @@
}
},
{
- "id": 25228,
+ "id": 25697,
"properties": {
"east": "tall",
"north": "none",
@@ -50768,7 +50768,7 @@
}
},
{
- "id": 25229,
+ "id": 25698,
"properties": {
"east": "tall",
"north": "none",
@@ -50779,7 +50779,7 @@
}
},
{
- "id": 25230,
+ "id": 25699,
"properties": {
"east": "tall",
"north": "none",
@@ -50790,7 +50790,7 @@
}
},
{
- "id": 25231,
+ "id": 25700,
"properties": {
"east": "tall",
"north": "none",
@@ -50801,7 +50801,7 @@
}
},
{
- "id": 25232,
+ "id": 25701,
"properties": {
"east": "tall",
"north": "none",
@@ -50812,7 +50812,7 @@
}
},
{
- "id": 25233,
+ "id": 25702,
"properties": {
"east": "tall",
"north": "none",
@@ -50823,7 +50823,7 @@
}
},
{
- "id": 25234,
+ "id": 25703,
"properties": {
"east": "tall",
"north": "none",
@@ -50834,7 +50834,7 @@
}
},
{
- "id": 25235,
+ "id": 25704,
"properties": {
"east": "tall",
"north": "none",
@@ -50845,7 +50845,7 @@
}
},
{
- "id": 25236,
+ "id": 25705,
"properties": {
"east": "tall",
"north": "none",
@@ -50856,7 +50856,7 @@
}
},
{
- "id": 25237,
+ "id": 25706,
"properties": {
"east": "tall",
"north": "none",
@@ -50867,7 +50867,7 @@
}
},
{
- "id": 25238,
+ "id": 25707,
"properties": {
"east": "tall",
"north": "none",
@@ -50878,7 +50878,7 @@
}
},
{
- "id": 25239,
+ "id": 25708,
"properties": {
"east": "tall",
"north": "none",
@@ -50889,7 +50889,7 @@
}
},
{
- "id": 25240,
+ "id": 25709,
"properties": {
"east": "tall",
"north": "none",
@@ -50900,7 +50900,7 @@
}
},
{
- "id": 25241,
+ "id": 25710,
"properties": {
"east": "tall",
"north": "none",
@@ -50911,7 +50911,7 @@
}
},
{
- "id": 25242,
+ "id": 25711,
"properties": {
"east": "tall",
"north": "none",
@@ -50922,7 +50922,7 @@
}
},
{
- "id": 25243,
+ "id": 25712,
"properties": {
"east": "tall",
"north": "none",
@@ -50933,7 +50933,7 @@
}
},
{
- "id": 25244,
+ "id": 25713,
"properties": {
"east": "tall",
"north": "none",
@@ -50944,7 +50944,7 @@
}
},
{
- "id": 25245,
+ "id": 25714,
"properties": {
"east": "tall",
"north": "none",
@@ -50955,7 +50955,7 @@
}
},
{
- "id": 25246,
+ "id": 25715,
"properties": {
"east": "tall",
"north": "low",
@@ -50966,7 +50966,7 @@
}
},
{
- "id": 25247,
+ "id": 25716,
"properties": {
"east": "tall",
"north": "low",
@@ -50977,7 +50977,7 @@
}
},
{
- "id": 25248,
+ "id": 25717,
"properties": {
"east": "tall",
"north": "low",
@@ -50988,7 +50988,7 @@
}
},
{
- "id": 25249,
+ "id": 25718,
"properties": {
"east": "tall",
"north": "low",
@@ -50999,7 +50999,7 @@
}
},
{
- "id": 25250,
+ "id": 25719,
"properties": {
"east": "tall",
"north": "low",
@@ -51010,7 +51010,7 @@
}
},
{
- "id": 25251,
+ "id": 25720,
"properties": {
"east": "tall",
"north": "low",
@@ -51021,7 +51021,7 @@
}
},
{
- "id": 25252,
+ "id": 25721,
"properties": {
"east": "tall",
"north": "low",
@@ -51032,7 +51032,7 @@
}
},
{
- "id": 25253,
+ "id": 25722,
"properties": {
"east": "tall",
"north": "low",
@@ -51043,7 +51043,7 @@
}
},
{
- "id": 25254,
+ "id": 25723,
"properties": {
"east": "tall",
"north": "low",
@@ -51054,7 +51054,7 @@
}
},
{
- "id": 25255,
+ "id": 25724,
"properties": {
"east": "tall",
"north": "low",
@@ -51065,7 +51065,7 @@
}
},
{
- "id": 25256,
+ "id": 25725,
"properties": {
"east": "tall",
"north": "low",
@@ -51076,7 +51076,7 @@
}
},
{
- "id": 25257,
+ "id": 25726,
"properties": {
"east": "tall",
"north": "low",
@@ -51087,7 +51087,7 @@
}
},
{
- "id": 25258,
+ "id": 25727,
"properties": {
"east": "tall",
"north": "low",
@@ -51098,7 +51098,7 @@
}
},
{
- "id": 25259,
+ "id": 25728,
"properties": {
"east": "tall",
"north": "low",
@@ -51109,7 +51109,7 @@
}
},
{
- "id": 25260,
+ "id": 25729,
"properties": {
"east": "tall",
"north": "low",
@@ -51120,7 +51120,7 @@
}
},
{
- "id": 25261,
+ "id": 25730,
"properties": {
"east": "tall",
"north": "low",
@@ -51131,7 +51131,7 @@
}
},
{
- "id": 25262,
+ "id": 25731,
"properties": {
"east": "tall",
"north": "low",
@@ -51142,7 +51142,7 @@
}
},
{
- "id": 25263,
+ "id": 25732,
"properties": {
"east": "tall",
"north": "low",
@@ -51153,7 +51153,7 @@
}
},
{
- "id": 25264,
+ "id": 25733,
"properties": {
"east": "tall",
"north": "low",
@@ -51164,7 +51164,7 @@
}
},
{
- "id": 25265,
+ "id": 25734,
"properties": {
"east": "tall",
"north": "low",
@@ -51175,7 +51175,7 @@
}
},
{
- "id": 25266,
+ "id": 25735,
"properties": {
"east": "tall",
"north": "low",
@@ -51186,7 +51186,7 @@
}
},
{
- "id": 25267,
+ "id": 25736,
"properties": {
"east": "tall",
"north": "low",
@@ -51197,7 +51197,7 @@
}
},
{
- "id": 25268,
+ "id": 25737,
"properties": {
"east": "tall",
"north": "low",
@@ -51208,7 +51208,7 @@
}
},
{
- "id": 25269,
+ "id": 25738,
"properties": {
"east": "tall",
"north": "low",
@@ -51219,7 +51219,7 @@
}
},
{
- "id": 25270,
+ "id": 25739,
"properties": {
"east": "tall",
"north": "low",
@@ -51230,7 +51230,7 @@
}
},
{
- "id": 25271,
+ "id": 25740,
"properties": {
"east": "tall",
"north": "low",
@@ -51241,7 +51241,7 @@
}
},
{
- "id": 25272,
+ "id": 25741,
"properties": {
"east": "tall",
"north": "low",
@@ -51252,7 +51252,7 @@
}
},
{
- "id": 25273,
+ "id": 25742,
"properties": {
"east": "tall",
"north": "low",
@@ -51263,7 +51263,7 @@
}
},
{
- "id": 25274,
+ "id": 25743,
"properties": {
"east": "tall",
"north": "low",
@@ -51274,7 +51274,7 @@
}
},
{
- "id": 25275,
+ "id": 25744,
"properties": {
"east": "tall",
"north": "low",
@@ -51285,7 +51285,7 @@
}
},
{
- "id": 25276,
+ "id": 25745,
"properties": {
"east": "tall",
"north": "low",
@@ -51296,7 +51296,7 @@
}
},
{
- "id": 25277,
+ "id": 25746,
"properties": {
"east": "tall",
"north": "low",
@@ -51307,7 +51307,7 @@
}
},
{
- "id": 25278,
+ "id": 25747,
"properties": {
"east": "tall",
"north": "low",
@@ -51318,7 +51318,7 @@
}
},
{
- "id": 25279,
+ "id": 25748,
"properties": {
"east": "tall",
"north": "low",
@@ -51329,7 +51329,7 @@
}
},
{
- "id": 25280,
+ "id": 25749,
"properties": {
"east": "tall",
"north": "low",
@@ -51340,7 +51340,7 @@
}
},
{
- "id": 25281,
+ "id": 25750,
"properties": {
"east": "tall",
"north": "low",
@@ -51351,7 +51351,7 @@
}
},
{
- "id": 25282,
+ "id": 25751,
"properties": {
"east": "tall",
"north": "tall",
@@ -51362,7 +51362,7 @@
}
},
{
- "id": 25283,
+ "id": 25752,
"properties": {
"east": "tall",
"north": "tall",
@@ -51373,7 +51373,7 @@
}
},
{
- "id": 25284,
+ "id": 25753,
"properties": {
"east": "tall",
"north": "tall",
@@ -51384,7 +51384,7 @@
}
},
{
- "id": 25285,
+ "id": 25754,
"properties": {
"east": "tall",
"north": "tall",
@@ -51395,7 +51395,7 @@
}
},
{
- "id": 25286,
+ "id": 25755,
"properties": {
"east": "tall",
"north": "tall",
@@ -51406,7 +51406,7 @@
}
},
{
- "id": 25287,
+ "id": 25756,
"properties": {
"east": "tall",
"north": "tall",
@@ -51417,7 +51417,7 @@
}
},
{
- "id": 25288,
+ "id": 25757,
"properties": {
"east": "tall",
"north": "tall",
@@ -51428,7 +51428,7 @@
}
},
{
- "id": 25289,
+ "id": 25758,
"properties": {
"east": "tall",
"north": "tall",
@@ -51439,7 +51439,7 @@
}
},
{
- "id": 25290,
+ "id": 25759,
"properties": {
"east": "tall",
"north": "tall",
@@ -51450,7 +51450,7 @@
}
},
{
- "id": 25291,
+ "id": 25760,
"properties": {
"east": "tall",
"north": "tall",
@@ -51461,7 +51461,7 @@
}
},
{
- "id": 25292,
+ "id": 25761,
"properties": {
"east": "tall",
"north": "tall",
@@ -51472,7 +51472,7 @@
}
},
{
- "id": 25293,
+ "id": 25762,
"properties": {
"east": "tall",
"north": "tall",
@@ -51483,7 +51483,7 @@
}
},
{
- "id": 25294,
+ "id": 25763,
"properties": {
"east": "tall",
"north": "tall",
@@ -51494,7 +51494,7 @@
}
},
{
- "id": 25295,
+ "id": 25764,
"properties": {
"east": "tall",
"north": "tall",
@@ -51505,7 +51505,7 @@
}
},
{
- "id": 25296,
+ "id": 25765,
"properties": {
"east": "tall",
"north": "tall",
@@ -51516,7 +51516,7 @@
}
},
{
- "id": 25297,
+ "id": 25766,
"properties": {
"east": "tall",
"north": "tall",
@@ -51527,7 +51527,7 @@
}
},
{
- "id": 25298,
+ "id": 25767,
"properties": {
"east": "tall",
"north": "tall",
@@ -51538,7 +51538,7 @@
}
},
{
- "id": 25299,
+ "id": 25768,
"properties": {
"east": "tall",
"north": "tall",
@@ -51549,7 +51549,7 @@
}
},
{
- "id": 25300,
+ "id": 25769,
"properties": {
"east": "tall",
"north": "tall",
@@ -51560,7 +51560,7 @@
}
},
{
- "id": 25301,
+ "id": 25770,
"properties": {
"east": "tall",
"north": "tall",
@@ -51571,7 +51571,7 @@
}
},
{
- "id": 25302,
+ "id": 25771,
"properties": {
"east": "tall",
"north": "tall",
@@ -51582,7 +51582,7 @@
}
},
{
- "id": 25303,
+ "id": 25772,
"properties": {
"east": "tall",
"north": "tall",
@@ -51593,7 +51593,7 @@
}
},
{
- "id": 25304,
+ "id": 25773,
"properties": {
"east": "tall",
"north": "tall",
@@ -51604,7 +51604,7 @@
}
},
{
- "id": 25305,
+ "id": 25774,
"properties": {
"east": "tall",
"north": "tall",
@@ -51615,7 +51615,7 @@
}
},
{
- "id": 25306,
+ "id": 25775,
"properties": {
"east": "tall",
"north": "tall",
@@ -51626,7 +51626,7 @@
}
},
{
- "id": 25307,
+ "id": 25776,
"properties": {
"east": "tall",
"north": "tall",
@@ -51637,7 +51637,7 @@
}
},
{
- "id": 25308,
+ "id": 25777,
"properties": {
"east": "tall",
"north": "tall",
@@ -51648,7 +51648,7 @@
}
},
{
- "id": 25309,
+ "id": 25778,
"properties": {
"east": "tall",
"north": "tall",
@@ -51659,7 +51659,7 @@
}
},
{
- "id": 25310,
+ "id": 25779,
"properties": {
"east": "tall",
"north": "tall",
@@ -51670,7 +51670,7 @@
}
},
{
- "id": 25311,
+ "id": 25780,
"properties": {
"east": "tall",
"north": "tall",
@@ -51681,7 +51681,7 @@
}
},
{
- "id": 25312,
+ "id": 25781,
"properties": {
"east": "tall",
"north": "tall",
@@ -51692,7 +51692,7 @@
}
},
{
- "id": 25313,
+ "id": 25782,
"properties": {
"east": "tall",
"north": "tall",
@@ -51703,7 +51703,7 @@
}
},
{
- "id": 25314,
+ "id": 25783,
"properties": {
"east": "tall",
"north": "tall",
@@ -51714,7 +51714,7 @@
}
},
{
- "id": 25315,
+ "id": 25784,
"properties": {
"east": "tall",
"north": "tall",
@@ -51725,7 +51725,7 @@
}
},
{
- "id": 25316,
+ "id": 25785,
"properties": {
"east": "tall",
"north": "tall",
@@ -51736,7 +51736,7 @@
}
},
{
- "id": 25317,
+ "id": 25786,
"properties": {
"east": "tall",
"north": "tall",
@@ -51778,21 +51778,21 @@
},
"states": [
{
- "id": 11252,
+ "id": 11593,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11253,
+ "id": 11594,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11254,
+ "id": 11595,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -51800,21 +51800,21 @@
},
{
"default": true,
- "id": 11255,
+ "id": 11596,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11256,
+ "id": 11597,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11257,
+ "id": 11598,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -51855,7 +51855,7 @@
},
"states": [
{
- "id": 4682,
+ "id": 4766,
"properties": {
"facing": "north",
"half": "top",
@@ -51864,7 +51864,7 @@
}
},
{
- "id": 4683,
+ "id": 4767,
"properties": {
"facing": "north",
"half": "top",
@@ -51873,7 +51873,7 @@
}
},
{
- "id": 4684,
+ "id": 4768,
"properties": {
"facing": "north",
"half": "top",
@@ -51882,7 +51882,7 @@
}
},
{
- "id": 4685,
+ "id": 4769,
"properties": {
"facing": "north",
"half": "top",
@@ -51891,7 +51891,7 @@
}
},
{
- "id": 4686,
+ "id": 4770,
"properties": {
"facing": "north",
"half": "top",
@@ -51900,7 +51900,7 @@
}
},
{
- "id": 4687,
+ "id": 4771,
"properties": {
"facing": "north",
"half": "top",
@@ -51909,7 +51909,7 @@
}
},
{
- "id": 4688,
+ "id": 4772,
"properties": {
"facing": "north",
"half": "top",
@@ -51918,7 +51918,7 @@
}
},
{
- "id": 4689,
+ "id": 4773,
"properties": {
"facing": "north",
"half": "top",
@@ -51927,7 +51927,7 @@
}
},
{
- "id": 4690,
+ "id": 4774,
"properties": {
"facing": "north",
"half": "top",
@@ -51936,7 +51936,7 @@
}
},
{
- "id": 4691,
+ "id": 4775,
"properties": {
"facing": "north",
"half": "top",
@@ -51945,7 +51945,7 @@
}
},
{
- "id": 4692,
+ "id": 4776,
"properties": {
"facing": "north",
"half": "bottom",
@@ -51955,7 +51955,7 @@
},
{
"default": true,
- "id": 4693,
+ "id": 4777,
"properties": {
"facing": "north",
"half": "bottom",
@@ -51964,7 +51964,7 @@
}
},
{
- "id": 4694,
+ "id": 4778,
"properties": {
"facing": "north",
"half": "bottom",
@@ -51973,7 +51973,7 @@
}
},
{
- "id": 4695,
+ "id": 4779,
"properties": {
"facing": "north",
"half": "bottom",
@@ -51982,7 +51982,7 @@
}
},
{
- "id": 4696,
+ "id": 4780,
"properties": {
"facing": "north",
"half": "bottom",
@@ -51991,7 +51991,7 @@
}
},
{
- "id": 4697,
+ "id": 4781,
"properties": {
"facing": "north",
"half": "bottom",
@@ -52000,7 +52000,7 @@
}
},
{
- "id": 4698,
+ "id": 4782,
"properties": {
"facing": "north",
"half": "bottom",
@@ -52009,7 +52009,7 @@
}
},
{
- "id": 4699,
+ "id": 4783,
"properties": {
"facing": "north",
"half": "bottom",
@@ -52018,7 +52018,7 @@
}
},
{
- "id": 4700,
+ "id": 4784,
"properties": {
"facing": "north",
"half": "bottom",
@@ -52027,7 +52027,7 @@
}
},
{
- "id": 4701,
+ "id": 4785,
"properties": {
"facing": "north",
"half": "bottom",
@@ -52036,7 +52036,7 @@
}
},
{
- "id": 4702,
+ "id": 4786,
"properties": {
"facing": "south",
"half": "top",
@@ -52045,7 +52045,7 @@
}
},
{
- "id": 4703,
+ "id": 4787,
"properties": {
"facing": "south",
"half": "top",
@@ -52054,7 +52054,7 @@
}
},
{
- "id": 4704,
+ "id": 4788,
"properties": {
"facing": "south",
"half": "top",
@@ -52063,7 +52063,7 @@
}
},
{
- "id": 4705,
+ "id": 4789,
"properties": {
"facing": "south",
"half": "top",
@@ -52072,7 +52072,7 @@
}
},
{
- "id": 4706,
+ "id": 4790,
"properties": {
"facing": "south",
"half": "top",
@@ -52081,7 +52081,7 @@
}
},
{
- "id": 4707,
+ "id": 4791,
"properties": {
"facing": "south",
"half": "top",
@@ -52090,7 +52090,7 @@
}
},
{
- "id": 4708,
+ "id": 4792,
"properties": {
"facing": "south",
"half": "top",
@@ -52099,7 +52099,7 @@
}
},
{
- "id": 4709,
+ "id": 4793,
"properties": {
"facing": "south",
"half": "top",
@@ -52108,7 +52108,7 @@
}
},
{
- "id": 4710,
+ "id": 4794,
"properties": {
"facing": "south",
"half": "top",
@@ -52117,7 +52117,7 @@
}
},
{
- "id": 4711,
+ "id": 4795,
"properties": {
"facing": "south",
"half": "top",
@@ -52126,7 +52126,7 @@
}
},
{
- "id": 4712,
+ "id": 4796,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52135,7 +52135,7 @@
}
},
{
- "id": 4713,
+ "id": 4797,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52144,7 +52144,7 @@
}
},
{
- "id": 4714,
+ "id": 4798,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52153,7 +52153,7 @@
}
},
{
- "id": 4715,
+ "id": 4799,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52162,7 +52162,7 @@
}
},
{
- "id": 4716,
+ "id": 4800,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52171,7 +52171,7 @@
}
},
{
- "id": 4717,
+ "id": 4801,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52180,7 +52180,7 @@
}
},
{
- "id": 4718,
+ "id": 4802,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52189,7 +52189,7 @@
}
},
{
- "id": 4719,
+ "id": 4803,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52198,7 +52198,7 @@
}
},
{
- "id": 4720,
+ "id": 4804,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52207,7 +52207,7 @@
}
},
{
- "id": 4721,
+ "id": 4805,
"properties": {
"facing": "south",
"half": "bottom",
@@ -52216,7 +52216,7 @@
}
},
{
- "id": 4722,
+ "id": 4806,
"properties": {
"facing": "west",
"half": "top",
@@ -52225,7 +52225,7 @@
}
},
{
- "id": 4723,
+ "id": 4807,
"properties": {
"facing": "west",
"half": "top",
@@ -52234,7 +52234,7 @@
}
},
{
- "id": 4724,
+ "id": 4808,
"properties": {
"facing": "west",
"half": "top",
@@ -52243,7 +52243,7 @@
}
},
{
- "id": 4725,
+ "id": 4809,
"properties": {
"facing": "west",
"half": "top",
@@ -52252,7 +52252,7 @@
}
},
{
- "id": 4726,
+ "id": 4810,
"properties": {
"facing": "west",
"half": "top",
@@ -52261,7 +52261,7 @@
}
},
{
- "id": 4727,
+ "id": 4811,
"properties": {
"facing": "west",
"half": "top",
@@ -52270,7 +52270,7 @@
}
},
{
- "id": 4728,
+ "id": 4812,
"properties": {
"facing": "west",
"half": "top",
@@ -52279,7 +52279,7 @@
}
},
{
- "id": 4729,
+ "id": 4813,
"properties": {
"facing": "west",
"half": "top",
@@ -52288,7 +52288,7 @@
}
},
{
- "id": 4730,
+ "id": 4814,
"properties": {
"facing": "west",
"half": "top",
@@ -52297,7 +52297,7 @@
}
},
{
- "id": 4731,
+ "id": 4815,
"properties": {
"facing": "west",
"half": "top",
@@ -52306,7 +52306,7 @@
}
},
{
- "id": 4732,
+ "id": 4816,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52315,7 +52315,7 @@
}
},
{
- "id": 4733,
+ "id": 4817,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52324,7 +52324,7 @@
}
},
{
- "id": 4734,
+ "id": 4818,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52333,7 +52333,7 @@
}
},
{
- "id": 4735,
+ "id": 4819,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52342,7 +52342,7 @@
}
},
{
- "id": 4736,
+ "id": 4820,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52351,7 +52351,7 @@
}
},
{
- "id": 4737,
+ "id": 4821,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52360,7 +52360,7 @@
}
},
{
- "id": 4738,
+ "id": 4822,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52369,7 +52369,7 @@
}
},
{
- "id": 4739,
+ "id": 4823,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52378,7 +52378,7 @@
}
},
{
- "id": 4740,
+ "id": 4824,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52387,7 +52387,7 @@
}
},
{
- "id": 4741,
+ "id": 4825,
"properties": {
"facing": "west",
"half": "bottom",
@@ -52396,7 +52396,7 @@
}
},
{
- "id": 4742,
+ "id": 4826,
"properties": {
"facing": "east",
"half": "top",
@@ -52405,7 +52405,7 @@
}
},
{
- "id": 4743,
+ "id": 4827,
"properties": {
"facing": "east",
"half": "top",
@@ -52414,7 +52414,7 @@
}
},
{
- "id": 4744,
+ "id": 4828,
"properties": {
"facing": "east",
"half": "top",
@@ -52423,7 +52423,7 @@
}
},
{
- "id": 4745,
+ "id": 4829,
"properties": {
"facing": "east",
"half": "top",
@@ -52432,7 +52432,7 @@
}
},
{
- "id": 4746,
+ "id": 4830,
"properties": {
"facing": "east",
"half": "top",
@@ -52441,7 +52441,7 @@
}
},
{
- "id": 4747,
+ "id": 4831,
"properties": {
"facing": "east",
"half": "top",
@@ -52450,7 +52450,7 @@
}
},
{
- "id": 4748,
+ "id": 4832,
"properties": {
"facing": "east",
"half": "top",
@@ -52459,7 +52459,7 @@
}
},
{
- "id": 4749,
+ "id": 4833,
"properties": {
"facing": "east",
"half": "top",
@@ -52468,7 +52468,7 @@
}
},
{
- "id": 4750,
+ "id": 4834,
"properties": {
"facing": "east",
"half": "top",
@@ -52477,7 +52477,7 @@
}
},
{
- "id": 4751,
+ "id": 4835,
"properties": {
"facing": "east",
"half": "top",
@@ -52486,7 +52486,7 @@
}
},
{
- "id": 4752,
+ "id": 4836,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52495,7 +52495,7 @@
}
},
{
- "id": 4753,
+ "id": 4837,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52504,7 +52504,7 @@
}
},
{
- "id": 4754,
+ "id": 4838,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52513,7 +52513,7 @@
}
},
{
- "id": 4755,
+ "id": 4839,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52522,7 +52522,7 @@
}
},
{
- "id": 4756,
+ "id": 4840,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52531,7 +52531,7 @@
}
},
{
- "id": 4757,
+ "id": 4841,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52540,7 +52540,7 @@
}
},
{
- "id": 4758,
+ "id": 4842,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52549,7 +52549,7 @@
}
},
{
- "id": 4759,
+ "id": 4843,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52558,7 +52558,7 @@
}
},
{
- "id": 4760,
+ "id": 4844,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52567,7 +52567,7 @@
}
},
{
- "id": 4761,
+ "id": 4845,
"properties": {
"facing": "east",
"half": "bottom",
@@ -52614,7 +52614,7 @@
},
"states": [
{
- "id": 7919,
+ "id": 8149,
"properties": {
"east": "none",
"north": "none",
@@ -52625,7 +52625,7 @@
}
},
{
- "id": 7920,
+ "id": 8150,
"properties": {
"east": "none",
"north": "none",
@@ -52636,7 +52636,7 @@
}
},
{
- "id": 7921,
+ "id": 8151,
"properties": {
"east": "none",
"north": "none",
@@ -52648,2735 +52648,2735 @@
},
{
"default": true,
- "id": 7922,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7923,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7924,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7925,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7926,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7927,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7928,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7929,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7930,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7931,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7932,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7933,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7934,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7935,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7936,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7937,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7938,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7939,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7940,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7941,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7942,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7943,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7944,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7945,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7946,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7947,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7948,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7949,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7950,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7951,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7952,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7953,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7954,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7955,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7956,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7957,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7958,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7959,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7960,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7961,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7962,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7963,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7964,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7965,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7966,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7967,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7968,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7969,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7970,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7971,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7972,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7973,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7974,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7975,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7976,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7977,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7978,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7979,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7980,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7981,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7982,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7983,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7984,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7985,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7986,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7987,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7988,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7989,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7990,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7991,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7992,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7993,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 7994,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 7995,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 7996,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 7997,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 7998,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 7999,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8000,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8001,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8002,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8003,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8004,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8005,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8006,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8007,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8008,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8009,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8010,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8011,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8012,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8013,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8014,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8015,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8016,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8017,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8018,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8019,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8020,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8021,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8022,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8023,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8024,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8025,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8026,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8027,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8028,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8029,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8030,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8031,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8032,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8033,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8034,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8035,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8036,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8037,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8038,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8039,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8040,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8041,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8042,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8043,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8044,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8045,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8046,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8047,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8048,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8049,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8050,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8051,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8052,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8053,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8054,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8055,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8056,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8057,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8058,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8059,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8060,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8061,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8062,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8063,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8064,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8065,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8066,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8067,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8068,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8069,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8070,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8071,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8072,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8073,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8074,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8075,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8076,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8077,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8078,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8079,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8080,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8081,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8082,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8083,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8084,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8085,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8086,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8087,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8088,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8089,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8090,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8091,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8092,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8093,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8094,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8095,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8096,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8097,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8098,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8099,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8100,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8101,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8102,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8103,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8104,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8105,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8106,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8107,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8108,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8109,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8110,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8111,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8112,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8113,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8114,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8115,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8116,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8117,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8118,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8119,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8120,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8121,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8122,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8123,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8124,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8125,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8126,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8127,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8128,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8129,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8130,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8131,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8132,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8133,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8134,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8135,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8136,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8137,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8138,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8139,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8140,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8141,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8142,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8143,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8144,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8145,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8146,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8147,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8148,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8149,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8150,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8151,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
"id": 8152,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "true",
"waterlogged": "false",
- "west": "tall"
+ "west": "none"
}
},
{
"id": 8153,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
}
},
{
"id": 8154,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
}
},
{
"id": 8155,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "false",
"waterlogged": "true",
- "west": "tall"
+ "west": "none"
}
},
{
"id": 8156,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "false",
- "waterlogged": "false",
- "west": "none"
+ "waterlogged": "true",
+ "west": "low"
}
},
{
"id": 8157,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "false",
- "waterlogged": "false",
- "west": "low"
+ "waterlogged": "true",
+ "west": "tall"
}
},
{
"id": 8158,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "false",
"waterlogged": "false",
- "west": "tall"
+ "west": "none"
}
},
{
"id": 8159,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
}
},
{
"id": 8160,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
}
},
{
"id": 8161,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "true",
"waterlogged": "true",
- "west": "tall"
+ "west": "none"
}
},
{
"id": 8162,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "true",
- "waterlogged": "false",
- "west": "none"
+ "waterlogged": "true",
+ "west": "low"
}
},
{
"id": 8163,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "true",
- "waterlogged": "false",
- "west": "low"
+ "waterlogged": "true",
+ "west": "tall"
}
},
{
"id": 8164,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "true",
"waterlogged": "false",
- "west": "tall"
+ "west": "none"
}
},
{
"id": 8165,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
}
},
{
"id": 8166,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
}
},
{
"id": 8167,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "false",
"waterlogged": "true",
- "west": "tall"
+ "west": "none"
}
},
{
"id": 8168,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "false",
- "waterlogged": "false",
- "west": "none"
+ "waterlogged": "true",
+ "west": "low"
}
},
{
"id": 8169,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "false",
- "waterlogged": "false",
- "west": "low"
+ "waterlogged": "true",
+ "west": "tall"
}
},
{
"id": 8170,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8171,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8172,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8173,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8174,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8175,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8176,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8177,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8178,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8179,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8180,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8181,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8182,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8183,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8184,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8185,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8186,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8187,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8188,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8189,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8190,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8191,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8192,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8193,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8194,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8195,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8196,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8197,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8198,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8199,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8200,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8201,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8202,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8203,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8204,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8205,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8206,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8207,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8208,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8209,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8210,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8211,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8212,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8213,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8214,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8215,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8216,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8217,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8218,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8219,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8220,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8221,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8222,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8223,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8224,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8225,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8226,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8227,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8228,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8229,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8230,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8231,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8232,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8233,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8234,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8235,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8236,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8237,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8238,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8239,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8240,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8241,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8242,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8243,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8244,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8245,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8246,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8247,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8248,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8249,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8250,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8251,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8252,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8253,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8254,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8255,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8256,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8257,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8258,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8259,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8260,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8261,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8262,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8263,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8264,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8265,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8266,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8267,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8268,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8269,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8270,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8271,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8272,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8273,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8274,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8275,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8276,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8277,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8278,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8279,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8280,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8281,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8282,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8283,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8284,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8285,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8286,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8287,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8288,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8289,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8290,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8291,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8292,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8293,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8294,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8295,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8296,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8297,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8298,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8299,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8300,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8301,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8302,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8303,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8304,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8305,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8306,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8307,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8308,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8309,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8310,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8311,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8312,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8313,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8314,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8315,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8316,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8317,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8318,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8319,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8320,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8321,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8322,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8323,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8324,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8325,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8326,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8327,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8328,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8329,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8330,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8331,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8332,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8333,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8334,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8335,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8336,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8337,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8338,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8339,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8340,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8341,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8342,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8343,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8344,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8345,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8346,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8347,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8348,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8349,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8350,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8351,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8352,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8353,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8354,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8355,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8356,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8357,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8358,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8359,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8360,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8361,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8362,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8363,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8364,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8365,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8366,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8367,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8368,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8369,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8370,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8371,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8372,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8373,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8374,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8375,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8376,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8377,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8378,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8379,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8380,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8381,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8382,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8383,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8384,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8385,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8386,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8387,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8388,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8389,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8390,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8391,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8392,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8393,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8394,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8395,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8396,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8397,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8398,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8399,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8400,
"properties": {
"east": "tall",
"north": "none",
@@ -55387,7 +55387,7 @@
}
},
{
- "id": 8171,
+ "id": 8401,
"properties": {
"east": "tall",
"north": "low",
@@ -55398,7 +55398,7 @@
}
},
{
- "id": 8172,
+ "id": 8402,
"properties": {
"east": "tall",
"north": "low",
@@ -55409,7 +55409,7 @@
}
},
{
- "id": 8173,
+ "id": 8403,
"properties": {
"east": "tall",
"north": "low",
@@ -55420,7 +55420,7 @@
}
},
{
- "id": 8174,
+ "id": 8404,
"properties": {
"east": "tall",
"north": "low",
@@ -55431,7 +55431,7 @@
}
},
{
- "id": 8175,
+ "id": 8405,
"properties": {
"east": "tall",
"north": "low",
@@ -55442,7 +55442,7 @@
}
},
{
- "id": 8176,
+ "id": 8406,
"properties": {
"east": "tall",
"north": "low",
@@ -55453,7 +55453,7 @@
}
},
{
- "id": 8177,
+ "id": 8407,
"properties": {
"east": "tall",
"north": "low",
@@ -55464,7 +55464,7 @@
}
},
{
- "id": 8178,
+ "id": 8408,
"properties": {
"east": "tall",
"north": "low",
@@ -55475,7 +55475,7 @@
}
},
{
- "id": 8179,
+ "id": 8409,
"properties": {
"east": "tall",
"north": "low",
@@ -55486,7 +55486,7 @@
}
},
{
- "id": 8180,
+ "id": 8410,
"properties": {
"east": "tall",
"north": "low",
@@ -55497,7 +55497,7 @@
}
},
{
- "id": 8181,
+ "id": 8411,
"properties": {
"east": "tall",
"north": "low",
@@ -55508,7 +55508,7 @@
}
},
{
- "id": 8182,
+ "id": 8412,
"properties": {
"east": "tall",
"north": "low",
@@ -55519,7 +55519,7 @@
}
},
{
- "id": 8183,
+ "id": 8413,
"properties": {
"east": "tall",
"north": "low",
@@ -55530,7 +55530,7 @@
}
},
{
- "id": 8184,
+ "id": 8414,
"properties": {
"east": "tall",
"north": "low",
@@ -55541,7 +55541,7 @@
}
},
{
- "id": 8185,
+ "id": 8415,
"properties": {
"east": "tall",
"north": "low",
@@ -55552,7 +55552,7 @@
}
},
{
- "id": 8186,
+ "id": 8416,
"properties": {
"east": "tall",
"north": "low",
@@ -55563,7 +55563,7 @@
}
},
{
- "id": 8187,
+ "id": 8417,
"properties": {
"east": "tall",
"north": "low",
@@ -55574,7 +55574,7 @@
}
},
{
- "id": 8188,
+ "id": 8418,
"properties": {
"east": "tall",
"north": "low",
@@ -55585,7 +55585,7 @@
}
},
{
- "id": 8189,
+ "id": 8419,
"properties": {
"east": "tall",
"north": "low",
@@ -55596,7 +55596,7 @@
}
},
{
- "id": 8190,
+ "id": 8420,
"properties": {
"east": "tall",
"north": "low",
@@ -55607,7 +55607,7 @@
}
},
{
- "id": 8191,
+ "id": 8421,
"properties": {
"east": "tall",
"north": "low",
@@ -55618,7 +55618,7 @@
}
},
{
- "id": 8192,
+ "id": 8422,
"properties": {
"east": "tall",
"north": "low",
@@ -55629,7 +55629,7 @@
}
},
{
- "id": 8193,
+ "id": 8423,
"properties": {
"east": "tall",
"north": "low",
@@ -55640,7 +55640,7 @@
}
},
{
- "id": 8194,
+ "id": 8424,
"properties": {
"east": "tall",
"north": "low",
@@ -55651,7 +55651,7 @@
}
},
{
- "id": 8195,
+ "id": 8425,
"properties": {
"east": "tall",
"north": "low",
@@ -55662,7 +55662,7 @@
}
},
{
- "id": 8196,
+ "id": 8426,
"properties": {
"east": "tall",
"north": "low",
@@ -55673,7 +55673,7 @@
}
},
{
- "id": 8197,
+ "id": 8427,
"properties": {
"east": "tall",
"north": "low",
@@ -55684,7 +55684,7 @@
}
},
{
- "id": 8198,
+ "id": 8428,
"properties": {
"east": "tall",
"north": "low",
@@ -55695,7 +55695,7 @@
}
},
{
- "id": 8199,
+ "id": 8429,
"properties": {
"east": "tall",
"north": "low",
@@ -55706,7 +55706,7 @@
}
},
{
- "id": 8200,
+ "id": 8430,
"properties": {
"east": "tall",
"north": "low",
@@ -55717,7 +55717,7 @@
}
},
{
- "id": 8201,
+ "id": 8431,
"properties": {
"east": "tall",
"north": "low",
@@ -55728,7 +55728,7 @@
}
},
{
- "id": 8202,
+ "id": 8432,
"properties": {
"east": "tall",
"north": "low",
@@ -55739,7 +55739,7 @@
}
},
{
- "id": 8203,
+ "id": 8433,
"properties": {
"east": "tall",
"north": "low",
@@ -55750,7 +55750,7 @@
}
},
{
- "id": 8204,
+ "id": 8434,
"properties": {
"east": "tall",
"north": "low",
@@ -55761,7 +55761,7 @@
}
},
{
- "id": 8205,
+ "id": 8435,
"properties": {
"east": "tall",
"north": "low",
@@ -55772,7 +55772,7 @@
}
},
{
- "id": 8206,
+ "id": 8436,
"properties": {
"east": "tall",
"north": "low",
@@ -55783,7 +55783,7 @@
}
},
{
- "id": 8207,
+ "id": 8437,
"properties": {
"east": "tall",
"north": "tall",
@@ -55794,7 +55794,7 @@
}
},
{
- "id": 8208,
+ "id": 8438,
"properties": {
"east": "tall",
"north": "tall",
@@ -55805,7 +55805,7 @@
}
},
{
- "id": 8209,
+ "id": 8439,
"properties": {
"east": "tall",
"north": "tall",
@@ -55816,7 +55816,7 @@
}
},
{
- "id": 8210,
+ "id": 8440,
"properties": {
"east": "tall",
"north": "tall",
@@ -55827,7 +55827,7 @@
}
},
{
- "id": 8211,
+ "id": 8441,
"properties": {
"east": "tall",
"north": "tall",
@@ -55838,7 +55838,7 @@
}
},
{
- "id": 8212,
+ "id": 8442,
"properties": {
"east": "tall",
"north": "tall",
@@ -55849,7 +55849,7 @@
}
},
{
- "id": 8213,
+ "id": 8443,
"properties": {
"east": "tall",
"north": "tall",
@@ -55860,7 +55860,7 @@
}
},
{
- "id": 8214,
+ "id": 8444,
"properties": {
"east": "tall",
"north": "tall",
@@ -55871,7 +55871,7 @@
}
},
{
- "id": 8215,
+ "id": 8445,
"properties": {
"east": "tall",
"north": "tall",
@@ -55882,7 +55882,7 @@
}
},
{
- "id": 8216,
+ "id": 8446,
"properties": {
"east": "tall",
"north": "tall",
@@ -55893,7 +55893,7 @@
}
},
{
- "id": 8217,
+ "id": 8447,
"properties": {
"east": "tall",
"north": "tall",
@@ -55904,7 +55904,7 @@
}
},
{
- "id": 8218,
+ "id": 8448,
"properties": {
"east": "tall",
"north": "tall",
@@ -55915,7 +55915,7 @@
}
},
{
- "id": 8219,
+ "id": 8449,
"properties": {
"east": "tall",
"north": "tall",
@@ -55926,7 +55926,7 @@
}
},
{
- "id": 8220,
+ "id": 8450,
"properties": {
"east": "tall",
"north": "tall",
@@ -55937,7 +55937,7 @@
}
},
{
- "id": 8221,
+ "id": 8451,
"properties": {
"east": "tall",
"north": "tall",
@@ -55948,7 +55948,7 @@
}
},
{
- "id": 8222,
+ "id": 8452,
"properties": {
"east": "tall",
"north": "tall",
@@ -55959,7 +55959,7 @@
}
},
{
- "id": 8223,
+ "id": 8453,
"properties": {
"east": "tall",
"north": "tall",
@@ -55970,7 +55970,7 @@
}
},
{
- "id": 8224,
+ "id": 8454,
"properties": {
"east": "tall",
"north": "tall",
@@ -55981,7 +55981,7 @@
}
},
{
- "id": 8225,
+ "id": 8455,
"properties": {
"east": "tall",
"north": "tall",
@@ -55992,7 +55992,7 @@
}
},
{
- "id": 8226,
+ "id": 8456,
"properties": {
"east": "tall",
"north": "tall",
@@ -56003,7 +56003,7 @@
}
},
{
- "id": 8227,
+ "id": 8457,
"properties": {
"east": "tall",
"north": "tall",
@@ -56014,7 +56014,7 @@
}
},
{
- "id": 8228,
+ "id": 8458,
"properties": {
"east": "tall",
"north": "tall",
@@ -56025,7 +56025,7 @@
}
},
{
- "id": 8229,
+ "id": 8459,
"properties": {
"east": "tall",
"north": "tall",
@@ -56036,7 +56036,7 @@
}
},
{
- "id": 8230,
+ "id": 8460,
"properties": {
"east": "tall",
"north": "tall",
@@ -56047,7 +56047,7 @@
}
},
{
- "id": 8231,
+ "id": 8461,
"properties": {
"east": "tall",
"north": "tall",
@@ -56058,7 +56058,7 @@
}
},
{
- "id": 8232,
+ "id": 8462,
"properties": {
"east": "tall",
"north": "tall",
@@ -56069,7 +56069,7 @@
}
},
{
- "id": 8233,
+ "id": 8463,
"properties": {
"east": "tall",
"north": "tall",
@@ -56080,7 +56080,7 @@
}
},
{
- "id": 8234,
+ "id": 8464,
"properties": {
"east": "tall",
"north": "tall",
@@ -56091,7 +56091,7 @@
}
},
{
- "id": 8235,
+ "id": 8465,
"properties": {
"east": "tall",
"north": "tall",
@@ -56102,7 +56102,7 @@
}
},
{
- "id": 8236,
+ "id": 8466,
"properties": {
"east": "tall",
"north": "tall",
@@ -56113,7 +56113,7 @@
}
},
{
- "id": 8237,
+ "id": 8467,
"properties": {
"east": "tall",
"north": "tall",
@@ -56124,7 +56124,7 @@
}
},
{
- "id": 8238,
+ "id": 8468,
"properties": {
"east": "tall",
"north": "tall",
@@ -56135,7 +56135,7 @@
}
},
{
- "id": 8239,
+ "id": 8469,
"properties": {
"east": "tall",
"north": "tall",
@@ -56146,7 +56146,7 @@
}
},
{
- "id": 8240,
+ "id": 8470,
"properties": {
"east": "tall",
"north": "tall",
@@ -56157,7 +56157,7 @@
}
},
{
- "id": 8241,
+ "id": 8471,
"properties": {
"east": "tall",
"north": "tall",
@@ -56168,7 +56168,7 @@
}
},
{
- "id": 8242,
+ "id": 8472,
"properties": {
"east": "tall",
"north": "tall",
@@ -56188,7 +56188,7 @@
"states": [
{
"default": true,
- "id": 2004
+ "id": 2047
}
]
},
@@ -56213,84 +56213,84 @@
"states": [
{
"default": true,
- "id": 7419,
+ "id": 7649,
"properties": {
"age": "0",
"facing": "north"
}
},
{
- "id": 7420,
+ "id": 7650,
"properties": {
"age": "0",
"facing": "south"
}
},
{
- "id": 7421,
+ "id": 7651,
"properties": {
"age": "0",
"facing": "west"
}
},
{
- "id": 7422,
+ "id": 7652,
"properties": {
"age": "0",
"facing": "east"
}
},
{
- "id": 7423,
+ "id": 7653,
"properties": {
"age": "1",
"facing": "north"
}
},
{
- "id": 7424,
+ "id": 7654,
"properties": {
"age": "1",
"facing": "south"
}
},
{
- "id": 7425,
+ "id": 7655,
"properties": {
"age": "1",
"facing": "west"
}
},
{
- "id": 7426,
+ "id": 7656,
"properties": {
"age": "1",
"facing": "east"
}
},
{
- "id": 7427,
+ "id": 7657,
"properties": {
"age": "2",
"facing": "north"
}
},
{
- "id": 7428,
+ "id": 7658,
"properties": {
"age": "2",
"facing": "south"
}
},
{
- "id": 7429,
+ "id": 7659,
"properties": {
"age": "2",
"facing": "west"
}
},
{
- "id": 7430,
+ "id": 7660,
"properties": {
"age": "2",
"facing": "east"
@@ -56320,42 +56320,42 @@
},
"states": [
{
- "id": 7906,
+ "id": 8136,
"properties": {
"conditional": "true",
"facing": "north"
}
},
{
- "id": 7907,
+ "id": 8137,
"properties": {
"conditional": "true",
"facing": "east"
}
},
{
- "id": 7908,
+ "id": 8138,
"properties": {
"conditional": "true",
"facing": "south"
}
},
{
- "id": 7909,
+ "id": 8139,
"properties": {
"conditional": "true",
"facing": "west"
}
},
{
- "id": 7910,
+ "id": 8140,
"properties": {
"conditional": "true",
"facing": "up"
}
},
{
- "id": 7911,
+ "id": 8141,
"properties": {
"conditional": "true",
"facing": "down"
@@ -56363,42 +56363,42 @@
},
{
"default": true,
- "id": 7912,
+ "id": 8142,
"properties": {
"conditional": "false",
"facing": "north"
}
},
{
- "id": 7913,
+ "id": 8143,
"properties": {
"conditional": "false",
"facing": "east"
}
},
{
- "id": 7914,
+ "id": 8144,
"properties": {
"conditional": "false",
"facing": "south"
}
},
{
- "id": 7915,
+ "id": 8145,
"properties": {
"conditional": "false",
"facing": "west"
}
},
{
- "id": 7916,
+ "id": 8146,
"properties": {
"conditional": "false",
"facing": "up"
}
},
{
- "id": 7917,
+ "id": 8147,
"properties": {
"conditional": "false",
"facing": "down"
@@ -56429,7 +56429,7 @@
},
"states": [
{
- "id": 9175,
+ "id": 9430,
"properties": {
"facing": "north",
"mode": "compare",
@@ -56438,7 +56438,7 @@
},
{
"default": true,
- "id": 9176,
+ "id": 9431,
"properties": {
"facing": "north",
"mode": "compare",
@@ -56446,7 +56446,7 @@
}
},
{
- "id": 9177,
+ "id": 9432,
"properties": {
"facing": "north",
"mode": "subtract",
@@ -56454,7 +56454,7 @@
}
},
{
- "id": 9178,
+ "id": 9433,
"properties": {
"facing": "north",
"mode": "subtract",
@@ -56462,7 +56462,7 @@
}
},
{
- "id": 9179,
+ "id": 9434,
"properties": {
"facing": "south",
"mode": "compare",
@@ -56470,7 +56470,7 @@
}
},
{
- "id": 9180,
+ "id": 9435,
"properties": {
"facing": "south",
"mode": "compare",
@@ -56478,7 +56478,7 @@
}
},
{
- "id": 9181,
+ "id": 9436,
"properties": {
"facing": "south",
"mode": "subtract",
@@ -56486,7 +56486,7 @@
}
},
{
- "id": 9182,
+ "id": 9437,
"properties": {
"facing": "south",
"mode": "subtract",
@@ -56494,7 +56494,7 @@
}
},
{
- "id": 9183,
+ "id": 9438,
"properties": {
"facing": "west",
"mode": "compare",
@@ -56502,7 +56502,7 @@
}
},
{
- "id": 9184,
+ "id": 9439,
"properties": {
"facing": "west",
"mode": "compare",
@@ -56510,7 +56510,7 @@
}
},
{
- "id": 9185,
+ "id": 9440,
"properties": {
"facing": "west",
"mode": "subtract",
@@ -56518,7 +56518,7 @@
}
},
{
- "id": 9186,
+ "id": 9441,
"properties": {
"facing": "west",
"mode": "subtract",
@@ -56526,7 +56526,7 @@
}
},
{
- "id": 9187,
+ "id": 9442,
"properties": {
"facing": "east",
"mode": "compare",
@@ -56534,7 +56534,7 @@
}
},
{
- "id": 9188,
+ "id": 9443,
"properties": {
"facing": "east",
"mode": "compare",
@@ -56542,7 +56542,7 @@
}
},
{
- "id": 9189,
+ "id": 9444,
"properties": {
"facing": "east",
"mode": "subtract",
@@ -56550,7 +56550,7 @@
}
},
{
- "id": 9190,
+ "id": 9445,
"properties": {
"facing": "east",
"mode": "subtract",
@@ -56580,55 +56580,55 @@
"states": [
{
"default": true,
- "id": 19372,
+ "id": 19841,
"properties": {
"level": "0"
}
},
{
- "id": 19373,
+ "id": 19842,
"properties": {
"level": "1"
}
},
{
- "id": 19374,
+ "id": 19843,
"properties": {
"level": "2"
}
},
{
- "id": 19375,
+ "id": 19844,
"properties": {
"level": "3"
}
},
{
- "id": 19376,
+ "id": 19845,
"properties": {
"level": "4"
}
},
{
- "id": 19377,
+ "id": 19846,
"properties": {
"level": "5"
}
},
{
- "id": 19378,
+ "id": 19847,
"properties": {
"level": "6"
}
},
{
- "id": 19379,
+ "id": 19848,
"properties": {
"level": "7"
}
},
{
- "id": 19380,
+ "id": 19849,
"properties": {
"level": "8"
}
@@ -56649,13 +56649,13 @@
"states": [
{
"default": true,
- "id": 12942,
+ "id": 13411,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12943,
+ "id": 13412,
"properties": {
"waterlogged": "false"
}
@@ -56671,7 +56671,7 @@
"states": [
{
"default": true,
- "id": 22938
+ "id": 23407
}
]
},
@@ -56693,21 +56693,21 @@
},
"states": [
{
- "id": 24692,
+ "id": 25161,
"properties": {
"lit": "true",
"powered": "true"
}
},
{
- "id": 24693,
+ "id": 25162,
"properties": {
"lit": "true",
"powered": "false"
}
},
{
- "id": 24694,
+ "id": 25163,
"properties": {
"lit": "false",
"powered": "true"
@@ -56715,7 +56715,7 @@
},
{
"default": true,
- "id": 24695,
+ "id": 25164,
"properties": {
"lit": "false",
"powered": "false"
@@ -56756,7 +56756,7 @@
},
"states": [
{
- "id": 23652,
+ "id": 24121,
"properties": {
"facing": "north",
"half": "upper",
@@ -56766,7 +56766,7 @@
}
},
{
- "id": 23653,
+ "id": 24122,
"properties": {
"facing": "north",
"half": "upper",
@@ -56776,7 +56776,7 @@
}
},
{
- "id": 23654,
+ "id": 24123,
"properties": {
"facing": "north",
"half": "upper",
@@ -56786,7 +56786,7 @@
}
},
{
- "id": 23655,
+ "id": 24124,
"properties": {
"facing": "north",
"half": "upper",
@@ -56796,7 +56796,7 @@
}
},
{
- "id": 23656,
+ "id": 24125,
"properties": {
"facing": "north",
"half": "upper",
@@ -56806,7 +56806,7 @@
}
},
{
- "id": 23657,
+ "id": 24126,
"properties": {
"facing": "north",
"half": "upper",
@@ -56816,7 +56816,7 @@
}
},
{
- "id": 23658,
+ "id": 24127,
"properties": {
"facing": "north",
"half": "upper",
@@ -56826,7 +56826,7 @@
}
},
{
- "id": 23659,
+ "id": 24128,
"properties": {
"facing": "north",
"half": "upper",
@@ -56836,7 +56836,7 @@
}
},
{
- "id": 23660,
+ "id": 24129,
"properties": {
"facing": "north",
"half": "lower",
@@ -56846,7 +56846,7 @@
}
},
{
- "id": 23661,
+ "id": 24130,
"properties": {
"facing": "north",
"half": "lower",
@@ -56856,7 +56856,7 @@
}
},
{
- "id": 23662,
+ "id": 24131,
"properties": {
"facing": "north",
"half": "lower",
@@ -56867,7 +56867,7 @@
},
{
"default": true,
- "id": 23663,
+ "id": 24132,
"properties": {
"facing": "north",
"half": "lower",
@@ -56877,7 +56877,7 @@
}
},
{
- "id": 23664,
+ "id": 24133,
"properties": {
"facing": "north",
"half": "lower",
@@ -56887,7 +56887,7 @@
}
},
{
- "id": 23665,
+ "id": 24134,
"properties": {
"facing": "north",
"half": "lower",
@@ -56897,7 +56897,7 @@
}
},
{
- "id": 23666,
+ "id": 24135,
"properties": {
"facing": "north",
"half": "lower",
@@ -56907,7 +56907,7 @@
}
},
{
- "id": 23667,
+ "id": 24136,
"properties": {
"facing": "north",
"half": "lower",
@@ -56917,7 +56917,7 @@
}
},
{
- "id": 23668,
+ "id": 24137,
"properties": {
"facing": "south",
"half": "upper",
@@ -56927,7 +56927,7 @@
}
},
{
- "id": 23669,
+ "id": 24138,
"properties": {
"facing": "south",
"half": "upper",
@@ -56937,7 +56937,7 @@
}
},
{
- "id": 23670,
+ "id": 24139,
"properties": {
"facing": "south",
"half": "upper",
@@ -56947,7 +56947,7 @@
}
},
{
- "id": 23671,
+ "id": 24140,
"properties": {
"facing": "south",
"half": "upper",
@@ -56957,7 +56957,7 @@
}
},
{
- "id": 23672,
+ "id": 24141,
"properties": {
"facing": "south",
"half": "upper",
@@ -56967,7 +56967,7 @@
}
},
{
- "id": 23673,
+ "id": 24142,
"properties": {
"facing": "south",
"half": "upper",
@@ -56977,7 +56977,7 @@
}
},
{
- "id": 23674,
+ "id": 24143,
"properties": {
"facing": "south",
"half": "upper",
@@ -56987,7 +56987,7 @@
}
},
{
- "id": 23675,
+ "id": 24144,
"properties": {
"facing": "south",
"half": "upper",
@@ -56997,7 +56997,7 @@
}
},
{
- "id": 23676,
+ "id": 24145,
"properties": {
"facing": "south",
"half": "lower",
@@ -57007,7 +57007,7 @@
}
},
{
- "id": 23677,
+ "id": 24146,
"properties": {
"facing": "south",
"half": "lower",
@@ -57017,7 +57017,7 @@
}
},
{
- "id": 23678,
+ "id": 24147,
"properties": {
"facing": "south",
"half": "lower",
@@ -57027,7 +57027,7 @@
}
},
{
- "id": 23679,
+ "id": 24148,
"properties": {
"facing": "south",
"half": "lower",
@@ -57037,7 +57037,7 @@
}
},
{
- "id": 23680,
+ "id": 24149,
"properties": {
"facing": "south",
"half": "lower",
@@ -57047,7 +57047,7 @@
}
},
{
- "id": 23681,
+ "id": 24150,
"properties": {
"facing": "south",
"half": "lower",
@@ -57057,7 +57057,7 @@
}
},
{
- "id": 23682,
+ "id": 24151,
"properties": {
"facing": "south",
"half": "lower",
@@ -57067,7 +57067,7 @@
}
},
{
- "id": 23683,
+ "id": 24152,
"properties": {
"facing": "south",
"half": "lower",
@@ -57077,7 +57077,7 @@
}
},
{
- "id": 23684,
+ "id": 24153,
"properties": {
"facing": "west",
"half": "upper",
@@ -57087,7 +57087,7 @@
}
},
{
- "id": 23685,
+ "id": 24154,
"properties": {
"facing": "west",
"half": "upper",
@@ -57097,7 +57097,7 @@
}
},
{
- "id": 23686,
+ "id": 24155,
"properties": {
"facing": "west",
"half": "upper",
@@ -57107,7 +57107,7 @@
}
},
{
- "id": 23687,
+ "id": 24156,
"properties": {
"facing": "west",
"half": "upper",
@@ -57117,7 +57117,7 @@
}
},
{
- "id": 23688,
+ "id": 24157,
"properties": {
"facing": "west",
"half": "upper",
@@ -57127,7 +57127,7 @@
}
},
{
- "id": 23689,
+ "id": 24158,
"properties": {
"facing": "west",
"half": "upper",
@@ -57137,7 +57137,7 @@
}
},
{
- "id": 23690,
+ "id": 24159,
"properties": {
"facing": "west",
"half": "upper",
@@ -57147,7 +57147,7 @@
}
},
{
- "id": 23691,
+ "id": 24160,
"properties": {
"facing": "west",
"half": "upper",
@@ -57157,7 +57157,7 @@
}
},
{
- "id": 23692,
+ "id": 24161,
"properties": {
"facing": "west",
"half": "lower",
@@ -57167,7 +57167,7 @@
}
},
{
- "id": 23693,
+ "id": 24162,
"properties": {
"facing": "west",
"half": "lower",
@@ -57177,7 +57177,7 @@
}
},
{
- "id": 23694,
+ "id": 24163,
"properties": {
"facing": "west",
"half": "lower",
@@ -57187,7 +57187,7 @@
}
},
{
- "id": 23695,
+ "id": 24164,
"properties": {
"facing": "west",
"half": "lower",
@@ -57197,7 +57197,7 @@
}
},
{
- "id": 23696,
+ "id": 24165,
"properties": {
"facing": "west",
"half": "lower",
@@ -57207,7 +57207,7 @@
}
},
{
- "id": 23697,
+ "id": 24166,
"properties": {
"facing": "west",
"half": "lower",
@@ -57217,7 +57217,7 @@
}
},
{
- "id": 23698,
+ "id": 24167,
"properties": {
"facing": "west",
"half": "lower",
@@ -57227,7 +57227,7 @@
}
},
{
- "id": 23699,
+ "id": 24168,
"properties": {
"facing": "west",
"half": "lower",
@@ -57237,7 +57237,7 @@
}
},
{
- "id": 23700,
+ "id": 24169,
"properties": {
"facing": "east",
"half": "upper",
@@ -57247,7 +57247,7 @@
}
},
{
- "id": 23701,
+ "id": 24170,
"properties": {
"facing": "east",
"half": "upper",
@@ -57257,7 +57257,7 @@
}
},
{
- "id": 23702,
+ "id": 24171,
"properties": {
"facing": "east",
"half": "upper",
@@ -57267,7 +57267,7 @@
}
},
{
- "id": 23703,
+ "id": 24172,
"properties": {
"facing": "east",
"half": "upper",
@@ -57277,7 +57277,7 @@
}
},
{
- "id": 23704,
+ "id": 24173,
"properties": {
"facing": "east",
"half": "upper",
@@ -57287,7 +57287,7 @@
}
},
{
- "id": 23705,
+ "id": 24174,
"properties": {
"facing": "east",
"half": "upper",
@@ -57297,7 +57297,7 @@
}
},
{
- "id": 23706,
+ "id": 24175,
"properties": {
"facing": "east",
"half": "upper",
@@ -57307,7 +57307,7 @@
}
},
{
- "id": 23707,
+ "id": 24176,
"properties": {
"facing": "east",
"half": "upper",
@@ -57317,7 +57317,7 @@
}
},
{
- "id": 23708,
+ "id": 24177,
"properties": {
"facing": "east",
"half": "lower",
@@ -57327,7 +57327,7 @@
}
},
{
- "id": 23709,
+ "id": 24178,
"properties": {
"facing": "east",
"half": "lower",
@@ -57337,7 +57337,7 @@
}
},
{
- "id": 23710,
+ "id": 24179,
"properties": {
"facing": "east",
"half": "lower",
@@ -57347,7 +57347,7 @@
}
},
{
- "id": 23711,
+ "id": 24180,
"properties": {
"facing": "east",
"half": "lower",
@@ -57357,7 +57357,7 @@
}
},
{
- "id": 23712,
+ "id": 24181,
"properties": {
"facing": "east",
"half": "lower",
@@ -57367,7 +57367,7 @@
}
},
{
- "id": 23713,
+ "id": 24182,
"properties": {
"facing": "east",
"half": "lower",
@@ -57377,7 +57377,7 @@
}
},
{
- "id": 23714,
+ "id": 24183,
"properties": {
"facing": "east",
"half": "lower",
@@ -57387,7 +57387,7 @@
}
},
{
- "id": 23715,
+ "id": 24184,
"properties": {
"facing": "east",
"half": "lower",
@@ -57412,14 +57412,14 @@
},
"states": [
{
- "id": 24676,
+ "id": 25145,
"properties": {
"waterlogged": "true"
}
},
{
"default": true,
- "id": 24677,
+ "id": 25146,
"properties": {
"waterlogged": "false"
}
@@ -57435,7 +57435,7 @@
"states": [
{
"default": true,
- "id": 22942
+ "id": 23411
}
]
},
@@ -57472,7 +57472,7 @@
},
"states": [
{
- "id": 24164,
+ "id": 24633,
"properties": {
"facing": "north",
"half": "top",
@@ -57482,7 +57482,7 @@
}
},
{
- "id": 24165,
+ "id": 24634,
"properties": {
"facing": "north",
"half": "top",
@@ -57492,7 +57492,7 @@
}
},
{
- "id": 24166,
+ "id": 24635,
"properties": {
"facing": "north",
"half": "top",
@@ -57502,7 +57502,7 @@
}
},
{
- "id": 24167,
+ "id": 24636,
"properties": {
"facing": "north",
"half": "top",
@@ -57512,7 +57512,7 @@
}
},
{
- "id": 24168,
+ "id": 24637,
"properties": {
"facing": "north",
"half": "top",
@@ -57522,7 +57522,7 @@
}
},
{
- "id": 24169,
+ "id": 24638,
"properties": {
"facing": "north",
"half": "top",
@@ -57532,7 +57532,7 @@
}
},
{
- "id": 24170,
+ "id": 24639,
"properties": {
"facing": "north",
"half": "top",
@@ -57542,7 +57542,7 @@
}
},
{
- "id": 24171,
+ "id": 24640,
"properties": {
"facing": "north",
"half": "top",
@@ -57552,7 +57552,7 @@
}
},
{
- "id": 24172,
+ "id": 24641,
"properties": {
"facing": "north",
"half": "bottom",
@@ -57562,7 +57562,7 @@
}
},
{
- "id": 24173,
+ "id": 24642,
"properties": {
"facing": "north",
"half": "bottom",
@@ -57572,7 +57572,7 @@
}
},
{
- "id": 24174,
+ "id": 24643,
"properties": {
"facing": "north",
"half": "bottom",
@@ -57582,7 +57582,7 @@
}
},
{
- "id": 24175,
+ "id": 24644,
"properties": {
"facing": "north",
"half": "bottom",
@@ -57592,7 +57592,7 @@
}
},
{
- "id": 24176,
+ "id": 24645,
"properties": {
"facing": "north",
"half": "bottom",
@@ -57602,7 +57602,7 @@
}
},
{
- "id": 24177,
+ "id": 24646,
"properties": {
"facing": "north",
"half": "bottom",
@@ -57612,7 +57612,7 @@
}
},
{
- "id": 24178,
+ "id": 24647,
"properties": {
"facing": "north",
"half": "bottom",
@@ -57623,7 +57623,7 @@
},
{
"default": true,
- "id": 24179,
+ "id": 24648,
"properties": {
"facing": "north",
"half": "bottom",
@@ -57633,7 +57633,7 @@
}
},
{
- "id": 24180,
+ "id": 24649,
"properties": {
"facing": "south",
"half": "top",
@@ -57643,7 +57643,7 @@
}
},
{
- "id": 24181,
+ "id": 24650,
"properties": {
"facing": "south",
"half": "top",
@@ -57653,7 +57653,7 @@
}
},
{
- "id": 24182,
+ "id": 24651,
"properties": {
"facing": "south",
"half": "top",
@@ -57663,7 +57663,7 @@
}
},
{
- "id": 24183,
+ "id": 24652,
"properties": {
"facing": "south",
"half": "top",
@@ -57673,7 +57673,7 @@
}
},
{
- "id": 24184,
+ "id": 24653,
"properties": {
"facing": "south",
"half": "top",
@@ -57683,7 +57683,7 @@
}
},
{
- "id": 24185,
+ "id": 24654,
"properties": {
"facing": "south",
"half": "top",
@@ -57693,7 +57693,7 @@
}
},
{
- "id": 24186,
+ "id": 24655,
"properties": {
"facing": "south",
"half": "top",
@@ -57703,7 +57703,7 @@
}
},
{
- "id": 24187,
+ "id": 24656,
"properties": {
"facing": "south",
"half": "top",
@@ -57713,7 +57713,7 @@
}
},
{
- "id": 24188,
+ "id": 24657,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57723,7 +57723,7 @@
}
},
{
- "id": 24189,
+ "id": 24658,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57733,7 +57733,7 @@
}
},
{
- "id": 24190,
+ "id": 24659,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57743,7 +57743,7 @@
}
},
{
- "id": 24191,
+ "id": 24660,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57753,7 +57753,7 @@
}
},
{
- "id": 24192,
+ "id": 24661,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57763,7 +57763,7 @@
}
},
{
- "id": 24193,
+ "id": 24662,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57773,7 +57773,7 @@
}
},
{
- "id": 24194,
+ "id": 24663,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57783,7 +57783,7 @@
}
},
{
- "id": 24195,
+ "id": 24664,
"properties": {
"facing": "south",
"half": "bottom",
@@ -57793,7 +57793,7 @@
}
},
{
- "id": 24196,
+ "id": 24665,
"properties": {
"facing": "west",
"half": "top",
@@ -57803,7 +57803,7 @@
}
},
{
- "id": 24197,
+ "id": 24666,
"properties": {
"facing": "west",
"half": "top",
@@ -57813,7 +57813,7 @@
}
},
{
- "id": 24198,
+ "id": 24667,
"properties": {
"facing": "west",
"half": "top",
@@ -57823,7 +57823,7 @@
}
},
{
- "id": 24199,
+ "id": 24668,
"properties": {
"facing": "west",
"half": "top",
@@ -57833,7 +57833,7 @@
}
},
{
- "id": 24200,
+ "id": 24669,
"properties": {
"facing": "west",
"half": "top",
@@ -57843,7 +57843,7 @@
}
},
{
- "id": 24201,
+ "id": 24670,
"properties": {
"facing": "west",
"half": "top",
@@ -57853,7 +57853,7 @@
}
},
{
- "id": 24202,
+ "id": 24671,
"properties": {
"facing": "west",
"half": "top",
@@ -57863,7 +57863,7 @@
}
},
{
- "id": 24203,
+ "id": 24672,
"properties": {
"facing": "west",
"half": "top",
@@ -57873,7 +57873,7 @@
}
},
{
- "id": 24204,
+ "id": 24673,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57883,7 +57883,7 @@
}
},
{
- "id": 24205,
+ "id": 24674,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57893,7 +57893,7 @@
}
},
{
- "id": 24206,
+ "id": 24675,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57903,7 +57903,7 @@
}
},
{
- "id": 24207,
+ "id": 24676,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57913,7 +57913,7 @@
}
},
{
- "id": 24208,
+ "id": 24677,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57923,7 +57923,7 @@
}
},
{
- "id": 24209,
+ "id": 24678,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57933,7 +57933,7 @@
}
},
{
- "id": 24210,
+ "id": 24679,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57943,7 +57943,7 @@
}
},
{
- "id": 24211,
+ "id": 24680,
"properties": {
"facing": "west",
"half": "bottom",
@@ -57953,7 +57953,7 @@
}
},
{
- "id": 24212,
+ "id": 24681,
"properties": {
"facing": "east",
"half": "top",
@@ -57963,7 +57963,7 @@
}
},
{
- "id": 24213,
+ "id": 24682,
"properties": {
"facing": "east",
"half": "top",
@@ -57973,7 +57973,7 @@
}
},
{
- "id": 24214,
+ "id": 24683,
"properties": {
"facing": "east",
"half": "top",
@@ -57983,7 +57983,7 @@
}
},
{
- "id": 24215,
+ "id": 24684,
"properties": {
"facing": "east",
"half": "top",
@@ -57993,7 +57993,7 @@
}
},
{
- "id": 24216,
+ "id": 24685,
"properties": {
"facing": "east",
"half": "top",
@@ -58003,7 +58003,7 @@
}
},
{
- "id": 24217,
+ "id": 24686,
"properties": {
"facing": "east",
"half": "top",
@@ -58013,7 +58013,7 @@
}
},
{
- "id": 24218,
+ "id": 24687,
"properties": {
"facing": "east",
"half": "top",
@@ -58023,7 +58023,7 @@
}
},
{
- "id": 24219,
+ "id": 24688,
"properties": {
"facing": "east",
"half": "top",
@@ -58033,7 +58033,7 @@
}
},
{
- "id": 24220,
+ "id": 24689,
"properties": {
"facing": "east",
"half": "bottom",
@@ -58043,7 +58043,7 @@
}
},
{
- "id": 24221,
+ "id": 24690,
"properties": {
"facing": "east",
"half": "bottom",
@@ -58053,7 +58053,7 @@
}
},
{
- "id": 24222,
+ "id": 24691,
"properties": {
"facing": "east",
"half": "bottom",
@@ -58063,7 +58063,7 @@
}
},
{
- "id": 24223,
+ "id": 24692,
"properties": {
"facing": "east",
"half": "bottom",
@@ -58073,7 +58073,7 @@
}
},
{
- "id": 24224,
+ "id": 24693,
"properties": {
"facing": "east",
"half": "bottom",
@@ -58083,7 +58083,7 @@
}
},
{
- "id": 24225,
+ "id": 24694,
"properties": {
"facing": "east",
"half": "bottom",
@@ -58093,7 +58093,7 @@
}
},
{
- "id": 24226,
+ "id": 24695,
"properties": {
"facing": "east",
"half": "bottom",
@@ -58103,7 +58103,7 @@
}
},
{
- "id": 24227,
+ "id": 24696,
"properties": {
"facing": "east",
"half": "bottom",
@@ -58128,7 +58128,7 @@
"states": [
{
"default": true,
- "id": 2086
+ "id": 2129
}
]
},
@@ -58140,7 +58140,7 @@
"states": [
{
"default": true,
- "id": 26552
+ "id": 27021
}
]
},
@@ -58152,7 +58152,7 @@
"states": [
{
"default": true,
- "id": 26553
+ "id": 27022
}
]
},
@@ -58164,7 +58164,7 @@
"states": [
{
"default": true,
- "id": 20723
+ "id": 21192
}
]
},
@@ -58176,7 +58176,7 @@
"states": [
{
"default": true,
- "id": 19873
+ "id": 20342
}
]
},
@@ -58188,7 +58188,7 @@
"states": [
{
"default": true,
- "id": 6539
+ "id": 6769
}
]
},
@@ -58223,7 +58223,7 @@
},
"states": [
{
- "id": 26590,
+ "id": 27059,
"properties": {
"crafting": "true",
"orientation": "down_east",
@@ -58231,7 +58231,7 @@
}
},
{
- "id": 26591,
+ "id": 27060,
"properties": {
"crafting": "true",
"orientation": "down_east",
@@ -58239,7 +58239,7 @@
}
},
{
- "id": 26592,
+ "id": 27061,
"properties": {
"crafting": "true",
"orientation": "down_north",
@@ -58247,7 +58247,7 @@
}
},
{
- "id": 26593,
+ "id": 27062,
"properties": {
"crafting": "true",
"orientation": "down_north",
@@ -58255,7 +58255,7 @@
}
},
{
- "id": 26594,
+ "id": 27063,
"properties": {
"crafting": "true",
"orientation": "down_south",
@@ -58263,7 +58263,7 @@
}
},
{
- "id": 26595,
+ "id": 27064,
"properties": {
"crafting": "true",
"orientation": "down_south",
@@ -58271,7 +58271,7 @@
}
},
{
- "id": 26596,
+ "id": 27065,
"properties": {
"crafting": "true",
"orientation": "down_west",
@@ -58279,7 +58279,7 @@
}
},
{
- "id": 26597,
+ "id": 27066,
"properties": {
"crafting": "true",
"orientation": "down_west",
@@ -58287,7 +58287,7 @@
}
},
{
- "id": 26598,
+ "id": 27067,
"properties": {
"crafting": "true",
"orientation": "up_east",
@@ -58295,7 +58295,7 @@
}
},
{
- "id": 26599,
+ "id": 27068,
"properties": {
"crafting": "true",
"orientation": "up_east",
@@ -58303,7 +58303,7 @@
}
},
{
- "id": 26600,
+ "id": 27069,
"properties": {
"crafting": "true",
"orientation": "up_north",
@@ -58311,7 +58311,7 @@
}
},
{
- "id": 26601,
+ "id": 27070,
"properties": {
"crafting": "true",
"orientation": "up_north",
@@ -58319,7 +58319,7 @@
}
},
{
- "id": 26602,
+ "id": 27071,
"properties": {
"crafting": "true",
"orientation": "up_south",
@@ -58327,7 +58327,7 @@
}
},
{
- "id": 26603,
+ "id": 27072,
"properties": {
"crafting": "true",
"orientation": "up_south",
@@ -58335,7 +58335,7 @@
}
},
{
- "id": 26604,
+ "id": 27073,
"properties": {
"crafting": "true",
"orientation": "up_west",
@@ -58343,7 +58343,7 @@
}
},
{
- "id": 26605,
+ "id": 27074,
"properties": {
"crafting": "true",
"orientation": "up_west",
@@ -58351,7 +58351,7 @@
}
},
{
- "id": 26606,
+ "id": 27075,
"properties": {
"crafting": "true",
"orientation": "west_up",
@@ -58359,7 +58359,7 @@
}
},
{
- "id": 26607,
+ "id": 27076,
"properties": {
"crafting": "true",
"orientation": "west_up",
@@ -58367,7 +58367,7 @@
}
},
{
- "id": 26608,
+ "id": 27077,
"properties": {
"crafting": "true",
"orientation": "east_up",
@@ -58375,7 +58375,7 @@
}
},
{
- "id": 26609,
+ "id": 27078,
"properties": {
"crafting": "true",
"orientation": "east_up",
@@ -58383,7 +58383,7 @@
}
},
{
- "id": 26610,
+ "id": 27079,
"properties": {
"crafting": "true",
"orientation": "north_up",
@@ -58391,7 +58391,7 @@
}
},
{
- "id": 26611,
+ "id": 27080,
"properties": {
"crafting": "true",
"orientation": "north_up",
@@ -58399,7 +58399,7 @@
}
},
{
- "id": 26612,
+ "id": 27081,
"properties": {
"crafting": "true",
"orientation": "south_up",
@@ -58407,7 +58407,7 @@
}
},
{
- "id": 26613,
+ "id": 27082,
"properties": {
"crafting": "true",
"orientation": "south_up",
@@ -58415,7 +58415,7 @@
}
},
{
- "id": 26614,
+ "id": 27083,
"properties": {
"crafting": "false",
"orientation": "down_east",
@@ -58423,7 +58423,7 @@
}
},
{
- "id": 26615,
+ "id": 27084,
"properties": {
"crafting": "false",
"orientation": "down_east",
@@ -58431,7 +58431,7 @@
}
},
{
- "id": 26616,
+ "id": 27085,
"properties": {
"crafting": "false",
"orientation": "down_north",
@@ -58439,7 +58439,7 @@
}
},
{
- "id": 26617,
+ "id": 27086,
"properties": {
"crafting": "false",
"orientation": "down_north",
@@ -58447,7 +58447,7 @@
}
},
{
- "id": 26618,
+ "id": 27087,
"properties": {
"crafting": "false",
"orientation": "down_south",
@@ -58455,7 +58455,7 @@
}
},
{
- "id": 26619,
+ "id": 27088,
"properties": {
"crafting": "false",
"orientation": "down_south",
@@ -58463,7 +58463,7 @@
}
},
{
- "id": 26620,
+ "id": 27089,
"properties": {
"crafting": "false",
"orientation": "down_west",
@@ -58471,7 +58471,7 @@
}
},
{
- "id": 26621,
+ "id": 27090,
"properties": {
"crafting": "false",
"orientation": "down_west",
@@ -58479,7 +58479,7 @@
}
},
{
- "id": 26622,
+ "id": 27091,
"properties": {
"crafting": "false",
"orientation": "up_east",
@@ -58487,7 +58487,7 @@
}
},
{
- "id": 26623,
+ "id": 27092,
"properties": {
"crafting": "false",
"orientation": "up_east",
@@ -58495,7 +58495,7 @@
}
},
{
- "id": 26624,
+ "id": 27093,
"properties": {
"crafting": "false",
"orientation": "up_north",
@@ -58503,7 +58503,7 @@
}
},
{
- "id": 26625,
+ "id": 27094,
"properties": {
"crafting": "false",
"orientation": "up_north",
@@ -58511,7 +58511,7 @@
}
},
{
- "id": 26626,
+ "id": 27095,
"properties": {
"crafting": "false",
"orientation": "up_south",
@@ -58519,7 +58519,7 @@
}
},
{
- "id": 26627,
+ "id": 27096,
"properties": {
"crafting": "false",
"orientation": "up_south",
@@ -58527,7 +58527,7 @@
}
},
{
- "id": 26628,
+ "id": 27097,
"properties": {
"crafting": "false",
"orientation": "up_west",
@@ -58535,7 +58535,7 @@
}
},
{
- "id": 26629,
+ "id": 27098,
"properties": {
"crafting": "false",
"orientation": "up_west",
@@ -58543,7 +58543,7 @@
}
},
{
- "id": 26630,
+ "id": 27099,
"properties": {
"crafting": "false",
"orientation": "west_up",
@@ -58551,7 +58551,7 @@
}
},
{
- "id": 26631,
+ "id": 27100,
"properties": {
"crafting": "false",
"orientation": "west_up",
@@ -58559,7 +58559,7 @@
}
},
{
- "id": 26632,
+ "id": 27101,
"properties": {
"crafting": "false",
"orientation": "east_up",
@@ -58567,7 +58567,7 @@
}
},
{
- "id": 26633,
+ "id": 27102,
"properties": {
"crafting": "false",
"orientation": "east_up",
@@ -58575,7 +58575,7 @@
}
},
{
- "id": 26634,
+ "id": 27103,
"properties": {
"crafting": "false",
"orientation": "north_up",
@@ -58584,7 +58584,7 @@
},
{
"default": true,
- "id": 26635,
+ "id": 27104,
"properties": {
"crafting": "false",
"orientation": "north_up",
@@ -58592,7 +58592,7 @@
}
},
{
- "id": 26636,
+ "id": 27105,
"properties": {
"crafting": "false",
"orientation": "south_up",
@@ -58600,7 +58600,7 @@
}
},
{
- "id": 26637,
+ "id": 27106,
"properties": {
"crafting": "false",
"orientation": "south_up",
@@ -58617,7 +58617,91 @@
"states": [
{
"default": true,
- "id": 4277
+ "id": 4329
+ }
+ ]
+ },
+ "minecraft:creaking_heart": {
+ "definition": {
+ "type": "minecraft:creaking_heart",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ],
+ "creaking": [
+ "disabled",
+ "dormant",
+ "active"
+ ]
+ },
+ "states": [
+ {
+ "id": 2917,
+ "properties": {
+ "axis": "x",
+ "creaking": "disabled"
+ }
+ },
+ {
+ "id": 2918,
+ "properties": {
+ "axis": "x",
+ "creaking": "dormant"
+ }
+ },
+ {
+ "id": 2919,
+ "properties": {
+ "axis": "x",
+ "creaking": "active"
+ }
+ },
+ {
+ "default": true,
+ "id": 2920,
+ "properties": {
+ "axis": "y",
+ "creaking": "disabled"
+ }
+ },
+ {
+ "id": 2921,
+ "properties": {
+ "axis": "y",
+ "creaking": "dormant"
+ }
+ },
+ {
+ "id": 2922,
+ "properties": {
+ "axis": "y",
+ "creaking": "active"
+ }
+ },
+ {
+ "id": 2923,
+ "properties": {
+ "axis": "z",
+ "creaking": "disabled"
+ }
+ },
+ {
+ "id": 2924,
+ "properties": {
+ "axis": "z",
+ "creaking": "dormant"
+ }
+ },
+ {
+ "id": 2925,
+ "properties": {
+ "axis": "z",
+ "creaking": "active"
+ }
}
]
},
@@ -58653,112 +58737,112 @@
},
"states": [
{
- "id": 8987,
+ "id": 9242,
"properties": {
"powered": "true",
"rotation": "0"
}
},
{
- "id": 8988,
+ "id": 9243,
"properties": {
"powered": "true",
"rotation": "1"
}
},
{
- "id": 8989,
+ "id": 9244,
"properties": {
"powered": "true",
"rotation": "2"
}
},
{
- "id": 8990,
+ "id": 9245,
"properties": {
"powered": "true",
"rotation": "3"
}
},
{
- "id": 8991,
+ "id": 9246,
"properties": {
"powered": "true",
"rotation": "4"
}
},
{
- "id": 8992,
+ "id": 9247,
"properties": {
"powered": "true",
"rotation": "5"
}
},
{
- "id": 8993,
+ "id": 9248,
"properties": {
"powered": "true",
"rotation": "6"
}
},
{
- "id": 8994,
+ "id": 9249,
"properties": {
"powered": "true",
"rotation": "7"
}
},
{
- "id": 8995,
+ "id": 9250,
"properties": {
"powered": "true",
"rotation": "8"
}
},
{
- "id": 8996,
+ "id": 9251,
"properties": {
"powered": "true",
"rotation": "9"
}
},
{
- "id": 8997,
+ "id": 9252,
"properties": {
"powered": "true",
"rotation": "10"
}
},
{
- "id": 8998,
+ "id": 9253,
"properties": {
"powered": "true",
"rotation": "11"
}
},
{
- "id": 8999,
+ "id": 9254,
"properties": {
"powered": "true",
"rotation": "12"
}
},
{
- "id": 9000,
+ "id": 9255,
"properties": {
"powered": "true",
"rotation": "13"
}
},
{
- "id": 9001,
+ "id": 9256,
"properties": {
"powered": "true",
"rotation": "14"
}
},
{
- "id": 9002,
+ "id": 9257,
"properties": {
"powered": "true",
"rotation": "15"
@@ -58766,112 +58850,112 @@
},
{
"default": true,
- "id": 9003,
+ "id": 9258,
"properties": {
"powered": "false",
"rotation": "0"
}
},
{
- "id": 9004,
+ "id": 9259,
"properties": {
"powered": "false",
"rotation": "1"
}
},
{
- "id": 9005,
+ "id": 9260,
"properties": {
"powered": "false",
"rotation": "2"
}
},
{
- "id": 9006,
+ "id": 9261,
"properties": {
"powered": "false",
"rotation": "3"
}
},
{
- "id": 9007,
+ "id": 9262,
"properties": {
"powered": "false",
"rotation": "4"
}
},
{
- "id": 9008,
+ "id": 9263,
"properties": {
"powered": "false",
"rotation": "5"
}
},
{
- "id": 9009,
+ "id": 9264,
"properties": {
"powered": "false",
"rotation": "6"
}
},
{
- "id": 9010,
+ "id": 9265,
"properties": {
"powered": "false",
"rotation": "7"
}
},
{
- "id": 9011,
+ "id": 9266,
"properties": {
"powered": "false",
"rotation": "8"
}
},
{
- "id": 9012,
+ "id": 9267,
"properties": {
"powered": "false",
"rotation": "9"
}
},
{
- "id": 9013,
+ "id": 9268,
"properties": {
"powered": "false",
"rotation": "10"
}
},
{
- "id": 9014,
+ "id": 9269,
"properties": {
"powered": "false",
"rotation": "11"
}
},
{
- "id": 9015,
+ "id": 9270,
"properties": {
"powered": "false",
"rotation": "12"
}
},
{
- "id": 9016,
+ "id": 9271,
"properties": {
"powered": "false",
"rotation": "13"
}
},
{
- "id": 9017,
+ "id": 9272,
"properties": {
"powered": "false",
"rotation": "14"
}
},
{
- "id": 9018,
+ "id": 9273,
"properties": {
"powered": "false",
"rotation": "15"
@@ -58899,7 +58983,7 @@
},
"states": [
{
- "id": 9019,
+ "id": 9274,
"properties": {
"facing": "north",
"powered": "true"
@@ -58907,49 +58991,49 @@
},
{
"default": true,
- "id": 9020,
+ "id": 9275,
"properties": {
"facing": "north",
"powered": "false"
}
},
{
- "id": 9021,
+ "id": 9276,
"properties": {
"facing": "south",
"powered": "true"
}
},
{
- "id": 9022,
+ "id": 9277,
"properties": {
"facing": "south",
"powered": "false"
}
},
{
- "id": 9023,
+ "id": 9278,
"properties": {
"facing": "west",
"powered": "true"
}
},
{
- "id": 9024,
+ "id": 9279,
"properties": {
"facing": "west",
"powered": "false"
}
},
{
- "id": 9025,
+ "id": 9280,
"properties": {
"facing": "east",
"powered": "true"
}
},
{
- "id": 9026,
+ "id": 9281,
"properties": {
"facing": "east",
"powered": "false"
@@ -58983,7 +59067,7 @@
},
"states": [
{
- "id": 19100,
+ "id": 19569,
"properties": {
"face": "floor",
"facing": "north",
@@ -58991,7 +59075,7 @@
}
},
{
- "id": 19101,
+ "id": 19570,
"properties": {
"face": "floor",
"facing": "north",
@@ -58999,7 +59083,7 @@
}
},
{
- "id": 19102,
+ "id": 19571,
"properties": {
"face": "floor",
"facing": "south",
@@ -59007,7 +59091,7 @@
}
},
{
- "id": 19103,
+ "id": 19572,
"properties": {
"face": "floor",
"facing": "south",
@@ -59015,7 +59099,7 @@
}
},
{
- "id": 19104,
+ "id": 19573,
"properties": {
"face": "floor",
"facing": "west",
@@ -59023,7 +59107,7 @@
}
},
{
- "id": 19105,
+ "id": 19574,
"properties": {
"face": "floor",
"facing": "west",
@@ -59031,7 +59115,7 @@
}
},
{
- "id": 19106,
+ "id": 19575,
"properties": {
"face": "floor",
"facing": "east",
@@ -59039,7 +59123,7 @@
}
},
{
- "id": 19107,
+ "id": 19576,
"properties": {
"face": "floor",
"facing": "east",
@@ -59047,7 +59131,7 @@
}
},
{
- "id": 19108,
+ "id": 19577,
"properties": {
"face": "wall",
"facing": "north",
@@ -59056,7 +59140,7 @@
},
{
"default": true,
- "id": 19109,
+ "id": 19578,
"properties": {
"face": "wall",
"facing": "north",
@@ -59064,7 +59148,7 @@
}
},
{
- "id": 19110,
+ "id": 19579,
"properties": {
"face": "wall",
"facing": "south",
@@ -59072,7 +59156,7 @@
}
},
{
- "id": 19111,
+ "id": 19580,
"properties": {
"face": "wall",
"facing": "south",
@@ -59080,7 +59164,7 @@
}
},
{
- "id": 19112,
+ "id": 19581,
"properties": {
"face": "wall",
"facing": "west",
@@ -59088,7 +59172,7 @@
}
},
{
- "id": 19113,
+ "id": 19582,
"properties": {
"face": "wall",
"facing": "west",
@@ -59096,7 +59180,7 @@
}
},
{
- "id": 19114,
+ "id": 19583,
"properties": {
"face": "wall",
"facing": "east",
@@ -59104,7 +59188,7 @@
}
},
{
- "id": 19115,
+ "id": 19584,
"properties": {
"face": "wall",
"facing": "east",
@@ -59112,7 +59196,7 @@
}
},
{
- "id": 19116,
+ "id": 19585,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -59120,7 +59204,7 @@
}
},
{
- "id": 19117,
+ "id": 19586,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -59128,7 +59212,7 @@
}
},
{
- "id": 19118,
+ "id": 19587,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -59136,7 +59220,7 @@
}
},
{
- "id": 19119,
+ "id": 19588,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -59144,7 +59228,7 @@
}
},
{
- "id": 19120,
+ "id": 19589,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -59152,7 +59236,7 @@
}
},
{
- "id": 19121,
+ "id": 19590,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -59160,7 +59244,7 @@
}
},
{
- "id": 19122,
+ "id": 19591,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -59168,7 +59252,7 @@
}
},
{
- "id": 19123,
+ "id": 19592,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -59209,7 +59293,7 @@
},
"states": [
{
- "id": 19148,
+ "id": 19617,
"properties": {
"facing": "north",
"half": "upper",
@@ -59219,7 +59303,7 @@
}
},
{
- "id": 19149,
+ "id": 19618,
"properties": {
"facing": "north",
"half": "upper",
@@ -59229,7 +59313,7 @@
}
},
{
- "id": 19150,
+ "id": 19619,
"properties": {
"facing": "north",
"half": "upper",
@@ -59239,7 +59323,7 @@
}
},
{
- "id": 19151,
+ "id": 19620,
"properties": {
"facing": "north",
"half": "upper",
@@ -59249,7 +59333,7 @@
}
},
{
- "id": 19152,
+ "id": 19621,
"properties": {
"facing": "north",
"half": "upper",
@@ -59259,7 +59343,7 @@
}
},
{
- "id": 19153,
+ "id": 19622,
"properties": {
"facing": "north",
"half": "upper",
@@ -59269,7 +59353,7 @@
}
},
{
- "id": 19154,
+ "id": 19623,
"properties": {
"facing": "north",
"half": "upper",
@@ -59279,7 +59363,7 @@
}
},
{
- "id": 19155,
+ "id": 19624,
"properties": {
"facing": "north",
"half": "upper",
@@ -59289,7 +59373,7 @@
}
},
{
- "id": 19156,
+ "id": 19625,
"properties": {
"facing": "north",
"half": "lower",
@@ -59299,7 +59383,7 @@
}
},
{
- "id": 19157,
+ "id": 19626,
"properties": {
"facing": "north",
"half": "lower",
@@ -59309,7 +59393,7 @@
}
},
{
- "id": 19158,
+ "id": 19627,
"properties": {
"facing": "north",
"half": "lower",
@@ -59320,7 +59404,7 @@
},
{
"default": true,
- "id": 19159,
+ "id": 19628,
"properties": {
"facing": "north",
"half": "lower",
@@ -59330,7 +59414,7 @@
}
},
{
- "id": 19160,
+ "id": 19629,
"properties": {
"facing": "north",
"half": "lower",
@@ -59340,7 +59424,7 @@
}
},
{
- "id": 19161,
+ "id": 19630,
"properties": {
"facing": "north",
"half": "lower",
@@ -59350,7 +59434,7 @@
}
},
{
- "id": 19162,
+ "id": 19631,
"properties": {
"facing": "north",
"half": "lower",
@@ -59360,7 +59444,7 @@
}
},
{
- "id": 19163,
+ "id": 19632,
"properties": {
"facing": "north",
"half": "lower",
@@ -59370,7 +59454,7 @@
}
},
{
- "id": 19164,
+ "id": 19633,
"properties": {
"facing": "south",
"half": "upper",
@@ -59380,7 +59464,7 @@
}
},
{
- "id": 19165,
+ "id": 19634,
"properties": {
"facing": "south",
"half": "upper",
@@ -59390,7 +59474,7 @@
}
},
{
- "id": 19166,
+ "id": 19635,
"properties": {
"facing": "south",
"half": "upper",
@@ -59400,7 +59484,7 @@
}
},
{
- "id": 19167,
+ "id": 19636,
"properties": {
"facing": "south",
"half": "upper",
@@ -59410,7 +59494,7 @@
}
},
{
- "id": 19168,
+ "id": 19637,
"properties": {
"facing": "south",
"half": "upper",
@@ -59420,7 +59504,7 @@
}
},
{
- "id": 19169,
+ "id": 19638,
"properties": {
"facing": "south",
"half": "upper",
@@ -59430,7 +59514,7 @@
}
},
{
- "id": 19170,
+ "id": 19639,
"properties": {
"facing": "south",
"half": "upper",
@@ -59440,7 +59524,7 @@
}
},
{
- "id": 19171,
+ "id": 19640,
"properties": {
"facing": "south",
"half": "upper",
@@ -59450,7 +59534,7 @@
}
},
{
- "id": 19172,
+ "id": 19641,
"properties": {
"facing": "south",
"half": "lower",
@@ -59460,7 +59544,7 @@
}
},
{
- "id": 19173,
+ "id": 19642,
"properties": {
"facing": "south",
"half": "lower",
@@ -59470,7 +59554,7 @@
}
},
{
- "id": 19174,
+ "id": 19643,
"properties": {
"facing": "south",
"half": "lower",
@@ -59480,7 +59564,7 @@
}
},
{
- "id": 19175,
+ "id": 19644,
"properties": {
"facing": "south",
"half": "lower",
@@ -59490,7 +59574,7 @@
}
},
{
- "id": 19176,
+ "id": 19645,
"properties": {
"facing": "south",
"half": "lower",
@@ -59500,7 +59584,7 @@
}
},
{
- "id": 19177,
+ "id": 19646,
"properties": {
"facing": "south",
"half": "lower",
@@ -59510,7 +59594,7 @@
}
},
{
- "id": 19178,
+ "id": 19647,
"properties": {
"facing": "south",
"half": "lower",
@@ -59520,7 +59604,7 @@
}
},
{
- "id": 19179,
+ "id": 19648,
"properties": {
"facing": "south",
"half": "lower",
@@ -59530,7 +59614,7 @@
}
},
{
- "id": 19180,
+ "id": 19649,
"properties": {
"facing": "west",
"half": "upper",
@@ -59540,7 +59624,7 @@
}
},
{
- "id": 19181,
+ "id": 19650,
"properties": {
"facing": "west",
"half": "upper",
@@ -59550,7 +59634,7 @@
}
},
{
- "id": 19182,
+ "id": 19651,
"properties": {
"facing": "west",
"half": "upper",
@@ -59560,7 +59644,7 @@
}
},
{
- "id": 19183,
+ "id": 19652,
"properties": {
"facing": "west",
"half": "upper",
@@ -59570,7 +59654,7 @@
}
},
{
- "id": 19184,
+ "id": 19653,
"properties": {
"facing": "west",
"half": "upper",
@@ -59580,7 +59664,7 @@
}
},
{
- "id": 19185,
+ "id": 19654,
"properties": {
"facing": "west",
"half": "upper",
@@ -59590,7 +59674,7 @@
}
},
{
- "id": 19186,
+ "id": 19655,
"properties": {
"facing": "west",
"half": "upper",
@@ -59600,7 +59684,7 @@
}
},
{
- "id": 19187,
+ "id": 19656,
"properties": {
"facing": "west",
"half": "upper",
@@ -59610,7 +59694,7 @@
}
},
{
- "id": 19188,
+ "id": 19657,
"properties": {
"facing": "west",
"half": "lower",
@@ -59620,7 +59704,7 @@
}
},
{
- "id": 19189,
+ "id": 19658,
"properties": {
"facing": "west",
"half": "lower",
@@ -59630,7 +59714,7 @@
}
},
{
- "id": 19190,
+ "id": 19659,
"properties": {
"facing": "west",
"half": "lower",
@@ -59640,7 +59724,7 @@
}
},
{
- "id": 19191,
+ "id": 19660,
"properties": {
"facing": "west",
"half": "lower",
@@ -59650,7 +59734,7 @@
}
},
{
- "id": 19192,
+ "id": 19661,
"properties": {
"facing": "west",
"half": "lower",
@@ -59660,7 +59744,7 @@
}
},
{
- "id": 19193,
+ "id": 19662,
"properties": {
"facing": "west",
"half": "lower",
@@ -59670,7 +59754,7 @@
}
},
{
- "id": 19194,
+ "id": 19663,
"properties": {
"facing": "west",
"half": "lower",
@@ -59680,7 +59764,7 @@
}
},
{
- "id": 19195,
+ "id": 19664,
"properties": {
"facing": "west",
"half": "lower",
@@ -59690,7 +59774,7 @@
}
},
{
- "id": 19196,
+ "id": 19665,
"properties": {
"facing": "east",
"half": "upper",
@@ -59700,7 +59784,7 @@
}
},
{
- "id": 19197,
+ "id": 19666,
"properties": {
"facing": "east",
"half": "upper",
@@ -59710,7 +59794,7 @@
}
},
{
- "id": 19198,
+ "id": 19667,
"properties": {
"facing": "east",
"half": "upper",
@@ -59720,7 +59804,7 @@
}
},
{
- "id": 19199,
+ "id": 19668,
"properties": {
"facing": "east",
"half": "upper",
@@ -59730,7 +59814,7 @@
}
},
{
- "id": 19200,
+ "id": 19669,
"properties": {
"facing": "east",
"half": "upper",
@@ -59740,7 +59824,7 @@
}
},
{
- "id": 19201,
+ "id": 19670,
"properties": {
"facing": "east",
"half": "upper",
@@ -59750,7 +59834,7 @@
}
},
{
- "id": 19202,
+ "id": 19671,
"properties": {
"facing": "east",
"half": "upper",
@@ -59760,7 +59844,7 @@
}
},
{
- "id": 19203,
+ "id": 19672,
"properties": {
"facing": "east",
"half": "upper",
@@ -59770,7 +59854,7 @@
}
},
{
- "id": 19204,
+ "id": 19673,
"properties": {
"facing": "east",
"half": "lower",
@@ -59780,7 +59864,7 @@
}
},
{
- "id": 19205,
+ "id": 19674,
"properties": {
"facing": "east",
"half": "lower",
@@ -59790,7 +59874,7 @@
}
},
{
- "id": 19206,
+ "id": 19675,
"properties": {
"facing": "east",
"half": "lower",
@@ -59800,7 +59884,7 @@
}
},
{
- "id": 19207,
+ "id": 19676,
"properties": {
"facing": "east",
"half": "lower",
@@ -59810,7 +59894,7 @@
}
},
{
- "id": 19208,
+ "id": 19677,
"properties": {
"facing": "east",
"half": "lower",
@@ -59820,7 +59904,7 @@
}
},
{
- "id": 19209,
+ "id": 19678,
"properties": {
"facing": "east",
"half": "lower",
@@ -59830,7 +59914,7 @@
}
},
{
- "id": 19210,
+ "id": 19679,
"properties": {
"facing": "east",
"half": "lower",
@@ -59840,7 +59924,7 @@
}
},
{
- "id": 19211,
+ "id": 19680,
"properties": {
"facing": "east",
"half": "lower",
@@ -59880,7 +59964,7 @@
},
"states": [
{
- "id": 18684,
+ "id": 19153,
"properties": {
"east": "true",
"north": "true",
@@ -59890,7 +59974,7 @@
}
},
{
- "id": 18685,
+ "id": 19154,
"properties": {
"east": "true",
"north": "true",
@@ -59900,7 +59984,7 @@
}
},
{
- "id": 18686,
+ "id": 19155,
"properties": {
"east": "true",
"north": "true",
@@ -59910,7 +59994,7 @@
}
},
{
- "id": 18687,
+ "id": 19156,
"properties": {
"east": "true",
"north": "true",
@@ -59920,7 +60004,7 @@
}
},
{
- "id": 18688,
+ "id": 19157,
"properties": {
"east": "true",
"north": "true",
@@ -59930,7 +60014,7 @@
}
},
{
- "id": 18689,
+ "id": 19158,
"properties": {
"east": "true",
"north": "true",
@@ -59940,7 +60024,7 @@
}
},
{
- "id": 18690,
+ "id": 19159,
"properties": {
"east": "true",
"north": "true",
@@ -59950,7 +60034,7 @@
}
},
{
- "id": 18691,
+ "id": 19160,
"properties": {
"east": "true",
"north": "true",
@@ -59960,7 +60044,7 @@
}
},
{
- "id": 18692,
+ "id": 19161,
"properties": {
"east": "true",
"north": "false",
@@ -59970,7 +60054,7 @@
}
},
{
- "id": 18693,
+ "id": 19162,
"properties": {
"east": "true",
"north": "false",
@@ -59980,7 +60064,7 @@
}
},
{
- "id": 18694,
+ "id": 19163,
"properties": {
"east": "true",
"north": "false",
@@ -59990,7 +60074,7 @@
}
},
{
- "id": 18695,
+ "id": 19164,
"properties": {
"east": "true",
"north": "false",
@@ -60000,7 +60084,7 @@
}
},
{
- "id": 18696,
+ "id": 19165,
"properties": {
"east": "true",
"north": "false",
@@ -60010,7 +60094,7 @@
}
},
{
- "id": 18697,
+ "id": 19166,
"properties": {
"east": "true",
"north": "false",
@@ -60020,7 +60104,7 @@
}
},
{
- "id": 18698,
+ "id": 19167,
"properties": {
"east": "true",
"north": "false",
@@ -60030,7 +60114,7 @@
}
},
{
- "id": 18699,
+ "id": 19168,
"properties": {
"east": "true",
"north": "false",
@@ -60040,7 +60124,7 @@
}
},
{
- "id": 18700,
+ "id": 19169,
"properties": {
"east": "false",
"north": "true",
@@ -60050,7 +60134,7 @@
}
},
{
- "id": 18701,
+ "id": 19170,
"properties": {
"east": "false",
"north": "true",
@@ -60060,7 +60144,7 @@
}
},
{
- "id": 18702,
+ "id": 19171,
"properties": {
"east": "false",
"north": "true",
@@ -60070,7 +60154,7 @@
}
},
{
- "id": 18703,
+ "id": 19172,
"properties": {
"east": "false",
"north": "true",
@@ -60080,7 +60164,7 @@
}
},
{
- "id": 18704,
+ "id": 19173,
"properties": {
"east": "false",
"north": "true",
@@ -60090,7 +60174,7 @@
}
},
{
- "id": 18705,
+ "id": 19174,
"properties": {
"east": "false",
"north": "true",
@@ -60100,7 +60184,7 @@
}
},
{
- "id": 18706,
+ "id": 19175,
"properties": {
"east": "false",
"north": "true",
@@ -60110,7 +60194,7 @@
}
},
{
- "id": 18707,
+ "id": 19176,
"properties": {
"east": "false",
"north": "true",
@@ -60120,7 +60204,7 @@
}
},
{
- "id": 18708,
+ "id": 19177,
"properties": {
"east": "false",
"north": "false",
@@ -60130,7 +60214,7 @@
}
},
{
- "id": 18709,
+ "id": 19178,
"properties": {
"east": "false",
"north": "false",
@@ -60140,7 +60224,7 @@
}
},
{
- "id": 18710,
+ "id": 19179,
"properties": {
"east": "false",
"north": "false",
@@ -60150,7 +60234,7 @@
}
},
{
- "id": 18711,
+ "id": 19180,
"properties": {
"east": "false",
"north": "false",
@@ -60160,7 +60244,7 @@
}
},
{
- "id": 18712,
+ "id": 19181,
"properties": {
"east": "false",
"north": "false",
@@ -60170,7 +60254,7 @@
}
},
{
- "id": 18713,
+ "id": 19182,
"properties": {
"east": "false",
"north": "false",
@@ -60180,7 +60264,7 @@
}
},
{
- "id": 18714,
+ "id": 19183,
"properties": {
"east": "false",
"north": "false",
@@ -60191,7 +60275,7 @@
},
{
"default": true,
- "id": 18715,
+ "id": 19184,
"properties": {
"east": "false",
"north": "false",
@@ -60230,7 +60314,7 @@
},
"states": [
{
- "id": 18876,
+ "id": 19345,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -60239,7 +60323,7 @@
}
},
{
- "id": 18877,
+ "id": 19346,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -60248,7 +60332,7 @@
}
},
{
- "id": 18878,
+ "id": 19347,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -60257,7 +60341,7 @@
}
},
{
- "id": 18879,
+ "id": 19348,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -60266,7 +60350,7 @@
}
},
{
- "id": 18880,
+ "id": 19349,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -60275,7 +60359,7 @@
}
},
{
- "id": 18881,
+ "id": 19350,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -60284,7 +60368,7 @@
}
},
{
- "id": 18882,
+ "id": 19351,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -60294,7 +60378,7 @@
},
{
"default": true,
- "id": 18883,
+ "id": 19352,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -60303,7 +60387,7 @@
}
},
{
- "id": 18884,
+ "id": 19353,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -60312,7 +60396,7 @@
}
},
{
- "id": 18885,
+ "id": 19354,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -60321,7 +60405,7 @@
}
},
{
- "id": 18886,
+ "id": 19355,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -60330,7 +60414,7 @@
}
},
{
- "id": 18887,
+ "id": 19356,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -60339,7 +60423,7 @@
}
},
{
- "id": 18888,
+ "id": 19357,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -60348,7 +60432,7 @@
}
},
{
- "id": 18889,
+ "id": 19358,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -60357,7 +60441,7 @@
}
},
{
- "id": 18890,
+ "id": 19359,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -60366,7 +60450,7 @@
}
},
{
- "id": 18891,
+ "id": 19360,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -60375,7 +60459,7 @@
}
},
{
- "id": 18892,
+ "id": 19361,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -60384,7 +60468,7 @@
}
},
{
- "id": 18893,
+ "id": 19362,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -60393,7 +60477,7 @@
}
},
{
- "id": 18894,
+ "id": 19363,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -60402,7 +60486,7 @@
}
},
{
- "id": 18895,
+ "id": 19364,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -60411,7 +60495,7 @@
}
},
{
- "id": 18896,
+ "id": 19365,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -60420,7 +60504,7 @@
}
},
{
- "id": 18897,
+ "id": 19366,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -60429,7 +60513,7 @@
}
},
{
- "id": 18898,
+ "id": 19367,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -60438,7 +60522,7 @@
}
},
{
- "id": 18899,
+ "id": 19368,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -60447,7 +60531,7 @@
}
},
{
- "id": 18900,
+ "id": 19369,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -60456,7 +60540,7 @@
}
},
{
- "id": 18901,
+ "id": 19370,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -60465,7 +60549,7 @@
}
},
{
- "id": 18902,
+ "id": 19371,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -60474,7 +60558,7 @@
}
},
{
- "id": 18903,
+ "id": 19372,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -60483,7 +60567,7 @@
}
},
{
- "id": 18904,
+ "id": 19373,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -60492,7 +60576,7 @@
}
},
{
- "id": 18905,
+ "id": 19374,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -60501,7 +60585,7 @@
}
},
{
- "id": 18906,
+ "id": 19375,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -60510,7 +60594,7 @@
}
},
{
- "id": 18907,
+ "id": 19376,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -60530,7 +60614,7 @@
"states": [
{
"default": true,
- "id": 18609
+ "id": 19078
}
]
},
@@ -60570,7 +60654,7 @@
},
"states": [
{
- "id": 5282,
+ "id": 5438,
"properties": {
"attached": "true",
"rotation": "0",
@@ -60578,7 +60662,7 @@
}
},
{
- "id": 5283,
+ "id": 5439,
"properties": {
"attached": "true",
"rotation": "0",
@@ -60586,7 +60670,7 @@
}
},
{
- "id": 5284,
+ "id": 5440,
"properties": {
"attached": "true",
"rotation": "1",
@@ -60594,7 +60678,7 @@
}
},
{
- "id": 5285,
+ "id": 5441,
"properties": {
"attached": "true",
"rotation": "1",
@@ -60602,7 +60686,7 @@
}
},
{
- "id": 5286,
+ "id": 5442,
"properties": {
"attached": "true",
"rotation": "2",
@@ -60610,7 +60694,7 @@
}
},
{
- "id": 5287,
+ "id": 5443,
"properties": {
"attached": "true",
"rotation": "2",
@@ -60618,7 +60702,7 @@
}
},
{
- "id": 5288,
+ "id": 5444,
"properties": {
"attached": "true",
"rotation": "3",
@@ -60626,7 +60710,7 @@
}
},
{
- "id": 5289,
+ "id": 5445,
"properties": {
"attached": "true",
"rotation": "3",
@@ -60634,7 +60718,7 @@
}
},
{
- "id": 5290,
+ "id": 5446,
"properties": {
"attached": "true",
"rotation": "4",
@@ -60642,7 +60726,7 @@
}
},
{
- "id": 5291,
+ "id": 5447,
"properties": {
"attached": "true",
"rotation": "4",
@@ -60650,7 +60734,7 @@
}
},
{
- "id": 5292,
+ "id": 5448,
"properties": {
"attached": "true",
"rotation": "5",
@@ -60658,7 +60742,7 @@
}
},
{
- "id": 5293,
+ "id": 5449,
"properties": {
"attached": "true",
"rotation": "5",
@@ -60666,7 +60750,7 @@
}
},
{
- "id": 5294,
+ "id": 5450,
"properties": {
"attached": "true",
"rotation": "6",
@@ -60674,7 +60758,7 @@
}
},
{
- "id": 5295,
+ "id": 5451,
"properties": {
"attached": "true",
"rotation": "6",
@@ -60682,7 +60766,7 @@
}
},
{
- "id": 5296,
+ "id": 5452,
"properties": {
"attached": "true",
"rotation": "7",
@@ -60690,7 +60774,7 @@
}
},
{
- "id": 5297,
+ "id": 5453,
"properties": {
"attached": "true",
"rotation": "7",
@@ -60698,7 +60782,7 @@
}
},
{
- "id": 5298,
+ "id": 5454,
"properties": {
"attached": "true",
"rotation": "8",
@@ -60706,7 +60790,7 @@
}
},
{
- "id": 5299,
+ "id": 5455,
"properties": {
"attached": "true",
"rotation": "8",
@@ -60714,7 +60798,7 @@
}
},
{
- "id": 5300,
+ "id": 5456,
"properties": {
"attached": "true",
"rotation": "9",
@@ -60722,7 +60806,7 @@
}
},
{
- "id": 5301,
+ "id": 5457,
"properties": {
"attached": "true",
"rotation": "9",
@@ -60730,7 +60814,7 @@
}
},
{
- "id": 5302,
+ "id": 5458,
"properties": {
"attached": "true",
"rotation": "10",
@@ -60738,7 +60822,7 @@
}
},
{
- "id": 5303,
+ "id": 5459,
"properties": {
"attached": "true",
"rotation": "10",
@@ -60746,7 +60830,7 @@
}
},
{
- "id": 5304,
+ "id": 5460,
"properties": {
"attached": "true",
"rotation": "11",
@@ -60754,7 +60838,7 @@
}
},
{
- "id": 5305,
+ "id": 5461,
"properties": {
"attached": "true",
"rotation": "11",
@@ -60762,7 +60846,7 @@
}
},
{
- "id": 5306,
+ "id": 5462,
"properties": {
"attached": "true",
"rotation": "12",
@@ -60770,7 +60854,7 @@
}
},
{
- "id": 5307,
+ "id": 5463,
"properties": {
"attached": "true",
"rotation": "12",
@@ -60778,7 +60862,7 @@
}
},
{
- "id": 5308,
+ "id": 5464,
"properties": {
"attached": "true",
"rotation": "13",
@@ -60786,7 +60870,7 @@
}
},
{
- "id": 5309,
+ "id": 5465,
"properties": {
"attached": "true",
"rotation": "13",
@@ -60794,7 +60878,7 @@
}
},
{
- "id": 5310,
+ "id": 5466,
"properties": {
"attached": "true",
"rotation": "14",
@@ -60802,7 +60886,7 @@
}
},
{
- "id": 5311,
+ "id": 5467,
"properties": {
"attached": "true",
"rotation": "14",
@@ -60810,7 +60894,7 @@
}
},
{
- "id": 5312,
+ "id": 5468,
"properties": {
"attached": "true",
"rotation": "15",
@@ -60818,7 +60902,7 @@
}
},
{
- "id": 5313,
+ "id": 5469,
"properties": {
"attached": "true",
"rotation": "15",
@@ -60826,7 +60910,7 @@
}
},
{
- "id": 5314,
+ "id": 5470,
"properties": {
"attached": "false",
"rotation": "0",
@@ -60835,7 +60919,7 @@
},
{
"default": true,
- "id": 5315,
+ "id": 5471,
"properties": {
"attached": "false",
"rotation": "0",
@@ -60843,7 +60927,7 @@
}
},
{
- "id": 5316,
+ "id": 5472,
"properties": {
"attached": "false",
"rotation": "1",
@@ -60851,7 +60935,7 @@
}
},
{
- "id": 5317,
+ "id": 5473,
"properties": {
"attached": "false",
"rotation": "1",
@@ -60859,7 +60943,7 @@
}
},
{
- "id": 5318,
+ "id": 5474,
"properties": {
"attached": "false",
"rotation": "2",
@@ -60867,7 +60951,7 @@
}
},
{
- "id": 5319,
+ "id": 5475,
"properties": {
"attached": "false",
"rotation": "2",
@@ -60875,7 +60959,7 @@
}
},
{
- "id": 5320,
+ "id": 5476,
"properties": {
"attached": "false",
"rotation": "3",
@@ -60883,7 +60967,7 @@
}
},
{
- "id": 5321,
+ "id": 5477,
"properties": {
"attached": "false",
"rotation": "3",
@@ -60891,7 +60975,7 @@
}
},
{
- "id": 5322,
+ "id": 5478,
"properties": {
"attached": "false",
"rotation": "4",
@@ -60899,7 +60983,7 @@
}
},
{
- "id": 5323,
+ "id": 5479,
"properties": {
"attached": "false",
"rotation": "4",
@@ -60907,7 +60991,7 @@
}
},
{
- "id": 5324,
+ "id": 5480,
"properties": {
"attached": "false",
"rotation": "5",
@@ -60915,7 +60999,7 @@
}
},
{
- "id": 5325,
+ "id": 5481,
"properties": {
"attached": "false",
"rotation": "5",
@@ -60923,7 +61007,7 @@
}
},
{
- "id": 5326,
+ "id": 5482,
"properties": {
"attached": "false",
"rotation": "6",
@@ -60931,7 +61015,7 @@
}
},
{
- "id": 5327,
+ "id": 5483,
"properties": {
"attached": "false",
"rotation": "6",
@@ -60939,7 +61023,7 @@
}
},
{
- "id": 5328,
+ "id": 5484,
"properties": {
"attached": "false",
"rotation": "7",
@@ -60947,7 +61031,7 @@
}
},
{
- "id": 5329,
+ "id": 5485,
"properties": {
"attached": "false",
"rotation": "7",
@@ -60955,7 +61039,7 @@
}
},
{
- "id": 5330,
+ "id": 5486,
"properties": {
"attached": "false",
"rotation": "8",
@@ -60963,7 +61047,7 @@
}
},
{
- "id": 5331,
+ "id": 5487,
"properties": {
"attached": "false",
"rotation": "8",
@@ -60971,7 +61055,7 @@
}
},
{
- "id": 5332,
+ "id": 5488,
"properties": {
"attached": "false",
"rotation": "9",
@@ -60979,7 +61063,7 @@
}
},
{
- "id": 5333,
+ "id": 5489,
"properties": {
"attached": "false",
"rotation": "9",
@@ -60987,7 +61071,7 @@
}
},
{
- "id": 5334,
+ "id": 5490,
"properties": {
"attached": "false",
"rotation": "10",
@@ -60995,7 +61079,7 @@
}
},
{
- "id": 5335,
+ "id": 5491,
"properties": {
"attached": "false",
"rotation": "10",
@@ -61003,7 +61087,7 @@
}
},
{
- "id": 5336,
+ "id": 5492,
"properties": {
"attached": "false",
"rotation": "11",
@@ -61011,7 +61095,7 @@
}
},
{
- "id": 5337,
+ "id": 5493,
"properties": {
"attached": "false",
"rotation": "11",
@@ -61019,7 +61103,7 @@
}
},
{
- "id": 5338,
+ "id": 5494,
"properties": {
"attached": "false",
"rotation": "12",
@@ -61027,7 +61111,7 @@
}
},
{
- "id": 5339,
+ "id": 5495,
"properties": {
"attached": "false",
"rotation": "12",
@@ -61035,7 +61119,7 @@
}
},
{
- "id": 5340,
+ "id": 5496,
"properties": {
"attached": "false",
"rotation": "13",
@@ -61043,7 +61127,7 @@
}
},
{
- "id": 5341,
+ "id": 5497,
"properties": {
"attached": "false",
"rotation": "13",
@@ -61051,7 +61135,7 @@
}
},
{
- "id": 5342,
+ "id": 5498,
"properties": {
"attached": "false",
"rotation": "14",
@@ -61059,7 +61143,7 @@
}
},
{
- "id": 5343,
+ "id": 5499,
"properties": {
"attached": "false",
"rotation": "14",
@@ -61067,7 +61151,7 @@
}
},
{
- "id": 5344,
+ "id": 5500,
"properties": {
"attached": "false",
"rotation": "15",
@@ -61075,7 +61159,7 @@
}
},
{
- "id": 5345,
+ "id": 5501,
"properties": {
"attached": "false",
"rotation": "15",
@@ -61098,20 +61182,20 @@
},
"states": [
{
- "id": 18602,
+ "id": 19071,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 18603,
+ "id": 19072,
"properties": {
"axis": "y"
}
},
{
- "id": 18604,
+ "id": 19073,
"properties": {
"axis": "z"
}
@@ -61126,7 +61210,7 @@
"states": [
{
"default": true,
- "id": 18608
+ "id": 19077
}
]
},
@@ -61138,7 +61222,7 @@
"states": [
{
"default": true,
- "id": 18666
+ "id": 19135
}
]
},
@@ -61156,14 +61240,14 @@
},
"states": [
{
- "id": 18680,
+ "id": 19149,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 18681,
+ "id": 19150,
"properties": {
"powered": "false"
}
@@ -61178,7 +61262,7 @@
"states": [
{
"default": true,
- "id": 18665
+ "id": 19134
}
]
},
@@ -61214,7 +61298,7 @@
},
"states": [
{
- "id": 19276,
+ "id": 19745,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -61222,217 +61306,217 @@
},
{
"default": true,
- "id": 19277,
+ "id": 19746,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 19278,
+ "id": 19747,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 19279,
+ "id": 19748,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 19280,
+ "id": 19749,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 19281,
+ "id": 19750,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 19282,
+ "id": 19751,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 19283,
+ "id": 19752,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 19284,
+ "id": 19753,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 19285,
+ "id": 19754,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 19286,
+ "id": 19755,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 19287,
+ "id": 19756,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 19288,
+ "id": 19757,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 19289,
+ "id": 19758,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 19290,
+ "id": 19759,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 19291,
+ "id": 19760,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 19292,
+ "id": 19761,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 19293,
+ "id": 19762,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 19294,
+ "id": 19763,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 19295,
+ "id": 19764,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 19296,
+ "id": 19765,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 19297,
+ "id": 19766,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 19298,
+ "id": 19767,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 19299,
+ "id": 19768,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 19300,
+ "id": 19769,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 19301,
+ "id": 19770,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 19302,
+ "id": 19771,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 19303,
+ "id": 19772,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 19304,
+ "id": 19773,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 19305,
+ "id": 19774,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 19306,
+ "id": 19775,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 19307,
+ "id": 19776,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -61458,21 +61542,21 @@
},
"states": [
{
- "id": 18668,
+ "id": 19137,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 18669,
+ "id": 19138,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 18670,
+ "id": 19139,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -61480,21 +61564,21 @@
},
{
"default": true,
- "id": 18671,
+ "id": 19140,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 18672,
+ "id": 19141,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 18673,
+ "id": 19142,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -61535,7 +61619,7 @@
},
"states": [
{
- "id": 18940,
+ "id": 19409,
"properties": {
"facing": "north",
"half": "top",
@@ -61544,7 +61628,7 @@
}
},
{
- "id": 18941,
+ "id": 19410,
"properties": {
"facing": "north",
"half": "top",
@@ -61553,7 +61637,7 @@
}
},
{
- "id": 18942,
+ "id": 19411,
"properties": {
"facing": "north",
"half": "top",
@@ -61562,7 +61646,7 @@
}
},
{
- "id": 18943,
+ "id": 19412,
"properties": {
"facing": "north",
"half": "top",
@@ -61571,7 +61655,7 @@
}
},
{
- "id": 18944,
+ "id": 19413,
"properties": {
"facing": "north",
"half": "top",
@@ -61580,7 +61664,7 @@
}
},
{
- "id": 18945,
+ "id": 19414,
"properties": {
"facing": "north",
"half": "top",
@@ -61589,7 +61673,7 @@
}
},
{
- "id": 18946,
+ "id": 19415,
"properties": {
"facing": "north",
"half": "top",
@@ -61598,7 +61682,7 @@
}
},
{
- "id": 18947,
+ "id": 19416,
"properties": {
"facing": "north",
"half": "top",
@@ -61607,7 +61691,7 @@
}
},
{
- "id": 18948,
+ "id": 19417,
"properties": {
"facing": "north",
"half": "top",
@@ -61616,7 +61700,7 @@
}
},
{
- "id": 18949,
+ "id": 19418,
"properties": {
"facing": "north",
"half": "top",
@@ -61625,7 +61709,7 @@
}
},
{
- "id": 18950,
+ "id": 19419,
"properties": {
"facing": "north",
"half": "bottom",
@@ -61635,7 +61719,7 @@
},
{
"default": true,
- "id": 18951,
+ "id": 19420,
"properties": {
"facing": "north",
"half": "bottom",
@@ -61644,7 +61728,7 @@
}
},
{
- "id": 18952,
+ "id": 19421,
"properties": {
"facing": "north",
"half": "bottom",
@@ -61653,7 +61737,7 @@
}
},
{
- "id": 18953,
+ "id": 19422,
"properties": {
"facing": "north",
"half": "bottom",
@@ -61662,7 +61746,7 @@
}
},
{
- "id": 18954,
+ "id": 19423,
"properties": {
"facing": "north",
"half": "bottom",
@@ -61671,7 +61755,7 @@
}
},
{
- "id": 18955,
+ "id": 19424,
"properties": {
"facing": "north",
"half": "bottom",
@@ -61680,7 +61764,7 @@
}
},
{
- "id": 18956,
+ "id": 19425,
"properties": {
"facing": "north",
"half": "bottom",
@@ -61689,7 +61773,7 @@
}
},
{
- "id": 18957,
+ "id": 19426,
"properties": {
"facing": "north",
"half": "bottom",
@@ -61698,7 +61782,7 @@
}
},
{
- "id": 18958,
+ "id": 19427,
"properties": {
"facing": "north",
"half": "bottom",
@@ -61707,7 +61791,7 @@
}
},
{
- "id": 18959,
+ "id": 19428,
"properties": {
"facing": "north",
"half": "bottom",
@@ -61716,7 +61800,7 @@
}
},
{
- "id": 18960,
+ "id": 19429,
"properties": {
"facing": "south",
"half": "top",
@@ -61725,7 +61809,7 @@
}
},
{
- "id": 18961,
+ "id": 19430,
"properties": {
"facing": "south",
"half": "top",
@@ -61734,7 +61818,7 @@
}
},
{
- "id": 18962,
+ "id": 19431,
"properties": {
"facing": "south",
"half": "top",
@@ -61743,7 +61827,7 @@
}
},
{
- "id": 18963,
+ "id": 19432,
"properties": {
"facing": "south",
"half": "top",
@@ -61752,7 +61836,7 @@
}
},
{
- "id": 18964,
+ "id": 19433,
"properties": {
"facing": "south",
"half": "top",
@@ -61761,7 +61845,7 @@
}
},
{
- "id": 18965,
+ "id": 19434,
"properties": {
"facing": "south",
"half": "top",
@@ -61770,7 +61854,7 @@
}
},
{
- "id": 18966,
+ "id": 19435,
"properties": {
"facing": "south",
"half": "top",
@@ -61779,7 +61863,7 @@
}
},
{
- "id": 18967,
+ "id": 19436,
"properties": {
"facing": "south",
"half": "top",
@@ -61788,7 +61872,7 @@
}
},
{
- "id": 18968,
+ "id": 19437,
"properties": {
"facing": "south",
"half": "top",
@@ -61797,7 +61881,7 @@
}
},
{
- "id": 18969,
+ "id": 19438,
"properties": {
"facing": "south",
"half": "top",
@@ -61806,7 +61890,7 @@
}
},
{
- "id": 18970,
+ "id": 19439,
"properties": {
"facing": "south",
"half": "bottom",
@@ -61815,7 +61899,7 @@
}
},
{
- "id": 18971,
+ "id": 19440,
"properties": {
"facing": "south",
"half": "bottom",
@@ -61824,7 +61908,7 @@
}
},
{
- "id": 18972,
+ "id": 19441,
"properties": {
"facing": "south",
"half": "bottom",
@@ -61833,7 +61917,7 @@
}
},
{
- "id": 18973,
+ "id": 19442,
"properties": {
"facing": "south",
"half": "bottom",
@@ -61842,7 +61926,7 @@
}
},
{
- "id": 18974,
+ "id": 19443,
"properties": {
"facing": "south",
"half": "bottom",
@@ -61851,7 +61935,7 @@
}
},
{
- "id": 18975,
+ "id": 19444,
"properties": {
"facing": "south",
"half": "bottom",
@@ -61860,7 +61944,7 @@
}
},
{
- "id": 18976,
+ "id": 19445,
"properties": {
"facing": "south",
"half": "bottom",
@@ -61869,7 +61953,7 @@
}
},
{
- "id": 18977,
+ "id": 19446,
"properties": {
"facing": "south",
"half": "bottom",
@@ -61878,7 +61962,7 @@
}
},
{
- "id": 18978,
+ "id": 19447,
"properties": {
"facing": "south",
"half": "bottom",
@@ -61887,7 +61971,7 @@
}
},
{
- "id": 18979,
+ "id": 19448,
"properties": {
"facing": "south",
"half": "bottom",
@@ -61896,7 +61980,7 @@
}
},
{
- "id": 18980,
+ "id": 19449,
"properties": {
"facing": "west",
"half": "top",
@@ -61905,7 +61989,7 @@
}
},
{
- "id": 18981,
+ "id": 19450,
"properties": {
"facing": "west",
"half": "top",
@@ -61914,7 +61998,7 @@
}
},
{
- "id": 18982,
+ "id": 19451,
"properties": {
"facing": "west",
"half": "top",
@@ -61923,7 +62007,7 @@
}
},
{
- "id": 18983,
+ "id": 19452,
"properties": {
"facing": "west",
"half": "top",
@@ -61932,7 +62016,7 @@
}
},
{
- "id": 18984,
+ "id": 19453,
"properties": {
"facing": "west",
"half": "top",
@@ -61941,7 +62025,7 @@
}
},
{
- "id": 18985,
+ "id": 19454,
"properties": {
"facing": "west",
"half": "top",
@@ -61950,7 +62034,7 @@
}
},
{
- "id": 18986,
+ "id": 19455,
"properties": {
"facing": "west",
"half": "top",
@@ -61959,7 +62043,7 @@
}
},
{
- "id": 18987,
+ "id": 19456,
"properties": {
"facing": "west",
"half": "top",
@@ -61968,7 +62052,7 @@
}
},
{
- "id": 18988,
+ "id": 19457,
"properties": {
"facing": "west",
"half": "top",
@@ -61977,7 +62061,7 @@
}
},
{
- "id": 18989,
+ "id": 19458,
"properties": {
"facing": "west",
"half": "top",
@@ -61986,7 +62070,7 @@
}
},
{
- "id": 18990,
+ "id": 19459,
"properties": {
"facing": "west",
"half": "bottom",
@@ -61995,7 +62079,7 @@
}
},
{
- "id": 18991,
+ "id": 19460,
"properties": {
"facing": "west",
"half": "bottom",
@@ -62004,7 +62088,7 @@
}
},
{
- "id": 18992,
+ "id": 19461,
"properties": {
"facing": "west",
"half": "bottom",
@@ -62013,7 +62097,7 @@
}
},
{
- "id": 18993,
+ "id": 19462,
"properties": {
"facing": "west",
"half": "bottom",
@@ -62022,7 +62106,7 @@
}
},
{
- "id": 18994,
+ "id": 19463,
"properties": {
"facing": "west",
"half": "bottom",
@@ -62031,7 +62115,7 @@
}
},
{
- "id": 18995,
+ "id": 19464,
"properties": {
"facing": "west",
"half": "bottom",
@@ -62040,7 +62124,7 @@
}
},
{
- "id": 18996,
+ "id": 19465,
"properties": {
"facing": "west",
"half": "bottom",
@@ -62049,7 +62133,7 @@
}
},
{
- "id": 18997,
+ "id": 19466,
"properties": {
"facing": "west",
"half": "bottom",
@@ -62058,7 +62142,7 @@
}
},
{
- "id": 18998,
+ "id": 19467,
"properties": {
"facing": "west",
"half": "bottom",
@@ -62067,7 +62151,7 @@
}
},
{
- "id": 18999,
+ "id": 19468,
"properties": {
"facing": "west",
"half": "bottom",
@@ -62076,7 +62160,7 @@
}
},
{
- "id": 19000,
+ "id": 19469,
"properties": {
"facing": "east",
"half": "top",
@@ -62085,7 +62169,7 @@
}
},
{
- "id": 19001,
+ "id": 19470,
"properties": {
"facing": "east",
"half": "top",
@@ -62094,7 +62178,7 @@
}
},
{
- "id": 19002,
+ "id": 19471,
"properties": {
"facing": "east",
"half": "top",
@@ -62103,7 +62187,7 @@
}
},
{
- "id": 19003,
+ "id": 19472,
"properties": {
"facing": "east",
"half": "top",
@@ -62112,7 +62196,7 @@
}
},
{
- "id": 19004,
+ "id": 19473,
"properties": {
"facing": "east",
"half": "top",
@@ -62121,7 +62205,7 @@
}
},
{
- "id": 19005,
+ "id": 19474,
"properties": {
"facing": "east",
"half": "top",
@@ -62130,7 +62214,7 @@
}
},
{
- "id": 19006,
+ "id": 19475,
"properties": {
"facing": "east",
"half": "top",
@@ -62139,7 +62223,7 @@
}
},
{
- "id": 19007,
+ "id": 19476,
"properties": {
"facing": "east",
"half": "top",
@@ -62148,7 +62232,7 @@
}
},
{
- "id": 19008,
+ "id": 19477,
"properties": {
"facing": "east",
"half": "top",
@@ -62157,7 +62241,7 @@
}
},
{
- "id": 19009,
+ "id": 19478,
"properties": {
"facing": "east",
"half": "top",
@@ -62166,7 +62250,7 @@
}
},
{
- "id": 19010,
+ "id": 19479,
"properties": {
"facing": "east",
"half": "bottom",
@@ -62175,7 +62259,7 @@
}
},
{
- "id": 19011,
+ "id": 19480,
"properties": {
"facing": "east",
"half": "bottom",
@@ -62184,7 +62268,7 @@
}
},
{
- "id": 19012,
+ "id": 19481,
"properties": {
"facing": "east",
"half": "bottom",
@@ -62193,7 +62277,7 @@
}
},
{
- "id": 19013,
+ "id": 19482,
"properties": {
"facing": "east",
"half": "bottom",
@@ -62202,7 +62286,7 @@
}
},
{
- "id": 19014,
+ "id": 19483,
"properties": {
"facing": "east",
"half": "bottom",
@@ -62211,7 +62295,7 @@
}
},
{
- "id": 19015,
+ "id": 19484,
"properties": {
"facing": "east",
"half": "bottom",
@@ -62220,7 +62304,7 @@
}
},
{
- "id": 19016,
+ "id": 19485,
"properties": {
"facing": "east",
"half": "bottom",
@@ -62229,7 +62313,7 @@
}
},
{
- "id": 19017,
+ "id": 19486,
"properties": {
"facing": "east",
"half": "bottom",
@@ -62238,7 +62322,7 @@
}
},
{
- "id": 19018,
+ "id": 19487,
"properties": {
"facing": "east",
"half": "bottom",
@@ -62247,7 +62331,7 @@
}
},
{
- "id": 19019,
+ "id": 19488,
"properties": {
"facing": "east",
"half": "bottom",
@@ -62271,20 +62355,20 @@
},
"states": [
{
- "id": 18596,
+ "id": 19065,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 18597,
+ "id": 19066,
"properties": {
"axis": "y"
}
},
{
- "id": 18598,
+ "id": 19067,
"properties": {
"axis": "z"
}
@@ -62323,7 +62407,7 @@
},
"states": [
{
- "id": 18748,
+ "id": 19217,
"properties": {
"facing": "north",
"half": "top",
@@ -62333,7 +62417,7 @@
}
},
{
- "id": 18749,
+ "id": 19218,
"properties": {
"facing": "north",
"half": "top",
@@ -62343,7 +62427,7 @@
}
},
{
- "id": 18750,
+ "id": 19219,
"properties": {
"facing": "north",
"half": "top",
@@ -62353,7 +62437,7 @@
}
},
{
- "id": 18751,
+ "id": 19220,
"properties": {
"facing": "north",
"half": "top",
@@ -62363,7 +62447,7 @@
}
},
{
- "id": 18752,
+ "id": 19221,
"properties": {
"facing": "north",
"half": "top",
@@ -62373,7 +62457,7 @@
}
},
{
- "id": 18753,
+ "id": 19222,
"properties": {
"facing": "north",
"half": "top",
@@ -62383,7 +62467,7 @@
}
},
{
- "id": 18754,
+ "id": 19223,
"properties": {
"facing": "north",
"half": "top",
@@ -62393,7 +62477,7 @@
}
},
{
- "id": 18755,
+ "id": 19224,
"properties": {
"facing": "north",
"half": "top",
@@ -62403,7 +62487,7 @@
}
},
{
- "id": 18756,
+ "id": 19225,
"properties": {
"facing": "north",
"half": "bottom",
@@ -62413,7 +62497,7 @@
}
},
{
- "id": 18757,
+ "id": 19226,
"properties": {
"facing": "north",
"half": "bottom",
@@ -62423,7 +62507,7 @@
}
},
{
- "id": 18758,
+ "id": 19227,
"properties": {
"facing": "north",
"half": "bottom",
@@ -62433,7 +62517,7 @@
}
},
{
- "id": 18759,
+ "id": 19228,
"properties": {
"facing": "north",
"half": "bottom",
@@ -62443,7 +62527,7 @@
}
},
{
- "id": 18760,
+ "id": 19229,
"properties": {
"facing": "north",
"half": "bottom",
@@ -62453,7 +62537,7 @@
}
},
{
- "id": 18761,
+ "id": 19230,
"properties": {
"facing": "north",
"half": "bottom",
@@ -62463,7 +62547,7 @@
}
},
{
- "id": 18762,
+ "id": 19231,
"properties": {
"facing": "north",
"half": "bottom",
@@ -62474,7 +62558,7 @@
},
{
"default": true,
- "id": 18763,
+ "id": 19232,
"properties": {
"facing": "north",
"half": "bottom",
@@ -62484,7 +62568,7 @@
}
},
{
- "id": 18764,
+ "id": 19233,
"properties": {
"facing": "south",
"half": "top",
@@ -62494,7 +62578,7 @@
}
},
{
- "id": 18765,
+ "id": 19234,
"properties": {
"facing": "south",
"half": "top",
@@ -62504,7 +62588,7 @@
}
},
{
- "id": 18766,
+ "id": 19235,
"properties": {
"facing": "south",
"half": "top",
@@ -62514,7 +62598,7 @@
}
},
{
- "id": 18767,
+ "id": 19236,
"properties": {
"facing": "south",
"half": "top",
@@ -62524,7 +62608,7 @@
}
},
{
- "id": 18768,
+ "id": 19237,
"properties": {
"facing": "south",
"half": "top",
@@ -62534,7 +62618,7 @@
}
},
{
- "id": 18769,
+ "id": 19238,
"properties": {
"facing": "south",
"half": "top",
@@ -62544,7 +62628,7 @@
}
},
{
- "id": 18770,
+ "id": 19239,
"properties": {
"facing": "south",
"half": "top",
@@ -62554,7 +62638,7 @@
}
},
{
- "id": 18771,
+ "id": 19240,
"properties": {
"facing": "south",
"half": "top",
@@ -62564,7 +62648,7 @@
}
},
{
- "id": 18772,
+ "id": 19241,
"properties": {
"facing": "south",
"half": "bottom",
@@ -62574,7 +62658,7 @@
}
},
{
- "id": 18773,
+ "id": 19242,
"properties": {
"facing": "south",
"half": "bottom",
@@ -62584,7 +62668,7 @@
}
},
{
- "id": 18774,
+ "id": 19243,
"properties": {
"facing": "south",
"half": "bottom",
@@ -62594,7 +62678,7 @@
}
},
{
- "id": 18775,
+ "id": 19244,
"properties": {
"facing": "south",
"half": "bottom",
@@ -62604,7 +62688,7 @@
}
},
{
- "id": 18776,
+ "id": 19245,
"properties": {
"facing": "south",
"half": "bottom",
@@ -62614,7 +62698,7 @@
}
},
{
- "id": 18777,
+ "id": 19246,
"properties": {
"facing": "south",
"half": "bottom",
@@ -62624,7 +62708,7 @@
}
},
{
- "id": 18778,
+ "id": 19247,
"properties": {
"facing": "south",
"half": "bottom",
@@ -62634,7 +62718,7 @@
}
},
{
- "id": 18779,
+ "id": 19248,
"properties": {
"facing": "south",
"half": "bottom",
@@ -62644,7 +62728,7 @@
}
},
{
- "id": 18780,
+ "id": 19249,
"properties": {
"facing": "west",
"half": "top",
@@ -62654,7 +62738,7 @@
}
},
{
- "id": 18781,
+ "id": 19250,
"properties": {
"facing": "west",
"half": "top",
@@ -62664,7 +62748,7 @@
}
},
{
- "id": 18782,
+ "id": 19251,
"properties": {
"facing": "west",
"half": "top",
@@ -62674,7 +62758,7 @@
}
},
{
- "id": 18783,
+ "id": 19252,
"properties": {
"facing": "west",
"half": "top",
@@ -62684,7 +62768,7 @@
}
},
{
- "id": 18784,
+ "id": 19253,
"properties": {
"facing": "west",
"half": "top",
@@ -62694,7 +62778,7 @@
}
},
{
- "id": 18785,
+ "id": 19254,
"properties": {
"facing": "west",
"half": "top",
@@ -62704,7 +62788,7 @@
}
},
{
- "id": 18786,
+ "id": 19255,
"properties": {
"facing": "west",
"half": "top",
@@ -62714,7 +62798,7 @@
}
},
{
- "id": 18787,
+ "id": 19256,
"properties": {
"facing": "west",
"half": "top",
@@ -62724,7 +62808,7 @@
}
},
{
- "id": 18788,
+ "id": 19257,
"properties": {
"facing": "west",
"half": "bottom",
@@ -62734,7 +62818,7 @@
}
},
{
- "id": 18789,
+ "id": 19258,
"properties": {
"facing": "west",
"half": "bottom",
@@ -62744,7 +62828,7 @@
}
},
{
- "id": 18790,
+ "id": 19259,
"properties": {
"facing": "west",
"half": "bottom",
@@ -62754,7 +62838,7 @@
}
},
{
- "id": 18791,
+ "id": 19260,
"properties": {
"facing": "west",
"half": "bottom",
@@ -62764,7 +62848,7 @@
}
},
{
- "id": 18792,
+ "id": 19261,
"properties": {
"facing": "west",
"half": "bottom",
@@ -62774,7 +62858,7 @@
}
},
{
- "id": 18793,
+ "id": 19262,
"properties": {
"facing": "west",
"half": "bottom",
@@ -62784,7 +62868,7 @@
}
},
{
- "id": 18794,
+ "id": 19263,
"properties": {
"facing": "west",
"half": "bottom",
@@ -62794,7 +62878,7 @@
}
},
{
- "id": 18795,
+ "id": 19264,
"properties": {
"facing": "west",
"half": "bottom",
@@ -62804,7 +62888,7 @@
}
},
{
- "id": 18796,
+ "id": 19265,
"properties": {
"facing": "east",
"half": "top",
@@ -62814,7 +62898,7 @@
}
},
{
- "id": 18797,
+ "id": 19266,
"properties": {
"facing": "east",
"half": "top",
@@ -62824,7 +62908,7 @@
}
},
{
- "id": 18798,
+ "id": 19267,
"properties": {
"facing": "east",
"half": "top",
@@ -62834,7 +62918,7 @@
}
},
{
- "id": 18799,
+ "id": 19268,
"properties": {
"facing": "east",
"half": "top",
@@ -62844,7 +62928,7 @@
}
},
{
- "id": 18800,
+ "id": 19269,
"properties": {
"facing": "east",
"half": "top",
@@ -62854,7 +62938,7 @@
}
},
{
- "id": 18801,
+ "id": 19270,
"properties": {
"facing": "east",
"half": "top",
@@ -62864,7 +62948,7 @@
}
},
{
- "id": 18802,
+ "id": 19271,
"properties": {
"facing": "east",
"half": "top",
@@ -62874,7 +62958,7 @@
}
},
{
- "id": 18803,
+ "id": 19272,
"properties": {
"facing": "east",
"half": "top",
@@ -62884,7 +62968,7 @@
}
},
{
- "id": 18804,
+ "id": 19273,
"properties": {
"facing": "east",
"half": "bottom",
@@ -62894,7 +62978,7 @@
}
},
{
- "id": 18805,
+ "id": 19274,
"properties": {
"facing": "east",
"half": "bottom",
@@ -62904,7 +62988,7 @@
}
},
{
- "id": 18806,
+ "id": 19275,
"properties": {
"facing": "east",
"half": "bottom",
@@ -62914,7 +62998,7 @@
}
},
{
- "id": 18807,
+ "id": 19276,
"properties": {
"facing": "east",
"half": "bottom",
@@ -62924,7 +63008,7 @@
}
},
{
- "id": 18808,
+ "id": 19277,
"properties": {
"facing": "east",
"half": "bottom",
@@ -62934,7 +63018,7 @@
}
},
{
- "id": 18809,
+ "id": 19278,
"properties": {
"facing": "east",
"half": "bottom",
@@ -62944,7 +63028,7 @@
}
},
{
- "id": 18810,
+ "id": 19279,
"properties": {
"facing": "east",
"half": "bottom",
@@ -62954,7 +63038,7 @@
}
},
{
- "id": 18811,
+ "id": 19280,
"properties": {
"facing": "east",
"half": "bottom",
@@ -62985,7 +63069,7 @@
},
"states": [
{
- "id": 5602,
+ "id": 5766,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -62993,49 +63077,49 @@
},
{
"default": true,
- "id": 5603,
+ "id": 5767,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5604,
+ "id": 5768,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5605,
+ "id": 5769,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5606,
+ "id": 5770,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5607,
+ "id": 5771,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5608,
+ "id": 5772,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5609,
+ "id": 5773,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -63063,7 +63147,7 @@
},
"states": [
{
- "id": 19340,
+ "id": 19809,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -63071,49 +63155,49 @@
},
{
"default": true,
- "id": 19341,
+ "id": 19810,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 19342,
+ "id": 19811,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 19343,
+ "id": 19812,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 19344,
+ "id": 19813,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 19345,
+ "id": 19814,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 19346,
+ "id": 19815,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 19347,
+ "id": 19816,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -63129,7 +63213,7 @@
"states": [
{
"default": true,
- "id": 19449
+ "id": 19918
}
]
},
@@ -63142,7 +63226,7 @@
"states": [
{
"default": true,
- "id": 22947
+ "id": 23416
}
]
},
@@ -63165,21 +63249,21 @@
},
"states": [
{
- "id": 23294,
+ "id": 23763,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 23295,
+ "id": 23764,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 23296,
+ "id": 23765,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -63187,21 +63271,21 @@
},
{
"default": true,
- "id": 23297,
+ "id": 23766,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 23298,
+ "id": 23767,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 23299,
+ "id": 23768,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -63243,7 +63327,7 @@
},
"states": [
{
- "id": 23196,
+ "id": 23665,
"properties": {
"facing": "north",
"half": "top",
@@ -63252,7 +63336,7 @@
}
},
{
- "id": 23197,
+ "id": 23666,
"properties": {
"facing": "north",
"half": "top",
@@ -63261,7 +63345,7 @@
}
},
{
- "id": 23198,
+ "id": 23667,
"properties": {
"facing": "north",
"half": "top",
@@ -63270,7 +63354,7 @@
}
},
{
- "id": 23199,
+ "id": 23668,
"properties": {
"facing": "north",
"half": "top",
@@ -63279,7 +63363,7 @@
}
},
{
- "id": 23200,
+ "id": 23669,
"properties": {
"facing": "north",
"half": "top",
@@ -63288,7 +63372,7 @@
}
},
{
- "id": 23201,
+ "id": 23670,
"properties": {
"facing": "north",
"half": "top",
@@ -63297,7 +63381,7 @@
}
},
{
- "id": 23202,
+ "id": 23671,
"properties": {
"facing": "north",
"half": "top",
@@ -63306,7 +63390,7 @@
}
},
{
- "id": 23203,
+ "id": 23672,
"properties": {
"facing": "north",
"half": "top",
@@ -63315,7 +63399,7 @@
}
},
{
- "id": 23204,
+ "id": 23673,
"properties": {
"facing": "north",
"half": "top",
@@ -63324,7 +63408,7 @@
}
},
{
- "id": 23205,
+ "id": 23674,
"properties": {
"facing": "north",
"half": "top",
@@ -63333,7 +63417,7 @@
}
},
{
- "id": 23206,
+ "id": 23675,
"properties": {
"facing": "north",
"half": "bottom",
@@ -63343,7 +63427,7 @@
},
{
"default": true,
- "id": 23207,
+ "id": 23676,
"properties": {
"facing": "north",
"half": "bottom",
@@ -63352,7 +63436,7 @@
}
},
{
- "id": 23208,
+ "id": 23677,
"properties": {
"facing": "north",
"half": "bottom",
@@ -63361,7 +63445,7 @@
}
},
{
- "id": 23209,
+ "id": 23678,
"properties": {
"facing": "north",
"half": "bottom",
@@ -63370,7 +63454,7 @@
}
},
{
- "id": 23210,
+ "id": 23679,
"properties": {
"facing": "north",
"half": "bottom",
@@ -63379,7 +63463,7 @@
}
},
{
- "id": 23211,
+ "id": 23680,
"properties": {
"facing": "north",
"half": "bottom",
@@ -63388,7 +63472,7 @@
}
},
{
- "id": 23212,
+ "id": 23681,
"properties": {
"facing": "north",
"half": "bottom",
@@ -63397,7 +63481,7 @@
}
},
{
- "id": 23213,
+ "id": 23682,
"properties": {
"facing": "north",
"half": "bottom",
@@ -63406,7 +63490,7 @@
}
},
{
- "id": 23214,
+ "id": 23683,
"properties": {
"facing": "north",
"half": "bottom",
@@ -63415,7 +63499,7 @@
}
},
{
- "id": 23215,
+ "id": 23684,
"properties": {
"facing": "north",
"half": "bottom",
@@ -63424,7 +63508,7 @@
}
},
{
- "id": 23216,
+ "id": 23685,
"properties": {
"facing": "south",
"half": "top",
@@ -63433,7 +63517,7 @@
}
},
{
- "id": 23217,
+ "id": 23686,
"properties": {
"facing": "south",
"half": "top",
@@ -63442,7 +63526,7 @@
}
},
{
- "id": 23218,
+ "id": 23687,
"properties": {
"facing": "south",
"half": "top",
@@ -63451,7 +63535,7 @@
}
},
{
- "id": 23219,
+ "id": 23688,
"properties": {
"facing": "south",
"half": "top",
@@ -63460,7 +63544,7 @@
}
},
{
- "id": 23220,
+ "id": 23689,
"properties": {
"facing": "south",
"half": "top",
@@ -63469,7 +63553,7 @@
}
},
{
- "id": 23221,
+ "id": 23690,
"properties": {
"facing": "south",
"half": "top",
@@ -63478,7 +63562,7 @@
}
},
{
- "id": 23222,
+ "id": 23691,
"properties": {
"facing": "south",
"half": "top",
@@ -63487,7 +63571,7 @@
}
},
{
- "id": 23223,
+ "id": 23692,
"properties": {
"facing": "south",
"half": "top",
@@ -63496,7 +63580,7 @@
}
},
{
- "id": 23224,
+ "id": 23693,
"properties": {
"facing": "south",
"half": "top",
@@ -63505,7 +63589,7 @@
}
},
{
- "id": 23225,
+ "id": 23694,
"properties": {
"facing": "south",
"half": "top",
@@ -63514,7 +63598,7 @@
}
},
{
- "id": 23226,
+ "id": 23695,
"properties": {
"facing": "south",
"half": "bottom",
@@ -63523,7 +63607,7 @@
}
},
{
- "id": 23227,
+ "id": 23696,
"properties": {
"facing": "south",
"half": "bottom",
@@ -63532,7 +63616,7 @@
}
},
{
- "id": 23228,
+ "id": 23697,
"properties": {
"facing": "south",
"half": "bottom",
@@ -63541,7 +63625,7 @@
}
},
{
- "id": 23229,
+ "id": 23698,
"properties": {
"facing": "south",
"half": "bottom",
@@ -63550,7 +63634,7 @@
}
},
{
- "id": 23230,
+ "id": 23699,
"properties": {
"facing": "south",
"half": "bottom",
@@ -63559,7 +63643,7 @@
}
},
{
- "id": 23231,
+ "id": 23700,
"properties": {
"facing": "south",
"half": "bottom",
@@ -63568,7 +63652,7 @@
}
},
{
- "id": 23232,
+ "id": 23701,
"properties": {
"facing": "south",
"half": "bottom",
@@ -63577,7 +63661,7 @@
}
},
{
- "id": 23233,
+ "id": 23702,
"properties": {
"facing": "south",
"half": "bottom",
@@ -63586,7 +63670,7 @@
}
},
{
- "id": 23234,
+ "id": 23703,
"properties": {
"facing": "south",
"half": "bottom",
@@ -63595,7 +63679,7 @@
}
},
{
- "id": 23235,
+ "id": 23704,
"properties": {
"facing": "south",
"half": "bottom",
@@ -63604,7 +63688,7 @@
}
},
{
- "id": 23236,
+ "id": 23705,
"properties": {
"facing": "west",
"half": "top",
@@ -63613,7 +63697,7 @@
}
},
{
- "id": 23237,
+ "id": 23706,
"properties": {
"facing": "west",
"half": "top",
@@ -63622,7 +63706,7 @@
}
},
{
- "id": 23238,
+ "id": 23707,
"properties": {
"facing": "west",
"half": "top",
@@ -63631,7 +63715,7 @@
}
},
{
- "id": 23239,
+ "id": 23708,
"properties": {
"facing": "west",
"half": "top",
@@ -63640,7 +63724,7 @@
}
},
{
- "id": 23240,
+ "id": 23709,
"properties": {
"facing": "west",
"half": "top",
@@ -63649,7 +63733,7 @@
}
},
{
- "id": 23241,
+ "id": 23710,
"properties": {
"facing": "west",
"half": "top",
@@ -63658,7 +63742,7 @@
}
},
{
- "id": 23242,
+ "id": 23711,
"properties": {
"facing": "west",
"half": "top",
@@ -63667,7 +63751,7 @@
}
},
{
- "id": 23243,
+ "id": 23712,
"properties": {
"facing": "west",
"half": "top",
@@ -63676,7 +63760,7 @@
}
},
{
- "id": 23244,
+ "id": 23713,
"properties": {
"facing": "west",
"half": "top",
@@ -63685,7 +63769,7 @@
}
},
{
- "id": 23245,
+ "id": 23714,
"properties": {
"facing": "west",
"half": "top",
@@ -63694,7 +63778,7 @@
}
},
{
- "id": 23246,
+ "id": 23715,
"properties": {
"facing": "west",
"half": "bottom",
@@ -63703,7 +63787,7 @@
}
},
{
- "id": 23247,
+ "id": 23716,
"properties": {
"facing": "west",
"half": "bottom",
@@ -63712,7 +63796,7 @@
}
},
{
- "id": 23248,
+ "id": 23717,
"properties": {
"facing": "west",
"half": "bottom",
@@ -63721,7 +63805,7 @@
}
},
{
- "id": 23249,
+ "id": 23718,
"properties": {
"facing": "west",
"half": "bottom",
@@ -63730,7 +63814,7 @@
}
},
{
- "id": 23250,
+ "id": 23719,
"properties": {
"facing": "west",
"half": "bottom",
@@ -63739,7 +63823,7 @@
}
},
{
- "id": 23251,
+ "id": 23720,
"properties": {
"facing": "west",
"half": "bottom",
@@ -63748,7 +63832,7 @@
}
},
{
- "id": 23252,
+ "id": 23721,
"properties": {
"facing": "west",
"half": "bottom",
@@ -63757,7 +63841,7 @@
}
},
{
- "id": 23253,
+ "id": 23722,
"properties": {
"facing": "west",
"half": "bottom",
@@ -63766,7 +63850,7 @@
}
},
{
- "id": 23254,
+ "id": 23723,
"properties": {
"facing": "west",
"half": "bottom",
@@ -63775,7 +63859,7 @@
}
},
{
- "id": 23255,
+ "id": 23724,
"properties": {
"facing": "west",
"half": "bottom",
@@ -63784,7 +63868,7 @@
}
},
{
- "id": 23256,
+ "id": 23725,
"properties": {
"facing": "east",
"half": "top",
@@ -63793,7 +63877,7 @@
}
},
{
- "id": 23257,
+ "id": 23726,
"properties": {
"facing": "east",
"half": "top",
@@ -63802,7 +63886,7 @@
}
},
{
- "id": 23258,
+ "id": 23727,
"properties": {
"facing": "east",
"half": "top",
@@ -63811,7 +63895,7 @@
}
},
{
- "id": 23259,
+ "id": 23728,
"properties": {
"facing": "east",
"half": "top",
@@ -63820,7 +63904,7 @@
}
},
{
- "id": 23260,
+ "id": 23729,
"properties": {
"facing": "east",
"half": "top",
@@ -63829,7 +63913,7 @@
}
},
{
- "id": 23261,
+ "id": 23730,
"properties": {
"facing": "east",
"half": "top",
@@ -63838,7 +63922,7 @@
}
},
{
- "id": 23262,
+ "id": 23731,
"properties": {
"facing": "east",
"half": "top",
@@ -63847,7 +63931,7 @@
}
},
{
- "id": 23263,
+ "id": 23732,
"properties": {
"facing": "east",
"half": "top",
@@ -63856,7 +63940,7 @@
}
},
{
- "id": 23264,
+ "id": 23733,
"properties": {
"facing": "east",
"half": "top",
@@ -63865,7 +63949,7 @@
}
},
{
- "id": 23265,
+ "id": 23734,
"properties": {
"facing": "east",
"half": "top",
@@ -63874,7 +63958,7 @@
}
},
{
- "id": 23266,
+ "id": 23735,
"properties": {
"facing": "east",
"half": "bottom",
@@ -63883,7 +63967,7 @@
}
},
{
- "id": 23267,
+ "id": 23736,
"properties": {
"facing": "east",
"half": "bottom",
@@ -63892,7 +63976,7 @@
}
},
{
- "id": 23268,
+ "id": 23737,
"properties": {
"facing": "east",
"half": "bottom",
@@ -63901,7 +63985,7 @@
}
},
{
- "id": 23269,
+ "id": 23738,
"properties": {
"facing": "east",
"half": "bottom",
@@ -63910,7 +63994,7 @@
}
},
{
- "id": 23270,
+ "id": 23739,
"properties": {
"facing": "east",
"half": "bottom",
@@ -63919,7 +64003,7 @@
}
},
{
- "id": 23271,
+ "id": 23740,
"properties": {
"facing": "east",
"half": "bottom",
@@ -63928,7 +64012,7 @@
}
},
{
- "id": 23272,
+ "id": 23741,
"properties": {
"facing": "east",
"half": "bottom",
@@ -63937,7 +64021,7 @@
}
},
{
- "id": 23273,
+ "id": 23742,
"properties": {
"facing": "east",
"half": "bottom",
@@ -63946,7 +64030,7 @@
}
},
{
- "id": 23274,
+ "id": 23743,
"properties": {
"facing": "east",
"half": "bottom",
@@ -63955,7 +64039,7 @@
}
},
{
- "id": 23275,
+ "id": 23744,
"properties": {
"facing": "east",
"half": "bottom",
@@ -63973,7 +64057,7 @@
"states": [
{
"default": true,
- "id": 11081
+ "id": 11416
}
]
},
@@ -63995,21 +64079,21 @@
},
"states": [
{
- "id": 11294,
+ "id": 11635,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11295,
+ "id": 11636,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11296,
+ "id": 11637,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -64017,21 +64101,21 @@
},
{
"default": true,
- "id": 11297,
+ "id": 11638,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11298,
+ "id": 11639,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11299,
+ "id": 11640,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -64047,7 +64131,7 @@
"states": [
{
"default": true,
- "id": 537
+ "id": 580
}
]
},
@@ -64069,21 +64153,21 @@
},
"states": [
{
- "id": 11240,
+ "id": 11581,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11241,
+ "id": 11582,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11242,
+ "id": 11583,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -64091,21 +64175,21 @@
},
{
"default": true,
- "id": 11243,
+ "id": 11584,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11244,
+ "id": 11585,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11245,
+ "id": 11586,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -64142,97 +64226,97 @@
"states": [
{
"default": true,
- "id": 10903,
+ "id": 11238,
"properties": {
"rotation": "0"
}
},
{
- "id": 10904,
+ "id": 11239,
"properties": {
"rotation": "1"
}
},
{
- "id": 10905,
+ "id": 11240,
"properties": {
"rotation": "2"
}
},
{
- "id": 10906,
+ "id": 11241,
"properties": {
"rotation": "3"
}
},
{
- "id": 10907,
+ "id": 11242,
"properties": {
"rotation": "4"
}
},
{
- "id": 10908,
+ "id": 11243,
"properties": {
"rotation": "5"
}
},
{
- "id": 10909,
+ "id": 11244,
"properties": {
"rotation": "6"
}
},
{
- "id": 10910,
+ "id": 11245,
"properties": {
"rotation": "7"
}
},
{
- "id": 10911,
+ "id": 11246,
"properties": {
"rotation": "8"
}
},
{
- "id": 10912,
+ "id": 11247,
"properties": {
"rotation": "9"
}
},
{
- "id": 10913,
+ "id": 11248,
"properties": {
"rotation": "10"
}
},
{
- "id": 10914,
+ "id": 11249,
"properties": {
"rotation": "11"
}
},
{
- "id": 10915,
+ "id": 11250,
"properties": {
"rotation": "12"
}
},
{
- "id": 10916,
+ "id": 11251,
"properties": {
"rotation": "13"
}
},
{
- "id": 10917,
+ "id": 11252,
"properties": {
"rotation": "14"
}
},
{
- "id": 10918,
+ "id": 11253,
"properties": {
"rotation": "15"
}
@@ -64263,7 +64347,7 @@
},
"states": [
{
- "id": 1832,
+ "id": 1875,
"properties": {
"facing": "north",
"occupied": "true",
@@ -64271,7 +64355,7 @@
}
},
{
- "id": 1833,
+ "id": 1876,
"properties": {
"facing": "north",
"occupied": "true",
@@ -64279,7 +64363,7 @@
}
},
{
- "id": 1834,
+ "id": 1877,
"properties": {
"facing": "north",
"occupied": "false",
@@ -64288,7 +64372,7 @@
},
{
"default": true,
- "id": 1835,
+ "id": 1878,
"properties": {
"facing": "north",
"occupied": "false",
@@ -64296,7 +64380,7 @@
}
},
{
- "id": 1836,
+ "id": 1879,
"properties": {
"facing": "south",
"occupied": "true",
@@ -64304,7 +64388,7 @@
}
},
{
- "id": 1837,
+ "id": 1880,
"properties": {
"facing": "south",
"occupied": "true",
@@ -64312,7 +64396,7 @@
}
},
{
- "id": 1838,
+ "id": 1881,
"properties": {
"facing": "south",
"occupied": "false",
@@ -64320,7 +64404,7 @@
}
},
{
- "id": 1839,
+ "id": 1882,
"properties": {
"facing": "south",
"occupied": "false",
@@ -64328,7 +64412,7 @@
}
},
{
- "id": 1840,
+ "id": 1883,
"properties": {
"facing": "west",
"occupied": "true",
@@ -64336,7 +64420,7 @@
}
},
{
- "id": 1841,
+ "id": 1884,
"properties": {
"facing": "west",
"occupied": "true",
@@ -64344,7 +64428,7 @@
}
},
{
- "id": 1842,
+ "id": 1885,
"properties": {
"facing": "west",
"occupied": "false",
@@ -64352,7 +64436,7 @@
}
},
{
- "id": 1843,
+ "id": 1886,
"properties": {
"facing": "west",
"occupied": "false",
@@ -64360,7 +64444,7 @@
}
},
{
- "id": 1844,
+ "id": 1887,
"properties": {
"facing": "east",
"occupied": "true",
@@ -64368,7 +64452,7 @@
}
},
{
- "id": 1845,
+ "id": 1888,
"properties": {
"facing": "east",
"occupied": "true",
@@ -64376,7 +64460,7 @@
}
},
{
- "id": 1846,
+ "id": 1889,
"properties": {
"facing": "east",
"occupied": "false",
@@ -64384,7 +64468,7 @@
}
},
{
- "id": 1847,
+ "id": 1890,
"properties": {
"facing": "east",
"occupied": "false",
@@ -64416,7 +64500,7 @@
},
"states": [
{
- "id": 20885,
+ "id": 21354,
"properties": {
"candles": "1",
"lit": "true",
@@ -64424,7 +64508,7 @@
}
},
{
- "id": 20886,
+ "id": 21355,
"properties": {
"candles": "1",
"lit": "true",
@@ -64432,7 +64516,7 @@
}
},
{
- "id": 20887,
+ "id": 21356,
"properties": {
"candles": "1",
"lit": "false",
@@ -64441,7 +64525,7 @@
},
{
"default": true,
- "id": 20888,
+ "id": 21357,
"properties": {
"candles": "1",
"lit": "false",
@@ -64449,7 +64533,7 @@
}
},
{
- "id": 20889,
+ "id": 21358,
"properties": {
"candles": "2",
"lit": "true",
@@ -64457,7 +64541,7 @@
}
},
{
- "id": 20890,
+ "id": 21359,
"properties": {
"candles": "2",
"lit": "true",
@@ -64465,7 +64549,7 @@
}
},
{
- "id": 20891,
+ "id": 21360,
"properties": {
"candles": "2",
"lit": "false",
@@ -64473,7 +64557,7 @@
}
},
{
- "id": 20892,
+ "id": 21361,
"properties": {
"candles": "2",
"lit": "false",
@@ -64481,7 +64565,7 @@
}
},
{
- "id": 20893,
+ "id": 21362,
"properties": {
"candles": "3",
"lit": "true",
@@ -64489,7 +64573,7 @@
}
},
{
- "id": 20894,
+ "id": 21363,
"properties": {
"candles": "3",
"lit": "true",
@@ -64497,7 +64581,7 @@
}
},
{
- "id": 20895,
+ "id": 21364,
"properties": {
"candles": "3",
"lit": "false",
@@ -64505,7 +64589,7 @@
}
},
{
- "id": 20896,
+ "id": 21365,
"properties": {
"candles": "3",
"lit": "false",
@@ -64513,7 +64597,7 @@
}
},
{
- "id": 20897,
+ "id": 21366,
"properties": {
"candles": "4",
"lit": "true",
@@ -64521,7 +64605,7 @@
}
},
{
- "id": 20898,
+ "id": 21367,
"properties": {
"candles": "4",
"lit": "true",
@@ -64529,7 +64613,7 @@
}
},
{
- "id": 20899,
+ "id": 21368,
"properties": {
"candles": "4",
"lit": "false",
@@ -64537,7 +64621,7 @@
}
},
{
- "id": 20900,
+ "id": 21369,
"properties": {
"candles": "4",
"lit": "false",
@@ -64560,14 +64644,14 @@
},
"states": [
{
- "id": 21017,
+ "id": 21486,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 21018,
+ "id": 21487,
"properties": {
"lit": "false"
}
@@ -64583,7 +64667,7 @@
"states": [
{
"default": true,
- "id": 10737
+ "id": 11072
}
]
},
@@ -64595,7 +64679,7 @@
"states": [
{
"default": true,
- "id": 12737
+ "id": 13206
}
]
},
@@ -64608,7 +64692,7 @@
"states": [
{
"default": true,
- "id": 12753
+ "id": 13222
}
]
},
@@ -64628,25 +64712,25 @@
"states": [
{
"default": true,
- "id": 12700,
+ "id": 13169,
"properties": {
"facing": "north"
}
},
{
- "id": 12701,
+ "id": 13170,
"properties": {
"facing": "south"
}
},
{
- "id": 12702,
+ "id": 13171,
"properties": {
"facing": "west"
}
},
{
- "id": 12703,
+ "id": 13172,
"properties": {
"facing": "east"
}
@@ -64671,38 +64755,38 @@
},
"states": [
{
- "id": 12622,
+ "id": 13091,
"properties": {
"facing": "north"
}
},
{
- "id": 12623,
+ "id": 13092,
"properties": {
"facing": "east"
}
},
{
- "id": 12624,
+ "id": 13093,
"properties": {
"facing": "south"
}
},
{
- "id": 12625,
+ "id": 13094,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12626,
+ "id": 13095,
"properties": {
"facing": "up"
}
},
{
- "id": 12627,
+ "id": 13096,
"properties": {
"facing": "down"
}
@@ -64718,7 +64802,7 @@
"states": [
{
"default": true,
- "id": 5954
+ "id": 6120
}
]
},
@@ -64752,7 +64836,7 @@
},
"states": [
{
- "id": 9660,
+ "id": 9915,
"properties": {
"east": "true",
"north": "true",
@@ -64762,7 +64846,7 @@
}
},
{
- "id": 9661,
+ "id": 9916,
"properties": {
"east": "true",
"north": "true",
@@ -64772,7 +64856,7 @@
}
},
{
- "id": 9662,
+ "id": 9917,
"properties": {
"east": "true",
"north": "true",
@@ -64782,7 +64866,7 @@
}
},
{
- "id": 9663,
+ "id": 9918,
"properties": {
"east": "true",
"north": "true",
@@ -64792,7 +64876,7 @@
}
},
{
- "id": 9664,
+ "id": 9919,
"properties": {
"east": "true",
"north": "true",
@@ -64802,7 +64886,7 @@
}
},
{
- "id": 9665,
+ "id": 9920,
"properties": {
"east": "true",
"north": "true",
@@ -64812,7 +64896,7 @@
}
},
{
- "id": 9666,
+ "id": 9921,
"properties": {
"east": "true",
"north": "true",
@@ -64822,7 +64906,7 @@
}
},
{
- "id": 9667,
+ "id": 9922,
"properties": {
"east": "true",
"north": "true",
@@ -64832,7 +64916,7 @@
}
},
{
- "id": 9668,
+ "id": 9923,
"properties": {
"east": "true",
"north": "false",
@@ -64842,7 +64926,7 @@
}
},
{
- "id": 9669,
+ "id": 9924,
"properties": {
"east": "true",
"north": "false",
@@ -64852,7 +64936,7 @@
}
},
{
- "id": 9670,
+ "id": 9925,
"properties": {
"east": "true",
"north": "false",
@@ -64862,7 +64946,7 @@
}
},
{
- "id": 9671,
+ "id": 9926,
"properties": {
"east": "true",
"north": "false",
@@ -64872,7 +64956,7 @@
}
},
{
- "id": 9672,
+ "id": 9927,
"properties": {
"east": "true",
"north": "false",
@@ -64882,7 +64966,7 @@
}
},
{
- "id": 9673,
+ "id": 9928,
"properties": {
"east": "true",
"north": "false",
@@ -64892,7 +64976,7 @@
}
},
{
- "id": 9674,
+ "id": 9929,
"properties": {
"east": "true",
"north": "false",
@@ -64902,7 +64986,7 @@
}
},
{
- "id": 9675,
+ "id": 9930,
"properties": {
"east": "true",
"north": "false",
@@ -64912,7 +64996,7 @@
}
},
{
- "id": 9676,
+ "id": 9931,
"properties": {
"east": "false",
"north": "true",
@@ -64922,7 +65006,7 @@
}
},
{
- "id": 9677,
+ "id": 9932,
"properties": {
"east": "false",
"north": "true",
@@ -64932,7 +65016,7 @@
}
},
{
- "id": 9678,
+ "id": 9933,
"properties": {
"east": "false",
"north": "true",
@@ -64942,7 +65026,7 @@
}
},
{
- "id": 9679,
+ "id": 9934,
"properties": {
"east": "false",
"north": "true",
@@ -64952,7 +65036,7 @@
}
},
{
- "id": 9680,
+ "id": 9935,
"properties": {
"east": "false",
"north": "true",
@@ -64962,7 +65046,7 @@
}
},
{
- "id": 9681,
+ "id": 9936,
"properties": {
"east": "false",
"north": "true",
@@ -64972,7 +65056,7 @@
}
},
{
- "id": 9682,
+ "id": 9937,
"properties": {
"east": "false",
"north": "true",
@@ -64982,7 +65066,7 @@
}
},
{
- "id": 9683,
+ "id": 9938,
"properties": {
"east": "false",
"north": "true",
@@ -64992,7 +65076,7 @@
}
},
{
- "id": 9684,
+ "id": 9939,
"properties": {
"east": "false",
"north": "false",
@@ -65002,7 +65086,7 @@
}
},
{
- "id": 9685,
+ "id": 9940,
"properties": {
"east": "false",
"north": "false",
@@ -65012,7 +65096,7 @@
}
},
{
- "id": 9686,
+ "id": 9941,
"properties": {
"east": "false",
"north": "false",
@@ -65022,7 +65106,7 @@
}
},
{
- "id": 9687,
+ "id": 9942,
"properties": {
"east": "false",
"north": "false",
@@ -65032,7 +65116,7 @@
}
},
{
- "id": 9688,
+ "id": 9943,
"properties": {
"east": "false",
"north": "false",
@@ -65042,7 +65126,7 @@
}
},
{
- "id": 9689,
+ "id": 9944,
"properties": {
"east": "false",
"north": "false",
@@ -65052,7 +65136,7 @@
}
},
{
- "id": 9690,
+ "id": 9945,
"properties": {
"east": "false",
"north": "false",
@@ -65063,7 +65147,7 @@
},
{
"default": true,
- "id": 9691,
+ "id": 9946,
"properties": {
"east": "false",
"north": "false",
@@ -65082,7 +65166,7 @@
"states": [
{
"default": true,
- "id": 9365
+ "id": 9620
}
]
},
@@ -65103,25 +65187,25 @@
"states": [
{
"default": true,
- "id": 11051,
+ "id": 11386,
"properties": {
"facing": "north"
}
},
{
- "id": 11052,
+ "id": 11387,
"properties": {
"facing": "south"
}
},
{
- "id": 11053,
+ "id": 11388,
"properties": {
"facing": "west"
}
},
{
- "id": 11054,
+ "id": 11389,
"properties": {
"facing": "east"
}
@@ -65136,7 +65220,7 @@
"states": [
{
"default": true,
- "id": 2056
+ "id": 2099
}
]
},
@@ -65156,25 +65240,25 @@
"states": [
{
"default": true,
- "id": 9115,
+ "id": 9370,
"properties": {
"facing": "north"
}
},
{
- "id": 9116,
+ "id": 9371,
"properties": {
"facing": "south"
}
},
{
- "id": 9117,
+ "id": 9372,
"properties": {
"facing": "west"
}
},
{
- "id": 9118,
+ "id": 9373,
"properties": {
"facing": "east"
}
@@ -65195,7 +65279,7 @@
"states": [
{
"default": true,
- "id": 2075
+ "id": 2118
}
]
},
@@ -65225,7 +65309,7 @@
},
"states": [
{
- "id": 8755,
+ "id": 8986,
"properties": {
"face": "floor",
"facing": "north",
@@ -65233,7 +65317,7 @@
}
},
{
- "id": 8756,
+ "id": 8987,
"properties": {
"face": "floor",
"facing": "north",
@@ -65241,7 +65325,7 @@
}
},
{
- "id": 8757,
+ "id": 8988,
"properties": {
"face": "floor",
"facing": "south",
@@ -65249,7 +65333,7 @@
}
},
{
- "id": 8758,
+ "id": 8989,
"properties": {
"face": "floor",
"facing": "south",
@@ -65257,7 +65341,7 @@
}
},
{
- "id": 8759,
+ "id": 8990,
"properties": {
"face": "floor",
"facing": "west",
@@ -65265,7 +65349,7 @@
}
},
{
- "id": 8760,
+ "id": 8991,
"properties": {
"face": "floor",
"facing": "west",
@@ -65273,7 +65357,7 @@
}
},
{
- "id": 8761,
+ "id": 8992,
"properties": {
"face": "floor",
"facing": "east",
@@ -65281,7 +65365,7 @@
}
},
{
- "id": 8762,
+ "id": 8993,
"properties": {
"face": "floor",
"facing": "east",
@@ -65289,7 +65373,7 @@
}
},
{
- "id": 8763,
+ "id": 8994,
"properties": {
"face": "wall",
"facing": "north",
@@ -65298,7 +65382,7 @@
},
{
"default": true,
- "id": 8764,
+ "id": 8995,
"properties": {
"face": "wall",
"facing": "north",
@@ -65306,7 +65390,7 @@
}
},
{
- "id": 8765,
+ "id": 8996,
"properties": {
"face": "wall",
"facing": "south",
@@ -65314,7 +65398,7 @@
}
},
{
- "id": 8766,
+ "id": 8997,
"properties": {
"face": "wall",
"facing": "south",
@@ -65322,7 +65406,7 @@
}
},
{
- "id": 8767,
+ "id": 8998,
"properties": {
"face": "wall",
"facing": "west",
@@ -65330,7 +65414,7 @@
}
},
{
- "id": 8768,
+ "id": 8999,
"properties": {
"face": "wall",
"facing": "west",
@@ -65338,7 +65422,7 @@
}
},
{
- "id": 8769,
+ "id": 9000,
"properties": {
"face": "wall",
"facing": "east",
@@ -65346,7 +65430,7 @@
}
},
{
- "id": 8770,
+ "id": 9001,
"properties": {
"face": "wall",
"facing": "east",
@@ -65354,7 +65438,7 @@
}
},
{
- "id": 8771,
+ "id": 9002,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -65362,7 +65446,7 @@
}
},
{
- "id": 8772,
+ "id": 9003,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -65370,7 +65454,7 @@
}
},
{
- "id": 8773,
+ "id": 9004,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -65378,7 +65462,7 @@
}
},
{
- "id": 8774,
+ "id": 9005,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -65386,7 +65470,7 @@
}
},
{
- "id": 8775,
+ "id": 9006,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -65394,7 +65478,7 @@
}
},
{
- "id": 8776,
+ "id": 9007,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -65402,7 +65486,7 @@
}
},
{
- "id": 8777,
+ "id": 9008,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -65410,7 +65494,7 @@
}
},
{
- "id": 8778,
+ "id": 9009,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -65451,7 +65535,7 @@
},
"states": [
{
- "id": 12142,
+ "id": 12547,
"properties": {
"facing": "north",
"half": "upper",
@@ -65461,7 +65545,7 @@
}
},
{
- "id": 12143,
+ "id": 12548,
"properties": {
"facing": "north",
"half": "upper",
@@ -65471,7 +65555,7 @@
}
},
{
- "id": 12144,
+ "id": 12549,
"properties": {
"facing": "north",
"half": "upper",
@@ -65481,7 +65565,7 @@
}
},
{
- "id": 12145,
+ "id": 12550,
"properties": {
"facing": "north",
"half": "upper",
@@ -65491,7 +65575,7 @@
}
},
{
- "id": 12146,
+ "id": 12551,
"properties": {
"facing": "north",
"half": "upper",
@@ -65501,7 +65585,7 @@
}
},
{
- "id": 12147,
+ "id": 12552,
"properties": {
"facing": "north",
"half": "upper",
@@ -65511,7 +65595,7 @@
}
},
{
- "id": 12148,
+ "id": 12553,
"properties": {
"facing": "north",
"half": "upper",
@@ -65521,7 +65605,7 @@
}
},
{
- "id": 12149,
+ "id": 12554,
"properties": {
"facing": "north",
"half": "upper",
@@ -65531,7 +65615,7 @@
}
},
{
- "id": 12150,
+ "id": 12555,
"properties": {
"facing": "north",
"half": "lower",
@@ -65541,7 +65625,7 @@
}
},
{
- "id": 12151,
+ "id": 12556,
"properties": {
"facing": "north",
"half": "lower",
@@ -65551,7 +65635,7 @@
}
},
{
- "id": 12152,
+ "id": 12557,
"properties": {
"facing": "north",
"half": "lower",
@@ -65562,7 +65646,7 @@
},
{
"default": true,
- "id": 12153,
+ "id": 12558,
"properties": {
"facing": "north",
"half": "lower",
@@ -65572,7 +65656,7 @@
}
},
{
- "id": 12154,
+ "id": 12559,
"properties": {
"facing": "north",
"half": "lower",
@@ -65582,7 +65666,7 @@
}
},
{
- "id": 12155,
+ "id": 12560,
"properties": {
"facing": "north",
"half": "lower",
@@ -65592,7 +65676,7 @@
}
},
{
- "id": 12156,
+ "id": 12561,
"properties": {
"facing": "north",
"half": "lower",
@@ -65602,7 +65686,7 @@
}
},
{
- "id": 12157,
+ "id": 12562,
"properties": {
"facing": "north",
"half": "lower",
@@ -65612,7 +65696,7 @@
}
},
{
- "id": 12158,
+ "id": 12563,
"properties": {
"facing": "south",
"half": "upper",
@@ -65622,7 +65706,7 @@
}
},
{
- "id": 12159,
+ "id": 12564,
"properties": {
"facing": "south",
"half": "upper",
@@ -65632,7 +65716,7 @@
}
},
{
- "id": 12160,
+ "id": 12565,
"properties": {
"facing": "south",
"half": "upper",
@@ -65642,7 +65726,7 @@
}
},
{
- "id": 12161,
+ "id": 12566,
"properties": {
"facing": "south",
"half": "upper",
@@ -65652,7 +65736,7 @@
}
},
{
- "id": 12162,
+ "id": 12567,
"properties": {
"facing": "south",
"half": "upper",
@@ -65662,7 +65746,7 @@
}
},
{
- "id": 12163,
+ "id": 12568,
"properties": {
"facing": "south",
"half": "upper",
@@ -65672,7 +65756,7 @@
}
},
{
- "id": 12164,
+ "id": 12569,
"properties": {
"facing": "south",
"half": "upper",
@@ -65682,7 +65766,7 @@
}
},
{
- "id": 12165,
+ "id": 12570,
"properties": {
"facing": "south",
"half": "upper",
@@ -65692,7 +65776,7 @@
}
},
{
- "id": 12166,
+ "id": 12571,
"properties": {
"facing": "south",
"half": "lower",
@@ -65702,7 +65786,7 @@
}
},
{
- "id": 12167,
+ "id": 12572,
"properties": {
"facing": "south",
"half": "lower",
@@ -65712,7 +65796,7 @@
}
},
{
- "id": 12168,
+ "id": 12573,
"properties": {
"facing": "south",
"half": "lower",
@@ -65722,7 +65806,7 @@
}
},
{
- "id": 12169,
+ "id": 12574,
"properties": {
"facing": "south",
"half": "lower",
@@ -65732,7 +65816,7 @@
}
},
{
- "id": 12170,
+ "id": 12575,
"properties": {
"facing": "south",
"half": "lower",
@@ -65742,7 +65826,7 @@
}
},
{
- "id": 12171,
+ "id": 12576,
"properties": {
"facing": "south",
"half": "lower",
@@ -65752,7 +65836,7 @@
}
},
{
- "id": 12172,
+ "id": 12577,
"properties": {
"facing": "south",
"half": "lower",
@@ -65762,7 +65846,7 @@
}
},
{
- "id": 12173,
+ "id": 12578,
"properties": {
"facing": "south",
"half": "lower",
@@ -65772,7 +65856,7 @@
}
},
{
- "id": 12174,
+ "id": 12579,
"properties": {
"facing": "west",
"half": "upper",
@@ -65782,7 +65866,7 @@
}
},
{
- "id": 12175,
+ "id": 12580,
"properties": {
"facing": "west",
"half": "upper",
@@ -65792,7 +65876,7 @@
}
},
{
- "id": 12176,
+ "id": 12581,
"properties": {
"facing": "west",
"half": "upper",
@@ -65802,7 +65886,7 @@
}
},
{
- "id": 12177,
+ "id": 12582,
"properties": {
"facing": "west",
"half": "upper",
@@ -65812,7 +65896,7 @@
}
},
{
- "id": 12178,
+ "id": 12583,
"properties": {
"facing": "west",
"half": "upper",
@@ -65822,7 +65906,7 @@
}
},
{
- "id": 12179,
+ "id": 12584,
"properties": {
"facing": "west",
"half": "upper",
@@ -65832,7 +65916,7 @@
}
},
{
- "id": 12180,
+ "id": 12585,
"properties": {
"facing": "west",
"half": "upper",
@@ -65842,7 +65926,7 @@
}
},
{
- "id": 12181,
+ "id": 12586,
"properties": {
"facing": "west",
"half": "upper",
@@ -65852,7 +65936,7 @@
}
},
{
- "id": 12182,
+ "id": 12587,
"properties": {
"facing": "west",
"half": "lower",
@@ -65862,7 +65946,7 @@
}
},
{
- "id": 12183,
+ "id": 12588,
"properties": {
"facing": "west",
"half": "lower",
@@ -65872,7 +65956,7 @@
}
},
{
- "id": 12184,
+ "id": 12589,
"properties": {
"facing": "west",
"half": "lower",
@@ -65882,7 +65966,7 @@
}
},
{
- "id": 12185,
+ "id": 12590,
"properties": {
"facing": "west",
"half": "lower",
@@ -65892,7 +65976,7 @@
}
},
{
- "id": 12186,
+ "id": 12591,
"properties": {
"facing": "west",
"half": "lower",
@@ -65902,7 +65986,7 @@
}
},
{
- "id": 12187,
+ "id": 12592,
"properties": {
"facing": "west",
"half": "lower",
@@ -65912,7 +65996,7 @@
}
},
{
- "id": 12188,
+ "id": 12593,
"properties": {
"facing": "west",
"half": "lower",
@@ -65922,7 +66006,7 @@
}
},
{
- "id": 12189,
+ "id": 12594,
"properties": {
"facing": "west",
"half": "lower",
@@ -65932,7 +66016,7 @@
}
},
{
- "id": 12190,
+ "id": 12595,
"properties": {
"facing": "east",
"half": "upper",
@@ -65942,7 +66026,7 @@
}
},
{
- "id": 12191,
+ "id": 12596,
"properties": {
"facing": "east",
"half": "upper",
@@ -65952,7 +66036,7 @@
}
},
{
- "id": 12192,
+ "id": 12597,
"properties": {
"facing": "east",
"half": "upper",
@@ -65962,7 +66046,7 @@
}
},
{
- "id": 12193,
+ "id": 12598,
"properties": {
"facing": "east",
"half": "upper",
@@ -65972,7 +66056,7 @@
}
},
{
- "id": 12194,
+ "id": 12599,
"properties": {
"facing": "east",
"half": "upper",
@@ -65982,7 +66066,7 @@
}
},
{
- "id": 12195,
+ "id": 12600,
"properties": {
"facing": "east",
"half": "upper",
@@ -65992,7 +66076,7 @@
}
},
{
- "id": 12196,
+ "id": 12601,
"properties": {
"facing": "east",
"half": "upper",
@@ -66002,7 +66086,7 @@
}
},
{
- "id": 12197,
+ "id": 12602,
"properties": {
"facing": "east",
"half": "upper",
@@ -66012,7 +66096,7 @@
}
},
{
- "id": 12198,
+ "id": 12603,
"properties": {
"facing": "east",
"half": "lower",
@@ -66022,7 +66106,7 @@
}
},
{
- "id": 12199,
+ "id": 12604,
"properties": {
"facing": "east",
"half": "lower",
@@ -66032,7 +66116,7 @@
}
},
{
- "id": 12200,
+ "id": 12605,
"properties": {
"facing": "east",
"half": "lower",
@@ -66042,7 +66126,7 @@
}
},
{
- "id": 12201,
+ "id": 12606,
"properties": {
"facing": "east",
"half": "lower",
@@ -66052,7 +66136,7 @@
}
},
{
- "id": 12202,
+ "id": 12607,
"properties": {
"facing": "east",
"half": "lower",
@@ -66062,7 +66146,7 @@
}
},
{
- "id": 12203,
+ "id": 12608,
"properties": {
"facing": "east",
"half": "lower",
@@ -66072,7 +66156,7 @@
}
},
{
- "id": 12204,
+ "id": 12609,
"properties": {
"facing": "east",
"half": "lower",
@@ -66082,7 +66166,7 @@
}
},
{
- "id": 12205,
+ "id": 12610,
"properties": {
"facing": "east",
"half": "lower",
@@ -66122,7 +66206,7 @@
},
"states": [
{
- "id": 11726,
+ "id": 12099,
"properties": {
"east": "true",
"north": "true",
@@ -66132,7 +66216,7 @@
}
},
{
- "id": 11727,
+ "id": 12100,
"properties": {
"east": "true",
"north": "true",
@@ -66142,7 +66226,7 @@
}
},
{
- "id": 11728,
+ "id": 12101,
"properties": {
"east": "true",
"north": "true",
@@ -66152,7 +66236,7 @@
}
},
{
- "id": 11729,
+ "id": 12102,
"properties": {
"east": "true",
"north": "true",
@@ -66162,7 +66246,7 @@
}
},
{
- "id": 11730,
+ "id": 12103,
"properties": {
"east": "true",
"north": "true",
@@ -66172,7 +66256,7 @@
}
},
{
- "id": 11731,
+ "id": 12104,
"properties": {
"east": "true",
"north": "true",
@@ -66182,7 +66266,7 @@
}
},
{
- "id": 11732,
+ "id": 12105,
"properties": {
"east": "true",
"north": "true",
@@ -66192,7 +66276,7 @@
}
},
{
- "id": 11733,
+ "id": 12106,
"properties": {
"east": "true",
"north": "true",
@@ -66202,7 +66286,7 @@
}
},
{
- "id": 11734,
+ "id": 12107,
"properties": {
"east": "true",
"north": "false",
@@ -66212,7 +66296,7 @@
}
},
{
- "id": 11735,
+ "id": 12108,
"properties": {
"east": "true",
"north": "false",
@@ -66222,7 +66306,7 @@
}
},
{
- "id": 11736,
+ "id": 12109,
"properties": {
"east": "true",
"north": "false",
@@ -66232,7 +66316,7 @@
}
},
{
- "id": 11737,
+ "id": 12110,
"properties": {
"east": "true",
"north": "false",
@@ -66242,7 +66326,7 @@
}
},
{
- "id": 11738,
+ "id": 12111,
"properties": {
"east": "true",
"north": "false",
@@ -66252,7 +66336,7 @@
}
},
{
- "id": 11739,
+ "id": 12112,
"properties": {
"east": "true",
"north": "false",
@@ -66262,7 +66346,7 @@
}
},
{
- "id": 11740,
+ "id": 12113,
"properties": {
"east": "true",
"north": "false",
@@ -66272,7 +66356,7 @@
}
},
{
- "id": 11741,
+ "id": 12114,
"properties": {
"east": "true",
"north": "false",
@@ -66282,7 +66366,7 @@
}
},
{
- "id": 11742,
+ "id": 12115,
"properties": {
"east": "false",
"north": "true",
@@ -66292,7 +66376,7 @@
}
},
{
- "id": 11743,
+ "id": 12116,
"properties": {
"east": "false",
"north": "true",
@@ -66302,7 +66386,7 @@
}
},
{
- "id": 11744,
+ "id": 12117,
"properties": {
"east": "false",
"north": "true",
@@ -66312,7 +66396,7 @@
}
},
{
- "id": 11745,
+ "id": 12118,
"properties": {
"east": "false",
"north": "true",
@@ -66322,7 +66406,7 @@
}
},
{
- "id": 11746,
+ "id": 12119,
"properties": {
"east": "false",
"north": "true",
@@ -66332,7 +66416,7 @@
}
},
{
- "id": 11747,
+ "id": 12120,
"properties": {
"east": "false",
"north": "true",
@@ -66342,7 +66426,7 @@
}
},
{
- "id": 11748,
+ "id": 12121,
"properties": {
"east": "false",
"north": "true",
@@ -66352,7 +66436,7 @@
}
},
{
- "id": 11749,
+ "id": 12122,
"properties": {
"east": "false",
"north": "true",
@@ -66362,7 +66446,7 @@
}
},
{
- "id": 11750,
+ "id": 12123,
"properties": {
"east": "false",
"north": "false",
@@ -66372,7 +66456,7 @@
}
},
{
- "id": 11751,
+ "id": 12124,
"properties": {
"east": "false",
"north": "false",
@@ -66382,7 +66466,7 @@
}
},
{
- "id": 11752,
+ "id": 12125,
"properties": {
"east": "false",
"north": "false",
@@ -66392,7 +66476,7 @@
}
},
{
- "id": 11753,
+ "id": 12126,
"properties": {
"east": "false",
"north": "false",
@@ -66402,7 +66486,7 @@
}
},
{
- "id": 11754,
+ "id": 12127,
"properties": {
"east": "false",
"north": "false",
@@ -66412,7 +66496,7 @@
}
},
{
- "id": 11755,
+ "id": 12128,
"properties": {
"east": "false",
"north": "false",
@@ -66422,7 +66506,7 @@
}
},
{
- "id": 11756,
+ "id": 12129,
"properties": {
"east": "false",
"north": "false",
@@ -66433,7 +66517,7 @@
},
{
"default": true,
- "id": 11757,
+ "id": 12130,
"properties": {
"east": "false",
"north": "false",
@@ -66472,7 +66556,7 @@
},
"states": [
{
- "id": 11470,
+ "id": 11811,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -66481,7 +66565,7 @@
}
},
{
- "id": 11471,
+ "id": 11812,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -66490,7 +66574,7 @@
}
},
{
- "id": 11472,
+ "id": 11813,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -66499,7 +66583,7 @@
}
},
{
- "id": 11473,
+ "id": 11814,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -66508,7 +66592,7 @@
}
},
{
- "id": 11474,
+ "id": 11815,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -66517,7 +66601,7 @@
}
},
{
- "id": 11475,
+ "id": 11816,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -66526,7 +66610,7 @@
}
},
{
- "id": 11476,
+ "id": 11817,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -66536,7 +66620,7 @@
},
{
"default": true,
- "id": 11477,
+ "id": 11818,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -66545,7 +66629,7 @@
}
},
{
- "id": 11478,
+ "id": 11819,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -66554,7 +66638,7 @@
}
},
{
- "id": 11479,
+ "id": 11820,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -66563,7 +66647,7 @@
}
},
{
- "id": 11480,
+ "id": 11821,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -66572,7 +66656,7 @@
}
},
{
- "id": 11481,
+ "id": 11822,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -66581,7 +66665,7 @@
}
},
{
- "id": 11482,
+ "id": 11823,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -66590,7 +66674,7 @@
}
},
{
- "id": 11483,
+ "id": 11824,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -66599,7 +66683,7 @@
}
},
{
- "id": 11484,
+ "id": 11825,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -66608,7 +66692,7 @@
}
},
{
- "id": 11485,
+ "id": 11826,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -66617,7 +66701,7 @@
}
},
{
- "id": 11486,
+ "id": 11827,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -66626,7 +66710,7 @@
}
},
{
- "id": 11487,
+ "id": 11828,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -66635,7 +66719,7 @@
}
},
{
- "id": 11488,
+ "id": 11829,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -66644,7 +66728,7 @@
}
},
{
- "id": 11489,
+ "id": 11830,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -66653,7 +66737,7 @@
}
},
{
- "id": 11490,
+ "id": 11831,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -66662,7 +66746,7 @@
}
},
{
- "id": 11491,
+ "id": 11832,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -66671,7 +66755,7 @@
}
},
{
- "id": 11492,
+ "id": 11833,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -66680,7 +66764,7 @@
}
},
{
- "id": 11493,
+ "id": 11834,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -66689,7 +66773,7 @@
}
},
{
- "id": 11494,
+ "id": 11835,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -66698,7 +66782,7 @@
}
},
{
- "id": 11495,
+ "id": 11836,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -66707,7 +66791,7 @@
}
},
{
- "id": 11496,
+ "id": 11837,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -66716,7 +66800,7 @@
}
},
{
- "id": 11497,
+ "id": 11838,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -66725,7 +66809,7 @@
}
},
{
- "id": 11498,
+ "id": 11839,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -66734,7 +66818,7 @@
}
},
{
- "id": 11499,
+ "id": 11840,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -66743,7 +66827,7 @@
}
},
{
- "id": 11500,
+ "id": 11841,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -66752,7 +66836,7 @@
}
},
{
- "id": 11501,
+ "id": 11842,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -66798,7 +66882,7 @@
},
"states": [
{
- "id": 5218,
+ "id": 5310,
"properties": {
"attached": "true",
"rotation": "0",
@@ -66806,7 +66890,7 @@
}
},
{
- "id": 5219,
+ "id": 5311,
"properties": {
"attached": "true",
"rotation": "0",
@@ -66814,7 +66898,7 @@
}
},
{
- "id": 5220,
+ "id": 5312,
"properties": {
"attached": "true",
"rotation": "1",
@@ -66822,7 +66906,7 @@
}
},
{
- "id": 5221,
+ "id": 5313,
"properties": {
"attached": "true",
"rotation": "1",
@@ -66830,7 +66914,7 @@
}
},
{
- "id": 5222,
+ "id": 5314,
"properties": {
"attached": "true",
"rotation": "2",
@@ -66838,7 +66922,7 @@
}
},
{
- "id": 5223,
+ "id": 5315,
"properties": {
"attached": "true",
"rotation": "2",
@@ -66846,7 +66930,7 @@
}
},
{
- "id": 5224,
+ "id": 5316,
"properties": {
"attached": "true",
"rotation": "3",
@@ -66854,7 +66938,7 @@
}
},
{
- "id": 5225,
+ "id": 5317,
"properties": {
"attached": "true",
"rotation": "3",
@@ -66862,7 +66946,7 @@
}
},
{
- "id": 5226,
+ "id": 5318,
"properties": {
"attached": "true",
"rotation": "4",
@@ -66870,7 +66954,7 @@
}
},
{
- "id": 5227,
+ "id": 5319,
"properties": {
"attached": "true",
"rotation": "4",
@@ -66878,7 +66962,7 @@
}
},
{
- "id": 5228,
+ "id": 5320,
"properties": {
"attached": "true",
"rotation": "5",
@@ -66886,7 +66970,7 @@
}
},
{
- "id": 5229,
+ "id": 5321,
"properties": {
"attached": "true",
"rotation": "5",
@@ -66894,7 +66978,7 @@
}
},
{
- "id": 5230,
+ "id": 5322,
"properties": {
"attached": "true",
"rotation": "6",
@@ -66902,7 +66986,7 @@
}
},
{
- "id": 5231,
+ "id": 5323,
"properties": {
"attached": "true",
"rotation": "6",
@@ -66910,7 +66994,7 @@
}
},
{
- "id": 5232,
+ "id": 5324,
"properties": {
"attached": "true",
"rotation": "7",
@@ -66918,7 +67002,7 @@
}
},
{
- "id": 5233,
+ "id": 5325,
"properties": {
"attached": "true",
"rotation": "7",
@@ -66926,7 +67010,7 @@
}
},
{
- "id": 5234,
+ "id": 5326,
"properties": {
"attached": "true",
"rotation": "8",
@@ -66934,7 +67018,7 @@
}
},
{
- "id": 5235,
+ "id": 5327,
"properties": {
"attached": "true",
"rotation": "8",
@@ -66942,7 +67026,7 @@
}
},
{
- "id": 5236,
+ "id": 5328,
"properties": {
"attached": "true",
"rotation": "9",
@@ -66950,7 +67034,7 @@
}
},
{
- "id": 5237,
+ "id": 5329,
"properties": {
"attached": "true",
"rotation": "9",
@@ -66958,7 +67042,7 @@
}
},
{
- "id": 5238,
+ "id": 5330,
"properties": {
"attached": "true",
"rotation": "10",
@@ -66966,7 +67050,7 @@
}
},
{
- "id": 5239,
+ "id": 5331,
"properties": {
"attached": "true",
"rotation": "10",
@@ -66974,7 +67058,7 @@
}
},
{
- "id": 5240,
+ "id": 5332,
"properties": {
"attached": "true",
"rotation": "11",
@@ -66982,7 +67066,7 @@
}
},
{
- "id": 5241,
+ "id": 5333,
"properties": {
"attached": "true",
"rotation": "11",
@@ -66990,7 +67074,7 @@
}
},
{
- "id": 5242,
+ "id": 5334,
"properties": {
"attached": "true",
"rotation": "12",
@@ -66998,7 +67082,7 @@
}
},
{
- "id": 5243,
+ "id": 5335,
"properties": {
"attached": "true",
"rotation": "12",
@@ -67006,7 +67090,7 @@
}
},
{
- "id": 5244,
+ "id": 5336,
"properties": {
"attached": "true",
"rotation": "13",
@@ -67014,7 +67098,7 @@
}
},
{
- "id": 5245,
+ "id": 5337,
"properties": {
"attached": "true",
"rotation": "13",
@@ -67022,7 +67106,7 @@
}
},
{
- "id": 5246,
+ "id": 5338,
"properties": {
"attached": "true",
"rotation": "14",
@@ -67030,7 +67114,7 @@
}
},
{
- "id": 5247,
+ "id": 5339,
"properties": {
"attached": "true",
"rotation": "14",
@@ -67038,7 +67122,7 @@
}
},
{
- "id": 5248,
+ "id": 5340,
"properties": {
"attached": "true",
"rotation": "15",
@@ -67046,7 +67130,7 @@
}
},
{
- "id": 5249,
+ "id": 5341,
"properties": {
"attached": "true",
"rotation": "15",
@@ -67054,7 +67138,7 @@
}
},
{
- "id": 5250,
+ "id": 5342,
"properties": {
"attached": "false",
"rotation": "0",
@@ -67063,7 +67147,7 @@
},
{
"default": true,
- "id": 5251,
+ "id": 5343,
"properties": {
"attached": "false",
"rotation": "0",
@@ -67071,7 +67155,7 @@
}
},
{
- "id": 5252,
+ "id": 5344,
"properties": {
"attached": "false",
"rotation": "1",
@@ -67079,7 +67163,7 @@
}
},
{
- "id": 5253,
+ "id": 5345,
"properties": {
"attached": "false",
"rotation": "1",
@@ -67087,7 +67171,7 @@
}
},
{
- "id": 5254,
+ "id": 5346,
"properties": {
"attached": "false",
"rotation": "2",
@@ -67095,7 +67179,7 @@
}
},
{
- "id": 5255,
+ "id": 5347,
"properties": {
"attached": "false",
"rotation": "2",
@@ -67103,7 +67187,7 @@
}
},
{
- "id": 5256,
+ "id": 5348,
"properties": {
"attached": "false",
"rotation": "3",
@@ -67111,7 +67195,7 @@
}
},
{
- "id": 5257,
+ "id": 5349,
"properties": {
"attached": "false",
"rotation": "3",
@@ -67119,7 +67203,7 @@
}
},
{
- "id": 5258,
+ "id": 5350,
"properties": {
"attached": "false",
"rotation": "4",
@@ -67127,7 +67211,7 @@
}
},
{
- "id": 5259,
+ "id": 5351,
"properties": {
"attached": "false",
"rotation": "4",
@@ -67135,7 +67219,7 @@
}
},
{
- "id": 5260,
+ "id": 5352,
"properties": {
"attached": "false",
"rotation": "5",
@@ -67143,7 +67227,7 @@
}
},
{
- "id": 5261,
+ "id": 5353,
"properties": {
"attached": "false",
"rotation": "5",
@@ -67151,7 +67235,7 @@
}
},
{
- "id": 5262,
+ "id": 5354,
"properties": {
"attached": "false",
"rotation": "6",
@@ -67159,7 +67243,7 @@
}
},
{
- "id": 5263,
+ "id": 5355,
"properties": {
"attached": "false",
"rotation": "6",
@@ -67167,7 +67251,7 @@
}
},
{
- "id": 5264,
+ "id": 5356,
"properties": {
"attached": "false",
"rotation": "7",
@@ -67175,7 +67259,7 @@
}
},
{
- "id": 5265,
+ "id": 5357,
"properties": {
"attached": "false",
"rotation": "7",
@@ -67183,7 +67267,7 @@
}
},
{
- "id": 5266,
+ "id": 5358,
"properties": {
"attached": "false",
"rotation": "8",
@@ -67191,7 +67275,7 @@
}
},
{
- "id": 5267,
+ "id": 5359,
"properties": {
"attached": "false",
"rotation": "8",
@@ -67199,7 +67283,7 @@
}
},
{
- "id": 5268,
+ "id": 5360,
"properties": {
"attached": "false",
"rotation": "9",
@@ -67207,7 +67291,7 @@
}
},
{
- "id": 5269,
+ "id": 5361,
"properties": {
"attached": "false",
"rotation": "9",
@@ -67215,7 +67299,7 @@
}
},
{
- "id": 5270,
+ "id": 5362,
"properties": {
"attached": "false",
"rotation": "10",
@@ -67223,7 +67307,7 @@
}
},
{
- "id": 5271,
+ "id": 5363,
"properties": {
"attached": "false",
"rotation": "10",
@@ -67231,7 +67315,7 @@
}
},
{
- "id": 5272,
+ "id": 5364,
"properties": {
"attached": "false",
"rotation": "11",
@@ -67239,7 +67323,7 @@
}
},
{
- "id": 5273,
+ "id": 5365,
"properties": {
"attached": "false",
"rotation": "11",
@@ -67247,7 +67331,7 @@
}
},
{
- "id": 5274,
+ "id": 5366,
"properties": {
"attached": "false",
"rotation": "12",
@@ -67255,7 +67339,7 @@
}
},
{
- "id": 5275,
+ "id": 5367,
"properties": {
"attached": "false",
"rotation": "12",
@@ -67263,7 +67347,7 @@
}
},
{
- "id": 5276,
+ "id": 5368,
"properties": {
"attached": "false",
"rotation": "13",
@@ -67271,7 +67355,7 @@
}
},
{
- "id": 5277,
+ "id": 5369,
"properties": {
"attached": "false",
"rotation": "13",
@@ -67279,7 +67363,7 @@
}
},
{
- "id": 5278,
+ "id": 5370,
"properties": {
"attached": "false",
"rotation": "14",
@@ -67287,7 +67371,7 @@
}
},
{
- "id": 5279,
+ "id": 5371,
"properties": {
"attached": "false",
"rotation": "14",
@@ -67295,7 +67379,7 @@
}
},
{
- "id": 5280,
+ "id": 5372,
"properties": {
"attached": "false",
"rotation": "15",
@@ -67303,7 +67387,7 @@
}
},
{
- "id": 5281,
+ "id": 5373,
"properties": {
"attached": "false",
"rotation": "15",
@@ -67337,160 +67421,160 @@
]
},
"states": [
- {
- "id": 405,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 406,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 407,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 408,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 409,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 410,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 411,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 412,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 413,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 414,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 415,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 416,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 417,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 418,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 419,
- "properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
{
"id": 420,
"properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "true",
+ "waterlogged": "true"
}
},
{
"id": 421,
"properties": {
- "distance": "5",
+ "distance": "1",
"persistent": "true",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 422,
"properties": {
- "distance": "5",
- "persistent": "true",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "false",
+ "waterlogged": "true"
}
},
{
"id": 423,
"properties": {
- "distance": "5",
+ "distance": "1",
"persistent": "false",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 424,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 425,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 426,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 427,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 428,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 429,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 430,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 431,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 432,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 433,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 434,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 435,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 436,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 437,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 438,
+ "properties": {
+ "distance": "5",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 439,
"properties": {
"distance": "5",
"persistent": "false",
@@ -67498,7 +67582,7 @@
}
},
{
- "id": 425,
+ "id": 440,
"properties": {
"distance": "6",
"persistent": "true",
@@ -67506,7 +67590,7 @@
}
},
{
- "id": 426,
+ "id": 441,
"properties": {
"distance": "6",
"persistent": "true",
@@ -67514,7 +67598,7 @@
}
},
{
- "id": 427,
+ "id": 442,
"properties": {
"distance": "6",
"persistent": "false",
@@ -67522,7 +67606,7 @@
}
},
{
- "id": 428,
+ "id": 443,
"properties": {
"distance": "6",
"persistent": "false",
@@ -67530,7 +67614,7 @@
}
},
{
- "id": 429,
+ "id": 444,
"properties": {
"distance": "7",
"persistent": "true",
@@ -67538,7 +67622,7 @@
}
},
{
- "id": 430,
+ "id": 445,
"properties": {
"distance": "7",
"persistent": "true",
@@ -67546,7 +67630,7 @@
}
},
{
- "id": 431,
+ "id": 446,
"properties": {
"distance": "7",
"persistent": "false",
@@ -67555,7 +67639,7 @@
},
{
"default": true,
- "id": 432,
+ "id": 447,
"properties": {
"distance": "7",
"persistent": "false",
@@ -67578,20 +67662,20 @@
},
"states": [
{
- "id": 148,
+ "id": 154,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 149,
+ "id": 155,
"properties": {
"axis": "y"
}
},
{
- "id": 150,
+ "id": 156,
"properties": {
"axis": "z"
}
@@ -67624,14 +67708,14 @@
},
"states": [
{
- "id": 5728,
+ "id": 5892,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5729,
+ "id": 5893,
"properties": {
"powered": "false"
}
@@ -67653,13 +67737,13 @@
"states": [
{
"default": true,
- "id": 37,
+ "id": 41,
"properties": {
"stage": "0"
}
},
{
- "id": 38,
+ "id": 42,
"properties": {
"stage": "1"
}
@@ -67698,7 +67782,7 @@
},
"states": [
{
- "id": 4494,
+ "id": 4546,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -67706,217 +67790,217 @@
},
{
"default": true,
- "id": 4495,
+ "id": 4547,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 4496,
+ "id": 4548,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 4497,
+ "id": 4549,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 4498,
+ "id": 4550,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 4499,
+ "id": 4551,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 4500,
+ "id": 4552,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 4501,
+ "id": 4553,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 4502,
+ "id": 4554,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 4503,
+ "id": 4555,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 4504,
+ "id": 4556,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 4505,
+ "id": 4557,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 4506,
+ "id": 4558,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 4507,
+ "id": 4559,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 4508,
+ "id": 4560,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 4509,
+ "id": 4561,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 4510,
+ "id": 4562,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 4511,
+ "id": 4563,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 4512,
+ "id": 4564,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 4513,
+ "id": 4565,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 4514,
+ "id": 4566,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 4515,
+ "id": 4567,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 4516,
+ "id": 4568,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 4517,
+ "id": 4569,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 4518,
+ "id": 4570,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 4519,
+ "id": 4571,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 4520,
+ "id": 4572,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 4521,
+ "id": 4573,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 4522,
+ "id": 4574,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 4523,
+ "id": 4575,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 4524,
+ "id": 4576,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 4525,
+ "id": 4577,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -67942,21 +68026,21 @@
},
"states": [
{
- "id": 11198,
+ "id": 11533,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11199,
+ "id": 11534,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11200,
+ "id": 11535,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -67964,21 +68048,21 @@
},
{
"default": true,
- "id": 11201,
+ "id": 11536,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11202,
+ "id": 11537,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11203,
+ "id": 11538,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -68019,7 +68103,7 @@
},
"states": [
{
- "id": 10044,
+ "id": 10299,
"properties": {
"facing": "north",
"half": "top",
@@ -68028,7 +68112,7 @@
}
},
{
- "id": 10045,
+ "id": 10300,
"properties": {
"facing": "north",
"half": "top",
@@ -68037,7 +68121,7 @@
}
},
{
- "id": 10046,
+ "id": 10301,
"properties": {
"facing": "north",
"half": "top",
@@ -68046,7 +68130,7 @@
}
},
{
- "id": 10047,
+ "id": 10302,
"properties": {
"facing": "north",
"half": "top",
@@ -68055,7 +68139,7 @@
}
},
{
- "id": 10048,
+ "id": 10303,
"properties": {
"facing": "north",
"half": "top",
@@ -68064,7 +68148,7 @@
}
},
{
- "id": 10049,
+ "id": 10304,
"properties": {
"facing": "north",
"half": "top",
@@ -68073,7 +68157,7 @@
}
},
{
- "id": 10050,
+ "id": 10305,
"properties": {
"facing": "north",
"half": "top",
@@ -68082,7 +68166,7 @@
}
},
{
- "id": 10051,
+ "id": 10306,
"properties": {
"facing": "north",
"half": "top",
@@ -68091,7 +68175,7 @@
}
},
{
- "id": 10052,
+ "id": 10307,
"properties": {
"facing": "north",
"half": "top",
@@ -68100,7 +68184,7 @@
}
},
{
- "id": 10053,
+ "id": 10308,
"properties": {
"facing": "north",
"half": "top",
@@ -68109,7 +68193,7 @@
}
},
{
- "id": 10054,
+ "id": 10309,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68119,7 +68203,7 @@
},
{
"default": true,
- "id": 10055,
+ "id": 10310,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68128,7 +68212,7 @@
}
},
{
- "id": 10056,
+ "id": 10311,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68137,7 +68221,7 @@
}
},
{
- "id": 10057,
+ "id": 10312,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68146,7 +68230,7 @@
}
},
{
- "id": 10058,
+ "id": 10313,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68155,7 +68239,7 @@
}
},
{
- "id": 10059,
+ "id": 10314,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68164,7 +68248,7 @@
}
},
{
- "id": 10060,
+ "id": 10315,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68173,7 +68257,7 @@
}
},
{
- "id": 10061,
+ "id": 10316,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68182,7 +68266,7 @@
}
},
{
- "id": 10062,
+ "id": 10317,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68191,7 +68275,7 @@
}
},
{
- "id": 10063,
+ "id": 10318,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68200,7 +68284,7 @@
}
},
{
- "id": 10064,
+ "id": 10319,
"properties": {
"facing": "south",
"half": "top",
@@ -68209,7 +68293,7 @@
}
},
{
- "id": 10065,
+ "id": 10320,
"properties": {
"facing": "south",
"half": "top",
@@ -68218,7 +68302,7 @@
}
},
{
- "id": 10066,
+ "id": 10321,
"properties": {
"facing": "south",
"half": "top",
@@ -68227,7 +68311,7 @@
}
},
{
- "id": 10067,
+ "id": 10322,
"properties": {
"facing": "south",
"half": "top",
@@ -68236,7 +68320,7 @@
}
},
{
- "id": 10068,
+ "id": 10323,
"properties": {
"facing": "south",
"half": "top",
@@ -68245,7 +68329,7 @@
}
},
{
- "id": 10069,
+ "id": 10324,
"properties": {
"facing": "south",
"half": "top",
@@ -68254,7 +68338,7 @@
}
},
{
- "id": 10070,
+ "id": 10325,
"properties": {
"facing": "south",
"half": "top",
@@ -68263,7 +68347,7 @@
}
},
{
- "id": 10071,
+ "id": 10326,
"properties": {
"facing": "south",
"half": "top",
@@ -68272,7 +68356,7 @@
}
},
{
- "id": 10072,
+ "id": 10327,
"properties": {
"facing": "south",
"half": "top",
@@ -68281,7 +68365,7 @@
}
},
{
- "id": 10073,
+ "id": 10328,
"properties": {
"facing": "south",
"half": "top",
@@ -68290,7 +68374,7 @@
}
},
{
- "id": 10074,
+ "id": 10329,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68299,7 +68383,7 @@
}
},
{
- "id": 10075,
+ "id": 10330,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68308,7 +68392,7 @@
}
},
{
- "id": 10076,
+ "id": 10331,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68317,7 +68401,7 @@
}
},
{
- "id": 10077,
+ "id": 10332,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68326,7 +68410,7 @@
}
},
{
- "id": 10078,
+ "id": 10333,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68335,7 +68419,7 @@
}
},
{
- "id": 10079,
+ "id": 10334,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68344,7 +68428,7 @@
}
},
{
- "id": 10080,
+ "id": 10335,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68353,7 +68437,7 @@
}
},
{
- "id": 10081,
+ "id": 10336,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68362,7 +68446,7 @@
}
},
{
- "id": 10082,
+ "id": 10337,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68371,7 +68455,7 @@
}
},
{
- "id": 10083,
+ "id": 10338,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68380,7 +68464,7 @@
}
},
{
- "id": 10084,
+ "id": 10339,
"properties": {
"facing": "west",
"half": "top",
@@ -68389,7 +68473,7 @@
}
},
{
- "id": 10085,
+ "id": 10340,
"properties": {
"facing": "west",
"half": "top",
@@ -68398,7 +68482,7 @@
}
},
{
- "id": 10086,
+ "id": 10341,
"properties": {
"facing": "west",
"half": "top",
@@ -68407,7 +68491,7 @@
}
},
{
- "id": 10087,
+ "id": 10342,
"properties": {
"facing": "west",
"half": "top",
@@ -68416,7 +68500,7 @@
}
},
{
- "id": 10088,
+ "id": 10343,
"properties": {
"facing": "west",
"half": "top",
@@ -68425,7 +68509,7 @@
}
},
{
- "id": 10089,
+ "id": 10344,
"properties": {
"facing": "west",
"half": "top",
@@ -68434,7 +68518,7 @@
}
},
{
- "id": 10090,
+ "id": 10345,
"properties": {
"facing": "west",
"half": "top",
@@ -68443,7 +68527,7 @@
}
},
{
- "id": 10091,
+ "id": 10346,
"properties": {
"facing": "west",
"half": "top",
@@ -68452,7 +68536,7 @@
}
},
{
- "id": 10092,
+ "id": 10347,
"properties": {
"facing": "west",
"half": "top",
@@ -68461,7 +68545,7 @@
}
},
{
- "id": 10093,
+ "id": 10348,
"properties": {
"facing": "west",
"half": "top",
@@ -68470,7 +68554,7 @@
}
},
{
- "id": 10094,
+ "id": 10349,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68479,7 +68563,7 @@
}
},
{
- "id": 10095,
+ "id": 10350,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68488,7 +68572,7 @@
}
},
{
- "id": 10096,
+ "id": 10351,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68497,7 +68581,7 @@
}
},
{
- "id": 10097,
+ "id": 10352,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68506,7 +68590,7 @@
}
},
{
- "id": 10098,
+ "id": 10353,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68515,7 +68599,7 @@
}
},
{
- "id": 10099,
+ "id": 10354,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68524,7 +68608,7 @@
}
},
{
- "id": 10100,
+ "id": 10355,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68533,7 +68617,7 @@
}
},
{
- "id": 10101,
+ "id": 10356,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68542,7 +68626,7 @@
}
},
{
- "id": 10102,
+ "id": 10357,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68551,7 +68635,7 @@
}
},
{
- "id": 10103,
+ "id": 10358,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68560,7 +68644,7 @@
}
},
{
- "id": 10104,
+ "id": 10359,
"properties": {
"facing": "east",
"half": "top",
@@ -68569,7 +68653,7 @@
}
},
{
- "id": 10105,
+ "id": 10360,
"properties": {
"facing": "east",
"half": "top",
@@ -68578,7 +68662,7 @@
}
},
{
- "id": 10106,
+ "id": 10361,
"properties": {
"facing": "east",
"half": "top",
@@ -68587,7 +68671,7 @@
}
},
{
- "id": 10107,
+ "id": 10362,
"properties": {
"facing": "east",
"half": "top",
@@ -68596,7 +68680,7 @@
}
},
{
- "id": 10108,
+ "id": 10363,
"properties": {
"facing": "east",
"half": "top",
@@ -68605,7 +68689,7 @@
}
},
{
- "id": 10109,
+ "id": 10364,
"properties": {
"facing": "east",
"half": "top",
@@ -68614,7 +68698,7 @@
}
},
{
- "id": 10110,
+ "id": 10365,
"properties": {
"facing": "east",
"half": "top",
@@ -68623,7 +68707,7 @@
}
},
{
- "id": 10111,
+ "id": 10366,
"properties": {
"facing": "east",
"half": "top",
@@ -68632,7 +68716,7 @@
}
},
{
- "id": 10112,
+ "id": 10367,
"properties": {
"facing": "east",
"half": "top",
@@ -68641,7 +68725,7 @@
}
},
{
- "id": 10113,
+ "id": 10368,
"properties": {
"facing": "east",
"half": "top",
@@ -68650,7 +68734,7 @@
}
},
{
- "id": 10114,
+ "id": 10369,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68659,7 +68743,7 @@
}
},
{
- "id": 10115,
+ "id": 10370,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68668,7 +68752,7 @@
}
},
{
- "id": 10116,
+ "id": 10371,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68677,7 +68761,7 @@
}
},
{
- "id": 10117,
+ "id": 10372,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68686,7 +68770,7 @@
}
},
{
- "id": 10118,
+ "id": 10373,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68695,7 +68779,7 @@
}
},
{
- "id": 10119,
+ "id": 10374,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68704,7 +68788,7 @@
}
},
{
- "id": 10120,
+ "id": 10375,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68713,7 +68797,7 @@
}
},
{
- "id": 10121,
+ "id": 10376,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68722,7 +68806,7 @@
}
},
{
- "id": 10122,
+ "id": 10377,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68731,7 +68815,7 @@
}
},
{
- "id": 10123,
+ "id": 10378,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68773,7 +68857,7 @@
},
"states": [
{
- "id": 6345,
+ "id": 6511,
"properties": {
"facing": "north",
"half": "top",
@@ -68783,7 +68867,7 @@
}
},
{
- "id": 6346,
+ "id": 6512,
"properties": {
"facing": "north",
"half": "top",
@@ -68793,7 +68877,7 @@
}
},
{
- "id": 6347,
+ "id": 6513,
"properties": {
"facing": "north",
"half": "top",
@@ -68803,7 +68887,7 @@
}
},
{
- "id": 6348,
+ "id": 6514,
"properties": {
"facing": "north",
"half": "top",
@@ -68813,7 +68897,7 @@
}
},
{
- "id": 6349,
+ "id": 6515,
"properties": {
"facing": "north",
"half": "top",
@@ -68823,7 +68907,7 @@
}
},
{
- "id": 6350,
+ "id": 6516,
"properties": {
"facing": "north",
"half": "top",
@@ -68833,7 +68917,7 @@
}
},
{
- "id": 6351,
+ "id": 6517,
"properties": {
"facing": "north",
"half": "top",
@@ -68843,7 +68927,7 @@
}
},
{
- "id": 6352,
+ "id": 6518,
"properties": {
"facing": "north",
"half": "top",
@@ -68853,7 +68937,7 @@
}
},
{
- "id": 6353,
+ "id": 6519,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68863,7 +68947,7 @@
}
},
{
- "id": 6354,
+ "id": 6520,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68873,7 +68957,7 @@
}
},
{
- "id": 6355,
+ "id": 6521,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68883,7 +68967,7 @@
}
},
{
- "id": 6356,
+ "id": 6522,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68893,7 +68977,7 @@
}
},
{
- "id": 6357,
+ "id": 6523,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68903,7 +68987,7 @@
}
},
{
- "id": 6358,
+ "id": 6524,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68913,7 +68997,7 @@
}
},
{
- "id": 6359,
+ "id": 6525,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68924,7 +69008,7 @@
},
{
"default": true,
- "id": 6360,
+ "id": 6526,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68934,7 +69018,7 @@
}
},
{
- "id": 6361,
+ "id": 6527,
"properties": {
"facing": "south",
"half": "top",
@@ -68944,7 +69028,7 @@
}
},
{
- "id": 6362,
+ "id": 6528,
"properties": {
"facing": "south",
"half": "top",
@@ -68954,7 +69038,7 @@
}
},
{
- "id": 6363,
+ "id": 6529,
"properties": {
"facing": "south",
"half": "top",
@@ -68964,7 +69048,7 @@
}
},
{
- "id": 6364,
+ "id": 6530,
"properties": {
"facing": "south",
"half": "top",
@@ -68974,7 +69058,7 @@
}
},
{
- "id": 6365,
+ "id": 6531,
"properties": {
"facing": "south",
"half": "top",
@@ -68984,7 +69068,7 @@
}
},
{
- "id": 6366,
+ "id": 6532,
"properties": {
"facing": "south",
"half": "top",
@@ -68994,7 +69078,7 @@
}
},
{
- "id": 6367,
+ "id": 6533,
"properties": {
"facing": "south",
"half": "top",
@@ -69004,7 +69088,7 @@
}
},
{
- "id": 6368,
+ "id": 6534,
"properties": {
"facing": "south",
"half": "top",
@@ -69014,7 +69098,7 @@
}
},
{
- "id": 6369,
+ "id": 6535,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69024,7 +69108,7 @@
}
},
{
- "id": 6370,
+ "id": 6536,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69034,7 +69118,7 @@
}
},
{
- "id": 6371,
+ "id": 6537,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69044,7 +69128,7 @@
}
},
{
- "id": 6372,
+ "id": 6538,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69054,7 +69138,7 @@
}
},
{
- "id": 6373,
+ "id": 6539,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69064,7 +69148,7 @@
}
},
{
- "id": 6374,
+ "id": 6540,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69074,7 +69158,7 @@
}
},
{
- "id": 6375,
+ "id": 6541,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69084,7 +69168,7 @@
}
},
{
- "id": 6376,
+ "id": 6542,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69094,7 +69178,7 @@
}
},
{
- "id": 6377,
+ "id": 6543,
"properties": {
"facing": "west",
"half": "top",
@@ -69104,7 +69188,7 @@
}
},
{
- "id": 6378,
+ "id": 6544,
"properties": {
"facing": "west",
"half": "top",
@@ -69114,7 +69198,7 @@
}
},
{
- "id": 6379,
+ "id": 6545,
"properties": {
"facing": "west",
"half": "top",
@@ -69124,7 +69208,7 @@
}
},
{
- "id": 6380,
+ "id": 6546,
"properties": {
"facing": "west",
"half": "top",
@@ -69134,7 +69218,7 @@
}
},
{
- "id": 6381,
+ "id": 6547,
"properties": {
"facing": "west",
"half": "top",
@@ -69144,7 +69228,7 @@
}
},
{
- "id": 6382,
+ "id": 6548,
"properties": {
"facing": "west",
"half": "top",
@@ -69154,7 +69238,7 @@
}
},
{
- "id": 6383,
+ "id": 6549,
"properties": {
"facing": "west",
"half": "top",
@@ -69164,7 +69248,7 @@
}
},
{
- "id": 6384,
+ "id": 6550,
"properties": {
"facing": "west",
"half": "top",
@@ -69174,7 +69258,7 @@
}
},
{
- "id": 6385,
+ "id": 6551,
"properties": {
"facing": "west",
"half": "bottom",
@@ -69184,7 +69268,7 @@
}
},
{
- "id": 6386,
+ "id": 6552,
"properties": {
"facing": "west",
"half": "bottom",
@@ -69194,7 +69278,7 @@
}
},
{
- "id": 6387,
+ "id": 6553,
"properties": {
"facing": "west",
"half": "bottom",
@@ -69204,7 +69288,7 @@
}
},
{
- "id": 6388,
+ "id": 6554,
"properties": {
"facing": "west",
"half": "bottom",
@@ -69214,7 +69298,7 @@
}
},
{
- "id": 6389,
+ "id": 6555,
"properties": {
"facing": "west",
"half": "bottom",
@@ -69224,7 +69308,7 @@
}
},
{
- "id": 6390,
+ "id": 6556,
"properties": {
"facing": "west",
"half": "bottom",
@@ -69234,7 +69318,7 @@
}
},
{
- "id": 6391,
+ "id": 6557,
"properties": {
"facing": "west",
"half": "bottom",
@@ -69244,7 +69328,7 @@
}
},
{
- "id": 6392,
+ "id": 6558,
"properties": {
"facing": "west",
"half": "bottom",
@@ -69254,7 +69338,7 @@
}
},
{
- "id": 6393,
+ "id": 6559,
"properties": {
"facing": "east",
"half": "top",
@@ -69264,7 +69348,7 @@
}
},
{
- "id": 6394,
+ "id": 6560,
"properties": {
"facing": "east",
"half": "top",
@@ -69274,7 +69358,7 @@
}
},
{
- "id": 6395,
+ "id": 6561,
"properties": {
"facing": "east",
"half": "top",
@@ -69284,7 +69368,7 @@
}
},
{
- "id": 6396,
+ "id": 6562,
"properties": {
"facing": "east",
"half": "top",
@@ -69294,7 +69378,7 @@
}
},
{
- "id": 6397,
+ "id": 6563,
"properties": {
"facing": "east",
"half": "top",
@@ -69304,7 +69388,7 @@
}
},
{
- "id": 6398,
+ "id": 6564,
"properties": {
"facing": "east",
"half": "top",
@@ -69314,7 +69398,7 @@
}
},
{
- "id": 6399,
+ "id": 6565,
"properties": {
"facing": "east",
"half": "top",
@@ -69324,7 +69408,7 @@
}
},
{
- "id": 6400,
+ "id": 6566,
"properties": {
"facing": "east",
"half": "top",
@@ -69334,7 +69418,7 @@
}
},
{
- "id": 6401,
+ "id": 6567,
"properties": {
"facing": "east",
"half": "bottom",
@@ -69344,7 +69428,7 @@
}
},
{
- "id": 6402,
+ "id": 6568,
"properties": {
"facing": "east",
"half": "bottom",
@@ -69354,7 +69438,7 @@
}
},
{
- "id": 6403,
+ "id": 6569,
"properties": {
"facing": "east",
"half": "bottom",
@@ -69364,7 +69448,7 @@
}
},
{
- "id": 6404,
+ "id": 6570,
"properties": {
"facing": "east",
"half": "bottom",
@@ -69374,7 +69458,7 @@
}
},
{
- "id": 6405,
+ "id": 6571,
"properties": {
"facing": "east",
"half": "bottom",
@@ -69384,7 +69468,7 @@
}
},
{
- "id": 6406,
+ "id": 6572,
"properties": {
"facing": "east",
"half": "bottom",
@@ -69394,7 +69478,7 @@
}
},
{
- "id": 6407,
+ "id": 6573,
"properties": {
"facing": "east",
"half": "bottom",
@@ -69404,7 +69488,7 @@
}
},
{
- "id": 6408,
+ "id": 6574,
"properties": {
"facing": "east",
"half": "bottom",
@@ -69435,7 +69519,7 @@
},
"states": [
{
- "id": 5586,
+ "id": 5742,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -69443,49 +69527,49 @@
},
{
"default": true,
- "id": 5587,
+ "id": 5743,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5588,
+ "id": 5744,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5589,
+ "id": 5745,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5590,
+ "id": 5746,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5591,
+ "id": 5747,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5592,
+ "id": 5748,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5593,
+ "id": 5749,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -69513,7 +69597,7 @@
},
"states": [
{
- "id": 4810,
+ "id": 4894,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -69521,49 +69605,49 @@
},
{
"default": true,
- "id": 4811,
+ "id": 4895,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4812,
+ "id": 4896,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4813,
+ "id": 4897,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4814,
+ "id": 4898,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4815,
+ "id": 4899,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4816,
+ "id": 4900,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4817,
+ "id": 4901,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -69585,20 +69669,20 @@
},
"states": [
{
- "id": 207,
+ "id": 219,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 208,
+ "id": 220,
"properties": {
"axis": "y"
}
},
{
- "id": 209,
+ "id": 221,
"properties": {
"axis": "z"
}
@@ -69613,7 +69697,7 @@
"states": [
{
"default": true,
- "id": 10465
+ "id": 10800
}
]
},
@@ -69635,21 +69719,21 @@
},
"states": [
{
- "id": 10718,
+ "id": 11053,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10719,
+ "id": 11054,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10720,
+ "id": 11055,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -69657,21 +69741,21 @@
},
{
"default": true,
- "id": 10721,
+ "id": 11056,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10722,
+ "id": 11057,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10723,
+ "id": 11058,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -69712,7 +69796,7 @@
},
"states": [
{
- "id": 10626,
+ "id": 10961,
"properties": {
"facing": "north",
"half": "top",
@@ -69721,7 +69805,7 @@
}
},
{
- "id": 10627,
+ "id": 10962,
"properties": {
"facing": "north",
"half": "top",
@@ -69730,7 +69814,7 @@
}
},
{
- "id": 10628,
+ "id": 10963,
"properties": {
"facing": "north",
"half": "top",
@@ -69739,7 +69823,7 @@
}
},
{
- "id": 10629,
+ "id": 10964,
"properties": {
"facing": "north",
"half": "top",
@@ -69748,7 +69832,7 @@
}
},
{
- "id": 10630,
+ "id": 10965,
"properties": {
"facing": "north",
"half": "top",
@@ -69757,7 +69841,7 @@
}
},
{
- "id": 10631,
+ "id": 10966,
"properties": {
"facing": "north",
"half": "top",
@@ -69766,7 +69850,7 @@
}
},
{
- "id": 10632,
+ "id": 10967,
"properties": {
"facing": "north",
"half": "top",
@@ -69775,7 +69859,7 @@
}
},
{
- "id": 10633,
+ "id": 10968,
"properties": {
"facing": "north",
"half": "top",
@@ -69784,7 +69868,7 @@
}
},
{
- "id": 10634,
+ "id": 10969,
"properties": {
"facing": "north",
"half": "top",
@@ -69793,7 +69877,7 @@
}
},
{
- "id": 10635,
+ "id": 10970,
"properties": {
"facing": "north",
"half": "top",
@@ -69802,7 +69886,7 @@
}
},
{
- "id": 10636,
+ "id": 10971,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69812,7 +69896,7 @@
},
{
"default": true,
- "id": 10637,
+ "id": 10972,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69821,7 +69905,7 @@
}
},
{
- "id": 10638,
+ "id": 10973,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69830,7 +69914,7 @@
}
},
{
- "id": 10639,
+ "id": 10974,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69839,7 +69923,7 @@
}
},
{
- "id": 10640,
+ "id": 10975,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69848,7 +69932,7 @@
}
},
{
- "id": 10641,
+ "id": 10976,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69857,7 +69941,7 @@
}
},
{
- "id": 10642,
+ "id": 10977,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69866,7 +69950,7 @@
}
},
{
- "id": 10643,
+ "id": 10978,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69875,7 +69959,7 @@
}
},
{
- "id": 10644,
+ "id": 10979,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69884,7 +69968,7 @@
}
},
{
- "id": 10645,
+ "id": 10980,
"properties": {
"facing": "north",
"half": "bottom",
@@ -69893,7 +69977,7 @@
}
},
{
- "id": 10646,
+ "id": 10981,
"properties": {
"facing": "south",
"half": "top",
@@ -69902,7 +69986,7 @@
}
},
{
- "id": 10647,
+ "id": 10982,
"properties": {
"facing": "south",
"half": "top",
@@ -69911,7 +69995,7 @@
}
},
{
- "id": 10648,
+ "id": 10983,
"properties": {
"facing": "south",
"half": "top",
@@ -69920,7 +70004,7 @@
}
},
{
- "id": 10649,
+ "id": 10984,
"properties": {
"facing": "south",
"half": "top",
@@ -69929,7 +70013,7 @@
}
},
{
- "id": 10650,
+ "id": 10985,
"properties": {
"facing": "south",
"half": "top",
@@ -69938,7 +70022,7 @@
}
},
{
- "id": 10651,
+ "id": 10986,
"properties": {
"facing": "south",
"half": "top",
@@ -69947,7 +70031,7 @@
}
},
{
- "id": 10652,
+ "id": 10987,
"properties": {
"facing": "south",
"half": "top",
@@ -69956,7 +70040,7 @@
}
},
{
- "id": 10653,
+ "id": 10988,
"properties": {
"facing": "south",
"half": "top",
@@ -69965,7 +70049,7 @@
}
},
{
- "id": 10654,
+ "id": 10989,
"properties": {
"facing": "south",
"half": "top",
@@ -69974,7 +70058,7 @@
}
},
{
- "id": 10655,
+ "id": 10990,
"properties": {
"facing": "south",
"half": "top",
@@ -69983,7 +70067,7 @@
}
},
{
- "id": 10656,
+ "id": 10991,
"properties": {
"facing": "south",
"half": "bottom",
@@ -69992,7 +70076,7 @@
}
},
{
- "id": 10657,
+ "id": 10992,
"properties": {
"facing": "south",
"half": "bottom",
@@ -70001,7 +70085,7 @@
}
},
{
- "id": 10658,
+ "id": 10993,
"properties": {
"facing": "south",
"half": "bottom",
@@ -70010,7 +70094,7 @@
}
},
{
- "id": 10659,
+ "id": 10994,
"properties": {
"facing": "south",
"half": "bottom",
@@ -70019,7 +70103,7 @@
}
},
{
- "id": 10660,
+ "id": 10995,
"properties": {
"facing": "south",
"half": "bottom",
@@ -70028,7 +70112,7 @@
}
},
{
- "id": 10661,
+ "id": 10996,
"properties": {
"facing": "south",
"half": "bottom",
@@ -70037,7 +70121,7 @@
}
},
{
- "id": 10662,
+ "id": 10997,
"properties": {
"facing": "south",
"half": "bottom",
@@ -70046,7 +70130,7 @@
}
},
{
- "id": 10663,
+ "id": 10998,
"properties": {
"facing": "south",
"half": "bottom",
@@ -70055,7 +70139,7 @@
}
},
{
- "id": 10664,
+ "id": 10999,
"properties": {
"facing": "south",
"half": "bottom",
@@ -70064,7 +70148,7 @@
}
},
{
- "id": 10665,
+ "id": 11000,
"properties": {
"facing": "south",
"half": "bottom",
@@ -70073,7 +70157,7 @@
}
},
{
- "id": 10666,
+ "id": 11001,
"properties": {
"facing": "west",
"half": "top",
@@ -70082,7 +70166,7 @@
}
},
{
- "id": 10667,
+ "id": 11002,
"properties": {
"facing": "west",
"half": "top",
@@ -70091,7 +70175,7 @@
}
},
{
- "id": 10668,
+ "id": 11003,
"properties": {
"facing": "west",
"half": "top",
@@ -70100,7 +70184,7 @@
}
},
{
- "id": 10669,
+ "id": 11004,
"properties": {
"facing": "west",
"half": "top",
@@ -70109,7 +70193,7 @@
}
},
{
- "id": 10670,
+ "id": 11005,
"properties": {
"facing": "west",
"half": "top",
@@ -70118,7 +70202,7 @@
}
},
{
- "id": 10671,
+ "id": 11006,
"properties": {
"facing": "west",
"half": "top",
@@ -70127,7 +70211,7 @@
}
},
{
- "id": 10672,
+ "id": 11007,
"properties": {
"facing": "west",
"half": "top",
@@ -70136,7 +70220,7 @@
}
},
{
- "id": 10673,
+ "id": 11008,
"properties": {
"facing": "west",
"half": "top",
@@ -70145,7 +70229,7 @@
}
},
{
- "id": 10674,
+ "id": 11009,
"properties": {
"facing": "west",
"half": "top",
@@ -70154,7 +70238,7 @@
}
},
{
- "id": 10675,
+ "id": 11010,
"properties": {
"facing": "west",
"half": "top",
@@ -70163,7 +70247,7 @@
}
},
{
- "id": 10676,
+ "id": 11011,
"properties": {
"facing": "west",
"half": "bottom",
@@ -70172,7 +70256,7 @@
}
},
{
- "id": 10677,
+ "id": 11012,
"properties": {
"facing": "west",
"half": "bottom",
@@ -70181,7 +70265,7 @@
}
},
{
- "id": 10678,
+ "id": 11013,
"properties": {
"facing": "west",
"half": "bottom",
@@ -70190,7 +70274,7 @@
}
},
{
- "id": 10679,
+ "id": 11014,
"properties": {
"facing": "west",
"half": "bottom",
@@ -70199,7 +70283,7 @@
}
},
{
- "id": 10680,
+ "id": 11015,
"properties": {
"facing": "west",
"half": "bottom",
@@ -70208,7 +70292,7 @@
}
},
{
- "id": 10681,
+ "id": 11016,
"properties": {
"facing": "west",
"half": "bottom",
@@ -70217,7 +70301,7 @@
}
},
{
- "id": 10682,
+ "id": 11017,
"properties": {
"facing": "west",
"half": "bottom",
@@ -70226,7 +70310,7 @@
}
},
{
- "id": 10683,
+ "id": 11018,
"properties": {
"facing": "west",
"half": "bottom",
@@ -70235,7 +70319,7 @@
}
},
{
- "id": 10684,
+ "id": 11019,
"properties": {
"facing": "west",
"half": "bottom",
@@ -70244,7 +70328,7 @@
}
},
{
- "id": 10685,
+ "id": 11020,
"properties": {
"facing": "west",
"half": "bottom",
@@ -70253,7 +70337,7 @@
}
},
{
- "id": 10686,
+ "id": 11021,
"properties": {
"facing": "east",
"half": "top",
@@ -70262,7 +70346,7 @@
}
},
{
- "id": 10687,
+ "id": 11022,
"properties": {
"facing": "east",
"half": "top",
@@ -70271,7 +70355,7 @@
}
},
{
- "id": 10688,
+ "id": 11023,
"properties": {
"facing": "east",
"half": "top",
@@ -70280,7 +70364,7 @@
}
},
{
- "id": 10689,
+ "id": 11024,
"properties": {
"facing": "east",
"half": "top",
@@ -70289,7 +70373,7 @@
}
},
{
- "id": 10690,
+ "id": 11025,
"properties": {
"facing": "east",
"half": "top",
@@ -70298,7 +70382,7 @@
}
},
{
- "id": 10691,
+ "id": 11026,
"properties": {
"facing": "east",
"half": "top",
@@ -70307,7 +70391,7 @@
}
},
{
- "id": 10692,
+ "id": 11027,
"properties": {
"facing": "east",
"half": "top",
@@ -70316,7 +70400,7 @@
}
},
{
- "id": 10693,
+ "id": 11028,
"properties": {
"facing": "east",
"half": "top",
@@ -70325,7 +70409,7 @@
}
},
{
- "id": 10694,
+ "id": 11029,
"properties": {
"facing": "east",
"half": "top",
@@ -70334,7 +70418,7 @@
}
},
{
- "id": 10695,
+ "id": 11030,
"properties": {
"facing": "east",
"half": "top",
@@ -70343,7 +70427,7 @@
}
},
{
- "id": 10696,
+ "id": 11031,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70352,7 +70436,7 @@
}
},
{
- "id": 10697,
+ "id": 11032,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70361,7 +70445,7 @@
}
},
{
- "id": 10698,
+ "id": 11033,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70370,7 +70454,7 @@
}
},
{
- "id": 10699,
+ "id": 11034,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70379,7 +70463,7 @@
}
},
{
- "id": 10700,
+ "id": 11035,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70388,7 +70472,7 @@
}
},
{
- "id": 10701,
+ "id": 11036,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70397,7 +70481,7 @@
}
},
{
- "id": 10702,
+ "id": 11037,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70406,7 +70490,7 @@
}
},
{
- "id": 10703,
+ "id": 11038,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70415,7 +70499,7 @@
}
},
{
- "id": 10704,
+ "id": 11039,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70424,7 +70508,7 @@
}
},
{
- "id": 10705,
+ "id": 11040,
"properties": {
"facing": "east",
"half": "bottom",
@@ -70465,112 +70549,112 @@
},
"states": [
{
- "id": 9191,
+ "id": 9446,
"properties": {
"inverted": "true",
"power": "0"
}
},
{
- "id": 9192,
+ "id": 9447,
"properties": {
"inverted": "true",
"power": "1"
}
},
{
- "id": 9193,
+ "id": 9448,
"properties": {
"inverted": "true",
"power": "2"
}
},
{
- "id": 9194,
+ "id": 9449,
"properties": {
"inverted": "true",
"power": "3"
}
},
{
- "id": 9195,
+ "id": 9450,
"properties": {
"inverted": "true",
"power": "4"
}
},
{
- "id": 9196,
+ "id": 9451,
"properties": {
"inverted": "true",
"power": "5"
}
},
{
- "id": 9197,
+ "id": 9452,
"properties": {
"inverted": "true",
"power": "6"
}
},
{
- "id": 9198,
+ "id": 9453,
"properties": {
"inverted": "true",
"power": "7"
}
},
{
- "id": 9199,
+ "id": 9454,
"properties": {
"inverted": "true",
"power": "8"
}
},
{
- "id": 9200,
+ "id": 9455,
"properties": {
"inverted": "true",
"power": "9"
}
},
{
- "id": 9201,
+ "id": 9456,
"properties": {
"inverted": "true",
"power": "10"
}
},
{
- "id": 9202,
+ "id": 9457,
"properties": {
"inverted": "true",
"power": "11"
}
},
{
- "id": 9203,
+ "id": 9458,
"properties": {
"inverted": "true",
"power": "12"
}
},
{
- "id": 9204,
+ "id": 9459,
"properties": {
"inverted": "true",
"power": "13"
}
},
{
- "id": 9205,
+ "id": 9460,
"properties": {
"inverted": "true",
"power": "14"
}
},
{
- "id": 9206,
+ "id": 9461,
"properties": {
"inverted": "true",
"power": "15"
@@ -70578,112 +70662,112 @@
},
{
"default": true,
- "id": 9207,
+ "id": 9462,
"properties": {
"inverted": "false",
"power": "0"
}
},
{
- "id": 9208,
+ "id": 9463,
"properties": {
"inverted": "false",
"power": "1"
}
},
{
- "id": 9209,
+ "id": 9464,
"properties": {
"inverted": "false",
"power": "2"
}
},
{
- "id": 9210,
+ "id": 9465,
"properties": {
"inverted": "false",
"power": "3"
}
},
{
- "id": 9211,
+ "id": 9466,
"properties": {
"inverted": "false",
"power": "4"
}
},
{
- "id": 9212,
+ "id": 9467,
"properties": {
"inverted": "false",
"power": "5"
}
},
{
- "id": 9213,
+ "id": 9468,
"properties": {
"inverted": "false",
"power": "6"
}
},
{
- "id": 9214,
+ "id": 9469,
"properties": {
"inverted": "false",
"power": "7"
}
},
{
- "id": 9215,
+ "id": 9470,
"properties": {
"inverted": "false",
"power": "8"
}
},
{
- "id": 9216,
+ "id": 9471,
"properties": {
"inverted": "false",
"power": "9"
}
},
{
- "id": 9217,
+ "id": 9472,
"properties": {
"inverted": "false",
"power": "10"
}
},
{
- "id": 9218,
+ "id": 9473,
"properties": {
"inverted": "false",
"power": "11"
}
},
{
- "id": 9219,
+ "id": 9474,
"properties": {
"inverted": "false",
"power": "12"
}
},
{
- "id": 9220,
+ "id": 9475,
"properties": {
"inverted": "false",
"power": "13"
}
},
{
- "id": 9221,
+ "id": 9476,
"properties": {
"inverted": "false",
"power": "14"
}
},
{
- "id": 9222,
+ "id": 9477,
"properties": {
"inverted": "false",
"power": "15"
@@ -70705,13 +70789,13 @@
"states": [
{
"default": true,
- "id": 12815,
+ "id": 13284,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12816,
+ "id": 13285,
"properties": {
"waterlogged": "false"
}
@@ -70726,7 +70810,7 @@
"states": [
{
"default": true,
- "id": 12804
+ "id": 13273
}
]
},
@@ -70744,13 +70828,13 @@
"states": [
{
"default": true,
- "id": 12835,
+ "id": 13304,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12836,
+ "id": 13305,
"properties": {
"waterlogged": "false"
}
@@ -70777,56 +70861,56 @@
"states": [
{
"default": true,
- "id": 12861,
+ "id": 13330,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12862,
+ "id": 13331,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12863,
+ "id": 13332,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12864,
+ "id": 13333,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12865,
+ "id": 13334,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12866,
+ "id": 13335,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12867,
+ "id": 13336,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12868,
+ "id": 13337,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -70848,13 +70932,13 @@
"states": [
{
"default": true,
- "id": 12817,
+ "id": 13286,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12818,
+ "id": 13287,
"properties": {
"waterlogged": "false"
}
@@ -70869,7 +70953,7 @@
"states": [
{
"default": true,
- "id": 12805
+ "id": 13274
}
]
},
@@ -70887,13 +70971,13 @@
"states": [
{
"default": true,
- "id": 12837,
+ "id": 13306,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12838,
+ "id": 13307,
"properties": {
"waterlogged": "false"
}
@@ -70920,56 +71004,56 @@
"states": [
{
"default": true,
- "id": 12869,
+ "id": 13338,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12870,
+ "id": 13339,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12871,
+ "id": 13340,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12872,
+ "id": 13341,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12873,
+ "id": 13342,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12874,
+ "id": 13343,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12875,
+ "id": 13344,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12876,
+ "id": 13345,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -70985,7 +71069,7 @@
"states": [
{
"default": true,
- "id": 2007
+ "id": 2050
}
]
},
@@ -71003,13 +71087,13 @@
"states": [
{
"default": true,
- "id": 12819,
+ "id": 13288,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12820,
+ "id": 13289,
"properties": {
"waterlogged": "false"
}
@@ -71024,7 +71108,7 @@
"states": [
{
"default": true,
- "id": 12806
+ "id": 13275
}
]
},
@@ -71042,13 +71126,13 @@
"states": [
{
"default": true,
- "id": 12839,
+ "id": 13308,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12840,
+ "id": 13309,
"properties": {
"waterlogged": "false"
}
@@ -71075,56 +71159,56 @@
"states": [
{
"default": true,
- "id": 12877,
+ "id": 13346,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12878,
+ "id": 13347,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12879,
+ "id": 13348,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12880,
+ "id": 13349,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12881,
+ "id": 13350,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12882,
+ "id": 13351,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12883,
+ "id": 13352,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12884,
+ "id": 13353,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -71146,13 +71230,13 @@
"states": [
{
"default": true,
- "id": 12821,
+ "id": 13290,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12822,
+ "id": 13291,
"properties": {
"waterlogged": "false"
}
@@ -71167,7 +71251,7 @@
"states": [
{
"default": true,
- "id": 12807
+ "id": 13276
}
]
},
@@ -71185,13 +71269,13 @@
"states": [
{
"default": true,
- "id": 12841,
+ "id": 13310,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12842,
+ "id": 13311,
"properties": {
"waterlogged": "false"
}
@@ -71218,56 +71302,56 @@
"states": [
{
"default": true,
- "id": 12885,
+ "id": 13354,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12886,
+ "id": 13355,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12887,
+ "id": 13356,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12888,
+ "id": 13357,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12889,
+ "id": 13358,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12890,
+ "id": 13359,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12891,
+ "id": 13360,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12892,
+ "id": 13361,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -71289,13 +71373,13 @@
"states": [
{
"default": true,
- "id": 12813,
+ "id": 13282,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12814,
+ "id": 13283,
"properties": {
"waterlogged": "false"
}
@@ -71310,7 +71394,7 @@
"states": [
{
"default": true,
- "id": 12803
+ "id": 13272
}
]
},
@@ -71328,13 +71412,13 @@
"states": [
{
"default": true,
- "id": 12833,
+ "id": 13302,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12834,
+ "id": 13303,
"properties": {
"waterlogged": "false"
}
@@ -71361,56 +71445,56 @@
"states": [
{
"default": true,
- "id": 12853,
+ "id": 13322,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12854,
+ "id": 13323,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12855,
+ "id": 13324,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12856,
+ "id": 13325,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12857,
+ "id": 13326,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12858,
+ "id": 13327,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12859,
+ "id": 13328,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12860,
+ "id": 13329,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -71441,7 +71525,7 @@
},
"states": [
{
- "id": 26574,
+ "id": 27043,
"properties": {
"cracked": "true",
"facing": "north",
@@ -71449,7 +71533,7 @@
}
},
{
- "id": 26575,
+ "id": 27044,
"properties": {
"cracked": "true",
"facing": "north",
@@ -71457,7 +71541,7 @@
}
},
{
- "id": 26576,
+ "id": 27045,
"properties": {
"cracked": "true",
"facing": "south",
@@ -71465,7 +71549,7 @@
}
},
{
- "id": 26577,
+ "id": 27046,
"properties": {
"cracked": "true",
"facing": "south",
@@ -71473,7 +71557,7 @@
}
},
{
- "id": 26578,
+ "id": 27047,
"properties": {
"cracked": "true",
"facing": "west",
@@ -71481,7 +71565,7 @@
}
},
{
- "id": 26579,
+ "id": 27048,
"properties": {
"cracked": "true",
"facing": "west",
@@ -71489,7 +71573,7 @@
}
},
{
- "id": 26580,
+ "id": 27049,
"properties": {
"cracked": "true",
"facing": "east",
@@ -71497,7 +71581,7 @@
}
},
{
- "id": 26581,
+ "id": 27050,
"properties": {
"cracked": "true",
"facing": "east",
@@ -71505,7 +71589,7 @@
}
},
{
- "id": 26582,
+ "id": 27051,
"properties": {
"cracked": "false",
"facing": "north",
@@ -71514,7 +71598,7 @@
},
{
"default": true,
- "id": 26583,
+ "id": 27052,
"properties": {
"cracked": "false",
"facing": "north",
@@ -71522,7 +71606,7 @@
}
},
{
- "id": 26584,
+ "id": 27053,
"properties": {
"cracked": "false",
"facing": "south",
@@ -71530,7 +71614,7 @@
}
},
{
- "id": 26585,
+ "id": 27054,
"properties": {
"cracked": "false",
"facing": "south",
@@ -71538,7 +71622,7 @@
}
},
{
- "id": 26586,
+ "id": 27055,
"properties": {
"cracked": "false",
"facing": "west",
@@ -71546,7 +71630,7 @@
}
},
{
- "id": 26587,
+ "id": 27056,
"properties": {
"cracked": "false",
"facing": "west",
@@ -71554,7 +71638,7 @@
}
},
{
- "id": 26588,
+ "id": 27057,
"properties": {
"cracked": "false",
"facing": "east",
@@ -71562,7 +71646,7 @@
}
},
{
- "id": 26589,
+ "id": 27058,
"properties": {
"cracked": "false",
"facing": "east",
@@ -71585,20 +71669,20 @@
},
"states": [
{
- "id": 24904,
+ "id": 25373,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 24905,
+ "id": 25374,
"properties": {
"axis": "y"
}
},
{
- "id": 24906,
+ "id": 25375,
"properties": {
"axis": "z"
}
@@ -71623,21 +71707,21 @@
},
"states": [
{
- "id": 26221,
+ "id": 26690,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 26222,
+ "id": 26691,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 26223,
+ "id": 26692,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -71645,21 +71729,21 @@
},
{
"default": true,
- "id": 26224,
+ "id": 26693,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 26225,
+ "id": 26694,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 26226,
+ "id": 26695,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -71700,7 +71784,7 @@
},
"states": [
{
- "id": 26141,
+ "id": 26610,
"properties": {
"facing": "north",
"half": "top",
@@ -71709,7 +71793,7 @@
}
},
{
- "id": 26142,
+ "id": 26611,
"properties": {
"facing": "north",
"half": "top",
@@ -71718,7 +71802,7 @@
}
},
{
- "id": 26143,
+ "id": 26612,
"properties": {
"facing": "north",
"half": "top",
@@ -71727,7 +71811,7 @@
}
},
{
- "id": 26144,
+ "id": 26613,
"properties": {
"facing": "north",
"half": "top",
@@ -71736,7 +71820,7 @@
}
},
{
- "id": 26145,
+ "id": 26614,
"properties": {
"facing": "north",
"half": "top",
@@ -71745,7 +71829,7 @@
}
},
{
- "id": 26146,
+ "id": 26615,
"properties": {
"facing": "north",
"half": "top",
@@ -71754,7 +71838,7 @@
}
},
{
- "id": 26147,
+ "id": 26616,
"properties": {
"facing": "north",
"half": "top",
@@ -71763,7 +71847,7 @@
}
},
{
- "id": 26148,
+ "id": 26617,
"properties": {
"facing": "north",
"half": "top",
@@ -71772,7 +71856,7 @@
}
},
{
- "id": 26149,
+ "id": 26618,
"properties": {
"facing": "north",
"half": "top",
@@ -71781,7 +71865,7 @@
}
},
{
- "id": 26150,
+ "id": 26619,
"properties": {
"facing": "north",
"half": "top",
@@ -71790,7 +71874,7 @@
}
},
{
- "id": 26151,
+ "id": 26620,
"properties": {
"facing": "north",
"half": "bottom",
@@ -71800,7 +71884,7 @@
},
{
"default": true,
- "id": 26152,
+ "id": 26621,
"properties": {
"facing": "north",
"half": "bottom",
@@ -71809,7 +71893,7 @@
}
},
{
- "id": 26153,
+ "id": 26622,
"properties": {
"facing": "north",
"half": "bottom",
@@ -71818,7 +71902,7 @@
}
},
{
- "id": 26154,
+ "id": 26623,
"properties": {
"facing": "north",
"half": "bottom",
@@ -71827,7 +71911,7 @@
}
},
{
- "id": 26155,
+ "id": 26624,
"properties": {
"facing": "north",
"half": "bottom",
@@ -71836,7 +71920,7 @@
}
},
{
- "id": 26156,
+ "id": 26625,
"properties": {
"facing": "north",
"half": "bottom",
@@ -71845,7 +71929,7 @@
}
},
{
- "id": 26157,
+ "id": 26626,
"properties": {
"facing": "north",
"half": "bottom",
@@ -71854,7 +71938,7 @@
}
},
{
- "id": 26158,
+ "id": 26627,
"properties": {
"facing": "north",
"half": "bottom",
@@ -71863,7 +71947,7 @@
}
},
{
- "id": 26159,
+ "id": 26628,
"properties": {
"facing": "north",
"half": "bottom",
@@ -71872,7 +71956,7 @@
}
},
{
- "id": 26160,
+ "id": 26629,
"properties": {
"facing": "north",
"half": "bottom",
@@ -71881,7 +71965,7 @@
}
},
{
- "id": 26161,
+ "id": 26630,
"properties": {
"facing": "south",
"half": "top",
@@ -71890,7 +71974,7 @@
}
},
{
- "id": 26162,
+ "id": 26631,
"properties": {
"facing": "south",
"half": "top",
@@ -71899,7 +71983,7 @@
}
},
{
- "id": 26163,
+ "id": 26632,
"properties": {
"facing": "south",
"half": "top",
@@ -71908,7 +71992,7 @@
}
},
{
- "id": 26164,
+ "id": 26633,
"properties": {
"facing": "south",
"half": "top",
@@ -71917,7 +72001,7 @@
}
},
{
- "id": 26165,
+ "id": 26634,
"properties": {
"facing": "south",
"half": "top",
@@ -71926,7 +72010,7 @@
}
},
{
- "id": 26166,
+ "id": 26635,
"properties": {
"facing": "south",
"half": "top",
@@ -71935,7 +72019,7 @@
}
},
{
- "id": 26167,
+ "id": 26636,
"properties": {
"facing": "south",
"half": "top",
@@ -71944,7 +72028,7 @@
}
},
{
- "id": 26168,
+ "id": 26637,
"properties": {
"facing": "south",
"half": "top",
@@ -71953,7 +72037,7 @@
}
},
{
- "id": 26169,
+ "id": 26638,
"properties": {
"facing": "south",
"half": "top",
@@ -71962,7 +72046,7 @@
}
},
{
- "id": 26170,
+ "id": 26639,
"properties": {
"facing": "south",
"half": "top",
@@ -71971,7 +72055,7 @@
}
},
{
- "id": 26171,
+ "id": 26640,
"properties": {
"facing": "south",
"half": "bottom",
@@ -71980,7 +72064,7 @@
}
},
{
- "id": 26172,
+ "id": 26641,
"properties": {
"facing": "south",
"half": "bottom",
@@ -71989,7 +72073,7 @@
}
},
{
- "id": 26173,
+ "id": 26642,
"properties": {
"facing": "south",
"half": "bottom",
@@ -71998,7 +72082,7 @@
}
},
{
- "id": 26174,
+ "id": 26643,
"properties": {
"facing": "south",
"half": "bottom",
@@ -72007,7 +72091,7 @@
}
},
{
- "id": 26175,
+ "id": 26644,
"properties": {
"facing": "south",
"half": "bottom",
@@ -72016,7 +72100,7 @@
}
},
{
- "id": 26176,
+ "id": 26645,
"properties": {
"facing": "south",
"half": "bottom",
@@ -72025,7 +72109,7 @@
}
},
{
- "id": 26177,
+ "id": 26646,
"properties": {
"facing": "south",
"half": "bottom",
@@ -72034,7 +72118,7 @@
}
},
{
- "id": 26178,
+ "id": 26647,
"properties": {
"facing": "south",
"half": "bottom",
@@ -72043,7 +72127,7 @@
}
},
{
- "id": 26179,
+ "id": 26648,
"properties": {
"facing": "south",
"half": "bottom",
@@ -72052,7 +72136,7 @@
}
},
{
- "id": 26180,
+ "id": 26649,
"properties": {
"facing": "south",
"half": "bottom",
@@ -72061,7 +72145,7 @@
}
},
{
- "id": 26181,
+ "id": 26650,
"properties": {
"facing": "west",
"half": "top",
@@ -72070,7 +72154,7 @@
}
},
{
- "id": 26182,
+ "id": 26651,
"properties": {
"facing": "west",
"half": "top",
@@ -72079,7 +72163,7 @@
}
},
{
- "id": 26183,
+ "id": 26652,
"properties": {
"facing": "west",
"half": "top",
@@ -72088,7 +72172,7 @@
}
},
{
- "id": 26184,
+ "id": 26653,
"properties": {
"facing": "west",
"half": "top",
@@ -72097,7 +72181,7 @@
}
},
{
- "id": 26185,
+ "id": 26654,
"properties": {
"facing": "west",
"half": "top",
@@ -72106,7 +72190,7 @@
}
},
{
- "id": 26186,
+ "id": 26655,
"properties": {
"facing": "west",
"half": "top",
@@ -72115,7 +72199,7 @@
}
},
{
- "id": 26187,
+ "id": 26656,
"properties": {
"facing": "west",
"half": "top",
@@ -72124,7 +72208,7 @@
}
},
{
- "id": 26188,
+ "id": 26657,
"properties": {
"facing": "west",
"half": "top",
@@ -72133,7 +72217,7 @@
}
},
{
- "id": 26189,
+ "id": 26658,
"properties": {
"facing": "west",
"half": "top",
@@ -72142,7 +72226,7 @@
}
},
{
- "id": 26190,
+ "id": 26659,
"properties": {
"facing": "west",
"half": "top",
@@ -72151,7 +72235,7 @@
}
},
{
- "id": 26191,
+ "id": 26660,
"properties": {
"facing": "west",
"half": "bottom",
@@ -72160,7 +72244,7 @@
}
},
{
- "id": 26192,
+ "id": 26661,
"properties": {
"facing": "west",
"half": "bottom",
@@ -72169,7 +72253,7 @@
}
},
{
- "id": 26193,
+ "id": 26662,
"properties": {
"facing": "west",
"half": "bottom",
@@ -72178,7 +72262,7 @@
}
},
{
- "id": 26194,
+ "id": 26663,
"properties": {
"facing": "west",
"half": "bottom",
@@ -72187,7 +72271,7 @@
}
},
{
- "id": 26195,
+ "id": 26664,
"properties": {
"facing": "west",
"half": "bottom",
@@ -72196,7 +72280,7 @@
}
},
{
- "id": 26196,
+ "id": 26665,
"properties": {
"facing": "west",
"half": "bottom",
@@ -72205,7 +72289,7 @@
}
},
{
- "id": 26197,
+ "id": 26666,
"properties": {
"facing": "west",
"half": "bottom",
@@ -72214,7 +72298,7 @@
}
},
{
- "id": 26198,
+ "id": 26667,
"properties": {
"facing": "west",
"half": "bottom",
@@ -72223,7 +72307,7 @@
}
},
{
- "id": 26199,
+ "id": 26668,
"properties": {
"facing": "west",
"half": "bottom",
@@ -72232,7 +72316,7 @@
}
},
{
- "id": 26200,
+ "id": 26669,
"properties": {
"facing": "west",
"half": "bottom",
@@ -72241,7 +72325,7 @@
}
},
{
- "id": 26201,
+ "id": 26670,
"properties": {
"facing": "east",
"half": "top",
@@ -72250,7 +72334,7 @@
}
},
{
- "id": 26202,
+ "id": 26671,
"properties": {
"facing": "east",
"half": "top",
@@ -72259,7 +72343,7 @@
}
},
{
- "id": 26203,
+ "id": 26672,
"properties": {
"facing": "east",
"half": "top",
@@ -72268,7 +72352,7 @@
}
},
{
- "id": 26204,
+ "id": 26673,
"properties": {
"facing": "east",
"half": "top",
@@ -72277,7 +72361,7 @@
}
},
{
- "id": 26205,
+ "id": 26674,
"properties": {
"facing": "east",
"half": "top",
@@ -72286,7 +72370,7 @@
}
},
{
- "id": 26206,
+ "id": 26675,
"properties": {
"facing": "east",
"half": "top",
@@ -72295,7 +72379,7 @@
}
},
{
- "id": 26207,
+ "id": 26676,
"properties": {
"facing": "east",
"half": "top",
@@ -72304,7 +72388,7 @@
}
},
{
- "id": 26208,
+ "id": 26677,
"properties": {
"facing": "east",
"half": "top",
@@ -72313,7 +72397,7 @@
}
},
{
- "id": 26209,
+ "id": 26678,
"properties": {
"facing": "east",
"half": "top",
@@ -72322,7 +72406,7 @@
}
},
{
- "id": 26210,
+ "id": 26679,
"properties": {
"facing": "east",
"half": "top",
@@ -72331,7 +72415,7 @@
}
},
{
- "id": 26211,
+ "id": 26680,
"properties": {
"facing": "east",
"half": "bottom",
@@ -72340,7 +72424,7 @@
}
},
{
- "id": 26212,
+ "id": 26681,
"properties": {
"facing": "east",
"half": "bottom",
@@ -72349,7 +72433,7 @@
}
},
{
- "id": 26213,
+ "id": 26682,
"properties": {
"facing": "east",
"half": "bottom",
@@ -72358,7 +72442,7 @@
}
},
{
- "id": 26214,
+ "id": 26683,
"properties": {
"facing": "east",
"half": "bottom",
@@ -72367,7 +72451,7 @@
}
},
{
- "id": 26215,
+ "id": 26684,
"properties": {
"facing": "east",
"half": "bottom",
@@ -72376,7 +72460,7 @@
}
},
{
- "id": 26216,
+ "id": 26685,
"properties": {
"facing": "east",
"half": "bottom",
@@ -72385,7 +72469,7 @@
}
},
{
- "id": 26217,
+ "id": 26686,
"properties": {
"facing": "east",
"half": "bottom",
@@ -72394,7 +72478,7 @@
}
},
{
- "id": 26218,
+ "id": 26687,
"properties": {
"facing": "east",
"half": "bottom",
@@ -72403,7 +72487,7 @@
}
},
{
- "id": 26219,
+ "id": 26688,
"properties": {
"facing": "east",
"half": "bottom",
@@ -72412,7 +72496,7 @@
}
},
{
- "id": 26220,
+ "id": 26689,
"properties": {
"facing": "east",
"half": "bottom",
@@ -72459,7 +72543,7 @@
},
"states": [
{
- "id": 26227,
+ "id": 26696,
"properties": {
"east": "none",
"north": "none",
@@ -72470,7 +72554,7 @@
}
},
{
- "id": 26228,
+ "id": 26697,
"properties": {
"east": "none",
"north": "none",
@@ -72481,7 +72565,7 @@
}
},
{
- "id": 26229,
+ "id": 26698,
"properties": {
"east": "none",
"north": "none",
@@ -72493,7 +72577,7 @@
},
{
"default": true,
- "id": 26230,
+ "id": 26699,
"properties": {
"east": "none",
"north": "none",
@@ -72504,7 +72588,7 @@
}
},
{
- "id": 26231,
+ "id": 26700,
"properties": {
"east": "none",
"north": "none",
@@ -72515,7 +72599,7 @@
}
},
{
- "id": 26232,
+ "id": 26701,
"properties": {
"east": "none",
"north": "none",
@@ -72526,7 +72610,7 @@
}
},
{
- "id": 26233,
+ "id": 26702,
"properties": {
"east": "none",
"north": "none",
@@ -72537,7 +72621,7 @@
}
},
{
- "id": 26234,
+ "id": 26703,
"properties": {
"east": "none",
"north": "none",
@@ -72548,7 +72632,7 @@
}
},
{
- "id": 26235,
+ "id": 26704,
"properties": {
"east": "none",
"north": "none",
@@ -72559,7 +72643,7 @@
}
},
{
- "id": 26236,
+ "id": 26705,
"properties": {
"east": "none",
"north": "none",
@@ -72570,7 +72654,7 @@
}
},
{
- "id": 26237,
+ "id": 26706,
"properties": {
"east": "none",
"north": "none",
@@ -72581,7 +72665,7 @@
}
},
{
- "id": 26238,
+ "id": 26707,
"properties": {
"east": "none",
"north": "none",
@@ -72592,7 +72676,7 @@
}
},
{
- "id": 26239,
+ "id": 26708,
"properties": {
"east": "none",
"north": "none",
@@ -72603,7 +72687,7 @@
}
},
{
- "id": 26240,
+ "id": 26709,
"properties": {
"east": "none",
"north": "none",
@@ -72614,7 +72698,7 @@
}
},
{
- "id": 26241,
+ "id": 26710,
"properties": {
"east": "none",
"north": "none",
@@ -72625,7 +72709,7 @@
}
},
{
- "id": 26242,
+ "id": 26711,
"properties": {
"east": "none",
"north": "none",
@@ -72636,7 +72720,7 @@
}
},
{
- "id": 26243,
+ "id": 26712,
"properties": {
"east": "none",
"north": "none",
@@ -72647,7 +72731,7 @@
}
},
{
- "id": 26244,
+ "id": 26713,
"properties": {
"east": "none",
"north": "none",
@@ -72658,7 +72742,7 @@
}
},
{
- "id": 26245,
+ "id": 26714,
"properties": {
"east": "none",
"north": "none",
@@ -72669,7 +72753,7 @@
}
},
{
- "id": 26246,
+ "id": 26715,
"properties": {
"east": "none",
"north": "none",
@@ -72680,7 +72764,7 @@
}
},
{
- "id": 26247,
+ "id": 26716,
"properties": {
"east": "none",
"north": "none",
@@ -72691,7 +72775,7 @@
}
},
{
- "id": 26248,
+ "id": 26717,
"properties": {
"east": "none",
"north": "none",
@@ -72702,7 +72786,7 @@
}
},
{
- "id": 26249,
+ "id": 26718,
"properties": {
"east": "none",
"north": "none",
@@ -72713,7 +72797,7 @@
}
},
{
- "id": 26250,
+ "id": 26719,
"properties": {
"east": "none",
"north": "none",
@@ -72724,7 +72808,7 @@
}
},
{
- "id": 26251,
+ "id": 26720,
"properties": {
"east": "none",
"north": "none",
@@ -72735,7 +72819,7 @@
}
},
{
- "id": 26252,
+ "id": 26721,
"properties": {
"east": "none",
"north": "none",
@@ -72746,7 +72830,7 @@
}
},
{
- "id": 26253,
+ "id": 26722,
"properties": {
"east": "none",
"north": "none",
@@ -72757,7 +72841,7 @@
}
},
{
- "id": 26254,
+ "id": 26723,
"properties": {
"east": "none",
"north": "none",
@@ -72768,7 +72852,7 @@
}
},
{
- "id": 26255,
+ "id": 26724,
"properties": {
"east": "none",
"north": "none",
@@ -72779,7 +72863,7 @@
}
},
{
- "id": 26256,
+ "id": 26725,
"properties": {
"east": "none",
"north": "none",
@@ -72790,7 +72874,7 @@
}
},
{
- "id": 26257,
+ "id": 26726,
"properties": {
"east": "none",
"north": "none",
@@ -72801,7 +72885,7 @@
}
},
{
- "id": 26258,
+ "id": 26727,
"properties": {
"east": "none",
"north": "none",
@@ -72812,7 +72896,7 @@
}
},
{
- "id": 26259,
+ "id": 26728,
"properties": {
"east": "none",
"north": "none",
@@ -72823,7 +72907,7 @@
}
},
{
- "id": 26260,
+ "id": 26729,
"properties": {
"east": "none",
"north": "none",
@@ -72834,7 +72918,7 @@
}
},
{
- "id": 26261,
+ "id": 26730,
"properties": {
"east": "none",
"north": "none",
@@ -72845,7 +72929,7 @@
}
},
{
- "id": 26262,
+ "id": 26731,
"properties": {
"east": "none",
"north": "none",
@@ -72856,7 +72940,7 @@
}
},
{
- "id": 26263,
+ "id": 26732,
"properties": {
"east": "none",
"north": "low",
@@ -72867,7 +72951,7 @@
}
},
{
- "id": 26264,
+ "id": 26733,
"properties": {
"east": "none",
"north": "low",
@@ -72878,7 +72962,7 @@
}
},
{
- "id": 26265,
+ "id": 26734,
"properties": {
"east": "none",
"north": "low",
@@ -72889,7 +72973,7 @@
}
},
{
- "id": 26266,
+ "id": 26735,
"properties": {
"east": "none",
"north": "low",
@@ -72900,7 +72984,7 @@
}
},
{
- "id": 26267,
+ "id": 26736,
"properties": {
"east": "none",
"north": "low",
@@ -72911,7 +72995,7 @@
}
},
{
- "id": 26268,
+ "id": 26737,
"properties": {
"east": "none",
"north": "low",
@@ -72922,7 +73006,7 @@
}
},
{
- "id": 26269,
+ "id": 26738,
"properties": {
"east": "none",
"north": "low",
@@ -72933,7 +73017,7 @@
}
},
{
- "id": 26270,
+ "id": 26739,
"properties": {
"east": "none",
"north": "low",
@@ -72944,7 +73028,7 @@
}
},
{
- "id": 26271,
+ "id": 26740,
"properties": {
"east": "none",
"north": "low",
@@ -72955,7 +73039,7 @@
}
},
{
- "id": 26272,
+ "id": 26741,
"properties": {
"east": "none",
"north": "low",
@@ -72966,7 +73050,7 @@
}
},
{
- "id": 26273,
+ "id": 26742,
"properties": {
"east": "none",
"north": "low",
@@ -72977,7 +73061,7 @@
}
},
{
- "id": 26274,
+ "id": 26743,
"properties": {
"east": "none",
"north": "low",
@@ -72988,7 +73072,7 @@
}
},
{
- "id": 26275,
+ "id": 26744,
"properties": {
"east": "none",
"north": "low",
@@ -72999,7 +73083,7 @@
}
},
{
- "id": 26276,
+ "id": 26745,
"properties": {
"east": "none",
"north": "low",
@@ -73010,7 +73094,7 @@
}
},
{
- "id": 26277,
+ "id": 26746,
"properties": {
"east": "none",
"north": "low",
@@ -73021,7 +73105,7 @@
}
},
{
- "id": 26278,
+ "id": 26747,
"properties": {
"east": "none",
"north": "low",
@@ -73032,7 +73116,7 @@
}
},
{
- "id": 26279,
+ "id": 26748,
"properties": {
"east": "none",
"north": "low",
@@ -73043,7 +73127,7 @@
}
},
{
- "id": 26280,
+ "id": 26749,
"properties": {
"east": "none",
"north": "low",
@@ -73054,7 +73138,7 @@
}
},
{
- "id": 26281,
+ "id": 26750,
"properties": {
"east": "none",
"north": "low",
@@ -73065,7 +73149,7 @@
}
},
{
- "id": 26282,
+ "id": 26751,
"properties": {
"east": "none",
"north": "low",
@@ -73076,7 +73160,7 @@
}
},
{
- "id": 26283,
+ "id": 26752,
"properties": {
"east": "none",
"north": "low",
@@ -73087,7 +73171,7 @@
}
},
{
- "id": 26284,
+ "id": 26753,
"properties": {
"east": "none",
"north": "low",
@@ -73098,7 +73182,7 @@
}
},
{
- "id": 26285,
+ "id": 26754,
"properties": {
"east": "none",
"north": "low",
@@ -73109,7 +73193,7 @@
}
},
{
- "id": 26286,
+ "id": 26755,
"properties": {
"east": "none",
"north": "low",
@@ -73120,7 +73204,7 @@
}
},
{
- "id": 26287,
+ "id": 26756,
"properties": {
"east": "none",
"north": "low",
@@ -73131,7 +73215,7 @@
}
},
{
- "id": 26288,
+ "id": 26757,
"properties": {
"east": "none",
"north": "low",
@@ -73142,7 +73226,7 @@
}
},
{
- "id": 26289,
+ "id": 26758,
"properties": {
"east": "none",
"north": "low",
@@ -73153,7 +73237,7 @@
}
},
{
- "id": 26290,
+ "id": 26759,
"properties": {
"east": "none",
"north": "low",
@@ -73164,7 +73248,7 @@
}
},
{
- "id": 26291,
+ "id": 26760,
"properties": {
"east": "none",
"north": "low",
@@ -73175,7 +73259,7 @@
}
},
{
- "id": 26292,
+ "id": 26761,
"properties": {
"east": "none",
"north": "low",
@@ -73186,7 +73270,7 @@
}
},
{
- "id": 26293,
+ "id": 26762,
"properties": {
"east": "none",
"north": "low",
@@ -73197,7 +73281,7 @@
}
},
{
- "id": 26294,
+ "id": 26763,
"properties": {
"east": "none",
"north": "low",
@@ -73208,7 +73292,7 @@
}
},
{
- "id": 26295,
+ "id": 26764,
"properties": {
"east": "none",
"north": "low",
@@ -73219,7 +73303,7 @@
}
},
{
- "id": 26296,
+ "id": 26765,
"properties": {
"east": "none",
"north": "low",
@@ -73230,7 +73314,7 @@
}
},
{
- "id": 26297,
+ "id": 26766,
"properties": {
"east": "none",
"north": "low",
@@ -73241,7 +73325,7 @@
}
},
{
- "id": 26298,
+ "id": 26767,
"properties": {
"east": "none",
"north": "low",
@@ -73252,7 +73336,7 @@
}
},
{
- "id": 26299,
+ "id": 26768,
"properties": {
"east": "none",
"north": "tall",
@@ -73263,7 +73347,7 @@
}
},
{
- "id": 26300,
+ "id": 26769,
"properties": {
"east": "none",
"north": "tall",
@@ -73274,7 +73358,7 @@
}
},
{
- "id": 26301,
+ "id": 26770,
"properties": {
"east": "none",
"north": "tall",
@@ -73285,7 +73369,7 @@
}
},
{
- "id": 26302,
+ "id": 26771,
"properties": {
"east": "none",
"north": "tall",
@@ -73296,7 +73380,7 @@
}
},
{
- "id": 26303,
+ "id": 26772,
"properties": {
"east": "none",
"north": "tall",
@@ -73307,7 +73391,7 @@
}
},
{
- "id": 26304,
+ "id": 26773,
"properties": {
"east": "none",
"north": "tall",
@@ -73318,7 +73402,7 @@
}
},
{
- "id": 26305,
+ "id": 26774,
"properties": {
"east": "none",
"north": "tall",
@@ -73329,7 +73413,7 @@
}
},
{
- "id": 26306,
+ "id": 26775,
"properties": {
"east": "none",
"north": "tall",
@@ -73340,7 +73424,7 @@
}
},
{
- "id": 26307,
+ "id": 26776,
"properties": {
"east": "none",
"north": "tall",
@@ -73351,7 +73435,7 @@
}
},
{
- "id": 26308,
+ "id": 26777,
"properties": {
"east": "none",
"north": "tall",
@@ -73362,7 +73446,7 @@
}
},
{
- "id": 26309,
+ "id": 26778,
"properties": {
"east": "none",
"north": "tall",
@@ -73373,7 +73457,7 @@
}
},
{
- "id": 26310,
+ "id": 26779,
"properties": {
"east": "none",
"north": "tall",
@@ -73384,7 +73468,7 @@
}
},
{
- "id": 26311,
+ "id": 26780,
"properties": {
"east": "none",
"north": "tall",
@@ -73395,7 +73479,7 @@
}
},
{
- "id": 26312,
+ "id": 26781,
"properties": {
"east": "none",
"north": "tall",
@@ -73406,7 +73490,7 @@
}
},
{
- "id": 26313,
+ "id": 26782,
"properties": {
"east": "none",
"north": "tall",
@@ -73417,7 +73501,7 @@
}
},
{
- "id": 26314,
+ "id": 26783,
"properties": {
"east": "none",
"north": "tall",
@@ -73428,7 +73512,7 @@
}
},
{
- "id": 26315,
+ "id": 26784,
"properties": {
"east": "none",
"north": "tall",
@@ -73439,7 +73523,7 @@
}
},
{
- "id": 26316,
+ "id": 26785,
"properties": {
"east": "none",
"north": "tall",
@@ -73450,7 +73534,7 @@
}
},
{
- "id": 26317,
+ "id": 26786,
"properties": {
"east": "none",
"north": "tall",
@@ -73461,7 +73545,7 @@
}
},
{
- "id": 26318,
+ "id": 26787,
"properties": {
"east": "none",
"north": "tall",
@@ -73472,7 +73556,7 @@
}
},
{
- "id": 26319,
+ "id": 26788,
"properties": {
"east": "none",
"north": "tall",
@@ -73483,7 +73567,7 @@
}
},
{
- "id": 26320,
+ "id": 26789,
"properties": {
"east": "none",
"north": "tall",
@@ -73494,7 +73578,7 @@
}
},
{
- "id": 26321,
+ "id": 26790,
"properties": {
"east": "none",
"north": "tall",
@@ -73505,7 +73589,7 @@
}
},
{
- "id": 26322,
+ "id": 26791,
"properties": {
"east": "none",
"north": "tall",
@@ -73516,7 +73600,7 @@
}
},
{
- "id": 26323,
+ "id": 26792,
"properties": {
"east": "none",
"north": "tall",
@@ -73527,7 +73611,7 @@
}
},
{
- "id": 26324,
+ "id": 26793,
"properties": {
"east": "none",
"north": "tall",
@@ -73538,7 +73622,7 @@
}
},
{
- "id": 26325,
+ "id": 26794,
"properties": {
"east": "none",
"north": "tall",
@@ -73549,7 +73633,7 @@
}
},
{
- "id": 26326,
+ "id": 26795,
"properties": {
"east": "none",
"north": "tall",
@@ -73560,7 +73644,7 @@
}
},
{
- "id": 26327,
+ "id": 26796,
"properties": {
"east": "none",
"north": "tall",
@@ -73571,7 +73655,7 @@
}
},
{
- "id": 26328,
+ "id": 26797,
"properties": {
"east": "none",
"north": "tall",
@@ -73582,7 +73666,7 @@
}
},
{
- "id": 26329,
+ "id": 26798,
"properties": {
"east": "none",
"north": "tall",
@@ -73593,7 +73677,7 @@
}
},
{
- "id": 26330,
+ "id": 26799,
"properties": {
"east": "none",
"north": "tall",
@@ -73604,7 +73688,7 @@
}
},
{
- "id": 26331,
+ "id": 26800,
"properties": {
"east": "none",
"north": "tall",
@@ -73615,7 +73699,7 @@
}
},
{
- "id": 26332,
+ "id": 26801,
"properties": {
"east": "none",
"north": "tall",
@@ -73626,7 +73710,7 @@
}
},
{
- "id": 26333,
+ "id": 26802,
"properties": {
"east": "none",
"north": "tall",
@@ -73637,7 +73721,7 @@
}
},
{
- "id": 26334,
+ "id": 26803,
"properties": {
"east": "none",
"north": "tall",
@@ -73648,7 +73732,7 @@
}
},
{
- "id": 26335,
+ "id": 26804,
"properties": {
"east": "low",
"north": "none",
@@ -73659,7 +73743,7 @@
}
},
{
- "id": 26336,
+ "id": 26805,
"properties": {
"east": "low",
"north": "none",
@@ -73670,7 +73754,7 @@
}
},
{
- "id": 26337,
+ "id": 26806,
"properties": {
"east": "low",
"north": "none",
@@ -73681,7 +73765,7 @@
}
},
{
- "id": 26338,
+ "id": 26807,
"properties": {
"east": "low",
"north": "none",
@@ -73692,7 +73776,7 @@
}
},
{
- "id": 26339,
+ "id": 26808,
"properties": {
"east": "low",
"north": "none",
@@ -73703,7 +73787,7 @@
}
},
{
- "id": 26340,
+ "id": 26809,
"properties": {
"east": "low",
"north": "none",
@@ -73714,7 +73798,7 @@
}
},
{
- "id": 26341,
+ "id": 26810,
"properties": {
"east": "low",
"north": "none",
@@ -73725,7 +73809,7 @@
}
},
{
- "id": 26342,
+ "id": 26811,
"properties": {
"east": "low",
"north": "none",
@@ -73736,7 +73820,7 @@
}
},
{
- "id": 26343,
+ "id": 26812,
"properties": {
"east": "low",
"north": "none",
@@ -73747,7 +73831,7 @@
}
},
{
- "id": 26344,
+ "id": 26813,
"properties": {
"east": "low",
"north": "none",
@@ -73758,7 +73842,7 @@
}
},
{
- "id": 26345,
+ "id": 26814,
"properties": {
"east": "low",
"north": "none",
@@ -73769,7 +73853,7 @@
}
},
{
- "id": 26346,
+ "id": 26815,
"properties": {
"east": "low",
"north": "none",
@@ -73780,7 +73864,7 @@
}
},
{
- "id": 26347,
+ "id": 26816,
"properties": {
"east": "low",
"north": "none",
@@ -73791,7 +73875,7 @@
}
},
{
- "id": 26348,
+ "id": 26817,
"properties": {
"east": "low",
"north": "none",
@@ -73802,7 +73886,7 @@
}
},
{
- "id": 26349,
+ "id": 26818,
"properties": {
"east": "low",
"north": "none",
@@ -73813,7 +73897,7 @@
}
},
{
- "id": 26350,
+ "id": 26819,
"properties": {
"east": "low",
"north": "none",
@@ -73824,7 +73908,7 @@
}
},
{
- "id": 26351,
+ "id": 26820,
"properties": {
"east": "low",
"north": "none",
@@ -73835,7 +73919,7 @@
}
},
{
- "id": 26352,
+ "id": 26821,
"properties": {
"east": "low",
"north": "none",
@@ -73846,7 +73930,7 @@
}
},
{
- "id": 26353,
+ "id": 26822,
"properties": {
"east": "low",
"north": "none",
@@ -73857,7 +73941,7 @@
}
},
{
- "id": 26354,
+ "id": 26823,
"properties": {
"east": "low",
"north": "none",
@@ -73868,7 +73952,7 @@
}
},
{
- "id": 26355,
+ "id": 26824,
"properties": {
"east": "low",
"north": "none",
@@ -73879,7 +73963,7 @@
}
},
{
- "id": 26356,
+ "id": 26825,
"properties": {
"east": "low",
"north": "none",
@@ -73890,7 +73974,7 @@
}
},
{
- "id": 26357,
+ "id": 26826,
"properties": {
"east": "low",
"north": "none",
@@ -73901,7 +73985,7 @@
}
},
{
- "id": 26358,
+ "id": 26827,
"properties": {
"east": "low",
"north": "none",
@@ -73912,7 +73996,7 @@
}
},
{
- "id": 26359,
+ "id": 26828,
"properties": {
"east": "low",
"north": "none",
@@ -73923,7 +74007,7 @@
}
},
{
- "id": 26360,
+ "id": 26829,
"properties": {
"east": "low",
"north": "none",
@@ -73934,7 +74018,7 @@
}
},
{
- "id": 26361,
+ "id": 26830,
"properties": {
"east": "low",
"north": "none",
@@ -73945,7 +74029,7 @@
}
},
{
- "id": 26362,
+ "id": 26831,
"properties": {
"east": "low",
"north": "none",
@@ -73956,7 +74040,7 @@
}
},
{
- "id": 26363,
+ "id": 26832,
"properties": {
"east": "low",
"north": "none",
@@ -73967,7 +74051,7 @@
}
},
{
- "id": 26364,
+ "id": 26833,
"properties": {
"east": "low",
"north": "none",
@@ -73978,7 +74062,7 @@
}
},
{
- "id": 26365,
+ "id": 26834,
"properties": {
"east": "low",
"north": "none",
@@ -73989,7 +74073,7 @@
}
},
{
- "id": 26366,
+ "id": 26835,
"properties": {
"east": "low",
"north": "none",
@@ -74000,7 +74084,7 @@
}
},
{
- "id": 26367,
+ "id": 26836,
"properties": {
"east": "low",
"north": "none",
@@ -74011,7 +74095,7 @@
}
},
{
- "id": 26368,
+ "id": 26837,
"properties": {
"east": "low",
"north": "none",
@@ -74022,7 +74106,7 @@
}
},
{
- "id": 26369,
+ "id": 26838,
"properties": {
"east": "low",
"north": "none",
@@ -74033,7 +74117,7 @@
}
},
{
- "id": 26370,
+ "id": 26839,
"properties": {
"east": "low",
"north": "none",
@@ -74044,7 +74128,7 @@
}
},
{
- "id": 26371,
+ "id": 26840,
"properties": {
"east": "low",
"north": "low",
@@ -74055,7 +74139,7 @@
}
},
{
- "id": 26372,
+ "id": 26841,
"properties": {
"east": "low",
"north": "low",
@@ -74066,7 +74150,7 @@
}
},
{
- "id": 26373,
+ "id": 26842,
"properties": {
"east": "low",
"north": "low",
@@ -74077,7 +74161,7 @@
}
},
{
- "id": 26374,
+ "id": 26843,
"properties": {
"east": "low",
"north": "low",
@@ -74088,7 +74172,7 @@
}
},
{
- "id": 26375,
+ "id": 26844,
"properties": {
"east": "low",
"north": "low",
@@ -74099,7 +74183,7 @@
}
},
{
- "id": 26376,
+ "id": 26845,
"properties": {
"east": "low",
"north": "low",
@@ -74110,7 +74194,7 @@
}
},
{
- "id": 26377,
+ "id": 26846,
"properties": {
"east": "low",
"north": "low",
@@ -74121,7 +74205,7 @@
}
},
{
- "id": 26378,
+ "id": 26847,
"properties": {
"east": "low",
"north": "low",
@@ -74132,7 +74216,7 @@
}
},
{
- "id": 26379,
+ "id": 26848,
"properties": {
"east": "low",
"north": "low",
@@ -74143,7 +74227,7 @@
}
},
{
- "id": 26380,
+ "id": 26849,
"properties": {
"east": "low",
"north": "low",
@@ -74154,7 +74238,7 @@
}
},
{
- "id": 26381,
+ "id": 26850,
"properties": {
"east": "low",
"north": "low",
@@ -74165,7 +74249,7 @@
}
},
{
- "id": 26382,
+ "id": 26851,
"properties": {
"east": "low",
"north": "low",
@@ -74176,7 +74260,7 @@
}
},
{
- "id": 26383,
+ "id": 26852,
"properties": {
"east": "low",
"north": "low",
@@ -74187,7 +74271,7 @@
}
},
{
- "id": 26384,
+ "id": 26853,
"properties": {
"east": "low",
"north": "low",
@@ -74198,7 +74282,7 @@
}
},
{
- "id": 26385,
+ "id": 26854,
"properties": {
"east": "low",
"north": "low",
@@ -74209,7 +74293,7 @@
}
},
{
- "id": 26386,
+ "id": 26855,
"properties": {
"east": "low",
"north": "low",
@@ -74220,7 +74304,7 @@
}
},
{
- "id": 26387,
+ "id": 26856,
"properties": {
"east": "low",
"north": "low",
@@ -74231,7 +74315,7 @@
}
},
{
- "id": 26388,
+ "id": 26857,
"properties": {
"east": "low",
"north": "low",
@@ -74242,7 +74326,7 @@
}
},
{
- "id": 26389,
+ "id": 26858,
"properties": {
"east": "low",
"north": "low",
@@ -74253,7 +74337,7 @@
}
},
{
- "id": 26390,
+ "id": 26859,
"properties": {
"east": "low",
"north": "low",
@@ -74264,7 +74348,7 @@
}
},
{
- "id": 26391,
+ "id": 26860,
"properties": {
"east": "low",
"north": "low",
@@ -74275,7 +74359,7 @@
}
},
{
- "id": 26392,
+ "id": 26861,
"properties": {
"east": "low",
"north": "low",
@@ -74286,7 +74370,7 @@
}
},
{
- "id": 26393,
+ "id": 26862,
"properties": {
"east": "low",
"north": "low",
@@ -74297,7 +74381,7 @@
}
},
{
- "id": 26394,
+ "id": 26863,
"properties": {
"east": "low",
"north": "low",
@@ -74308,7 +74392,7 @@
}
},
{
- "id": 26395,
+ "id": 26864,
"properties": {
"east": "low",
"north": "low",
@@ -74319,7 +74403,7 @@
}
},
{
- "id": 26396,
+ "id": 26865,
"properties": {
"east": "low",
"north": "low",
@@ -74330,7 +74414,7 @@
}
},
{
- "id": 26397,
+ "id": 26866,
"properties": {
"east": "low",
"north": "low",
@@ -74341,7 +74425,7 @@
}
},
{
- "id": 26398,
+ "id": 26867,
"properties": {
"east": "low",
"north": "low",
@@ -74352,7 +74436,7 @@
}
},
{
- "id": 26399,
+ "id": 26868,
"properties": {
"east": "low",
"north": "low",
@@ -74363,7 +74447,7 @@
}
},
{
- "id": 26400,
+ "id": 26869,
"properties": {
"east": "low",
"north": "low",
@@ -74374,7 +74458,7 @@
}
},
{
- "id": 26401,
+ "id": 26870,
"properties": {
"east": "low",
"north": "low",
@@ -74385,7 +74469,7 @@
}
},
{
- "id": 26402,
+ "id": 26871,
"properties": {
"east": "low",
"north": "low",
@@ -74396,7 +74480,7 @@
}
},
{
- "id": 26403,
+ "id": 26872,
"properties": {
"east": "low",
"north": "low",
@@ -74407,7 +74491,7 @@
}
},
{
- "id": 26404,
+ "id": 26873,
"properties": {
"east": "low",
"north": "low",
@@ -74418,7 +74502,7 @@
}
},
{
- "id": 26405,
+ "id": 26874,
"properties": {
"east": "low",
"north": "low",
@@ -74429,7 +74513,7 @@
}
},
{
- "id": 26406,
+ "id": 26875,
"properties": {
"east": "low",
"north": "low",
@@ -74440,7 +74524,7 @@
}
},
{
- "id": 26407,
+ "id": 26876,
"properties": {
"east": "low",
"north": "tall",
@@ -74451,7 +74535,7 @@
}
},
{
- "id": 26408,
+ "id": 26877,
"properties": {
"east": "low",
"north": "tall",
@@ -74462,7 +74546,7 @@
}
},
{
- "id": 26409,
+ "id": 26878,
"properties": {
"east": "low",
"north": "tall",
@@ -74473,7 +74557,7 @@
}
},
{
- "id": 26410,
+ "id": 26879,
"properties": {
"east": "low",
"north": "tall",
@@ -74484,7 +74568,7 @@
}
},
{
- "id": 26411,
+ "id": 26880,
"properties": {
"east": "low",
"north": "tall",
@@ -74495,7 +74579,7 @@
}
},
{
- "id": 26412,
+ "id": 26881,
"properties": {
"east": "low",
"north": "tall",
@@ -74506,7 +74590,7 @@
}
},
{
- "id": 26413,
+ "id": 26882,
"properties": {
"east": "low",
"north": "tall",
@@ -74517,7 +74601,7 @@
}
},
{
- "id": 26414,
+ "id": 26883,
"properties": {
"east": "low",
"north": "tall",
@@ -74528,7 +74612,7 @@
}
},
{
- "id": 26415,
+ "id": 26884,
"properties": {
"east": "low",
"north": "tall",
@@ -74539,7 +74623,7 @@
}
},
{
- "id": 26416,
+ "id": 26885,
"properties": {
"east": "low",
"north": "tall",
@@ -74550,7 +74634,7 @@
}
},
{
- "id": 26417,
+ "id": 26886,
"properties": {
"east": "low",
"north": "tall",
@@ -74561,7 +74645,7 @@
}
},
{
- "id": 26418,
+ "id": 26887,
"properties": {
"east": "low",
"north": "tall",
@@ -74572,7 +74656,7 @@
}
},
{
- "id": 26419,
+ "id": 26888,
"properties": {
"east": "low",
"north": "tall",
@@ -74583,7 +74667,7 @@
}
},
{
- "id": 26420,
+ "id": 26889,
"properties": {
"east": "low",
"north": "tall",
@@ -74594,7 +74678,7 @@
}
},
{
- "id": 26421,
+ "id": 26890,
"properties": {
"east": "low",
"north": "tall",
@@ -74605,7 +74689,7 @@
}
},
{
- "id": 26422,
+ "id": 26891,
"properties": {
"east": "low",
"north": "tall",
@@ -74616,7 +74700,7 @@
}
},
{
- "id": 26423,
+ "id": 26892,
"properties": {
"east": "low",
"north": "tall",
@@ -74627,7 +74711,7 @@
}
},
{
- "id": 26424,
+ "id": 26893,
"properties": {
"east": "low",
"north": "tall",
@@ -74638,7 +74722,7 @@
}
},
{
- "id": 26425,
+ "id": 26894,
"properties": {
"east": "low",
"north": "tall",
@@ -74649,7 +74733,7 @@
}
},
{
- "id": 26426,
+ "id": 26895,
"properties": {
"east": "low",
"north": "tall",
@@ -74660,7 +74744,7 @@
}
},
{
- "id": 26427,
+ "id": 26896,
"properties": {
"east": "low",
"north": "tall",
@@ -74671,7 +74755,7 @@
}
},
{
- "id": 26428,
+ "id": 26897,
"properties": {
"east": "low",
"north": "tall",
@@ -74682,7 +74766,7 @@
}
},
{
- "id": 26429,
+ "id": 26898,
"properties": {
"east": "low",
"north": "tall",
@@ -74693,7 +74777,7 @@
}
},
{
- "id": 26430,
+ "id": 26899,
"properties": {
"east": "low",
"north": "tall",
@@ -74704,7 +74788,7 @@
}
},
{
- "id": 26431,
+ "id": 26900,
"properties": {
"east": "low",
"north": "tall",
@@ -74715,7 +74799,7 @@
}
},
{
- "id": 26432,
+ "id": 26901,
"properties": {
"east": "low",
"north": "tall",
@@ -74726,7 +74810,7 @@
}
},
{
- "id": 26433,
+ "id": 26902,
"properties": {
"east": "low",
"north": "tall",
@@ -74737,7 +74821,7 @@
}
},
{
- "id": 26434,
+ "id": 26903,
"properties": {
"east": "low",
"north": "tall",
@@ -74748,7 +74832,7 @@
}
},
{
- "id": 26435,
+ "id": 26904,
"properties": {
"east": "low",
"north": "tall",
@@ -74759,7 +74843,7 @@
}
},
{
- "id": 26436,
+ "id": 26905,
"properties": {
"east": "low",
"north": "tall",
@@ -74770,7 +74854,7 @@
}
},
{
- "id": 26437,
+ "id": 26906,
"properties": {
"east": "low",
"north": "tall",
@@ -74781,7 +74865,7 @@
}
},
{
- "id": 26438,
+ "id": 26907,
"properties": {
"east": "low",
"north": "tall",
@@ -74792,7 +74876,7 @@
}
},
{
- "id": 26439,
+ "id": 26908,
"properties": {
"east": "low",
"north": "tall",
@@ -74803,7 +74887,7 @@
}
},
{
- "id": 26440,
+ "id": 26909,
"properties": {
"east": "low",
"north": "tall",
@@ -74814,7 +74898,7 @@
}
},
{
- "id": 26441,
+ "id": 26910,
"properties": {
"east": "low",
"north": "tall",
@@ -74825,7 +74909,7 @@
}
},
{
- "id": 26442,
+ "id": 26911,
"properties": {
"east": "low",
"north": "tall",
@@ -74836,7 +74920,7 @@
}
},
{
- "id": 26443,
+ "id": 26912,
"properties": {
"east": "tall",
"north": "none",
@@ -74847,7 +74931,7 @@
}
},
{
- "id": 26444,
+ "id": 26913,
"properties": {
"east": "tall",
"north": "none",
@@ -74858,7 +74942,7 @@
}
},
{
- "id": 26445,
+ "id": 26914,
"properties": {
"east": "tall",
"north": "none",
@@ -74869,7 +74953,7 @@
}
},
{
- "id": 26446,
+ "id": 26915,
"properties": {
"east": "tall",
"north": "none",
@@ -74880,7 +74964,7 @@
}
},
{
- "id": 26447,
+ "id": 26916,
"properties": {
"east": "tall",
"north": "none",
@@ -74891,7 +74975,7 @@
}
},
{
- "id": 26448,
+ "id": 26917,
"properties": {
"east": "tall",
"north": "none",
@@ -74902,7 +74986,7 @@
}
},
{
- "id": 26449,
+ "id": 26918,
"properties": {
"east": "tall",
"north": "none",
@@ -74913,7 +74997,7 @@
}
},
{
- "id": 26450,
+ "id": 26919,
"properties": {
"east": "tall",
"north": "none",
@@ -74924,7 +75008,7 @@
}
},
{
- "id": 26451,
+ "id": 26920,
"properties": {
"east": "tall",
"north": "none",
@@ -74935,7 +75019,7 @@
}
},
{
- "id": 26452,
+ "id": 26921,
"properties": {
"east": "tall",
"north": "none",
@@ -74946,7 +75030,7 @@
}
},
{
- "id": 26453,
+ "id": 26922,
"properties": {
"east": "tall",
"north": "none",
@@ -74957,7 +75041,7 @@
}
},
{
- "id": 26454,
+ "id": 26923,
"properties": {
"east": "tall",
"north": "none",
@@ -74968,7 +75052,7 @@
}
},
{
- "id": 26455,
+ "id": 26924,
"properties": {
"east": "tall",
"north": "none",
@@ -74979,7 +75063,7 @@
}
},
{
- "id": 26456,
+ "id": 26925,
"properties": {
"east": "tall",
"north": "none",
@@ -74990,7 +75074,7 @@
}
},
{
- "id": 26457,
+ "id": 26926,
"properties": {
"east": "tall",
"north": "none",
@@ -75001,7 +75085,7 @@
}
},
{
- "id": 26458,
+ "id": 26927,
"properties": {
"east": "tall",
"north": "none",
@@ -75012,7 +75096,7 @@
}
},
{
- "id": 26459,
+ "id": 26928,
"properties": {
"east": "tall",
"north": "none",
@@ -75023,7 +75107,7 @@
}
},
{
- "id": 26460,
+ "id": 26929,
"properties": {
"east": "tall",
"north": "none",
@@ -75034,7 +75118,7 @@
}
},
{
- "id": 26461,
+ "id": 26930,
"properties": {
"east": "tall",
"north": "none",
@@ -75045,7 +75129,7 @@
}
},
{
- "id": 26462,
+ "id": 26931,
"properties": {
"east": "tall",
"north": "none",
@@ -75056,7 +75140,7 @@
}
},
{
- "id": 26463,
+ "id": 26932,
"properties": {
"east": "tall",
"north": "none",
@@ -75067,7 +75151,7 @@
}
},
{
- "id": 26464,
+ "id": 26933,
"properties": {
"east": "tall",
"north": "none",
@@ -75078,7 +75162,7 @@
}
},
{
- "id": 26465,
+ "id": 26934,
"properties": {
"east": "tall",
"north": "none",
@@ -75089,7 +75173,7 @@
}
},
{
- "id": 26466,
+ "id": 26935,
"properties": {
"east": "tall",
"north": "none",
@@ -75100,7 +75184,7 @@
}
},
{
- "id": 26467,
+ "id": 26936,
"properties": {
"east": "tall",
"north": "none",
@@ -75111,7 +75195,7 @@
}
},
{
- "id": 26468,
+ "id": 26937,
"properties": {
"east": "tall",
"north": "none",
@@ -75122,7 +75206,7 @@
}
},
{
- "id": 26469,
+ "id": 26938,
"properties": {
"east": "tall",
"north": "none",
@@ -75133,7 +75217,7 @@
}
},
{
- "id": 26470,
+ "id": 26939,
"properties": {
"east": "tall",
"north": "none",
@@ -75144,7 +75228,7 @@
}
},
{
- "id": 26471,
+ "id": 26940,
"properties": {
"east": "tall",
"north": "none",
@@ -75155,7 +75239,7 @@
}
},
{
- "id": 26472,
+ "id": 26941,
"properties": {
"east": "tall",
"north": "none",
@@ -75166,7 +75250,7 @@
}
},
{
- "id": 26473,
+ "id": 26942,
"properties": {
"east": "tall",
"north": "none",
@@ -75177,7 +75261,7 @@
}
},
{
- "id": 26474,
+ "id": 26943,
"properties": {
"east": "tall",
"north": "none",
@@ -75188,7 +75272,7 @@
}
},
{
- "id": 26475,
+ "id": 26944,
"properties": {
"east": "tall",
"north": "none",
@@ -75199,7 +75283,7 @@
}
},
{
- "id": 26476,
+ "id": 26945,
"properties": {
"east": "tall",
"north": "none",
@@ -75210,7 +75294,7 @@
}
},
{
- "id": 26477,
+ "id": 26946,
"properties": {
"east": "tall",
"north": "none",
@@ -75221,7 +75305,7 @@
}
},
{
- "id": 26478,
+ "id": 26947,
"properties": {
"east": "tall",
"north": "none",
@@ -75232,7 +75316,7 @@
}
},
{
- "id": 26479,
+ "id": 26948,
"properties": {
"east": "tall",
"north": "low",
@@ -75243,7 +75327,7 @@
}
},
{
- "id": 26480,
+ "id": 26949,
"properties": {
"east": "tall",
"north": "low",
@@ -75254,7 +75338,7 @@
}
},
{
- "id": 26481,
+ "id": 26950,
"properties": {
"east": "tall",
"north": "low",
@@ -75265,7 +75349,7 @@
}
},
{
- "id": 26482,
+ "id": 26951,
"properties": {
"east": "tall",
"north": "low",
@@ -75276,7 +75360,7 @@
}
},
{
- "id": 26483,
+ "id": 26952,
"properties": {
"east": "tall",
"north": "low",
@@ -75287,7 +75371,7 @@
}
},
{
- "id": 26484,
+ "id": 26953,
"properties": {
"east": "tall",
"north": "low",
@@ -75298,7 +75382,7 @@
}
},
{
- "id": 26485,
+ "id": 26954,
"properties": {
"east": "tall",
"north": "low",
@@ -75309,7 +75393,7 @@
}
},
{
- "id": 26486,
+ "id": 26955,
"properties": {
"east": "tall",
"north": "low",
@@ -75320,7 +75404,7 @@
}
},
{
- "id": 26487,
+ "id": 26956,
"properties": {
"east": "tall",
"north": "low",
@@ -75331,7 +75415,7 @@
}
},
{
- "id": 26488,
+ "id": 26957,
"properties": {
"east": "tall",
"north": "low",
@@ -75342,7 +75426,7 @@
}
},
{
- "id": 26489,
+ "id": 26958,
"properties": {
"east": "tall",
"north": "low",
@@ -75353,7 +75437,7 @@
}
},
{
- "id": 26490,
+ "id": 26959,
"properties": {
"east": "tall",
"north": "low",
@@ -75364,7 +75448,7 @@
}
},
{
- "id": 26491,
+ "id": 26960,
"properties": {
"east": "tall",
"north": "low",
@@ -75375,7 +75459,7 @@
}
},
{
- "id": 26492,
+ "id": 26961,
"properties": {
"east": "tall",
"north": "low",
@@ -75386,7 +75470,7 @@
}
},
{
- "id": 26493,
+ "id": 26962,
"properties": {
"east": "tall",
"north": "low",
@@ -75397,7 +75481,7 @@
}
},
{
- "id": 26494,
+ "id": 26963,
"properties": {
"east": "tall",
"north": "low",
@@ -75408,7 +75492,7 @@
}
},
{
- "id": 26495,
+ "id": 26964,
"properties": {
"east": "tall",
"north": "low",
@@ -75419,7 +75503,7 @@
}
},
{
- "id": 26496,
+ "id": 26965,
"properties": {
"east": "tall",
"north": "low",
@@ -75430,7 +75514,7 @@
}
},
{
- "id": 26497,
+ "id": 26966,
"properties": {
"east": "tall",
"north": "low",
@@ -75441,7 +75525,7 @@
}
},
{
- "id": 26498,
+ "id": 26967,
"properties": {
"east": "tall",
"north": "low",
@@ -75452,7 +75536,7 @@
}
},
{
- "id": 26499,
+ "id": 26968,
"properties": {
"east": "tall",
"north": "low",
@@ -75463,7 +75547,7 @@
}
},
{
- "id": 26500,
+ "id": 26969,
"properties": {
"east": "tall",
"north": "low",
@@ -75474,7 +75558,7 @@
}
},
{
- "id": 26501,
+ "id": 26970,
"properties": {
"east": "tall",
"north": "low",
@@ -75485,7 +75569,7 @@
}
},
{
- "id": 26502,
+ "id": 26971,
"properties": {
"east": "tall",
"north": "low",
@@ -75496,7 +75580,7 @@
}
},
{
- "id": 26503,
+ "id": 26972,
"properties": {
"east": "tall",
"north": "low",
@@ -75507,7 +75591,7 @@
}
},
{
- "id": 26504,
+ "id": 26973,
"properties": {
"east": "tall",
"north": "low",
@@ -75518,7 +75602,7 @@
}
},
{
- "id": 26505,
+ "id": 26974,
"properties": {
"east": "tall",
"north": "low",
@@ -75529,7 +75613,7 @@
}
},
{
- "id": 26506,
+ "id": 26975,
"properties": {
"east": "tall",
"north": "low",
@@ -75540,7 +75624,7 @@
}
},
{
- "id": 26507,
+ "id": 26976,
"properties": {
"east": "tall",
"north": "low",
@@ -75551,7 +75635,7 @@
}
},
{
- "id": 26508,
+ "id": 26977,
"properties": {
"east": "tall",
"north": "low",
@@ -75562,7 +75646,7 @@
}
},
{
- "id": 26509,
+ "id": 26978,
"properties": {
"east": "tall",
"north": "low",
@@ -75573,7 +75657,7 @@
}
},
{
- "id": 26510,
+ "id": 26979,
"properties": {
"east": "tall",
"north": "low",
@@ -75584,7 +75668,7 @@
}
},
{
- "id": 26511,
+ "id": 26980,
"properties": {
"east": "tall",
"north": "low",
@@ -75595,7 +75679,7 @@
}
},
{
- "id": 26512,
+ "id": 26981,
"properties": {
"east": "tall",
"north": "low",
@@ -75606,7 +75690,7 @@
}
},
{
- "id": 26513,
+ "id": 26982,
"properties": {
"east": "tall",
"north": "low",
@@ -75617,7 +75701,7 @@
}
},
{
- "id": 26514,
+ "id": 26983,
"properties": {
"east": "tall",
"north": "low",
@@ -75628,7 +75712,7 @@
}
},
{
- "id": 26515,
+ "id": 26984,
"properties": {
"east": "tall",
"north": "tall",
@@ -75639,7 +75723,7 @@
}
},
{
- "id": 26516,
+ "id": 26985,
"properties": {
"east": "tall",
"north": "tall",
@@ -75650,7 +75734,7 @@
}
},
{
- "id": 26517,
+ "id": 26986,
"properties": {
"east": "tall",
"north": "tall",
@@ -75661,7 +75745,7 @@
}
},
{
- "id": 26518,
+ "id": 26987,
"properties": {
"east": "tall",
"north": "tall",
@@ -75672,7 +75756,7 @@
}
},
{
- "id": 26519,
+ "id": 26988,
"properties": {
"east": "tall",
"north": "tall",
@@ -75683,7 +75767,7 @@
}
},
{
- "id": 26520,
+ "id": 26989,
"properties": {
"east": "tall",
"north": "tall",
@@ -75694,7 +75778,7 @@
}
},
{
- "id": 26521,
+ "id": 26990,
"properties": {
"east": "tall",
"north": "tall",
@@ -75705,7 +75789,7 @@
}
},
{
- "id": 26522,
+ "id": 26991,
"properties": {
"east": "tall",
"north": "tall",
@@ -75716,7 +75800,7 @@
}
},
{
- "id": 26523,
+ "id": 26992,
"properties": {
"east": "tall",
"north": "tall",
@@ -75727,7 +75811,7 @@
}
},
{
- "id": 26524,
+ "id": 26993,
"properties": {
"east": "tall",
"north": "tall",
@@ -75738,7 +75822,7 @@
}
},
{
- "id": 26525,
+ "id": 26994,
"properties": {
"east": "tall",
"north": "tall",
@@ -75749,7 +75833,7 @@
}
},
{
- "id": 26526,
+ "id": 26995,
"properties": {
"east": "tall",
"north": "tall",
@@ -75760,7 +75844,7 @@
}
},
{
- "id": 26527,
+ "id": 26996,
"properties": {
"east": "tall",
"north": "tall",
@@ -75771,7 +75855,7 @@
}
},
{
- "id": 26528,
+ "id": 26997,
"properties": {
"east": "tall",
"north": "tall",
@@ -75782,7 +75866,7 @@
}
},
{
- "id": 26529,
+ "id": 26998,
"properties": {
"east": "tall",
"north": "tall",
@@ -75793,7 +75877,7 @@
}
},
{
- "id": 26530,
+ "id": 26999,
"properties": {
"east": "tall",
"north": "tall",
@@ -75804,7 +75888,7 @@
}
},
{
- "id": 26531,
+ "id": 27000,
"properties": {
"east": "tall",
"north": "tall",
@@ -75815,7 +75899,7 @@
}
},
{
- "id": 26532,
+ "id": 27001,
"properties": {
"east": "tall",
"north": "tall",
@@ -75826,7 +75910,7 @@
}
},
{
- "id": 26533,
+ "id": 27002,
"properties": {
"east": "tall",
"north": "tall",
@@ -75837,7 +75921,7 @@
}
},
{
- "id": 26534,
+ "id": 27003,
"properties": {
"east": "tall",
"north": "tall",
@@ -75848,7 +75932,7 @@
}
},
{
- "id": 26535,
+ "id": 27004,
"properties": {
"east": "tall",
"north": "tall",
@@ -75859,7 +75943,7 @@
}
},
{
- "id": 26536,
+ "id": 27005,
"properties": {
"east": "tall",
"north": "tall",
@@ -75870,7 +75954,7 @@
}
},
{
- "id": 26537,
+ "id": 27006,
"properties": {
"east": "tall",
"north": "tall",
@@ -75881,7 +75965,7 @@
}
},
{
- "id": 26538,
+ "id": 27007,
"properties": {
"east": "tall",
"north": "tall",
@@ -75892,7 +75976,7 @@
}
},
{
- "id": 26539,
+ "id": 27008,
"properties": {
"east": "tall",
"north": "tall",
@@ -75903,7 +75987,7 @@
}
},
{
- "id": 26540,
+ "id": 27009,
"properties": {
"east": "tall",
"north": "tall",
@@ -75914,7 +75998,7 @@
}
},
{
- "id": 26541,
+ "id": 27010,
"properties": {
"east": "tall",
"north": "tall",
@@ -75925,7 +76009,7 @@
}
},
{
- "id": 26542,
+ "id": 27011,
"properties": {
"east": "tall",
"north": "tall",
@@ -75936,7 +76020,7 @@
}
},
{
- "id": 26543,
+ "id": 27012,
"properties": {
"east": "tall",
"north": "tall",
@@ -75947,7 +76031,7 @@
}
},
{
- "id": 26544,
+ "id": 27013,
"properties": {
"east": "tall",
"north": "tall",
@@ -75958,7 +76042,7 @@
}
},
{
- "id": 26545,
+ "id": 27014,
"properties": {
"east": "tall",
"north": "tall",
@@ -75969,7 +76053,7 @@
}
},
{
- "id": 26546,
+ "id": 27015,
"properties": {
"east": "tall",
"north": "tall",
@@ -75980,7 +76064,7 @@
}
},
{
- "id": 26547,
+ "id": 27016,
"properties": {
"east": "tall",
"north": "tall",
@@ -75991,7 +76075,7 @@
}
},
{
- "id": 26548,
+ "id": 27017,
"properties": {
"east": "tall",
"north": "tall",
@@ -76002,7 +76086,7 @@
}
},
{
- "id": 26549,
+ "id": 27018,
"properties": {
"east": "tall",
"north": "tall",
@@ -76013,7 +76097,7 @@
}
},
{
- "id": 26550,
+ "id": 27019,
"properties": {
"east": "tall",
"north": "tall",
@@ -76033,7 +76117,7 @@
"states": [
{
"default": true,
- "id": 26140
+ "id": 26609
}
]
},
@@ -76050,7 +76134,7 @@
"states": [
{
"default": true,
- "id": 128
+ "id": 134
}
]
},
@@ -76063,7 +76147,7 @@
"states": [
{
"default": true,
- "id": 22943
+ "id": 23412
}
]
},
@@ -76080,7 +76164,7 @@
"states": [
{
"default": true,
- "id": 4275
+ "id": 4327
}
]
},
@@ -76097,7 +76181,7 @@
"states": [
{
"default": true,
- "id": 7512
+ "id": 7742
}
]
},
@@ -76110,7 +76194,7 @@
"states": [
{
"default": true,
- "id": 124
+ "id": 130
}
]
},
@@ -76123,7 +76207,7 @@
"states": [
{
"default": true,
- "id": 126
+ "id": 132
}
]
},
@@ -76140,7 +76224,7 @@
"states": [
{
"default": true,
- "id": 521
+ "id": 564
}
]
},
@@ -76157,14 +76241,14 @@
},
"states": [
{
- "id": 5736,
+ "id": 5902,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 5737,
+ "id": 5903,
"properties": {
"lit": "false"
}
@@ -76189,21 +76273,21 @@
},
"states": [
{
- "id": 25810,
+ "id": 26279,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 25811,
+ "id": 26280,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 25812,
+ "id": 26281,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -76211,21 +76295,21 @@
},
{
"default": true,
- "id": 25813,
+ "id": 26282,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 25814,
+ "id": 26283,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 25815,
+ "id": 26284,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -76266,7 +76350,7 @@
},
"states": [
{
- "id": 25730,
+ "id": 26199,
"properties": {
"facing": "north",
"half": "top",
@@ -76275,7 +76359,7 @@
}
},
{
- "id": 25731,
+ "id": 26200,
"properties": {
"facing": "north",
"half": "top",
@@ -76284,7 +76368,7 @@
}
},
{
- "id": 25732,
+ "id": 26201,
"properties": {
"facing": "north",
"half": "top",
@@ -76293,7 +76377,7 @@
}
},
{
- "id": 25733,
+ "id": 26202,
"properties": {
"facing": "north",
"half": "top",
@@ -76302,7 +76386,7 @@
}
},
{
- "id": 25734,
+ "id": 26203,
"properties": {
"facing": "north",
"half": "top",
@@ -76311,7 +76395,7 @@
}
},
{
- "id": 25735,
+ "id": 26204,
"properties": {
"facing": "north",
"half": "top",
@@ -76320,7 +76404,7 @@
}
},
{
- "id": 25736,
+ "id": 26205,
"properties": {
"facing": "north",
"half": "top",
@@ -76329,7 +76413,7 @@
}
},
{
- "id": 25737,
+ "id": 26206,
"properties": {
"facing": "north",
"half": "top",
@@ -76338,7 +76422,7 @@
}
},
{
- "id": 25738,
+ "id": 26207,
"properties": {
"facing": "north",
"half": "top",
@@ -76347,7 +76431,7 @@
}
},
{
- "id": 25739,
+ "id": 26208,
"properties": {
"facing": "north",
"half": "top",
@@ -76356,7 +76440,7 @@
}
},
{
- "id": 25740,
+ "id": 26209,
"properties": {
"facing": "north",
"half": "bottom",
@@ -76366,7 +76450,7 @@
},
{
"default": true,
- "id": 25741,
+ "id": 26210,
"properties": {
"facing": "north",
"half": "bottom",
@@ -76375,7 +76459,7 @@
}
},
{
- "id": 25742,
+ "id": 26211,
"properties": {
"facing": "north",
"half": "bottom",
@@ -76384,7 +76468,7 @@
}
},
{
- "id": 25743,
+ "id": 26212,
"properties": {
"facing": "north",
"half": "bottom",
@@ -76393,7 +76477,7 @@
}
},
{
- "id": 25744,
+ "id": 26213,
"properties": {
"facing": "north",
"half": "bottom",
@@ -76402,7 +76486,7 @@
}
},
{
- "id": 25745,
+ "id": 26214,
"properties": {
"facing": "north",
"half": "bottom",
@@ -76411,7 +76495,7 @@
}
},
{
- "id": 25746,
+ "id": 26215,
"properties": {
"facing": "north",
"half": "bottom",
@@ -76420,7 +76504,7 @@
}
},
{
- "id": 25747,
+ "id": 26216,
"properties": {
"facing": "north",
"half": "bottom",
@@ -76429,7 +76513,7 @@
}
},
{
- "id": 25748,
+ "id": 26217,
"properties": {
"facing": "north",
"half": "bottom",
@@ -76438,7 +76522,7 @@
}
},
{
- "id": 25749,
+ "id": 26218,
"properties": {
"facing": "north",
"half": "bottom",
@@ -76447,7 +76531,7 @@
}
},
{
- "id": 25750,
+ "id": 26219,
"properties": {
"facing": "south",
"half": "top",
@@ -76456,7 +76540,7 @@
}
},
{
- "id": 25751,
+ "id": 26220,
"properties": {
"facing": "south",
"half": "top",
@@ -76465,7 +76549,7 @@
}
},
{
- "id": 25752,
+ "id": 26221,
"properties": {
"facing": "south",
"half": "top",
@@ -76474,7 +76558,7 @@
}
},
{
- "id": 25753,
+ "id": 26222,
"properties": {
"facing": "south",
"half": "top",
@@ -76483,7 +76567,7 @@
}
},
{
- "id": 25754,
+ "id": 26223,
"properties": {
"facing": "south",
"half": "top",
@@ -76492,7 +76576,7 @@
}
},
{
- "id": 25755,
+ "id": 26224,
"properties": {
"facing": "south",
"half": "top",
@@ -76501,7 +76585,7 @@
}
},
{
- "id": 25756,
+ "id": 26225,
"properties": {
"facing": "south",
"half": "top",
@@ -76510,7 +76594,7 @@
}
},
{
- "id": 25757,
+ "id": 26226,
"properties": {
"facing": "south",
"half": "top",
@@ -76519,7 +76603,7 @@
}
},
{
- "id": 25758,
+ "id": 26227,
"properties": {
"facing": "south",
"half": "top",
@@ -76528,7 +76612,7 @@
}
},
{
- "id": 25759,
+ "id": 26228,
"properties": {
"facing": "south",
"half": "top",
@@ -76537,7 +76621,7 @@
}
},
{
- "id": 25760,
+ "id": 26229,
"properties": {
"facing": "south",
"half": "bottom",
@@ -76546,7 +76630,7 @@
}
},
{
- "id": 25761,
+ "id": 26230,
"properties": {
"facing": "south",
"half": "bottom",
@@ -76555,7 +76639,7 @@
}
},
{
- "id": 25762,
+ "id": 26231,
"properties": {
"facing": "south",
"half": "bottom",
@@ -76564,7 +76648,7 @@
}
},
{
- "id": 25763,
+ "id": 26232,
"properties": {
"facing": "south",
"half": "bottom",
@@ -76573,7 +76657,7 @@
}
},
{
- "id": 25764,
+ "id": 26233,
"properties": {
"facing": "south",
"half": "bottom",
@@ -76582,7 +76666,7 @@
}
},
{
- "id": 25765,
+ "id": 26234,
"properties": {
"facing": "south",
"half": "bottom",
@@ -76591,7 +76675,7 @@
}
},
{
- "id": 25766,
+ "id": 26235,
"properties": {
"facing": "south",
"half": "bottom",
@@ -76600,7 +76684,7 @@
}
},
{
- "id": 25767,
+ "id": 26236,
"properties": {
"facing": "south",
"half": "bottom",
@@ -76609,7 +76693,7 @@
}
},
{
- "id": 25768,
+ "id": 26237,
"properties": {
"facing": "south",
"half": "bottom",
@@ -76618,7 +76702,7 @@
}
},
{
- "id": 25769,
+ "id": 26238,
"properties": {
"facing": "south",
"half": "bottom",
@@ -76627,7 +76711,7 @@
}
},
{
- "id": 25770,
+ "id": 26239,
"properties": {
"facing": "west",
"half": "top",
@@ -76636,7 +76720,7 @@
}
},
{
- "id": 25771,
+ "id": 26240,
"properties": {
"facing": "west",
"half": "top",
@@ -76645,7 +76729,7 @@
}
},
{
- "id": 25772,
+ "id": 26241,
"properties": {
"facing": "west",
"half": "top",
@@ -76654,7 +76738,7 @@
}
},
{
- "id": 25773,
+ "id": 26242,
"properties": {
"facing": "west",
"half": "top",
@@ -76663,7 +76747,7 @@
}
},
{
- "id": 25774,
+ "id": 26243,
"properties": {
"facing": "west",
"half": "top",
@@ -76672,7 +76756,7 @@
}
},
{
- "id": 25775,
+ "id": 26244,
"properties": {
"facing": "west",
"half": "top",
@@ -76681,7 +76765,7 @@
}
},
{
- "id": 25776,
+ "id": 26245,
"properties": {
"facing": "west",
"half": "top",
@@ -76690,7 +76774,7 @@
}
},
{
- "id": 25777,
+ "id": 26246,
"properties": {
"facing": "west",
"half": "top",
@@ -76699,7 +76783,7 @@
}
},
{
- "id": 25778,
+ "id": 26247,
"properties": {
"facing": "west",
"half": "top",
@@ -76708,7 +76792,7 @@
}
},
{
- "id": 25779,
+ "id": 26248,
"properties": {
"facing": "west",
"half": "top",
@@ -76717,7 +76801,7 @@
}
},
{
- "id": 25780,
+ "id": 26249,
"properties": {
"facing": "west",
"half": "bottom",
@@ -76726,7 +76810,7 @@
}
},
{
- "id": 25781,
+ "id": 26250,
"properties": {
"facing": "west",
"half": "bottom",
@@ -76735,7 +76819,7 @@
}
},
{
- "id": 25782,
+ "id": 26251,
"properties": {
"facing": "west",
"half": "bottom",
@@ -76744,7 +76828,7 @@
}
},
{
- "id": 25783,
+ "id": 26252,
"properties": {
"facing": "west",
"half": "bottom",
@@ -76753,7 +76837,7 @@
}
},
{
- "id": 25784,
+ "id": 26253,
"properties": {
"facing": "west",
"half": "bottom",
@@ -76762,7 +76846,7 @@
}
},
{
- "id": 25785,
+ "id": 26254,
"properties": {
"facing": "west",
"half": "bottom",
@@ -76771,7 +76855,7 @@
}
},
{
- "id": 25786,
+ "id": 26255,
"properties": {
"facing": "west",
"half": "bottom",
@@ -76780,7 +76864,7 @@
}
},
{
- "id": 25787,
+ "id": 26256,
"properties": {
"facing": "west",
"half": "bottom",
@@ -76789,7 +76873,7 @@
}
},
{
- "id": 25788,
+ "id": 26257,
"properties": {
"facing": "west",
"half": "bottom",
@@ -76798,7 +76882,7 @@
}
},
{
- "id": 25789,
+ "id": 26258,
"properties": {
"facing": "west",
"half": "bottom",
@@ -76807,7 +76891,7 @@
}
},
{
- "id": 25790,
+ "id": 26259,
"properties": {
"facing": "east",
"half": "top",
@@ -76816,7 +76900,7 @@
}
},
{
- "id": 25791,
+ "id": 26260,
"properties": {
"facing": "east",
"half": "top",
@@ -76825,7 +76909,7 @@
}
},
{
- "id": 25792,
+ "id": 26261,
"properties": {
"facing": "east",
"half": "top",
@@ -76834,7 +76918,7 @@
}
},
{
- "id": 25793,
+ "id": 26262,
"properties": {
"facing": "east",
"half": "top",
@@ -76843,7 +76927,7 @@
}
},
{
- "id": 25794,
+ "id": 26263,
"properties": {
"facing": "east",
"half": "top",
@@ -76852,7 +76936,7 @@
}
},
{
- "id": 25795,
+ "id": 26264,
"properties": {
"facing": "east",
"half": "top",
@@ -76861,7 +76945,7 @@
}
},
{
- "id": 25796,
+ "id": 26265,
"properties": {
"facing": "east",
"half": "top",
@@ -76870,7 +76954,7 @@
}
},
{
- "id": 25797,
+ "id": 26266,
"properties": {
"facing": "east",
"half": "top",
@@ -76879,7 +76963,7 @@
}
},
{
- "id": 25798,
+ "id": 26267,
"properties": {
"facing": "east",
"half": "top",
@@ -76888,7 +76972,7 @@
}
},
{
- "id": 25799,
+ "id": 26268,
"properties": {
"facing": "east",
"half": "top",
@@ -76897,7 +76981,7 @@
}
},
{
- "id": 25800,
+ "id": 26269,
"properties": {
"facing": "east",
"half": "bottom",
@@ -76906,7 +76990,7 @@
}
},
{
- "id": 25801,
+ "id": 26270,
"properties": {
"facing": "east",
"half": "bottom",
@@ -76915,7 +76999,7 @@
}
},
{
- "id": 25802,
+ "id": 26271,
"properties": {
"facing": "east",
"half": "bottom",
@@ -76924,7 +77008,7 @@
}
},
{
- "id": 25803,
+ "id": 26272,
"properties": {
"facing": "east",
"half": "bottom",
@@ -76933,7 +77017,7 @@
}
},
{
- "id": 25804,
+ "id": 26273,
"properties": {
"facing": "east",
"half": "bottom",
@@ -76942,7 +77026,7 @@
}
},
{
- "id": 25805,
+ "id": 26274,
"properties": {
"facing": "east",
"half": "bottom",
@@ -76951,7 +77035,7 @@
}
},
{
- "id": 25806,
+ "id": 26275,
"properties": {
"facing": "east",
"half": "bottom",
@@ -76960,7 +77044,7 @@
}
},
{
- "id": 25807,
+ "id": 26276,
"properties": {
"facing": "east",
"half": "bottom",
@@ -76969,7 +77053,7 @@
}
},
{
- "id": 25808,
+ "id": 26277,
"properties": {
"facing": "east",
"half": "bottom",
@@ -76978,7 +77062,7 @@
}
},
{
- "id": 25809,
+ "id": 26278,
"properties": {
"facing": "east",
"half": "bottom",
@@ -77025,7 +77109,7 @@
},
"states": [
{
- "id": 25816,
+ "id": 26285,
"properties": {
"east": "none",
"north": "none",
@@ -77036,7 +77120,7 @@
}
},
{
- "id": 25817,
+ "id": 26286,
"properties": {
"east": "none",
"north": "none",
@@ -77047,7 +77131,7 @@
}
},
{
- "id": 25818,
+ "id": 26287,
"properties": {
"east": "none",
"north": "none",
@@ -77059,7 +77143,7 @@
},
{
"default": true,
- "id": 25819,
+ "id": 26288,
"properties": {
"east": "none",
"north": "none",
@@ -77070,7 +77154,7 @@
}
},
{
- "id": 25820,
+ "id": 26289,
"properties": {
"east": "none",
"north": "none",
@@ -77081,7 +77165,7 @@
}
},
{
- "id": 25821,
+ "id": 26290,
"properties": {
"east": "none",
"north": "none",
@@ -77092,7 +77176,7 @@
}
},
{
- "id": 25822,
+ "id": 26291,
"properties": {
"east": "none",
"north": "none",
@@ -77103,7 +77187,7 @@
}
},
{
- "id": 25823,
+ "id": 26292,
"properties": {
"east": "none",
"north": "none",
@@ -77114,7 +77198,7 @@
}
},
{
- "id": 25824,
+ "id": 26293,
"properties": {
"east": "none",
"north": "none",
@@ -77125,7 +77209,7 @@
}
},
{
- "id": 25825,
+ "id": 26294,
"properties": {
"east": "none",
"north": "none",
@@ -77136,7 +77220,7 @@
}
},
{
- "id": 25826,
+ "id": 26295,
"properties": {
"east": "none",
"north": "none",
@@ -77147,7 +77231,7 @@
}
},
{
- "id": 25827,
+ "id": 26296,
"properties": {
"east": "none",
"north": "none",
@@ -77158,7 +77242,7 @@
}
},
{
- "id": 25828,
+ "id": 26297,
"properties": {
"east": "none",
"north": "none",
@@ -77169,7 +77253,7 @@
}
},
{
- "id": 25829,
+ "id": 26298,
"properties": {
"east": "none",
"north": "none",
@@ -77180,7 +77264,7 @@
}
},
{
- "id": 25830,
+ "id": 26299,
"properties": {
"east": "none",
"north": "none",
@@ -77191,7 +77275,7 @@
}
},
{
- "id": 25831,
+ "id": 26300,
"properties": {
"east": "none",
"north": "none",
@@ -77202,7 +77286,7 @@
}
},
{
- "id": 25832,
+ "id": 26301,
"properties": {
"east": "none",
"north": "none",
@@ -77213,7 +77297,7 @@
}
},
{
- "id": 25833,
+ "id": 26302,
"properties": {
"east": "none",
"north": "none",
@@ -77224,7 +77308,7 @@
}
},
{
- "id": 25834,
+ "id": 26303,
"properties": {
"east": "none",
"north": "none",
@@ -77235,7 +77319,7 @@
}
},
{
- "id": 25835,
+ "id": 26304,
"properties": {
"east": "none",
"north": "none",
@@ -77246,7 +77330,7 @@
}
},
{
- "id": 25836,
+ "id": 26305,
"properties": {
"east": "none",
"north": "none",
@@ -77257,7 +77341,7 @@
}
},
{
- "id": 25837,
+ "id": 26306,
"properties": {
"east": "none",
"north": "none",
@@ -77268,7 +77352,7 @@
}
},
{
- "id": 25838,
+ "id": 26307,
"properties": {
"east": "none",
"north": "none",
@@ -77279,7 +77363,7 @@
}
},
{
- "id": 25839,
+ "id": 26308,
"properties": {
"east": "none",
"north": "none",
@@ -77290,7 +77374,7 @@
}
},
{
- "id": 25840,
+ "id": 26309,
"properties": {
"east": "none",
"north": "none",
@@ -77301,7 +77385,7 @@
}
},
{
- "id": 25841,
+ "id": 26310,
"properties": {
"east": "none",
"north": "none",
@@ -77312,7 +77396,7 @@
}
},
{
- "id": 25842,
+ "id": 26311,
"properties": {
"east": "none",
"north": "none",
@@ -77323,7 +77407,7 @@
}
},
{
- "id": 25843,
+ "id": 26312,
"properties": {
"east": "none",
"north": "none",
@@ -77334,7 +77418,7 @@
}
},
{
- "id": 25844,
+ "id": 26313,
"properties": {
"east": "none",
"north": "none",
@@ -77345,7 +77429,7 @@
}
},
{
- "id": 25845,
+ "id": 26314,
"properties": {
"east": "none",
"north": "none",
@@ -77356,7 +77440,7 @@
}
},
{
- "id": 25846,
+ "id": 26315,
"properties": {
"east": "none",
"north": "none",
@@ -77367,7 +77451,7 @@
}
},
{
- "id": 25847,
+ "id": 26316,
"properties": {
"east": "none",
"north": "none",
@@ -77378,7 +77462,7 @@
}
},
{
- "id": 25848,
+ "id": 26317,
"properties": {
"east": "none",
"north": "none",
@@ -77389,7 +77473,7 @@
}
},
{
- "id": 25849,
+ "id": 26318,
"properties": {
"east": "none",
"north": "none",
@@ -77400,7 +77484,7 @@
}
},
{
- "id": 25850,
+ "id": 26319,
"properties": {
"east": "none",
"north": "none",
@@ -77411,7 +77495,7 @@
}
},
{
- "id": 25851,
+ "id": 26320,
"properties": {
"east": "none",
"north": "none",
@@ -77422,7 +77506,7 @@
}
},
{
- "id": 25852,
+ "id": 26321,
"properties": {
"east": "none",
"north": "low",
@@ -77433,7 +77517,7 @@
}
},
{
- "id": 25853,
+ "id": 26322,
"properties": {
"east": "none",
"north": "low",
@@ -77444,7 +77528,7 @@
}
},
{
- "id": 25854,
+ "id": 26323,
"properties": {
"east": "none",
"north": "low",
@@ -77455,7 +77539,7 @@
}
},
{
- "id": 25855,
+ "id": 26324,
"properties": {
"east": "none",
"north": "low",
@@ -77466,7 +77550,7 @@
}
},
{
- "id": 25856,
+ "id": 26325,
"properties": {
"east": "none",
"north": "low",
@@ -77477,7 +77561,7 @@
}
},
{
- "id": 25857,
+ "id": 26326,
"properties": {
"east": "none",
"north": "low",
@@ -77488,7 +77572,7 @@
}
},
{
- "id": 25858,
+ "id": 26327,
"properties": {
"east": "none",
"north": "low",
@@ -77499,7 +77583,7 @@
}
},
{
- "id": 25859,
+ "id": 26328,
"properties": {
"east": "none",
"north": "low",
@@ -77510,7 +77594,7 @@
}
},
{
- "id": 25860,
+ "id": 26329,
"properties": {
"east": "none",
"north": "low",
@@ -77521,7 +77605,7 @@
}
},
{
- "id": 25861,
+ "id": 26330,
"properties": {
"east": "none",
"north": "low",
@@ -77532,7 +77616,7 @@
}
},
{
- "id": 25862,
+ "id": 26331,
"properties": {
"east": "none",
"north": "low",
@@ -77543,7 +77627,7 @@
}
},
{
- "id": 25863,
+ "id": 26332,
"properties": {
"east": "none",
"north": "low",
@@ -77554,7 +77638,7 @@
}
},
{
- "id": 25864,
+ "id": 26333,
"properties": {
"east": "none",
"north": "low",
@@ -77565,7 +77649,7 @@
}
},
{
- "id": 25865,
+ "id": 26334,
"properties": {
"east": "none",
"north": "low",
@@ -77576,7 +77660,7 @@
}
},
{
- "id": 25866,
+ "id": 26335,
"properties": {
"east": "none",
"north": "low",
@@ -77587,7 +77671,7 @@
}
},
{
- "id": 25867,
+ "id": 26336,
"properties": {
"east": "none",
"north": "low",
@@ -77598,7 +77682,7 @@
}
},
{
- "id": 25868,
+ "id": 26337,
"properties": {
"east": "none",
"north": "low",
@@ -77609,7 +77693,7 @@
}
},
{
- "id": 25869,
+ "id": 26338,
"properties": {
"east": "none",
"north": "low",
@@ -77620,7 +77704,7 @@
}
},
{
- "id": 25870,
+ "id": 26339,
"properties": {
"east": "none",
"north": "low",
@@ -77631,7 +77715,7 @@
}
},
{
- "id": 25871,
+ "id": 26340,
"properties": {
"east": "none",
"north": "low",
@@ -77642,7 +77726,7 @@
}
},
{
- "id": 25872,
+ "id": 26341,
"properties": {
"east": "none",
"north": "low",
@@ -77653,7 +77737,7 @@
}
},
{
- "id": 25873,
+ "id": 26342,
"properties": {
"east": "none",
"north": "low",
@@ -77664,7 +77748,7 @@
}
},
{
- "id": 25874,
+ "id": 26343,
"properties": {
"east": "none",
"north": "low",
@@ -77675,7 +77759,7 @@
}
},
{
- "id": 25875,
+ "id": 26344,
"properties": {
"east": "none",
"north": "low",
@@ -77686,7 +77770,7 @@
}
},
{
- "id": 25876,
+ "id": 26345,
"properties": {
"east": "none",
"north": "low",
@@ -77697,7 +77781,7 @@
}
},
{
- "id": 25877,
+ "id": 26346,
"properties": {
"east": "none",
"north": "low",
@@ -77708,7 +77792,7 @@
}
},
{
- "id": 25878,
+ "id": 26347,
"properties": {
"east": "none",
"north": "low",
@@ -77719,7 +77803,7 @@
}
},
{
- "id": 25879,
+ "id": 26348,
"properties": {
"east": "none",
"north": "low",
@@ -77730,7 +77814,7 @@
}
},
{
- "id": 25880,
+ "id": 26349,
"properties": {
"east": "none",
"north": "low",
@@ -77741,7 +77825,7 @@
}
},
{
- "id": 25881,
+ "id": 26350,
"properties": {
"east": "none",
"north": "low",
@@ -77752,7 +77836,7 @@
}
},
{
- "id": 25882,
+ "id": 26351,
"properties": {
"east": "none",
"north": "low",
@@ -77763,7 +77847,7 @@
}
},
{
- "id": 25883,
+ "id": 26352,
"properties": {
"east": "none",
"north": "low",
@@ -77774,7 +77858,7 @@
}
},
{
- "id": 25884,
+ "id": 26353,
"properties": {
"east": "none",
"north": "low",
@@ -77785,7 +77869,7 @@
}
},
{
- "id": 25885,
+ "id": 26354,
"properties": {
"east": "none",
"north": "low",
@@ -77796,7 +77880,7 @@
}
},
{
- "id": 25886,
+ "id": 26355,
"properties": {
"east": "none",
"north": "low",
@@ -77807,7 +77891,7 @@
}
},
{
- "id": 25887,
+ "id": 26356,
"properties": {
"east": "none",
"north": "low",
@@ -77818,7 +77902,7 @@
}
},
{
- "id": 25888,
+ "id": 26357,
"properties": {
"east": "none",
"north": "tall",
@@ -77829,7 +77913,7 @@
}
},
{
- "id": 25889,
+ "id": 26358,
"properties": {
"east": "none",
"north": "tall",
@@ -77840,7 +77924,7 @@
}
},
{
- "id": 25890,
+ "id": 26359,
"properties": {
"east": "none",
"north": "tall",
@@ -77851,7 +77935,7 @@
}
},
{
- "id": 25891,
+ "id": 26360,
"properties": {
"east": "none",
"north": "tall",
@@ -77862,7 +77946,7 @@
}
},
{
- "id": 25892,
+ "id": 26361,
"properties": {
"east": "none",
"north": "tall",
@@ -77873,7 +77957,7 @@
}
},
{
- "id": 25893,
+ "id": 26362,
"properties": {
"east": "none",
"north": "tall",
@@ -77884,7 +77968,7 @@
}
},
{
- "id": 25894,
+ "id": 26363,
"properties": {
"east": "none",
"north": "tall",
@@ -77895,7 +77979,7 @@
}
},
{
- "id": 25895,
+ "id": 26364,
"properties": {
"east": "none",
"north": "tall",
@@ -77906,7 +77990,7 @@
}
},
{
- "id": 25896,
+ "id": 26365,
"properties": {
"east": "none",
"north": "tall",
@@ -77917,7 +78001,7 @@
}
},
{
- "id": 25897,
+ "id": 26366,
"properties": {
"east": "none",
"north": "tall",
@@ -77928,7 +78012,7 @@
}
},
{
- "id": 25898,
+ "id": 26367,
"properties": {
"east": "none",
"north": "tall",
@@ -77939,7 +78023,7 @@
}
},
{
- "id": 25899,
+ "id": 26368,
"properties": {
"east": "none",
"north": "tall",
@@ -77950,7 +78034,7 @@
}
},
{
- "id": 25900,
+ "id": 26369,
"properties": {
"east": "none",
"north": "tall",
@@ -77961,7 +78045,7 @@
}
},
{
- "id": 25901,
+ "id": 26370,
"properties": {
"east": "none",
"north": "tall",
@@ -77972,7 +78056,7 @@
}
},
{
- "id": 25902,
+ "id": 26371,
"properties": {
"east": "none",
"north": "tall",
@@ -77983,7 +78067,7 @@
}
},
{
- "id": 25903,
+ "id": 26372,
"properties": {
"east": "none",
"north": "tall",
@@ -77994,7 +78078,7 @@
}
},
{
- "id": 25904,
+ "id": 26373,
"properties": {
"east": "none",
"north": "tall",
@@ -78005,7 +78089,7 @@
}
},
{
- "id": 25905,
+ "id": 26374,
"properties": {
"east": "none",
"north": "tall",
@@ -78016,7 +78100,7 @@
}
},
{
- "id": 25906,
+ "id": 26375,
"properties": {
"east": "none",
"north": "tall",
@@ -78027,7 +78111,7 @@
}
},
{
- "id": 25907,
+ "id": 26376,
"properties": {
"east": "none",
"north": "tall",
@@ -78038,7 +78122,7 @@
}
},
{
- "id": 25908,
+ "id": 26377,
"properties": {
"east": "none",
"north": "tall",
@@ -78049,7 +78133,7 @@
}
},
{
- "id": 25909,
+ "id": 26378,
"properties": {
"east": "none",
"north": "tall",
@@ -78060,7 +78144,7 @@
}
},
{
- "id": 25910,
+ "id": 26379,
"properties": {
"east": "none",
"north": "tall",
@@ -78071,7 +78155,7 @@
}
},
{
- "id": 25911,
+ "id": 26380,
"properties": {
"east": "none",
"north": "tall",
@@ -78082,7 +78166,7 @@
}
},
{
- "id": 25912,
+ "id": 26381,
"properties": {
"east": "none",
"north": "tall",
@@ -78093,7 +78177,7 @@
}
},
{
- "id": 25913,
+ "id": 26382,
"properties": {
"east": "none",
"north": "tall",
@@ -78104,7 +78188,7 @@
}
},
{
- "id": 25914,
+ "id": 26383,
"properties": {
"east": "none",
"north": "tall",
@@ -78115,7 +78199,7 @@
}
},
{
- "id": 25915,
+ "id": 26384,
"properties": {
"east": "none",
"north": "tall",
@@ -78126,7 +78210,7 @@
}
},
{
- "id": 25916,
+ "id": 26385,
"properties": {
"east": "none",
"north": "tall",
@@ -78137,7 +78221,7 @@
}
},
{
- "id": 25917,
+ "id": 26386,
"properties": {
"east": "none",
"north": "tall",
@@ -78148,7 +78232,7 @@
}
},
{
- "id": 25918,
+ "id": 26387,
"properties": {
"east": "none",
"north": "tall",
@@ -78159,7 +78243,7 @@
}
},
{
- "id": 25919,
+ "id": 26388,
"properties": {
"east": "none",
"north": "tall",
@@ -78170,7 +78254,7 @@
}
},
{
- "id": 25920,
+ "id": 26389,
"properties": {
"east": "none",
"north": "tall",
@@ -78181,7 +78265,7 @@
}
},
{
- "id": 25921,
+ "id": 26390,
"properties": {
"east": "none",
"north": "tall",
@@ -78192,7 +78276,7 @@
}
},
{
- "id": 25922,
+ "id": 26391,
"properties": {
"east": "none",
"north": "tall",
@@ -78203,7 +78287,7 @@
}
},
{
- "id": 25923,
+ "id": 26392,
"properties": {
"east": "none",
"north": "tall",
@@ -78214,7 +78298,7 @@
}
},
{
- "id": 25924,
+ "id": 26393,
"properties": {
"east": "low",
"north": "none",
@@ -78225,7 +78309,7 @@
}
},
{
- "id": 25925,
+ "id": 26394,
"properties": {
"east": "low",
"north": "none",
@@ -78236,7 +78320,7 @@
}
},
{
- "id": 25926,
+ "id": 26395,
"properties": {
"east": "low",
"north": "none",
@@ -78247,7 +78331,7 @@
}
},
{
- "id": 25927,
+ "id": 26396,
"properties": {
"east": "low",
"north": "none",
@@ -78258,7 +78342,7 @@
}
},
{
- "id": 25928,
+ "id": 26397,
"properties": {
"east": "low",
"north": "none",
@@ -78269,7 +78353,7 @@
}
},
{
- "id": 25929,
+ "id": 26398,
"properties": {
"east": "low",
"north": "none",
@@ -78280,7 +78364,7 @@
}
},
{
- "id": 25930,
+ "id": 26399,
"properties": {
"east": "low",
"north": "none",
@@ -78291,7 +78375,7 @@
}
},
{
- "id": 25931,
+ "id": 26400,
"properties": {
"east": "low",
"north": "none",
@@ -78302,7 +78386,7 @@
}
},
{
- "id": 25932,
+ "id": 26401,
"properties": {
"east": "low",
"north": "none",
@@ -78313,7 +78397,7 @@
}
},
{
- "id": 25933,
+ "id": 26402,
"properties": {
"east": "low",
"north": "none",
@@ -78324,7 +78408,7 @@
}
},
{
- "id": 25934,
+ "id": 26403,
"properties": {
"east": "low",
"north": "none",
@@ -78335,7 +78419,7 @@
}
},
{
- "id": 25935,
+ "id": 26404,
"properties": {
"east": "low",
"north": "none",
@@ -78346,7 +78430,7 @@
}
},
{
- "id": 25936,
+ "id": 26405,
"properties": {
"east": "low",
"north": "none",
@@ -78357,7 +78441,7 @@
}
},
{
- "id": 25937,
+ "id": 26406,
"properties": {
"east": "low",
"north": "none",
@@ -78368,7 +78452,7 @@
}
},
{
- "id": 25938,
+ "id": 26407,
"properties": {
"east": "low",
"north": "none",
@@ -78379,7 +78463,7 @@
}
},
{
- "id": 25939,
+ "id": 26408,
"properties": {
"east": "low",
"north": "none",
@@ -78390,7 +78474,7 @@
}
},
{
- "id": 25940,
+ "id": 26409,
"properties": {
"east": "low",
"north": "none",
@@ -78401,7 +78485,7 @@
}
},
{
- "id": 25941,
+ "id": 26410,
"properties": {
"east": "low",
"north": "none",
@@ -78412,7 +78496,7 @@
}
},
{
- "id": 25942,
+ "id": 26411,
"properties": {
"east": "low",
"north": "none",
@@ -78423,7 +78507,7 @@
}
},
{
- "id": 25943,
+ "id": 26412,
"properties": {
"east": "low",
"north": "none",
@@ -78434,7 +78518,7 @@
}
},
{
- "id": 25944,
+ "id": 26413,
"properties": {
"east": "low",
"north": "none",
@@ -78445,7 +78529,7 @@
}
},
{
- "id": 25945,
+ "id": 26414,
"properties": {
"east": "low",
"north": "none",
@@ -78456,7 +78540,7 @@
}
},
{
- "id": 25946,
+ "id": 26415,
"properties": {
"east": "low",
"north": "none",
@@ -78467,7 +78551,7 @@
}
},
{
- "id": 25947,
+ "id": 26416,
"properties": {
"east": "low",
"north": "none",
@@ -78478,7 +78562,7 @@
}
},
{
- "id": 25948,
+ "id": 26417,
"properties": {
"east": "low",
"north": "none",
@@ -78489,7 +78573,7 @@
}
},
{
- "id": 25949,
+ "id": 26418,
"properties": {
"east": "low",
"north": "none",
@@ -78500,7 +78584,7 @@
}
},
{
- "id": 25950,
+ "id": 26419,
"properties": {
"east": "low",
"north": "none",
@@ -78511,7 +78595,7 @@
}
},
{
- "id": 25951,
+ "id": 26420,
"properties": {
"east": "low",
"north": "none",
@@ -78522,7 +78606,7 @@
}
},
{
- "id": 25952,
+ "id": 26421,
"properties": {
"east": "low",
"north": "none",
@@ -78533,7 +78617,7 @@
}
},
{
- "id": 25953,
+ "id": 26422,
"properties": {
"east": "low",
"north": "none",
@@ -78544,7 +78628,7 @@
}
},
{
- "id": 25954,
+ "id": 26423,
"properties": {
"east": "low",
"north": "none",
@@ -78555,7 +78639,7 @@
}
},
{
- "id": 25955,
+ "id": 26424,
"properties": {
"east": "low",
"north": "none",
@@ -78566,7 +78650,7 @@
}
},
{
- "id": 25956,
+ "id": 26425,
"properties": {
"east": "low",
"north": "none",
@@ -78577,7 +78661,7 @@
}
},
{
- "id": 25957,
+ "id": 26426,
"properties": {
"east": "low",
"north": "none",
@@ -78588,7 +78672,7 @@
}
},
{
- "id": 25958,
+ "id": 26427,
"properties": {
"east": "low",
"north": "none",
@@ -78599,7 +78683,7 @@
}
},
{
- "id": 25959,
+ "id": 26428,
"properties": {
"east": "low",
"north": "none",
@@ -78610,7 +78694,7 @@
}
},
{
- "id": 25960,
+ "id": 26429,
"properties": {
"east": "low",
"north": "low",
@@ -78621,7 +78705,7 @@
}
},
{
- "id": 25961,
+ "id": 26430,
"properties": {
"east": "low",
"north": "low",
@@ -78632,7 +78716,7 @@
}
},
{
- "id": 25962,
+ "id": 26431,
"properties": {
"east": "low",
"north": "low",
@@ -78643,7 +78727,7 @@
}
},
{
- "id": 25963,
+ "id": 26432,
"properties": {
"east": "low",
"north": "low",
@@ -78654,7 +78738,7 @@
}
},
{
- "id": 25964,
+ "id": 26433,
"properties": {
"east": "low",
"north": "low",
@@ -78665,7 +78749,7 @@
}
},
{
- "id": 25965,
+ "id": 26434,
"properties": {
"east": "low",
"north": "low",
@@ -78676,7 +78760,7 @@
}
},
{
- "id": 25966,
+ "id": 26435,
"properties": {
"east": "low",
"north": "low",
@@ -78687,7 +78771,7 @@
}
},
{
- "id": 25967,
+ "id": 26436,
"properties": {
"east": "low",
"north": "low",
@@ -78698,7 +78782,7 @@
}
},
{
- "id": 25968,
+ "id": 26437,
"properties": {
"east": "low",
"north": "low",
@@ -78709,7 +78793,7 @@
}
},
{
- "id": 25969,
+ "id": 26438,
"properties": {
"east": "low",
"north": "low",
@@ -78720,7 +78804,7 @@
}
},
{
- "id": 25970,
+ "id": 26439,
"properties": {
"east": "low",
"north": "low",
@@ -78731,7 +78815,7 @@
}
},
{
- "id": 25971,
+ "id": 26440,
"properties": {
"east": "low",
"north": "low",
@@ -78742,7 +78826,7 @@
}
},
{
- "id": 25972,
+ "id": 26441,
"properties": {
"east": "low",
"north": "low",
@@ -78753,7 +78837,7 @@
}
},
{
- "id": 25973,
+ "id": 26442,
"properties": {
"east": "low",
"north": "low",
@@ -78764,7 +78848,7 @@
}
},
{
- "id": 25974,
+ "id": 26443,
"properties": {
"east": "low",
"north": "low",
@@ -78775,7 +78859,7 @@
}
},
{
- "id": 25975,
+ "id": 26444,
"properties": {
"east": "low",
"north": "low",
@@ -78786,7 +78870,7 @@
}
},
{
- "id": 25976,
+ "id": 26445,
"properties": {
"east": "low",
"north": "low",
@@ -78797,7 +78881,7 @@
}
},
{
- "id": 25977,
+ "id": 26446,
"properties": {
"east": "low",
"north": "low",
@@ -78808,7 +78892,7 @@
}
},
{
- "id": 25978,
+ "id": 26447,
"properties": {
"east": "low",
"north": "low",
@@ -78819,7 +78903,7 @@
}
},
{
- "id": 25979,
+ "id": 26448,
"properties": {
"east": "low",
"north": "low",
@@ -78830,7 +78914,7 @@
}
},
{
- "id": 25980,
+ "id": 26449,
"properties": {
"east": "low",
"north": "low",
@@ -78841,7 +78925,7 @@
}
},
{
- "id": 25981,
+ "id": 26450,
"properties": {
"east": "low",
"north": "low",
@@ -78852,7 +78936,7 @@
}
},
{
- "id": 25982,
+ "id": 26451,
"properties": {
"east": "low",
"north": "low",
@@ -78863,7 +78947,7 @@
}
},
{
- "id": 25983,
+ "id": 26452,
"properties": {
"east": "low",
"north": "low",
@@ -78874,7 +78958,7 @@
}
},
{
- "id": 25984,
+ "id": 26453,
"properties": {
"east": "low",
"north": "low",
@@ -78885,7 +78969,7 @@
}
},
{
- "id": 25985,
+ "id": 26454,
"properties": {
"east": "low",
"north": "low",
@@ -78896,7 +78980,7 @@
}
},
{
- "id": 25986,
+ "id": 26455,
"properties": {
"east": "low",
"north": "low",
@@ -78907,7 +78991,7 @@
}
},
{
- "id": 25987,
+ "id": 26456,
"properties": {
"east": "low",
"north": "low",
@@ -78918,7 +79002,7 @@
}
},
{
- "id": 25988,
+ "id": 26457,
"properties": {
"east": "low",
"north": "low",
@@ -78929,7 +79013,7 @@
}
},
{
- "id": 25989,
+ "id": 26458,
"properties": {
"east": "low",
"north": "low",
@@ -78940,7 +79024,7 @@
}
},
{
- "id": 25990,
+ "id": 26459,
"properties": {
"east": "low",
"north": "low",
@@ -78951,7 +79035,7 @@
}
},
{
- "id": 25991,
+ "id": 26460,
"properties": {
"east": "low",
"north": "low",
@@ -78962,7 +79046,7 @@
}
},
{
- "id": 25992,
+ "id": 26461,
"properties": {
"east": "low",
"north": "low",
@@ -78973,7 +79057,7 @@
}
},
{
- "id": 25993,
+ "id": 26462,
"properties": {
"east": "low",
"north": "low",
@@ -78984,7 +79068,7 @@
}
},
{
- "id": 25994,
+ "id": 26463,
"properties": {
"east": "low",
"north": "low",
@@ -78995,7 +79079,7 @@
}
},
{
- "id": 25995,
+ "id": 26464,
"properties": {
"east": "low",
"north": "low",
@@ -79006,7 +79090,7 @@
}
},
{
- "id": 25996,
+ "id": 26465,
"properties": {
"east": "low",
"north": "tall",
@@ -79017,7 +79101,7 @@
}
},
{
- "id": 25997,
+ "id": 26466,
"properties": {
"east": "low",
"north": "tall",
@@ -79028,7 +79112,7 @@
}
},
{
- "id": 25998,
+ "id": 26467,
"properties": {
"east": "low",
"north": "tall",
@@ -79039,7 +79123,7 @@
}
},
{
- "id": 25999,
+ "id": 26468,
"properties": {
"east": "low",
"north": "tall",
@@ -79050,7 +79134,7 @@
}
},
{
- "id": 26000,
+ "id": 26469,
"properties": {
"east": "low",
"north": "tall",
@@ -79061,7 +79145,7 @@
}
},
{
- "id": 26001,
+ "id": 26470,
"properties": {
"east": "low",
"north": "tall",
@@ -79072,7 +79156,7 @@
}
},
{
- "id": 26002,
+ "id": 26471,
"properties": {
"east": "low",
"north": "tall",
@@ -79083,7 +79167,7 @@
}
},
{
- "id": 26003,
+ "id": 26472,
"properties": {
"east": "low",
"north": "tall",
@@ -79094,7 +79178,7 @@
}
},
{
- "id": 26004,
+ "id": 26473,
"properties": {
"east": "low",
"north": "tall",
@@ -79105,7 +79189,7 @@
}
},
{
- "id": 26005,
+ "id": 26474,
"properties": {
"east": "low",
"north": "tall",
@@ -79116,7 +79200,7 @@
}
},
{
- "id": 26006,
+ "id": 26475,
"properties": {
"east": "low",
"north": "tall",
@@ -79127,7 +79211,7 @@
}
},
{
- "id": 26007,
+ "id": 26476,
"properties": {
"east": "low",
"north": "tall",
@@ -79138,7 +79222,7 @@
}
},
{
- "id": 26008,
+ "id": 26477,
"properties": {
"east": "low",
"north": "tall",
@@ -79149,7 +79233,7 @@
}
},
{
- "id": 26009,
+ "id": 26478,
"properties": {
"east": "low",
"north": "tall",
@@ -79160,7 +79244,7 @@
}
},
{
- "id": 26010,
+ "id": 26479,
"properties": {
"east": "low",
"north": "tall",
@@ -79171,7 +79255,7 @@
}
},
{
- "id": 26011,
+ "id": 26480,
"properties": {
"east": "low",
"north": "tall",
@@ -79182,7 +79266,7 @@
}
},
{
- "id": 26012,
+ "id": 26481,
"properties": {
"east": "low",
"north": "tall",
@@ -79193,7 +79277,7 @@
}
},
{
- "id": 26013,
+ "id": 26482,
"properties": {
"east": "low",
"north": "tall",
@@ -79204,7 +79288,7 @@
}
},
{
- "id": 26014,
+ "id": 26483,
"properties": {
"east": "low",
"north": "tall",
@@ -79215,7 +79299,7 @@
}
},
{
- "id": 26015,
+ "id": 26484,
"properties": {
"east": "low",
"north": "tall",
@@ -79226,7 +79310,7 @@
}
},
{
- "id": 26016,
+ "id": 26485,
"properties": {
"east": "low",
"north": "tall",
@@ -79237,7 +79321,7 @@
}
},
{
- "id": 26017,
+ "id": 26486,
"properties": {
"east": "low",
"north": "tall",
@@ -79248,7 +79332,7 @@
}
},
{
- "id": 26018,
+ "id": 26487,
"properties": {
"east": "low",
"north": "tall",
@@ -79259,7 +79343,7 @@
}
},
{
- "id": 26019,
+ "id": 26488,
"properties": {
"east": "low",
"north": "tall",
@@ -79270,7 +79354,7 @@
}
},
{
- "id": 26020,
+ "id": 26489,
"properties": {
"east": "low",
"north": "tall",
@@ -79281,7 +79365,7 @@
}
},
{
- "id": 26021,
+ "id": 26490,
"properties": {
"east": "low",
"north": "tall",
@@ -79292,7 +79376,7 @@
}
},
{
- "id": 26022,
+ "id": 26491,
"properties": {
"east": "low",
"north": "tall",
@@ -79303,7 +79387,7 @@
}
},
{
- "id": 26023,
+ "id": 26492,
"properties": {
"east": "low",
"north": "tall",
@@ -79314,7 +79398,7 @@
}
},
{
- "id": 26024,
+ "id": 26493,
"properties": {
"east": "low",
"north": "tall",
@@ -79325,7 +79409,7 @@
}
},
{
- "id": 26025,
+ "id": 26494,
"properties": {
"east": "low",
"north": "tall",
@@ -79336,7 +79420,7 @@
}
},
{
- "id": 26026,
+ "id": 26495,
"properties": {
"east": "low",
"north": "tall",
@@ -79347,7 +79431,7 @@
}
},
{
- "id": 26027,
+ "id": 26496,
"properties": {
"east": "low",
"north": "tall",
@@ -79358,7 +79442,7 @@
}
},
{
- "id": 26028,
+ "id": 26497,
"properties": {
"east": "low",
"north": "tall",
@@ -79369,7 +79453,7 @@
}
},
{
- "id": 26029,
+ "id": 26498,
"properties": {
"east": "low",
"north": "tall",
@@ -79380,7 +79464,7 @@
}
},
{
- "id": 26030,
+ "id": 26499,
"properties": {
"east": "low",
"north": "tall",
@@ -79391,7 +79475,7 @@
}
},
{
- "id": 26031,
+ "id": 26500,
"properties": {
"east": "low",
"north": "tall",
@@ -79402,7 +79486,7 @@
}
},
{
- "id": 26032,
+ "id": 26501,
"properties": {
"east": "tall",
"north": "none",
@@ -79413,7 +79497,7 @@
}
},
{
- "id": 26033,
+ "id": 26502,
"properties": {
"east": "tall",
"north": "none",
@@ -79424,7 +79508,7 @@
}
},
{
- "id": 26034,
+ "id": 26503,
"properties": {
"east": "tall",
"north": "none",
@@ -79435,7 +79519,7 @@
}
},
{
- "id": 26035,
+ "id": 26504,
"properties": {
"east": "tall",
"north": "none",
@@ -79446,7 +79530,7 @@
}
},
{
- "id": 26036,
+ "id": 26505,
"properties": {
"east": "tall",
"north": "none",
@@ -79457,7 +79541,7 @@
}
},
{
- "id": 26037,
+ "id": 26506,
"properties": {
"east": "tall",
"north": "none",
@@ -79468,7 +79552,7 @@
}
},
{
- "id": 26038,
+ "id": 26507,
"properties": {
"east": "tall",
"north": "none",
@@ -79479,7 +79563,7 @@
}
},
{
- "id": 26039,
+ "id": 26508,
"properties": {
"east": "tall",
"north": "none",
@@ -79490,7 +79574,7 @@
}
},
{
- "id": 26040,
+ "id": 26509,
"properties": {
"east": "tall",
"north": "none",
@@ -79501,7 +79585,7 @@
}
},
{
- "id": 26041,
+ "id": 26510,
"properties": {
"east": "tall",
"north": "none",
@@ -79512,7 +79596,7 @@
}
},
{
- "id": 26042,
+ "id": 26511,
"properties": {
"east": "tall",
"north": "none",
@@ -79523,7 +79607,7 @@
}
},
{
- "id": 26043,
+ "id": 26512,
"properties": {
"east": "tall",
"north": "none",
@@ -79534,7 +79618,7 @@
}
},
{
- "id": 26044,
+ "id": 26513,
"properties": {
"east": "tall",
"north": "none",
@@ -79545,7 +79629,7 @@
}
},
{
- "id": 26045,
+ "id": 26514,
"properties": {
"east": "tall",
"north": "none",
@@ -79556,7 +79640,7 @@
}
},
{
- "id": 26046,
+ "id": 26515,
"properties": {
"east": "tall",
"north": "none",
@@ -79567,7 +79651,7 @@
}
},
{
- "id": 26047,
+ "id": 26516,
"properties": {
"east": "tall",
"north": "none",
@@ -79578,7 +79662,7 @@
}
},
{
- "id": 26048,
+ "id": 26517,
"properties": {
"east": "tall",
"north": "none",
@@ -79589,7 +79673,7 @@
}
},
{
- "id": 26049,
+ "id": 26518,
"properties": {
"east": "tall",
"north": "none",
@@ -79600,7 +79684,7 @@
}
},
{
- "id": 26050,
+ "id": 26519,
"properties": {
"east": "tall",
"north": "none",
@@ -79611,7 +79695,7 @@
}
},
{
- "id": 26051,
+ "id": 26520,
"properties": {
"east": "tall",
"north": "none",
@@ -79622,7 +79706,7 @@
}
},
{
- "id": 26052,
+ "id": 26521,
"properties": {
"east": "tall",
"north": "none",
@@ -79633,7 +79717,7 @@
}
},
{
- "id": 26053,
+ "id": 26522,
"properties": {
"east": "tall",
"north": "none",
@@ -79644,7 +79728,7 @@
}
},
{
- "id": 26054,
+ "id": 26523,
"properties": {
"east": "tall",
"north": "none",
@@ -79655,7 +79739,7 @@
}
},
{
- "id": 26055,
+ "id": 26524,
"properties": {
"east": "tall",
"north": "none",
@@ -79666,7 +79750,7 @@
}
},
{
- "id": 26056,
+ "id": 26525,
"properties": {
"east": "tall",
"north": "none",
@@ -79677,7 +79761,7 @@
}
},
{
- "id": 26057,
+ "id": 26526,
"properties": {
"east": "tall",
"north": "none",
@@ -79688,7 +79772,7 @@
}
},
{
- "id": 26058,
+ "id": 26527,
"properties": {
"east": "tall",
"north": "none",
@@ -79699,7 +79783,7 @@
}
},
{
- "id": 26059,
+ "id": 26528,
"properties": {
"east": "tall",
"north": "none",
@@ -79710,7 +79794,7 @@
}
},
{
- "id": 26060,
+ "id": 26529,
"properties": {
"east": "tall",
"north": "none",
@@ -79721,7 +79805,7 @@
}
},
{
- "id": 26061,
+ "id": 26530,
"properties": {
"east": "tall",
"north": "none",
@@ -79732,7 +79816,7 @@
}
},
{
- "id": 26062,
+ "id": 26531,
"properties": {
"east": "tall",
"north": "none",
@@ -79743,7 +79827,7 @@
}
},
{
- "id": 26063,
+ "id": 26532,
"properties": {
"east": "tall",
"north": "none",
@@ -79754,7 +79838,7 @@
}
},
{
- "id": 26064,
+ "id": 26533,
"properties": {
"east": "tall",
"north": "none",
@@ -79765,7 +79849,7 @@
}
},
{
- "id": 26065,
+ "id": 26534,
"properties": {
"east": "tall",
"north": "none",
@@ -79776,7 +79860,7 @@
}
},
{
- "id": 26066,
+ "id": 26535,
"properties": {
"east": "tall",
"north": "none",
@@ -79787,7 +79871,7 @@
}
},
{
- "id": 26067,
+ "id": 26536,
"properties": {
"east": "tall",
"north": "none",
@@ -79798,7 +79882,7 @@
}
},
{
- "id": 26068,
+ "id": 26537,
"properties": {
"east": "tall",
"north": "low",
@@ -79809,7 +79893,7 @@
}
},
{
- "id": 26069,
+ "id": 26538,
"properties": {
"east": "tall",
"north": "low",
@@ -79820,7 +79904,7 @@
}
},
{
- "id": 26070,
+ "id": 26539,
"properties": {
"east": "tall",
"north": "low",
@@ -79831,7 +79915,7 @@
}
},
{
- "id": 26071,
+ "id": 26540,
"properties": {
"east": "tall",
"north": "low",
@@ -79842,7 +79926,7 @@
}
},
{
- "id": 26072,
+ "id": 26541,
"properties": {
"east": "tall",
"north": "low",
@@ -79853,7 +79937,7 @@
}
},
{
- "id": 26073,
+ "id": 26542,
"properties": {
"east": "tall",
"north": "low",
@@ -79864,7 +79948,7 @@
}
},
{
- "id": 26074,
+ "id": 26543,
"properties": {
"east": "tall",
"north": "low",
@@ -79875,7 +79959,7 @@
}
},
{
- "id": 26075,
+ "id": 26544,
"properties": {
"east": "tall",
"north": "low",
@@ -79886,7 +79970,7 @@
}
},
{
- "id": 26076,
+ "id": 26545,
"properties": {
"east": "tall",
"north": "low",
@@ -79897,7 +79981,7 @@
}
},
{
- "id": 26077,
+ "id": 26546,
"properties": {
"east": "tall",
"north": "low",
@@ -79908,7 +79992,7 @@
}
},
{
- "id": 26078,
+ "id": 26547,
"properties": {
"east": "tall",
"north": "low",
@@ -79919,7 +80003,7 @@
}
},
{
- "id": 26079,
+ "id": 26548,
"properties": {
"east": "tall",
"north": "low",
@@ -79930,7 +80014,7 @@
}
},
{
- "id": 26080,
+ "id": 26549,
"properties": {
"east": "tall",
"north": "low",
@@ -79941,7 +80025,7 @@
}
},
{
- "id": 26081,
+ "id": 26550,
"properties": {
"east": "tall",
"north": "low",
@@ -79952,7 +80036,7 @@
}
},
{
- "id": 26082,
+ "id": 26551,
"properties": {
"east": "tall",
"north": "low",
@@ -79963,7 +80047,7 @@
}
},
{
- "id": 26083,
+ "id": 26552,
"properties": {
"east": "tall",
"north": "low",
@@ -79974,7 +80058,7 @@
}
},
{
- "id": 26084,
+ "id": 26553,
"properties": {
"east": "tall",
"north": "low",
@@ -79985,7 +80069,7 @@
}
},
{
- "id": 26085,
+ "id": 26554,
"properties": {
"east": "tall",
"north": "low",
@@ -79996,7 +80080,7 @@
}
},
{
- "id": 26086,
+ "id": 26555,
"properties": {
"east": "tall",
"north": "low",
@@ -80007,7 +80091,7 @@
}
},
{
- "id": 26087,
+ "id": 26556,
"properties": {
"east": "tall",
"north": "low",
@@ -80018,7 +80102,7 @@
}
},
{
- "id": 26088,
+ "id": 26557,
"properties": {
"east": "tall",
"north": "low",
@@ -80029,7 +80113,7 @@
}
},
{
- "id": 26089,
+ "id": 26558,
"properties": {
"east": "tall",
"north": "low",
@@ -80040,7 +80124,7 @@
}
},
{
- "id": 26090,
+ "id": 26559,
"properties": {
"east": "tall",
"north": "low",
@@ -80051,7 +80135,7 @@
}
},
{
- "id": 26091,
+ "id": 26560,
"properties": {
"east": "tall",
"north": "low",
@@ -80062,7 +80146,7 @@
}
},
{
- "id": 26092,
+ "id": 26561,
"properties": {
"east": "tall",
"north": "low",
@@ -80073,7 +80157,7 @@
}
},
{
- "id": 26093,
+ "id": 26562,
"properties": {
"east": "tall",
"north": "low",
@@ -80084,7 +80168,7 @@
}
},
{
- "id": 26094,
+ "id": 26563,
"properties": {
"east": "tall",
"north": "low",
@@ -80095,7 +80179,7 @@
}
},
{
- "id": 26095,
+ "id": 26564,
"properties": {
"east": "tall",
"north": "low",
@@ -80106,7 +80190,7 @@
}
},
{
- "id": 26096,
+ "id": 26565,
"properties": {
"east": "tall",
"north": "low",
@@ -80117,7 +80201,7 @@
}
},
{
- "id": 26097,
+ "id": 26566,
"properties": {
"east": "tall",
"north": "low",
@@ -80128,7 +80212,7 @@
}
},
{
- "id": 26098,
+ "id": 26567,
"properties": {
"east": "tall",
"north": "low",
@@ -80139,7 +80223,7 @@
}
},
{
- "id": 26099,
+ "id": 26568,
"properties": {
"east": "tall",
"north": "low",
@@ -80150,7 +80234,7 @@
}
},
{
- "id": 26100,
+ "id": 26569,
"properties": {
"east": "tall",
"north": "low",
@@ -80161,7 +80245,7 @@
}
},
{
- "id": 26101,
+ "id": 26570,
"properties": {
"east": "tall",
"north": "low",
@@ -80172,7 +80256,7 @@
}
},
{
- "id": 26102,
+ "id": 26571,
"properties": {
"east": "tall",
"north": "low",
@@ -80183,7 +80267,7 @@
}
},
{
- "id": 26103,
+ "id": 26572,
"properties": {
"east": "tall",
"north": "low",
@@ -80194,7 +80278,7 @@
}
},
{
- "id": 26104,
+ "id": 26573,
"properties": {
"east": "tall",
"north": "tall",
@@ -80205,7 +80289,7 @@
}
},
{
- "id": 26105,
+ "id": 26574,
"properties": {
"east": "tall",
"north": "tall",
@@ -80216,7 +80300,7 @@
}
},
{
- "id": 26106,
+ "id": 26575,
"properties": {
"east": "tall",
"north": "tall",
@@ -80227,7 +80311,7 @@
}
},
{
- "id": 26107,
+ "id": 26576,
"properties": {
"east": "tall",
"north": "tall",
@@ -80238,7 +80322,7 @@
}
},
{
- "id": 26108,
+ "id": 26577,
"properties": {
"east": "tall",
"north": "tall",
@@ -80249,7 +80333,7 @@
}
},
{
- "id": 26109,
+ "id": 26578,
"properties": {
"east": "tall",
"north": "tall",
@@ -80260,7 +80344,7 @@
}
},
{
- "id": 26110,
+ "id": 26579,
"properties": {
"east": "tall",
"north": "tall",
@@ -80271,7 +80355,7 @@
}
},
{
- "id": 26111,
+ "id": 26580,
"properties": {
"east": "tall",
"north": "tall",
@@ -80282,7 +80366,7 @@
}
},
{
- "id": 26112,
+ "id": 26581,
"properties": {
"east": "tall",
"north": "tall",
@@ -80293,7 +80377,7 @@
}
},
{
- "id": 26113,
+ "id": 26582,
"properties": {
"east": "tall",
"north": "tall",
@@ -80304,7 +80388,7 @@
}
},
{
- "id": 26114,
+ "id": 26583,
"properties": {
"east": "tall",
"north": "tall",
@@ -80315,7 +80399,7 @@
}
},
{
- "id": 26115,
+ "id": 26584,
"properties": {
"east": "tall",
"north": "tall",
@@ -80326,7 +80410,7 @@
}
},
{
- "id": 26116,
+ "id": 26585,
"properties": {
"east": "tall",
"north": "tall",
@@ -80337,7 +80421,7 @@
}
},
{
- "id": 26117,
+ "id": 26586,
"properties": {
"east": "tall",
"north": "tall",
@@ -80348,7 +80432,7 @@
}
},
{
- "id": 26118,
+ "id": 26587,
"properties": {
"east": "tall",
"north": "tall",
@@ -80359,7 +80443,7 @@
}
},
{
- "id": 26119,
+ "id": 26588,
"properties": {
"east": "tall",
"north": "tall",
@@ -80370,7 +80454,7 @@
}
},
{
- "id": 26120,
+ "id": 26589,
"properties": {
"east": "tall",
"north": "tall",
@@ -80381,7 +80465,7 @@
}
},
{
- "id": 26121,
+ "id": 26590,
"properties": {
"east": "tall",
"north": "tall",
@@ -80392,7 +80476,7 @@
}
},
{
- "id": 26122,
+ "id": 26591,
"properties": {
"east": "tall",
"north": "tall",
@@ -80403,7 +80487,7 @@
}
},
{
- "id": 26123,
+ "id": 26592,
"properties": {
"east": "tall",
"north": "tall",
@@ -80414,7 +80498,7 @@
}
},
{
- "id": 26124,
+ "id": 26593,
"properties": {
"east": "tall",
"north": "tall",
@@ -80425,7 +80509,7 @@
}
},
{
- "id": 26125,
+ "id": 26594,
"properties": {
"east": "tall",
"north": "tall",
@@ -80436,7 +80520,7 @@
}
},
{
- "id": 26126,
+ "id": 26595,
"properties": {
"east": "tall",
"north": "tall",
@@ -80447,7 +80531,7 @@
}
},
{
- "id": 26127,
+ "id": 26596,
"properties": {
"east": "tall",
"north": "tall",
@@ -80458,7 +80542,7 @@
}
},
{
- "id": 26128,
+ "id": 26597,
"properties": {
"east": "tall",
"north": "tall",
@@ -80469,7 +80553,7 @@
}
},
{
- "id": 26129,
+ "id": 26598,
"properties": {
"east": "tall",
"north": "tall",
@@ -80480,7 +80564,7 @@
}
},
{
- "id": 26130,
+ "id": 26599,
"properties": {
"east": "tall",
"north": "tall",
@@ -80491,7 +80575,7 @@
}
},
{
- "id": 26131,
+ "id": 26600,
"properties": {
"east": "tall",
"north": "tall",
@@ -80502,7 +80586,7 @@
}
},
{
- "id": 26132,
+ "id": 26601,
"properties": {
"east": "tall",
"north": "tall",
@@ -80513,7 +80597,7 @@
}
},
{
- "id": 26133,
+ "id": 26602,
"properties": {
"east": "tall",
"north": "tall",
@@ -80524,7 +80608,7 @@
}
},
{
- "id": 26134,
+ "id": 26603,
"properties": {
"east": "tall",
"north": "tall",
@@ -80535,7 +80619,7 @@
}
},
{
- "id": 26135,
+ "id": 26604,
"properties": {
"east": "tall",
"north": "tall",
@@ -80546,7 +80630,7 @@
}
},
{
- "id": 26136,
+ "id": 26605,
"properties": {
"east": "tall",
"north": "tall",
@@ -80557,7 +80641,7 @@
}
},
{
- "id": 26137,
+ "id": 26606,
"properties": {
"east": "tall",
"north": "tall",
@@ -80568,7 +80652,7 @@
}
},
{
- "id": 26138,
+ "id": 26607,
"properties": {
"east": "tall",
"north": "tall",
@@ -80579,7 +80663,7 @@
}
},
{
- "id": 26139,
+ "id": 26608,
"properties": {
"east": "tall",
"north": "tall",
@@ -80599,7 +80683,7 @@
"states": [
{
"default": true,
- "id": 25729
+ "id": 26198
}
]
},
@@ -80628,7 +80712,7 @@
},
"states": [
{
- "id": 1968,
+ "id": 2011,
"properties": {
"powered": "true",
"shape": "north_south",
@@ -80636,7 +80720,7 @@
}
},
{
- "id": 1969,
+ "id": 2012,
"properties": {
"powered": "true",
"shape": "north_south",
@@ -80644,7 +80728,7 @@
}
},
{
- "id": 1970,
+ "id": 2013,
"properties": {
"powered": "true",
"shape": "east_west",
@@ -80652,7 +80736,7 @@
}
},
{
- "id": 1971,
+ "id": 2014,
"properties": {
"powered": "true",
"shape": "east_west",
@@ -80660,7 +80744,7 @@
}
},
{
- "id": 1972,
+ "id": 2015,
"properties": {
"powered": "true",
"shape": "ascending_east",
@@ -80668,7 +80752,7 @@
}
},
{
- "id": 1973,
+ "id": 2016,
"properties": {
"powered": "true",
"shape": "ascending_east",
@@ -80676,7 +80760,7 @@
}
},
{
- "id": 1974,
+ "id": 2017,
"properties": {
"powered": "true",
"shape": "ascending_west",
@@ -80684,7 +80768,7 @@
}
},
{
- "id": 1975,
+ "id": 2018,
"properties": {
"powered": "true",
"shape": "ascending_west",
@@ -80692,7 +80776,7 @@
}
},
{
- "id": 1976,
+ "id": 2019,
"properties": {
"powered": "true",
"shape": "ascending_north",
@@ -80700,7 +80784,7 @@
}
},
{
- "id": 1977,
+ "id": 2020,
"properties": {
"powered": "true",
"shape": "ascending_north",
@@ -80708,7 +80792,7 @@
}
},
{
- "id": 1978,
+ "id": 2021,
"properties": {
"powered": "true",
"shape": "ascending_south",
@@ -80716,7 +80800,7 @@
}
},
{
- "id": 1979,
+ "id": 2022,
"properties": {
"powered": "true",
"shape": "ascending_south",
@@ -80724,7 +80808,7 @@
}
},
{
- "id": 1980,
+ "id": 2023,
"properties": {
"powered": "false",
"shape": "north_south",
@@ -80733,7 +80817,7 @@
},
{
"default": true,
- "id": 1981,
+ "id": 2024,
"properties": {
"powered": "false",
"shape": "north_south",
@@ -80741,7 +80825,7 @@
}
},
{
- "id": 1982,
+ "id": 2025,
"properties": {
"powered": "false",
"shape": "east_west",
@@ -80749,7 +80833,7 @@
}
},
{
- "id": 1983,
+ "id": 2026,
"properties": {
"powered": "false",
"shape": "east_west",
@@ -80757,7 +80841,7 @@
}
},
{
- "id": 1984,
+ "id": 2027,
"properties": {
"powered": "false",
"shape": "ascending_east",
@@ -80765,7 +80849,7 @@
}
},
{
- "id": 1985,
+ "id": 2028,
"properties": {
"powered": "false",
"shape": "ascending_east",
@@ -80773,7 +80857,7 @@
}
},
{
- "id": 1986,
+ "id": 2029,
"properties": {
"powered": "false",
"shape": "ascending_west",
@@ -80781,7 +80865,7 @@
}
},
{
- "id": 1987,
+ "id": 2030,
"properties": {
"powered": "false",
"shape": "ascending_west",
@@ -80789,7 +80873,7 @@
}
},
{
- "id": 1988,
+ "id": 2031,
"properties": {
"powered": "false",
"shape": "ascending_north",
@@ -80797,7 +80881,7 @@
}
},
{
- "id": 1989,
+ "id": 2032,
"properties": {
"powered": "false",
"shape": "ascending_north",
@@ -80805,7 +80889,7 @@
}
},
{
- "id": 1990,
+ "id": 2033,
"properties": {
"powered": "false",
"shape": "ascending_south",
@@ -80813,7 +80897,7 @@
}
},
{
- "id": 1991,
+ "id": 2034,
"properties": {
"powered": "false",
"shape": "ascending_south",
@@ -80830,7 +80914,7 @@
"states": [
{
"default": true,
- "id": 4276
+ "id": 4328
}
]
},
@@ -80847,7 +80931,7 @@
"states": [
{
"default": true,
- "id": 4274
+ "id": 4326
}
]
},
@@ -80881,21 +80965,21 @@
},
"states": [
{
- "id": 14154,
+ "id": 14623,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 14155,
+ "id": 14624,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 14156,
+ "id": 14625,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -80903,21 +80987,21 @@
},
{
"default": true,
- "id": 14157,
+ "id": 14626,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 14158,
+ "id": 14627,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 14159,
+ "id": 14628,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -80958,7 +81042,7 @@
},
"states": [
{
- "id": 14002,
+ "id": 14471,
"properties": {
"facing": "north",
"half": "top",
@@ -80967,7 +81051,7 @@
}
},
{
- "id": 14003,
+ "id": 14472,
"properties": {
"facing": "north",
"half": "top",
@@ -80976,7 +81060,7 @@
}
},
{
- "id": 14004,
+ "id": 14473,
"properties": {
"facing": "north",
"half": "top",
@@ -80985,7 +81069,7 @@
}
},
{
- "id": 14005,
+ "id": 14474,
"properties": {
"facing": "north",
"half": "top",
@@ -80994,7 +81078,7 @@
}
},
{
- "id": 14006,
+ "id": 14475,
"properties": {
"facing": "north",
"half": "top",
@@ -81003,7 +81087,7 @@
}
},
{
- "id": 14007,
+ "id": 14476,
"properties": {
"facing": "north",
"half": "top",
@@ -81012,7 +81096,7 @@
}
},
{
- "id": 14008,
+ "id": 14477,
"properties": {
"facing": "north",
"half": "top",
@@ -81021,7 +81105,7 @@
}
},
{
- "id": 14009,
+ "id": 14478,
"properties": {
"facing": "north",
"half": "top",
@@ -81030,7 +81114,7 @@
}
},
{
- "id": 14010,
+ "id": 14479,
"properties": {
"facing": "north",
"half": "top",
@@ -81039,7 +81123,7 @@
}
},
{
- "id": 14011,
+ "id": 14480,
"properties": {
"facing": "north",
"half": "top",
@@ -81048,7 +81132,7 @@
}
},
{
- "id": 14012,
+ "id": 14481,
"properties": {
"facing": "north",
"half": "bottom",
@@ -81058,7 +81142,7 @@
},
{
"default": true,
- "id": 14013,
+ "id": 14482,
"properties": {
"facing": "north",
"half": "bottom",
@@ -81067,7 +81151,7 @@
}
},
{
- "id": 14014,
+ "id": 14483,
"properties": {
"facing": "north",
"half": "bottom",
@@ -81076,7 +81160,7 @@
}
},
{
- "id": 14015,
+ "id": 14484,
"properties": {
"facing": "north",
"half": "bottom",
@@ -81085,7 +81169,7 @@
}
},
{
- "id": 14016,
+ "id": 14485,
"properties": {
"facing": "north",
"half": "bottom",
@@ -81094,7 +81178,7 @@
}
},
{
- "id": 14017,
+ "id": 14486,
"properties": {
"facing": "north",
"half": "bottom",
@@ -81103,7 +81187,7 @@
}
},
{
- "id": 14018,
+ "id": 14487,
"properties": {
"facing": "north",
"half": "bottom",
@@ -81112,7 +81196,7 @@
}
},
{
- "id": 14019,
+ "id": 14488,
"properties": {
"facing": "north",
"half": "bottom",
@@ -81121,7 +81205,7 @@
}
},
{
- "id": 14020,
+ "id": 14489,
"properties": {
"facing": "north",
"half": "bottom",
@@ -81130,7 +81214,7 @@
}
},
{
- "id": 14021,
+ "id": 14490,
"properties": {
"facing": "north",
"half": "bottom",
@@ -81139,7 +81223,7 @@
}
},
{
- "id": 14022,
+ "id": 14491,
"properties": {
"facing": "south",
"half": "top",
@@ -81148,7 +81232,7 @@
}
},
{
- "id": 14023,
+ "id": 14492,
"properties": {
"facing": "south",
"half": "top",
@@ -81157,7 +81241,7 @@
}
},
{
- "id": 14024,
+ "id": 14493,
"properties": {
"facing": "south",
"half": "top",
@@ -81166,7 +81250,7 @@
}
},
{
- "id": 14025,
+ "id": 14494,
"properties": {
"facing": "south",
"half": "top",
@@ -81175,7 +81259,7 @@
}
},
{
- "id": 14026,
+ "id": 14495,
"properties": {
"facing": "south",
"half": "top",
@@ -81184,7 +81268,7 @@
}
},
{
- "id": 14027,
+ "id": 14496,
"properties": {
"facing": "south",
"half": "top",
@@ -81193,7 +81277,7 @@
}
},
{
- "id": 14028,
+ "id": 14497,
"properties": {
"facing": "south",
"half": "top",
@@ -81202,7 +81286,7 @@
}
},
{
- "id": 14029,
+ "id": 14498,
"properties": {
"facing": "south",
"half": "top",
@@ -81211,7 +81295,7 @@
}
},
{
- "id": 14030,
+ "id": 14499,
"properties": {
"facing": "south",
"half": "top",
@@ -81220,7 +81304,7 @@
}
},
{
- "id": 14031,
+ "id": 14500,
"properties": {
"facing": "south",
"half": "top",
@@ -81229,7 +81313,7 @@
}
},
{
- "id": 14032,
+ "id": 14501,
"properties": {
"facing": "south",
"half": "bottom",
@@ -81238,7 +81322,7 @@
}
},
{
- "id": 14033,
+ "id": 14502,
"properties": {
"facing": "south",
"half": "bottom",
@@ -81247,7 +81331,7 @@
}
},
{
- "id": 14034,
+ "id": 14503,
"properties": {
"facing": "south",
"half": "bottom",
@@ -81256,7 +81340,7 @@
}
},
{
- "id": 14035,
+ "id": 14504,
"properties": {
"facing": "south",
"half": "bottom",
@@ -81265,7 +81349,7 @@
}
},
{
- "id": 14036,
+ "id": 14505,
"properties": {
"facing": "south",
"half": "bottom",
@@ -81274,7 +81358,7 @@
}
},
{
- "id": 14037,
+ "id": 14506,
"properties": {
"facing": "south",
"half": "bottom",
@@ -81283,7 +81367,7 @@
}
},
{
- "id": 14038,
+ "id": 14507,
"properties": {
"facing": "south",
"half": "bottom",
@@ -81292,7 +81376,7 @@
}
},
{
- "id": 14039,
+ "id": 14508,
"properties": {
"facing": "south",
"half": "bottom",
@@ -81301,7 +81385,7 @@
}
},
{
- "id": 14040,
+ "id": 14509,
"properties": {
"facing": "south",
"half": "bottom",
@@ -81310,7 +81394,7 @@
}
},
{
- "id": 14041,
+ "id": 14510,
"properties": {
"facing": "south",
"half": "bottom",
@@ -81319,7 +81403,7 @@
}
},
{
- "id": 14042,
+ "id": 14511,
"properties": {
"facing": "west",
"half": "top",
@@ -81328,7 +81412,7 @@
}
},
{
- "id": 14043,
+ "id": 14512,
"properties": {
"facing": "west",
"half": "top",
@@ -81337,7 +81421,7 @@
}
},
{
- "id": 14044,
+ "id": 14513,
"properties": {
"facing": "west",
"half": "top",
@@ -81346,7 +81430,7 @@
}
},
{
- "id": 14045,
+ "id": 14514,
"properties": {
"facing": "west",
"half": "top",
@@ -81355,7 +81439,7 @@
}
},
{
- "id": 14046,
+ "id": 14515,
"properties": {
"facing": "west",
"half": "top",
@@ -81364,7 +81448,7 @@
}
},
{
- "id": 14047,
+ "id": 14516,
"properties": {
"facing": "west",
"half": "top",
@@ -81373,7 +81457,7 @@
}
},
{
- "id": 14048,
+ "id": 14517,
"properties": {
"facing": "west",
"half": "top",
@@ -81382,7 +81466,7 @@
}
},
{
- "id": 14049,
+ "id": 14518,
"properties": {
"facing": "west",
"half": "top",
@@ -81391,7 +81475,7 @@
}
},
{
- "id": 14050,
+ "id": 14519,
"properties": {
"facing": "west",
"half": "top",
@@ -81400,7 +81484,7 @@
}
},
{
- "id": 14051,
+ "id": 14520,
"properties": {
"facing": "west",
"half": "top",
@@ -81409,7 +81493,7 @@
}
},
{
- "id": 14052,
+ "id": 14521,
"properties": {
"facing": "west",
"half": "bottom",
@@ -81418,7 +81502,7 @@
}
},
{
- "id": 14053,
+ "id": 14522,
"properties": {
"facing": "west",
"half": "bottom",
@@ -81427,7 +81511,7 @@
}
},
{
- "id": 14054,
+ "id": 14523,
"properties": {
"facing": "west",
"half": "bottom",
@@ -81436,7 +81520,7 @@
}
},
{
- "id": 14055,
+ "id": 14524,
"properties": {
"facing": "west",
"half": "bottom",
@@ -81445,7 +81529,7 @@
}
},
{
- "id": 14056,
+ "id": 14525,
"properties": {
"facing": "west",
"half": "bottom",
@@ -81454,7 +81538,7 @@
}
},
{
- "id": 14057,
+ "id": 14526,
"properties": {
"facing": "west",
"half": "bottom",
@@ -81463,7 +81547,7 @@
}
},
{
- "id": 14058,
+ "id": 14527,
"properties": {
"facing": "west",
"half": "bottom",
@@ -81472,7 +81556,7 @@
}
},
{
- "id": 14059,
+ "id": 14528,
"properties": {
"facing": "west",
"half": "bottom",
@@ -81481,7 +81565,7 @@
}
},
{
- "id": 14060,
+ "id": 14529,
"properties": {
"facing": "west",
"half": "bottom",
@@ -81490,7 +81574,7 @@
}
},
{
- "id": 14061,
+ "id": 14530,
"properties": {
"facing": "west",
"half": "bottom",
@@ -81499,7 +81583,7 @@
}
},
{
- "id": 14062,
+ "id": 14531,
"properties": {
"facing": "east",
"half": "top",
@@ -81508,7 +81592,7 @@
}
},
{
- "id": 14063,
+ "id": 14532,
"properties": {
"facing": "east",
"half": "top",
@@ -81517,7 +81601,7 @@
}
},
{
- "id": 14064,
+ "id": 14533,
"properties": {
"facing": "east",
"half": "top",
@@ -81526,7 +81610,7 @@
}
},
{
- "id": 14065,
+ "id": 14534,
"properties": {
"facing": "east",
"half": "top",
@@ -81535,7 +81619,7 @@
}
},
{
- "id": 14066,
+ "id": 14535,
"properties": {
"facing": "east",
"half": "top",
@@ -81544,7 +81628,7 @@
}
},
{
- "id": 14067,
+ "id": 14536,
"properties": {
"facing": "east",
"half": "top",
@@ -81553,7 +81637,7 @@
}
},
{
- "id": 14068,
+ "id": 14537,
"properties": {
"facing": "east",
"half": "top",
@@ -81562,7 +81646,7 @@
}
},
{
- "id": 14069,
+ "id": 14538,
"properties": {
"facing": "east",
"half": "top",
@@ -81571,7 +81655,7 @@
}
},
{
- "id": 14070,
+ "id": 14539,
"properties": {
"facing": "east",
"half": "top",
@@ -81580,7 +81664,7 @@
}
},
{
- "id": 14071,
+ "id": 14540,
"properties": {
"facing": "east",
"half": "top",
@@ -81589,7 +81673,7 @@
}
},
{
- "id": 14072,
+ "id": 14541,
"properties": {
"facing": "east",
"half": "bottom",
@@ -81598,7 +81682,7 @@
}
},
{
- "id": 14073,
+ "id": 14542,
"properties": {
"facing": "east",
"half": "bottom",
@@ -81607,7 +81691,7 @@
}
},
{
- "id": 14074,
+ "id": 14543,
"properties": {
"facing": "east",
"half": "bottom",
@@ -81616,7 +81700,7 @@
}
},
{
- "id": 14075,
+ "id": 14544,
"properties": {
"facing": "east",
"half": "bottom",
@@ -81625,7 +81709,7 @@
}
},
{
- "id": 14076,
+ "id": 14545,
"properties": {
"facing": "east",
"half": "bottom",
@@ -81634,7 +81718,7 @@
}
},
{
- "id": 14077,
+ "id": 14546,
"properties": {
"facing": "east",
"half": "bottom",
@@ -81643,7 +81727,7 @@
}
},
{
- "id": 14078,
+ "id": 14547,
"properties": {
"facing": "east",
"half": "bottom",
@@ -81652,7 +81736,7 @@
}
},
{
- "id": 14079,
+ "id": 14548,
"properties": {
"facing": "east",
"half": "bottom",
@@ -81661,7 +81745,7 @@
}
},
{
- "id": 14080,
+ "id": 14549,
"properties": {
"facing": "east",
"half": "bottom",
@@ -81670,7 +81754,7 @@
}
},
{
- "id": 14081,
+ "id": 14550,
"properties": {
"facing": "east",
"half": "bottom",
@@ -81717,7 +81801,7 @@
},
"states": [
{
- "id": 18048,
+ "id": 18517,
"properties": {
"east": "none",
"north": "none",
@@ -81728,7 +81812,7 @@
}
},
{
- "id": 18049,
+ "id": 18518,
"properties": {
"east": "none",
"north": "none",
@@ -81739,7 +81823,7 @@
}
},
{
- "id": 18050,
+ "id": 18519,
"properties": {
"east": "none",
"north": "none",
@@ -81751,7 +81835,7 @@
},
{
"default": true,
- "id": 18051,
+ "id": 18520,
"properties": {
"east": "none",
"north": "none",
@@ -81762,7 +81846,7 @@
}
},
{
- "id": 18052,
+ "id": 18521,
"properties": {
"east": "none",
"north": "none",
@@ -81773,7 +81857,7 @@
}
},
{
- "id": 18053,
+ "id": 18522,
"properties": {
"east": "none",
"north": "none",
@@ -81784,7 +81868,7 @@
}
},
{
- "id": 18054,
+ "id": 18523,
"properties": {
"east": "none",
"north": "none",
@@ -81795,7 +81879,7 @@
}
},
{
- "id": 18055,
+ "id": 18524,
"properties": {
"east": "none",
"north": "none",
@@ -81806,7 +81890,7 @@
}
},
{
- "id": 18056,
+ "id": 18525,
"properties": {
"east": "none",
"north": "none",
@@ -81817,7 +81901,7 @@
}
},
{
- "id": 18057,
+ "id": 18526,
"properties": {
"east": "none",
"north": "none",
@@ -81828,7 +81912,7 @@
}
},
{
- "id": 18058,
+ "id": 18527,
"properties": {
"east": "none",
"north": "none",
@@ -81839,7 +81923,7 @@
}
},
{
- "id": 18059,
+ "id": 18528,
"properties": {
"east": "none",
"north": "none",
@@ -81850,7 +81934,7 @@
}
},
{
- "id": 18060,
+ "id": 18529,
"properties": {
"east": "none",
"north": "none",
@@ -81861,7 +81945,7 @@
}
},
{
- "id": 18061,
+ "id": 18530,
"properties": {
"east": "none",
"north": "none",
@@ -81872,7 +81956,7 @@
}
},
{
- "id": 18062,
+ "id": 18531,
"properties": {
"east": "none",
"north": "none",
@@ -81883,7 +81967,7 @@
}
},
{
- "id": 18063,
+ "id": 18532,
"properties": {
"east": "none",
"north": "none",
@@ -81894,7 +81978,7 @@
}
},
{
- "id": 18064,
+ "id": 18533,
"properties": {
"east": "none",
"north": "none",
@@ -81905,7 +81989,7 @@
}
},
{
- "id": 18065,
+ "id": 18534,
"properties": {
"east": "none",
"north": "none",
@@ -81916,7 +82000,7 @@
}
},
{
- "id": 18066,
+ "id": 18535,
"properties": {
"east": "none",
"north": "none",
@@ -81927,7 +82011,7 @@
}
},
{
- "id": 18067,
+ "id": 18536,
"properties": {
"east": "none",
"north": "none",
@@ -81938,7 +82022,7 @@
}
},
{
- "id": 18068,
+ "id": 18537,
"properties": {
"east": "none",
"north": "none",
@@ -81949,7 +82033,7 @@
}
},
{
- "id": 18069,
+ "id": 18538,
"properties": {
"east": "none",
"north": "none",
@@ -81960,7 +82044,7 @@
}
},
{
- "id": 18070,
+ "id": 18539,
"properties": {
"east": "none",
"north": "none",
@@ -81971,7 +82055,7 @@
}
},
{
- "id": 18071,
+ "id": 18540,
"properties": {
"east": "none",
"north": "none",
@@ -81982,7 +82066,7 @@
}
},
{
- "id": 18072,
+ "id": 18541,
"properties": {
"east": "none",
"north": "none",
@@ -81993,7 +82077,7 @@
}
},
{
- "id": 18073,
+ "id": 18542,
"properties": {
"east": "none",
"north": "none",
@@ -82004,7 +82088,7 @@
}
},
{
- "id": 18074,
+ "id": 18543,
"properties": {
"east": "none",
"north": "none",
@@ -82015,7 +82099,7 @@
}
},
{
- "id": 18075,
+ "id": 18544,
"properties": {
"east": "none",
"north": "none",
@@ -82026,7 +82110,7 @@
}
},
{
- "id": 18076,
+ "id": 18545,
"properties": {
"east": "none",
"north": "none",
@@ -82037,7 +82121,7 @@
}
},
{
- "id": 18077,
+ "id": 18546,
"properties": {
"east": "none",
"north": "none",
@@ -82048,7 +82132,7 @@
}
},
{
- "id": 18078,
+ "id": 18547,
"properties": {
"east": "none",
"north": "none",
@@ -82059,7 +82143,7 @@
}
},
{
- "id": 18079,
+ "id": 18548,
"properties": {
"east": "none",
"north": "none",
@@ -82070,7 +82154,7 @@
}
},
{
- "id": 18080,
+ "id": 18549,
"properties": {
"east": "none",
"north": "none",
@@ -82081,7 +82165,7 @@
}
},
{
- "id": 18081,
+ "id": 18550,
"properties": {
"east": "none",
"north": "none",
@@ -82092,7 +82176,7 @@
}
},
{
- "id": 18082,
+ "id": 18551,
"properties": {
"east": "none",
"north": "none",
@@ -82103,7 +82187,7 @@
}
},
{
- "id": 18083,
+ "id": 18552,
"properties": {
"east": "none",
"north": "none",
@@ -82114,7 +82198,7 @@
}
},
{
- "id": 18084,
+ "id": 18553,
"properties": {
"east": "none",
"north": "low",
@@ -82125,7 +82209,7 @@
}
},
{
- "id": 18085,
+ "id": 18554,
"properties": {
"east": "none",
"north": "low",
@@ -82136,7 +82220,7 @@
}
},
{
- "id": 18086,
+ "id": 18555,
"properties": {
"east": "none",
"north": "low",
@@ -82147,7 +82231,7 @@
}
},
{
- "id": 18087,
+ "id": 18556,
"properties": {
"east": "none",
"north": "low",
@@ -82158,7 +82242,7 @@
}
},
{
- "id": 18088,
+ "id": 18557,
"properties": {
"east": "none",
"north": "low",
@@ -82169,7 +82253,7 @@
}
},
{
- "id": 18089,
+ "id": 18558,
"properties": {
"east": "none",
"north": "low",
@@ -82180,7 +82264,7 @@
}
},
{
- "id": 18090,
+ "id": 18559,
"properties": {
"east": "none",
"north": "low",
@@ -82191,7 +82275,7 @@
}
},
{
- "id": 18091,
+ "id": 18560,
"properties": {
"east": "none",
"north": "low",
@@ -82202,7 +82286,7 @@
}
},
{
- "id": 18092,
+ "id": 18561,
"properties": {
"east": "none",
"north": "low",
@@ -82213,7 +82297,7 @@
}
},
{
- "id": 18093,
+ "id": 18562,
"properties": {
"east": "none",
"north": "low",
@@ -82224,7 +82308,7 @@
}
},
{
- "id": 18094,
+ "id": 18563,
"properties": {
"east": "none",
"north": "low",
@@ -82235,7 +82319,7 @@
}
},
{
- "id": 18095,
+ "id": 18564,
"properties": {
"east": "none",
"north": "low",
@@ -82246,7 +82330,7 @@
}
},
{
- "id": 18096,
+ "id": 18565,
"properties": {
"east": "none",
"north": "low",
@@ -82257,7 +82341,7 @@
}
},
{
- "id": 18097,
+ "id": 18566,
"properties": {
"east": "none",
"north": "low",
@@ -82268,7 +82352,7 @@
}
},
{
- "id": 18098,
+ "id": 18567,
"properties": {
"east": "none",
"north": "low",
@@ -82279,7 +82363,7 @@
}
},
{
- "id": 18099,
+ "id": 18568,
"properties": {
"east": "none",
"north": "low",
@@ -82290,7 +82374,7 @@
}
},
{
- "id": 18100,
+ "id": 18569,
"properties": {
"east": "none",
"north": "low",
@@ -82301,7 +82385,7 @@
}
},
{
- "id": 18101,
+ "id": 18570,
"properties": {
"east": "none",
"north": "low",
@@ -82312,7 +82396,7 @@
}
},
{
- "id": 18102,
+ "id": 18571,
"properties": {
"east": "none",
"north": "low",
@@ -82323,7 +82407,7 @@
}
},
{
- "id": 18103,
+ "id": 18572,
"properties": {
"east": "none",
"north": "low",
@@ -82334,7 +82418,7 @@
}
},
{
- "id": 18104,
+ "id": 18573,
"properties": {
"east": "none",
"north": "low",
@@ -82345,7 +82429,7 @@
}
},
{
- "id": 18105,
+ "id": 18574,
"properties": {
"east": "none",
"north": "low",
@@ -82356,7 +82440,7 @@
}
},
{
- "id": 18106,
+ "id": 18575,
"properties": {
"east": "none",
"north": "low",
@@ -82367,7 +82451,7 @@
}
},
{
- "id": 18107,
+ "id": 18576,
"properties": {
"east": "none",
"north": "low",
@@ -82378,7 +82462,7 @@
}
},
{
- "id": 18108,
+ "id": 18577,
"properties": {
"east": "none",
"north": "low",
@@ -82389,7 +82473,7 @@
}
},
{
- "id": 18109,
+ "id": 18578,
"properties": {
"east": "none",
"north": "low",
@@ -82400,7 +82484,7 @@
}
},
{
- "id": 18110,
+ "id": 18579,
"properties": {
"east": "none",
"north": "low",
@@ -82411,7 +82495,7 @@
}
},
{
- "id": 18111,
+ "id": 18580,
"properties": {
"east": "none",
"north": "low",
@@ -82422,7 +82506,7 @@
}
},
{
- "id": 18112,
+ "id": 18581,
"properties": {
"east": "none",
"north": "low",
@@ -82433,7 +82517,7 @@
}
},
{
- "id": 18113,
+ "id": 18582,
"properties": {
"east": "none",
"north": "low",
@@ -82444,7 +82528,7 @@
}
},
{
- "id": 18114,
+ "id": 18583,
"properties": {
"east": "none",
"north": "low",
@@ -82455,7 +82539,7 @@
}
},
{
- "id": 18115,
+ "id": 18584,
"properties": {
"east": "none",
"north": "low",
@@ -82466,7 +82550,7 @@
}
},
{
- "id": 18116,
+ "id": 18585,
"properties": {
"east": "none",
"north": "low",
@@ -82477,7 +82561,7 @@
}
},
{
- "id": 18117,
+ "id": 18586,
"properties": {
"east": "none",
"north": "low",
@@ -82488,7 +82572,7 @@
}
},
{
- "id": 18118,
+ "id": 18587,
"properties": {
"east": "none",
"north": "low",
@@ -82499,7 +82583,7 @@
}
},
{
- "id": 18119,
+ "id": 18588,
"properties": {
"east": "none",
"north": "low",
@@ -82510,7 +82594,7 @@
}
},
{
- "id": 18120,
+ "id": 18589,
"properties": {
"east": "none",
"north": "tall",
@@ -82521,7 +82605,7 @@
}
},
{
- "id": 18121,
+ "id": 18590,
"properties": {
"east": "none",
"north": "tall",
@@ -82532,7 +82616,7 @@
}
},
{
- "id": 18122,
+ "id": 18591,
"properties": {
"east": "none",
"north": "tall",
@@ -82543,7 +82627,7 @@
}
},
{
- "id": 18123,
+ "id": 18592,
"properties": {
"east": "none",
"north": "tall",
@@ -82554,7 +82638,7 @@
}
},
{
- "id": 18124,
+ "id": 18593,
"properties": {
"east": "none",
"north": "tall",
@@ -82565,7 +82649,7 @@
}
},
{
- "id": 18125,
+ "id": 18594,
"properties": {
"east": "none",
"north": "tall",
@@ -82576,7 +82660,7 @@
}
},
{
- "id": 18126,
+ "id": 18595,
"properties": {
"east": "none",
"north": "tall",
@@ -82587,7 +82671,7 @@
}
},
{
- "id": 18127,
+ "id": 18596,
"properties": {
"east": "none",
"north": "tall",
@@ -82598,7 +82682,7 @@
}
},
{
- "id": 18128,
+ "id": 18597,
"properties": {
"east": "none",
"north": "tall",
@@ -82609,7 +82693,7 @@
}
},
{
- "id": 18129,
+ "id": 18598,
"properties": {
"east": "none",
"north": "tall",
@@ -82620,7 +82704,7 @@
}
},
{
- "id": 18130,
+ "id": 18599,
"properties": {
"east": "none",
"north": "tall",
@@ -82631,7 +82715,7 @@
}
},
{
- "id": 18131,
+ "id": 18600,
"properties": {
"east": "none",
"north": "tall",
@@ -82642,7 +82726,7 @@
}
},
{
- "id": 18132,
+ "id": 18601,
"properties": {
"east": "none",
"north": "tall",
@@ -82653,7 +82737,7 @@
}
},
{
- "id": 18133,
+ "id": 18602,
"properties": {
"east": "none",
"north": "tall",
@@ -82664,7 +82748,7 @@
}
},
{
- "id": 18134,
+ "id": 18603,
"properties": {
"east": "none",
"north": "tall",
@@ -82675,7 +82759,7 @@
}
},
{
- "id": 18135,
+ "id": 18604,
"properties": {
"east": "none",
"north": "tall",
@@ -82686,7 +82770,7 @@
}
},
{
- "id": 18136,
+ "id": 18605,
"properties": {
"east": "none",
"north": "tall",
@@ -82697,7 +82781,7 @@
}
},
{
- "id": 18137,
+ "id": 18606,
"properties": {
"east": "none",
"north": "tall",
@@ -82708,7 +82792,7 @@
}
},
{
- "id": 18138,
+ "id": 18607,
"properties": {
"east": "none",
"north": "tall",
@@ -82719,7 +82803,7 @@
}
},
{
- "id": 18139,
+ "id": 18608,
"properties": {
"east": "none",
"north": "tall",
@@ -82730,7 +82814,7 @@
}
},
{
- "id": 18140,
+ "id": 18609,
"properties": {
"east": "none",
"north": "tall",
@@ -82741,7 +82825,7 @@
}
},
{
- "id": 18141,
+ "id": 18610,
"properties": {
"east": "none",
"north": "tall",
@@ -82752,7 +82836,7 @@
}
},
{
- "id": 18142,
+ "id": 18611,
"properties": {
"east": "none",
"north": "tall",
@@ -82763,7 +82847,7 @@
}
},
{
- "id": 18143,
+ "id": 18612,
"properties": {
"east": "none",
"north": "tall",
@@ -82774,7 +82858,7 @@
}
},
{
- "id": 18144,
+ "id": 18613,
"properties": {
"east": "none",
"north": "tall",
@@ -82785,7 +82869,7 @@
}
},
{
- "id": 18145,
+ "id": 18614,
"properties": {
"east": "none",
"north": "tall",
@@ -82796,7 +82880,7 @@
}
},
{
- "id": 18146,
+ "id": 18615,
"properties": {
"east": "none",
"north": "tall",
@@ -82807,7 +82891,7 @@
}
},
{
- "id": 18147,
+ "id": 18616,
"properties": {
"east": "none",
"north": "tall",
@@ -82818,7 +82902,7 @@
}
},
{
- "id": 18148,
+ "id": 18617,
"properties": {
"east": "none",
"north": "tall",
@@ -82829,7 +82913,7 @@
}
},
{
- "id": 18149,
+ "id": 18618,
"properties": {
"east": "none",
"north": "tall",
@@ -82840,7 +82924,7 @@
}
},
{
- "id": 18150,
+ "id": 18619,
"properties": {
"east": "none",
"north": "tall",
@@ -82851,7 +82935,7 @@
}
},
{
- "id": 18151,
+ "id": 18620,
"properties": {
"east": "none",
"north": "tall",
@@ -82862,7 +82946,7 @@
}
},
{
- "id": 18152,
+ "id": 18621,
"properties": {
"east": "none",
"north": "tall",
@@ -82873,7 +82957,7 @@
}
},
{
- "id": 18153,
+ "id": 18622,
"properties": {
"east": "none",
"north": "tall",
@@ -82884,7 +82968,7 @@
}
},
{
- "id": 18154,
+ "id": 18623,
"properties": {
"east": "none",
"north": "tall",
@@ -82895,7 +82979,7 @@
}
},
{
- "id": 18155,
+ "id": 18624,
"properties": {
"east": "none",
"north": "tall",
@@ -82906,7 +82990,7 @@
}
},
{
- "id": 18156,
+ "id": 18625,
"properties": {
"east": "low",
"north": "none",
@@ -82917,7 +83001,7 @@
}
},
{
- "id": 18157,
+ "id": 18626,
"properties": {
"east": "low",
"north": "none",
@@ -82928,7 +83012,7 @@
}
},
{
- "id": 18158,
+ "id": 18627,
"properties": {
"east": "low",
"north": "none",
@@ -82939,7 +83023,7 @@
}
},
{
- "id": 18159,
+ "id": 18628,
"properties": {
"east": "low",
"north": "none",
@@ -82950,7 +83034,7 @@
}
},
{
- "id": 18160,
+ "id": 18629,
"properties": {
"east": "low",
"north": "none",
@@ -82961,7 +83045,7 @@
}
},
{
- "id": 18161,
+ "id": 18630,
"properties": {
"east": "low",
"north": "none",
@@ -82972,7 +83056,7 @@
}
},
{
- "id": 18162,
+ "id": 18631,
"properties": {
"east": "low",
"north": "none",
@@ -82983,7 +83067,7 @@
}
},
{
- "id": 18163,
+ "id": 18632,
"properties": {
"east": "low",
"north": "none",
@@ -82994,7 +83078,7 @@
}
},
{
- "id": 18164,
+ "id": 18633,
"properties": {
"east": "low",
"north": "none",
@@ -83005,7 +83089,7 @@
}
},
{
- "id": 18165,
+ "id": 18634,
"properties": {
"east": "low",
"north": "none",
@@ -83016,7 +83100,7 @@
}
},
{
- "id": 18166,
+ "id": 18635,
"properties": {
"east": "low",
"north": "none",
@@ -83027,7 +83111,7 @@
}
},
{
- "id": 18167,
+ "id": 18636,
"properties": {
"east": "low",
"north": "none",
@@ -83038,7 +83122,7 @@
}
},
{
- "id": 18168,
+ "id": 18637,
"properties": {
"east": "low",
"north": "none",
@@ -83049,7 +83133,7 @@
}
},
{
- "id": 18169,
+ "id": 18638,
"properties": {
"east": "low",
"north": "none",
@@ -83060,7 +83144,7 @@
}
},
{
- "id": 18170,
+ "id": 18639,
"properties": {
"east": "low",
"north": "none",
@@ -83071,7 +83155,7 @@
}
},
{
- "id": 18171,
+ "id": 18640,
"properties": {
"east": "low",
"north": "none",
@@ -83082,7 +83166,7 @@
}
},
{
- "id": 18172,
+ "id": 18641,
"properties": {
"east": "low",
"north": "none",
@@ -83093,7 +83177,7 @@
}
},
{
- "id": 18173,
+ "id": 18642,
"properties": {
"east": "low",
"north": "none",
@@ -83104,7 +83188,7 @@
}
},
{
- "id": 18174,
+ "id": 18643,
"properties": {
"east": "low",
"north": "none",
@@ -83115,7 +83199,7 @@
}
},
{
- "id": 18175,
+ "id": 18644,
"properties": {
"east": "low",
"north": "none",
@@ -83126,7 +83210,7 @@
}
},
{
- "id": 18176,
+ "id": 18645,
"properties": {
"east": "low",
"north": "none",
@@ -83137,7 +83221,7 @@
}
},
{
- "id": 18177,
+ "id": 18646,
"properties": {
"east": "low",
"north": "none",
@@ -83148,7 +83232,7 @@
}
},
{
- "id": 18178,
+ "id": 18647,
"properties": {
"east": "low",
"north": "none",
@@ -83159,7 +83243,7 @@
}
},
{
- "id": 18179,
+ "id": 18648,
"properties": {
"east": "low",
"north": "none",
@@ -83170,7 +83254,7 @@
}
},
{
- "id": 18180,
+ "id": 18649,
"properties": {
"east": "low",
"north": "none",
@@ -83181,7 +83265,7 @@
}
},
{
- "id": 18181,
+ "id": 18650,
"properties": {
"east": "low",
"north": "none",
@@ -83192,7 +83276,7 @@
}
},
{
- "id": 18182,
+ "id": 18651,
"properties": {
"east": "low",
"north": "none",
@@ -83203,7 +83287,7 @@
}
},
{
- "id": 18183,
+ "id": 18652,
"properties": {
"east": "low",
"north": "none",
@@ -83214,7 +83298,7 @@
}
},
{
- "id": 18184,
+ "id": 18653,
"properties": {
"east": "low",
"north": "none",
@@ -83225,7 +83309,7 @@
}
},
{
- "id": 18185,
+ "id": 18654,
"properties": {
"east": "low",
"north": "none",
@@ -83236,7 +83320,7 @@
}
},
{
- "id": 18186,
+ "id": 18655,
"properties": {
"east": "low",
"north": "none",
@@ -83247,7 +83331,7 @@
}
},
{
- "id": 18187,
+ "id": 18656,
"properties": {
"east": "low",
"north": "none",
@@ -83258,7 +83342,7 @@
}
},
{
- "id": 18188,
+ "id": 18657,
"properties": {
"east": "low",
"north": "none",
@@ -83269,7 +83353,7 @@
}
},
{
- "id": 18189,
+ "id": 18658,
"properties": {
"east": "low",
"north": "none",
@@ -83280,7 +83364,7 @@
}
},
{
- "id": 18190,
+ "id": 18659,
"properties": {
"east": "low",
"north": "none",
@@ -83291,7 +83375,7 @@
}
},
{
- "id": 18191,
+ "id": 18660,
"properties": {
"east": "low",
"north": "none",
@@ -83302,7 +83386,7 @@
}
},
{
- "id": 18192,
+ "id": 18661,
"properties": {
"east": "low",
"north": "low",
@@ -83313,7 +83397,7 @@
}
},
{
- "id": 18193,
+ "id": 18662,
"properties": {
"east": "low",
"north": "low",
@@ -83324,7 +83408,7 @@
}
},
{
- "id": 18194,
+ "id": 18663,
"properties": {
"east": "low",
"north": "low",
@@ -83335,7 +83419,7 @@
}
},
{
- "id": 18195,
+ "id": 18664,
"properties": {
"east": "low",
"north": "low",
@@ -83346,7 +83430,7 @@
}
},
{
- "id": 18196,
+ "id": 18665,
"properties": {
"east": "low",
"north": "low",
@@ -83357,7 +83441,7 @@
}
},
{
- "id": 18197,
+ "id": 18666,
"properties": {
"east": "low",
"north": "low",
@@ -83368,7 +83452,7 @@
}
},
{
- "id": 18198,
+ "id": 18667,
"properties": {
"east": "low",
"north": "low",
@@ -83379,7 +83463,7 @@
}
},
{
- "id": 18199,
+ "id": 18668,
"properties": {
"east": "low",
"north": "low",
@@ -83390,7 +83474,7 @@
}
},
{
- "id": 18200,
+ "id": 18669,
"properties": {
"east": "low",
"north": "low",
@@ -83401,7 +83485,7 @@
}
},
{
- "id": 18201,
+ "id": 18670,
"properties": {
"east": "low",
"north": "low",
@@ -83412,7 +83496,7 @@
}
},
{
- "id": 18202,
+ "id": 18671,
"properties": {
"east": "low",
"north": "low",
@@ -83423,7 +83507,7 @@
}
},
{
- "id": 18203,
+ "id": 18672,
"properties": {
"east": "low",
"north": "low",
@@ -83434,7 +83518,7 @@
}
},
{
- "id": 18204,
+ "id": 18673,
"properties": {
"east": "low",
"north": "low",
@@ -83445,7 +83529,7 @@
}
},
{
- "id": 18205,
+ "id": 18674,
"properties": {
"east": "low",
"north": "low",
@@ -83456,7 +83540,7 @@
}
},
{
- "id": 18206,
+ "id": 18675,
"properties": {
"east": "low",
"north": "low",
@@ -83467,7 +83551,7 @@
}
},
{
- "id": 18207,
+ "id": 18676,
"properties": {
"east": "low",
"north": "low",
@@ -83478,7 +83562,7 @@
}
},
{
- "id": 18208,
+ "id": 18677,
"properties": {
"east": "low",
"north": "low",
@@ -83489,7 +83573,7 @@
}
},
{
- "id": 18209,
+ "id": 18678,
"properties": {
"east": "low",
"north": "low",
@@ -83500,7 +83584,7 @@
}
},
{
- "id": 18210,
+ "id": 18679,
"properties": {
"east": "low",
"north": "low",
@@ -83511,7 +83595,7 @@
}
},
{
- "id": 18211,
+ "id": 18680,
"properties": {
"east": "low",
"north": "low",
@@ -83522,7 +83606,7 @@
}
},
{
- "id": 18212,
+ "id": 18681,
"properties": {
"east": "low",
"north": "low",
@@ -83533,7 +83617,7 @@
}
},
{
- "id": 18213,
+ "id": 18682,
"properties": {
"east": "low",
"north": "low",
@@ -83544,7 +83628,7 @@
}
},
{
- "id": 18214,
+ "id": 18683,
"properties": {
"east": "low",
"north": "low",
@@ -83555,7 +83639,7 @@
}
},
{
- "id": 18215,
+ "id": 18684,
"properties": {
"east": "low",
"north": "low",
@@ -83566,7 +83650,7 @@
}
},
{
- "id": 18216,
+ "id": 18685,
"properties": {
"east": "low",
"north": "low",
@@ -83577,7 +83661,7 @@
}
},
{
- "id": 18217,
+ "id": 18686,
"properties": {
"east": "low",
"north": "low",
@@ -83588,7 +83672,7 @@
}
},
{
- "id": 18218,
+ "id": 18687,
"properties": {
"east": "low",
"north": "low",
@@ -83599,7 +83683,7 @@
}
},
{
- "id": 18219,
+ "id": 18688,
"properties": {
"east": "low",
"north": "low",
@@ -83610,7 +83694,7 @@
}
},
{
- "id": 18220,
+ "id": 18689,
"properties": {
"east": "low",
"north": "low",
@@ -83621,7 +83705,7 @@
}
},
{
- "id": 18221,
+ "id": 18690,
"properties": {
"east": "low",
"north": "low",
@@ -83632,7 +83716,7 @@
}
},
{
- "id": 18222,
+ "id": 18691,
"properties": {
"east": "low",
"north": "low",
@@ -83643,7 +83727,7 @@
}
},
{
- "id": 18223,
+ "id": 18692,
"properties": {
"east": "low",
"north": "low",
@@ -83654,7 +83738,7 @@
}
},
{
- "id": 18224,
+ "id": 18693,
"properties": {
"east": "low",
"north": "low",
@@ -83665,7 +83749,7 @@
}
},
{
- "id": 18225,
+ "id": 18694,
"properties": {
"east": "low",
"north": "low",
@@ -83676,7 +83760,7 @@
}
},
{
- "id": 18226,
+ "id": 18695,
"properties": {
"east": "low",
"north": "low",
@@ -83687,7 +83771,7 @@
}
},
{
- "id": 18227,
+ "id": 18696,
"properties": {
"east": "low",
"north": "low",
@@ -83698,7 +83782,7 @@
}
},
{
- "id": 18228,
+ "id": 18697,
"properties": {
"east": "low",
"north": "tall",
@@ -83709,7 +83793,7 @@
}
},
{
- "id": 18229,
+ "id": 18698,
"properties": {
"east": "low",
"north": "tall",
@@ -83720,7 +83804,7 @@
}
},
{
- "id": 18230,
+ "id": 18699,
"properties": {
"east": "low",
"north": "tall",
@@ -83731,7 +83815,7 @@
}
},
{
- "id": 18231,
+ "id": 18700,
"properties": {
"east": "low",
"north": "tall",
@@ -83742,7 +83826,7 @@
}
},
{
- "id": 18232,
+ "id": 18701,
"properties": {
"east": "low",
"north": "tall",
@@ -83753,7 +83837,7 @@
}
},
{
- "id": 18233,
+ "id": 18702,
"properties": {
"east": "low",
"north": "tall",
@@ -83764,7 +83848,7 @@
}
},
{
- "id": 18234,
+ "id": 18703,
"properties": {
"east": "low",
"north": "tall",
@@ -83775,7 +83859,7 @@
}
},
{
- "id": 18235,
+ "id": 18704,
"properties": {
"east": "low",
"north": "tall",
@@ -83786,7 +83870,7 @@
}
},
{
- "id": 18236,
+ "id": 18705,
"properties": {
"east": "low",
"north": "tall",
@@ -83797,7 +83881,7 @@
}
},
{
- "id": 18237,
+ "id": 18706,
"properties": {
"east": "low",
"north": "tall",
@@ -83808,7 +83892,7 @@
}
},
{
- "id": 18238,
+ "id": 18707,
"properties": {
"east": "low",
"north": "tall",
@@ -83819,7 +83903,7 @@
}
},
{
- "id": 18239,
+ "id": 18708,
"properties": {
"east": "low",
"north": "tall",
@@ -83830,7 +83914,7 @@
}
},
{
- "id": 18240,
+ "id": 18709,
"properties": {
"east": "low",
"north": "tall",
@@ -83841,7 +83925,7 @@
}
},
{
- "id": 18241,
+ "id": 18710,
"properties": {
"east": "low",
"north": "tall",
@@ -83852,7 +83936,7 @@
}
},
{
- "id": 18242,
+ "id": 18711,
"properties": {
"east": "low",
"north": "tall",
@@ -83863,7 +83947,7 @@
}
},
{
- "id": 18243,
+ "id": 18712,
"properties": {
"east": "low",
"north": "tall",
@@ -83874,7 +83958,7 @@
}
},
{
- "id": 18244,
+ "id": 18713,
"properties": {
"east": "low",
"north": "tall",
@@ -83885,7 +83969,7 @@
}
},
{
- "id": 18245,
+ "id": 18714,
"properties": {
"east": "low",
"north": "tall",
@@ -83896,7 +83980,7 @@
}
},
{
- "id": 18246,
+ "id": 18715,
"properties": {
"east": "low",
"north": "tall",
@@ -83907,7 +83991,7 @@
}
},
{
- "id": 18247,
+ "id": 18716,
"properties": {
"east": "low",
"north": "tall",
@@ -83918,7 +84002,7 @@
}
},
{
- "id": 18248,
+ "id": 18717,
"properties": {
"east": "low",
"north": "tall",
@@ -83929,7 +84013,7 @@
}
},
{
- "id": 18249,
+ "id": 18718,
"properties": {
"east": "low",
"north": "tall",
@@ -83940,7 +84024,7 @@
}
},
{
- "id": 18250,
+ "id": 18719,
"properties": {
"east": "low",
"north": "tall",
@@ -83951,7 +84035,7 @@
}
},
{
- "id": 18251,
+ "id": 18720,
"properties": {
"east": "low",
"north": "tall",
@@ -83962,7 +84046,7 @@
}
},
{
- "id": 18252,
+ "id": 18721,
"properties": {
"east": "low",
"north": "tall",
@@ -83973,7 +84057,7 @@
}
},
{
- "id": 18253,
+ "id": 18722,
"properties": {
"east": "low",
"north": "tall",
@@ -83984,7 +84068,7 @@
}
},
{
- "id": 18254,
+ "id": 18723,
"properties": {
"east": "low",
"north": "tall",
@@ -83995,7 +84079,7 @@
}
},
{
- "id": 18255,
+ "id": 18724,
"properties": {
"east": "low",
"north": "tall",
@@ -84006,7 +84090,7 @@
}
},
{
- "id": 18256,
+ "id": 18725,
"properties": {
"east": "low",
"north": "tall",
@@ -84017,7 +84101,7 @@
}
},
{
- "id": 18257,
+ "id": 18726,
"properties": {
"east": "low",
"north": "tall",
@@ -84028,7 +84112,7 @@
}
},
{
- "id": 18258,
+ "id": 18727,
"properties": {
"east": "low",
"north": "tall",
@@ -84039,7 +84123,7 @@
}
},
{
- "id": 18259,
+ "id": 18728,
"properties": {
"east": "low",
"north": "tall",
@@ -84050,7 +84134,7 @@
}
},
{
- "id": 18260,
+ "id": 18729,
"properties": {
"east": "low",
"north": "tall",
@@ -84061,7 +84145,7 @@
}
},
{
- "id": 18261,
+ "id": 18730,
"properties": {
"east": "low",
"north": "tall",
@@ -84072,7 +84156,7 @@
}
},
{
- "id": 18262,
+ "id": 18731,
"properties": {
"east": "low",
"north": "tall",
@@ -84083,7 +84167,7 @@
}
},
{
- "id": 18263,
+ "id": 18732,
"properties": {
"east": "low",
"north": "tall",
@@ -84094,7 +84178,7 @@
}
},
{
- "id": 18264,
+ "id": 18733,
"properties": {
"east": "tall",
"north": "none",
@@ -84105,7 +84189,7 @@
}
},
{
- "id": 18265,
+ "id": 18734,
"properties": {
"east": "tall",
"north": "none",
@@ -84116,7 +84200,7 @@
}
},
{
- "id": 18266,
+ "id": 18735,
"properties": {
"east": "tall",
"north": "none",
@@ -84127,7 +84211,7 @@
}
},
{
- "id": 18267,
+ "id": 18736,
"properties": {
"east": "tall",
"north": "none",
@@ -84138,7 +84222,7 @@
}
},
{
- "id": 18268,
+ "id": 18737,
"properties": {
"east": "tall",
"north": "none",
@@ -84149,7 +84233,7 @@
}
},
{
- "id": 18269,
+ "id": 18738,
"properties": {
"east": "tall",
"north": "none",
@@ -84160,7 +84244,7 @@
}
},
{
- "id": 18270,
+ "id": 18739,
"properties": {
"east": "tall",
"north": "none",
@@ -84171,7 +84255,7 @@
}
},
{
- "id": 18271,
+ "id": 18740,
"properties": {
"east": "tall",
"north": "none",
@@ -84182,7 +84266,7 @@
}
},
{
- "id": 18272,
+ "id": 18741,
"properties": {
"east": "tall",
"north": "none",
@@ -84193,7 +84277,7 @@
}
},
{
- "id": 18273,
+ "id": 18742,
"properties": {
"east": "tall",
"north": "none",
@@ -84204,7 +84288,7 @@
}
},
{
- "id": 18274,
+ "id": 18743,
"properties": {
"east": "tall",
"north": "none",
@@ -84215,7 +84299,7 @@
}
},
{
- "id": 18275,
+ "id": 18744,
"properties": {
"east": "tall",
"north": "none",
@@ -84226,7 +84310,7 @@
}
},
{
- "id": 18276,
+ "id": 18745,
"properties": {
"east": "tall",
"north": "none",
@@ -84237,7 +84321,7 @@
}
},
{
- "id": 18277,
+ "id": 18746,
"properties": {
"east": "tall",
"north": "none",
@@ -84248,7 +84332,7 @@
}
},
{
- "id": 18278,
+ "id": 18747,
"properties": {
"east": "tall",
"north": "none",
@@ -84259,7 +84343,7 @@
}
},
{
- "id": 18279,
+ "id": 18748,
"properties": {
"east": "tall",
"north": "none",
@@ -84270,7 +84354,7 @@
}
},
{
- "id": 18280,
+ "id": 18749,
"properties": {
"east": "tall",
"north": "none",
@@ -84281,7 +84365,7 @@
}
},
{
- "id": 18281,
+ "id": 18750,
"properties": {
"east": "tall",
"north": "none",
@@ -84292,7 +84376,7 @@
}
},
{
- "id": 18282,
+ "id": 18751,
"properties": {
"east": "tall",
"north": "none",
@@ -84303,7 +84387,7 @@
}
},
{
- "id": 18283,
+ "id": 18752,
"properties": {
"east": "tall",
"north": "none",
@@ -84314,7 +84398,7 @@
}
},
{
- "id": 18284,
+ "id": 18753,
"properties": {
"east": "tall",
"north": "none",
@@ -84325,7 +84409,7 @@
}
},
{
- "id": 18285,
+ "id": 18754,
"properties": {
"east": "tall",
"north": "none",
@@ -84336,7 +84420,7 @@
}
},
{
- "id": 18286,
+ "id": 18755,
"properties": {
"east": "tall",
"north": "none",
@@ -84347,7 +84431,7 @@
}
},
{
- "id": 18287,
+ "id": 18756,
"properties": {
"east": "tall",
"north": "none",
@@ -84358,7 +84442,7 @@
}
},
{
- "id": 18288,
+ "id": 18757,
"properties": {
"east": "tall",
"north": "none",
@@ -84369,7 +84453,7 @@
}
},
{
- "id": 18289,
+ "id": 18758,
"properties": {
"east": "tall",
"north": "none",
@@ -84380,7 +84464,7 @@
}
},
{
- "id": 18290,
+ "id": 18759,
"properties": {
"east": "tall",
"north": "none",
@@ -84391,7 +84475,7 @@
}
},
{
- "id": 18291,
+ "id": 18760,
"properties": {
"east": "tall",
"north": "none",
@@ -84402,7 +84486,7 @@
}
},
{
- "id": 18292,
+ "id": 18761,
"properties": {
"east": "tall",
"north": "none",
@@ -84413,7 +84497,7 @@
}
},
{
- "id": 18293,
+ "id": 18762,
"properties": {
"east": "tall",
"north": "none",
@@ -84424,7 +84508,7 @@
}
},
{
- "id": 18294,
+ "id": 18763,
"properties": {
"east": "tall",
"north": "none",
@@ -84435,7 +84519,7 @@
}
},
{
- "id": 18295,
+ "id": 18764,
"properties": {
"east": "tall",
"north": "none",
@@ -84446,7 +84530,7 @@
}
},
{
- "id": 18296,
+ "id": 18765,
"properties": {
"east": "tall",
"north": "none",
@@ -84457,7 +84541,7 @@
}
},
{
- "id": 18297,
+ "id": 18766,
"properties": {
"east": "tall",
"north": "none",
@@ -84468,7 +84552,7 @@
}
},
{
- "id": 18298,
+ "id": 18767,
"properties": {
"east": "tall",
"north": "none",
@@ -84479,7 +84563,7 @@
}
},
{
- "id": 18299,
+ "id": 18768,
"properties": {
"east": "tall",
"north": "none",
@@ -84490,7 +84574,7 @@
}
},
{
- "id": 18300,
+ "id": 18769,
"properties": {
"east": "tall",
"north": "low",
@@ -84501,7 +84585,7 @@
}
},
{
- "id": 18301,
+ "id": 18770,
"properties": {
"east": "tall",
"north": "low",
@@ -84512,7 +84596,7 @@
}
},
{
- "id": 18302,
+ "id": 18771,
"properties": {
"east": "tall",
"north": "low",
@@ -84523,7 +84607,7 @@
}
},
{
- "id": 18303,
+ "id": 18772,
"properties": {
"east": "tall",
"north": "low",
@@ -84534,7 +84618,7 @@
}
},
{
- "id": 18304,
+ "id": 18773,
"properties": {
"east": "tall",
"north": "low",
@@ -84545,7 +84629,7 @@
}
},
{
- "id": 18305,
+ "id": 18774,
"properties": {
"east": "tall",
"north": "low",
@@ -84556,7 +84640,7 @@
}
},
{
- "id": 18306,
+ "id": 18775,
"properties": {
"east": "tall",
"north": "low",
@@ -84567,7 +84651,7 @@
}
},
{
- "id": 18307,
+ "id": 18776,
"properties": {
"east": "tall",
"north": "low",
@@ -84578,7 +84662,7 @@
}
},
{
- "id": 18308,
+ "id": 18777,
"properties": {
"east": "tall",
"north": "low",
@@ -84589,7 +84673,7 @@
}
},
{
- "id": 18309,
+ "id": 18778,
"properties": {
"east": "tall",
"north": "low",
@@ -84600,7 +84684,7 @@
}
},
{
- "id": 18310,
+ "id": 18779,
"properties": {
"east": "tall",
"north": "low",
@@ -84611,7 +84695,7 @@
}
},
{
- "id": 18311,
+ "id": 18780,
"properties": {
"east": "tall",
"north": "low",
@@ -84622,7 +84706,7 @@
}
},
{
- "id": 18312,
+ "id": 18781,
"properties": {
"east": "tall",
"north": "low",
@@ -84633,7 +84717,7 @@
}
},
{
- "id": 18313,
+ "id": 18782,
"properties": {
"east": "tall",
"north": "low",
@@ -84644,7 +84728,7 @@
}
},
{
- "id": 18314,
+ "id": 18783,
"properties": {
"east": "tall",
"north": "low",
@@ -84655,7 +84739,7 @@
}
},
{
- "id": 18315,
+ "id": 18784,
"properties": {
"east": "tall",
"north": "low",
@@ -84666,7 +84750,7 @@
}
},
{
- "id": 18316,
+ "id": 18785,
"properties": {
"east": "tall",
"north": "low",
@@ -84677,7 +84761,7 @@
}
},
{
- "id": 18317,
+ "id": 18786,
"properties": {
"east": "tall",
"north": "low",
@@ -84688,7 +84772,7 @@
}
},
{
- "id": 18318,
+ "id": 18787,
"properties": {
"east": "tall",
"north": "low",
@@ -84699,7 +84783,7 @@
}
},
{
- "id": 18319,
+ "id": 18788,
"properties": {
"east": "tall",
"north": "low",
@@ -84710,7 +84794,7 @@
}
},
{
- "id": 18320,
+ "id": 18789,
"properties": {
"east": "tall",
"north": "low",
@@ -84721,7 +84805,7 @@
}
},
{
- "id": 18321,
+ "id": 18790,
"properties": {
"east": "tall",
"north": "low",
@@ -84732,7 +84816,7 @@
}
},
{
- "id": 18322,
+ "id": 18791,
"properties": {
"east": "tall",
"north": "low",
@@ -84743,7 +84827,7 @@
}
},
{
- "id": 18323,
+ "id": 18792,
"properties": {
"east": "tall",
"north": "low",
@@ -84754,7 +84838,7 @@
}
},
{
- "id": 18324,
+ "id": 18793,
"properties": {
"east": "tall",
"north": "low",
@@ -84765,7 +84849,7 @@
}
},
{
- "id": 18325,
+ "id": 18794,
"properties": {
"east": "tall",
"north": "low",
@@ -84776,7 +84860,7 @@
}
},
{
- "id": 18326,
+ "id": 18795,
"properties": {
"east": "tall",
"north": "low",
@@ -84787,7 +84871,7 @@
}
},
{
- "id": 18327,
+ "id": 18796,
"properties": {
"east": "tall",
"north": "low",
@@ -84798,7 +84882,7 @@
}
},
{
- "id": 18328,
+ "id": 18797,
"properties": {
"east": "tall",
"north": "low",
@@ -84809,7 +84893,7 @@
}
},
{
- "id": 18329,
+ "id": 18798,
"properties": {
"east": "tall",
"north": "low",
@@ -84820,7 +84904,7 @@
}
},
{
- "id": 18330,
+ "id": 18799,
"properties": {
"east": "tall",
"north": "low",
@@ -84831,7 +84915,7 @@
}
},
{
- "id": 18331,
+ "id": 18800,
"properties": {
"east": "tall",
"north": "low",
@@ -84842,7 +84926,7 @@
}
},
{
- "id": 18332,
+ "id": 18801,
"properties": {
"east": "tall",
"north": "low",
@@ -84853,7 +84937,7 @@
}
},
{
- "id": 18333,
+ "id": 18802,
"properties": {
"east": "tall",
"north": "low",
@@ -84864,7 +84948,7 @@
}
},
{
- "id": 18334,
+ "id": 18803,
"properties": {
"east": "tall",
"north": "low",
@@ -84875,7 +84959,7 @@
}
},
{
- "id": 18335,
+ "id": 18804,
"properties": {
"east": "tall",
"north": "low",
@@ -84886,7 +84970,7 @@
}
},
{
- "id": 18336,
+ "id": 18805,
"properties": {
"east": "tall",
"north": "tall",
@@ -84897,7 +84981,7 @@
}
},
{
- "id": 18337,
+ "id": 18806,
"properties": {
"east": "tall",
"north": "tall",
@@ -84908,7 +84992,7 @@
}
},
{
- "id": 18338,
+ "id": 18807,
"properties": {
"east": "tall",
"north": "tall",
@@ -84919,7 +85003,7 @@
}
},
{
- "id": 18339,
+ "id": 18808,
"properties": {
"east": "tall",
"north": "tall",
@@ -84930,7 +85014,7 @@
}
},
{
- "id": 18340,
+ "id": 18809,
"properties": {
"east": "tall",
"north": "tall",
@@ -84941,7 +85025,7 @@
}
},
{
- "id": 18341,
+ "id": 18810,
"properties": {
"east": "tall",
"north": "tall",
@@ -84952,7 +85036,7 @@
}
},
{
- "id": 18342,
+ "id": 18811,
"properties": {
"east": "tall",
"north": "tall",
@@ -84963,7 +85047,7 @@
}
},
{
- "id": 18343,
+ "id": 18812,
"properties": {
"east": "tall",
"north": "tall",
@@ -84974,7 +85058,7 @@
}
},
{
- "id": 18344,
+ "id": 18813,
"properties": {
"east": "tall",
"north": "tall",
@@ -84985,7 +85069,7 @@
}
},
{
- "id": 18345,
+ "id": 18814,
"properties": {
"east": "tall",
"north": "tall",
@@ -84996,7 +85080,7 @@
}
},
{
- "id": 18346,
+ "id": 18815,
"properties": {
"east": "tall",
"north": "tall",
@@ -85007,7 +85091,7 @@
}
},
{
- "id": 18347,
+ "id": 18816,
"properties": {
"east": "tall",
"north": "tall",
@@ -85018,7 +85102,7 @@
}
},
{
- "id": 18348,
+ "id": 18817,
"properties": {
"east": "tall",
"north": "tall",
@@ -85029,7 +85113,7 @@
}
},
{
- "id": 18349,
+ "id": 18818,
"properties": {
"east": "tall",
"north": "tall",
@@ -85040,7 +85124,7 @@
}
},
{
- "id": 18350,
+ "id": 18819,
"properties": {
"east": "tall",
"north": "tall",
@@ -85051,7 +85135,7 @@
}
},
{
- "id": 18351,
+ "id": 18820,
"properties": {
"east": "tall",
"north": "tall",
@@ -85062,7 +85146,7 @@
}
},
{
- "id": 18352,
+ "id": 18821,
"properties": {
"east": "tall",
"north": "tall",
@@ -85073,7 +85157,7 @@
}
},
{
- "id": 18353,
+ "id": 18822,
"properties": {
"east": "tall",
"north": "tall",
@@ -85084,7 +85168,7 @@
}
},
{
- "id": 18354,
+ "id": 18823,
"properties": {
"east": "tall",
"north": "tall",
@@ -85095,7 +85179,7 @@
}
},
{
- "id": 18355,
+ "id": 18824,
"properties": {
"east": "tall",
"north": "tall",
@@ -85106,7 +85190,7 @@
}
},
{
- "id": 18356,
+ "id": 18825,
"properties": {
"east": "tall",
"north": "tall",
@@ -85117,7 +85201,7 @@
}
},
{
- "id": 18357,
+ "id": 18826,
"properties": {
"east": "tall",
"north": "tall",
@@ -85128,7 +85212,7 @@
}
},
{
- "id": 18358,
+ "id": 18827,
"properties": {
"east": "tall",
"north": "tall",
@@ -85139,7 +85223,7 @@
}
},
{
- "id": 18359,
+ "id": 18828,
"properties": {
"east": "tall",
"north": "tall",
@@ -85150,7 +85234,7 @@
}
},
{
- "id": 18360,
+ "id": 18829,
"properties": {
"east": "tall",
"north": "tall",
@@ -85161,7 +85245,7 @@
}
},
{
- "id": 18361,
+ "id": 18830,
"properties": {
"east": "tall",
"north": "tall",
@@ -85172,7 +85256,7 @@
}
},
{
- "id": 18362,
+ "id": 18831,
"properties": {
"east": "tall",
"north": "tall",
@@ -85183,7 +85267,7 @@
}
},
{
- "id": 18363,
+ "id": 18832,
"properties": {
"east": "tall",
"north": "tall",
@@ -85194,7 +85278,7 @@
}
},
{
- "id": 18364,
+ "id": 18833,
"properties": {
"east": "tall",
"north": "tall",
@@ -85205,7 +85289,7 @@
}
},
{
- "id": 18365,
+ "id": 18834,
"properties": {
"east": "tall",
"north": "tall",
@@ -85216,7 +85300,7 @@
}
},
{
- "id": 18366,
+ "id": 18835,
"properties": {
"east": "tall",
"north": "tall",
@@ -85227,7 +85311,7 @@
}
},
{
- "id": 18367,
+ "id": 18836,
"properties": {
"east": "tall",
"north": "tall",
@@ -85238,7 +85322,7 @@
}
},
{
- "id": 18368,
+ "id": 18837,
"properties": {
"east": "tall",
"north": "tall",
@@ -85249,7 +85333,7 @@
}
},
{
- "id": 18369,
+ "id": 18838,
"properties": {
"east": "tall",
"north": "tall",
@@ -85260,7 +85344,7 @@
}
},
{
- "id": 18370,
+ "id": 18839,
"properties": {
"east": "tall",
"north": "tall",
@@ -85271,7 +85355,7 @@
}
},
{
- "id": 18371,
+ "id": 18840,
"properties": {
"east": "tall",
"north": "tall",
@@ -85303,7 +85387,7 @@
"states": [
{
"default": true,
- "id": 12513
+ "id": 12982
}
]
},
@@ -85328,7 +85412,7 @@
},
"states": [
{
- "id": 523,
+ "id": 566,
"properties": {
"facing": "north",
"triggered": "true"
@@ -85336,77 +85420,77 @@
},
{
"default": true,
- "id": 524,
+ "id": 567,
"properties": {
"facing": "north",
"triggered": "false"
}
},
{
- "id": 525,
+ "id": 568,
"properties": {
"facing": "east",
"triggered": "true"
}
},
{
- "id": 526,
+ "id": 569,
"properties": {
"facing": "east",
"triggered": "false"
}
},
{
- "id": 527,
+ "id": 570,
"properties": {
"facing": "south",
"triggered": "true"
}
},
{
- "id": 528,
+ "id": 571,
"properties": {
"facing": "south",
"triggered": "false"
}
},
{
- "id": 529,
+ "id": 572,
"properties": {
"facing": "west",
"triggered": "true"
}
},
{
- "id": 530,
+ "id": 573,
"properties": {
"facing": "west",
"triggered": "false"
}
},
{
- "id": 531,
+ "id": 574,
"properties": {
"facing": "up",
"triggered": "true"
}
},
{
- "id": 532,
+ "id": 575,
"properties": {
"facing": "up",
"triggered": "false"
}
},
{
- "id": 533,
+ "id": 576,
"properties": {
"facing": "down",
"triggered": "true"
}
},
{
- "id": 534,
+ "id": 577,
"properties": {
"facing": "down",
"triggered": "false"
@@ -85422,7 +85506,7 @@
"states": [
{
"default": true,
- "id": 7416
+ "id": 7646
}
]
},
@@ -85458,112 +85542,112 @@
},
"states": [
{
- "id": 9027,
+ "id": 9282,
"properties": {
"powered": "true",
"rotation": "0"
}
},
{
- "id": 9028,
+ "id": 9283,
"properties": {
"powered": "true",
"rotation": "1"
}
},
{
- "id": 9029,
+ "id": 9284,
"properties": {
"powered": "true",
"rotation": "2"
}
},
{
- "id": 9030,
+ "id": 9285,
"properties": {
"powered": "true",
"rotation": "3"
}
},
{
- "id": 9031,
+ "id": 9286,
"properties": {
"powered": "true",
"rotation": "4"
}
},
{
- "id": 9032,
+ "id": 9287,
"properties": {
"powered": "true",
"rotation": "5"
}
},
{
- "id": 9033,
+ "id": 9288,
"properties": {
"powered": "true",
"rotation": "6"
}
},
{
- "id": 9034,
+ "id": 9289,
"properties": {
"powered": "true",
"rotation": "7"
}
},
{
- "id": 9035,
+ "id": 9290,
"properties": {
"powered": "true",
"rotation": "8"
}
},
{
- "id": 9036,
+ "id": 9291,
"properties": {
"powered": "true",
"rotation": "9"
}
},
{
- "id": 9037,
+ "id": 9292,
"properties": {
"powered": "true",
"rotation": "10"
}
},
{
- "id": 9038,
+ "id": 9293,
"properties": {
"powered": "true",
"rotation": "11"
}
},
{
- "id": 9039,
+ "id": 9294,
"properties": {
"powered": "true",
"rotation": "12"
}
},
{
- "id": 9040,
+ "id": 9295,
"properties": {
"powered": "true",
"rotation": "13"
}
},
{
- "id": 9041,
+ "id": 9296,
"properties": {
"powered": "true",
"rotation": "14"
}
},
{
- "id": 9042,
+ "id": 9297,
"properties": {
"powered": "true",
"rotation": "15"
@@ -85571,112 +85655,112 @@
},
{
"default": true,
- "id": 9043,
+ "id": 9298,
"properties": {
"powered": "false",
"rotation": "0"
}
},
{
- "id": 9044,
+ "id": 9299,
"properties": {
"powered": "false",
"rotation": "1"
}
},
{
- "id": 9045,
+ "id": 9300,
"properties": {
"powered": "false",
"rotation": "2"
}
},
{
- "id": 9046,
+ "id": 9301,
"properties": {
"powered": "false",
"rotation": "3"
}
},
{
- "id": 9047,
+ "id": 9302,
"properties": {
"powered": "false",
"rotation": "4"
}
},
{
- "id": 9048,
+ "id": 9303,
"properties": {
"powered": "false",
"rotation": "5"
}
},
{
- "id": 9049,
+ "id": 9304,
"properties": {
"powered": "false",
"rotation": "6"
}
},
{
- "id": 9050,
+ "id": 9305,
"properties": {
"powered": "false",
"rotation": "7"
}
},
{
- "id": 9051,
+ "id": 9306,
"properties": {
"powered": "false",
"rotation": "8"
}
},
{
- "id": 9052,
+ "id": 9307,
"properties": {
"powered": "false",
"rotation": "9"
}
},
{
- "id": 9053,
+ "id": 9308,
"properties": {
"powered": "false",
"rotation": "10"
}
},
{
- "id": 9054,
+ "id": 9309,
"properties": {
"powered": "false",
"rotation": "11"
}
},
{
- "id": 9055,
+ "id": 9310,
"properties": {
"powered": "false",
"rotation": "12"
}
},
{
- "id": 9056,
+ "id": 9311,
"properties": {
"powered": "false",
"rotation": "13"
}
},
{
- "id": 9057,
+ "id": 9312,
"properties": {
"powered": "false",
"rotation": "14"
}
},
{
- "id": 9058,
+ "id": 9313,
"properties": {
"powered": "false",
"rotation": "15"
@@ -85704,7 +85788,7 @@
},
"states": [
{
- "id": 9059,
+ "id": 9314,
"properties": {
"facing": "north",
"powered": "true"
@@ -85712,49 +85796,49 @@
},
{
"default": true,
- "id": 9060,
+ "id": 9315,
"properties": {
"facing": "north",
"powered": "false"
}
},
{
- "id": 9061,
+ "id": 9316,
"properties": {
"facing": "south",
"powered": "true"
}
},
{
- "id": 9062,
+ "id": 9317,
"properties": {
"facing": "south",
"powered": "false"
}
},
{
- "id": 9063,
+ "id": 9318,
"properties": {
"facing": "west",
"powered": "true"
}
},
{
- "id": 9064,
+ "id": 9319,
"properties": {
"facing": "west",
"powered": "false"
}
},
{
- "id": 9065,
+ "id": 9320,
"properties": {
"facing": "east",
"powered": "true"
}
},
{
- "id": 9066,
+ "id": 9321,
"properties": {
"facing": "east",
"powered": "false"
@@ -85770,7 +85854,7 @@
"states": [
{
"default": true,
- "id": 12787
+ "id": 13256
}
]
},
@@ -85782,7 +85866,7 @@
"states": [
{
"default": true,
- "id": 24768
+ "id": 25237
}
]
},
@@ -85807,7 +85891,7 @@
},
"states": [
{
- "id": 9344,
+ "id": 9599,
"properties": {
"facing": "north",
"triggered": "true"
@@ -85815,77 +85899,77 @@
},
{
"default": true,
- "id": 9345,
+ "id": 9600,
"properties": {
"facing": "north",
"triggered": "false"
}
},
{
- "id": 9346,
+ "id": 9601,
"properties": {
"facing": "east",
"triggered": "true"
}
},
{
- "id": 9347,
+ "id": 9602,
"properties": {
"facing": "east",
"triggered": "false"
}
},
{
- "id": 9348,
+ "id": 9603,
"properties": {
"facing": "south",
"triggered": "true"
}
},
{
- "id": 9349,
+ "id": 9604,
"properties": {
"facing": "south",
"triggered": "false"
}
},
{
- "id": 9350,
+ "id": 9605,
"properties": {
"facing": "west",
"triggered": "true"
}
},
{
- "id": 9351,
+ "id": 9606,
"properties": {
"facing": "west",
"triggered": "false"
}
},
{
- "id": 9352,
+ "id": 9607,
"properties": {
"facing": "up",
"triggered": "true"
}
},
{
- "id": 9353,
+ "id": 9608,
"properties": {
"facing": "up",
"triggered": "false"
}
},
{
- "id": 9354,
+ "id": 9609,
"properties": {
"facing": "down",
"triggered": "true"
}
},
{
- "id": 9355,
+ "id": 9610,
"properties": {
"facing": "down",
"triggered": "false"
@@ -85901,7 +85985,7 @@
"states": [
{
"default": true,
- "id": 7665
+ "id": 7895
}
]
},
@@ -85918,7 +86002,7 @@
"states": [
{
"default": true,
- "id": 7511
+ "id": 7741
}
]
},
@@ -85930,7 +86014,7 @@
"states": [
{
"default": true,
- "id": 7389
+ "id": 7619
}
]
},
@@ -85942,7 +86026,7 @@
"states": [
{
"default": true,
- "id": 12514
+ "id": 12983
}
]
},
@@ -85954,7 +86038,7 @@
"states": [
{
"default": true,
- "id": 7406
+ "id": 7636
}
]
},
@@ -85977,28 +86061,28 @@
},
"states": [
{
- "id": 7407,
+ "id": 7637,
"properties": {
"eye": "true",
"facing": "north"
}
},
{
- "id": 7408,
+ "id": 7638,
"properties": {
"eye": "true",
"facing": "south"
}
},
{
- "id": 7409,
+ "id": 7639,
"properties": {
"eye": "true",
"facing": "west"
}
},
{
- "id": 7410,
+ "id": 7640,
"properties": {
"eye": "true",
"facing": "east"
@@ -86006,28 +86090,28 @@
},
{
"default": true,
- "id": 7411,
+ "id": 7641,
"properties": {
"eye": "false",
"facing": "north"
}
},
{
- "id": 7412,
+ "id": 7642,
"properties": {
"eye": "false",
"facing": "south"
}
},
{
- "id": 7413,
+ "id": 7643,
"properties": {
"eye": "false",
"facing": "west"
}
},
{
- "id": 7414,
+ "id": 7644,
"properties": {
"eye": "false",
"facing": "east"
@@ -86052,38 +86136,38 @@
},
"states": [
{
- "id": 12334,
+ "id": 12803,
"properties": {
"facing": "north"
}
},
{
- "id": 12335,
+ "id": 12804,
"properties": {
"facing": "east"
}
},
{
- "id": 12336,
+ "id": 12805,
"properties": {
"facing": "south"
}
},
{
- "id": 12337,
+ "id": 12806,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12338,
+ "id": 12807,
"properties": {
"facing": "up"
}
},
{
- "id": 12339,
+ "id": 12808,
"properties": {
"facing": "down"
}
@@ -86098,7 +86182,7 @@
"states": [
{
"default": true,
- "id": 7415
+ "id": 7645
}
]
},
@@ -86120,21 +86204,21 @@
},
"states": [
{
- "id": 14112,
+ "id": 14581,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 14113,
+ "id": 14582,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 14114,
+ "id": 14583,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -86142,21 +86226,21 @@
},
{
"default": true,
- "id": 14115,
+ "id": 14584,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 14116,
+ "id": 14585,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 14117,
+ "id": 14586,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -86197,7 +86281,7 @@
},
"states": [
{
- "id": 13362,
+ "id": 13831,
"properties": {
"facing": "north",
"half": "top",
@@ -86206,7 +86290,7 @@
}
},
{
- "id": 13363,
+ "id": 13832,
"properties": {
"facing": "north",
"half": "top",
@@ -86215,7 +86299,7 @@
}
},
{
- "id": 13364,
+ "id": 13833,
"properties": {
"facing": "north",
"half": "top",
@@ -86224,7 +86308,7 @@
}
},
{
- "id": 13365,
+ "id": 13834,
"properties": {
"facing": "north",
"half": "top",
@@ -86233,7 +86317,7 @@
}
},
{
- "id": 13366,
+ "id": 13835,
"properties": {
"facing": "north",
"half": "top",
@@ -86242,7 +86326,7 @@
}
},
{
- "id": 13367,
+ "id": 13836,
"properties": {
"facing": "north",
"half": "top",
@@ -86251,7 +86335,7 @@
}
},
{
- "id": 13368,
+ "id": 13837,
"properties": {
"facing": "north",
"half": "top",
@@ -86260,7 +86344,7 @@
}
},
{
- "id": 13369,
+ "id": 13838,
"properties": {
"facing": "north",
"half": "top",
@@ -86269,7 +86353,7 @@
}
},
{
- "id": 13370,
+ "id": 13839,
"properties": {
"facing": "north",
"half": "top",
@@ -86278,7 +86362,7 @@
}
},
{
- "id": 13371,
+ "id": 13840,
"properties": {
"facing": "north",
"half": "top",
@@ -86287,7 +86371,7 @@
}
},
{
- "id": 13372,
+ "id": 13841,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86297,7 +86381,7 @@
},
{
"default": true,
- "id": 13373,
+ "id": 13842,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86306,7 +86390,7 @@
}
},
{
- "id": 13374,
+ "id": 13843,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86315,7 +86399,7 @@
}
},
{
- "id": 13375,
+ "id": 13844,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86324,7 +86408,7 @@
}
},
{
- "id": 13376,
+ "id": 13845,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86333,7 +86417,7 @@
}
},
{
- "id": 13377,
+ "id": 13846,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86342,7 +86426,7 @@
}
},
{
- "id": 13378,
+ "id": 13847,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86351,7 +86435,7 @@
}
},
{
- "id": 13379,
+ "id": 13848,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86360,7 +86444,7 @@
}
},
{
- "id": 13380,
+ "id": 13849,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86369,7 +86453,7 @@
}
},
{
- "id": 13381,
+ "id": 13850,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86378,7 +86462,7 @@
}
},
{
- "id": 13382,
+ "id": 13851,
"properties": {
"facing": "south",
"half": "top",
@@ -86387,7 +86471,7 @@
}
},
{
- "id": 13383,
+ "id": 13852,
"properties": {
"facing": "south",
"half": "top",
@@ -86396,7 +86480,7 @@
}
},
{
- "id": 13384,
+ "id": 13853,
"properties": {
"facing": "south",
"half": "top",
@@ -86405,7 +86489,7 @@
}
},
{
- "id": 13385,
+ "id": 13854,
"properties": {
"facing": "south",
"half": "top",
@@ -86414,7 +86498,7 @@
}
},
{
- "id": 13386,
+ "id": 13855,
"properties": {
"facing": "south",
"half": "top",
@@ -86423,7 +86507,7 @@
}
},
{
- "id": 13387,
+ "id": 13856,
"properties": {
"facing": "south",
"half": "top",
@@ -86432,7 +86516,7 @@
}
},
{
- "id": 13388,
+ "id": 13857,
"properties": {
"facing": "south",
"half": "top",
@@ -86441,7 +86525,7 @@
}
},
{
- "id": 13389,
+ "id": 13858,
"properties": {
"facing": "south",
"half": "top",
@@ -86450,7 +86534,7 @@
}
},
{
- "id": 13390,
+ "id": 13859,
"properties": {
"facing": "south",
"half": "top",
@@ -86459,7 +86543,7 @@
}
},
{
- "id": 13391,
+ "id": 13860,
"properties": {
"facing": "south",
"half": "top",
@@ -86468,7 +86552,7 @@
}
},
{
- "id": 13392,
+ "id": 13861,
"properties": {
"facing": "south",
"half": "bottom",
@@ -86477,7 +86561,7 @@
}
},
{
- "id": 13393,
+ "id": 13862,
"properties": {
"facing": "south",
"half": "bottom",
@@ -86486,7 +86570,7 @@
}
},
{
- "id": 13394,
+ "id": 13863,
"properties": {
"facing": "south",
"half": "bottom",
@@ -86495,7 +86579,7 @@
}
},
{
- "id": 13395,
+ "id": 13864,
"properties": {
"facing": "south",
"half": "bottom",
@@ -86504,7 +86588,7 @@
}
},
{
- "id": 13396,
+ "id": 13865,
"properties": {
"facing": "south",
"half": "bottom",
@@ -86513,7 +86597,7 @@
}
},
{
- "id": 13397,
+ "id": 13866,
"properties": {
"facing": "south",
"half": "bottom",
@@ -86522,7 +86606,7 @@
}
},
{
- "id": 13398,
+ "id": 13867,
"properties": {
"facing": "south",
"half": "bottom",
@@ -86531,7 +86615,7 @@
}
},
{
- "id": 13399,
+ "id": 13868,
"properties": {
"facing": "south",
"half": "bottom",
@@ -86540,7 +86624,7 @@
}
},
{
- "id": 13400,
+ "id": 13869,
"properties": {
"facing": "south",
"half": "bottom",
@@ -86549,7 +86633,7 @@
}
},
{
- "id": 13401,
+ "id": 13870,
"properties": {
"facing": "south",
"half": "bottom",
@@ -86558,7 +86642,7 @@
}
},
{
- "id": 13402,
+ "id": 13871,
"properties": {
"facing": "west",
"half": "top",
@@ -86567,7 +86651,7 @@
}
},
{
- "id": 13403,
+ "id": 13872,
"properties": {
"facing": "west",
"half": "top",
@@ -86576,7 +86660,7 @@
}
},
{
- "id": 13404,
+ "id": 13873,
"properties": {
"facing": "west",
"half": "top",
@@ -86585,7 +86669,7 @@
}
},
{
- "id": 13405,
+ "id": 13874,
"properties": {
"facing": "west",
"half": "top",
@@ -86594,7 +86678,7 @@
}
},
{
- "id": 13406,
+ "id": 13875,
"properties": {
"facing": "west",
"half": "top",
@@ -86603,7 +86687,7 @@
}
},
{
- "id": 13407,
+ "id": 13876,
"properties": {
"facing": "west",
"half": "top",
@@ -86612,7 +86696,7 @@
}
},
{
- "id": 13408,
+ "id": 13877,
"properties": {
"facing": "west",
"half": "top",
@@ -86621,7 +86705,7 @@
}
},
{
- "id": 13409,
+ "id": 13878,
"properties": {
"facing": "west",
"half": "top",
@@ -86630,7 +86714,7 @@
}
},
{
- "id": 13410,
+ "id": 13879,
"properties": {
"facing": "west",
"half": "top",
@@ -86639,7 +86723,7 @@
}
},
{
- "id": 13411,
+ "id": 13880,
"properties": {
"facing": "west",
"half": "top",
@@ -86648,7 +86732,7 @@
}
},
{
- "id": 13412,
+ "id": 13881,
"properties": {
"facing": "west",
"half": "bottom",
@@ -86657,7 +86741,7 @@
}
},
{
- "id": 13413,
+ "id": 13882,
"properties": {
"facing": "west",
"half": "bottom",
@@ -86666,7 +86750,7 @@
}
},
{
- "id": 13414,
+ "id": 13883,
"properties": {
"facing": "west",
"half": "bottom",
@@ -86675,7 +86759,7 @@
}
},
{
- "id": 13415,
+ "id": 13884,
"properties": {
"facing": "west",
"half": "bottom",
@@ -86684,7 +86768,7 @@
}
},
{
- "id": 13416,
+ "id": 13885,
"properties": {
"facing": "west",
"half": "bottom",
@@ -86693,7 +86777,7 @@
}
},
{
- "id": 13417,
+ "id": 13886,
"properties": {
"facing": "west",
"half": "bottom",
@@ -86702,7 +86786,7 @@
}
},
{
- "id": 13418,
+ "id": 13887,
"properties": {
"facing": "west",
"half": "bottom",
@@ -86711,7 +86795,7 @@
}
},
{
- "id": 13419,
+ "id": 13888,
"properties": {
"facing": "west",
"half": "bottom",
@@ -86720,7 +86804,7 @@
}
},
{
- "id": 13420,
+ "id": 13889,
"properties": {
"facing": "west",
"half": "bottom",
@@ -86729,7 +86813,7 @@
}
},
{
- "id": 13421,
+ "id": 13890,
"properties": {
"facing": "west",
"half": "bottom",
@@ -86738,7 +86822,7 @@
}
},
{
- "id": 13422,
+ "id": 13891,
"properties": {
"facing": "east",
"half": "top",
@@ -86747,7 +86831,7 @@
}
},
{
- "id": 13423,
+ "id": 13892,
"properties": {
"facing": "east",
"half": "top",
@@ -86756,7 +86840,7 @@
}
},
{
- "id": 13424,
+ "id": 13893,
"properties": {
"facing": "east",
"half": "top",
@@ -86765,7 +86849,7 @@
}
},
{
- "id": 13425,
+ "id": 13894,
"properties": {
"facing": "east",
"half": "top",
@@ -86774,7 +86858,7 @@
}
},
{
- "id": 13426,
+ "id": 13895,
"properties": {
"facing": "east",
"half": "top",
@@ -86783,7 +86867,7 @@
}
},
{
- "id": 13427,
+ "id": 13896,
"properties": {
"facing": "east",
"half": "top",
@@ -86792,7 +86876,7 @@
}
},
{
- "id": 13428,
+ "id": 13897,
"properties": {
"facing": "east",
"half": "top",
@@ -86801,7 +86885,7 @@
}
},
{
- "id": 13429,
+ "id": 13898,
"properties": {
"facing": "east",
"half": "top",
@@ -86810,7 +86894,7 @@
}
},
{
- "id": 13430,
+ "id": 13899,
"properties": {
"facing": "east",
"half": "top",
@@ -86819,7 +86903,7 @@
}
},
{
- "id": 13431,
+ "id": 13900,
"properties": {
"facing": "east",
"half": "top",
@@ -86828,7 +86912,7 @@
}
},
{
- "id": 13432,
+ "id": 13901,
"properties": {
"facing": "east",
"half": "bottom",
@@ -86837,7 +86921,7 @@
}
},
{
- "id": 13433,
+ "id": 13902,
"properties": {
"facing": "east",
"half": "bottom",
@@ -86846,7 +86930,7 @@
}
},
{
- "id": 13434,
+ "id": 13903,
"properties": {
"facing": "east",
"half": "bottom",
@@ -86855,7 +86939,7 @@
}
},
{
- "id": 13435,
+ "id": 13904,
"properties": {
"facing": "east",
"half": "bottom",
@@ -86864,7 +86948,7 @@
}
},
{
- "id": 13436,
+ "id": 13905,
"properties": {
"facing": "east",
"half": "bottom",
@@ -86873,7 +86957,7 @@
}
},
{
- "id": 13437,
+ "id": 13906,
"properties": {
"facing": "east",
"half": "bottom",
@@ -86882,7 +86966,7 @@
}
},
{
- "id": 13438,
+ "id": 13907,
"properties": {
"facing": "east",
"half": "bottom",
@@ -86891,7 +86975,7 @@
}
},
{
- "id": 13439,
+ "id": 13908,
"properties": {
"facing": "east",
"half": "bottom",
@@ -86900,7 +86984,7 @@
}
},
{
- "id": 13440,
+ "id": 13909,
"properties": {
"facing": "east",
"half": "bottom",
@@ -86909,7 +86993,7 @@
}
},
{
- "id": 13441,
+ "id": 13910,
"properties": {
"facing": "east",
"half": "bottom",
@@ -86956,7 +87040,7 @@
},
"states": [
{
- "id": 17724,
+ "id": 18193,
"properties": {
"east": "none",
"north": "none",
@@ -86967,7 +87051,7 @@
}
},
{
- "id": 17725,
+ "id": 18194,
"properties": {
"east": "none",
"north": "none",
@@ -86978,7 +87062,7 @@
}
},
{
- "id": 17726,
+ "id": 18195,
"properties": {
"east": "none",
"north": "none",
@@ -86990,7 +87074,7 @@
},
{
"default": true,
- "id": 17727,
+ "id": 18196,
"properties": {
"east": "none",
"north": "none",
@@ -87001,7 +87085,7 @@
}
},
{
- "id": 17728,
+ "id": 18197,
"properties": {
"east": "none",
"north": "none",
@@ -87012,7 +87096,7 @@
}
},
{
- "id": 17729,
+ "id": 18198,
"properties": {
"east": "none",
"north": "none",
@@ -87023,7 +87107,7 @@
}
},
{
- "id": 17730,
+ "id": 18199,
"properties": {
"east": "none",
"north": "none",
@@ -87034,7 +87118,7 @@
}
},
{
- "id": 17731,
+ "id": 18200,
"properties": {
"east": "none",
"north": "none",
@@ -87045,7 +87129,7 @@
}
},
{
- "id": 17732,
+ "id": 18201,
"properties": {
"east": "none",
"north": "none",
@@ -87056,7 +87140,7 @@
}
},
{
- "id": 17733,
+ "id": 18202,
"properties": {
"east": "none",
"north": "none",
@@ -87067,7 +87151,7 @@
}
},
{
- "id": 17734,
+ "id": 18203,
"properties": {
"east": "none",
"north": "none",
@@ -87078,7 +87162,7 @@
}
},
{
- "id": 17735,
+ "id": 18204,
"properties": {
"east": "none",
"north": "none",
@@ -87089,7 +87173,7 @@
}
},
{
- "id": 17736,
+ "id": 18205,
"properties": {
"east": "none",
"north": "none",
@@ -87100,7 +87184,7 @@
}
},
{
- "id": 17737,
+ "id": 18206,
"properties": {
"east": "none",
"north": "none",
@@ -87111,7 +87195,7 @@
}
},
{
- "id": 17738,
+ "id": 18207,
"properties": {
"east": "none",
"north": "none",
@@ -87122,7 +87206,7 @@
}
},
{
- "id": 17739,
+ "id": 18208,
"properties": {
"east": "none",
"north": "none",
@@ -87133,7 +87217,7 @@
}
},
{
- "id": 17740,
+ "id": 18209,
"properties": {
"east": "none",
"north": "none",
@@ -87144,7 +87228,7 @@
}
},
{
- "id": 17741,
+ "id": 18210,
"properties": {
"east": "none",
"north": "none",
@@ -87155,7 +87239,7 @@
}
},
{
- "id": 17742,
+ "id": 18211,
"properties": {
"east": "none",
"north": "none",
@@ -87166,7 +87250,7 @@
}
},
{
- "id": 17743,
+ "id": 18212,
"properties": {
"east": "none",
"north": "none",
@@ -87177,7 +87261,7 @@
}
},
{
- "id": 17744,
+ "id": 18213,
"properties": {
"east": "none",
"north": "none",
@@ -87188,7 +87272,7 @@
}
},
{
- "id": 17745,
+ "id": 18214,
"properties": {
"east": "none",
"north": "none",
@@ -87199,7 +87283,7 @@
}
},
{
- "id": 17746,
+ "id": 18215,
"properties": {
"east": "none",
"north": "none",
@@ -87210,7 +87294,7 @@
}
},
{
- "id": 17747,
+ "id": 18216,
"properties": {
"east": "none",
"north": "none",
@@ -87221,7 +87305,7 @@
}
},
{
- "id": 17748,
+ "id": 18217,
"properties": {
"east": "none",
"north": "none",
@@ -87232,7 +87316,7 @@
}
},
{
- "id": 17749,
+ "id": 18218,
"properties": {
"east": "none",
"north": "none",
@@ -87243,7 +87327,7 @@
}
},
{
- "id": 17750,
+ "id": 18219,
"properties": {
"east": "none",
"north": "none",
@@ -87254,7 +87338,7 @@
}
},
{
- "id": 17751,
+ "id": 18220,
"properties": {
"east": "none",
"north": "none",
@@ -87265,7 +87349,7 @@
}
},
{
- "id": 17752,
+ "id": 18221,
"properties": {
"east": "none",
"north": "none",
@@ -87276,7 +87360,7 @@
}
},
{
- "id": 17753,
+ "id": 18222,
"properties": {
"east": "none",
"north": "none",
@@ -87287,7 +87371,7 @@
}
},
{
- "id": 17754,
+ "id": 18223,
"properties": {
"east": "none",
"north": "none",
@@ -87298,7 +87382,7 @@
}
},
{
- "id": 17755,
+ "id": 18224,
"properties": {
"east": "none",
"north": "none",
@@ -87309,7 +87393,7 @@
}
},
{
- "id": 17756,
+ "id": 18225,
"properties": {
"east": "none",
"north": "none",
@@ -87320,7 +87404,7 @@
}
},
{
- "id": 17757,
+ "id": 18226,
"properties": {
"east": "none",
"north": "none",
@@ -87331,7 +87415,7 @@
}
},
{
- "id": 17758,
+ "id": 18227,
"properties": {
"east": "none",
"north": "none",
@@ -87342,7 +87426,7 @@
}
},
{
- "id": 17759,
+ "id": 18228,
"properties": {
"east": "none",
"north": "none",
@@ -87353,7 +87437,7 @@
}
},
{
- "id": 17760,
+ "id": 18229,
"properties": {
"east": "none",
"north": "low",
@@ -87364,7 +87448,7 @@
}
},
{
- "id": 17761,
+ "id": 18230,
"properties": {
"east": "none",
"north": "low",
@@ -87375,7 +87459,7 @@
}
},
{
- "id": 17762,
+ "id": 18231,
"properties": {
"east": "none",
"north": "low",
@@ -87386,7 +87470,7 @@
}
},
{
- "id": 17763,
+ "id": 18232,
"properties": {
"east": "none",
"north": "low",
@@ -87397,7 +87481,7 @@
}
},
{
- "id": 17764,
+ "id": 18233,
"properties": {
"east": "none",
"north": "low",
@@ -87408,7 +87492,7 @@
}
},
{
- "id": 17765,
+ "id": 18234,
"properties": {
"east": "none",
"north": "low",
@@ -87419,7 +87503,7 @@
}
},
{
- "id": 17766,
+ "id": 18235,
"properties": {
"east": "none",
"north": "low",
@@ -87430,7 +87514,7 @@
}
},
{
- "id": 17767,
+ "id": 18236,
"properties": {
"east": "none",
"north": "low",
@@ -87441,7 +87525,7 @@
}
},
{
- "id": 17768,
+ "id": 18237,
"properties": {
"east": "none",
"north": "low",
@@ -87452,7 +87536,7 @@
}
},
{
- "id": 17769,
+ "id": 18238,
"properties": {
"east": "none",
"north": "low",
@@ -87463,7 +87547,7 @@
}
},
{
- "id": 17770,
+ "id": 18239,
"properties": {
"east": "none",
"north": "low",
@@ -87474,7 +87558,7 @@
}
},
{
- "id": 17771,
+ "id": 18240,
"properties": {
"east": "none",
"north": "low",
@@ -87485,7 +87569,7 @@
}
},
{
- "id": 17772,
+ "id": 18241,
"properties": {
"east": "none",
"north": "low",
@@ -87496,7 +87580,7 @@
}
},
{
- "id": 17773,
+ "id": 18242,
"properties": {
"east": "none",
"north": "low",
@@ -87507,7 +87591,7 @@
}
},
{
- "id": 17774,
+ "id": 18243,
"properties": {
"east": "none",
"north": "low",
@@ -87518,7 +87602,7 @@
}
},
{
- "id": 17775,
+ "id": 18244,
"properties": {
"east": "none",
"north": "low",
@@ -87529,7 +87613,7 @@
}
},
{
- "id": 17776,
+ "id": 18245,
"properties": {
"east": "none",
"north": "low",
@@ -87540,7 +87624,7 @@
}
},
{
- "id": 17777,
+ "id": 18246,
"properties": {
"east": "none",
"north": "low",
@@ -87551,7 +87635,7 @@
}
},
{
- "id": 17778,
+ "id": 18247,
"properties": {
"east": "none",
"north": "low",
@@ -87562,7 +87646,7 @@
}
},
{
- "id": 17779,
+ "id": 18248,
"properties": {
"east": "none",
"north": "low",
@@ -87573,7 +87657,7 @@
}
},
{
- "id": 17780,
+ "id": 18249,
"properties": {
"east": "none",
"north": "low",
@@ -87584,7 +87668,7 @@
}
},
{
- "id": 17781,
+ "id": 18250,
"properties": {
"east": "none",
"north": "low",
@@ -87595,7 +87679,7 @@
}
},
{
- "id": 17782,
+ "id": 18251,
"properties": {
"east": "none",
"north": "low",
@@ -87606,7 +87690,7 @@
}
},
{
- "id": 17783,
+ "id": 18252,
"properties": {
"east": "none",
"north": "low",
@@ -87617,7 +87701,7 @@
}
},
{
- "id": 17784,
+ "id": 18253,
"properties": {
"east": "none",
"north": "low",
@@ -87628,7 +87712,7 @@
}
},
{
- "id": 17785,
+ "id": 18254,
"properties": {
"east": "none",
"north": "low",
@@ -87639,7 +87723,7 @@
}
},
{
- "id": 17786,
+ "id": 18255,
"properties": {
"east": "none",
"north": "low",
@@ -87650,7 +87734,7 @@
}
},
{
- "id": 17787,
+ "id": 18256,
"properties": {
"east": "none",
"north": "low",
@@ -87661,7 +87745,7 @@
}
},
{
- "id": 17788,
+ "id": 18257,
"properties": {
"east": "none",
"north": "low",
@@ -87672,7 +87756,7 @@
}
},
{
- "id": 17789,
+ "id": 18258,
"properties": {
"east": "none",
"north": "low",
@@ -87683,7 +87767,7 @@
}
},
{
- "id": 17790,
+ "id": 18259,
"properties": {
"east": "none",
"north": "low",
@@ -87694,7 +87778,7 @@
}
},
{
- "id": 17791,
+ "id": 18260,
"properties": {
"east": "none",
"north": "low",
@@ -87705,7 +87789,7 @@
}
},
{
- "id": 17792,
+ "id": 18261,
"properties": {
"east": "none",
"north": "low",
@@ -87716,7 +87800,7 @@
}
},
{
- "id": 17793,
+ "id": 18262,
"properties": {
"east": "none",
"north": "low",
@@ -87727,7 +87811,7 @@
}
},
{
- "id": 17794,
+ "id": 18263,
"properties": {
"east": "none",
"north": "low",
@@ -87738,7 +87822,7 @@
}
},
{
- "id": 17795,
+ "id": 18264,
"properties": {
"east": "none",
"north": "low",
@@ -87749,7 +87833,7 @@
}
},
{
- "id": 17796,
+ "id": 18265,
"properties": {
"east": "none",
"north": "tall",
@@ -87760,7 +87844,7 @@
}
},
{
- "id": 17797,
+ "id": 18266,
"properties": {
"east": "none",
"north": "tall",
@@ -87771,7 +87855,7 @@
}
},
{
- "id": 17798,
+ "id": 18267,
"properties": {
"east": "none",
"north": "tall",
@@ -87782,7 +87866,7 @@
}
},
{
- "id": 17799,
+ "id": 18268,
"properties": {
"east": "none",
"north": "tall",
@@ -87793,7 +87877,7 @@
}
},
{
- "id": 17800,
+ "id": 18269,
"properties": {
"east": "none",
"north": "tall",
@@ -87804,7 +87888,7 @@
}
},
{
- "id": 17801,
+ "id": 18270,
"properties": {
"east": "none",
"north": "tall",
@@ -87815,7 +87899,7 @@
}
},
{
- "id": 17802,
+ "id": 18271,
"properties": {
"east": "none",
"north": "tall",
@@ -87826,7 +87910,7 @@
}
},
{
- "id": 17803,
+ "id": 18272,
"properties": {
"east": "none",
"north": "tall",
@@ -87837,7 +87921,7 @@
}
},
{
- "id": 17804,
+ "id": 18273,
"properties": {
"east": "none",
"north": "tall",
@@ -87848,7 +87932,7 @@
}
},
{
- "id": 17805,
+ "id": 18274,
"properties": {
"east": "none",
"north": "tall",
@@ -87859,7 +87943,7 @@
}
},
{
- "id": 17806,
+ "id": 18275,
"properties": {
"east": "none",
"north": "tall",
@@ -87870,7 +87954,7 @@
}
},
{
- "id": 17807,
+ "id": 18276,
"properties": {
"east": "none",
"north": "tall",
@@ -87881,7 +87965,7 @@
}
},
{
- "id": 17808,
+ "id": 18277,
"properties": {
"east": "none",
"north": "tall",
@@ -87892,7 +87976,7 @@
}
},
{
- "id": 17809,
+ "id": 18278,
"properties": {
"east": "none",
"north": "tall",
@@ -87903,7 +87987,7 @@
}
},
{
- "id": 17810,
+ "id": 18279,
"properties": {
"east": "none",
"north": "tall",
@@ -87914,7 +87998,7 @@
}
},
{
- "id": 17811,
+ "id": 18280,
"properties": {
"east": "none",
"north": "tall",
@@ -87925,7 +88009,7 @@
}
},
{
- "id": 17812,
+ "id": 18281,
"properties": {
"east": "none",
"north": "tall",
@@ -87936,7 +88020,7 @@
}
},
{
- "id": 17813,
+ "id": 18282,
"properties": {
"east": "none",
"north": "tall",
@@ -87947,7 +88031,7 @@
}
},
{
- "id": 17814,
+ "id": 18283,
"properties": {
"east": "none",
"north": "tall",
@@ -87958,7 +88042,7 @@
}
},
{
- "id": 17815,
+ "id": 18284,
"properties": {
"east": "none",
"north": "tall",
@@ -87969,7 +88053,7 @@
}
},
{
- "id": 17816,
+ "id": 18285,
"properties": {
"east": "none",
"north": "tall",
@@ -87980,7 +88064,7 @@
}
},
{
- "id": 17817,
+ "id": 18286,
"properties": {
"east": "none",
"north": "tall",
@@ -87991,7 +88075,7 @@
}
},
{
- "id": 17818,
+ "id": 18287,
"properties": {
"east": "none",
"north": "tall",
@@ -88002,7 +88086,7 @@
}
},
{
- "id": 17819,
+ "id": 18288,
"properties": {
"east": "none",
"north": "tall",
@@ -88013,7 +88097,7 @@
}
},
{
- "id": 17820,
+ "id": 18289,
"properties": {
"east": "none",
"north": "tall",
@@ -88024,7 +88108,7 @@
}
},
{
- "id": 17821,
+ "id": 18290,
"properties": {
"east": "none",
"north": "tall",
@@ -88035,7 +88119,7 @@
}
},
{
- "id": 17822,
+ "id": 18291,
"properties": {
"east": "none",
"north": "tall",
@@ -88046,7 +88130,7 @@
}
},
{
- "id": 17823,
+ "id": 18292,
"properties": {
"east": "none",
"north": "tall",
@@ -88057,7 +88141,7 @@
}
},
{
- "id": 17824,
+ "id": 18293,
"properties": {
"east": "none",
"north": "tall",
@@ -88068,7 +88152,7 @@
}
},
{
- "id": 17825,
+ "id": 18294,
"properties": {
"east": "none",
"north": "tall",
@@ -88079,7 +88163,7 @@
}
},
{
- "id": 17826,
+ "id": 18295,
"properties": {
"east": "none",
"north": "tall",
@@ -88090,7 +88174,7 @@
}
},
{
- "id": 17827,
+ "id": 18296,
"properties": {
"east": "none",
"north": "tall",
@@ -88101,7 +88185,7 @@
}
},
{
- "id": 17828,
+ "id": 18297,
"properties": {
"east": "none",
"north": "tall",
@@ -88112,7 +88196,7 @@
}
},
{
- "id": 17829,
+ "id": 18298,
"properties": {
"east": "none",
"north": "tall",
@@ -88123,7 +88207,7 @@
}
},
{
- "id": 17830,
+ "id": 18299,
"properties": {
"east": "none",
"north": "tall",
@@ -88134,7 +88218,7 @@
}
},
{
- "id": 17831,
+ "id": 18300,
"properties": {
"east": "none",
"north": "tall",
@@ -88145,7 +88229,7 @@
}
},
{
- "id": 17832,
+ "id": 18301,
"properties": {
"east": "low",
"north": "none",
@@ -88156,7 +88240,7 @@
}
},
{
- "id": 17833,
+ "id": 18302,
"properties": {
"east": "low",
"north": "none",
@@ -88167,7 +88251,7 @@
}
},
{
- "id": 17834,
+ "id": 18303,
"properties": {
"east": "low",
"north": "none",
@@ -88178,7 +88262,7 @@
}
},
{
- "id": 17835,
+ "id": 18304,
"properties": {
"east": "low",
"north": "none",
@@ -88189,7 +88273,7 @@
}
},
{
- "id": 17836,
+ "id": 18305,
"properties": {
"east": "low",
"north": "none",
@@ -88200,7 +88284,7 @@
}
},
{
- "id": 17837,
+ "id": 18306,
"properties": {
"east": "low",
"north": "none",
@@ -88211,7 +88295,7 @@
}
},
{
- "id": 17838,
+ "id": 18307,
"properties": {
"east": "low",
"north": "none",
@@ -88222,7 +88306,7 @@
}
},
{
- "id": 17839,
+ "id": 18308,
"properties": {
"east": "low",
"north": "none",
@@ -88233,7 +88317,7 @@
}
},
{
- "id": 17840,
+ "id": 18309,
"properties": {
"east": "low",
"north": "none",
@@ -88244,7 +88328,7 @@
}
},
{
- "id": 17841,
+ "id": 18310,
"properties": {
"east": "low",
"north": "none",
@@ -88255,7 +88339,7 @@
}
},
{
- "id": 17842,
+ "id": 18311,
"properties": {
"east": "low",
"north": "none",
@@ -88266,7 +88350,7 @@
}
},
{
- "id": 17843,
+ "id": 18312,
"properties": {
"east": "low",
"north": "none",
@@ -88277,7 +88361,7 @@
}
},
{
- "id": 17844,
+ "id": 18313,
"properties": {
"east": "low",
"north": "none",
@@ -88288,7 +88372,7 @@
}
},
{
- "id": 17845,
+ "id": 18314,
"properties": {
"east": "low",
"north": "none",
@@ -88299,7 +88383,7 @@
}
},
{
- "id": 17846,
+ "id": 18315,
"properties": {
"east": "low",
"north": "none",
@@ -88310,7 +88394,7 @@
}
},
{
- "id": 17847,
+ "id": 18316,
"properties": {
"east": "low",
"north": "none",
@@ -88321,7 +88405,7 @@
}
},
{
- "id": 17848,
+ "id": 18317,
"properties": {
"east": "low",
"north": "none",
@@ -88332,7 +88416,7 @@
}
},
{
- "id": 17849,
+ "id": 18318,
"properties": {
"east": "low",
"north": "none",
@@ -88343,7 +88427,7 @@
}
},
{
- "id": 17850,
+ "id": 18319,
"properties": {
"east": "low",
"north": "none",
@@ -88354,7 +88438,7 @@
}
},
{
- "id": 17851,
+ "id": 18320,
"properties": {
"east": "low",
"north": "none",
@@ -88365,7 +88449,7 @@
}
},
{
- "id": 17852,
+ "id": 18321,
"properties": {
"east": "low",
"north": "none",
@@ -88376,7 +88460,7 @@
}
},
{
- "id": 17853,
+ "id": 18322,
"properties": {
"east": "low",
"north": "none",
@@ -88387,7 +88471,7 @@
}
},
{
- "id": 17854,
+ "id": 18323,
"properties": {
"east": "low",
"north": "none",
@@ -88398,7 +88482,7 @@
}
},
{
- "id": 17855,
+ "id": 18324,
"properties": {
"east": "low",
"north": "none",
@@ -88409,7 +88493,7 @@
}
},
{
- "id": 17856,
+ "id": 18325,
"properties": {
"east": "low",
"north": "none",
@@ -88420,7 +88504,7 @@
}
},
{
- "id": 17857,
+ "id": 18326,
"properties": {
"east": "low",
"north": "none",
@@ -88431,7 +88515,7 @@
}
},
{
- "id": 17858,
+ "id": 18327,
"properties": {
"east": "low",
"north": "none",
@@ -88442,7 +88526,7 @@
}
},
{
- "id": 17859,
+ "id": 18328,
"properties": {
"east": "low",
"north": "none",
@@ -88453,7 +88537,7 @@
}
},
{
- "id": 17860,
+ "id": 18329,
"properties": {
"east": "low",
"north": "none",
@@ -88464,7 +88548,7 @@
}
},
{
- "id": 17861,
+ "id": 18330,
"properties": {
"east": "low",
"north": "none",
@@ -88475,7 +88559,7 @@
}
},
{
- "id": 17862,
+ "id": 18331,
"properties": {
"east": "low",
"north": "none",
@@ -88486,7 +88570,7 @@
}
},
{
- "id": 17863,
+ "id": 18332,
"properties": {
"east": "low",
"north": "none",
@@ -88497,7 +88581,7 @@
}
},
{
- "id": 17864,
+ "id": 18333,
"properties": {
"east": "low",
"north": "none",
@@ -88508,7 +88592,7 @@
}
},
{
- "id": 17865,
+ "id": 18334,
"properties": {
"east": "low",
"north": "none",
@@ -88519,7 +88603,7 @@
}
},
{
- "id": 17866,
+ "id": 18335,
"properties": {
"east": "low",
"north": "none",
@@ -88530,7 +88614,7 @@
}
},
{
- "id": 17867,
+ "id": 18336,
"properties": {
"east": "low",
"north": "none",
@@ -88541,7 +88625,7 @@
}
},
{
- "id": 17868,
+ "id": 18337,
"properties": {
"east": "low",
"north": "low",
@@ -88552,7 +88636,7 @@
}
},
{
- "id": 17869,
+ "id": 18338,
"properties": {
"east": "low",
"north": "low",
@@ -88563,7 +88647,7 @@
}
},
{
- "id": 17870,
+ "id": 18339,
"properties": {
"east": "low",
"north": "low",
@@ -88574,7 +88658,7 @@
}
},
{
- "id": 17871,
+ "id": 18340,
"properties": {
"east": "low",
"north": "low",
@@ -88585,7 +88669,7 @@
}
},
{
- "id": 17872,
+ "id": 18341,
"properties": {
"east": "low",
"north": "low",
@@ -88596,7 +88680,7 @@
}
},
{
- "id": 17873,
+ "id": 18342,
"properties": {
"east": "low",
"north": "low",
@@ -88607,7 +88691,7 @@
}
},
{
- "id": 17874,
+ "id": 18343,
"properties": {
"east": "low",
"north": "low",
@@ -88618,7 +88702,7 @@
}
},
{
- "id": 17875,
+ "id": 18344,
"properties": {
"east": "low",
"north": "low",
@@ -88629,7 +88713,7 @@
}
},
{
- "id": 17876,
+ "id": 18345,
"properties": {
"east": "low",
"north": "low",
@@ -88640,7 +88724,7 @@
}
},
{
- "id": 17877,
+ "id": 18346,
"properties": {
"east": "low",
"north": "low",
@@ -88651,7 +88735,7 @@
}
},
{
- "id": 17878,
+ "id": 18347,
"properties": {
"east": "low",
"north": "low",
@@ -88662,7 +88746,7 @@
}
},
{
- "id": 17879,
+ "id": 18348,
"properties": {
"east": "low",
"north": "low",
@@ -88673,7 +88757,7 @@
}
},
{
- "id": 17880,
+ "id": 18349,
"properties": {
"east": "low",
"north": "low",
@@ -88684,7 +88768,7 @@
}
},
{
- "id": 17881,
+ "id": 18350,
"properties": {
"east": "low",
"north": "low",
@@ -88695,7 +88779,7 @@
}
},
{
- "id": 17882,
+ "id": 18351,
"properties": {
"east": "low",
"north": "low",
@@ -88706,7 +88790,7 @@
}
},
{
- "id": 17883,
+ "id": 18352,
"properties": {
"east": "low",
"north": "low",
@@ -88717,7 +88801,7 @@
}
},
{
- "id": 17884,
+ "id": 18353,
"properties": {
"east": "low",
"north": "low",
@@ -88728,7 +88812,7 @@
}
},
{
- "id": 17885,
+ "id": 18354,
"properties": {
"east": "low",
"north": "low",
@@ -88739,7 +88823,7 @@
}
},
{
- "id": 17886,
+ "id": 18355,
"properties": {
"east": "low",
"north": "low",
@@ -88750,7 +88834,7 @@
}
},
{
- "id": 17887,
+ "id": 18356,
"properties": {
"east": "low",
"north": "low",
@@ -88761,7 +88845,7 @@
}
},
{
- "id": 17888,
+ "id": 18357,
"properties": {
"east": "low",
"north": "low",
@@ -88772,7 +88856,7 @@
}
},
{
- "id": 17889,
+ "id": 18358,
"properties": {
"east": "low",
"north": "low",
@@ -88783,7 +88867,7 @@
}
},
{
- "id": 17890,
+ "id": 18359,
"properties": {
"east": "low",
"north": "low",
@@ -88794,7 +88878,7 @@
}
},
{
- "id": 17891,
+ "id": 18360,
"properties": {
"east": "low",
"north": "low",
@@ -88805,7 +88889,7 @@
}
},
{
- "id": 17892,
+ "id": 18361,
"properties": {
"east": "low",
"north": "low",
@@ -88816,7 +88900,7 @@
}
},
{
- "id": 17893,
+ "id": 18362,
"properties": {
"east": "low",
"north": "low",
@@ -88827,7 +88911,7 @@
}
},
{
- "id": 17894,
+ "id": 18363,
"properties": {
"east": "low",
"north": "low",
@@ -88838,7 +88922,7 @@
}
},
{
- "id": 17895,
+ "id": 18364,
"properties": {
"east": "low",
"north": "low",
@@ -88849,7 +88933,7 @@
}
},
{
- "id": 17896,
+ "id": 18365,
"properties": {
"east": "low",
"north": "low",
@@ -88860,7 +88944,7 @@
}
},
{
- "id": 17897,
+ "id": 18366,
"properties": {
"east": "low",
"north": "low",
@@ -88871,7 +88955,7 @@
}
},
{
- "id": 17898,
+ "id": 18367,
"properties": {
"east": "low",
"north": "low",
@@ -88882,7 +88966,7 @@
}
},
{
- "id": 17899,
+ "id": 18368,
"properties": {
"east": "low",
"north": "low",
@@ -88893,7 +88977,7 @@
}
},
{
- "id": 17900,
+ "id": 18369,
"properties": {
"east": "low",
"north": "low",
@@ -88904,7 +88988,7 @@
}
},
{
- "id": 17901,
+ "id": 18370,
"properties": {
"east": "low",
"north": "low",
@@ -88915,7 +88999,7 @@
}
},
{
- "id": 17902,
+ "id": 18371,
"properties": {
"east": "low",
"north": "low",
@@ -88926,7 +89010,7 @@
}
},
{
- "id": 17903,
+ "id": 18372,
"properties": {
"east": "low",
"north": "low",
@@ -88937,7 +89021,7 @@
}
},
{
- "id": 17904,
+ "id": 18373,
"properties": {
"east": "low",
"north": "tall",
@@ -88948,7 +89032,7 @@
}
},
{
- "id": 17905,
+ "id": 18374,
"properties": {
"east": "low",
"north": "tall",
@@ -88959,7 +89043,7 @@
}
},
{
- "id": 17906,
+ "id": 18375,
"properties": {
"east": "low",
"north": "tall",
@@ -88970,7 +89054,7 @@
}
},
{
- "id": 17907,
+ "id": 18376,
"properties": {
"east": "low",
"north": "tall",
@@ -88981,7 +89065,7 @@
}
},
{
- "id": 17908,
+ "id": 18377,
"properties": {
"east": "low",
"north": "tall",
@@ -88992,7 +89076,7 @@
}
},
{
- "id": 17909,
+ "id": 18378,
"properties": {
"east": "low",
"north": "tall",
@@ -89003,7 +89087,7 @@
}
},
{
- "id": 17910,
+ "id": 18379,
"properties": {
"east": "low",
"north": "tall",
@@ -89014,7 +89098,7 @@
}
},
{
- "id": 17911,
+ "id": 18380,
"properties": {
"east": "low",
"north": "tall",
@@ -89025,7 +89109,7 @@
}
},
{
- "id": 17912,
+ "id": 18381,
"properties": {
"east": "low",
"north": "tall",
@@ -89036,7 +89120,7 @@
}
},
{
- "id": 17913,
+ "id": 18382,
"properties": {
"east": "low",
"north": "tall",
@@ -89047,7 +89131,7 @@
}
},
{
- "id": 17914,
+ "id": 18383,
"properties": {
"east": "low",
"north": "tall",
@@ -89058,7 +89142,7 @@
}
},
{
- "id": 17915,
+ "id": 18384,
"properties": {
"east": "low",
"north": "tall",
@@ -89069,7 +89153,7 @@
}
},
{
- "id": 17916,
+ "id": 18385,
"properties": {
"east": "low",
"north": "tall",
@@ -89080,7 +89164,7 @@
}
},
{
- "id": 17917,
+ "id": 18386,
"properties": {
"east": "low",
"north": "tall",
@@ -89091,7 +89175,7 @@
}
},
{
- "id": 17918,
+ "id": 18387,
"properties": {
"east": "low",
"north": "tall",
@@ -89102,7 +89186,7 @@
}
},
{
- "id": 17919,
+ "id": 18388,
"properties": {
"east": "low",
"north": "tall",
@@ -89113,7 +89197,7 @@
}
},
{
- "id": 17920,
+ "id": 18389,
"properties": {
"east": "low",
"north": "tall",
@@ -89124,7 +89208,7 @@
}
},
{
- "id": 17921,
+ "id": 18390,
"properties": {
"east": "low",
"north": "tall",
@@ -89135,7 +89219,7 @@
}
},
{
- "id": 17922,
+ "id": 18391,
"properties": {
"east": "low",
"north": "tall",
@@ -89146,7 +89230,7 @@
}
},
{
- "id": 17923,
+ "id": 18392,
"properties": {
"east": "low",
"north": "tall",
@@ -89157,7 +89241,7 @@
}
},
{
- "id": 17924,
+ "id": 18393,
"properties": {
"east": "low",
"north": "tall",
@@ -89168,7 +89252,7 @@
}
},
{
- "id": 17925,
+ "id": 18394,
"properties": {
"east": "low",
"north": "tall",
@@ -89179,7 +89263,7 @@
}
},
{
- "id": 17926,
+ "id": 18395,
"properties": {
"east": "low",
"north": "tall",
@@ -89190,7 +89274,7 @@
}
},
{
- "id": 17927,
+ "id": 18396,
"properties": {
"east": "low",
"north": "tall",
@@ -89201,7 +89285,7 @@
}
},
{
- "id": 17928,
+ "id": 18397,
"properties": {
"east": "low",
"north": "tall",
@@ -89212,7 +89296,7 @@
}
},
{
- "id": 17929,
+ "id": 18398,
"properties": {
"east": "low",
"north": "tall",
@@ -89223,7 +89307,7 @@
}
},
{
- "id": 17930,
+ "id": 18399,
"properties": {
"east": "low",
"north": "tall",
@@ -89234,7 +89318,7 @@
}
},
{
- "id": 17931,
+ "id": 18400,
"properties": {
"east": "low",
"north": "tall",
@@ -89245,7 +89329,7 @@
}
},
{
- "id": 17932,
+ "id": 18401,
"properties": {
"east": "low",
"north": "tall",
@@ -89256,7 +89340,7 @@
}
},
{
- "id": 17933,
+ "id": 18402,
"properties": {
"east": "low",
"north": "tall",
@@ -89267,7 +89351,7 @@
}
},
{
- "id": 17934,
+ "id": 18403,
"properties": {
"east": "low",
"north": "tall",
@@ -89278,7 +89362,7 @@
}
},
{
- "id": 17935,
+ "id": 18404,
"properties": {
"east": "low",
"north": "tall",
@@ -89289,7 +89373,7 @@
}
},
{
- "id": 17936,
+ "id": 18405,
"properties": {
"east": "low",
"north": "tall",
@@ -89300,7 +89384,7 @@
}
},
{
- "id": 17937,
+ "id": 18406,
"properties": {
"east": "low",
"north": "tall",
@@ -89311,7 +89395,7 @@
}
},
{
- "id": 17938,
+ "id": 18407,
"properties": {
"east": "low",
"north": "tall",
@@ -89322,7 +89406,7 @@
}
},
{
- "id": 17939,
+ "id": 18408,
"properties": {
"east": "low",
"north": "tall",
@@ -89333,7 +89417,7 @@
}
},
{
- "id": 17940,
+ "id": 18409,
"properties": {
"east": "tall",
"north": "none",
@@ -89344,7 +89428,7 @@
}
},
{
- "id": 17941,
+ "id": 18410,
"properties": {
"east": "tall",
"north": "none",
@@ -89355,7 +89439,7 @@
}
},
{
- "id": 17942,
+ "id": 18411,
"properties": {
"east": "tall",
"north": "none",
@@ -89366,7 +89450,7 @@
}
},
{
- "id": 17943,
+ "id": 18412,
"properties": {
"east": "tall",
"north": "none",
@@ -89377,7 +89461,7 @@
}
},
{
- "id": 17944,
+ "id": 18413,
"properties": {
"east": "tall",
"north": "none",
@@ -89388,7 +89472,7 @@
}
},
{
- "id": 17945,
+ "id": 18414,
"properties": {
"east": "tall",
"north": "none",
@@ -89399,7 +89483,7 @@
}
},
{
- "id": 17946,
+ "id": 18415,
"properties": {
"east": "tall",
"north": "none",
@@ -89410,7 +89494,7 @@
}
},
{
- "id": 17947,
+ "id": 18416,
"properties": {
"east": "tall",
"north": "none",
@@ -89421,7 +89505,7 @@
}
},
{
- "id": 17948,
+ "id": 18417,
"properties": {
"east": "tall",
"north": "none",
@@ -89432,7 +89516,7 @@
}
},
{
- "id": 17949,
+ "id": 18418,
"properties": {
"east": "tall",
"north": "none",
@@ -89443,7 +89527,7 @@
}
},
{
- "id": 17950,
+ "id": 18419,
"properties": {
"east": "tall",
"north": "none",
@@ -89454,7 +89538,7 @@
}
},
{
- "id": 17951,
+ "id": 18420,
"properties": {
"east": "tall",
"north": "none",
@@ -89465,7 +89549,7 @@
}
},
{
- "id": 17952,
+ "id": 18421,
"properties": {
"east": "tall",
"north": "none",
@@ -89476,7 +89560,7 @@
}
},
{
- "id": 17953,
+ "id": 18422,
"properties": {
"east": "tall",
"north": "none",
@@ -89487,7 +89571,7 @@
}
},
{
- "id": 17954,
+ "id": 18423,
"properties": {
"east": "tall",
"north": "none",
@@ -89498,7 +89582,7 @@
}
},
{
- "id": 17955,
+ "id": 18424,
"properties": {
"east": "tall",
"north": "none",
@@ -89509,7 +89593,7 @@
}
},
{
- "id": 17956,
+ "id": 18425,
"properties": {
"east": "tall",
"north": "none",
@@ -89520,7 +89604,7 @@
}
},
{
- "id": 17957,
+ "id": 18426,
"properties": {
"east": "tall",
"north": "none",
@@ -89531,7 +89615,7 @@
}
},
{
- "id": 17958,
+ "id": 18427,
"properties": {
"east": "tall",
"north": "none",
@@ -89542,7 +89626,7 @@
}
},
{
- "id": 17959,
+ "id": 18428,
"properties": {
"east": "tall",
"north": "none",
@@ -89553,7 +89637,7 @@
}
},
{
- "id": 17960,
+ "id": 18429,
"properties": {
"east": "tall",
"north": "none",
@@ -89564,7 +89648,7 @@
}
},
{
- "id": 17961,
+ "id": 18430,
"properties": {
"east": "tall",
"north": "none",
@@ -89575,7 +89659,7 @@
}
},
{
- "id": 17962,
+ "id": 18431,
"properties": {
"east": "tall",
"north": "none",
@@ -89586,7 +89670,7 @@
}
},
{
- "id": 17963,
+ "id": 18432,
"properties": {
"east": "tall",
"north": "none",
@@ -89597,7 +89681,7 @@
}
},
{
- "id": 17964,
+ "id": 18433,
"properties": {
"east": "tall",
"north": "none",
@@ -89608,7 +89692,7 @@
}
},
{
- "id": 17965,
+ "id": 18434,
"properties": {
"east": "tall",
"north": "none",
@@ -89619,7 +89703,7 @@
}
},
{
- "id": 17966,
+ "id": 18435,
"properties": {
"east": "tall",
"north": "none",
@@ -89630,7 +89714,7 @@
}
},
{
- "id": 17967,
+ "id": 18436,
"properties": {
"east": "tall",
"north": "none",
@@ -89641,7 +89725,7 @@
}
},
{
- "id": 17968,
+ "id": 18437,
"properties": {
"east": "tall",
"north": "none",
@@ -89652,7 +89736,7 @@
}
},
{
- "id": 17969,
+ "id": 18438,
"properties": {
"east": "tall",
"north": "none",
@@ -89663,7 +89747,7 @@
}
},
{
- "id": 17970,
+ "id": 18439,
"properties": {
"east": "tall",
"north": "none",
@@ -89674,7 +89758,7 @@
}
},
{
- "id": 17971,
+ "id": 18440,
"properties": {
"east": "tall",
"north": "none",
@@ -89685,7 +89769,7 @@
}
},
{
- "id": 17972,
+ "id": 18441,
"properties": {
"east": "tall",
"north": "none",
@@ -89696,7 +89780,7 @@
}
},
{
- "id": 17973,
+ "id": 18442,
"properties": {
"east": "tall",
"north": "none",
@@ -89707,7 +89791,7 @@
}
},
{
- "id": 17974,
+ "id": 18443,
"properties": {
"east": "tall",
"north": "none",
@@ -89718,7 +89802,7 @@
}
},
{
- "id": 17975,
+ "id": 18444,
"properties": {
"east": "tall",
"north": "none",
@@ -89729,7 +89813,7 @@
}
},
{
- "id": 17976,
+ "id": 18445,
"properties": {
"east": "tall",
"north": "low",
@@ -89740,7 +89824,7 @@
}
},
{
- "id": 17977,
+ "id": 18446,
"properties": {
"east": "tall",
"north": "low",
@@ -89751,7 +89835,7 @@
}
},
{
- "id": 17978,
+ "id": 18447,
"properties": {
"east": "tall",
"north": "low",
@@ -89762,7 +89846,7 @@
}
},
{
- "id": 17979,
+ "id": 18448,
"properties": {
"east": "tall",
"north": "low",
@@ -89773,7 +89857,7 @@
}
},
{
- "id": 17980,
+ "id": 18449,
"properties": {
"east": "tall",
"north": "low",
@@ -89784,7 +89868,7 @@
}
},
{
- "id": 17981,
+ "id": 18450,
"properties": {
"east": "tall",
"north": "low",
@@ -89795,7 +89879,7 @@
}
},
{
- "id": 17982,
+ "id": 18451,
"properties": {
"east": "tall",
"north": "low",
@@ -89806,7 +89890,7 @@
}
},
{
- "id": 17983,
+ "id": 18452,
"properties": {
"east": "tall",
"north": "low",
@@ -89817,7 +89901,7 @@
}
},
{
- "id": 17984,
+ "id": 18453,
"properties": {
"east": "tall",
"north": "low",
@@ -89828,7 +89912,7 @@
}
},
{
- "id": 17985,
+ "id": 18454,
"properties": {
"east": "tall",
"north": "low",
@@ -89839,7 +89923,7 @@
}
},
{
- "id": 17986,
+ "id": 18455,
"properties": {
"east": "tall",
"north": "low",
@@ -89850,7 +89934,7 @@
}
},
{
- "id": 17987,
+ "id": 18456,
"properties": {
"east": "tall",
"north": "low",
@@ -89861,7 +89945,7 @@
}
},
{
- "id": 17988,
+ "id": 18457,
"properties": {
"east": "tall",
"north": "low",
@@ -89872,7 +89956,7 @@
}
},
{
- "id": 17989,
+ "id": 18458,
"properties": {
"east": "tall",
"north": "low",
@@ -89883,7 +89967,7 @@
}
},
{
- "id": 17990,
+ "id": 18459,
"properties": {
"east": "tall",
"north": "low",
@@ -89894,7 +89978,7 @@
}
},
{
- "id": 17991,
+ "id": 18460,
"properties": {
"east": "tall",
"north": "low",
@@ -89905,7 +89989,7 @@
}
},
{
- "id": 17992,
+ "id": 18461,
"properties": {
"east": "tall",
"north": "low",
@@ -89916,7 +90000,7 @@
}
},
{
- "id": 17993,
+ "id": 18462,
"properties": {
"east": "tall",
"north": "low",
@@ -89927,7 +90011,7 @@
}
},
{
- "id": 17994,
+ "id": 18463,
"properties": {
"east": "tall",
"north": "low",
@@ -89938,7 +90022,7 @@
}
},
{
- "id": 17995,
+ "id": 18464,
"properties": {
"east": "tall",
"north": "low",
@@ -89949,7 +90033,7 @@
}
},
{
- "id": 17996,
+ "id": 18465,
"properties": {
"east": "tall",
"north": "low",
@@ -89960,7 +90044,7 @@
}
},
{
- "id": 17997,
+ "id": 18466,
"properties": {
"east": "tall",
"north": "low",
@@ -89971,7 +90055,7 @@
}
},
{
- "id": 17998,
+ "id": 18467,
"properties": {
"east": "tall",
"north": "low",
@@ -89982,7 +90066,7 @@
}
},
{
- "id": 17999,
+ "id": 18468,
"properties": {
"east": "tall",
"north": "low",
@@ -89993,7 +90077,7 @@
}
},
{
- "id": 18000,
+ "id": 18469,
"properties": {
"east": "tall",
"north": "low",
@@ -90004,7 +90088,7 @@
}
},
{
- "id": 18001,
+ "id": 18470,
"properties": {
"east": "tall",
"north": "low",
@@ -90015,7 +90099,7 @@
}
},
{
- "id": 18002,
+ "id": 18471,
"properties": {
"east": "tall",
"north": "low",
@@ -90026,7 +90110,7 @@
}
},
{
- "id": 18003,
+ "id": 18472,
"properties": {
"east": "tall",
"north": "low",
@@ -90037,7 +90121,7 @@
}
},
{
- "id": 18004,
+ "id": 18473,
"properties": {
"east": "tall",
"north": "low",
@@ -90048,7 +90132,7 @@
}
},
{
- "id": 18005,
+ "id": 18474,
"properties": {
"east": "tall",
"north": "low",
@@ -90059,7 +90143,7 @@
}
},
{
- "id": 18006,
+ "id": 18475,
"properties": {
"east": "tall",
"north": "low",
@@ -90070,7 +90154,7 @@
}
},
{
- "id": 18007,
+ "id": 18476,
"properties": {
"east": "tall",
"north": "low",
@@ -90081,7 +90165,7 @@
}
},
{
- "id": 18008,
+ "id": 18477,
"properties": {
"east": "tall",
"north": "low",
@@ -90092,7 +90176,7 @@
}
},
{
- "id": 18009,
+ "id": 18478,
"properties": {
"east": "tall",
"north": "low",
@@ -90103,7 +90187,7 @@
}
},
{
- "id": 18010,
+ "id": 18479,
"properties": {
"east": "tall",
"north": "low",
@@ -90114,7 +90198,7 @@
}
},
{
- "id": 18011,
+ "id": 18480,
"properties": {
"east": "tall",
"north": "low",
@@ -90125,7 +90209,7 @@
}
},
{
- "id": 18012,
+ "id": 18481,
"properties": {
"east": "tall",
"north": "tall",
@@ -90136,7 +90220,7 @@
}
},
{
- "id": 18013,
+ "id": 18482,
"properties": {
"east": "tall",
"north": "tall",
@@ -90147,7 +90231,7 @@
}
},
{
- "id": 18014,
+ "id": 18483,
"properties": {
"east": "tall",
"north": "tall",
@@ -90158,7 +90242,7 @@
}
},
{
- "id": 18015,
+ "id": 18484,
"properties": {
"east": "tall",
"north": "tall",
@@ -90169,7 +90253,7 @@
}
},
{
- "id": 18016,
+ "id": 18485,
"properties": {
"east": "tall",
"north": "tall",
@@ -90180,7 +90264,7 @@
}
},
{
- "id": 18017,
+ "id": 18486,
"properties": {
"east": "tall",
"north": "tall",
@@ -90191,7 +90275,7 @@
}
},
{
- "id": 18018,
+ "id": 18487,
"properties": {
"east": "tall",
"north": "tall",
@@ -90202,7 +90286,7 @@
}
},
{
- "id": 18019,
+ "id": 18488,
"properties": {
"east": "tall",
"north": "tall",
@@ -90213,7 +90297,7 @@
}
},
{
- "id": 18020,
+ "id": 18489,
"properties": {
"east": "tall",
"north": "tall",
@@ -90224,7 +90308,7 @@
}
},
{
- "id": 18021,
+ "id": 18490,
"properties": {
"east": "tall",
"north": "tall",
@@ -90235,7 +90319,7 @@
}
},
{
- "id": 18022,
+ "id": 18491,
"properties": {
"east": "tall",
"north": "tall",
@@ -90246,7 +90330,7 @@
}
},
{
- "id": 18023,
+ "id": 18492,
"properties": {
"east": "tall",
"north": "tall",
@@ -90257,7 +90341,7 @@
}
},
{
- "id": 18024,
+ "id": 18493,
"properties": {
"east": "tall",
"north": "tall",
@@ -90268,7 +90352,7 @@
}
},
{
- "id": 18025,
+ "id": 18494,
"properties": {
"east": "tall",
"north": "tall",
@@ -90279,7 +90363,7 @@
}
},
{
- "id": 18026,
+ "id": 18495,
"properties": {
"east": "tall",
"north": "tall",
@@ -90290,7 +90374,7 @@
}
},
{
- "id": 18027,
+ "id": 18496,
"properties": {
"east": "tall",
"north": "tall",
@@ -90301,7 +90385,7 @@
}
},
{
- "id": 18028,
+ "id": 18497,
"properties": {
"east": "tall",
"north": "tall",
@@ -90312,7 +90396,7 @@
}
},
{
- "id": 18029,
+ "id": 18498,
"properties": {
"east": "tall",
"north": "tall",
@@ -90323,7 +90407,7 @@
}
},
{
- "id": 18030,
+ "id": 18499,
"properties": {
"east": "tall",
"north": "tall",
@@ -90334,7 +90418,7 @@
}
},
{
- "id": 18031,
+ "id": 18500,
"properties": {
"east": "tall",
"north": "tall",
@@ -90345,7 +90429,7 @@
}
},
{
- "id": 18032,
+ "id": 18501,
"properties": {
"east": "tall",
"north": "tall",
@@ -90356,7 +90440,7 @@
}
},
{
- "id": 18033,
+ "id": 18502,
"properties": {
"east": "tall",
"north": "tall",
@@ -90367,7 +90451,7 @@
}
},
{
- "id": 18034,
+ "id": 18503,
"properties": {
"east": "tall",
"north": "tall",
@@ -90378,7 +90462,7 @@
}
},
{
- "id": 18035,
+ "id": 18504,
"properties": {
"east": "tall",
"north": "tall",
@@ -90389,7 +90473,7 @@
}
},
{
- "id": 18036,
+ "id": 18505,
"properties": {
"east": "tall",
"north": "tall",
@@ -90400,7 +90484,7 @@
}
},
{
- "id": 18037,
+ "id": 18506,
"properties": {
"east": "tall",
"north": "tall",
@@ -90411,7 +90495,7 @@
}
},
{
- "id": 18038,
+ "id": 18507,
"properties": {
"east": "tall",
"north": "tall",
@@ -90422,7 +90506,7 @@
}
},
{
- "id": 18039,
+ "id": 18508,
"properties": {
"east": "tall",
"north": "tall",
@@ -90433,7 +90517,7 @@
}
},
{
- "id": 18040,
+ "id": 18509,
"properties": {
"east": "tall",
"north": "tall",
@@ -90444,7 +90528,7 @@
}
},
{
- "id": 18041,
+ "id": 18510,
"properties": {
"east": "tall",
"north": "tall",
@@ -90455,7 +90539,7 @@
}
},
{
- "id": 18042,
+ "id": 18511,
"properties": {
"east": "tall",
"north": "tall",
@@ -90466,7 +90550,7 @@
}
},
{
- "id": 18043,
+ "id": 18512,
"properties": {
"east": "tall",
"north": "tall",
@@ -90477,7 +90561,7 @@
}
},
{
- "id": 18044,
+ "id": 18513,
"properties": {
"east": "tall",
"north": "tall",
@@ -90488,7 +90572,7 @@
}
},
{
- "id": 18045,
+ "id": 18514,
"properties": {
"east": "tall",
"north": "tall",
@@ -90499,7 +90583,7 @@
}
},
{
- "id": 18046,
+ "id": 18515,
"properties": {
"east": "tall",
"north": "tall",
@@ -90510,7 +90594,7 @@
}
},
{
- "id": 18047,
+ "id": 18516,
"properties": {
"east": "tall",
"north": "tall",
@@ -90530,7 +90614,7 @@
"states": [
{
"default": true,
- "id": 12494
+ "id": 12963
}
]
},
@@ -90553,7 +90637,7 @@
},
"states": [
{
- "id": 7513,
+ "id": 7743,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -90561,49 +90645,49 @@
},
{
"default": true,
- "id": 7514,
+ "id": 7744,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 7515,
+ "id": 7745,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 7516,
+ "id": 7746,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 7517,
+ "id": 7747,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 7518,
+ "id": 7748,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 7519,
+ "id": 7749,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 7520,
+ "id": 7750,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -90620,7 +90704,7 @@
"states": [
{
"default": true,
- "id": 22950
+ "id": 23419
}
]
},
@@ -90633,7 +90717,7 @@
"states": [
{
"default": true,
- "id": 22939
+ "id": 23408
}
]
},
@@ -90655,21 +90739,21 @@
},
"states": [
{
- "id": 24696,
+ "id": 25165,
"properties": {
"lit": "true",
"powered": "true"
}
},
{
- "id": 24697,
+ "id": 25166,
"properties": {
"lit": "true",
"powered": "false"
}
},
{
- "id": 24698,
+ "id": 25167,
"properties": {
"lit": "false",
"powered": "true"
@@ -90677,7 +90761,7 @@
},
{
"default": true,
- "id": 24699,
+ "id": 25168,
"properties": {
"lit": "false",
"powered": "false"
@@ -90718,7 +90802,7 @@
},
"states": [
{
- "id": 23716,
+ "id": 24185,
"properties": {
"facing": "north",
"half": "upper",
@@ -90728,7 +90812,7 @@
}
},
{
- "id": 23717,
+ "id": 24186,
"properties": {
"facing": "north",
"half": "upper",
@@ -90738,7 +90822,7 @@
}
},
{
- "id": 23718,
+ "id": 24187,
"properties": {
"facing": "north",
"half": "upper",
@@ -90748,7 +90832,7 @@
}
},
{
- "id": 23719,
+ "id": 24188,
"properties": {
"facing": "north",
"half": "upper",
@@ -90758,7 +90842,7 @@
}
},
{
- "id": 23720,
+ "id": 24189,
"properties": {
"facing": "north",
"half": "upper",
@@ -90768,7 +90852,7 @@
}
},
{
- "id": 23721,
+ "id": 24190,
"properties": {
"facing": "north",
"half": "upper",
@@ -90778,7 +90862,7 @@
}
},
{
- "id": 23722,
+ "id": 24191,
"properties": {
"facing": "north",
"half": "upper",
@@ -90788,7 +90872,7 @@
}
},
{
- "id": 23723,
+ "id": 24192,
"properties": {
"facing": "north",
"half": "upper",
@@ -90798,7 +90882,7 @@
}
},
{
- "id": 23724,
+ "id": 24193,
"properties": {
"facing": "north",
"half": "lower",
@@ -90808,7 +90892,7 @@
}
},
{
- "id": 23725,
+ "id": 24194,
"properties": {
"facing": "north",
"half": "lower",
@@ -90818,7 +90902,7 @@
}
},
{
- "id": 23726,
+ "id": 24195,
"properties": {
"facing": "north",
"half": "lower",
@@ -90829,7 +90913,7 @@
},
{
"default": true,
- "id": 23727,
+ "id": 24196,
"properties": {
"facing": "north",
"half": "lower",
@@ -90839,7 +90923,7 @@
}
},
{
- "id": 23728,
+ "id": 24197,
"properties": {
"facing": "north",
"half": "lower",
@@ -90849,7 +90933,7 @@
}
},
{
- "id": 23729,
+ "id": 24198,
"properties": {
"facing": "north",
"half": "lower",
@@ -90859,7 +90943,7 @@
}
},
{
- "id": 23730,
+ "id": 24199,
"properties": {
"facing": "north",
"half": "lower",
@@ -90869,7 +90953,7 @@
}
},
{
- "id": 23731,
+ "id": 24200,
"properties": {
"facing": "north",
"half": "lower",
@@ -90879,7 +90963,7 @@
}
},
{
- "id": 23732,
+ "id": 24201,
"properties": {
"facing": "south",
"half": "upper",
@@ -90889,7 +90973,7 @@
}
},
{
- "id": 23733,
+ "id": 24202,
"properties": {
"facing": "south",
"half": "upper",
@@ -90899,7 +90983,7 @@
}
},
{
- "id": 23734,
+ "id": 24203,
"properties": {
"facing": "south",
"half": "upper",
@@ -90909,7 +90993,7 @@
}
},
{
- "id": 23735,
+ "id": 24204,
"properties": {
"facing": "south",
"half": "upper",
@@ -90919,7 +91003,7 @@
}
},
{
- "id": 23736,
+ "id": 24205,
"properties": {
"facing": "south",
"half": "upper",
@@ -90929,7 +91013,7 @@
}
},
{
- "id": 23737,
+ "id": 24206,
"properties": {
"facing": "south",
"half": "upper",
@@ -90939,7 +91023,7 @@
}
},
{
- "id": 23738,
+ "id": 24207,
"properties": {
"facing": "south",
"half": "upper",
@@ -90949,7 +91033,7 @@
}
},
{
- "id": 23739,
+ "id": 24208,
"properties": {
"facing": "south",
"half": "upper",
@@ -90959,7 +91043,7 @@
}
},
{
- "id": 23740,
+ "id": 24209,
"properties": {
"facing": "south",
"half": "lower",
@@ -90969,7 +91053,7 @@
}
},
{
- "id": 23741,
+ "id": 24210,
"properties": {
"facing": "south",
"half": "lower",
@@ -90979,7 +91063,7 @@
}
},
{
- "id": 23742,
+ "id": 24211,
"properties": {
"facing": "south",
"half": "lower",
@@ -90989,7 +91073,7 @@
}
},
{
- "id": 23743,
+ "id": 24212,
"properties": {
"facing": "south",
"half": "lower",
@@ -90999,7 +91083,7 @@
}
},
{
- "id": 23744,
+ "id": 24213,
"properties": {
"facing": "south",
"half": "lower",
@@ -91009,7 +91093,7 @@
}
},
{
- "id": 23745,
+ "id": 24214,
"properties": {
"facing": "south",
"half": "lower",
@@ -91019,7 +91103,7 @@
}
},
{
- "id": 23746,
+ "id": 24215,
"properties": {
"facing": "south",
"half": "lower",
@@ -91029,7 +91113,7 @@
}
},
{
- "id": 23747,
+ "id": 24216,
"properties": {
"facing": "south",
"half": "lower",
@@ -91039,7 +91123,7 @@
}
},
{
- "id": 23748,
+ "id": 24217,
"properties": {
"facing": "west",
"half": "upper",
@@ -91049,7 +91133,7 @@
}
},
{
- "id": 23749,
+ "id": 24218,
"properties": {
"facing": "west",
"half": "upper",
@@ -91059,7 +91143,7 @@
}
},
{
- "id": 23750,
+ "id": 24219,
"properties": {
"facing": "west",
"half": "upper",
@@ -91069,7 +91153,7 @@
}
},
{
- "id": 23751,
+ "id": 24220,
"properties": {
"facing": "west",
"half": "upper",
@@ -91079,7 +91163,7 @@
}
},
{
- "id": 23752,
+ "id": 24221,
"properties": {
"facing": "west",
"half": "upper",
@@ -91089,7 +91173,7 @@
}
},
{
- "id": 23753,
+ "id": 24222,
"properties": {
"facing": "west",
"half": "upper",
@@ -91099,7 +91183,7 @@
}
},
{
- "id": 23754,
+ "id": 24223,
"properties": {
"facing": "west",
"half": "upper",
@@ -91109,7 +91193,7 @@
}
},
{
- "id": 23755,
+ "id": 24224,
"properties": {
"facing": "west",
"half": "upper",
@@ -91119,7 +91203,7 @@
}
},
{
- "id": 23756,
+ "id": 24225,
"properties": {
"facing": "west",
"half": "lower",
@@ -91129,7 +91213,7 @@
}
},
{
- "id": 23757,
+ "id": 24226,
"properties": {
"facing": "west",
"half": "lower",
@@ -91139,7 +91223,7 @@
}
},
{
- "id": 23758,
+ "id": 24227,
"properties": {
"facing": "west",
"half": "lower",
@@ -91149,7 +91233,7 @@
}
},
{
- "id": 23759,
+ "id": 24228,
"properties": {
"facing": "west",
"half": "lower",
@@ -91159,7 +91243,7 @@
}
},
{
- "id": 23760,
+ "id": 24229,
"properties": {
"facing": "west",
"half": "lower",
@@ -91169,7 +91253,7 @@
}
},
{
- "id": 23761,
+ "id": 24230,
"properties": {
"facing": "west",
"half": "lower",
@@ -91179,7 +91263,7 @@
}
},
{
- "id": 23762,
+ "id": 24231,
"properties": {
"facing": "west",
"half": "lower",
@@ -91189,7 +91273,7 @@
}
},
{
- "id": 23763,
+ "id": 24232,
"properties": {
"facing": "west",
"half": "lower",
@@ -91199,7 +91283,7 @@
}
},
{
- "id": 23764,
+ "id": 24233,
"properties": {
"facing": "east",
"half": "upper",
@@ -91209,7 +91293,7 @@
}
},
{
- "id": 23765,
+ "id": 24234,
"properties": {
"facing": "east",
"half": "upper",
@@ -91219,7 +91303,7 @@
}
},
{
- "id": 23766,
+ "id": 24235,
"properties": {
"facing": "east",
"half": "upper",
@@ -91229,7 +91313,7 @@
}
},
{
- "id": 23767,
+ "id": 24236,
"properties": {
"facing": "east",
"half": "upper",
@@ -91239,7 +91323,7 @@
}
},
{
- "id": 23768,
+ "id": 24237,
"properties": {
"facing": "east",
"half": "upper",
@@ -91249,7 +91333,7 @@
}
},
{
- "id": 23769,
+ "id": 24238,
"properties": {
"facing": "east",
"half": "upper",
@@ -91259,7 +91343,7 @@
}
},
{
- "id": 23770,
+ "id": 24239,
"properties": {
"facing": "east",
"half": "upper",
@@ -91269,7 +91353,7 @@
}
},
{
- "id": 23771,
+ "id": 24240,
"properties": {
"facing": "east",
"half": "upper",
@@ -91279,7 +91363,7 @@
}
},
{
- "id": 23772,
+ "id": 24241,
"properties": {
"facing": "east",
"half": "lower",
@@ -91289,7 +91373,7 @@
}
},
{
- "id": 23773,
+ "id": 24242,
"properties": {
"facing": "east",
"half": "lower",
@@ -91299,7 +91383,7 @@
}
},
{
- "id": 23774,
+ "id": 24243,
"properties": {
"facing": "east",
"half": "lower",
@@ -91309,7 +91393,7 @@
}
},
{
- "id": 23775,
+ "id": 24244,
"properties": {
"facing": "east",
"half": "lower",
@@ -91319,7 +91403,7 @@
}
},
{
- "id": 23776,
+ "id": 24245,
"properties": {
"facing": "east",
"half": "lower",
@@ -91329,7 +91413,7 @@
}
},
{
- "id": 23777,
+ "id": 24246,
"properties": {
"facing": "east",
"half": "lower",
@@ -91339,7 +91423,7 @@
}
},
{
- "id": 23778,
+ "id": 24247,
"properties": {
"facing": "east",
"half": "lower",
@@ -91349,7 +91433,7 @@
}
},
{
- "id": 23779,
+ "id": 24248,
"properties": {
"facing": "east",
"half": "lower",
@@ -91374,14 +91458,14 @@
},
"states": [
{
- "id": 24678,
+ "id": 25147,
"properties": {
"waterlogged": "true"
}
},
{
"default": true,
- "id": 24679,
+ "id": 25148,
"properties": {
"waterlogged": "false"
}
@@ -91421,7 +91505,7 @@
},
"states": [
{
- "id": 24228,
+ "id": 24697,
"properties": {
"facing": "north",
"half": "top",
@@ -91431,7 +91515,7 @@
}
},
{
- "id": 24229,
+ "id": 24698,
"properties": {
"facing": "north",
"half": "top",
@@ -91441,7 +91525,7 @@
}
},
{
- "id": 24230,
+ "id": 24699,
"properties": {
"facing": "north",
"half": "top",
@@ -91451,7 +91535,7 @@
}
},
{
- "id": 24231,
+ "id": 24700,
"properties": {
"facing": "north",
"half": "top",
@@ -91461,7 +91545,7 @@
}
},
{
- "id": 24232,
+ "id": 24701,
"properties": {
"facing": "north",
"half": "top",
@@ -91471,7 +91555,7 @@
}
},
{
- "id": 24233,
+ "id": 24702,
"properties": {
"facing": "north",
"half": "top",
@@ -91481,7 +91565,7 @@
}
},
{
- "id": 24234,
+ "id": 24703,
"properties": {
"facing": "north",
"half": "top",
@@ -91491,7 +91575,7 @@
}
},
{
- "id": 24235,
+ "id": 24704,
"properties": {
"facing": "north",
"half": "top",
@@ -91501,7 +91585,7 @@
}
},
{
- "id": 24236,
+ "id": 24705,
"properties": {
"facing": "north",
"half": "bottom",
@@ -91511,7 +91595,7 @@
}
},
{
- "id": 24237,
+ "id": 24706,
"properties": {
"facing": "north",
"half": "bottom",
@@ -91521,7 +91605,7 @@
}
},
{
- "id": 24238,
+ "id": 24707,
"properties": {
"facing": "north",
"half": "bottom",
@@ -91531,7 +91615,7 @@
}
},
{
- "id": 24239,
+ "id": 24708,
"properties": {
"facing": "north",
"half": "bottom",
@@ -91541,7 +91625,7 @@
}
},
{
- "id": 24240,
+ "id": 24709,
"properties": {
"facing": "north",
"half": "bottom",
@@ -91551,7 +91635,7 @@
}
},
{
- "id": 24241,
+ "id": 24710,
"properties": {
"facing": "north",
"half": "bottom",
@@ -91561,7 +91645,7 @@
}
},
{
- "id": 24242,
+ "id": 24711,
"properties": {
"facing": "north",
"half": "bottom",
@@ -91572,7 +91656,7 @@
},
{
"default": true,
- "id": 24243,
+ "id": 24712,
"properties": {
"facing": "north",
"half": "bottom",
@@ -91582,7 +91666,7 @@
}
},
{
- "id": 24244,
+ "id": 24713,
"properties": {
"facing": "south",
"half": "top",
@@ -91592,7 +91676,7 @@
}
},
{
- "id": 24245,
+ "id": 24714,
"properties": {
"facing": "south",
"half": "top",
@@ -91602,7 +91686,7 @@
}
},
{
- "id": 24246,
+ "id": 24715,
"properties": {
"facing": "south",
"half": "top",
@@ -91612,7 +91696,7 @@
}
},
{
- "id": 24247,
+ "id": 24716,
"properties": {
"facing": "south",
"half": "top",
@@ -91622,7 +91706,7 @@
}
},
{
- "id": 24248,
+ "id": 24717,
"properties": {
"facing": "south",
"half": "top",
@@ -91632,7 +91716,7 @@
}
},
{
- "id": 24249,
+ "id": 24718,
"properties": {
"facing": "south",
"half": "top",
@@ -91642,7 +91726,7 @@
}
},
{
- "id": 24250,
+ "id": 24719,
"properties": {
"facing": "south",
"half": "top",
@@ -91652,7 +91736,7 @@
}
},
{
- "id": 24251,
+ "id": 24720,
"properties": {
"facing": "south",
"half": "top",
@@ -91662,7 +91746,7 @@
}
},
{
- "id": 24252,
+ "id": 24721,
"properties": {
"facing": "south",
"half": "bottom",
@@ -91672,7 +91756,7 @@
}
},
{
- "id": 24253,
+ "id": 24722,
"properties": {
"facing": "south",
"half": "bottom",
@@ -91682,7 +91766,7 @@
}
},
{
- "id": 24254,
+ "id": 24723,
"properties": {
"facing": "south",
"half": "bottom",
@@ -91692,7 +91776,7 @@
}
},
{
- "id": 24255,
+ "id": 24724,
"properties": {
"facing": "south",
"half": "bottom",
@@ -91702,7 +91786,7 @@
}
},
{
- "id": 24256,
+ "id": 24725,
"properties": {
"facing": "south",
"half": "bottom",
@@ -91712,7 +91796,7 @@
}
},
{
- "id": 24257,
+ "id": 24726,
"properties": {
"facing": "south",
"half": "bottom",
@@ -91722,7 +91806,7 @@
}
},
{
- "id": 24258,
+ "id": 24727,
"properties": {
"facing": "south",
"half": "bottom",
@@ -91732,7 +91816,7 @@
}
},
{
- "id": 24259,
+ "id": 24728,
"properties": {
"facing": "south",
"half": "bottom",
@@ -91742,7 +91826,7 @@
}
},
{
- "id": 24260,
+ "id": 24729,
"properties": {
"facing": "west",
"half": "top",
@@ -91752,7 +91836,7 @@
}
},
{
- "id": 24261,
+ "id": 24730,
"properties": {
"facing": "west",
"half": "top",
@@ -91762,7 +91846,7 @@
}
},
{
- "id": 24262,
+ "id": 24731,
"properties": {
"facing": "west",
"half": "top",
@@ -91772,7 +91856,7 @@
}
},
{
- "id": 24263,
+ "id": 24732,
"properties": {
"facing": "west",
"half": "top",
@@ -91782,7 +91866,7 @@
}
},
{
- "id": 24264,
+ "id": 24733,
"properties": {
"facing": "west",
"half": "top",
@@ -91792,7 +91876,7 @@
}
},
{
- "id": 24265,
+ "id": 24734,
"properties": {
"facing": "west",
"half": "top",
@@ -91802,7 +91886,7 @@
}
},
{
- "id": 24266,
+ "id": 24735,
"properties": {
"facing": "west",
"half": "top",
@@ -91812,7 +91896,7 @@
}
},
{
- "id": 24267,
+ "id": 24736,
"properties": {
"facing": "west",
"half": "top",
@@ -91822,7 +91906,7 @@
}
},
{
- "id": 24268,
+ "id": 24737,
"properties": {
"facing": "west",
"half": "bottom",
@@ -91832,7 +91916,7 @@
}
},
{
- "id": 24269,
+ "id": 24738,
"properties": {
"facing": "west",
"half": "bottom",
@@ -91842,7 +91926,7 @@
}
},
{
- "id": 24270,
+ "id": 24739,
"properties": {
"facing": "west",
"half": "bottom",
@@ -91852,7 +91936,7 @@
}
},
{
- "id": 24271,
+ "id": 24740,
"properties": {
"facing": "west",
"half": "bottom",
@@ -91862,7 +91946,7 @@
}
},
{
- "id": 24272,
+ "id": 24741,
"properties": {
"facing": "west",
"half": "bottom",
@@ -91872,7 +91956,7 @@
}
},
{
- "id": 24273,
+ "id": 24742,
"properties": {
"facing": "west",
"half": "bottom",
@@ -91882,7 +91966,7 @@
}
},
{
- "id": 24274,
+ "id": 24743,
"properties": {
"facing": "west",
"half": "bottom",
@@ -91892,7 +91976,7 @@
}
},
{
- "id": 24275,
+ "id": 24744,
"properties": {
"facing": "west",
"half": "bottom",
@@ -91902,7 +91986,7 @@
}
},
{
- "id": 24276,
+ "id": 24745,
"properties": {
"facing": "east",
"half": "top",
@@ -91912,7 +91996,7 @@
}
},
{
- "id": 24277,
+ "id": 24746,
"properties": {
"facing": "east",
"half": "top",
@@ -91922,7 +92006,7 @@
}
},
{
- "id": 24278,
+ "id": 24747,
"properties": {
"facing": "east",
"half": "top",
@@ -91932,7 +92016,7 @@
}
},
{
- "id": 24279,
+ "id": 24748,
"properties": {
"facing": "east",
"half": "top",
@@ -91942,7 +92026,7 @@
}
},
{
- "id": 24280,
+ "id": 24749,
"properties": {
"facing": "east",
"half": "top",
@@ -91952,7 +92036,7 @@
}
},
{
- "id": 24281,
+ "id": 24750,
"properties": {
"facing": "east",
"half": "top",
@@ -91962,7 +92046,7 @@
}
},
{
- "id": 24282,
+ "id": 24751,
"properties": {
"facing": "east",
"half": "top",
@@ -91972,7 +92056,7 @@
}
},
{
- "id": 24283,
+ "id": 24752,
"properties": {
"facing": "east",
"half": "top",
@@ -91982,7 +92066,7 @@
}
},
{
- "id": 24284,
+ "id": 24753,
"properties": {
"facing": "east",
"half": "bottom",
@@ -91992,7 +92076,7 @@
}
},
{
- "id": 24285,
+ "id": 24754,
"properties": {
"facing": "east",
"half": "bottom",
@@ -92002,7 +92086,7 @@
}
},
{
- "id": 24286,
+ "id": 24755,
"properties": {
"facing": "east",
"half": "bottom",
@@ -92012,7 +92096,7 @@
}
},
{
- "id": 24287,
+ "id": 24756,
"properties": {
"facing": "east",
"half": "bottom",
@@ -92022,7 +92106,7 @@
}
},
{
- "id": 24288,
+ "id": 24757,
"properties": {
"facing": "east",
"half": "bottom",
@@ -92032,7 +92116,7 @@
}
},
{
- "id": 24289,
+ "id": 24758,
"properties": {
"facing": "east",
"half": "bottom",
@@ -92042,7 +92126,7 @@
}
},
{
- "id": 24290,
+ "id": 24759,
"properties": {
"facing": "east",
"half": "bottom",
@@ -92052,7 +92136,7 @@
}
},
{
- "id": 24291,
+ "id": 24760,
"properties": {
"facing": "east",
"half": "bottom",
@@ -92072,7 +92156,7 @@
"states": [
{
"default": true,
- "id": 22946
+ "id": 23415
}
]
},
@@ -92095,21 +92179,21 @@
},
"states": [
{
- "id": 23288,
+ "id": 23757,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 23289,
+ "id": 23758,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 23290,
+ "id": 23759,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -92117,21 +92201,21 @@
},
{
"default": true,
- "id": 23291,
+ "id": 23760,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 23292,
+ "id": 23761,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 23293,
+ "id": 23762,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -92173,7 +92257,7 @@
},
"states": [
{
- "id": 23116,
+ "id": 23585,
"properties": {
"facing": "north",
"half": "top",
@@ -92182,7 +92266,7 @@
}
},
{
- "id": 23117,
+ "id": 23586,
"properties": {
"facing": "north",
"half": "top",
@@ -92191,7 +92275,7 @@
}
},
{
- "id": 23118,
+ "id": 23587,
"properties": {
"facing": "north",
"half": "top",
@@ -92200,7 +92284,7 @@
}
},
{
- "id": 23119,
+ "id": 23588,
"properties": {
"facing": "north",
"half": "top",
@@ -92209,7 +92293,7 @@
}
},
{
- "id": 23120,
+ "id": 23589,
"properties": {
"facing": "north",
"half": "top",
@@ -92218,7 +92302,7 @@
}
},
{
- "id": 23121,
+ "id": 23590,
"properties": {
"facing": "north",
"half": "top",
@@ -92227,7 +92311,7 @@
}
},
{
- "id": 23122,
+ "id": 23591,
"properties": {
"facing": "north",
"half": "top",
@@ -92236,7 +92320,7 @@
}
},
{
- "id": 23123,
+ "id": 23592,
"properties": {
"facing": "north",
"half": "top",
@@ -92245,7 +92329,7 @@
}
},
{
- "id": 23124,
+ "id": 23593,
"properties": {
"facing": "north",
"half": "top",
@@ -92254,7 +92338,7 @@
}
},
{
- "id": 23125,
+ "id": 23594,
"properties": {
"facing": "north",
"half": "top",
@@ -92263,7 +92347,7 @@
}
},
{
- "id": 23126,
+ "id": 23595,
"properties": {
"facing": "north",
"half": "bottom",
@@ -92273,7 +92357,7 @@
},
{
"default": true,
- "id": 23127,
+ "id": 23596,
"properties": {
"facing": "north",
"half": "bottom",
@@ -92282,7 +92366,7 @@
}
},
{
- "id": 23128,
+ "id": 23597,
"properties": {
"facing": "north",
"half": "bottom",
@@ -92291,7 +92375,7 @@
}
},
{
- "id": 23129,
+ "id": 23598,
"properties": {
"facing": "north",
"half": "bottom",
@@ -92300,7 +92384,7 @@
}
},
{
- "id": 23130,
+ "id": 23599,
"properties": {
"facing": "north",
"half": "bottom",
@@ -92309,7 +92393,7 @@
}
},
{
- "id": 23131,
+ "id": 23600,
"properties": {
"facing": "north",
"half": "bottom",
@@ -92318,7 +92402,7 @@
}
},
{
- "id": 23132,
+ "id": 23601,
"properties": {
"facing": "north",
"half": "bottom",
@@ -92327,7 +92411,7 @@
}
},
{
- "id": 23133,
+ "id": 23602,
"properties": {
"facing": "north",
"half": "bottom",
@@ -92336,7 +92420,7 @@
}
},
{
- "id": 23134,
+ "id": 23603,
"properties": {
"facing": "north",
"half": "bottom",
@@ -92345,7 +92429,7 @@
}
},
{
- "id": 23135,
+ "id": 23604,
"properties": {
"facing": "north",
"half": "bottom",
@@ -92354,7 +92438,7 @@
}
},
{
- "id": 23136,
+ "id": 23605,
"properties": {
"facing": "south",
"half": "top",
@@ -92363,7 +92447,7 @@
}
},
{
- "id": 23137,
+ "id": 23606,
"properties": {
"facing": "south",
"half": "top",
@@ -92372,7 +92456,7 @@
}
},
{
- "id": 23138,
+ "id": 23607,
"properties": {
"facing": "south",
"half": "top",
@@ -92381,7 +92465,7 @@
}
},
{
- "id": 23139,
+ "id": 23608,
"properties": {
"facing": "south",
"half": "top",
@@ -92390,7 +92474,7 @@
}
},
{
- "id": 23140,
+ "id": 23609,
"properties": {
"facing": "south",
"half": "top",
@@ -92399,7 +92483,7 @@
}
},
{
- "id": 23141,
+ "id": 23610,
"properties": {
"facing": "south",
"half": "top",
@@ -92408,7 +92492,7 @@
}
},
{
- "id": 23142,
+ "id": 23611,
"properties": {
"facing": "south",
"half": "top",
@@ -92417,7 +92501,7 @@
}
},
{
- "id": 23143,
+ "id": 23612,
"properties": {
"facing": "south",
"half": "top",
@@ -92426,7 +92510,7 @@
}
},
{
- "id": 23144,
+ "id": 23613,
"properties": {
"facing": "south",
"half": "top",
@@ -92435,7 +92519,7 @@
}
},
{
- "id": 23145,
+ "id": 23614,
"properties": {
"facing": "south",
"half": "top",
@@ -92444,7 +92528,7 @@
}
},
{
- "id": 23146,
+ "id": 23615,
"properties": {
"facing": "south",
"half": "bottom",
@@ -92453,7 +92537,7 @@
}
},
{
- "id": 23147,
+ "id": 23616,
"properties": {
"facing": "south",
"half": "bottom",
@@ -92462,7 +92546,7 @@
}
},
{
- "id": 23148,
+ "id": 23617,
"properties": {
"facing": "south",
"half": "bottom",
@@ -92471,7 +92555,7 @@
}
},
{
- "id": 23149,
+ "id": 23618,
"properties": {
"facing": "south",
"half": "bottom",
@@ -92480,7 +92564,7 @@
}
},
{
- "id": 23150,
+ "id": 23619,
"properties": {
"facing": "south",
"half": "bottom",
@@ -92489,7 +92573,7 @@
}
},
{
- "id": 23151,
+ "id": 23620,
"properties": {
"facing": "south",
"half": "bottom",
@@ -92498,7 +92582,7 @@
}
},
{
- "id": 23152,
+ "id": 23621,
"properties": {
"facing": "south",
"half": "bottom",
@@ -92507,7 +92591,7 @@
}
},
{
- "id": 23153,
+ "id": 23622,
"properties": {
"facing": "south",
"half": "bottom",
@@ -92516,7 +92600,7 @@
}
},
{
- "id": 23154,
+ "id": 23623,
"properties": {
"facing": "south",
"half": "bottom",
@@ -92525,7 +92609,7 @@
}
},
{
- "id": 23155,
+ "id": 23624,
"properties": {
"facing": "south",
"half": "bottom",
@@ -92534,7 +92618,7 @@
}
},
{
- "id": 23156,
+ "id": 23625,
"properties": {
"facing": "west",
"half": "top",
@@ -92543,7 +92627,7 @@
}
},
{
- "id": 23157,
+ "id": 23626,
"properties": {
"facing": "west",
"half": "top",
@@ -92552,7 +92636,7 @@
}
},
{
- "id": 23158,
+ "id": 23627,
"properties": {
"facing": "west",
"half": "top",
@@ -92561,7 +92645,7 @@
}
},
{
- "id": 23159,
+ "id": 23628,
"properties": {
"facing": "west",
"half": "top",
@@ -92570,7 +92654,7 @@
}
},
{
- "id": 23160,
+ "id": 23629,
"properties": {
"facing": "west",
"half": "top",
@@ -92579,7 +92663,7 @@
}
},
{
- "id": 23161,
+ "id": 23630,
"properties": {
"facing": "west",
"half": "top",
@@ -92588,7 +92672,7 @@
}
},
{
- "id": 23162,
+ "id": 23631,
"properties": {
"facing": "west",
"half": "top",
@@ -92597,7 +92681,7 @@
}
},
{
- "id": 23163,
+ "id": 23632,
"properties": {
"facing": "west",
"half": "top",
@@ -92606,7 +92690,7 @@
}
},
{
- "id": 23164,
+ "id": 23633,
"properties": {
"facing": "west",
"half": "top",
@@ -92615,7 +92699,7 @@
}
},
{
- "id": 23165,
+ "id": 23634,
"properties": {
"facing": "west",
"half": "top",
@@ -92624,7 +92708,7 @@
}
},
{
- "id": 23166,
+ "id": 23635,
"properties": {
"facing": "west",
"half": "bottom",
@@ -92633,7 +92717,7 @@
}
},
{
- "id": 23167,
+ "id": 23636,
"properties": {
"facing": "west",
"half": "bottom",
@@ -92642,7 +92726,7 @@
}
},
{
- "id": 23168,
+ "id": 23637,
"properties": {
"facing": "west",
"half": "bottom",
@@ -92651,7 +92735,7 @@
}
},
{
- "id": 23169,
+ "id": 23638,
"properties": {
"facing": "west",
"half": "bottom",
@@ -92660,7 +92744,7 @@
}
},
{
- "id": 23170,
+ "id": 23639,
"properties": {
"facing": "west",
"half": "bottom",
@@ -92669,7 +92753,7 @@
}
},
{
- "id": 23171,
+ "id": 23640,
"properties": {
"facing": "west",
"half": "bottom",
@@ -92678,7 +92762,7 @@
}
},
{
- "id": 23172,
+ "id": 23641,
"properties": {
"facing": "west",
"half": "bottom",
@@ -92687,7 +92771,7 @@
}
},
{
- "id": 23173,
+ "id": 23642,
"properties": {
"facing": "west",
"half": "bottom",
@@ -92696,7 +92780,7 @@
}
},
{
- "id": 23174,
+ "id": 23643,
"properties": {
"facing": "west",
"half": "bottom",
@@ -92705,7 +92789,7 @@
}
},
{
- "id": 23175,
+ "id": 23644,
"properties": {
"facing": "west",
"half": "bottom",
@@ -92714,7 +92798,7 @@
}
},
{
- "id": 23176,
+ "id": 23645,
"properties": {
"facing": "east",
"half": "top",
@@ -92723,7 +92807,7 @@
}
},
{
- "id": 23177,
+ "id": 23646,
"properties": {
"facing": "east",
"half": "top",
@@ -92732,7 +92816,7 @@
}
},
{
- "id": 23178,
+ "id": 23647,
"properties": {
"facing": "east",
"half": "top",
@@ -92741,7 +92825,7 @@
}
},
{
- "id": 23179,
+ "id": 23648,
"properties": {
"facing": "east",
"half": "top",
@@ -92750,7 +92834,7 @@
}
},
{
- "id": 23180,
+ "id": 23649,
"properties": {
"facing": "east",
"half": "top",
@@ -92759,7 +92843,7 @@
}
},
{
- "id": 23181,
+ "id": 23650,
"properties": {
"facing": "east",
"half": "top",
@@ -92768,7 +92852,7 @@
}
},
{
- "id": 23182,
+ "id": 23651,
"properties": {
"facing": "east",
"half": "top",
@@ -92777,7 +92861,7 @@
}
},
{
- "id": 23183,
+ "id": 23652,
"properties": {
"facing": "east",
"half": "top",
@@ -92786,7 +92870,7 @@
}
},
{
- "id": 23184,
+ "id": 23653,
"properties": {
"facing": "east",
"half": "top",
@@ -92795,7 +92879,7 @@
}
},
{
- "id": 23185,
+ "id": 23654,
"properties": {
"facing": "east",
"half": "top",
@@ -92804,7 +92888,7 @@
}
},
{
- "id": 23186,
+ "id": 23655,
"properties": {
"facing": "east",
"half": "bottom",
@@ -92813,7 +92897,7 @@
}
},
{
- "id": 23187,
+ "id": 23656,
"properties": {
"facing": "east",
"half": "bottom",
@@ -92822,7 +92906,7 @@
}
},
{
- "id": 23188,
+ "id": 23657,
"properties": {
"facing": "east",
"half": "bottom",
@@ -92831,7 +92915,7 @@
}
},
{
- "id": 23189,
+ "id": 23658,
"properties": {
"facing": "east",
"half": "bottom",
@@ -92840,7 +92924,7 @@
}
},
{
- "id": 23190,
+ "id": 23659,
"properties": {
"facing": "east",
"half": "bottom",
@@ -92849,7 +92933,7 @@
}
},
{
- "id": 23191,
+ "id": 23660,
"properties": {
"facing": "east",
"half": "bottom",
@@ -92858,7 +92942,7 @@
}
},
{
- "id": 23192,
+ "id": 23661,
"properties": {
"facing": "east",
"half": "bottom",
@@ -92867,7 +92951,7 @@
}
},
{
- "id": 23193,
+ "id": 23662,
"properties": {
"facing": "east",
"half": "bottom",
@@ -92876,7 +92960,7 @@
}
},
{
- "id": 23194,
+ "id": 23663,
"properties": {
"facing": "east",
"half": "bottom",
@@ -92885,7 +92969,7 @@
}
},
{
- "id": 23195,
+ "id": 23664,
"properties": {
"facing": "east",
"half": "bottom",
@@ -92915,49 +92999,49 @@
"states": [
{
"default": true,
- "id": 4286,
+ "id": 4338,
"properties": {
"moisture": "0"
}
},
{
- "id": 4287,
+ "id": 4339,
"properties": {
"moisture": "1"
}
},
{
- "id": 4288,
+ "id": 4340,
"properties": {
"moisture": "2"
}
},
{
- "id": 4289,
+ "id": 4341,
"properties": {
"moisture": "3"
}
},
{
- "id": 4290,
+ "id": 4342,
"properties": {
"moisture": "4"
}
},
{
- "id": 4291,
+ "id": 4343,
"properties": {
"moisture": "5"
}
},
{
- "id": 4292,
+ "id": 4344,
"properties": {
"moisture": "6"
}
},
{
- "id": 4293,
+ "id": 4345,
"properties": {
"moisture": "7"
}
@@ -92972,7 +93056,7 @@
"states": [
{
"default": true,
- "id": 2006
+ "id": 2049
}
]
},
@@ -93023,7 +93107,7 @@
},
"states": [
{
- "id": 2360,
+ "id": 2403,
"properties": {
"age": "0",
"east": "true",
@@ -93034,7 +93118,7 @@
}
},
{
- "id": 2361,
+ "id": 2404,
"properties": {
"age": "0",
"east": "true",
@@ -93045,7 +93129,7 @@
}
},
{
- "id": 2362,
+ "id": 2405,
"properties": {
"age": "0",
"east": "true",
@@ -93056,7 +93140,7 @@
}
},
{
- "id": 2363,
+ "id": 2406,
"properties": {
"age": "0",
"east": "true",
@@ -93067,7 +93151,7 @@
}
},
{
- "id": 2364,
+ "id": 2407,
"properties": {
"age": "0",
"east": "true",
@@ -93078,7 +93162,7 @@
}
},
{
- "id": 2365,
+ "id": 2408,
"properties": {
"age": "0",
"east": "true",
@@ -93089,7 +93173,7 @@
}
},
{
- "id": 2366,
+ "id": 2409,
"properties": {
"age": "0",
"east": "true",
@@ -93100,7 +93184,7 @@
}
},
{
- "id": 2367,
+ "id": 2410,
"properties": {
"age": "0",
"east": "true",
@@ -93111,7 +93195,7 @@
}
},
{
- "id": 2368,
+ "id": 2411,
"properties": {
"age": "0",
"east": "true",
@@ -93122,7 +93206,7 @@
}
},
{
- "id": 2369,
+ "id": 2412,
"properties": {
"age": "0",
"east": "true",
@@ -93133,7 +93217,7 @@
}
},
{
- "id": 2370,
+ "id": 2413,
"properties": {
"age": "0",
"east": "true",
@@ -93144,7 +93228,7 @@
}
},
{
- "id": 2371,
+ "id": 2414,
"properties": {
"age": "0",
"east": "true",
@@ -93155,7 +93239,7 @@
}
},
{
- "id": 2372,
+ "id": 2415,
"properties": {
"age": "0",
"east": "true",
@@ -93166,7 +93250,7 @@
}
},
{
- "id": 2373,
+ "id": 2416,
"properties": {
"age": "0",
"east": "true",
@@ -93177,7 +93261,7 @@
}
},
{
- "id": 2374,
+ "id": 2417,
"properties": {
"age": "0",
"east": "true",
@@ -93188,7 +93272,7 @@
}
},
{
- "id": 2375,
+ "id": 2418,
"properties": {
"age": "0",
"east": "true",
@@ -93199,7 +93283,7 @@
}
},
{
- "id": 2376,
+ "id": 2419,
"properties": {
"age": "0",
"east": "false",
@@ -93210,7 +93294,7 @@
}
},
{
- "id": 2377,
+ "id": 2420,
"properties": {
"age": "0",
"east": "false",
@@ -93221,7 +93305,7 @@
}
},
{
- "id": 2378,
+ "id": 2421,
"properties": {
"age": "0",
"east": "false",
@@ -93232,7 +93316,7 @@
}
},
{
- "id": 2379,
+ "id": 2422,
"properties": {
"age": "0",
"east": "false",
@@ -93243,7 +93327,7 @@
}
},
{
- "id": 2380,
+ "id": 2423,
"properties": {
"age": "0",
"east": "false",
@@ -93254,7 +93338,7 @@
}
},
{
- "id": 2381,
+ "id": 2424,
"properties": {
"age": "0",
"east": "false",
@@ -93265,7 +93349,7 @@
}
},
{
- "id": 2382,
+ "id": 2425,
"properties": {
"age": "0",
"east": "false",
@@ -93276,7 +93360,7 @@
}
},
{
- "id": 2383,
+ "id": 2426,
"properties": {
"age": "0",
"east": "false",
@@ -93287,7 +93371,7 @@
}
},
{
- "id": 2384,
+ "id": 2427,
"properties": {
"age": "0",
"east": "false",
@@ -93298,7 +93382,7 @@
}
},
{
- "id": 2385,
+ "id": 2428,
"properties": {
"age": "0",
"east": "false",
@@ -93309,7 +93393,7 @@
}
},
{
- "id": 2386,
+ "id": 2429,
"properties": {
"age": "0",
"east": "false",
@@ -93320,7 +93404,7 @@
}
},
{
- "id": 2387,
+ "id": 2430,
"properties": {
"age": "0",
"east": "false",
@@ -93331,7 +93415,7 @@
}
},
{
- "id": 2388,
+ "id": 2431,
"properties": {
"age": "0",
"east": "false",
@@ -93342,7 +93426,7 @@
}
},
{
- "id": 2389,
+ "id": 2432,
"properties": {
"age": "0",
"east": "false",
@@ -93353,7 +93437,7 @@
}
},
{
- "id": 2390,
+ "id": 2433,
"properties": {
"age": "0",
"east": "false",
@@ -93365,7 +93449,7 @@
},
{
"default": true,
- "id": 2391,
+ "id": 2434,
"properties": {
"age": "0",
"east": "false",
@@ -93375,701 +93459,701 @@
"west": "false"
}
},
- {
- "id": 2392,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2393,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2394,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2395,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2396,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2397,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2398,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2399,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2400,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2401,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2402,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2403,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2404,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2405,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2406,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2407,
- "properties": {
- "age": "1",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2408,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2409,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2410,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2411,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2412,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2413,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2414,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2415,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2416,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2417,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2418,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2419,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2420,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2421,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2422,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2423,
- "properties": {
- "age": "1",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2424,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2425,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2426,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2427,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2428,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2429,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2430,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2431,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2432,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2433,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2434,
- "properties": {
- "age": "2",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
{
"id": 2435,
"properties": {
- "age": "2",
+ "age": "1",
"east": "true",
- "north": "false",
+ "north": "true",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2436,
"properties": {
- "age": "2",
+ "age": "1",
"east": "true",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2437,
"properties": {
- "age": "2",
+ "age": "1",
"east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2438,
"properties": {
- "age": "2",
+ "age": "1",
"east": "true",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2439,
"properties": {
- "age": "2",
+ "age": "1",
"east": "true",
- "north": "false",
+ "north": "true",
"south": "false",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2440,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "true",
- "south": "true",
+ "south": "false",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2441,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
+ "south": "false",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2442,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "true",
- "south": "true",
+ "south": "false",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2443,
"properties": {
- "age": "2",
- "east": "false",
- "north": "true",
+ "age": "1",
+ "east": "true",
+ "north": "false",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2444,
"properties": {
- "age": "2",
- "east": "false",
- "north": "true",
- "south": "false",
+ "age": "1",
+ "east": "true",
+ "north": "false",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2445,
"properties": {
- "age": "2",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
+ "age": "1",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2446,
"properties": {
- "age": "2",
- "east": "false",
- "north": "true",
- "south": "false",
+ "age": "1",
+ "east": "true",
+ "north": "false",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2447,
"properties": {
- "age": "2",
- "east": "false",
- "north": "true",
+ "age": "1",
+ "east": "true",
+ "north": "false",
"south": "false",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2448,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "false",
- "south": "true",
+ "south": "false",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2449,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
+ "south": "false",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2450,
"properties": {
- "age": "2",
- "east": "false",
+ "age": "1",
+ "east": "true",
"north": "false",
- "south": "true",
+ "south": "false",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2451,
"properties": {
- "age": "2",
+ "age": "1",
"east": "false",
- "north": "false",
+ "north": "true",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2452,
"properties": {
- "age": "2",
+ "age": "1",
"east": "false",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2453,
"properties": {
- "age": "2",
+ "age": "1",
"east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2454,
"properties": {
- "age": "2",
+ "age": "1",
"east": "false",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2455,
+ "properties": {
+ "age": "1",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2456,
+ "properties": {
+ "age": "1",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2457,
+ "properties": {
+ "age": "1",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2458,
+ "properties": {
+ "age": "1",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2459,
+ "properties": {
+ "age": "1",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2460,
+ "properties": {
+ "age": "1",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2461,
+ "properties": {
+ "age": "1",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2462,
+ "properties": {
+ "age": "1",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2463,
+ "properties": {
+ "age": "1",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2464,
+ "properties": {
+ "age": "1",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2465,
+ "properties": {
+ "age": "1",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2466,
+ "properties": {
+ "age": "1",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2467,
+ "properties": {
+ "age": "2",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2468,
+ "properties": {
+ "age": "2",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2469,
+ "properties": {
+ "age": "2",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2470,
+ "properties": {
+ "age": "2",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2471,
+ "properties": {
+ "age": "2",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2472,
+ "properties": {
+ "age": "2",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2473,
+ "properties": {
+ "age": "2",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2474,
+ "properties": {
+ "age": "2",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2475,
+ "properties": {
+ "age": "2",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2476,
+ "properties": {
+ "age": "2",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2477,
+ "properties": {
+ "age": "2",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2478,
+ "properties": {
+ "age": "2",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2479,
+ "properties": {
+ "age": "2",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2480,
+ "properties": {
+ "age": "2",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2481,
+ "properties": {
+ "age": "2",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2482,
+ "properties": {
+ "age": "2",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2483,
+ "properties": {
+ "age": "2",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2484,
+ "properties": {
+ "age": "2",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2485,
+ "properties": {
+ "age": "2",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2486,
+ "properties": {
+ "age": "2",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2487,
+ "properties": {
+ "age": "2",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2488,
+ "properties": {
+ "age": "2",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2489,
+ "properties": {
+ "age": "2",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2490,
+ "properties": {
+ "age": "2",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2491,
+ "properties": {
+ "age": "2",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2492,
+ "properties": {
+ "age": "2",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2493,
+ "properties": {
+ "age": "2",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2494,
+ "properties": {
+ "age": "2",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2495,
+ "properties": {
+ "age": "2",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2496,
+ "properties": {
+ "age": "2",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2497,
+ "properties": {
+ "age": "2",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2498,
"properties": {
"age": "2",
"east": "false",
@@ -94079,701 +94163,701 @@
"west": "false"
}
},
- {
- "id": 2456,
- "properties": {
- "age": "3",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2457,
- "properties": {
- "age": "3",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2458,
- "properties": {
- "age": "3",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2459,
- "properties": {
- "age": "3",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2460,
- "properties": {
- "age": "3",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2461,
- "properties": {
- "age": "3",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2462,
- "properties": {
- "age": "3",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2463,
- "properties": {
- "age": "3",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2464,
- "properties": {
- "age": "3",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2465,
- "properties": {
- "age": "3",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2466,
- "properties": {
- "age": "3",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2467,
- "properties": {
- "age": "3",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2468,
- "properties": {
- "age": "3",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2469,
- "properties": {
- "age": "3",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2470,
- "properties": {
- "age": "3",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2471,
- "properties": {
- "age": "3",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2472,
- "properties": {
- "age": "3",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2473,
- "properties": {
- "age": "3",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2474,
- "properties": {
- "age": "3",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2475,
- "properties": {
- "age": "3",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2476,
- "properties": {
- "age": "3",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2477,
- "properties": {
- "age": "3",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2478,
- "properties": {
- "age": "3",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2479,
- "properties": {
- "age": "3",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2480,
- "properties": {
- "age": "3",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2481,
- "properties": {
- "age": "3",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2482,
- "properties": {
- "age": "3",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2483,
- "properties": {
- "age": "3",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2484,
- "properties": {
- "age": "3",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2485,
- "properties": {
- "age": "3",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2486,
- "properties": {
- "age": "3",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2487,
- "properties": {
- "age": "3",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2488,
- "properties": {
- "age": "4",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2489,
- "properties": {
- "age": "4",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2490,
- "properties": {
- "age": "4",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2491,
- "properties": {
- "age": "4",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2492,
- "properties": {
- "age": "4",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2493,
- "properties": {
- "age": "4",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2494,
- "properties": {
- "age": "4",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2495,
- "properties": {
- "age": "4",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2496,
- "properties": {
- "age": "4",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2497,
- "properties": {
- "age": "4",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2498,
- "properties": {
- "age": "4",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
{
"id": 2499,
"properties": {
- "age": "4",
+ "age": "3",
"east": "true",
- "north": "false",
+ "north": "true",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2500,
"properties": {
- "age": "4",
+ "age": "3",
"east": "true",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2501,
"properties": {
- "age": "4",
+ "age": "3",
"east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2502,
"properties": {
- "age": "4",
+ "age": "3",
"east": "true",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2503,
"properties": {
- "age": "4",
+ "age": "3",
"east": "true",
- "north": "false",
+ "north": "true",
"south": "false",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2504,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "true",
- "south": "true",
+ "south": "false",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2505,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
+ "south": "false",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2506,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "true",
- "south": "true",
+ "south": "false",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2507,
"properties": {
- "age": "4",
- "east": "false",
- "north": "true",
+ "age": "3",
+ "east": "true",
+ "north": "false",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2508,
"properties": {
- "age": "4",
- "east": "false",
- "north": "true",
- "south": "false",
+ "age": "3",
+ "east": "true",
+ "north": "false",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2509,
"properties": {
- "age": "4",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
+ "age": "3",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2510,
"properties": {
- "age": "4",
- "east": "false",
- "north": "true",
- "south": "false",
+ "age": "3",
+ "east": "true",
+ "north": "false",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2511,
"properties": {
- "age": "4",
- "east": "false",
- "north": "true",
+ "age": "3",
+ "east": "true",
+ "north": "false",
"south": "false",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2512,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "false",
- "south": "true",
+ "south": "false",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2513,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
+ "south": "false",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2514,
"properties": {
- "age": "4",
- "east": "false",
+ "age": "3",
+ "east": "true",
"north": "false",
- "south": "true",
+ "south": "false",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2515,
"properties": {
- "age": "4",
+ "age": "3",
"east": "false",
- "north": "false",
+ "north": "true",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2516,
"properties": {
- "age": "4",
+ "age": "3",
"east": "false",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2517,
"properties": {
- "age": "4",
+ "age": "3",
"east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2518,
"properties": {
- "age": "4",
+ "age": "3",
"east": "false",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2519,
+ "properties": {
+ "age": "3",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2520,
+ "properties": {
+ "age": "3",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2521,
+ "properties": {
+ "age": "3",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2522,
+ "properties": {
+ "age": "3",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2523,
+ "properties": {
+ "age": "3",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2524,
+ "properties": {
+ "age": "3",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2525,
+ "properties": {
+ "age": "3",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2526,
+ "properties": {
+ "age": "3",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2527,
+ "properties": {
+ "age": "3",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2528,
+ "properties": {
+ "age": "3",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2529,
+ "properties": {
+ "age": "3",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2530,
+ "properties": {
+ "age": "3",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2531,
+ "properties": {
+ "age": "4",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2532,
+ "properties": {
+ "age": "4",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2533,
+ "properties": {
+ "age": "4",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2534,
+ "properties": {
+ "age": "4",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2535,
+ "properties": {
+ "age": "4",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2536,
+ "properties": {
+ "age": "4",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2537,
+ "properties": {
+ "age": "4",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2538,
+ "properties": {
+ "age": "4",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2539,
+ "properties": {
+ "age": "4",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2540,
+ "properties": {
+ "age": "4",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2541,
+ "properties": {
+ "age": "4",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2542,
+ "properties": {
+ "age": "4",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2543,
+ "properties": {
+ "age": "4",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2544,
+ "properties": {
+ "age": "4",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2545,
+ "properties": {
+ "age": "4",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2546,
+ "properties": {
+ "age": "4",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2547,
+ "properties": {
+ "age": "4",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2548,
+ "properties": {
+ "age": "4",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2549,
+ "properties": {
+ "age": "4",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2550,
+ "properties": {
+ "age": "4",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2551,
+ "properties": {
+ "age": "4",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2552,
+ "properties": {
+ "age": "4",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2553,
+ "properties": {
+ "age": "4",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2554,
+ "properties": {
+ "age": "4",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2555,
+ "properties": {
+ "age": "4",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2556,
+ "properties": {
+ "age": "4",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2557,
+ "properties": {
+ "age": "4",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2558,
+ "properties": {
+ "age": "4",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2559,
+ "properties": {
+ "age": "4",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2560,
+ "properties": {
+ "age": "4",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2561,
+ "properties": {
+ "age": "4",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2562,
"properties": {
"age": "4",
"east": "false",
@@ -94783,701 +94867,701 @@
"west": "false"
}
},
- {
- "id": 2520,
- "properties": {
- "age": "5",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2521,
- "properties": {
- "age": "5",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2522,
- "properties": {
- "age": "5",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2523,
- "properties": {
- "age": "5",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2524,
- "properties": {
- "age": "5",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2525,
- "properties": {
- "age": "5",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2526,
- "properties": {
- "age": "5",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2527,
- "properties": {
- "age": "5",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2528,
- "properties": {
- "age": "5",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2529,
- "properties": {
- "age": "5",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2530,
- "properties": {
- "age": "5",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2531,
- "properties": {
- "age": "5",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2532,
- "properties": {
- "age": "5",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2533,
- "properties": {
- "age": "5",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2534,
- "properties": {
- "age": "5",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2535,
- "properties": {
- "age": "5",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2536,
- "properties": {
- "age": "5",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2537,
- "properties": {
- "age": "5",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2538,
- "properties": {
- "age": "5",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2539,
- "properties": {
- "age": "5",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2540,
- "properties": {
- "age": "5",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2541,
- "properties": {
- "age": "5",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2542,
- "properties": {
- "age": "5",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2543,
- "properties": {
- "age": "5",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2544,
- "properties": {
- "age": "5",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2545,
- "properties": {
- "age": "5",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2546,
- "properties": {
- "age": "5",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2547,
- "properties": {
- "age": "5",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2548,
- "properties": {
- "age": "5",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2549,
- "properties": {
- "age": "5",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2550,
- "properties": {
- "age": "5",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2551,
- "properties": {
- "age": "5",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2552,
- "properties": {
- "age": "6",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2553,
- "properties": {
- "age": "6",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2554,
- "properties": {
- "age": "6",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2555,
- "properties": {
- "age": "6",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2556,
- "properties": {
- "age": "6",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2557,
- "properties": {
- "age": "6",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2558,
- "properties": {
- "age": "6",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2559,
- "properties": {
- "age": "6",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2560,
- "properties": {
- "age": "6",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2561,
- "properties": {
- "age": "6",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2562,
- "properties": {
- "age": "6",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
{
"id": 2563,
"properties": {
- "age": "6",
+ "age": "5",
"east": "true",
- "north": "false",
+ "north": "true",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2564,
"properties": {
- "age": "6",
+ "age": "5",
"east": "true",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2565,
"properties": {
- "age": "6",
+ "age": "5",
"east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2566,
"properties": {
- "age": "6",
+ "age": "5",
"east": "true",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2567,
"properties": {
- "age": "6",
+ "age": "5",
"east": "true",
- "north": "false",
+ "north": "true",
"south": "false",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2568,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "true",
- "south": "true",
+ "south": "false",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2569,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
+ "south": "false",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2570,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "true",
- "south": "true",
+ "south": "false",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2571,
"properties": {
- "age": "6",
- "east": "false",
- "north": "true",
+ "age": "5",
+ "east": "true",
+ "north": "false",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2572,
"properties": {
- "age": "6",
- "east": "false",
- "north": "true",
- "south": "false",
+ "age": "5",
+ "east": "true",
+ "north": "false",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2573,
"properties": {
- "age": "6",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
+ "age": "5",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2574,
"properties": {
- "age": "6",
- "east": "false",
- "north": "true",
- "south": "false",
+ "age": "5",
+ "east": "true",
+ "north": "false",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2575,
"properties": {
- "age": "6",
- "east": "false",
- "north": "true",
+ "age": "5",
+ "east": "true",
+ "north": "false",
"south": "false",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2576,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "false",
- "south": "true",
+ "south": "false",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2577,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
+ "south": "false",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2578,
"properties": {
- "age": "6",
- "east": "false",
+ "age": "5",
+ "east": "true",
"north": "false",
- "south": "true",
+ "south": "false",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2579,
"properties": {
- "age": "6",
+ "age": "5",
"east": "false",
- "north": "false",
+ "north": "true",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2580,
"properties": {
- "age": "6",
+ "age": "5",
"east": "false",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2581,
"properties": {
- "age": "6",
+ "age": "5",
"east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2582,
"properties": {
- "age": "6",
+ "age": "5",
"east": "false",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2583,
+ "properties": {
+ "age": "5",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2584,
+ "properties": {
+ "age": "5",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2585,
+ "properties": {
+ "age": "5",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2586,
+ "properties": {
+ "age": "5",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2587,
+ "properties": {
+ "age": "5",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2588,
+ "properties": {
+ "age": "5",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2589,
+ "properties": {
+ "age": "5",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2590,
+ "properties": {
+ "age": "5",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2591,
+ "properties": {
+ "age": "5",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2592,
+ "properties": {
+ "age": "5",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2593,
+ "properties": {
+ "age": "5",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2594,
+ "properties": {
+ "age": "5",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2595,
+ "properties": {
+ "age": "6",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2596,
+ "properties": {
+ "age": "6",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2597,
+ "properties": {
+ "age": "6",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2598,
+ "properties": {
+ "age": "6",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2599,
+ "properties": {
+ "age": "6",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2600,
+ "properties": {
+ "age": "6",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2601,
+ "properties": {
+ "age": "6",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2602,
+ "properties": {
+ "age": "6",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2603,
+ "properties": {
+ "age": "6",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2604,
+ "properties": {
+ "age": "6",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2605,
+ "properties": {
+ "age": "6",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2606,
+ "properties": {
+ "age": "6",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2607,
+ "properties": {
+ "age": "6",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2608,
+ "properties": {
+ "age": "6",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2609,
+ "properties": {
+ "age": "6",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2610,
+ "properties": {
+ "age": "6",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2611,
+ "properties": {
+ "age": "6",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2612,
+ "properties": {
+ "age": "6",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2613,
+ "properties": {
+ "age": "6",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2614,
+ "properties": {
+ "age": "6",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2615,
+ "properties": {
+ "age": "6",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2616,
+ "properties": {
+ "age": "6",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2617,
+ "properties": {
+ "age": "6",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2618,
+ "properties": {
+ "age": "6",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2619,
+ "properties": {
+ "age": "6",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2620,
+ "properties": {
+ "age": "6",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2621,
+ "properties": {
+ "age": "6",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2622,
+ "properties": {
+ "age": "6",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2623,
+ "properties": {
+ "age": "6",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2624,
+ "properties": {
+ "age": "6",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2625,
+ "properties": {
+ "age": "6",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2626,
"properties": {
"age": "6",
"east": "false",
@@ -95487,701 +95571,701 @@
"west": "false"
}
},
- {
- "id": 2584,
- "properties": {
- "age": "7",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2585,
- "properties": {
- "age": "7",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2586,
- "properties": {
- "age": "7",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2587,
- "properties": {
- "age": "7",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2588,
- "properties": {
- "age": "7",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2589,
- "properties": {
- "age": "7",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2590,
- "properties": {
- "age": "7",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2591,
- "properties": {
- "age": "7",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2592,
- "properties": {
- "age": "7",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2593,
- "properties": {
- "age": "7",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2594,
- "properties": {
- "age": "7",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2595,
- "properties": {
- "age": "7",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2596,
- "properties": {
- "age": "7",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2597,
- "properties": {
- "age": "7",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2598,
- "properties": {
- "age": "7",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2599,
- "properties": {
- "age": "7",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2600,
- "properties": {
- "age": "7",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2601,
- "properties": {
- "age": "7",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2602,
- "properties": {
- "age": "7",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2603,
- "properties": {
- "age": "7",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2604,
- "properties": {
- "age": "7",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2605,
- "properties": {
- "age": "7",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2606,
- "properties": {
- "age": "7",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2607,
- "properties": {
- "age": "7",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2608,
- "properties": {
- "age": "7",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2609,
- "properties": {
- "age": "7",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2610,
- "properties": {
- "age": "7",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2611,
- "properties": {
- "age": "7",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2612,
- "properties": {
- "age": "7",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2613,
- "properties": {
- "age": "7",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2614,
- "properties": {
- "age": "7",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2615,
- "properties": {
- "age": "7",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2616,
- "properties": {
- "age": "8",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2617,
- "properties": {
- "age": "8",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2618,
- "properties": {
- "age": "8",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2619,
- "properties": {
- "age": "8",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2620,
- "properties": {
- "age": "8",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2621,
- "properties": {
- "age": "8",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2622,
- "properties": {
- "age": "8",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2623,
- "properties": {
- "age": "8",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2624,
- "properties": {
- "age": "8",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2625,
- "properties": {
- "age": "8",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2626,
- "properties": {
- "age": "8",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
{
"id": 2627,
"properties": {
- "age": "8",
+ "age": "7",
"east": "true",
- "north": "false",
+ "north": "true",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2628,
"properties": {
- "age": "8",
+ "age": "7",
"east": "true",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2629,
"properties": {
- "age": "8",
+ "age": "7",
"east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2630,
"properties": {
- "age": "8",
+ "age": "7",
"east": "true",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2631,
"properties": {
- "age": "8",
+ "age": "7",
"east": "true",
- "north": "false",
+ "north": "true",
"south": "false",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2632,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "true",
- "south": "true",
+ "south": "false",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2633,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
+ "south": "false",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2634,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "true",
- "south": "true",
+ "south": "false",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2635,
"properties": {
- "age": "8",
- "east": "false",
- "north": "true",
+ "age": "7",
+ "east": "true",
+ "north": "false",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2636,
"properties": {
- "age": "8",
- "east": "false",
- "north": "true",
- "south": "false",
+ "age": "7",
+ "east": "true",
+ "north": "false",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2637,
"properties": {
- "age": "8",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
+ "age": "7",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2638,
"properties": {
- "age": "8",
- "east": "false",
- "north": "true",
- "south": "false",
+ "age": "7",
+ "east": "true",
+ "north": "false",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2639,
"properties": {
- "age": "8",
- "east": "false",
- "north": "true",
+ "age": "7",
+ "east": "true",
+ "north": "false",
"south": "false",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2640,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "false",
- "south": "true",
+ "south": "false",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2641,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
+ "south": "false",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2642,
"properties": {
- "age": "8",
- "east": "false",
+ "age": "7",
+ "east": "true",
"north": "false",
- "south": "true",
+ "south": "false",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2643,
"properties": {
- "age": "8",
+ "age": "7",
"east": "false",
- "north": "false",
+ "north": "true",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2644,
"properties": {
- "age": "8",
+ "age": "7",
"east": "false",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2645,
"properties": {
- "age": "8",
+ "age": "7",
"east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2646,
"properties": {
- "age": "8",
+ "age": "7",
"east": "false",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2647,
+ "properties": {
+ "age": "7",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2648,
+ "properties": {
+ "age": "7",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2649,
+ "properties": {
+ "age": "7",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2650,
+ "properties": {
+ "age": "7",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2651,
+ "properties": {
+ "age": "7",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2652,
+ "properties": {
+ "age": "7",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2653,
+ "properties": {
+ "age": "7",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2654,
+ "properties": {
+ "age": "7",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2655,
+ "properties": {
+ "age": "7",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2656,
+ "properties": {
+ "age": "7",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2657,
+ "properties": {
+ "age": "7",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2658,
+ "properties": {
+ "age": "7",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2659,
+ "properties": {
+ "age": "8",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2660,
+ "properties": {
+ "age": "8",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2661,
+ "properties": {
+ "age": "8",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2662,
+ "properties": {
+ "age": "8",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2663,
+ "properties": {
+ "age": "8",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2664,
+ "properties": {
+ "age": "8",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2665,
+ "properties": {
+ "age": "8",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2666,
+ "properties": {
+ "age": "8",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2667,
+ "properties": {
+ "age": "8",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2668,
+ "properties": {
+ "age": "8",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2669,
+ "properties": {
+ "age": "8",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2670,
+ "properties": {
+ "age": "8",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2671,
+ "properties": {
+ "age": "8",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2672,
+ "properties": {
+ "age": "8",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2673,
+ "properties": {
+ "age": "8",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2674,
+ "properties": {
+ "age": "8",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2675,
+ "properties": {
+ "age": "8",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2676,
+ "properties": {
+ "age": "8",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2677,
+ "properties": {
+ "age": "8",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2678,
+ "properties": {
+ "age": "8",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2679,
+ "properties": {
+ "age": "8",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2680,
+ "properties": {
+ "age": "8",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2681,
+ "properties": {
+ "age": "8",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2682,
+ "properties": {
+ "age": "8",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2683,
+ "properties": {
+ "age": "8",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2684,
+ "properties": {
+ "age": "8",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2685,
+ "properties": {
+ "age": "8",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2686,
+ "properties": {
+ "age": "8",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2687,
+ "properties": {
+ "age": "8",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2688,
+ "properties": {
+ "age": "8",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2689,
+ "properties": {
+ "age": "8",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2690,
"properties": {
"age": "8",
"east": "false",
@@ -96191,701 +96275,701 @@
"west": "false"
}
},
- {
- "id": 2648,
- "properties": {
- "age": "9",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2649,
- "properties": {
- "age": "9",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2650,
- "properties": {
- "age": "9",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2651,
- "properties": {
- "age": "9",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2652,
- "properties": {
- "age": "9",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2653,
- "properties": {
- "age": "9",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2654,
- "properties": {
- "age": "9",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2655,
- "properties": {
- "age": "9",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2656,
- "properties": {
- "age": "9",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2657,
- "properties": {
- "age": "9",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2658,
- "properties": {
- "age": "9",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2659,
- "properties": {
- "age": "9",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2660,
- "properties": {
- "age": "9",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2661,
- "properties": {
- "age": "9",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2662,
- "properties": {
- "age": "9",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2663,
- "properties": {
- "age": "9",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2664,
- "properties": {
- "age": "9",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2665,
- "properties": {
- "age": "9",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2666,
- "properties": {
- "age": "9",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2667,
- "properties": {
- "age": "9",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2668,
- "properties": {
- "age": "9",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2669,
- "properties": {
- "age": "9",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2670,
- "properties": {
- "age": "9",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2671,
- "properties": {
- "age": "9",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2672,
- "properties": {
- "age": "9",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2673,
- "properties": {
- "age": "9",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2674,
- "properties": {
- "age": "9",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2675,
- "properties": {
- "age": "9",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2676,
- "properties": {
- "age": "9",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2677,
- "properties": {
- "age": "9",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2678,
- "properties": {
- "age": "9",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2679,
- "properties": {
- "age": "9",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2680,
- "properties": {
- "age": "10",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2681,
- "properties": {
- "age": "10",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2682,
- "properties": {
- "age": "10",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2683,
- "properties": {
- "age": "10",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2684,
- "properties": {
- "age": "10",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2685,
- "properties": {
- "age": "10",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2686,
- "properties": {
- "age": "10",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2687,
- "properties": {
- "age": "10",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2688,
- "properties": {
- "age": "10",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2689,
- "properties": {
- "age": "10",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2690,
- "properties": {
- "age": "10",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
{
"id": 2691,
"properties": {
- "age": "10",
+ "age": "9",
"east": "true",
- "north": "false",
+ "north": "true",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2692,
"properties": {
- "age": "10",
+ "age": "9",
"east": "true",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2693,
"properties": {
- "age": "10",
+ "age": "9",
"east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2694,
"properties": {
- "age": "10",
+ "age": "9",
"east": "true",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2695,
"properties": {
- "age": "10",
+ "age": "9",
"east": "true",
- "north": "false",
+ "north": "true",
"south": "false",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2696,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "true",
- "south": "true",
+ "south": "false",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2697,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
+ "south": "false",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2698,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "true",
- "south": "true",
+ "south": "false",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2699,
"properties": {
- "age": "10",
- "east": "false",
- "north": "true",
+ "age": "9",
+ "east": "true",
+ "north": "false",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2700,
"properties": {
- "age": "10",
- "east": "false",
- "north": "true",
- "south": "false",
+ "age": "9",
+ "east": "true",
+ "north": "false",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2701,
"properties": {
- "age": "10",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
+ "age": "9",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2702,
"properties": {
- "age": "10",
- "east": "false",
- "north": "true",
- "south": "false",
+ "age": "9",
+ "east": "true",
+ "north": "false",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2703,
"properties": {
- "age": "10",
- "east": "false",
- "north": "true",
+ "age": "9",
+ "east": "true",
+ "north": "false",
"south": "false",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2704,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "false",
- "south": "true",
+ "south": "false",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2705,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
+ "south": "false",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2706,
"properties": {
- "age": "10",
- "east": "false",
+ "age": "9",
+ "east": "true",
"north": "false",
- "south": "true",
+ "south": "false",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2707,
"properties": {
- "age": "10",
+ "age": "9",
"east": "false",
- "north": "false",
+ "north": "true",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2708,
"properties": {
- "age": "10",
+ "age": "9",
"east": "false",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2709,
"properties": {
- "age": "10",
+ "age": "9",
"east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2710,
"properties": {
- "age": "10",
+ "age": "9",
"east": "false",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2711,
+ "properties": {
+ "age": "9",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2712,
+ "properties": {
+ "age": "9",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2713,
+ "properties": {
+ "age": "9",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2714,
+ "properties": {
+ "age": "9",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2715,
+ "properties": {
+ "age": "9",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2716,
+ "properties": {
+ "age": "9",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2717,
+ "properties": {
+ "age": "9",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2718,
+ "properties": {
+ "age": "9",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2719,
+ "properties": {
+ "age": "9",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2720,
+ "properties": {
+ "age": "9",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2721,
+ "properties": {
+ "age": "9",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2722,
+ "properties": {
+ "age": "9",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2723,
+ "properties": {
+ "age": "10",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2724,
+ "properties": {
+ "age": "10",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2725,
+ "properties": {
+ "age": "10",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2726,
+ "properties": {
+ "age": "10",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2727,
+ "properties": {
+ "age": "10",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2728,
+ "properties": {
+ "age": "10",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2729,
+ "properties": {
+ "age": "10",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2730,
+ "properties": {
+ "age": "10",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2731,
+ "properties": {
+ "age": "10",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2732,
+ "properties": {
+ "age": "10",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2733,
+ "properties": {
+ "age": "10",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2734,
+ "properties": {
+ "age": "10",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2735,
+ "properties": {
+ "age": "10",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2736,
+ "properties": {
+ "age": "10",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2737,
+ "properties": {
+ "age": "10",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2738,
+ "properties": {
+ "age": "10",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2739,
+ "properties": {
+ "age": "10",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2740,
+ "properties": {
+ "age": "10",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2741,
+ "properties": {
+ "age": "10",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2742,
+ "properties": {
+ "age": "10",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2743,
+ "properties": {
+ "age": "10",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2744,
+ "properties": {
+ "age": "10",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2745,
+ "properties": {
+ "age": "10",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2746,
+ "properties": {
+ "age": "10",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2747,
+ "properties": {
+ "age": "10",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2748,
+ "properties": {
+ "age": "10",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2749,
+ "properties": {
+ "age": "10",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2750,
+ "properties": {
+ "age": "10",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2751,
+ "properties": {
+ "age": "10",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2752,
+ "properties": {
+ "age": "10",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2753,
+ "properties": {
+ "age": "10",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2754,
"properties": {
"age": "10",
"east": "false",
@@ -96895,701 +96979,701 @@
"west": "false"
}
},
- {
- "id": 2712,
- "properties": {
- "age": "11",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2713,
- "properties": {
- "age": "11",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2714,
- "properties": {
- "age": "11",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2715,
- "properties": {
- "age": "11",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2716,
- "properties": {
- "age": "11",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2717,
- "properties": {
- "age": "11",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2718,
- "properties": {
- "age": "11",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2719,
- "properties": {
- "age": "11",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2720,
- "properties": {
- "age": "11",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2721,
- "properties": {
- "age": "11",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2722,
- "properties": {
- "age": "11",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2723,
- "properties": {
- "age": "11",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2724,
- "properties": {
- "age": "11",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2725,
- "properties": {
- "age": "11",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2726,
- "properties": {
- "age": "11",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2727,
- "properties": {
- "age": "11",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2728,
- "properties": {
- "age": "11",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2729,
- "properties": {
- "age": "11",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2730,
- "properties": {
- "age": "11",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2731,
- "properties": {
- "age": "11",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2732,
- "properties": {
- "age": "11",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2733,
- "properties": {
- "age": "11",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2734,
- "properties": {
- "age": "11",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2735,
- "properties": {
- "age": "11",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2736,
- "properties": {
- "age": "11",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2737,
- "properties": {
- "age": "11",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2738,
- "properties": {
- "age": "11",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2739,
- "properties": {
- "age": "11",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2740,
- "properties": {
- "age": "11",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2741,
- "properties": {
- "age": "11",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2742,
- "properties": {
- "age": "11",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2743,
- "properties": {
- "age": "11",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2744,
- "properties": {
- "age": "12",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2745,
- "properties": {
- "age": "12",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2746,
- "properties": {
- "age": "12",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2747,
- "properties": {
- "age": "12",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2748,
- "properties": {
- "age": "12",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2749,
- "properties": {
- "age": "12",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2750,
- "properties": {
- "age": "12",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2751,
- "properties": {
- "age": "12",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2752,
- "properties": {
- "age": "12",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2753,
- "properties": {
- "age": "12",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2754,
- "properties": {
- "age": "12",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
{
"id": 2755,
"properties": {
- "age": "12",
+ "age": "11",
"east": "true",
- "north": "false",
+ "north": "true",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2756,
"properties": {
- "age": "12",
+ "age": "11",
"east": "true",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2757,
"properties": {
- "age": "12",
+ "age": "11",
"east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2758,
"properties": {
- "age": "12",
+ "age": "11",
"east": "true",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2759,
"properties": {
- "age": "12",
+ "age": "11",
"east": "true",
- "north": "false",
+ "north": "true",
"south": "false",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2760,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "true",
- "south": "true",
+ "south": "false",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2761,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
+ "south": "false",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2762,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "true",
- "south": "true",
+ "south": "false",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2763,
"properties": {
- "age": "12",
- "east": "false",
- "north": "true",
+ "age": "11",
+ "east": "true",
+ "north": "false",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2764,
"properties": {
- "age": "12",
- "east": "false",
- "north": "true",
- "south": "false",
+ "age": "11",
+ "east": "true",
+ "north": "false",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2765,
"properties": {
- "age": "12",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
+ "age": "11",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2766,
"properties": {
- "age": "12",
- "east": "false",
- "north": "true",
- "south": "false",
+ "age": "11",
+ "east": "true",
+ "north": "false",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2767,
"properties": {
- "age": "12",
- "east": "false",
- "north": "true",
+ "age": "11",
+ "east": "true",
+ "north": "false",
"south": "false",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2768,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "false",
- "south": "true",
+ "south": "false",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2769,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
+ "south": "false",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2770,
"properties": {
- "age": "12",
- "east": "false",
+ "age": "11",
+ "east": "true",
"north": "false",
- "south": "true",
+ "south": "false",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2771,
"properties": {
- "age": "12",
+ "age": "11",
"east": "false",
- "north": "false",
+ "north": "true",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2772,
"properties": {
- "age": "12",
+ "age": "11",
"east": "false",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2773,
"properties": {
- "age": "12",
+ "age": "11",
"east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2774,
"properties": {
- "age": "12",
+ "age": "11",
"east": "false",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2775,
+ "properties": {
+ "age": "11",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2776,
+ "properties": {
+ "age": "11",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2777,
+ "properties": {
+ "age": "11",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2778,
+ "properties": {
+ "age": "11",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2779,
+ "properties": {
+ "age": "11",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2780,
+ "properties": {
+ "age": "11",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2781,
+ "properties": {
+ "age": "11",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2782,
+ "properties": {
+ "age": "11",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2783,
+ "properties": {
+ "age": "11",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2784,
+ "properties": {
+ "age": "11",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2785,
+ "properties": {
+ "age": "11",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2786,
+ "properties": {
+ "age": "11",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2787,
+ "properties": {
+ "age": "12",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2788,
+ "properties": {
+ "age": "12",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2789,
+ "properties": {
+ "age": "12",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2790,
+ "properties": {
+ "age": "12",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2791,
+ "properties": {
+ "age": "12",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2792,
+ "properties": {
+ "age": "12",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2793,
+ "properties": {
+ "age": "12",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2794,
+ "properties": {
+ "age": "12",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2795,
+ "properties": {
+ "age": "12",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2796,
+ "properties": {
+ "age": "12",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2797,
+ "properties": {
+ "age": "12",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2798,
+ "properties": {
+ "age": "12",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2799,
+ "properties": {
+ "age": "12",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2800,
+ "properties": {
+ "age": "12",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2801,
+ "properties": {
+ "age": "12",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2802,
+ "properties": {
+ "age": "12",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2803,
+ "properties": {
+ "age": "12",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2804,
+ "properties": {
+ "age": "12",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2805,
+ "properties": {
+ "age": "12",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2806,
+ "properties": {
+ "age": "12",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2807,
+ "properties": {
+ "age": "12",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2808,
+ "properties": {
+ "age": "12",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2809,
+ "properties": {
+ "age": "12",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2810,
+ "properties": {
+ "age": "12",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2811,
+ "properties": {
+ "age": "12",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2812,
+ "properties": {
+ "age": "12",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2813,
+ "properties": {
+ "age": "12",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2814,
+ "properties": {
+ "age": "12",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2815,
+ "properties": {
+ "age": "12",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2816,
+ "properties": {
+ "age": "12",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2817,
+ "properties": {
+ "age": "12",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2818,
"properties": {
"age": "12",
"east": "false",
@@ -97599,701 +97683,701 @@
"west": "false"
}
},
- {
- "id": 2776,
- "properties": {
- "age": "13",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2777,
- "properties": {
- "age": "13",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2778,
- "properties": {
- "age": "13",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2779,
- "properties": {
- "age": "13",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2780,
- "properties": {
- "age": "13",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2781,
- "properties": {
- "age": "13",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2782,
- "properties": {
- "age": "13",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2783,
- "properties": {
- "age": "13",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2784,
- "properties": {
- "age": "13",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2785,
- "properties": {
- "age": "13",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2786,
- "properties": {
- "age": "13",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2787,
- "properties": {
- "age": "13",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2788,
- "properties": {
- "age": "13",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2789,
- "properties": {
- "age": "13",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2790,
- "properties": {
- "age": "13",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2791,
- "properties": {
- "age": "13",
- "east": "true",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2792,
- "properties": {
- "age": "13",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2793,
- "properties": {
- "age": "13",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2794,
- "properties": {
- "age": "13",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2795,
- "properties": {
- "age": "13",
- "east": "false",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2796,
- "properties": {
- "age": "13",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2797,
- "properties": {
- "age": "13",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2798,
- "properties": {
- "age": "13",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2799,
- "properties": {
- "age": "13",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2800,
- "properties": {
- "age": "13",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2801,
- "properties": {
- "age": "13",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2802,
- "properties": {
- "age": "13",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2803,
- "properties": {
- "age": "13",
- "east": "false",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2804,
- "properties": {
- "age": "13",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2805,
- "properties": {
- "age": "13",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2806,
- "properties": {
- "age": "13",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2807,
- "properties": {
- "age": "13",
- "east": "false",
- "north": "false",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2808,
- "properties": {
- "age": "14",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2809,
- "properties": {
- "age": "14",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2810,
- "properties": {
- "age": "14",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2811,
- "properties": {
- "age": "14",
- "east": "true",
- "north": "true",
- "south": "true",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2812,
- "properties": {
- "age": "14",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2813,
- "properties": {
- "age": "14",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2814,
- "properties": {
- "age": "14",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "true"
- }
- },
- {
- "id": 2815,
- "properties": {
- "age": "14",
- "east": "true",
- "north": "true",
- "south": "false",
- "up": "false",
- "west": "false"
- }
- },
- {
- "id": 2816,
- "properties": {
- "age": "14",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "true"
- }
- },
- {
- "id": 2817,
- "properties": {
- "age": "14",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
- }
- },
- {
- "id": 2818,
- "properties": {
- "age": "14",
- "east": "true",
- "north": "false",
- "south": "true",
- "up": "false",
- "west": "true"
- }
- },
{
"id": 2819,
"properties": {
- "age": "14",
+ "age": "13",
"east": "true",
- "north": "false",
+ "north": "true",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2820,
"properties": {
- "age": "14",
+ "age": "13",
"east": "true",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2821,
"properties": {
- "age": "14",
+ "age": "13",
"east": "true",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2822,
"properties": {
- "age": "14",
+ "age": "13",
"east": "true",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2823,
"properties": {
- "age": "14",
+ "age": "13",
"east": "true",
- "north": "false",
+ "north": "true",
"south": "false",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2824,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "true",
- "south": "true",
+ "south": "false",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2825,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "true",
- "south": "true",
- "up": "true",
- "west": "false"
+ "south": "false",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2826,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "true",
- "south": "true",
+ "south": "false",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2827,
"properties": {
- "age": "14",
- "east": "false",
- "north": "true",
+ "age": "13",
+ "east": "true",
+ "north": "false",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2828,
"properties": {
- "age": "14",
- "east": "false",
- "north": "true",
- "south": "false",
+ "age": "13",
+ "east": "true",
+ "north": "false",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2829,
"properties": {
- "age": "14",
- "east": "false",
- "north": "true",
- "south": "false",
- "up": "true",
- "west": "false"
+ "age": "13",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2830,
"properties": {
- "age": "14",
- "east": "false",
- "north": "true",
- "south": "false",
+ "age": "13",
+ "east": "true",
+ "north": "false",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2831,
"properties": {
- "age": "14",
- "east": "false",
- "north": "true",
+ "age": "13",
+ "east": "true",
+ "north": "false",
"south": "false",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2832,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "false",
- "south": "true",
+ "south": "false",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2833,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "false",
- "south": "true",
- "up": "true",
- "west": "false"
+ "south": "false",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2834,
"properties": {
- "age": "14",
- "east": "false",
+ "age": "13",
+ "east": "true",
"north": "false",
- "south": "true",
+ "south": "false",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2835,
"properties": {
- "age": "14",
+ "age": "13",
"east": "false",
- "north": "false",
+ "north": "true",
"south": "true",
- "up": "false",
- "west": "false"
+ "up": "true",
+ "west": "true"
}
},
{
"id": 2836,
"properties": {
- "age": "14",
+ "age": "13",
"east": "false",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "true",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2837,
"properties": {
- "age": "14",
+ "age": "13",
"east": "false",
- "north": "false",
- "south": "false",
- "up": "true",
- "west": "false"
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
}
},
{
"id": 2838,
"properties": {
- "age": "14",
+ "age": "13",
"east": "false",
- "north": "false",
- "south": "false",
+ "north": "true",
+ "south": "true",
"up": "false",
- "west": "true"
+ "west": "false"
}
},
{
"id": 2839,
+ "properties": {
+ "age": "13",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2840,
+ "properties": {
+ "age": "13",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2841,
+ "properties": {
+ "age": "13",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2842,
+ "properties": {
+ "age": "13",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2843,
+ "properties": {
+ "age": "13",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2844,
+ "properties": {
+ "age": "13",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2845,
+ "properties": {
+ "age": "13",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2846,
+ "properties": {
+ "age": "13",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2847,
+ "properties": {
+ "age": "13",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2848,
+ "properties": {
+ "age": "13",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2849,
+ "properties": {
+ "age": "13",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2850,
+ "properties": {
+ "age": "13",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2851,
+ "properties": {
+ "age": "14",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2852,
+ "properties": {
+ "age": "14",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2853,
+ "properties": {
+ "age": "14",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2854,
+ "properties": {
+ "age": "14",
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2855,
+ "properties": {
+ "age": "14",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2856,
+ "properties": {
+ "age": "14",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2857,
+ "properties": {
+ "age": "14",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2858,
+ "properties": {
+ "age": "14",
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2859,
+ "properties": {
+ "age": "14",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2860,
+ "properties": {
+ "age": "14",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2861,
+ "properties": {
+ "age": "14",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2862,
+ "properties": {
+ "age": "14",
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2863,
+ "properties": {
+ "age": "14",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2864,
+ "properties": {
+ "age": "14",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2865,
+ "properties": {
+ "age": "14",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2866,
+ "properties": {
+ "age": "14",
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2867,
+ "properties": {
+ "age": "14",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2868,
+ "properties": {
+ "age": "14",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2869,
+ "properties": {
+ "age": "14",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2870,
+ "properties": {
+ "age": "14",
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2871,
+ "properties": {
+ "age": "14",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2872,
+ "properties": {
+ "age": "14",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2873,
+ "properties": {
+ "age": "14",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2874,
+ "properties": {
+ "age": "14",
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2875,
+ "properties": {
+ "age": "14",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2876,
+ "properties": {
+ "age": "14",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2877,
+ "properties": {
+ "age": "14",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2878,
+ "properties": {
+ "age": "14",
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "up": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2879,
+ "properties": {
+ "age": "14",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2880,
+ "properties": {
+ "age": "14",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 2881,
+ "properties": {
+ "age": "14",
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "up": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 2882,
"properties": {
"age": "14",
"east": "false",
@@ -98304,7 +98388,7 @@
}
},
{
- "id": 2840,
+ "id": 2883,
"properties": {
"age": "15",
"east": "true",
@@ -98315,7 +98399,7 @@
}
},
{
- "id": 2841,
+ "id": 2884,
"properties": {
"age": "15",
"east": "true",
@@ -98326,7 +98410,7 @@
}
},
{
- "id": 2842,
+ "id": 2885,
"properties": {
"age": "15",
"east": "true",
@@ -98337,7 +98421,7 @@
}
},
{
- "id": 2843,
+ "id": 2886,
"properties": {
"age": "15",
"east": "true",
@@ -98348,7 +98432,7 @@
}
},
{
- "id": 2844,
+ "id": 2887,
"properties": {
"age": "15",
"east": "true",
@@ -98359,7 +98443,7 @@
}
},
{
- "id": 2845,
+ "id": 2888,
"properties": {
"age": "15",
"east": "true",
@@ -98370,7 +98454,7 @@
}
},
{
- "id": 2846,
+ "id": 2889,
"properties": {
"age": "15",
"east": "true",
@@ -98381,7 +98465,7 @@
}
},
{
- "id": 2847,
+ "id": 2890,
"properties": {
"age": "15",
"east": "true",
@@ -98392,7 +98476,7 @@
}
},
{
- "id": 2848,
+ "id": 2891,
"properties": {
"age": "15",
"east": "true",
@@ -98403,7 +98487,7 @@
}
},
{
- "id": 2849,
+ "id": 2892,
"properties": {
"age": "15",
"east": "true",
@@ -98414,7 +98498,7 @@
}
},
{
- "id": 2850,
+ "id": 2893,
"properties": {
"age": "15",
"east": "true",
@@ -98425,7 +98509,7 @@
}
},
{
- "id": 2851,
+ "id": 2894,
"properties": {
"age": "15",
"east": "true",
@@ -98436,7 +98520,7 @@
}
},
{
- "id": 2852,
+ "id": 2895,
"properties": {
"age": "15",
"east": "true",
@@ -98447,7 +98531,7 @@
}
},
{
- "id": 2853,
+ "id": 2896,
"properties": {
"age": "15",
"east": "true",
@@ -98458,7 +98542,7 @@
}
},
{
- "id": 2854,
+ "id": 2897,
"properties": {
"age": "15",
"east": "true",
@@ -98469,7 +98553,7 @@
}
},
{
- "id": 2855,
+ "id": 2898,
"properties": {
"age": "15",
"east": "true",
@@ -98480,7 +98564,7 @@
}
},
{
- "id": 2856,
+ "id": 2899,
"properties": {
"age": "15",
"east": "false",
@@ -98491,7 +98575,7 @@
}
},
{
- "id": 2857,
+ "id": 2900,
"properties": {
"age": "15",
"east": "false",
@@ -98502,7 +98586,7 @@
}
},
{
- "id": 2858,
+ "id": 2901,
"properties": {
"age": "15",
"east": "false",
@@ -98513,7 +98597,7 @@
}
},
{
- "id": 2859,
+ "id": 2902,
"properties": {
"age": "15",
"east": "false",
@@ -98524,7 +98608,7 @@
}
},
{
- "id": 2860,
+ "id": 2903,
"properties": {
"age": "15",
"east": "false",
@@ -98535,7 +98619,7 @@
}
},
{
- "id": 2861,
+ "id": 2904,
"properties": {
"age": "15",
"east": "false",
@@ -98546,7 +98630,7 @@
}
},
{
- "id": 2862,
+ "id": 2905,
"properties": {
"age": "15",
"east": "false",
@@ -98557,7 +98641,7 @@
}
},
{
- "id": 2863,
+ "id": 2906,
"properties": {
"age": "15",
"east": "false",
@@ -98568,7 +98652,7 @@
}
},
{
- "id": 2864,
+ "id": 2907,
"properties": {
"age": "15",
"east": "false",
@@ -98579,7 +98663,7 @@
}
},
{
- "id": 2865,
+ "id": 2908,
"properties": {
"age": "15",
"east": "false",
@@ -98590,7 +98674,7 @@
}
},
{
- "id": 2866,
+ "id": 2909,
"properties": {
"age": "15",
"east": "false",
@@ -98601,7 +98685,7 @@
}
},
{
- "id": 2867,
+ "id": 2910,
"properties": {
"age": "15",
"east": "false",
@@ -98612,7 +98696,7 @@
}
},
{
- "id": 2868,
+ "id": 2911,
"properties": {
"age": "15",
"east": "false",
@@ -98623,7 +98707,7 @@
}
},
{
- "id": 2869,
+ "id": 2912,
"properties": {
"age": "15",
"east": "false",
@@ -98634,7 +98718,7 @@
}
},
{
- "id": 2870,
+ "id": 2913,
"properties": {
"age": "15",
"east": "false",
@@ -98645,7 +98729,7 @@
}
},
{
- "id": 2871,
+ "id": 2914,
"properties": {
"age": "15",
"east": "false",
@@ -98672,13 +98756,13 @@
"states": [
{
"default": true,
- "id": 12829,
+ "id": 13298,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12830,
+ "id": 13299,
"properties": {
"waterlogged": "false"
}
@@ -98694,7 +98778,7 @@
"states": [
{
"default": true,
- "id": 12811
+ "id": 13280
}
]
},
@@ -98713,13 +98797,13 @@
"states": [
{
"default": true,
- "id": 12849,
+ "id": 13318,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12850,
+ "id": 13319,
"properties": {
"waterlogged": "false"
}
@@ -98747,56 +98831,56 @@
"states": [
{
"default": true,
- "id": 12917,
+ "id": 13386,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12918,
+ "id": 13387,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12919,
+ "id": 13388,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12920,
+ "id": 13389,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12921,
+ "id": 13390,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12922,
+ "id": 13391,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12923,
+ "id": 13392,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12924,
+ "id": 13393,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -98812,7 +98896,7 @@
"states": [
{
"default": true,
- "id": 18437
+ "id": 18906
}
]
},
@@ -98825,7 +98909,7 @@
"states": [
{
"default": true,
- "id": 8567
+ "id": 8797
}
]
},
@@ -98837,7 +98921,7 @@
"states": [
{
"default": true,
- "id": 24825
+ "id": 25294
}
]
},
@@ -98867,7 +98951,7 @@
},
"states": [
{
- "id": 489,
+ "id": 532,
"properties": {
"distance": "1",
"persistent": "true",
@@ -98875,7 +98959,7 @@
}
},
{
- "id": 490,
+ "id": 533,
"properties": {
"distance": "1",
"persistent": "true",
@@ -98883,7 +98967,7 @@
}
},
{
- "id": 491,
+ "id": 534,
"properties": {
"distance": "1",
"persistent": "false",
@@ -98891,7 +98975,7 @@
}
},
{
- "id": 492,
+ "id": 535,
"properties": {
"distance": "1",
"persistent": "false",
@@ -98899,7 +98983,7 @@
}
},
{
- "id": 493,
+ "id": 536,
"properties": {
"distance": "2",
"persistent": "true",
@@ -98907,7 +98991,7 @@
}
},
{
- "id": 494,
+ "id": 537,
"properties": {
"distance": "2",
"persistent": "true",
@@ -98915,7 +98999,7 @@
}
},
{
- "id": 495,
+ "id": 538,
"properties": {
"distance": "2",
"persistent": "false",
@@ -98923,7 +99007,7 @@
}
},
{
- "id": 496,
+ "id": 539,
"properties": {
"distance": "2",
"persistent": "false",
@@ -98931,7 +99015,7 @@
}
},
{
- "id": 497,
+ "id": 540,
"properties": {
"distance": "3",
"persistent": "true",
@@ -98939,7 +99023,7 @@
}
},
{
- "id": 498,
+ "id": 541,
"properties": {
"distance": "3",
"persistent": "true",
@@ -98947,7 +99031,7 @@
}
},
{
- "id": 499,
+ "id": 542,
"properties": {
"distance": "3",
"persistent": "false",
@@ -98955,7 +99039,7 @@
}
},
{
- "id": 500,
+ "id": 543,
"properties": {
"distance": "3",
"persistent": "false",
@@ -98963,7 +99047,7 @@
}
},
{
- "id": 501,
+ "id": 544,
"properties": {
"distance": "4",
"persistent": "true",
@@ -98971,7 +99055,7 @@
}
},
{
- "id": 502,
+ "id": 545,
"properties": {
"distance": "4",
"persistent": "true",
@@ -98979,7 +99063,7 @@
}
},
{
- "id": 503,
+ "id": 546,
"properties": {
"distance": "4",
"persistent": "false",
@@ -98987,7 +99071,7 @@
}
},
{
- "id": 504,
+ "id": 547,
"properties": {
"distance": "4",
"persistent": "false",
@@ -98995,7 +99079,7 @@
}
},
{
- "id": 505,
+ "id": 548,
"properties": {
"distance": "5",
"persistent": "true",
@@ -99003,7 +99087,7 @@
}
},
{
- "id": 506,
+ "id": 549,
"properties": {
"distance": "5",
"persistent": "true",
@@ -99011,7 +99095,7 @@
}
},
{
- "id": 507,
+ "id": 550,
"properties": {
"distance": "5",
"persistent": "false",
@@ -99019,7 +99103,7 @@
}
},
{
- "id": 508,
+ "id": 551,
"properties": {
"distance": "5",
"persistent": "false",
@@ -99027,7 +99111,7 @@
}
},
{
- "id": 509,
+ "id": 552,
"properties": {
"distance": "6",
"persistent": "true",
@@ -99035,7 +99119,7 @@
}
},
{
- "id": 510,
+ "id": 553,
"properties": {
"distance": "6",
"persistent": "true",
@@ -99043,7 +99127,7 @@
}
},
{
- "id": 511,
+ "id": 554,
"properties": {
"distance": "6",
"persistent": "false",
@@ -99051,7 +99135,7 @@
}
},
{
- "id": 512,
+ "id": 555,
"properties": {
"distance": "6",
"persistent": "false",
@@ -99059,7 +99143,7 @@
}
},
{
- "id": 513,
+ "id": 556,
"properties": {
"distance": "7",
"persistent": "true",
@@ -99067,7 +99151,7 @@
}
},
{
- "id": 514,
+ "id": 557,
"properties": {
"distance": "7",
"persistent": "true",
@@ -99075,7 +99159,7 @@
}
},
{
- "id": 515,
+ "id": 558,
"properties": {
"distance": "7",
"persistent": "false",
@@ -99084,7 +99168,7 @@
},
{
"default": true,
- "id": 516,
+ "id": 559,
"properties": {
"distance": "7",
"persistent": "false",
@@ -99101,7 +99185,7 @@
"states": [
{
"default": true,
- "id": 26572
+ "id": 27041
}
]
},
@@ -99121,25 +99205,25 @@
"states": [
{
"default": true,
- "id": 12539,
+ "id": 13008,
"properties": {
"age": "0"
}
},
{
- "id": 12540,
+ "id": 13009,
"properties": {
"age": "1"
}
},
{
- "id": 12541,
+ "id": 13010,
"properties": {
"age": "2"
}
},
{
- "id": 12542,
+ "id": 13011,
"properties": {
"age": "3"
}
@@ -99165,7 +99249,7 @@
},
"states": [
{
- "id": 4294,
+ "id": 4346,
"properties": {
"facing": "north",
"lit": "true"
@@ -99173,49 +99257,49 @@
},
{
"default": true,
- "id": 4295,
+ "id": 4347,
"properties": {
"facing": "north",
"lit": "false"
}
},
{
- "id": 4296,
+ "id": 4348,
"properties": {
"facing": "south",
"lit": "true"
}
},
{
- "id": 4297,
+ "id": 4349,
"properties": {
"facing": "south",
"lit": "false"
}
},
{
- "id": 4298,
+ "id": 4350,
"properties": {
"facing": "west",
"lit": "true"
}
},
{
- "id": 4299,
+ "id": 4351,
"properties": {
"facing": "west",
"lit": "false"
}
},
{
- "id": 4300,
+ "id": 4352,
"properties": {
"facing": "east",
"lit": "true"
}
},
{
- "id": 4301,
+ "id": 4353,
"properties": {
"facing": "east",
"lit": "false"
@@ -99231,7 +99315,7 @@
"states": [
{
"default": true,
- "id": 20285
+ "id": 20754
}
]
},
@@ -99243,7 +99327,7 @@
"states": [
{
"default": true,
- "id": 519
+ "id": 562
}
]
},
@@ -99276,7 +99360,7 @@
},
"states": [
{
- "id": 6779,
+ "id": 7009,
"properties": {
"east": "true",
"north": "true",
@@ -99286,7 +99370,7 @@
}
},
{
- "id": 6780,
+ "id": 7010,
"properties": {
"east": "true",
"north": "true",
@@ -99296,7 +99380,7 @@
}
},
{
- "id": 6781,
+ "id": 7011,
"properties": {
"east": "true",
"north": "true",
@@ -99306,7 +99390,7 @@
}
},
{
- "id": 6782,
+ "id": 7012,
"properties": {
"east": "true",
"north": "true",
@@ -99316,7 +99400,7 @@
}
},
{
- "id": 6783,
+ "id": 7013,
"properties": {
"east": "true",
"north": "true",
@@ -99326,7 +99410,7 @@
}
},
{
- "id": 6784,
+ "id": 7014,
"properties": {
"east": "true",
"north": "true",
@@ -99336,7 +99420,7 @@
}
},
{
- "id": 6785,
+ "id": 7015,
"properties": {
"east": "true",
"north": "true",
@@ -99346,7 +99430,7 @@
}
},
{
- "id": 6786,
+ "id": 7016,
"properties": {
"east": "true",
"north": "true",
@@ -99356,7 +99440,7 @@
}
},
{
- "id": 6787,
+ "id": 7017,
"properties": {
"east": "true",
"north": "false",
@@ -99366,7 +99450,7 @@
}
},
{
- "id": 6788,
+ "id": 7018,
"properties": {
"east": "true",
"north": "false",
@@ -99376,7 +99460,7 @@
}
},
{
- "id": 6789,
+ "id": 7019,
"properties": {
"east": "true",
"north": "false",
@@ -99386,7 +99470,7 @@
}
},
{
- "id": 6790,
+ "id": 7020,
"properties": {
"east": "true",
"north": "false",
@@ -99396,7 +99480,7 @@
}
},
{
- "id": 6791,
+ "id": 7021,
"properties": {
"east": "true",
"north": "false",
@@ -99406,7 +99490,7 @@
}
},
{
- "id": 6792,
+ "id": 7022,
"properties": {
"east": "true",
"north": "false",
@@ -99416,7 +99500,7 @@
}
},
{
- "id": 6793,
+ "id": 7023,
"properties": {
"east": "true",
"north": "false",
@@ -99426,7 +99510,7 @@
}
},
{
- "id": 6794,
+ "id": 7024,
"properties": {
"east": "true",
"north": "false",
@@ -99436,7 +99520,7 @@
}
},
{
- "id": 6795,
+ "id": 7025,
"properties": {
"east": "false",
"north": "true",
@@ -99446,7 +99530,7 @@
}
},
{
- "id": 6796,
+ "id": 7026,
"properties": {
"east": "false",
"north": "true",
@@ -99456,7 +99540,7 @@
}
},
{
- "id": 6797,
+ "id": 7027,
"properties": {
"east": "false",
"north": "true",
@@ -99466,7 +99550,7 @@
}
},
{
- "id": 6798,
+ "id": 7028,
"properties": {
"east": "false",
"north": "true",
@@ -99476,7 +99560,7 @@
}
},
{
- "id": 6799,
+ "id": 7029,
"properties": {
"east": "false",
"north": "true",
@@ -99486,7 +99570,7 @@
}
},
{
- "id": 6800,
+ "id": 7030,
"properties": {
"east": "false",
"north": "true",
@@ -99496,7 +99580,7 @@
}
},
{
- "id": 6801,
+ "id": 7031,
"properties": {
"east": "false",
"north": "true",
@@ -99506,7 +99590,7 @@
}
},
{
- "id": 6802,
+ "id": 7032,
"properties": {
"east": "false",
"north": "true",
@@ -99516,7 +99600,7 @@
}
},
{
- "id": 6803,
+ "id": 7033,
"properties": {
"east": "false",
"north": "false",
@@ -99526,7 +99610,7 @@
}
},
{
- "id": 6804,
+ "id": 7034,
"properties": {
"east": "false",
"north": "false",
@@ -99536,7 +99620,7 @@
}
},
{
- "id": 6805,
+ "id": 7035,
"properties": {
"east": "false",
"north": "false",
@@ -99546,7 +99630,7 @@
}
},
{
- "id": 6806,
+ "id": 7036,
"properties": {
"east": "false",
"north": "false",
@@ -99556,7 +99640,7 @@
}
},
{
- "id": 6807,
+ "id": 7037,
"properties": {
"east": "false",
"north": "false",
@@ -99566,7 +99650,7 @@
}
},
{
- "id": 6808,
+ "id": 7038,
"properties": {
"east": "false",
"north": "false",
@@ -99576,7 +99660,7 @@
}
},
{
- "id": 6809,
+ "id": 7039,
"properties": {
"east": "false",
"north": "false",
@@ -99587,7 +99671,7 @@
},
{
"default": true,
- "id": 6810,
+ "id": 7040,
"properties": {
"east": "false",
"north": "false",
@@ -99635,7 +99719,7 @@
},
"states": [
{
- "id": 6869,
+ "id": 7099,
"properties": {
"down": "true",
"east": "true",
@@ -99647,7 +99731,7 @@
}
},
{
- "id": 6870,
+ "id": 7100,
"properties": {
"down": "true",
"east": "true",
@@ -99659,7 +99743,7 @@
}
},
{
- "id": 6871,
+ "id": 7101,
"properties": {
"down": "true",
"east": "true",
@@ -99671,7 +99755,7 @@
}
},
{
- "id": 6872,
+ "id": 7102,
"properties": {
"down": "true",
"east": "true",
@@ -99683,7 +99767,7 @@
}
},
{
- "id": 6873,
+ "id": 7103,
"properties": {
"down": "true",
"east": "true",
@@ -99695,7 +99779,7 @@
}
},
{
- "id": 6874,
+ "id": 7104,
"properties": {
"down": "true",
"east": "true",
@@ -99707,7 +99791,7 @@
}
},
{
- "id": 6875,
+ "id": 7105,
"properties": {
"down": "true",
"east": "true",
@@ -99719,7 +99803,7 @@
}
},
{
- "id": 6876,
+ "id": 7106,
"properties": {
"down": "true",
"east": "true",
@@ -99731,7 +99815,7 @@
}
},
{
- "id": 6877,
+ "id": 7107,
"properties": {
"down": "true",
"east": "true",
@@ -99743,7 +99827,7 @@
}
},
{
- "id": 6878,
+ "id": 7108,
"properties": {
"down": "true",
"east": "true",
@@ -99755,7 +99839,7 @@
}
},
{
- "id": 6879,
+ "id": 7109,
"properties": {
"down": "true",
"east": "true",
@@ -99767,7 +99851,7 @@
}
},
{
- "id": 6880,
+ "id": 7110,
"properties": {
"down": "true",
"east": "true",
@@ -99779,7 +99863,7 @@
}
},
{
- "id": 6881,
+ "id": 7111,
"properties": {
"down": "true",
"east": "true",
@@ -99791,7 +99875,7 @@
}
},
{
- "id": 6882,
+ "id": 7112,
"properties": {
"down": "true",
"east": "true",
@@ -99803,7 +99887,7 @@
}
},
{
- "id": 6883,
+ "id": 7113,
"properties": {
"down": "true",
"east": "true",
@@ -99815,7 +99899,7 @@
}
},
{
- "id": 6884,
+ "id": 7114,
"properties": {
"down": "true",
"east": "true",
@@ -99827,7 +99911,7 @@
}
},
{
- "id": 6885,
+ "id": 7115,
"properties": {
"down": "true",
"east": "true",
@@ -99839,7 +99923,7 @@
}
},
{
- "id": 6886,
+ "id": 7116,
"properties": {
"down": "true",
"east": "true",
@@ -99851,7 +99935,7 @@
}
},
{
- "id": 6887,
+ "id": 7117,
"properties": {
"down": "true",
"east": "true",
@@ -99863,7 +99947,7 @@
}
},
{
- "id": 6888,
+ "id": 7118,
"properties": {
"down": "true",
"east": "true",
@@ -99875,7 +99959,7 @@
}
},
{
- "id": 6889,
+ "id": 7119,
"properties": {
"down": "true",
"east": "true",
@@ -99887,7 +99971,7 @@
}
},
{
- "id": 6890,
+ "id": 7120,
"properties": {
"down": "true",
"east": "true",
@@ -99899,7 +99983,7 @@
}
},
{
- "id": 6891,
+ "id": 7121,
"properties": {
"down": "true",
"east": "true",
@@ -99911,7 +99995,7 @@
}
},
{
- "id": 6892,
+ "id": 7122,
"properties": {
"down": "true",
"east": "true",
@@ -99923,7 +100007,7 @@
}
},
{
- "id": 6893,
+ "id": 7123,
"properties": {
"down": "true",
"east": "true",
@@ -99935,7 +100019,7 @@
}
},
{
- "id": 6894,
+ "id": 7124,
"properties": {
"down": "true",
"east": "true",
@@ -99947,7 +100031,7 @@
}
},
{
- "id": 6895,
+ "id": 7125,
"properties": {
"down": "true",
"east": "true",
@@ -99959,7 +100043,7 @@
}
},
{
- "id": 6896,
+ "id": 7126,
"properties": {
"down": "true",
"east": "true",
@@ -99971,7 +100055,7 @@
}
},
{
- "id": 6897,
+ "id": 7127,
"properties": {
"down": "true",
"east": "true",
@@ -99983,7 +100067,7 @@
}
},
{
- "id": 6898,
+ "id": 7128,
"properties": {
"down": "true",
"east": "true",
@@ -99995,7 +100079,7 @@
}
},
{
- "id": 6899,
+ "id": 7129,
"properties": {
"down": "true",
"east": "true",
@@ -100007,7 +100091,7 @@
}
},
{
- "id": 6900,
+ "id": 7130,
"properties": {
"down": "true",
"east": "true",
@@ -100019,7 +100103,7 @@
}
},
{
- "id": 6901,
+ "id": 7131,
"properties": {
"down": "true",
"east": "false",
@@ -100031,7 +100115,7 @@
}
},
{
- "id": 6902,
+ "id": 7132,
"properties": {
"down": "true",
"east": "false",
@@ -100043,7 +100127,7 @@
}
},
{
- "id": 6903,
+ "id": 7133,
"properties": {
"down": "true",
"east": "false",
@@ -100055,7 +100139,7 @@
}
},
{
- "id": 6904,
+ "id": 7134,
"properties": {
"down": "true",
"east": "false",
@@ -100067,7 +100151,7 @@
}
},
{
- "id": 6905,
+ "id": 7135,
"properties": {
"down": "true",
"east": "false",
@@ -100079,7 +100163,7 @@
}
},
{
- "id": 6906,
+ "id": 7136,
"properties": {
"down": "true",
"east": "false",
@@ -100091,7 +100175,7 @@
}
},
{
- "id": 6907,
+ "id": 7137,
"properties": {
"down": "true",
"east": "false",
@@ -100103,7 +100187,7 @@
}
},
{
- "id": 6908,
+ "id": 7138,
"properties": {
"down": "true",
"east": "false",
@@ -100115,7 +100199,7 @@
}
},
{
- "id": 6909,
+ "id": 7139,
"properties": {
"down": "true",
"east": "false",
@@ -100127,7 +100211,7 @@
}
},
{
- "id": 6910,
+ "id": 7140,
"properties": {
"down": "true",
"east": "false",
@@ -100139,7 +100223,7 @@
}
},
{
- "id": 6911,
+ "id": 7141,
"properties": {
"down": "true",
"east": "false",
@@ -100151,7 +100235,7 @@
}
},
{
- "id": 6912,
+ "id": 7142,
"properties": {
"down": "true",
"east": "false",
@@ -100163,7 +100247,7 @@
}
},
{
- "id": 6913,
+ "id": 7143,
"properties": {
"down": "true",
"east": "false",
@@ -100175,7 +100259,7 @@
}
},
{
- "id": 6914,
+ "id": 7144,
"properties": {
"down": "true",
"east": "false",
@@ -100187,7 +100271,7 @@
}
},
{
- "id": 6915,
+ "id": 7145,
"properties": {
"down": "true",
"east": "false",
@@ -100199,7 +100283,7 @@
}
},
{
- "id": 6916,
+ "id": 7146,
"properties": {
"down": "true",
"east": "false",
@@ -100211,7 +100295,7 @@
}
},
{
- "id": 6917,
+ "id": 7147,
"properties": {
"down": "true",
"east": "false",
@@ -100223,7 +100307,7 @@
}
},
{
- "id": 6918,
+ "id": 7148,
"properties": {
"down": "true",
"east": "false",
@@ -100235,7 +100319,7 @@
}
},
{
- "id": 6919,
+ "id": 7149,
"properties": {
"down": "true",
"east": "false",
@@ -100247,7 +100331,7 @@
}
},
{
- "id": 6920,
+ "id": 7150,
"properties": {
"down": "true",
"east": "false",
@@ -100259,7 +100343,7 @@
}
},
{
- "id": 6921,
+ "id": 7151,
"properties": {
"down": "true",
"east": "false",
@@ -100271,7 +100355,7 @@
}
},
{
- "id": 6922,
+ "id": 7152,
"properties": {
"down": "true",
"east": "false",
@@ -100283,7 +100367,7 @@
}
},
{
- "id": 6923,
+ "id": 7153,
"properties": {
"down": "true",
"east": "false",
@@ -100295,7 +100379,7 @@
}
},
{
- "id": 6924,
+ "id": 7154,
"properties": {
"down": "true",
"east": "false",
@@ -100307,7 +100391,7 @@
}
},
{
- "id": 6925,
+ "id": 7155,
"properties": {
"down": "true",
"east": "false",
@@ -100319,7 +100403,7 @@
}
},
{
- "id": 6926,
+ "id": 7156,
"properties": {
"down": "true",
"east": "false",
@@ -100331,7 +100415,7 @@
}
},
{
- "id": 6927,
+ "id": 7157,
"properties": {
"down": "true",
"east": "false",
@@ -100343,7 +100427,7 @@
}
},
{
- "id": 6928,
+ "id": 7158,
"properties": {
"down": "true",
"east": "false",
@@ -100355,7 +100439,7 @@
}
},
{
- "id": 6929,
+ "id": 7159,
"properties": {
"down": "true",
"east": "false",
@@ -100367,7 +100451,7 @@
}
},
{
- "id": 6930,
+ "id": 7160,
"properties": {
"down": "true",
"east": "false",
@@ -100379,7 +100463,7 @@
}
},
{
- "id": 6931,
+ "id": 7161,
"properties": {
"down": "true",
"east": "false",
@@ -100391,7 +100475,7 @@
}
},
{
- "id": 6932,
+ "id": 7162,
"properties": {
"down": "true",
"east": "false",
@@ -100403,7 +100487,7 @@
}
},
{
- "id": 6933,
+ "id": 7163,
"properties": {
"down": "false",
"east": "true",
@@ -100415,7 +100499,7 @@
}
},
{
- "id": 6934,
+ "id": 7164,
"properties": {
"down": "false",
"east": "true",
@@ -100427,7 +100511,7 @@
}
},
{
- "id": 6935,
+ "id": 7165,
"properties": {
"down": "false",
"east": "true",
@@ -100439,7 +100523,7 @@
}
},
{
- "id": 6936,
+ "id": 7166,
"properties": {
"down": "false",
"east": "true",
@@ -100451,7 +100535,7 @@
}
},
{
- "id": 6937,
+ "id": 7167,
"properties": {
"down": "false",
"east": "true",
@@ -100463,7 +100547,7 @@
}
},
{
- "id": 6938,
+ "id": 7168,
"properties": {
"down": "false",
"east": "true",
@@ -100475,7 +100559,7 @@
}
},
{
- "id": 6939,
+ "id": 7169,
"properties": {
"down": "false",
"east": "true",
@@ -100487,7 +100571,7 @@
}
},
{
- "id": 6940,
+ "id": 7170,
"properties": {
"down": "false",
"east": "true",
@@ -100499,7 +100583,7 @@
}
},
{
- "id": 6941,
+ "id": 7171,
"properties": {
"down": "false",
"east": "true",
@@ -100511,7 +100595,7 @@
}
},
{
- "id": 6942,
+ "id": 7172,
"properties": {
"down": "false",
"east": "true",
@@ -100523,7 +100607,7 @@
}
},
{
- "id": 6943,
+ "id": 7173,
"properties": {
"down": "false",
"east": "true",
@@ -100535,7 +100619,7 @@
}
},
{
- "id": 6944,
+ "id": 7174,
"properties": {
"down": "false",
"east": "true",
@@ -100547,7 +100631,7 @@
}
},
{
- "id": 6945,
+ "id": 7175,
"properties": {
"down": "false",
"east": "true",
@@ -100559,7 +100643,7 @@
}
},
{
- "id": 6946,
+ "id": 7176,
"properties": {
"down": "false",
"east": "true",
@@ -100571,7 +100655,7 @@
}
},
{
- "id": 6947,
+ "id": 7177,
"properties": {
"down": "false",
"east": "true",
@@ -100583,7 +100667,7 @@
}
},
{
- "id": 6948,
+ "id": 7178,
"properties": {
"down": "false",
"east": "true",
@@ -100595,7 +100679,7 @@
}
},
{
- "id": 6949,
+ "id": 7179,
"properties": {
"down": "false",
"east": "true",
@@ -100607,7 +100691,7 @@
}
},
{
- "id": 6950,
+ "id": 7180,
"properties": {
"down": "false",
"east": "true",
@@ -100619,7 +100703,7 @@
}
},
{
- "id": 6951,
+ "id": 7181,
"properties": {
"down": "false",
"east": "true",
@@ -100631,7 +100715,7 @@
}
},
{
- "id": 6952,
+ "id": 7182,
"properties": {
"down": "false",
"east": "true",
@@ -100643,7 +100727,7 @@
}
},
{
- "id": 6953,
+ "id": 7183,
"properties": {
"down": "false",
"east": "true",
@@ -100655,7 +100739,7 @@
}
},
{
- "id": 6954,
+ "id": 7184,
"properties": {
"down": "false",
"east": "true",
@@ -100667,7 +100751,7 @@
}
},
{
- "id": 6955,
+ "id": 7185,
"properties": {
"down": "false",
"east": "true",
@@ -100679,7 +100763,7 @@
}
},
{
- "id": 6956,
+ "id": 7186,
"properties": {
"down": "false",
"east": "true",
@@ -100691,7 +100775,7 @@
}
},
{
- "id": 6957,
+ "id": 7187,
"properties": {
"down": "false",
"east": "true",
@@ -100703,7 +100787,7 @@
}
},
{
- "id": 6958,
+ "id": 7188,
"properties": {
"down": "false",
"east": "true",
@@ -100715,7 +100799,7 @@
}
},
{
- "id": 6959,
+ "id": 7189,
"properties": {
"down": "false",
"east": "true",
@@ -100727,7 +100811,7 @@
}
},
{
- "id": 6960,
+ "id": 7190,
"properties": {
"down": "false",
"east": "true",
@@ -100739,7 +100823,7 @@
}
},
{
- "id": 6961,
+ "id": 7191,
"properties": {
"down": "false",
"east": "true",
@@ -100751,7 +100835,7 @@
}
},
{
- "id": 6962,
+ "id": 7192,
"properties": {
"down": "false",
"east": "true",
@@ -100763,7 +100847,7 @@
}
},
{
- "id": 6963,
+ "id": 7193,
"properties": {
"down": "false",
"east": "true",
@@ -100775,7 +100859,7 @@
}
},
{
- "id": 6964,
+ "id": 7194,
"properties": {
"down": "false",
"east": "true",
@@ -100787,7 +100871,7 @@
}
},
{
- "id": 6965,
+ "id": 7195,
"properties": {
"down": "false",
"east": "false",
@@ -100799,7 +100883,7 @@
}
},
{
- "id": 6966,
+ "id": 7196,
"properties": {
"down": "false",
"east": "false",
@@ -100811,7 +100895,7 @@
}
},
{
- "id": 6967,
+ "id": 7197,
"properties": {
"down": "false",
"east": "false",
@@ -100823,7 +100907,7 @@
}
},
{
- "id": 6968,
+ "id": 7198,
"properties": {
"down": "false",
"east": "false",
@@ -100835,7 +100919,7 @@
}
},
{
- "id": 6969,
+ "id": 7199,
"properties": {
"down": "false",
"east": "false",
@@ -100847,7 +100931,7 @@
}
},
{
- "id": 6970,
+ "id": 7200,
"properties": {
"down": "false",
"east": "false",
@@ -100859,7 +100943,7 @@
}
},
{
- "id": 6971,
+ "id": 7201,
"properties": {
"down": "false",
"east": "false",
@@ -100871,7 +100955,7 @@
}
},
{
- "id": 6972,
+ "id": 7202,
"properties": {
"down": "false",
"east": "false",
@@ -100883,7 +100967,7 @@
}
},
{
- "id": 6973,
+ "id": 7203,
"properties": {
"down": "false",
"east": "false",
@@ -100895,7 +100979,7 @@
}
},
{
- "id": 6974,
+ "id": 7204,
"properties": {
"down": "false",
"east": "false",
@@ -100907,7 +100991,7 @@
}
},
{
- "id": 6975,
+ "id": 7205,
"properties": {
"down": "false",
"east": "false",
@@ -100919,7 +101003,7 @@
}
},
{
- "id": 6976,
+ "id": 7206,
"properties": {
"down": "false",
"east": "false",
@@ -100931,7 +101015,7 @@
}
},
{
- "id": 6977,
+ "id": 7207,
"properties": {
"down": "false",
"east": "false",
@@ -100943,7 +101027,7 @@
}
},
{
- "id": 6978,
+ "id": 7208,
"properties": {
"down": "false",
"east": "false",
@@ -100955,7 +101039,7 @@
}
},
{
- "id": 6979,
+ "id": 7209,
"properties": {
"down": "false",
"east": "false",
@@ -100967,7 +101051,7 @@
}
},
{
- "id": 6980,
+ "id": 7210,
"properties": {
"down": "false",
"east": "false",
@@ -100979,7 +101063,7 @@
}
},
{
- "id": 6981,
+ "id": 7211,
"properties": {
"down": "false",
"east": "false",
@@ -100991,7 +101075,7 @@
}
},
{
- "id": 6982,
+ "id": 7212,
"properties": {
"down": "false",
"east": "false",
@@ -101003,7 +101087,7 @@
}
},
{
- "id": 6983,
+ "id": 7213,
"properties": {
"down": "false",
"east": "false",
@@ -101015,7 +101099,7 @@
}
},
{
- "id": 6984,
+ "id": 7214,
"properties": {
"down": "false",
"east": "false",
@@ -101027,7 +101111,7 @@
}
},
{
- "id": 6985,
+ "id": 7215,
"properties": {
"down": "false",
"east": "false",
@@ -101039,7 +101123,7 @@
}
},
{
- "id": 6986,
+ "id": 7216,
"properties": {
"down": "false",
"east": "false",
@@ -101051,7 +101135,7 @@
}
},
{
- "id": 6987,
+ "id": 7217,
"properties": {
"down": "false",
"east": "false",
@@ -101063,7 +101147,7 @@
}
},
{
- "id": 6988,
+ "id": 7218,
"properties": {
"down": "false",
"east": "false",
@@ -101075,7 +101159,7 @@
}
},
{
- "id": 6989,
+ "id": 7219,
"properties": {
"down": "false",
"east": "false",
@@ -101087,7 +101171,7 @@
}
},
{
- "id": 6990,
+ "id": 7220,
"properties": {
"down": "false",
"east": "false",
@@ -101099,7 +101183,7 @@
}
},
{
- "id": 6991,
+ "id": 7221,
"properties": {
"down": "false",
"east": "false",
@@ -101111,7 +101195,7 @@
}
},
{
- "id": 6992,
+ "id": 7222,
"properties": {
"down": "false",
"east": "false",
@@ -101123,7 +101207,7 @@
}
},
{
- "id": 6993,
+ "id": 7223,
"properties": {
"down": "false",
"east": "false",
@@ -101135,7 +101219,7 @@
}
},
{
- "id": 6994,
+ "id": 7224,
"properties": {
"down": "false",
"east": "false",
@@ -101147,7 +101231,7 @@
}
},
{
- "id": 6995,
+ "id": 7225,
"properties": {
"down": "false",
"east": "false",
@@ -101160,7 +101244,7 @@
},
{
"default": true,
- "id": 6996,
+ "id": 7226,
"properties": {
"down": "false",
"east": "false",
@@ -101181,7 +101265,7 @@
"states": [
{
"default": true,
- "id": 5863
+ "id": 6029
}
]
},
@@ -101193,7 +101277,7 @@
"states": [
{
"default": true,
- "id": 2091
+ "id": 2134
}
]
},
@@ -101206,7 +101290,7 @@
"states": [
{
"default": true,
- "id": 123
+ "id": 129
}
]
},
@@ -101240,21 +101324,21 @@
},
"states": [
{
- "id": 14130,
+ "id": 14599,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 14131,
+ "id": 14600,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 14132,
+ "id": 14601,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -101262,21 +101346,21 @@
},
{
"default": true,
- "id": 14133,
+ "id": 14602,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 14134,
+ "id": 14603,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 14135,
+ "id": 14604,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -101317,7 +101401,7 @@
},
"states": [
{
- "id": 13682,
+ "id": 14151,
"properties": {
"facing": "north",
"half": "top",
@@ -101326,7 +101410,7 @@
}
},
{
- "id": 13683,
+ "id": 14152,
"properties": {
"facing": "north",
"half": "top",
@@ -101335,7 +101419,7 @@
}
},
{
- "id": 13684,
+ "id": 14153,
"properties": {
"facing": "north",
"half": "top",
@@ -101344,7 +101428,7 @@
}
},
{
- "id": 13685,
+ "id": 14154,
"properties": {
"facing": "north",
"half": "top",
@@ -101353,7 +101437,7 @@
}
},
{
- "id": 13686,
+ "id": 14155,
"properties": {
"facing": "north",
"half": "top",
@@ -101362,7 +101446,7 @@
}
},
{
- "id": 13687,
+ "id": 14156,
"properties": {
"facing": "north",
"half": "top",
@@ -101371,7 +101455,7 @@
}
},
{
- "id": 13688,
+ "id": 14157,
"properties": {
"facing": "north",
"half": "top",
@@ -101380,7 +101464,7 @@
}
},
{
- "id": 13689,
+ "id": 14158,
"properties": {
"facing": "north",
"half": "top",
@@ -101389,7 +101473,7 @@
}
},
{
- "id": 13690,
+ "id": 14159,
"properties": {
"facing": "north",
"half": "top",
@@ -101398,7 +101482,7 @@
}
},
{
- "id": 13691,
+ "id": 14160,
"properties": {
"facing": "north",
"half": "top",
@@ -101407,7 +101491,7 @@
}
},
{
- "id": 13692,
+ "id": 14161,
"properties": {
"facing": "north",
"half": "bottom",
@@ -101417,7 +101501,7 @@
},
{
"default": true,
- "id": 13693,
+ "id": 14162,
"properties": {
"facing": "north",
"half": "bottom",
@@ -101426,7 +101510,7 @@
}
},
{
- "id": 13694,
+ "id": 14163,
"properties": {
"facing": "north",
"half": "bottom",
@@ -101435,7 +101519,7 @@
}
},
{
- "id": 13695,
+ "id": 14164,
"properties": {
"facing": "north",
"half": "bottom",
@@ -101444,7 +101528,7 @@
}
},
{
- "id": 13696,
+ "id": 14165,
"properties": {
"facing": "north",
"half": "bottom",
@@ -101453,7 +101537,7 @@
}
},
{
- "id": 13697,
+ "id": 14166,
"properties": {
"facing": "north",
"half": "bottom",
@@ -101462,7 +101546,7 @@
}
},
{
- "id": 13698,
+ "id": 14167,
"properties": {
"facing": "north",
"half": "bottom",
@@ -101471,7 +101555,7 @@
}
},
{
- "id": 13699,
+ "id": 14168,
"properties": {
"facing": "north",
"half": "bottom",
@@ -101480,7 +101564,7 @@
}
},
{
- "id": 13700,
+ "id": 14169,
"properties": {
"facing": "north",
"half": "bottom",
@@ -101489,7 +101573,7 @@
}
},
{
- "id": 13701,
+ "id": 14170,
"properties": {
"facing": "north",
"half": "bottom",
@@ -101498,7 +101582,7 @@
}
},
{
- "id": 13702,
+ "id": 14171,
"properties": {
"facing": "south",
"half": "top",
@@ -101507,7 +101591,7 @@
}
},
{
- "id": 13703,
+ "id": 14172,
"properties": {
"facing": "south",
"half": "top",
@@ -101516,7 +101600,7 @@
}
},
{
- "id": 13704,
+ "id": 14173,
"properties": {
"facing": "south",
"half": "top",
@@ -101525,7 +101609,7 @@
}
},
{
- "id": 13705,
+ "id": 14174,
"properties": {
"facing": "south",
"half": "top",
@@ -101534,7 +101618,7 @@
}
},
{
- "id": 13706,
+ "id": 14175,
"properties": {
"facing": "south",
"half": "top",
@@ -101543,7 +101627,7 @@
}
},
{
- "id": 13707,
+ "id": 14176,
"properties": {
"facing": "south",
"half": "top",
@@ -101552,7 +101636,7 @@
}
},
{
- "id": 13708,
+ "id": 14177,
"properties": {
"facing": "south",
"half": "top",
@@ -101561,7 +101645,7 @@
}
},
{
- "id": 13709,
+ "id": 14178,
"properties": {
"facing": "south",
"half": "top",
@@ -101570,7 +101654,7 @@
}
},
{
- "id": 13710,
+ "id": 14179,
"properties": {
"facing": "south",
"half": "top",
@@ -101579,7 +101663,7 @@
}
},
{
- "id": 13711,
+ "id": 14180,
"properties": {
"facing": "south",
"half": "top",
@@ -101588,7 +101672,7 @@
}
},
{
- "id": 13712,
+ "id": 14181,
"properties": {
"facing": "south",
"half": "bottom",
@@ -101597,7 +101681,7 @@
}
},
{
- "id": 13713,
+ "id": 14182,
"properties": {
"facing": "south",
"half": "bottom",
@@ -101606,7 +101690,7 @@
}
},
{
- "id": 13714,
+ "id": 14183,
"properties": {
"facing": "south",
"half": "bottom",
@@ -101615,7 +101699,7 @@
}
},
{
- "id": 13715,
+ "id": 14184,
"properties": {
"facing": "south",
"half": "bottom",
@@ -101624,7 +101708,7 @@
}
},
{
- "id": 13716,
+ "id": 14185,
"properties": {
"facing": "south",
"half": "bottom",
@@ -101633,7 +101717,7 @@
}
},
{
- "id": 13717,
+ "id": 14186,
"properties": {
"facing": "south",
"half": "bottom",
@@ -101642,7 +101726,7 @@
}
},
{
- "id": 13718,
+ "id": 14187,
"properties": {
"facing": "south",
"half": "bottom",
@@ -101651,7 +101735,7 @@
}
},
{
- "id": 13719,
+ "id": 14188,
"properties": {
"facing": "south",
"half": "bottom",
@@ -101660,7 +101744,7 @@
}
},
{
- "id": 13720,
+ "id": 14189,
"properties": {
"facing": "south",
"half": "bottom",
@@ -101669,7 +101753,7 @@
}
},
{
- "id": 13721,
+ "id": 14190,
"properties": {
"facing": "south",
"half": "bottom",
@@ -101678,7 +101762,7 @@
}
},
{
- "id": 13722,
+ "id": 14191,
"properties": {
"facing": "west",
"half": "top",
@@ -101687,7 +101771,7 @@
}
},
{
- "id": 13723,
+ "id": 14192,
"properties": {
"facing": "west",
"half": "top",
@@ -101696,7 +101780,7 @@
}
},
{
- "id": 13724,
+ "id": 14193,
"properties": {
"facing": "west",
"half": "top",
@@ -101705,7 +101789,7 @@
}
},
{
- "id": 13725,
+ "id": 14194,
"properties": {
"facing": "west",
"half": "top",
@@ -101714,7 +101798,7 @@
}
},
{
- "id": 13726,
+ "id": 14195,
"properties": {
"facing": "west",
"half": "top",
@@ -101723,7 +101807,7 @@
}
},
{
- "id": 13727,
+ "id": 14196,
"properties": {
"facing": "west",
"half": "top",
@@ -101732,7 +101816,7 @@
}
},
{
- "id": 13728,
+ "id": 14197,
"properties": {
"facing": "west",
"half": "top",
@@ -101741,7 +101825,7 @@
}
},
{
- "id": 13729,
+ "id": 14198,
"properties": {
"facing": "west",
"half": "top",
@@ -101750,7 +101834,7 @@
}
},
{
- "id": 13730,
+ "id": 14199,
"properties": {
"facing": "west",
"half": "top",
@@ -101759,7 +101843,7 @@
}
},
{
- "id": 13731,
+ "id": 14200,
"properties": {
"facing": "west",
"half": "top",
@@ -101768,7 +101852,7 @@
}
},
{
- "id": 13732,
+ "id": 14201,
"properties": {
"facing": "west",
"half": "bottom",
@@ -101777,7 +101861,7 @@
}
},
{
- "id": 13733,
+ "id": 14202,
"properties": {
"facing": "west",
"half": "bottom",
@@ -101786,7 +101870,7 @@
}
},
{
- "id": 13734,
+ "id": 14203,
"properties": {
"facing": "west",
"half": "bottom",
@@ -101795,7 +101879,7 @@
}
},
{
- "id": 13735,
+ "id": 14204,
"properties": {
"facing": "west",
"half": "bottom",
@@ -101804,7 +101888,7 @@
}
},
{
- "id": 13736,
+ "id": 14205,
"properties": {
"facing": "west",
"half": "bottom",
@@ -101813,7 +101897,7 @@
}
},
{
- "id": 13737,
+ "id": 14206,
"properties": {
"facing": "west",
"half": "bottom",
@@ -101822,7 +101906,7 @@
}
},
{
- "id": 13738,
+ "id": 14207,
"properties": {
"facing": "west",
"half": "bottom",
@@ -101831,7 +101915,7 @@
}
},
{
- "id": 13739,
+ "id": 14208,
"properties": {
"facing": "west",
"half": "bottom",
@@ -101840,7 +101924,7 @@
}
},
{
- "id": 13740,
+ "id": 14209,
"properties": {
"facing": "west",
"half": "bottom",
@@ -101849,7 +101933,7 @@
}
},
{
- "id": 13741,
+ "id": 14210,
"properties": {
"facing": "west",
"half": "bottom",
@@ -101858,7 +101942,7 @@
}
},
{
- "id": 13742,
+ "id": 14211,
"properties": {
"facing": "east",
"half": "top",
@@ -101867,7 +101951,7 @@
}
},
{
- "id": 13743,
+ "id": 14212,
"properties": {
"facing": "east",
"half": "top",
@@ -101876,7 +101960,7 @@
}
},
{
- "id": 13744,
+ "id": 14213,
"properties": {
"facing": "east",
"half": "top",
@@ -101885,7 +101969,7 @@
}
},
{
- "id": 13745,
+ "id": 14214,
"properties": {
"facing": "east",
"half": "top",
@@ -101894,7 +101978,7 @@
}
},
{
- "id": 13746,
+ "id": 14215,
"properties": {
"facing": "east",
"half": "top",
@@ -101903,7 +101987,7 @@
}
},
{
- "id": 13747,
+ "id": 14216,
"properties": {
"facing": "east",
"half": "top",
@@ -101912,7 +101996,7 @@
}
},
{
- "id": 13748,
+ "id": 14217,
"properties": {
"facing": "east",
"half": "top",
@@ -101921,7 +102005,7 @@
}
},
{
- "id": 13749,
+ "id": 14218,
"properties": {
"facing": "east",
"half": "top",
@@ -101930,7 +102014,7 @@
}
},
{
- "id": 13750,
+ "id": 14219,
"properties": {
"facing": "east",
"half": "top",
@@ -101939,7 +102023,7 @@
}
},
{
- "id": 13751,
+ "id": 14220,
"properties": {
"facing": "east",
"half": "top",
@@ -101948,7 +102032,7 @@
}
},
{
- "id": 13752,
+ "id": 14221,
"properties": {
"facing": "east",
"half": "bottom",
@@ -101957,7 +102041,7 @@
}
},
{
- "id": 13753,
+ "id": 14222,
"properties": {
"facing": "east",
"half": "bottom",
@@ -101966,7 +102050,7 @@
}
},
{
- "id": 13754,
+ "id": 14223,
"properties": {
"facing": "east",
"half": "bottom",
@@ -101975,7 +102059,7 @@
}
},
{
- "id": 13755,
+ "id": 14224,
"properties": {
"facing": "east",
"half": "bottom",
@@ -101984,7 +102068,7 @@
}
},
{
- "id": 13756,
+ "id": 14225,
"properties": {
"facing": "east",
"half": "bottom",
@@ -101993,7 +102077,7 @@
}
},
{
- "id": 13757,
+ "id": 14226,
"properties": {
"facing": "east",
"half": "bottom",
@@ -102002,7 +102086,7 @@
}
},
{
- "id": 13758,
+ "id": 14227,
"properties": {
"facing": "east",
"half": "bottom",
@@ -102011,7 +102095,7 @@
}
},
{
- "id": 13759,
+ "id": 14228,
"properties": {
"facing": "east",
"half": "bottom",
@@ -102020,7 +102104,7 @@
}
},
{
- "id": 13760,
+ "id": 14229,
"properties": {
"facing": "east",
"half": "bottom",
@@ -102029,7 +102113,7 @@
}
},
{
- "id": 13761,
+ "id": 14230,
"properties": {
"facing": "east",
"half": "bottom",
@@ -102076,7 +102160,7 @@
},
"states": [
{
- "id": 15456,
+ "id": 15925,
"properties": {
"east": "none",
"north": "none",
@@ -102087,7 +102171,7 @@
}
},
{
- "id": 15457,
+ "id": 15926,
"properties": {
"east": "none",
"north": "none",
@@ -102098,7 +102182,7 @@
}
},
{
- "id": 15458,
+ "id": 15927,
"properties": {
"east": "none",
"north": "none",
@@ -102110,7 +102194,7 @@
},
{
"default": true,
- "id": 15459,
+ "id": 15928,
"properties": {
"east": "none",
"north": "none",
@@ -102121,7 +102205,7 @@
}
},
{
- "id": 15460,
+ "id": 15929,
"properties": {
"east": "none",
"north": "none",
@@ -102132,7 +102216,7 @@
}
},
{
- "id": 15461,
+ "id": 15930,
"properties": {
"east": "none",
"north": "none",
@@ -102143,7 +102227,7 @@
}
},
{
- "id": 15462,
+ "id": 15931,
"properties": {
"east": "none",
"north": "none",
@@ -102154,7 +102238,7 @@
}
},
{
- "id": 15463,
+ "id": 15932,
"properties": {
"east": "none",
"north": "none",
@@ -102165,7 +102249,7 @@
}
},
{
- "id": 15464,
+ "id": 15933,
"properties": {
"east": "none",
"north": "none",
@@ -102176,7 +102260,7 @@
}
},
{
- "id": 15465,
+ "id": 15934,
"properties": {
"east": "none",
"north": "none",
@@ -102187,7 +102271,7 @@
}
},
{
- "id": 15466,
+ "id": 15935,
"properties": {
"east": "none",
"north": "none",
@@ -102198,7 +102282,7 @@
}
},
{
- "id": 15467,
+ "id": 15936,
"properties": {
"east": "none",
"north": "none",
@@ -102209,7 +102293,7 @@
}
},
{
- "id": 15468,
+ "id": 15937,
"properties": {
"east": "none",
"north": "none",
@@ -102220,7 +102304,7 @@
}
},
{
- "id": 15469,
+ "id": 15938,
"properties": {
"east": "none",
"north": "none",
@@ -102231,7 +102315,7 @@
}
},
{
- "id": 15470,
+ "id": 15939,
"properties": {
"east": "none",
"north": "none",
@@ -102242,7 +102326,7 @@
}
},
{
- "id": 15471,
+ "id": 15940,
"properties": {
"east": "none",
"north": "none",
@@ -102253,7 +102337,7 @@
}
},
{
- "id": 15472,
+ "id": 15941,
"properties": {
"east": "none",
"north": "none",
@@ -102264,7 +102348,7 @@
}
},
{
- "id": 15473,
+ "id": 15942,
"properties": {
"east": "none",
"north": "none",
@@ -102275,7 +102359,7 @@
}
},
{
- "id": 15474,
+ "id": 15943,
"properties": {
"east": "none",
"north": "none",
@@ -102286,7 +102370,7 @@
}
},
{
- "id": 15475,
+ "id": 15944,
"properties": {
"east": "none",
"north": "none",
@@ -102297,7 +102381,7 @@
}
},
{
- "id": 15476,
+ "id": 15945,
"properties": {
"east": "none",
"north": "none",
@@ -102308,7 +102392,7 @@
}
},
{
- "id": 15477,
+ "id": 15946,
"properties": {
"east": "none",
"north": "none",
@@ -102319,7 +102403,7 @@
}
},
{
- "id": 15478,
+ "id": 15947,
"properties": {
"east": "none",
"north": "none",
@@ -102330,7 +102414,7 @@
}
},
{
- "id": 15479,
+ "id": 15948,
"properties": {
"east": "none",
"north": "none",
@@ -102341,7 +102425,7 @@
}
},
{
- "id": 15480,
+ "id": 15949,
"properties": {
"east": "none",
"north": "none",
@@ -102352,7 +102436,7 @@
}
},
{
- "id": 15481,
+ "id": 15950,
"properties": {
"east": "none",
"north": "none",
@@ -102363,7 +102447,7 @@
}
},
{
- "id": 15482,
+ "id": 15951,
"properties": {
"east": "none",
"north": "none",
@@ -102374,7 +102458,7 @@
}
},
{
- "id": 15483,
+ "id": 15952,
"properties": {
"east": "none",
"north": "none",
@@ -102385,7 +102469,7 @@
}
},
{
- "id": 15484,
+ "id": 15953,
"properties": {
"east": "none",
"north": "none",
@@ -102396,7 +102480,7 @@
}
},
{
- "id": 15485,
+ "id": 15954,
"properties": {
"east": "none",
"north": "none",
@@ -102407,7 +102491,7 @@
}
},
{
- "id": 15486,
+ "id": 15955,
"properties": {
"east": "none",
"north": "none",
@@ -102418,7 +102502,7 @@
}
},
{
- "id": 15487,
+ "id": 15956,
"properties": {
"east": "none",
"north": "none",
@@ -102429,7 +102513,7 @@
}
},
{
- "id": 15488,
+ "id": 15957,
"properties": {
"east": "none",
"north": "none",
@@ -102440,7 +102524,7 @@
}
},
{
- "id": 15489,
+ "id": 15958,
"properties": {
"east": "none",
"north": "none",
@@ -102451,7 +102535,7 @@
}
},
{
- "id": 15490,
+ "id": 15959,
"properties": {
"east": "none",
"north": "none",
@@ -102462,7 +102546,7 @@
}
},
{
- "id": 15491,
+ "id": 15960,
"properties": {
"east": "none",
"north": "none",
@@ -102473,7 +102557,7 @@
}
},
{
- "id": 15492,
+ "id": 15961,
"properties": {
"east": "none",
"north": "low",
@@ -102484,7 +102568,7 @@
}
},
{
- "id": 15493,
+ "id": 15962,
"properties": {
"east": "none",
"north": "low",
@@ -102495,7 +102579,7 @@
}
},
{
- "id": 15494,
+ "id": 15963,
"properties": {
"east": "none",
"north": "low",
@@ -102506,7 +102590,7 @@
}
},
{
- "id": 15495,
+ "id": 15964,
"properties": {
"east": "none",
"north": "low",
@@ -102517,7 +102601,7 @@
}
},
{
- "id": 15496,
+ "id": 15965,
"properties": {
"east": "none",
"north": "low",
@@ -102528,7 +102612,7 @@
}
},
{
- "id": 15497,
+ "id": 15966,
"properties": {
"east": "none",
"north": "low",
@@ -102539,7 +102623,7 @@
}
},
{
- "id": 15498,
+ "id": 15967,
"properties": {
"east": "none",
"north": "low",
@@ -102550,7 +102634,7 @@
}
},
{
- "id": 15499,
+ "id": 15968,
"properties": {
"east": "none",
"north": "low",
@@ -102561,7 +102645,7 @@
}
},
{
- "id": 15500,
+ "id": 15969,
"properties": {
"east": "none",
"north": "low",
@@ -102572,7 +102656,7 @@
}
},
{
- "id": 15501,
+ "id": 15970,
"properties": {
"east": "none",
"north": "low",
@@ -102583,7 +102667,7 @@
}
},
{
- "id": 15502,
+ "id": 15971,
"properties": {
"east": "none",
"north": "low",
@@ -102594,7 +102678,7 @@
}
},
{
- "id": 15503,
+ "id": 15972,
"properties": {
"east": "none",
"north": "low",
@@ -102605,7 +102689,7 @@
}
},
{
- "id": 15504,
+ "id": 15973,
"properties": {
"east": "none",
"north": "low",
@@ -102616,7 +102700,7 @@
}
},
{
- "id": 15505,
+ "id": 15974,
"properties": {
"east": "none",
"north": "low",
@@ -102627,7 +102711,7 @@
}
},
{
- "id": 15506,
+ "id": 15975,
"properties": {
"east": "none",
"north": "low",
@@ -102638,7 +102722,7 @@
}
},
{
- "id": 15507,
+ "id": 15976,
"properties": {
"east": "none",
"north": "low",
@@ -102649,7 +102733,7 @@
}
},
{
- "id": 15508,
+ "id": 15977,
"properties": {
"east": "none",
"north": "low",
@@ -102660,7 +102744,7 @@
}
},
{
- "id": 15509,
+ "id": 15978,
"properties": {
"east": "none",
"north": "low",
@@ -102671,7 +102755,7 @@
}
},
{
- "id": 15510,
+ "id": 15979,
"properties": {
"east": "none",
"north": "low",
@@ -102682,7 +102766,7 @@
}
},
{
- "id": 15511,
+ "id": 15980,
"properties": {
"east": "none",
"north": "low",
@@ -102693,7 +102777,7 @@
}
},
{
- "id": 15512,
+ "id": 15981,
"properties": {
"east": "none",
"north": "low",
@@ -102704,7 +102788,7 @@
}
},
{
- "id": 15513,
+ "id": 15982,
"properties": {
"east": "none",
"north": "low",
@@ -102715,7 +102799,7 @@
}
},
{
- "id": 15514,
+ "id": 15983,
"properties": {
"east": "none",
"north": "low",
@@ -102726,7 +102810,7 @@
}
},
{
- "id": 15515,
+ "id": 15984,
"properties": {
"east": "none",
"north": "low",
@@ -102737,7 +102821,7 @@
}
},
{
- "id": 15516,
+ "id": 15985,
"properties": {
"east": "none",
"north": "low",
@@ -102748,7 +102832,7 @@
}
},
{
- "id": 15517,
+ "id": 15986,
"properties": {
"east": "none",
"north": "low",
@@ -102759,7 +102843,7 @@
}
},
{
- "id": 15518,
+ "id": 15987,
"properties": {
"east": "none",
"north": "low",
@@ -102770,7 +102854,7 @@
}
},
{
- "id": 15519,
+ "id": 15988,
"properties": {
"east": "none",
"north": "low",
@@ -102781,7 +102865,7 @@
}
},
{
- "id": 15520,
+ "id": 15989,
"properties": {
"east": "none",
"north": "low",
@@ -102792,7 +102876,7 @@
}
},
{
- "id": 15521,
+ "id": 15990,
"properties": {
"east": "none",
"north": "low",
@@ -102803,7 +102887,7 @@
}
},
{
- "id": 15522,
+ "id": 15991,
"properties": {
"east": "none",
"north": "low",
@@ -102814,7 +102898,7 @@
}
},
{
- "id": 15523,
+ "id": 15992,
"properties": {
"east": "none",
"north": "low",
@@ -102825,7 +102909,7 @@
}
},
{
- "id": 15524,
+ "id": 15993,
"properties": {
"east": "none",
"north": "low",
@@ -102836,7 +102920,7 @@
}
},
{
- "id": 15525,
+ "id": 15994,
"properties": {
"east": "none",
"north": "low",
@@ -102847,7 +102931,7 @@
}
},
{
- "id": 15526,
+ "id": 15995,
"properties": {
"east": "none",
"north": "low",
@@ -102858,7 +102942,7 @@
}
},
{
- "id": 15527,
+ "id": 15996,
"properties": {
"east": "none",
"north": "low",
@@ -102869,7 +102953,7 @@
}
},
{
- "id": 15528,
+ "id": 15997,
"properties": {
"east": "none",
"north": "tall",
@@ -102880,7 +102964,7 @@
}
},
{
- "id": 15529,
+ "id": 15998,
"properties": {
"east": "none",
"north": "tall",
@@ -102891,7 +102975,7 @@
}
},
{
- "id": 15530,
+ "id": 15999,
"properties": {
"east": "none",
"north": "tall",
@@ -102902,7 +102986,7 @@
}
},
{
- "id": 15531,
+ "id": 16000,
"properties": {
"east": "none",
"north": "tall",
@@ -102913,7 +102997,7 @@
}
},
{
- "id": 15532,
+ "id": 16001,
"properties": {
"east": "none",
"north": "tall",
@@ -102924,7 +103008,7 @@
}
},
{
- "id": 15533,
+ "id": 16002,
"properties": {
"east": "none",
"north": "tall",
@@ -102935,7 +103019,7 @@
}
},
{
- "id": 15534,
+ "id": 16003,
"properties": {
"east": "none",
"north": "tall",
@@ -102946,7 +103030,7 @@
}
},
{
- "id": 15535,
+ "id": 16004,
"properties": {
"east": "none",
"north": "tall",
@@ -102957,7 +103041,7 @@
}
},
{
- "id": 15536,
+ "id": 16005,
"properties": {
"east": "none",
"north": "tall",
@@ -102968,7 +103052,7 @@
}
},
{
- "id": 15537,
+ "id": 16006,
"properties": {
"east": "none",
"north": "tall",
@@ -102979,7 +103063,7 @@
}
},
{
- "id": 15538,
+ "id": 16007,
"properties": {
"east": "none",
"north": "tall",
@@ -102990,7 +103074,7 @@
}
},
{
- "id": 15539,
+ "id": 16008,
"properties": {
"east": "none",
"north": "tall",
@@ -103001,7 +103085,7 @@
}
},
{
- "id": 15540,
+ "id": 16009,
"properties": {
"east": "none",
"north": "tall",
@@ -103012,7 +103096,7 @@
}
},
{
- "id": 15541,
+ "id": 16010,
"properties": {
"east": "none",
"north": "tall",
@@ -103023,7 +103107,7 @@
}
},
{
- "id": 15542,
+ "id": 16011,
"properties": {
"east": "none",
"north": "tall",
@@ -103034,7 +103118,7 @@
}
},
{
- "id": 15543,
+ "id": 16012,
"properties": {
"east": "none",
"north": "tall",
@@ -103045,7 +103129,7 @@
}
},
{
- "id": 15544,
+ "id": 16013,
"properties": {
"east": "none",
"north": "tall",
@@ -103056,7 +103140,7 @@
}
},
{
- "id": 15545,
+ "id": 16014,
"properties": {
"east": "none",
"north": "tall",
@@ -103067,7 +103151,7 @@
}
},
{
- "id": 15546,
+ "id": 16015,
"properties": {
"east": "none",
"north": "tall",
@@ -103078,7 +103162,7 @@
}
},
{
- "id": 15547,
+ "id": 16016,
"properties": {
"east": "none",
"north": "tall",
@@ -103089,7 +103173,7 @@
}
},
{
- "id": 15548,
+ "id": 16017,
"properties": {
"east": "none",
"north": "tall",
@@ -103100,7 +103184,7 @@
}
},
{
- "id": 15549,
+ "id": 16018,
"properties": {
"east": "none",
"north": "tall",
@@ -103111,7 +103195,7 @@
}
},
{
- "id": 15550,
+ "id": 16019,
"properties": {
"east": "none",
"north": "tall",
@@ -103122,7 +103206,7 @@
}
},
{
- "id": 15551,
+ "id": 16020,
"properties": {
"east": "none",
"north": "tall",
@@ -103133,7 +103217,7 @@
}
},
{
- "id": 15552,
+ "id": 16021,
"properties": {
"east": "none",
"north": "tall",
@@ -103144,7 +103228,7 @@
}
},
{
- "id": 15553,
+ "id": 16022,
"properties": {
"east": "none",
"north": "tall",
@@ -103155,7 +103239,7 @@
}
},
{
- "id": 15554,
+ "id": 16023,
"properties": {
"east": "none",
"north": "tall",
@@ -103166,7 +103250,7 @@
}
},
{
- "id": 15555,
+ "id": 16024,
"properties": {
"east": "none",
"north": "tall",
@@ -103177,7 +103261,7 @@
}
},
{
- "id": 15556,
+ "id": 16025,
"properties": {
"east": "none",
"north": "tall",
@@ -103188,7 +103272,7 @@
}
},
{
- "id": 15557,
+ "id": 16026,
"properties": {
"east": "none",
"north": "tall",
@@ -103199,7 +103283,7 @@
}
},
{
- "id": 15558,
+ "id": 16027,
"properties": {
"east": "none",
"north": "tall",
@@ -103210,7 +103294,7 @@
}
},
{
- "id": 15559,
+ "id": 16028,
"properties": {
"east": "none",
"north": "tall",
@@ -103221,7 +103305,7 @@
}
},
{
- "id": 15560,
+ "id": 16029,
"properties": {
"east": "none",
"north": "tall",
@@ -103232,7 +103316,7 @@
}
},
{
- "id": 15561,
+ "id": 16030,
"properties": {
"east": "none",
"north": "tall",
@@ -103243,7 +103327,7 @@
}
},
{
- "id": 15562,
+ "id": 16031,
"properties": {
"east": "none",
"north": "tall",
@@ -103254,7 +103338,7 @@
}
},
{
- "id": 15563,
+ "id": 16032,
"properties": {
"east": "none",
"north": "tall",
@@ -103265,7 +103349,7 @@
}
},
{
- "id": 15564,
+ "id": 16033,
"properties": {
"east": "low",
"north": "none",
@@ -103276,7 +103360,7 @@
}
},
{
- "id": 15565,
+ "id": 16034,
"properties": {
"east": "low",
"north": "none",
@@ -103287,7 +103371,7 @@
}
},
{
- "id": 15566,
+ "id": 16035,
"properties": {
"east": "low",
"north": "none",
@@ -103298,7 +103382,7 @@
}
},
{
- "id": 15567,
+ "id": 16036,
"properties": {
"east": "low",
"north": "none",
@@ -103309,7 +103393,7 @@
}
},
{
- "id": 15568,
+ "id": 16037,
"properties": {
"east": "low",
"north": "none",
@@ -103320,7 +103404,7 @@
}
},
{
- "id": 15569,
+ "id": 16038,
"properties": {
"east": "low",
"north": "none",
@@ -103331,7 +103415,7 @@
}
},
{
- "id": 15570,
+ "id": 16039,
"properties": {
"east": "low",
"north": "none",
@@ -103342,7 +103426,7 @@
}
},
{
- "id": 15571,
+ "id": 16040,
"properties": {
"east": "low",
"north": "none",
@@ -103353,7 +103437,7 @@
}
},
{
- "id": 15572,
+ "id": 16041,
"properties": {
"east": "low",
"north": "none",
@@ -103364,7 +103448,7 @@
}
},
{
- "id": 15573,
+ "id": 16042,
"properties": {
"east": "low",
"north": "none",
@@ -103375,7 +103459,7 @@
}
},
{
- "id": 15574,
+ "id": 16043,
"properties": {
"east": "low",
"north": "none",
@@ -103386,7 +103470,7 @@
}
},
{
- "id": 15575,
+ "id": 16044,
"properties": {
"east": "low",
"north": "none",
@@ -103397,7 +103481,7 @@
}
},
{
- "id": 15576,
+ "id": 16045,
"properties": {
"east": "low",
"north": "none",
@@ -103408,7 +103492,7 @@
}
},
{
- "id": 15577,
+ "id": 16046,
"properties": {
"east": "low",
"north": "none",
@@ -103419,7 +103503,7 @@
}
},
{
- "id": 15578,
+ "id": 16047,
"properties": {
"east": "low",
"north": "none",
@@ -103430,7 +103514,7 @@
}
},
{
- "id": 15579,
+ "id": 16048,
"properties": {
"east": "low",
"north": "none",
@@ -103441,7 +103525,7 @@
}
},
{
- "id": 15580,
+ "id": 16049,
"properties": {
"east": "low",
"north": "none",
@@ -103452,7 +103536,7 @@
}
},
{
- "id": 15581,
+ "id": 16050,
"properties": {
"east": "low",
"north": "none",
@@ -103463,7 +103547,7 @@
}
},
{
- "id": 15582,
+ "id": 16051,
"properties": {
"east": "low",
"north": "none",
@@ -103474,7 +103558,7 @@
}
},
{
- "id": 15583,
+ "id": 16052,
"properties": {
"east": "low",
"north": "none",
@@ -103485,7 +103569,7 @@
}
},
{
- "id": 15584,
+ "id": 16053,
"properties": {
"east": "low",
"north": "none",
@@ -103496,7 +103580,7 @@
}
},
{
- "id": 15585,
+ "id": 16054,
"properties": {
"east": "low",
"north": "none",
@@ -103507,7 +103591,7 @@
}
},
{
- "id": 15586,
+ "id": 16055,
"properties": {
"east": "low",
"north": "none",
@@ -103518,7 +103602,7 @@
}
},
{
- "id": 15587,
+ "id": 16056,
"properties": {
"east": "low",
"north": "none",
@@ -103529,7 +103613,7 @@
}
},
{
- "id": 15588,
+ "id": 16057,
"properties": {
"east": "low",
"north": "none",
@@ -103540,7 +103624,7 @@
}
},
{
- "id": 15589,
+ "id": 16058,
"properties": {
"east": "low",
"north": "none",
@@ -103551,7 +103635,7 @@
}
},
{
- "id": 15590,
+ "id": 16059,
"properties": {
"east": "low",
"north": "none",
@@ -103562,7 +103646,7 @@
}
},
{
- "id": 15591,
+ "id": 16060,
"properties": {
"east": "low",
"north": "none",
@@ -103573,7 +103657,7 @@
}
},
{
- "id": 15592,
+ "id": 16061,
"properties": {
"east": "low",
"north": "none",
@@ -103584,7 +103668,7 @@
}
},
{
- "id": 15593,
+ "id": 16062,
"properties": {
"east": "low",
"north": "none",
@@ -103595,7 +103679,7 @@
}
},
{
- "id": 15594,
+ "id": 16063,
"properties": {
"east": "low",
"north": "none",
@@ -103606,7 +103690,7 @@
}
},
{
- "id": 15595,
+ "id": 16064,
"properties": {
"east": "low",
"north": "none",
@@ -103617,7 +103701,7 @@
}
},
{
- "id": 15596,
+ "id": 16065,
"properties": {
"east": "low",
"north": "none",
@@ -103628,7 +103712,7 @@
}
},
{
- "id": 15597,
+ "id": 16066,
"properties": {
"east": "low",
"north": "none",
@@ -103639,7 +103723,7 @@
}
},
{
- "id": 15598,
+ "id": 16067,
"properties": {
"east": "low",
"north": "none",
@@ -103650,7 +103734,7 @@
}
},
{
- "id": 15599,
+ "id": 16068,
"properties": {
"east": "low",
"north": "none",
@@ -103661,7 +103745,7 @@
}
},
{
- "id": 15600,
+ "id": 16069,
"properties": {
"east": "low",
"north": "low",
@@ -103672,7 +103756,7 @@
}
},
{
- "id": 15601,
+ "id": 16070,
"properties": {
"east": "low",
"north": "low",
@@ -103683,7 +103767,7 @@
}
},
{
- "id": 15602,
+ "id": 16071,
"properties": {
"east": "low",
"north": "low",
@@ -103694,7 +103778,7 @@
}
},
{
- "id": 15603,
+ "id": 16072,
"properties": {
"east": "low",
"north": "low",
@@ -103705,7 +103789,7 @@
}
},
{
- "id": 15604,
+ "id": 16073,
"properties": {
"east": "low",
"north": "low",
@@ -103716,7 +103800,7 @@
}
},
{
- "id": 15605,
+ "id": 16074,
"properties": {
"east": "low",
"north": "low",
@@ -103727,7 +103811,7 @@
}
},
{
- "id": 15606,
+ "id": 16075,
"properties": {
"east": "low",
"north": "low",
@@ -103738,7 +103822,7 @@
}
},
{
- "id": 15607,
+ "id": 16076,
"properties": {
"east": "low",
"north": "low",
@@ -103749,7 +103833,7 @@
}
},
{
- "id": 15608,
+ "id": 16077,
"properties": {
"east": "low",
"north": "low",
@@ -103760,7 +103844,7 @@
}
},
{
- "id": 15609,
+ "id": 16078,
"properties": {
"east": "low",
"north": "low",
@@ -103771,7 +103855,7 @@
}
},
{
- "id": 15610,
+ "id": 16079,
"properties": {
"east": "low",
"north": "low",
@@ -103782,7 +103866,7 @@
}
},
{
- "id": 15611,
+ "id": 16080,
"properties": {
"east": "low",
"north": "low",
@@ -103793,7 +103877,7 @@
}
},
{
- "id": 15612,
+ "id": 16081,
"properties": {
"east": "low",
"north": "low",
@@ -103804,7 +103888,7 @@
}
},
{
- "id": 15613,
+ "id": 16082,
"properties": {
"east": "low",
"north": "low",
@@ -103815,7 +103899,7 @@
}
},
{
- "id": 15614,
+ "id": 16083,
"properties": {
"east": "low",
"north": "low",
@@ -103826,7 +103910,7 @@
}
},
{
- "id": 15615,
+ "id": 16084,
"properties": {
"east": "low",
"north": "low",
@@ -103837,7 +103921,7 @@
}
},
{
- "id": 15616,
+ "id": 16085,
"properties": {
"east": "low",
"north": "low",
@@ -103848,7 +103932,7 @@
}
},
{
- "id": 15617,
+ "id": 16086,
"properties": {
"east": "low",
"north": "low",
@@ -103859,7 +103943,7 @@
}
},
{
- "id": 15618,
+ "id": 16087,
"properties": {
"east": "low",
"north": "low",
@@ -103870,7 +103954,7 @@
}
},
{
- "id": 15619,
+ "id": 16088,
"properties": {
"east": "low",
"north": "low",
@@ -103881,7 +103965,7 @@
}
},
{
- "id": 15620,
+ "id": 16089,
"properties": {
"east": "low",
"north": "low",
@@ -103892,7 +103976,7 @@
}
},
{
- "id": 15621,
+ "id": 16090,
"properties": {
"east": "low",
"north": "low",
@@ -103903,7 +103987,7 @@
}
},
{
- "id": 15622,
+ "id": 16091,
"properties": {
"east": "low",
"north": "low",
@@ -103914,7 +103998,7 @@
}
},
{
- "id": 15623,
+ "id": 16092,
"properties": {
"east": "low",
"north": "low",
@@ -103925,7 +104009,7 @@
}
},
{
- "id": 15624,
+ "id": 16093,
"properties": {
"east": "low",
"north": "low",
@@ -103936,7 +104020,7 @@
}
},
{
- "id": 15625,
+ "id": 16094,
"properties": {
"east": "low",
"north": "low",
@@ -103947,7 +104031,7 @@
}
},
{
- "id": 15626,
+ "id": 16095,
"properties": {
"east": "low",
"north": "low",
@@ -103958,7 +104042,7 @@
}
},
{
- "id": 15627,
+ "id": 16096,
"properties": {
"east": "low",
"north": "low",
@@ -103969,7 +104053,7 @@
}
},
{
- "id": 15628,
+ "id": 16097,
"properties": {
"east": "low",
"north": "low",
@@ -103980,7 +104064,7 @@
}
},
{
- "id": 15629,
+ "id": 16098,
"properties": {
"east": "low",
"north": "low",
@@ -103991,7 +104075,7 @@
}
},
{
- "id": 15630,
+ "id": 16099,
"properties": {
"east": "low",
"north": "low",
@@ -104002,7 +104086,7 @@
}
},
{
- "id": 15631,
+ "id": 16100,
"properties": {
"east": "low",
"north": "low",
@@ -104013,7 +104097,7 @@
}
},
{
- "id": 15632,
+ "id": 16101,
"properties": {
"east": "low",
"north": "low",
@@ -104024,7 +104108,7 @@
}
},
{
- "id": 15633,
+ "id": 16102,
"properties": {
"east": "low",
"north": "low",
@@ -104035,7 +104119,7 @@
}
},
{
- "id": 15634,
+ "id": 16103,
"properties": {
"east": "low",
"north": "low",
@@ -104046,7 +104130,7 @@
}
},
{
- "id": 15635,
+ "id": 16104,
"properties": {
"east": "low",
"north": "low",
@@ -104057,7 +104141,7 @@
}
},
{
- "id": 15636,
+ "id": 16105,
"properties": {
"east": "low",
"north": "tall",
@@ -104068,7 +104152,7 @@
}
},
{
- "id": 15637,
+ "id": 16106,
"properties": {
"east": "low",
"north": "tall",
@@ -104079,7 +104163,7 @@
}
},
{
- "id": 15638,
+ "id": 16107,
"properties": {
"east": "low",
"north": "tall",
@@ -104090,7 +104174,7 @@
}
},
{
- "id": 15639,
+ "id": 16108,
"properties": {
"east": "low",
"north": "tall",
@@ -104101,7 +104185,7 @@
}
},
{
- "id": 15640,
+ "id": 16109,
"properties": {
"east": "low",
"north": "tall",
@@ -104112,7 +104196,7 @@
}
},
{
- "id": 15641,
+ "id": 16110,
"properties": {
"east": "low",
"north": "tall",
@@ -104123,7 +104207,7 @@
}
},
{
- "id": 15642,
+ "id": 16111,
"properties": {
"east": "low",
"north": "tall",
@@ -104134,7 +104218,7 @@
}
},
{
- "id": 15643,
+ "id": 16112,
"properties": {
"east": "low",
"north": "tall",
@@ -104145,7 +104229,7 @@
}
},
{
- "id": 15644,
+ "id": 16113,
"properties": {
"east": "low",
"north": "tall",
@@ -104156,7 +104240,7 @@
}
},
{
- "id": 15645,
+ "id": 16114,
"properties": {
"east": "low",
"north": "tall",
@@ -104167,7 +104251,7 @@
}
},
{
- "id": 15646,
+ "id": 16115,
"properties": {
"east": "low",
"north": "tall",
@@ -104178,7 +104262,7 @@
}
},
{
- "id": 15647,
+ "id": 16116,
"properties": {
"east": "low",
"north": "tall",
@@ -104189,7 +104273,7 @@
}
},
{
- "id": 15648,
+ "id": 16117,
"properties": {
"east": "low",
"north": "tall",
@@ -104200,7 +104284,7 @@
}
},
{
- "id": 15649,
+ "id": 16118,
"properties": {
"east": "low",
"north": "tall",
@@ -104211,7 +104295,7 @@
}
},
{
- "id": 15650,
+ "id": 16119,
"properties": {
"east": "low",
"north": "tall",
@@ -104222,7 +104306,7 @@
}
},
{
- "id": 15651,
+ "id": 16120,
"properties": {
"east": "low",
"north": "tall",
@@ -104233,7 +104317,7 @@
}
},
{
- "id": 15652,
+ "id": 16121,
"properties": {
"east": "low",
"north": "tall",
@@ -104244,7 +104328,7 @@
}
},
{
- "id": 15653,
+ "id": 16122,
"properties": {
"east": "low",
"north": "tall",
@@ -104255,7 +104339,7 @@
}
},
{
- "id": 15654,
+ "id": 16123,
"properties": {
"east": "low",
"north": "tall",
@@ -104266,7 +104350,7 @@
}
},
{
- "id": 15655,
+ "id": 16124,
"properties": {
"east": "low",
"north": "tall",
@@ -104277,7 +104361,7 @@
}
},
{
- "id": 15656,
+ "id": 16125,
"properties": {
"east": "low",
"north": "tall",
@@ -104288,7 +104372,7 @@
}
},
{
- "id": 15657,
+ "id": 16126,
"properties": {
"east": "low",
"north": "tall",
@@ -104299,7 +104383,7 @@
}
},
{
- "id": 15658,
+ "id": 16127,
"properties": {
"east": "low",
"north": "tall",
@@ -104310,7 +104394,7 @@
}
},
{
- "id": 15659,
+ "id": 16128,
"properties": {
"east": "low",
"north": "tall",
@@ -104321,7 +104405,7 @@
}
},
{
- "id": 15660,
+ "id": 16129,
"properties": {
"east": "low",
"north": "tall",
@@ -104332,7 +104416,7 @@
}
},
{
- "id": 15661,
+ "id": 16130,
"properties": {
"east": "low",
"north": "tall",
@@ -104343,7 +104427,7 @@
}
},
{
- "id": 15662,
+ "id": 16131,
"properties": {
"east": "low",
"north": "tall",
@@ -104354,7 +104438,7 @@
}
},
{
- "id": 15663,
+ "id": 16132,
"properties": {
"east": "low",
"north": "tall",
@@ -104365,7 +104449,7 @@
}
},
{
- "id": 15664,
+ "id": 16133,
"properties": {
"east": "low",
"north": "tall",
@@ -104376,7 +104460,7 @@
}
},
{
- "id": 15665,
+ "id": 16134,
"properties": {
"east": "low",
"north": "tall",
@@ -104387,7 +104471,7 @@
}
},
{
- "id": 15666,
+ "id": 16135,
"properties": {
"east": "low",
"north": "tall",
@@ -104398,7 +104482,7 @@
}
},
{
- "id": 15667,
+ "id": 16136,
"properties": {
"east": "low",
"north": "tall",
@@ -104409,7 +104493,7 @@
}
},
{
- "id": 15668,
+ "id": 16137,
"properties": {
"east": "low",
"north": "tall",
@@ -104420,7 +104504,7 @@
}
},
{
- "id": 15669,
+ "id": 16138,
"properties": {
"east": "low",
"north": "tall",
@@ -104431,7 +104515,7 @@
}
},
{
- "id": 15670,
+ "id": 16139,
"properties": {
"east": "low",
"north": "tall",
@@ -104442,7 +104526,7 @@
}
},
{
- "id": 15671,
+ "id": 16140,
"properties": {
"east": "low",
"north": "tall",
@@ -104453,7 +104537,7 @@
}
},
{
- "id": 15672,
+ "id": 16141,
"properties": {
"east": "tall",
"north": "none",
@@ -104464,7 +104548,7 @@
}
},
{
- "id": 15673,
+ "id": 16142,
"properties": {
"east": "tall",
"north": "none",
@@ -104475,7 +104559,7 @@
}
},
{
- "id": 15674,
+ "id": 16143,
"properties": {
"east": "tall",
"north": "none",
@@ -104486,7 +104570,7 @@
}
},
{
- "id": 15675,
+ "id": 16144,
"properties": {
"east": "tall",
"north": "none",
@@ -104497,7 +104581,7 @@
}
},
{
- "id": 15676,
+ "id": 16145,
"properties": {
"east": "tall",
"north": "none",
@@ -104508,7 +104592,7 @@
}
},
{
- "id": 15677,
+ "id": 16146,
"properties": {
"east": "tall",
"north": "none",
@@ -104519,7 +104603,7 @@
}
},
{
- "id": 15678,
+ "id": 16147,
"properties": {
"east": "tall",
"north": "none",
@@ -104530,7 +104614,7 @@
}
},
{
- "id": 15679,
+ "id": 16148,
"properties": {
"east": "tall",
"north": "none",
@@ -104541,7 +104625,7 @@
}
},
{
- "id": 15680,
+ "id": 16149,
"properties": {
"east": "tall",
"north": "none",
@@ -104552,7 +104636,7 @@
}
},
{
- "id": 15681,
+ "id": 16150,
"properties": {
"east": "tall",
"north": "none",
@@ -104563,7 +104647,7 @@
}
},
{
- "id": 15682,
+ "id": 16151,
"properties": {
"east": "tall",
"north": "none",
@@ -104574,7 +104658,7 @@
}
},
{
- "id": 15683,
+ "id": 16152,
"properties": {
"east": "tall",
"north": "none",
@@ -104585,7 +104669,7 @@
}
},
{
- "id": 15684,
+ "id": 16153,
"properties": {
"east": "tall",
"north": "none",
@@ -104596,7 +104680,7 @@
}
},
{
- "id": 15685,
+ "id": 16154,
"properties": {
"east": "tall",
"north": "none",
@@ -104607,7 +104691,7 @@
}
},
{
- "id": 15686,
+ "id": 16155,
"properties": {
"east": "tall",
"north": "none",
@@ -104618,7 +104702,7 @@
}
},
{
- "id": 15687,
+ "id": 16156,
"properties": {
"east": "tall",
"north": "none",
@@ -104629,7 +104713,7 @@
}
},
{
- "id": 15688,
+ "id": 16157,
"properties": {
"east": "tall",
"north": "none",
@@ -104640,7 +104724,7 @@
}
},
{
- "id": 15689,
+ "id": 16158,
"properties": {
"east": "tall",
"north": "none",
@@ -104651,7 +104735,7 @@
}
},
{
- "id": 15690,
+ "id": 16159,
"properties": {
"east": "tall",
"north": "none",
@@ -104662,7 +104746,7 @@
}
},
{
- "id": 15691,
+ "id": 16160,
"properties": {
"east": "tall",
"north": "none",
@@ -104673,7 +104757,7 @@
}
},
{
- "id": 15692,
+ "id": 16161,
"properties": {
"east": "tall",
"north": "none",
@@ -104684,7 +104768,7 @@
}
},
{
- "id": 15693,
+ "id": 16162,
"properties": {
"east": "tall",
"north": "none",
@@ -104695,7 +104779,7 @@
}
},
{
- "id": 15694,
+ "id": 16163,
"properties": {
"east": "tall",
"north": "none",
@@ -104706,7 +104790,7 @@
}
},
{
- "id": 15695,
+ "id": 16164,
"properties": {
"east": "tall",
"north": "none",
@@ -104717,7 +104801,7 @@
}
},
{
- "id": 15696,
+ "id": 16165,
"properties": {
"east": "tall",
"north": "none",
@@ -104728,7 +104812,7 @@
}
},
{
- "id": 15697,
+ "id": 16166,
"properties": {
"east": "tall",
"north": "none",
@@ -104739,7 +104823,7 @@
}
},
{
- "id": 15698,
+ "id": 16167,
"properties": {
"east": "tall",
"north": "none",
@@ -104750,7 +104834,7 @@
}
},
{
- "id": 15699,
+ "id": 16168,
"properties": {
"east": "tall",
"north": "none",
@@ -104761,7 +104845,7 @@
}
},
{
- "id": 15700,
+ "id": 16169,
"properties": {
"east": "tall",
"north": "none",
@@ -104772,7 +104856,7 @@
}
},
{
- "id": 15701,
+ "id": 16170,
"properties": {
"east": "tall",
"north": "none",
@@ -104783,7 +104867,7 @@
}
},
{
- "id": 15702,
+ "id": 16171,
"properties": {
"east": "tall",
"north": "none",
@@ -104794,7 +104878,7 @@
}
},
{
- "id": 15703,
+ "id": 16172,
"properties": {
"east": "tall",
"north": "none",
@@ -104805,7 +104889,7 @@
}
},
{
- "id": 15704,
+ "id": 16173,
"properties": {
"east": "tall",
"north": "none",
@@ -104816,7 +104900,7 @@
}
},
{
- "id": 15705,
+ "id": 16174,
"properties": {
"east": "tall",
"north": "none",
@@ -104827,7 +104911,7 @@
}
},
{
- "id": 15706,
+ "id": 16175,
"properties": {
"east": "tall",
"north": "none",
@@ -104838,7 +104922,7 @@
}
},
{
- "id": 15707,
+ "id": 16176,
"properties": {
"east": "tall",
"north": "none",
@@ -104849,7 +104933,7 @@
}
},
{
- "id": 15708,
+ "id": 16177,
"properties": {
"east": "tall",
"north": "low",
@@ -104860,7 +104944,7 @@
}
},
{
- "id": 15709,
+ "id": 16178,
"properties": {
"east": "tall",
"north": "low",
@@ -104871,7 +104955,7 @@
}
},
{
- "id": 15710,
+ "id": 16179,
"properties": {
"east": "tall",
"north": "low",
@@ -104882,7 +104966,7 @@
}
},
{
- "id": 15711,
+ "id": 16180,
"properties": {
"east": "tall",
"north": "low",
@@ -104893,7 +104977,7 @@
}
},
{
- "id": 15712,
+ "id": 16181,
"properties": {
"east": "tall",
"north": "low",
@@ -104904,7 +104988,7 @@
}
},
{
- "id": 15713,
+ "id": 16182,
"properties": {
"east": "tall",
"north": "low",
@@ -104915,7 +104999,7 @@
}
},
{
- "id": 15714,
+ "id": 16183,
"properties": {
"east": "tall",
"north": "low",
@@ -104926,7 +105010,7 @@
}
},
{
- "id": 15715,
+ "id": 16184,
"properties": {
"east": "tall",
"north": "low",
@@ -104937,7 +105021,7 @@
}
},
{
- "id": 15716,
+ "id": 16185,
"properties": {
"east": "tall",
"north": "low",
@@ -104948,7 +105032,7 @@
}
},
{
- "id": 15717,
+ "id": 16186,
"properties": {
"east": "tall",
"north": "low",
@@ -104959,7 +105043,7 @@
}
},
{
- "id": 15718,
+ "id": 16187,
"properties": {
"east": "tall",
"north": "low",
@@ -104970,7 +105054,7 @@
}
},
{
- "id": 15719,
+ "id": 16188,
"properties": {
"east": "tall",
"north": "low",
@@ -104981,7 +105065,7 @@
}
},
{
- "id": 15720,
+ "id": 16189,
"properties": {
"east": "tall",
"north": "low",
@@ -104992,7 +105076,7 @@
}
},
{
- "id": 15721,
+ "id": 16190,
"properties": {
"east": "tall",
"north": "low",
@@ -105003,7 +105087,7 @@
}
},
{
- "id": 15722,
+ "id": 16191,
"properties": {
"east": "tall",
"north": "low",
@@ -105014,7 +105098,7 @@
}
},
{
- "id": 15723,
+ "id": 16192,
"properties": {
"east": "tall",
"north": "low",
@@ -105025,7 +105109,7 @@
}
},
{
- "id": 15724,
+ "id": 16193,
"properties": {
"east": "tall",
"north": "low",
@@ -105036,7 +105120,7 @@
}
},
{
- "id": 15725,
+ "id": 16194,
"properties": {
"east": "tall",
"north": "low",
@@ -105047,7 +105131,7 @@
}
},
{
- "id": 15726,
+ "id": 16195,
"properties": {
"east": "tall",
"north": "low",
@@ -105058,7 +105142,7 @@
}
},
{
- "id": 15727,
+ "id": 16196,
"properties": {
"east": "tall",
"north": "low",
@@ -105069,7 +105153,7 @@
}
},
{
- "id": 15728,
+ "id": 16197,
"properties": {
"east": "tall",
"north": "low",
@@ -105080,7 +105164,7 @@
}
},
{
- "id": 15729,
+ "id": 16198,
"properties": {
"east": "tall",
"north": "low",
@@ -105091,7 +105175,7 @@
}
},
{
- "id": 15730,
+ "id": 16199,
"properties": {
"east": "tall",
"north": "low",
@@ -105102,7 +105186,7 @@
}
},
{
- "id": 15731,
+ "id": 16200,
"properties": {
"east": "tall",
"north": "low",
@@ -105113,7 +105197,7 @@
}
},
{
- "id": 15732,
+ "id": 16201,
"properties": {
"east": "tall",
"north": "low",
@@ -105124,7 +105208,7 @@
}
},
{
- "id": 15733,
+ "id": 16202,
"properties": {
"east": "tall",
"north": "low",
@@ -105135,7 +105219,7 @@
}
},
{
- "id": 15734,
+ "id": 16203,
"properties": {
"east": "tall",
"north": "low",
@@ -105146,7 +105230,7 @@
}
},
{
- "id": 15735,
+ "id": 16204,
"properties": {
"east": "tall",
"north": "low",
@@ -105157,7 +105241,7 @@
}
},
{
- "id": 15736,
+ "id": 16205,
"properties": {
"east": "tall",
"north": "low",
@@ -105168,7 +105252,7 @@
}
},
{
- "id": 15737,
+ "id": 16206,
"properties": {
"east": "tall",
"north": "low",
@@ -105179,7 +105263,7 @@
}
},
{
- "id": 15738,
+ "id": 16207,
"properties": {
"east": "tall",
"north": "low",
@@ -105190,7 +105274,7 @@
}
},
{
- "id": 15739,
+ "id": 16208,
"properties": {
"east": "tall",
"north": "low",
@@ -105201,7 +105285,7 @@
}
},
{
- "id": 15740,
+ "id": 16209,
"properties": {
"east": "tall",
"north": "low",
@@ -105212,7 +105296,7 @@
}
},
{
- "id": 15741,
+ "id": 16210,
"properties": {
"east": "tall",
"north": "low",
@@ -105223,7 +105307,7 @@
}
},
{
- "id": 15742,
+ "id": 16211,
"properties": {
"east": "tall",
"north": "low",
@@ -105234,7 +105318,7 @@
}
},
{
- "id": 15743,
+ "id": 16212,
"properties": {
"east": "tall",
"north": "low",
@@ -105245,7 +105329,7 @@
}
},
{
- "id": 15744,
+ "id": 16213,
"properties": {
"east": "tall",
"north": "tall",
@@ -105256,7 +105340,7 @@
}
},
{
- "id": 15745,
+ "id": 16214,
"properties": {
"east": "tall",
"north": "tall",
@@ -105267,7 +105351,7 @@
}
},
{
- "id": 15746,
+ "id": 16215,
"properties": {
"east": "tall",
"north": "tall",
@@ -105278,7 +105362,7 @@
}
},
{
- "id": 15747,
+ "id": 16216,
"properties": {
"east": "tall",
"north": "tall",
@@ -105289,7 +105373,7 @@
}
},
{
- "id": 15748,
+ "id": 16217,
"properties": {
"east": "tall",
"north": "tall",
@@ -105300,7 +105384,7 @@
}
},
{
- "id": 15749,
+ "id": 16218,
"properties": {
"east": "tall",
"north": "tall",
@@ -105311,7 +105395,7 @@
}
},
{
- "id": 15750,
+ "id": 16219,
"properties": {
"east": "tall",
"north": "tall",
@@ -105322,7 +105406,7 @@
}
},
{
- "id": 15751,
+ "id": 16220,
"properties": {
"east": "tall",
"north": "tall",
@@ -105333,7 +105417,7 @@
}
},
{
- "id": 15752,
+ "id": 16221,
"properties": {
"east": "tall",
"north": "tall",
@@ -105344,7 +105428,7 @@
}
},
{
- "id": 15753,
+ "id": 16222,
"properties": {
"east": "tall",
"north": "tall",
@@ -105355,7 +105439,7 @@
}
},
{
- "id": 15754,
+ "id": 16223,
"properties": {
"east": "tall",
"north": "tall",
@@ -105366,7 +105450,7 @@
}
},
{
- "id": 15755,
+ "id": 16224,
"properties": {
"east": "tall",
"north": "tall",
@@ -105377,7 +105461,7 @@
}
},
{
- "id": 15756,
+ "id": 16225,
"properties": {
"east": "tall",
"north": "tall",
@@ -105388,7 +105472,7 @@
}
},
{
- "id": 15757,
+ "id": 16226,
"properties": {
"east": "tall",
"north": "tall",
@@ -105399,7 +105483,7 @@
}
},
{
- "id": 15758,
+ "id": 16227,
"properties": {
"east": "tall",
"north": "tall",
@@ -105410,7 +105494,7 @@
}
},
{
- "id": 15759,
+ "id": 16228,
"properties": {
"east": "tall",
"north": "tall",
@@ -105421,7 +105505,7 @@
}
},
{
- "id": 15760,
+ "id": 16229,
"properties": {
"east": "tall",
"north": "tall",
@@ -105432,7 +105516,7 @@
}
},
{
- "id": 15761,
+ "id": 16230,
"properties": {
"east": "tall",
"north": "tall",
@@ -105443,7 +105527,7 @@
}
},
{
- "id": 15762,
+ "id": 16231,
"properties": {
"east": "tall",
"north": "tall",
@@ -105454,7 +105538,7 @@
}
},
{
- "id": 15763,
+ "id": 16232,
"properties": {
"east": "tall",
"north": "tall",
@@ -105465,7 +105549,7 @@
}
},
{
- "id": 15764,
+ "id": 16233,
"properties": {
"east": "tall",
"north": "tall",
@@ -105476,7 +105560,7 @@
}
},
{
- "id": 15765,
+ "id": 16234,
"properties": {
"east": "tall",
"north": "tall",
@@ -105487,7 +105571,7 @@
}
},
{
- "id": 15766,
+ "id": 16235,
"properties": {
"east": "tall",
"north": "tall",
@@ -105498,7 +105582,7 @@
}
},
{
- "id": 15767,
+ "id": 16236,
"properties": {
"east": "tall",
"north": "tall",
@@ -105509,7 +105593,7 @@
}
},
{
- "id": 15768,
+ "id": 16237,
"properties": {
"east": "tall",
"north": "tall",
@@ -105520,7 +105604,7 @@
}
},
{
- "id": 15769,
+ "id": 16238,
"properties": {
"east": "tall",
"north": "tall",
@@ -105531,7 +105615,7 @@
}
},
{
- "id": 15770,
+ "id": 16239,
"properties": {
"east": "tall",
"north": "tall",
@@ -105542,7 +105626,7 @@
}
},
{
- "id": 15771,
+ "id": 16240,
"properties": {
"east": "tall",
"north": "tall",
@@ -105553,7 +105637,7 @@
}
},
{
- "id": 15772,
+ "id": 16241,
"properties": {
"east": "tall",
"north": "tall",
@@ -105564,7 +105648,7 @@
}
},
{
- "id": 15773,
+ "id": 16242,
"properties": {
"east": "tall",
"north": "tall",
@@ -105575,7 +105659,7 @@
}
},
{
- "id": 15774,
+ "id": 16243,
"properties": {
"east": "tall",
"north": "tall",
@@ -105586,7 +105670,7 @@
}
},
{
- "id": 15775,
+ "id": 16244,
"properties": {
"east": "tall",
"north": "tall",
@@ -105597,7 +105681,7 @@
}
},
{
- "id": 15776,
+ "id": 16245,
"properties": {
"east": "tall",
"north": "tall",
@@ -105608,7 +105692,7 @@
}
},
{
- "id": 15777,
+ "id": 16246,
"properties": {
"east": "tall",
"north": "tall",
@@ -105619,7 +105703,7 @@
}
},
{
- "id": 15778,
+ "id": 16247,
"properties": {
"east": "tall",
"north": "tall",
@@ -105630,7 +105714,7 @@
}
},
{
- "id": 15779,
+ "id": 16248,
"properties": {
"east": "tall",
"north": "tall",
@@ -105678,7 +105762,7 @@
"states": [
{
"default": true,
- "id": 118
+ "id": 124
}
]
},
@@ -105711,97 +105795,97 @@
"states": [
{
"default": true,
- "id": 10871,
+ "id": 11206,
"properties": {
"rotation": "0"
}
},
{
- "id": 10872,
+ "id": 11207,
"properties": {
"rotation": "1"
}
},
{
- "id": 10873,
+ "id": 11208,
"properties": {
"rotation": "2"
}
},
{
- "id": 10874,
+ "id": 11209,
"properties": {
"rotation": "3"
}
},
{
- "id": 10875,
+ "id": 11210,
"properties": {
"rotation": "4"
}
},
{
- "id": 10876,
+ "id": 11211,
"properties": {
"rotation": "5"
}
},
{
- "id": 10877,
+ "id": 11212,
"properties": {
"rotation": "6"
}
},
{
- "id": 10878,
+ "id": 11213,
"properties": {
"rotation": "7"
}
},
{
- "id": 10879,
+ "id": 11214,
"properties": {
"rotation": "8"
}
},
{
- "id": 10880,
+ "id": 11215,
"properties": {
"rotation": "9"
}
},
{
- "id": 10881,
+ "id": 11216,
"properties": {
"rotation": "10"
}
},
{
- "id": 10882,
+ "id": 11217,
"properties": {
"rotation": "11"
}
},
{
- "id": 10883,
+ "id": 11218,
"properties": {
"rotation": "12"
}
},
{
- "id": 10884,
+ "id": 11219,
"properties": {
"rotation": "13"
}
},
{
- "id": 10885,
+ "id": 11220,
"properties": {
"rotation": "14"
}
},
{
- "id": 10886,
+ "id": 11221,
"properties": {
"rotation": "15"
}
@@ -105832,7 +105916,7 @@
},
"states": [
{
- "id": 1800,
+ "id": 1843,
"properties": {
"facing": "north",
"occupied": "true",
@@ -105840,7 +105924,7 @@
}
},
{
- "id": 1801,
+ "id": 1844,
"properties": {
"facing": "north",
"occupied": "true",
@@ -105848,7 +105932,7 @@
}
},
{
- "id": 1802,
+ "id": 1845,
"properties": {
"facing": "north",
"occupied": "false",
@@ -105857,7 +105941,7 @@
},
{
"default": true,
- "id": 1803,
+ "id": 1846,
"properties": {
"facing": "north",
"occupied": "false",
@@ -105865,7 +105949,7 @@
}
},
{
- "id": 1804,
+ "id": 1847,
"properties": {
"facing": "south",
"occupied": "true",
@@ -105873,7 +105957,7 @@
}
},
{
- "id": 1805,
+ "id": 1848,
"properties": {
"facing": "south",
"occupied": "true",
@@ -105881,7 +105965,7 @@
}
},
{
- "id": 1806,
+ "id": 1849,
"properties": {
"facing": "south",
"occupied": "false",
@@ -105889,7 +105973,7 @@
}
},
{
- "id": 1807,
+ "id": 1850,
"properties": {
"facing": "south",
"occupied": "false",
@@ -105897,7 +105981,7 @@
}
},
{
- "id": 1808,
+ "id": 1851,
"properties": {
"facing": "west",
"occupied": "true",
@@ -105905,7 +105989,7 @@
}
},
{
- "id": 1809,
+ "id": 1852,
"properties": {
"facing": "west",
"occupied": "true",
@@ -105913,7 +105997,7 @@
}
},
{
- "id": 1810,
+ "id": 1853,
"properties": {
"facing": "west",
"occupied": "false",
@@ -105921,7 +106005,7 @@
}
},
{
- "id": 1811,
+ "id": 1854,
"properties": {
"facing": "west",
"occupied": "false",
@@ -105929,7 +106013,7 @@
}
},
{
- "id": 1812,
+ "id": 1855,
"properties": {
"facing": "east",
"occupied": "true",
@@ -105937,7 +106021,7 @@
}
},
{
- "id": 1813,
+ "id": 1856,
"properties": {
"facing": "east",
"occupied": "true",
@@ -105945,7 +106029,7 @@
}
},
{
- "id": 1814,
+ "id": 1857,
"properties": {
"facing": "east",
"occupied": "false",
@@ -105953,7 +106037,7 @@
}
},
{
- "id": 1815,
+ "id": 1858,
"properties": {
"facing": "east",
"occupied": "false",
@@ -105985,7 +106069,7 @@
},
"states": [
{
- "id": 20853,
+ "id": 21322,
"properties": {
"candles": "1",
"lit": "true",
@@ -105993,7 +106077,7 @@
}
},
{
- "id": 20854,
+ "id": 21323,
"properties": {
"candles": "1",
"lit": "true",
@@ -106001,7 +106085,7 @@
}
},
{
- "id": 20855,
+ "id": 21324,
"properties": {
"candles": "1",
"lit": "false",
@@ -106010,7 +106094,7 @@
},
{
"default": true,
- "id": 20856,
+ "id": 21325,
"properties": {
"candles": "1",
"lit": "false",
@@ -106018,7 +106102,7 @@
}
},
{
- "id": 20857,
+ "id": 21326,
"properties": {
"candles": "2",
"lit": "true",
@@ -106026,7 +106110,7 @@
}
},
{
- "id": 20858,
+ "id": 21327,
"properties": {
"candles": "2",
"lit": "true",
@@ -106034,7 +106118,7 @@
}
},
{
- "id": 20859,
+ "id": 21328,
"properties": {
"candles": "2",
"lit": "false",
@@ -106042,7 +106126,7 @@
}
},
{
- "id": 20860,
+ "id": 21329,
"properties": {
"candles": "2",
"lit": "false",
@@ -106050,7 +106134,7 @@
}
},
{
- "id": 20861,
+ "id": 21330,
"properties": {
"candles": "3",
"lit": "true",
@@ -106058,7 +106142,7 @@
}
},
{
- "id": 20862,
+ "id": 21331,
"properties": {
"candles": "3",
"lit": "true",
@@ -106066,7 +106150,7 @@
}
},
{
- "id": 20863,
+ "id": 21332,
"properties": {
"candles": "3",
"lit": "false",
@@ -106074,7 +106158,7 @@
}
},
{
- "id": 20864,
+ "id": 21333,
"properties": {
"candles": "3",
"lit": "false",
@@ -106082,7 +106166,7 @@
}
},
{
- "id": 20865,
+ "id": 21334,
"properties": {
"candles": "4",
"lit": "true",
@@ -106090,7 +106174,7 @@
}
},
{
- "id": 20866,
+ "id": 21335,
"properties": {
"candles": "4",
"lit": "true",
@@ -106098,7 +106182,7 @@
}
},
{
- "id": 20867,
+ "id": 21336,
"properties": {
"candles": "4",
"lit": "false",
@@ -106106,7 +106190,7 @@
}
},
{
- "id": 20868,
+ "id": 21337,
"properties": {
"candles": "4",
"lit": "false",
@@ -106129,14 +106213,14 @@
},
"states": [
{
- "id": 21013,
+ "id": 21482,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 21014,
+ "id": 21483,
"properties": {
"lit": "false"
}
@@ -106152,7 +106236,7 @@
"states": [
{
"default": true,
- "id": 10735
+ "id": 11070
}
]
},
@@ -106164,7 +106248,7 @@
"states": [
{
"default": true,
- "id": 12735
+ "id": 13204
}
]
},
@@ -106177,7 +106261,7 @@
"states": [
{
"default": true,
- "id": 12751
+ "id": 13220
}
]
},
@@ -106197,25 +106281,25 @@
"states": [
{
"default": true,
- "id": 12692,
+ "id": 13161,
"properties": {
"facing": "north"
}
},
{
- "id": 12693,
+ "id": 13162,
"properties": {
"facing": "south"
}
},
{
- "id": 12694,
+ "id": 13163,
"properties": {
"facing": "west"
}
},
{
- "id": 12695,
+ "id": 13164,
"properties": {
"facing": "east"
}
@@ -106240,38 +106324,38 @@
},
"states": [
{
- "id": 12610,
+ "id": 13079,
"properties": {
"facing": "north"
}
},
{
- "id": 12611,
+ "id": 13080,
"properties": {
"facing": "east"
}
},
{
- "id": 12612,
+ "id": 13081,
"properties": {
"facing": "south"
}
},
{
- "id": 12613,
+ "id": 13082,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12614,
+ "id": 13083,
"properties": {
"facing": "up"
}
},
{
- "id": 12615,
+ "id": 13084,
"properties": {
"facing": "down"
}
@@ -106287,7 +106371,7 @@
"states": [
{
"default": true,
- "id": 5952
+ "id": 6118
}
]
},
@@ -106321,7 +106405,7 @@
},
"states": [
{
- "id": 9596,
+ "id": 9851,
"properties": {
"east": "true",
"north": "true",
@@ -106331,7 +106415,7 @@
}
},
{
- "id": 9597,
+ "id": 9852,
"properties": {
"east": "true",
"north": "true",
@@ -106341,7 +106425,7 @@
}
},
{
- "id": 9598,
+ "id": 9853,
"properties": {
"east": "true",
"north": "true",
@@ -106351,7 +106435,7 @@
}
},
{
- "id": 9599,
+ "id": 9854,
"properties": {
"east": "true",
"north": "true",
@@ -106361,7 +106445,7 @@
}
},
{
- "id": 9600,
+ "id": 9855,
"properties": {
"east": "true",
"north": "true",
@@ -106371,7 +106455,7 @@
}
},
{
- "id": 9601,
+ "id": 9856,
"properties": {
"east": "true",
"north": "true",
@@ -106381,7 +106465,7 @@
}
},
{
- "id": 9602,
+ "id": 9857,
"properties": {
"east": "true",
"north": "true",
@@ -106391,7 +106475,7 @@
}
},
{
- "id": 9603,
+ "id": 9858,
"properties": {
"east": "true",
"north": "true",
@@ -106401,7 +106485,7 @@
}
},
{
- "id": 9604,
+ "id": 9859,
"properties": {
"east": "true",
"north": "false",
@@ -106411,7 +106495,7 @@
}
},
{
- "id": 9605,
+ "id": 9860,
"properties": {
"east": "true",
"north": "false",
@@ -106421,7 +106505,7 @@
}
},
{
- "id": 9606,
+ "id": 9861,
"properties": {
"east": "true",
"north": "false",
@@ -106431,7 +106515,7 @@
}
},
{
- "id": 9607,
+ "id": 9862,
"properties": {
"east": "true",
"north": "false",
@@ -106441,7 +106525,7 @@
}
},
{
- "id": 9608,
+ "id": 9863,
"properties": {
"east": "true",
"north": "false",
@@ -106451,7 +106535,7 @@
}
},
{
- "id": 9609,
+ "id": 9864,
"properties": {
"east": "true",
"north": "false",
@@ -106461,7 +106545,7 @@
}
},
{
- "id": 9610,
+ "id": 9865,
"properties": {
"east": "true",
"north": "false",
@@ -106471,7 +106555,7 @@
}
},
{
- "id": 9611,
+ "id": 9866,
"properties": {
"east": "true",
"north": "false",
@@ -106481,7 +106565,7 @@
}
},
{
- "id": 9612,
+ "id": 9867,
"properties": {
"east": "false",
"north": "true",
@@ -106491,7 +106575,7 @@
}
},
{
- "id": 9613,
+ "id": 9868,
"properties": {
"east": "false",
"north": "true",
@@ -106501,7 +106585,7 @@
}
},
{
- "id": 9614,
+ "id": 9869,
"properties": {
"east": "false",
"north": "true",
@@ -106511,7 +106595,7 @@
}
},
{
- "id": 9615,
+ "id": 9870,
"properties": {
"east": "false",
"north": "true",
@@ -106521,7 +106605,7 @@
}
},
{
- "id": 9616,
+ "id": 9871,
"properties": {
"east": "false",
"north": "true",
@@ -106531,7 +106615,7 @@
}
},
{
- "id": 9617,
+ "id": 9872,
"properties": {
"east": "false",
"north": "true",
@@ -106541,7 +106625,7 @@
}
},
{
- "id": 9618,
+ "id": 9873,
"properties": {
"east": "false",
"north": "true",
@@ -106551,7 +106635,7 @@
}
},
{
- "id": 9619,
+ "id": 9874,
"properties": {
"east": "false",
"north": "true",
@@ -106561,7 +106645,7 @@
}
},
{
- "id": 9620,
+ "id": 9875,
"properties": {
"east": "false",
"north": "false",
@@ -106571,7 +106655,7 @@
}
},
{
- "id": 9621,
+ "id": 9876,
"properties": {
"east": "false",
"north": "false",
@@ -106581,7 +106665,7 @@
}
},
{
- "id": 9622,
+ "id": 9877,
"properties": {
"east": "false",
"north": "false",
@@ -106591,7 +106675,7 @@
}
},
{
- "id": 9623,
+ "id": 9878,
"properties": {
"east": "false",
"north": "false",
@@ -106601,7 +106685,7 @@
}
},
{
- "id": 9624,
+ "id": 9879,
"properties": {
"east": "false",
"north": "false",
@@ -106611,7 +106695,7 @@
}
},
{
- "id": 9625,
+ "id": 9880,
"properties": {
"east": "false",
"north": "false",
@@ -106621,7 +106705,7 @@
}
},
{
- "id": 9626,
+ "id": 9881,
"properties": {
"east": "false",
"north": "false",
@@ -106632,7 +106716,7 @@
},
{
"default": true,
- "id": 9627,
+ "id": 9882,
"properties": {
"east": "false",
"north": "false",
@@ -106651,7 +106735,7 @@
"states": [
{
"default": true,
- "id": 9363
+ "id": 9618
}
]
},
@@ -106672,25 +106756,25 @@
"states": [
{
"default": true,
- "id": 11043,
+ "id": 11378,
"properties": {
"facing": "north"
}
},
{
- "id": 11044,
+ "id": 11379,
"properties": {
"facing": "south"
}
},
{
- "id": 11045,
+ "id": 11380,
"properties": {
"facing": "west"
}
},
{
- "id": 11046,
+ "id": 11381,
"properties": {
"facing": "east"
}
@@ -106705,7 +106789,7 @@
"states": [
{
"default": true,
- "id": 2054
+ "id": 2097
}
]
},
@@ -106738,97 +106822,97 @@
"states": [
{
"default": true,
- "id": 10967,
+ "id": 11302,
"properties": {
"rotation": "0"
}
},
{
- "id": 10968,
+ "id": 11303,
"properties": {
"rotation": "1"
}
},
{
- "id": 10969,
+ "id": 11304,
"properties": {
"rotation": "2"
}
},
{
- "id": 10970,
+ "id": 11305,
"properties": {
"rotation": "3"
}
},
{
- "id": 10971,
+ "id": 11306,
"properties": {
"rotation": "4"
}
},
{
- "id": 10972,
+ "id": 11307,
"properties": {
"rotation": "5"
}
},
{
- "id": 10973,
+ "id": 11308,
"properties": {
"rotation": "6"
}
},
{
- "id": 10974,
+ "id": 11309,
"properties": {
"rotation": "7"
}
},
{
- "id": 10975,
+ "id": 11310,
"properties": {
"rotation": "8"
}
},
{
- "id": 10976,
+ "id": 11311,
"properties": {
"rotation": "9"
}
},
{
- "id": 10977,
+ "id": 11312,
"properties": {
"rotation": "10"
}
},
{
- "id": 10978,
+ "id": 11313,
"properties": {
"rotation": "11"
}
},
{
- "id": 10979,
+ "id": 11314,
"properties": {
"rotation": "12"
}
},
{
- "id": 10980,
+ "id": 11315,
"properties": {
"rotation": "13"
}
},
{
- "id": 10981,
+ "id": 11316,
"properties": {
"rotation": "14"
}
},
{
- "id": 10982,
+ "id": 11317,
"properties": {
"rotation": "15"
}
@@ -106859,7 +106943,7 @@
},
"states": [
{
- "id": 1896,
+ "id": 1939,
"properties": {
"facing": "north",
"occupied": "true",
@@ -106867,7 +106951,7 @@
}
},
{
- "id": 1897,
+ "id": 1940,
"properties": {
"facing": "north",
"occupied": "true",
@@ -106875,7 +106959,7 @@
}
},
{
- "id": 1898,
+ "id": 1941,
"properties": {
"facing": "north",
"occupied": "false",
@@ -106884,7 +106968,7 @@
},
{
"default": true,
- "id": 1899,
+ "id": 1942,
"properties": {
"facing": "north",
"occupied": "false",
@@ -106892,7 +106976,7 @@
}
},
{
- "id": 1900,
+ "id": 1943,
"properties": {
"facing": "south",
"occupied": "true",
@@ -106900,7 +106984,7 @@
}
},
{
- "id": 1901,
+ "id": 1944,
"properties": {
"facing": "south",
"occupied": "true",
@@ -106908,7 +106992,7 @@
}
},
{
- "id": 1902,
+ "id": 1945,
"properties": {
"facing": "south",
"occupied": "false",
@@ -106916,7 +107000,7 @@
}
},
{
- "id": 1903,
+ "id": 1946,
"properties": {
"facing": "south",
"occupied": "false",
@@ -106924,7 +107008,7 @@
}
},
{
- "id": 1904,
+ "id": 1947,
"properties": {
"facing": "west",
"occupied": "true",
@@ -106932,7 +107016,7 @@
}
},
{
- "id": 1905,
+ "id": 1948,
"properties": {
"facing": "west",
"occupied": "true",
@@ -106940,7 +107024,7 @@
}
},
{
- "id": 1906,
+ "id": 1949,
"properties": {
"facing": "west",
"occupied": "false",
@@ -106948,7 +107032,7 @@
}
},
{
- "id": 1907,
+ "id": 1950,
"properties": {
"facing": "west",
"occupied": "false",
@@ -106956,7 +107040,7 @@
}
},
{
- "id": 1908,
+ "id": 1951,
"properties": {
"facing": "east",
"occupied": "true",
@@ -106964,7 +107048,7 @@
}
},
{
- "id": 1909,
+ "id": 1952,
"properties": {
"facing": "east",
"occupied": "true",
@@ -106972,7 +107056,7 @@
}
},
{
- "id": 1910,
+ "id": 1953,
"properties": {
"facing": "east",
"occupied": "false",
@@ -106980,7 +107064,7 @@
}
},
{
- "id": 1911,
+ "id": 1954,
"properties": {
"facing": "east",
"occupied": "false",
@@ -107012,7 +107096,7 @@
},
"states": [
{
- "id": 20949,
+ "id": 21418,
"properties": {
"candles": "1",
"lit": "true",
@@ -107020,7 +107104,7 @@
}
},
{
- "id": 20950,
+ "id": 21419,
"properties": {
"candles": "1",
"lit": "true",
@@ -107028,7 +107112,7 @@
}
},
{
- "id": 20951,
+ "id": 21420,
"properties": {
"candles": "1",
"lit": "false",
@@ -107037,7 +107121,7 @@
},
{
"default": true,
- "id": 20952,
+ "id": 21421,
"properties": {
"candles": "1",
"lit": "false",
@@ -107045,7 +107129,7 @@
}
},
{
- "id": 20953,
+ "id": 21422,
"properties": {
"candles": "2",
"lit": "true",
@@ -107053,7 +107137,7 @@
}
},
{
- "id": 20954,
+ "id": 21423,
"properties": {
"candles": "2",
"lit": "true",
@@ -107061,7 +107145,7 @@
}
},
{
- "id": 20955,
+ "id": 21424,
"properties": {
"candles": "2",
"lit": "false",
@@ -107069,7 +107153,7 @@
}
},
{
- "id": 20956,
+ "id": 21425,
"properties": {
"candles": "2",
"lit": "false",
@@ -107077,7 +107161,7 @@
}
},
{
- "id": 20957,
+ "id": 21426,
"properties": {
"candles": "3",
"lit": "true",
@@ -107085,7 +107169,7 @@
}
},
{
- "id": 20958,
+ "id": 21427,
"properties": {
"candles": "3",
"lit": "true",
@@ -107093,7 +107177,7 @@
}
},
{
- "id": 20959,
+ "id": 21428,
"properties": {
"candles": "3",
"lit": "false",
@@ -107101,7 +107185,7 @@
}
},
{
- "id": 20960,
+ "id": 21429,
"properties": {
"candles": "3",
"lit": "false",
@@ -107109,7 +107193,7 @@
}
},
{
- "id": 20961,
+ "id": 21430,
"properties": {
"candles": "4",
"lit": "true",
@@ -107117,7 +107201,7 @@
}
},
{
- "id": 20962,
+ "id": 21431,
"properties": {
"candles": "4",
"lit": "true",
@@ -107125,7 +107209,7 @@
}
},
{
- "id": 20963,
+ "id": 21432,
"properties": {
"candles": "4",
"lit": "false",
@@ -107133,7 +107217,7 @@
}
},
{
- "id": 20964,
+ "id": 21433,
"properties": {
"candles": "4",
"lit": "false",
@@ -107156,14 +107240,14 @@
},
"states": [
{
- "id": 21025,
+ "id": 21494,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 21026,
+ "id": 21495,
"properties": {
"lit": "false"
}
@@ -107179,7 +107263,7 @@
"states": [
{
"default": true,
- "id": 10741
+ "id": 11076
}
]
},
@@ -107191,7 +107275,7 @@
"states": [
{
"default": true,
- "id": 12741
+ "id": 13210
}
]
},
@@ -107204,7 +107288,7 @@
"states": [
{
"default": true,
- "id": 12757
+ "id": 13226
}
]
},
@@ -107224,25 +107308,25 @@
"states": [
{
"default": true,
- "id": 12716,
+ "id": 13185,
"properties": {
"facing": "north"
}
},
{
- "id": 12717,
+ "id": 13186,
"properties": {
"facing": "south"
}
},
{
- "id": 12718,
+ "id": 13187,
"properties": {
"facing": "west"
}
},
{
- "id": 12719,
+ "id": 13188,
"properties": {
"facing": "east"
}
@@ -107267,38 +107351,38 @@
},
"states": [
{
- "id": 12646,
+ "id": 13115,
"properties": {
"facing": "north"
}
},
{
- "id": 12647,
+ "id": 13116,
"properties": {
"facing": "east"
}
},
{
- "id": 12648,
+ "id": 13117,
"properties": {
"facing": "south"
}
},
{
- "id": 12649,
+ "id": 13118,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12650,
+ "id": 13119,
"properties": {
"facing": "up"
}
},
{
- "id": 12651,
+ "id": 13120,
"properties": {
"facing": "down"
}
@@ -107314,7 +107398,7 @@
"states": [
{
"default": true,
- "id": 5958
+ "id": 6124
}
]
},
@@ -107348,7 +107432,7 @@
},
"states": [
{
- "id": 9788,
+ "id": 10043,
"properties": {
"east": "true",
"north": "true",
@@ -107358,7 +107442,7 @@
}
},
{
- "id": 9789,
+ "id": 10044,
"properties": {
"east": "true",
"north": "true",
@@ -107368,7 +107452,7 @@
}
},
{
- "id": 9790,
+ "id": 10045,
"properties": {
"east": "true",
"north": "true",
@@ -107378,7 +107462,7 @@
}
},
{
- "id": 9791,
+ "id": 10046,
"properties": {
"east": "true",
"north": "true",
@@ -107388,7 +107472,7 @@
}
},
{
- "id": 9792,
+ "id": 10047,
"properties": {
"east": "true",
"north": "true",
@@ -107398,7 +107482,7 @@
}
},
{
- "id": 9793,
+ "id": 10048,
"properties": {
"east": "true",
"north": "true",
@@ -107408,7 +107492,7 @@
}
},
{
- "id": 9794,
+ "id": 10049,
"properties": {
"east": "true",
"north": "true",
@@ -107418,7 +107502,7 @@
}
},
{
- "id": 9795,
+ "id": 10050,
"properties": {
"east": "true",
"north": "true",
@@ -107428,7 +107512,7 @@
}
},
{
- "id": 9796,
+ "id": 10051,
"properties": {
"east": "true",
"north": "false",
@@ -107438,7 +107522,7 @@
}
},
{
- "id": 9797,
+ "id": 10052,
"properties": {
"east": "true",
"north": "false",
@@ -107448,7 +107532,7 @@
}
},
{
- "id": 9798,
+ "id": 10053,
"properties": {
"east": "true",
"north": "false",
@@ -107458,7 +107542,7 @@
}
},
{
- "id": 9799,
+ "id": 10054,
"properties": {
"east": "true",
"north": "false",
@@ -107468,7 +107552,7 @@
}
},
{
- "id": 9800,
+ "id": 10055,
"properties": {
"east": "true",
"north": "false",
@@ -107478,7 +107562,7 @@
}
},
{
- "id": 9801,
+ "id": 10056,
"properties": {
"east": "true",
"north": "false",
@@ -107488,7 +107572,7 @@
}
},
{
- "id": 9802,
+ "id": 10057,
"properties": {
"east": "true",
"north": "false",
@@ -107498,7 +107582,7 @@
}
},
{
- "id": 9803,
+ "id": 10058,
"properties": {
"east": "true",
"north": "false",
@@ -107508,7 +107592,7 @@
}
},
{
- "id": 9804,
+ "id": 10059,
"properties": {
"east": "false",
"north": "true",
@@ -107518,7 +107602,7 @@
}
},
{
- "id": 9805,
+ "id": 10060,
"properties": {
"east": "false",
"north": "true",
@@ -107528,7 +107612,7 @@
}
},
{
- "id": 9806,
+ "id": 10061,
"properties": {
"east": "false",
"north": "true",
@@ -107538,7 +107622,7 @@
}
},
{
- "id": 9807,
+ "id": 10062,
"properties": {
"east": "false",
"north": "true",
@@ -107548,7 +107632,7 @@
}
},
{
- "id": 9808,
+ "id": 10063,
"properties": {
"east": "false",
"north": "true",
@@ -107558,7 +107642,7 @@
}
},
{
- "id": 9809,
+ "id": 10064,
"properties": {
"east": "false",
"north": "true",
@@ -107568,7 +107652,7 @@
}
},
{
- "id": 9810,
+ "id": 10065,
"properties": {
"east": "false",
"north": "true",
@@ -107578,7 +107662,7 @@
}
},
{
- "id": 9811,
+ "id": 10066,
"properties": {
"east": "false",
"north": "true",
@@ -107588,7 +107672,7 @@
}
},
{
- "id": 9812,
+ "id": 10067,
"properties": {
"east": "false",
"north": "false",
@@ -107598,7 +107682,7 @@
}
},
{
- "id": 9813,
+ "id": 10068,
"properties": {
"east": "false",
"north": "false",
@@ -107608,7 +107692,7 @@
}
},
{
- "id": 9814,
+ "id": 10069,
"properties": {
"east": "false",
"north": "false",
@@ -107618,7 +107702,7 @@
}
},
{
- "id": 9815,
+ "id": 10070,
"properties": {
"east": "false",
"north": "false",
@@ -107628,7 +107712,7 @@
}
},
{
- "id": 9816,
+ "id": 10071,
"properties": {
"east": "false",
"north": "false",
@@ -107638,7 +107722,7 @@
}
},
{
- "id": 9817,
+ "id": 10072,
"properties": {
"east": "false",
"north": "false",
@@ -107648,7 +107732,7 @@
}
},
{
- "id": 9818,
+ "id": 10073,
"properties": {
"east": "false",
"north": "false",
@@ -107659,7 +107743,7 @@
},
{
"default": true,
- "id": 9819,
+ "id": 10074,
"properties": {
"east": "false",
"north": "false",
@@ -107678,7 +107762,7 @@
"states": [
{
"default": true,
- "id": 9369
+ "id": 9624
}
]
},
@@ -107699,25 +107783,25 @@
"states": [
{
"default": true,
- "id": 11067,
+ "id": 11402,
"properties": {
"facing": "north"
}
},
{
- "id": 11068,
+ "id": 11403,
"properties": {
"facing": "south"
}
},
{
- "id": 11069,
+ "id": 11404,
"properties": {
"facing": "west"
}
},
{
- "id": 11070,
+ "id": 11405,
"properties": {
"facing": "east"
}
@@ -107732,7 +107816,7 @@
"states": [
{
"default": true,
- "id": 2060
+ "id": 2103
}
]
},
@@ -107756,28 +107840,28 @@
},
"states": [
{
- "id": 18438,
+ "id": 18907,
"properties": {
"face": "floor",
"facing": "north"
}
},
{
- "id": 18439,
+ "id": 18908,
"properties": {
"face": "floor",
"facing": "south"
}
},
{
- "id": 18440,
+ "id": 18909,
"properties": {
"face": "floor",
"facing": "west"
}
},
{
- "id": 18441,
+ "id": 18910,
"properties": {
"face": "floor",
"facing": "east"
@@ -107785,56 +107869,56 @@
},
{
"default": true,
- "id": 18442,
+ "id": 18911,
"properties": {
"face": "wall",
"facing": "north"
}
},
{
- "id": 18443,
+ "id": 18912,
"properties": {
"face": "wall",
"facing": "south"
}
},
{
- "id": 18444,
+ "id": 18913,
"properties": {
"face": "wall",
"facing": "west"
}
},
{
- "id": 18445,
+ "id": 18914,
"properties": {
"face": "wall",
"facing": "east"
}
},
{
- "id": 18446,
+ "id": 18915,
"properties": {
"face": "ceiling",
"facing": "north"
}
},
{
- "id": 18447,
+ "id": 18916,
"properties": {
"face": "ceiling",
"facing": "south"
}
},
{
- "id": 18448,
+ "id": 18917,
"properties": {
"face": "ceiling",
"facing": "west"
}
},
{
- "id": 18449,
+ "id": 18918,
"properties": {
"face": "ceiling",
"facing": "east"
@@ -107855,14 +107939,14 @@
},
"states": [
{
- "id": 24900,
+ "id": 25369,
"properties": {
"waterlogged": "true"
}
},
{
"default": true,
- "id": 24901,
+ "id": 25370,
"properties": {
"waterlogged": "false"
}
@@ -107883,20 +107967,20 @@
},
"states": [
{
- "id": 10725,
+ "id": 11060,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 10726,
+ "id": 11061,
"properties": {
"axis": "y"
}
},
{
- "id": 10727,
+ "id": 11062,
"properties": {
"axis": "z"
}
@@ -107916,14 +108000,14 @@
},
"states": [
{
- "id": 26682,
+ "id": 27151,
"properties": {
"waterlogged": "true"
}
},
{
"default": true,
- "id": 26683,
+ "id": 27152,
"properties": {
"waterlogged": "false"
}
@@ -107960,97 +108044,97 @@
"states": [
{
"default": true,
- "id": 9159,
+ "id": 9414,
"properties": {
"power": "0"
}
},
{
- "id": 9160,
+ "id": 9415,
"properties": {
"power": "1"
}
},
{
- "id": 9161,
+ "id": 9416,
"properties": {
"power": "2"
}
},
{
- "id": 9162,
+ "id": 9417,
"properties": {
"power": "3"
}
},
{
- "id": 9163,
+ "id": 9418,
"properties": {
"power": "4"
}
},
{
- "id": 9164,
+ "id": 9419,
"properties": {
"power": "5"
}
},
{
- "id": 9165,
+ "id": 9420,
"properties": {
"power": "6"
}
},
{
- "id": 9166,
+ "id": 9421,
"properties": {
"power": "7"
}
},
{
- "id": 9167,
+ "id": 9422,
"properties": {
"power": "8"
}
},
{
- "id": 9168,
+ "id": 9423,
"properties": {
"power": "9"
}
},
{
- "id": 9169,
+ "id": 9424,
"properties": {
"power": "10"
}
},
{
- "id": 9170,
+ "id": 9425,
"properties": {
"power": "11"
}
},
{
- "id": 9171,
+ "id": 9426,
"properties": {
"power": "12"
}
},
{
- "id": 9172,
+ "id": 9427,
"properties": {
"power": "13"
}
},
{
- "id": 9173,
+ "id": 9428,
"properties": {
"power": "14"
}
},
{
- "id": 9174,
+ "id": 9429,
"properties": {
"power": "15"
}
@@ -108065,7 +108149,7 @@
"states": [
{
"default": true,
- "id": 19445
+ "id": 19914
}
]
},
@@ -108077,7 +108161,7 @@
"states": [
{
"default": true,
- "id": 19446
+ "id": 19915
}
]
},
@@ -108102,70 +108186,70 @@
"states": [
{
"default": true,
- "id": 9225,
+ "id": 9480,
"properties": {
"enabled": "true",
"facing": "down"
}
},
{
- "id": 9226,
+ "id": 9481,
"properties": {
"enabled": "true",
"facing": "north"
}
},
{
- "id": 9227,
+ "id": 9482,
"properties": {
"enabled": "true",
"facing": "south"
}
},
{
- "id": 9228,
+ "id": 9483,
"properties": {
"enabled": "true",
"facing": "west"
}
},
{
- "id": 9229,
+ "id": 9484,
"properties": {
"enabled": "true",
"facing": "east"
}
},
{
- "id": 9230,
+ "id": 9485,
"properties": {
"enabled": "false",
"facing": "down"
}
},
{
- "id": 9231,
+ "id": 9486,
"properties": {
"enabled": "false",
"facing": "north"
}
},
{
- "id": 9232,
+ "id": 9487,
"properties": {
"enabled": "false",
"facing": "south"
}
},
{
- "id": 9233,
+ "id": 9488,
"properties": {
"enabled": "false",
"facing": "west"
}
},
{
- "id": 9234,
+ "id": 9489,
"properties": {
"enabled": "false",
"facing": "east"
@@ -108188,13 +108272,13 @@
"states": [
{
"default": true,
- "id": 12831,
+ "id": 13300,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12832,
+ "id": 13301,
"properties": {
"waterlogged": "false"
}
@@ -108210,7 +108294,7 @@
"states": [
{
"default": true,
- "id": 12812
+ "id": 13281
}
]
},
@@ -108229,13 +108313,13 @@
"states": [
{
"default": true,
- "id": 12851,
+ "id": 13320,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12852,
+ "id": 13321,
"properties": {
"waterlogged": "false"
}
@@ -108263,56 +108347,56 @@
"states": [
{
"default": true,
- "id": 12925,
+ "id": 13394,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12926,
+ "id": 13395,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12927,
+ "id": 13396,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12928,
+ "id": 13397,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12929,
+ "id": 13398,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12930,
+ "id": 13399,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12931,
+ "id": 13400,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12932,
+ "id": 13401,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -108328,7 +108412,7 @@
"states": [
{
"default": true,
- "id": 5780
+ "id": 5946
}
]
},
@@ -108341,7 +108425,7 @@
"states": [
{
"default": true,
- "id": 6548
+ "id": 6778
}
]
},
@@ -108354,7 +108438,7 @@
"states": [
{
"default": true,
- "id": 6544
+ "id": 6774
}
]
},
@@ -108367,7 +108451,7 @@
"states": [
{
"default": true,
- "id": 6547
+ "id": 6777
}
]
},
@@ -108386,20 +108470,20 @@
},
"states": [
{
- "id": 26554,
+ "id": 27023,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 26555,
+ "id": 27024,
"properties": {
"axis": "y"
}
},
{
- "id": 26556,
+ "id": 27025,
"properties": {
"axis": "z"
}
@@ -108415,7 +108499,7 @@
"states": [
{
"default": true,
- "id": 6546
+ "id": 6776
}
]
},
@@ -108428,7 +108512,7 @@
"states": [
{
"default": true,
- "id": 6543
+ "id": 6773
}
]
},
@@ -108441,7 +108525,7 @@
"states": [
{
"default": true,
- "id": 6545
+ "id": 6775
}
]
},
@@ -108474,7 +108558,7 @@
},
"states": [
{
- "id": 6741,
+ "id": 6971,
"properties": {
"east": "true",
"north": "true",
@@ -108484,7 +108568,7 @@
}
},
{
- "id": 6742,
+ "id": 6972,
"properties": {
"east": "true",
"north": "true",
@@ -108494,7 +108578,7 @@
}
},
{
- "id": 6743,
+ "id": 6973,
"properties": {
"east": "true",
"north": "true",
@@ -108504,7 +108588,7 @@
}
},
{
- "id": 6744,
+ "id": 6974,
"properties": {
"east": "true",
"north": "true",
@@ -108514,7 +108598,7 @@
}
},
{
- "id": 6745,
+ "id": 6975,
"properties": {
"east": "true",
"north": "true",
@@ -108524,7 +108608,7 @@
}
},
{
- "id": 6746,
+ "id": 6976,
"properties": {
"east": "true",
"north": "true",
@@ -108534,7 +108618,7 @@
}
},
{
- "id": 6747,
+ "id": 6977,
"properties": {
"east": "true",
"north": "true",
@@ -108544,7 +108628,7 @@
}
},
{
- "id": 6748,
+ "id": 6978,
"properties": {
"east": "true",
"north": "true",
@@ -108554,7 +108638,7 @@
}
},
{
- "id": 6749,
+ "id": 6979,
"properties": {
"east": "true",
"north": "false",
@@ -108564,7 +108648,7 @@
}
},
{
- "id": 6750,
+ "id": 6980,
"properties": {
"east": "true",
"north": "false",
@@ -108574,7 +108658,7 @@
}
},
{
- "id": 6751,
+ "id": 6981,
"properties": {
"east": "true",
"north": "false",
@@ -108584,7 +108668,7 @@
}
},
{
- "id": 6752,
+ "id": 6982,
"properties": {
"east": "true",
"north": "false",
@@ -108594,7 +108678,7 @@
}
},
{
- "id": 6753,
+ "id": 6983,
"properties": {
"east": "true",
"north": "false",
@@ -108604,7 +108688,7 @@
}
},
{
- "id": 6754,
+ "id": 6984,
"properties": {
"east": "true",
"north": "false",
@@ -108614,7 +108698,7 @@
}
},
{
- "id": 6755,
+ "id": 6985,
"properties": {
"east": "true",
"north": "false",
@@ -108624,7 +108708,7 @@
}
},
{
- "id": 6756,
+ "id": 6986,
"properties": {
"east": "true",
"north": "false",
@@ -108634,7 +108718,7 @@
}
},
{
- "id": 6757,
+ "id": 6987,
"properties": {
"east": "false",
"north": "true",
@@ -108644,7 +108728,7 @@
}
},
{
- "id": 6758,
+ "id": 6988,
"properties": {
"east": "false",
"north": "true",
@@ -108654,7 +108738,7 @@
}
},
{
- "id": 6759,
+ "id": 6989,
"properties": {
"east": "false",
"north": "true",
@@ -108664,7 +108748,7 @@
}
},
{
- "id": 6760,
+ "id": 6990,
"properties": {
"east": "false",
"north": "true",
@@ -108674,7 +108758,7 @@
}
},
{
- "id": 6761,
+ "id": 6991,
"properties": {
"east": "false",
"north": "true",
@@ -108684,7 +108768,7 @@
}
},
{
- "id": 6762,
+ "id": 6992,
"properties": {
"east": "false",
"north": "true",
@@ -108694,7 +108778,7 @@
}
},
{
- "id": 6763,
+ "id": 6993,
"properties": {
"east": "false",
"north": "true",
@@ -108704,7 +108788,7 @@
}
},
{
- "id": 6764,
+ "id": 6994,
"properties": {
"east": "false",
"north": "true",
@@ -108714,7 +108798,7 @@
}
},
{
- "id": 6765,
+ "id": 6995,
"properties": {
"east": "false",
"north": "false",
@@ -108724,7 +108808,7 @@
}
},
{
- "id": 6766,
+ "id": 6996,
"properties": {
"east": "false",
"north": "false",
@@ -108734,7 +108818,7 @@
}
},
{
- "id": 6767,
+ "id": 6997,
"properties": {
"east": "false",
"north": "false",
@@ -108744,7 +108828,7 @@
}
},
{
- "id": 6768,
+ "id": 6998,
"properties": {
"east": "false",
"north": "false",
@@ -108754,7 +108838,7 @@
}
},
{
- "id": 6769,
+ "id": 6999,
"properties": {
"east": "false",
"north": "false",
@@ -108764,7 +108848,7 @@
}
},
{
- "id": 6770,
+ "id": 7000,
"properties": {
"east": "false",
"north": "false",
@@ -108774,7 +108858,7 @@
}
},
{
- "id": 6771,
+ "id": 7001,
"properties": {
"east": "false",
"north": "false",
@@ -108785,7 +108869,7 @@
},
{
"default": true,
- "id": 6772,
+ "id": 7002,
"properties": {
"east": "false",
"north": "false",
@@ -108804,7 +108888,7 @@
"states": [
{
"default": true,
- "id": 2092
+ "id": 2135
}
]
},
@@ -108840,7 +108924,7 @@
},
"states": [
{
- "id": 5652,
+ "id": 5816,
"properties": {
"facing": "north",
"half": "upper",
@@ -108850,7 +108934,7 @@
}
},
{
- "id": 5653,
+ "id": 5817,
"properties": {
"facing": "north",
"half": "upper",
@@ -108860,7 +108944,7 @@
}
},
{
- "id": 5654,
+ "id": 5818,
"properties": {
"facing": "north",
"half": "upper",
@@ -108870,7 +108954,7 @@
}
},
{
- "id": 5655,
+ "id": 5819,
"properties": {
"facing": "north",
"half": "upper",
@@ -108880,7 +108964,7 @@
}
},
{
- "id": 5656,
+ "id": 5820,
"properties": {
"facing": "north",
"half": "upper",
@@ -108890,7 +108974,7 @@
}
},
{
- "id": 5657,
+ "id": 5821,
"properties": {
"facing": "north",
"half": "upper",
@@ -108900,7 +108984,7 @@
}
},
{
- "id": 5658,
+ "id": 5822,
"properties": {
"facing": "north",
"half": "upper",
@@ -108910,7 +108994,7 @@
}
},
{
- "id": 5659,
+ "id": 5823,
"properties": {
"facing": "north",
"half": "upper",
@@ -108920,7 +109004,7 @@
}
},
{
- "id": 5660,
+ "id": 5824,
"properties": {
"facing": "north",
"half": "lower",
@@ -108930,7 +109014,7 @@
}
},
{
- "id": 5661,
+ "id": 5825,
"properties": {
"facing": "north",
"half": "lower",
@@ -108940,7 +109024,7 @@
}
},
{
- "id": 5662,
+ "id": 5826,
"properties": {
"facing": "north",
"half": "lower",
@@ -108951,7 +109035,7 @@
},
{
"default": true,
- "id": 5663,
+ "id": 5827,
"properties": {
"facing": "north",
"half": "lower",
@@ -108961,7 +109045,7 @@
}
},
{
- "id": 5664,
+ "id": 5828,
"properties": {
"facing": "north",
"half": "lower",
@@ -108971,7 +109055,7 @@
}
},
{
- "id": 5665,
+ "id": 5829,
"properties": {
"facing": "north",
"half": "lower",
@@ -108981,7 +109065,7 @@
}
},
{
- "id": 5666,
+ "id": 5830,
"properties": {
"facing": "north",
"half": "lower",
@@ -108991,7 +109075,7 @@
}
},
{
- "id": 5667,
+ "id": 5831,
"properties": {
"facing": "north",
"half": "lower",
@@ -109001,7 +109085,7 @@
}
},
{
- "id": 5668,
+ "id": 5832,
"properties": {
"facing": "south",
"half": "upper",
@@ -109011,7 +109095,7 @@
}
},
{
- "id": 5669,
+ "id": 5833,
"properties": {
"facing": "south",
"half": "upper",
@@ -109021,7 +109105,7 @@
}
},
{
- "id": 5670,
+ "id": 5834,
"properties": {
"facing": "south",
"half": "upper",
@@ -109031,7 +109115,7 @@
}
},
{
- "id": 5671,
+ "id": 5835,
"properties": {
"facing": "south",
"half": "upper",
@@ -109041,7 +109125,7 @@
}
},
{
- "id": 5672,
+ "id": 5836,
"properties": {
"facing": "south",
"half": "upper",
@@ -109051,7 +109135,7 @@
}
},
{
- "id": 5673,
+ "id": 5837,
"properties": {
"facing": "south",
"half": "upper",
@@ -109061,7 +109145,7 @@
}
},
{
- "id": 5674,
+ "id": 5838,
"properties": {
"facing": "south",
"half": "upper",
@@ -109071,7 +109155,7 @@
}
},
{
- "id": 5675,
+ "id": 5839,
"properties": {
"facing": "south",
"half": "upper",
@@ -109081,7 +109165,7 @@
}
},
{
- "id": 5676,
+ "id": 5840,
"properties": {
"facing": "south",
"half": "lower",
@@ -109091,7 +109175,7 @@
}
},
{
- "id": 5677,
+ "id": 5841,
"properties": {
"facing": "south",
"half": "lower",
@@ -109101,7 +109185,7 @@
}
},
{
- "id": 5678,
+ "id": 5842,
"properties": {
"facing": "south",
"half": "lower",
@@ -109111,7 +109195,7 @@
}
},
{
- "id": 5679,
+ "id": 5843,
"properties": {
"facing": "south",
"half": "lower",
@@ -109121,7 +109205,7 @@
}
},
{
- "id": 5680,
+ "id": 5844,
"properties": {
"facing": "south",
"half": "lower",
@@ -109131,7 +109215,7 @@
}
},
{
- "id": 5681,
+ "id": 5845,
"properties": {
"facing": "south",
"half": "lower",
@@ -109141,7 +109225,7 @@
}
},
{
- "id": 5682,
+ "id": 5846,
"properties": {
"facing": "south",
"half": "lower",
@@ -109151,7 +109235,7 @@
}
},
{
- "id": 5683,
+ "id": 5847,
"properties": {
"facing": "south",
"half": "lower",
@@ -109161,7 +109245,7 @@
}
},
{
- "id": 5684,
+ "id": 5848,
"properties": {
"facing": "west",
"half": "upper",
@@ -109171,7 +109255,7 @@
}
},
{
- "id": 5685,
+ "id": 5849,
"properties": {
"facing": "west",
"half": "upper",
@@ -109181,7 +109265,7 @@
}
},
{
- "id": 5686,
+ "id": 5850,
"properties": {
"facing": "west",
"half": "upper",
@@ -109191,7 +109275,7 @@
}
},
{
- "id": 5687,
+ "id": 5851,
"properties": {
"facing": "west",
"half": "upper",
@@ -109201,7 +109285,7 @@
}
},
{
- "id": 5688,
+ "id": 5852,
"properties": {
"facing": "west",
"half": "upper",
@@ -109211,7 +109295,7 @@
}
},
{
- "id": 5689,
+ "id": 5853,
"properties": {
"facing": "west",
"half": "upper",
@@ -109221,7 +109305,7 @@
}
},
{
- "id": 5690,
+ "id": 5854,
"properties": {
"facing": "west",
"half": "upper",
@@ -109231,7 +109315,7 @@
}
},
{
- "id": 5691,
+ "id": 5855,
"properties": {
"facing": "west",
"half": "upper",
@@ -109241,7 +109325,7 @@
}
},
{
- "id": 5692,
+ "id": 5856,
"properties": {
"facing": "west",
"half": "lower",
@@ -109251,7 +109335,7 @@
}
},
{
- "id": 5693,
+ "id": 5857,
"properties": {
"facing": "west",
"half": "lower",
@@ -109261,7 +109345,7 @@
}
},
{
- "id": 5694,
+ "id": 5858,
"properties": {
"facing": "west",
"half": "lower",
@@ -109271,7 +109355,7 @@
}
},
{
- "id": 5695,
+ "id": 5859,
"properties": {
"facing": "west",
"half": "lower",
@@ -109281,7 +109365,7 @@
}
},
{
- "id": 5696,
+ "id": 5860,
"properties": {
"facing": "west",
"half": "lower",
@@ -109291,7 +109375,7 @@
}
},
{
- "id": 5697,
+ "id": 5861,
"properties": {
"facing": "west",
"half": "lower",
@@ -109301,7 +109385,7 @@
}
},
{
- "id": 5698,
+ "id": 5862,
"properties": {
"facing": "west",
"half": "lower",
@@ -109311,7 +109395,7 @@
}
},
{
- "id": 5699,
+ "id": 5863,
"properties": {
"facing": "west",
"half": "lower",
@@ -109321,7 +109405,7 @@
}
},
{
- "id": 5700,
+ "id": 5864,
"properties": {
"facing": "east",
"half": "upper",
@@ -109331,7 +109415,7 @@
}
},
{
- "id": 5701,
+ "id": 5865,
"properties": {
"facing": "east",
"half": "upper",
@@ -109341,7 +109425,7 @@
}
},
{
- "id": 5702,
+ "id": 5866,
"properties": {
"facing": "east",
"half": "upper",
@@ -109351,7 +109435,7 @@
}
},
{
- "id": 5703,
+ "id": 5867,
"properties": {
"facing": "east",
"half": "upper",
@@ -109361,7 +109445,7 @@
}
},
{
- "id": 5704,
+ "id": 5868,
"properties": {
"facing": "east",
"half": "upper",
@@ -109371,7 +109455,7 @@
}
},
{
- "id": 5705,
+ "id": 5869,
"properties": {
"facing": "east",
"half": "upper",
@@ -109381,7 +109465,7 @@
}
},
{
- "id": 5706,
+ "id": 5870,
"properties": {
"facing": "east",
"half": "upper",
@@ -109391,7 +109475,7 @@
}
},
{
- "id": 5707,
+ "id": 5871,
"properties": {
"facing": "east",
"half": "upper",
@@ -109401,7 +109485,7 @@
}
},
{
- "id": 5708,
+ "id": 5872,
"properties": {
"facing": "east",
"half": "lower",
@@ -109411,7 +109495,7 @@
}
},
{
- "id": 5709,
+ "id": 5873,
"properties": {
"facing": "east",
"half": "lower",
@@ -109421,7 +109505,7 @@
}
},
{
- "id": 5710,
+ "id": 5874,
"properties": {
"facing": "east",
"half": "lower",
@@ -109431,7 +109515,7 @@
}
},
{
- "id": 5711,
+ "id": 5875,
"properties": {
"facing": "east",
"half": "lower",
@@ -109441,7 +109525,7 @@
}
},
{
- "id": 5712,
+ "id": 5876,
"properties": {
"facing": "east",
"half": "lower",
@@ -109451,7 +109535,7 @@
}
},
{
- "id": 5713,
+ "id": 5877,
"properties": {
"facing": "east",
"half": "lower",
@@ -109461,7 +109545,7 @@
}
},
{
- "id": 5714,
+ "id": 5878,
"properties": {
"facing": "east",
"half": "lower",
@@ -109471,7 +109555,7 @@
}
},
{
- "id": 5715,
+ "id": 5879,
"properties": {
"facing": "east",
"half": "lower",
@@ -109491,7 +109575,7 @@
"states": [
{
"default": true,
- "id": 125
+ "id": 131
}
]
},
@@ -109527,7 +109611,7 @@
},
"states": [
{
- "id": 10399,
+ "id": 10734,
"properties": {
"facing": "north",
"half": "top",
@@ -109537,7 +109621,7 @@
}
},
{
- "id": 10400,
+ "id": 10735,
"properties": {
"facing": "north",
"half": "top",
@@ -109547,7 +109631,7 @@
}
},
{
- "id": 10401,
+ "id": 10736,
"properties": {
"facing": "north",
"half": "top",
@@ -109557,7 +109641,7 @@
}
},
{
- "id": 10402,
+ "id": 10737,
"properties": {
"facing": "north",
"half": "top",
@@ -109567,7 +109651,7 @@
}
},
{
- "id": 10403,
+ "id": 10738,
"properties": {
"facing": "north",
"half": "top",
@@ -109577,7 +109661,7 @@
}
},
{
- "id": 10404,
+ "id": 10739,
"properties": {
"facing": "north",
"half": "top",
@@ -109587,7 +109671,7 @@
}
},
{
- "id": 10405,
+ "id": 10740,
"properties": {
"facing": "north",
"half": "top",
@@ -109597,7 +109681,7 @@
}
},
{
- "id": 10406,
+ "id": 10741,
"properties": {
"facing": "north",
"half": "top",
@@ -109607,7 +109691,7 @@
}
},
{
- "id": 10407,
+ "id": 10742,
"properties": {
"facing": "north",
"half": "bottom",
@@ -109617,7 +109701,7 @@
}
},
{
- "id": 10408,
+ "id": 10743,
"properties": {
"facing": "north",
"half": "bottom",
@@ -109627,7 +109711,7 @@
}
},
{
- "id": 10409,
+ "id": 10744,
"properties": {
"facing": "north",
"half": "bottom",
@@ -109637,7 +109721,7 @@
}
},
{
- "id": 10410,
+ "id": 10745,
"properties": {
"facing": "north",
"half": "bottom",
@@ -109647,7 +109731,7 @@
}
},
{
- "id": 10411,
+ "id": 10746,
"properties": {
"facing": "north",
"half": "bottom",
@@ -109657,7 +109741,7 @@
}
},
{
- "id": 10412,
+ "id": 10747,
"properties": {
"facing": "north",
"half": "bottom",
@@ -109667,7 +109751,7 @@
}
},
{
- "id": 10413,
+ "id": 10748,
"properties": {
"facing": "north",
"half": "bottom",
@@ -109678,7 +109762,7 @@
},
{
"default": true,
- "id": 10414,
+ "id": 10749,
"properties": {
"facing": "north",
"half": "bottom",
@@ -109688,7 +109772,7 @@
}
},
{
- "id": 10415,
+ "id": 10750,
"properties": {
"facing": "south",
"half": "top",
@@ -109698,7 +109782,7 @@
}
},
{
- "id": 10416,
+ "id": 10751,
"properties": {
"facing": "south",
"half": "top",
@@ -109708,7 +109792,7 @@
}
},
{
- "id": 10417,
+ "id": 10752,
"properties": {
"facing": "south",
"half": "top",
@@ -109718,7 +109802,7 @@
}
},
{
- "id": 10418,
+ "id": 10753,
"properties": {
"facing": "south",
"half": "top",
@@ -109728,7 +109812,7 @@
}
},
{
- "id": 10419,
+ "id": 10754,
"properties": {
"facing": "south",
"half": "top",
@@ -109738,7 +109822,7 @@
}
},
{
- "id": 10420,
+ "id": 10755,
"properties": {
"facing": "south",
"half": "top",
@@ -109748,7 +109832,7 @@
}
},
{
- "id": 10421,
+ "id": 10756,
"properties": {
"facing": "south",
"half": "top",
@@ -109758,7 +109842,7 @@
}
},
{
- "id": 10422,
+ "id": 10757,
"properties": {
"facing": "south",
"half": "top",
@@ -109768,7 +109852,7 @@
}
},
{
- "id": 10423,
+ "id": 10758,
"properties": {
"facing": "south",
"half": "bottom",
@@ -109778,7 +109862,7 @@
}
},
{
- "id": 10424,
+ "id": 10759,
"properties": {
"facing": "south",
"half": "bottom",
@@ -109788,7 +109872,7 @@
}
},
{
- "id": 10425,
+ "id": 10760,
"properties": {
"facing": "south",
"half": "bottom",
@@ -109798,7 +109882,7 @@
}
},
{
- "id": 10426,
+ "id": 10761,
"properties": {
"facing": "south",
"half": "bottom",
@@ -109808,7 +109892,7 @@
}
},
{
- "id": 10427,
+ "id": 10762,
"properties": {
"facing": "south",
"half": "bottom",
@@ -109818,7 +109902,7 @@
}
},
{
- "id": 10428,
+ "id": 10763,
"properties": {
"facing": "south",
"half": "bottom",
@@ -109828,7 +109912,7 @@
}
},
{
- "id": 10429,
+ "id": 10764,
"properties": {
"facing": "south",
"half": "bottom",
@@ -109838,7 +109922,7 @@
}
},
{
- "id": 10430,
+ "id": 10765,
"properties": {
"facing": "south",
"half": "bottom",
@@ -109848,7 +109932,7 @@
}
},
{
- "id": 10431,
+ "id": 10766,
"properties": {
"facing": "west",
"half": "top",
@@ -109858,7 +109942,7 @@
}
},
{
- "id": 10432,
+ "id": 10767,
"properties": {
"facing": "west",
"half": "top",
@@ -109868,7 +109952,7 @@
}
},
{
- "id": 10433,
+ "id": 10768,
"properties": {
"facing": "west",
"half": "top",
@@ -109878,7 +109962,7 @@
}
},
{
- "id": 10434,
+ "id": 10769,
"properties": {
"facing": "west",
"half": "top",
@@ -109888,7 +109972,7 @@
}
},
{
- "id": 10435,
+ "id": 10770,
"properties": {
"facing": "west",
"half": "top",
@@ -109898,7 +109982,7 @@
}
},
{
- "id": 10436,
+ "id": 10771,
"properties": {
"facing": "west",
"half": "top",
@@ -109908,7 +109992,7 @@
}
},
{
- "id": 10437,
+ "id": 10772,
"properties": {
"facing": "west",
"half": "top",
@@ -109918,7 +110002,7 @@
}
},
{
- "id": 10438,
+ "id": 10773,
"properties": {
"facing": "west",
"half": "top",
@@ -109928,7 +110012,7 @@
}
},
{
- "id": 10439,
+ "id": 10774,
"properties": {
"facing": "west",
"half": "bottom",
@@ -109938,7 +110022,7 @@
}
},
{
- "id": 10440,
+ "id": 10775,
"properties": {
"facing": "west",
"half": "bottom",
@@ -109948,7 +110032,7 @@
}
},
{
- "id": 10441,
+ "id": 10776,
"properties": {
"facing": "west",
"half": "bottom",
@@ -109958,7 +110042,7 @@
}
},
{
- "id": 10442,
+ "id": 10777,
"properties": {
"facing": "west",
"half": "bottom",
@@ -109968,7 +110052,7 @@
}
},
{
- "id": 10443,
+ "id": 10778,
"properties": {
"facing": "west",
"half": "bottom",
@@ -109978,7 +110062,7 @@
}
},
{
- "id": 10444,
+ "id": 10779,
"properties": {
"facing": "west",
"half": "bottom",
@@ -109988,7 +110072,7 @@
}
},
{
- "id": 10445,
+ "id": 10780,
"properties": {
"facing": "west",
"half": "bottom",
@@ -109998,7 +110082,7 @@
}
},
{
- "id": 10446,
+ "id": 10781,
"properties": {
"facing": "west",
"half": "bottom",
@@ -110008,7 +110092,7 @@
}
},
{
- "id": 10447,
+ "id": 10782,
"properties": {
"facing": "east",
"half": "top",
@@ -110018,7 +110102,7 @@
}
},
{
- "id": 10448,
+ "id": 10783,
"properties": {
"facing": "east",
"half": "top",
@@ -110028,7 +110112,7 @@
}
},
{
- "id": 10449,
+ "id": 10784,
"properties": {
"facing": "east",
"half": "top",
@@ -110038,7 +110122,7 @@
}
},
{
- "id": 10450,
+ "id": 10785,
"properties": {
"facing": "east",
"half": "top",
@@ -110048,7 +110132,7 @@
}
},
{
- "id": 10451,
+ "id": 10786,
"properties": {
"facing": "east",
"half": "top",
@@ -110058,7 +110142,7 @@
}
},
{
- "id": 10452,
+ "id": 10787,
"properties": {
"facing": "east",
"half": "top",
@@ -110068,7 +110152,7 @@
}
},
{
- "id": 10453,
+ "id": 10788,
"properties": {
"facing": "east",
"half": "top",
@@ -110078,7 +110162,7 @@
}
},
{
- "id": 10454,
+ "id": 10789,
"properties": {
"facing": "east",
"half": "top",
@@ -110088,7 +110172,7 @@
}
},
{
- "id": 10455,
+ "id": 10790,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110098,7 +110182,7 @@
}
},
{
- "id": 10456,
+ "id": 10791,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110108,7 +110192,7 @@
}
},
{
- "id": 10457,
+ "id": 10792,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110118,7 +110202,7 @@
}
},
{
- "id": 10458,
+ "id": 10793,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110128,7 +110212,7 @@
}
},
{
- "id": 10459,
+ "id": 10794,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110138,7 +110222,7 @@
}
},
{
- "id": 10460,
+ "id": 10795,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110148,7 +110232,7 @@
}
},
{
- "id": 10461,
+ "id": 10796,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110158,7 +110242,7 @@
}
},
{
- "id": 10462,
+ "id": 10797,
"properties": {
"facing": "east",
"half": "bottom",
@@ -110185,25 +110269,25 @@
"states": [
{
"default": true,
- "id": 5870,
+ "id": 6036,
"properties": {
"facing": "north"
}
},
{
- "id": 5871,
+ "id": 6037,
"properties": {
"facing": "south"
}
},
{
- "id": 5872,
+ "id": 6038,
"properties": {
"facing": "west"
}
},
{
- "id": 5873,
+ "id": 6039,
"properties": {
"facing": "east"
}
@@ -110233,74 +110317,74 @@
},
"states": [
{
- "id": 19360,
+ "id": 19829,
"properties": {
"orientation": "down_east"
}
},
{
- "id": 19361,
+ "id": 19830,
"properties": {
"orientation": "down_north"
}
},
{
- "id": 19362,
+ "id": 19831,
"properties": {
"orientation": "down_south"
}
},
{
- "id": 19363,
+ "id": 19832,
"properties": {
"orientation": "down_west"
}
},
{
- "id": 19364,
+ "id": 19833,
"properties": {
"orientation": "up_east"
}
},
{
- "id": 19365,
+ "id": 19834,
"properties": {
"orientation": "up_north"
}
},
{
- "id": 19366,
+ "id": 19835,
"properties": {
"orientation": "up_south"
}
},
{
- "id": 19367,
+ "id": 19836,
"properties": {
"orientation": "up_west"
}
},
{
- "id": 19368,
+ "id": 19837,
"properties": {
"orientation": "west_up"
}
},
{
- "id": 19369,
+ "id": 19838,
"properties": {
"orientation": "east_up"
}
},
{
"default": true,
- "id": 19370,
+ "id": 19839,
"properties": {
"orientation": "north_up"
}
},
{
- "id": 19371,
+ "id": 19840,
"properties": {
"orientation": "south_up"
}
@@ -110320,14 +110404,14 @@
},
"states": [
{
- "id": 5815,
+ "id": 5981,
"properties": {
"has_record": "true"
}
},
{
"default": true,
- "id": 5816,
+ "id": 5982,
"properties": {
"has_record": "false"
}
@@ -110360,7 +110444,7 @@
},
"states": [
{
- "id": 8683,
+ "id": 8914,
"properties": {
"face": "floor",
"facing": "north",
@@ -110368,7 +110452,7 @@
}
},
{
- "id": 8684,
+ "id": 8915,
"properties": {
"face": "floor",
"facing": "north",
@@ -110376,7 +110460,7 @@
}
},
{
- "id": 8685,
+ "id": 8916,
"properties": {
"face": "floor",
"facing": "south",
@@ -110384,7 +110468,7 @@
}
},
{
- "id": 8686,
+ "id": 8917,
"properties": {
"face": "floor",
"facing": "south",
@@ -110392,7 +110476,7 @@
}
},
{
- "id": 8687,
+ "id": 8918,
"properties": {
"face": "floor",
"facing": "west",
@@ -110400,7 +110484,7 @@
}
},
{
- "id": 8688,
+ "id": 8919,
"properties": {
"face": "floor",
"facing": "west",
@@ -110408,7 +110492,7 @@
}
},
{
- "id": 8689,
+ "id": 8920,
"properties": {
"face": "floor",
"facing": "east",
@@ -110416,7 +110500,7 @@
}
},
{
- "id": 8690,
+ "id": 8921,
"properties": {
"face": "floor",
"facing": "east",
@@ -110424,7 +110508,7 @@
}
},
{
- "id": 8691,
+ "id": 8922,
"properties": {
"face": "wall",
"facing": "north",
@@ -110433,7 +110517,7 @@
},
{
"default": true,
- "id": 8692,
+ "id": 8923,
"properties": {
"face": "wall",
"facing": "north",
@@ -110441,7 +110525,7 @@
}
},
{
- "id": 8693,
+ "id": 8924,
"properties": {
"face": "wall",
"facing": "south",
@@ -110449,7 +110533,7 @@
}
},
{
- "id": 8694,
+ "id": 8925,
"properties": {
"face": "wall",
"facing": "south",
@@ -110457,7 +110541,7 @@
}
},
{
- "id": 8695,
+ "id": 8926,
"properties": {
"face": "wall",
"facing": "west",
@@ -110465,7 +110549,7 @@
}
},
{
- "id": 8696,
+ "id": 8927,
"properties": {
"face": "wall",
"facing": "west",
@@ -110473,7 +110557,7 @@
}
},
{
- "id": 8697,
+ "id": 8928,
"properties": {
"face": "wall",
"facing": "east",
@@ -110481,7 +110565,7 @@
}
},
{
- "id": 8698,
+ "id": 8929,
"properties": {
"face": "wall",
"facing": "east",
@@ -110489,7 +110573,7 @@
}
},
{
- "id": 8699,
+ "id": 8930,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -110497,7 +110581,7 @@
}
},
{
- "id": 8700,
+ "id": 8931,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -110505,7 +110589,7 @@
}
},
{
- "id": 8701,
+ "id": 8932,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -110513,7 +110597,7 @@
}
},
{
- "id": 8702,
+ "id": 8933,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -110521,7 +110605,7 @@
}
},
{
- "id": 8703,
+ "id": 8934,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -110529,7 +110613,7 @@
}
},
{
- "id": 8704,
+ "id": 8935,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -110537,7 +110621,7 @@
}
},
{
- "id": 8705,
+ "id": 8936,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -110545,7 +110629,7 @@
}
},
{
- "id": 8706,
+ "id": 8937,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -110586,7 +110670,7 @@
},
"states": [
{
- "id": 11950,
+ "id": 12355,
"properties": {
"facing": "north",
"half": "upper",
@@ -110596,7 +110680,7 @@
}
},
{
- "id": 11951,
+ "id": 12356,
"properties": {
"facing": "north",
"half": "upper",
@@ -110606,7 +110690,7 @@
}
},
{
- "id": 11952,
+ "id": 12357,
"properties": {
"facing": "north",
"half": "upper",
@@ -110616,7 +110700,7 @@
}
},
{
- "id": 11953,
+ "id": 12358,
"properties": {
"facing": "north",
"half": "upper",
@@ -110626,7 +110710,7 @@
}
},
{
- "id": 11954,
+ "id": 12359,
"properties": {
"facing": "north",
"half": "upper",
@@ -110636,7 +110720,7 @@
}
},
{
- "id": 11955,
+ "id": 12360,
"properties": {
"facing": "north",
"half": "upper",
@@ -110646,7 +110730,7 @@
}
},
{
- "id": 11956,
+ "id": 12361,
"properties": {
"facing": "north",
"half": "upper",
@@ -110656,7 +110740,7 @@
}
},
{
- "id": 11957,
+ "id": 12362,
"properties": {
"facing": "north",
"half": "upper",
@@ -110666,7 +110750,7 @@
}
},
{
- "id": 11958,
+ "id": 12363,
"properties": {
"facing": "north",
"half": "lower",
@@ -110676,7 +110760,7 @@
}
},
{
- "id": 11959,
+ "id": 12364,
"properties": {
"facing": "north",
"half": "lower",
@@ -110686,7 +110770,7 @@
}
},
{
- "id": 11960,
+ "id": 12365,
"properties": {
"facing": "north",
"half": "lower",
@@ -110697,7 +110781,7 @@
},
{
"default": true,
- "id": 11961,
+ "id": 12366,
"properties": {
"facing": "north",
"half": "lower",
@@ -110707,7 +110791,7 @@
}
},
{
- "id": 11962,
+ "id": 12367,
"properties": {
"facing": "north",
"half": "lower",
@@ -110717,7 +110801,7 @@
}
},
{
- "id": 11963,
+ "id": 12368,
"properties": {
"facing": "north",
"half": "lower",
@@ -110727,7 +110811,7 @@
}
},
{
- "id": 11964,
+ "id": 12369,
"properties": {
"facing": "north",
"half": "lower",
@@ -110737,7 +110821,7 @@
}
},
{
- "id": 11965,
+ "id": 12370,
"properties": {
"facing": "north",
"half": "lower",
@@ -110747,7 +110831,7 @@
}
},
{
- "id": 11966,
+ "id": 12371,
"properties": {
"facing": "south",
"half": "upper",
@@ -110757,7 +110841,7 @@
}
},
{
- "id": 11967,
+ "id": 12372,
"properties": {
"facing": "south",
"half": "upper",
@@ -110767,7 +110851,7 @@
}
},
{
- "id": 11968,
+ "id": 12373,
"properties": {
"facing": "south",
"half": "upper",
@@ -110777,7 +110861,7 @@
}
},
{
- "id": 11969,
+ "id": 12374,
"properties": {
"facing": "south",
"half": "upper",
@@ -110787,7 +110871,7 @@
}
},
{
- "id": 11970,
+ "id": 12375,
"properties": {
"facing": "south",
"half": "upper",
@@ -110797,7 +110881,7 @@
}
},
{
- "id": 11971,
+ "id": 12376,
"properties": {
"facing": "south",
"half": "upper",
@@ -110807,7 +110891,7 @@
}
},
{
- "id": 11972,
+ "id": 12377,
"properties": {
"facing": "south",
"half": "upper",
@@ -110817,7 +110901,7 @@
}
},
{
- "id": 11973,
+ "id": 12378,
"properties": {
"facing": "south",
"half": "upper",
@@ -110827,7 +110911,7 @@
}
},
{
- "id": 11974,
+ "id": 12379,
"properties": {
"facing": "south",
"half": "lower",
@@ -110837,7 +110921,7 @@
}
},
{
- "id": 11975,
+ "id": 12380,
"properties": {
"facing": "south",
"half": "lower",
@@ -110847,7 +110931,7 @@
}
},
{
- "id": 11976,
+ "id": 12381,
"properties": {
"facing": "south",
"half": "lower",
@@ -110857,7 +110941,7 @@
}
},
{
- "id": 11977,
+ "id": 12382,
"properties": {
"facing": "south",
"half": "lower",
@@ -110867,7 +110951,7 @@
}
},
{
- "id": 11978,
+ "id": 12383,
"properties": {
"facing": "south",
"half": "lower",
@@ -110877,7 +110961,7 @@
}
},
{
- "id": 11979,
+ "id": 12384,
"properties": {
"facing": "south",
"half": "lower",
@@ -110887,7 +110971,7 @@
}
},
{
- "id": 11980,
+ "id": 12385,
"properties": {
"facing": "south",
"half": "lower",
@@ -110897,7 +110981,7 @@
}
},
{
- "id": 11981,
+ "id": 12386,
"properties": {
"facing": "south",
"half": "lower",
@@ -110907,7 +110991,7 @@
}
},
{
- "id": 11982,
+ "id": 12387,
"properties": {
"facing": "west",
"half": "upper",
@@ -110917,7 +111001,7 @@
}
},
{
- "id": 11983,
+ "id": 12388,
"properties": {
"facing": "west",
"half": "upper",
@@ -110927,7 +111011,7 @@
}
},
{
- "id": 11984,
+ "id": 12389,
"properties": {
"facing": "west",
"half": "upper",
@@ -110937,7 +111021,7 @@
}
},
{
- "id": 11985,
+ "id": 12390,
"properties": {
"facing": "west",
"half": "upper",
@@ -110947,7 +111031,7 @@
}
},
{
- "id": 11986,
+ "id": 12391,
"properties": {
"facing": "west",
"half": "upper",
@@ -110957,7 +111041,7 @@
}
},
{
- "id": 11987,
+ "id": 12392,
"properties": {
"facing": "west",
"half": "upper",
@@ -110967,7 +111051,7 @@
}
},
{
- "id": 11988,
+ "id": 12393,
"properties": {
"facing": "west",
"half": "upper",
@@ -110977,7 +111061,7 @@
}
},
{
- "id": 11989,
+ "id": 12394,
"properties": {
"facing": "west",
"half": "upper",
@@ -110987,7 +111071,7 @@
}
},
{
- "id": 11990,
+ "id": 12395,
"properties": {
"facing": "west",
"half": "lower",
@@ -110997,7 +111081,7 @@
}
},
{
- "id": 11991,
+ "id": 12396,
"properties": {
"facing": "west",
"half": "lower",
@@ -111007,7 +111091,7 @@
}
},
{
- "id": 11992,
+ "id": 12397,
"properties": {
"facing": "west",
"half": "lower",
@@ -111017,7 +111101,7 @@
}
},
{
- "id": 11993,
+ "id": 12398,
"properties": {
"facing": "west",
"half": "lower",
@@ -111027,7 +111111,7 @@
}
},
{
- "id": 11994,
+ "id": 12399,
"properties": {
"facing": "west",
"half": "lower",
@@ -111037,7 +111121,7 @@
}
},
{
- "id": 11995,
+ "id": 12400,
"properties": {
"facing": "west",
"half": "lower",
@@ -111047,7 +111131,7 @@
}
},
{
- "id": 11996,
+ "id": 12401,
"properties": {
"facing": "west",
"half": "lower",
@@ -111057,7 +111141,7 @@
}
},
{
- "id": 11997,
+ "id": 12402,
"properties": {
"facing": "west",
"half": "lower",
@@ -111067,7 +111151,7 @@
}
},
{
- "id": 11998,
+ "id": 12403,
"properties": {
"facing": "east",
"half": "upper",
@@ -111077,7 +111161,7 @@
}
},
{
- "id": 11999,
+ "id": 12404,
"properties": {
"facing": "east",
"half": "upper",
@@ -111087,7 +111171,7 @@
}
},
{
- "id": 12000,
+ "id": 12405,
"properties": {
"facing": "east",
"half": "upper",
@@ -111097,7 +111181,7 @@
}
},
{
- "id": 12001,
+ "id": 12406,
"properties": {
"facing": "east",
"half": "upper",
@@ -111107,7 +111191,7 @@
}
},
{
- "id": 12002,
+ "id": 12407,
"properties": {
"facing": "east",
"half": "upper",
@@ -111117,7 +111201,7 @@
}
},
{
- "id": 12003,
+ "id": 12408,
"properties": {
"facing": "east",
"half": "upper",
@@ -111127,7 +111211,7 @@
}
},
{
- "id": 12004,
+ "id": 12409,
"properties": {
"facing": "east",
"half": "upper",
@@ -111137,7 +111221,7 @@
}
},
{
- "id": 12005,
+ "id": 12410,
"properties": {
"facing": "east",
"half": "upper",
@@ -111147,7 +111231,7 @@
}
},
{
- "id": 12006,
+ "id": 12411,
"properties": {
"facing": "east",
"half": "lower",
@@ -111157,7 +111241,7 @@
}
},
{
- "id": 12007,
+ "id": 12412,
"properties": {
"facing": "east",
"half": "lower",
@@ -111167,7 +111251,7 @@
}
},
{
- "id": 12008,
+ "id": 12413,
"properties": {
"facing": "east",
"half": "lower",
@@ -111177,7 +111261,7 @@
}
},
{
- "id": 12009,
+ "id": 12414,
"properties": {
"facing": "east",
"half": "lower",
@@ -111187,7 +111271,7 @@
}
},
{
- "id": 12010,
+ "id": 12415,
"properties": {
"facing": "east",
"half": "lower",
@@ -111197,7 +111281,7 @@
}
},
{
- "id": 12011,
+ "id": 12416,
"properties": {
"facing": "east",
"half": "lower",
@@ -111207,7 +111291,7 @@
}
},
{
- "id": 12012,
+ "id": 12417,
"properties": {
"facing": "east",
"half": "lower",
@@ -111217,7 +111301,7 @@
}
},
{
- "id": 12013,
+ "id": 12418,
"properties": {
"facing": "east",
"half": "lower",
@@ -111257,7 +111341,7 @@
},
"states": [
{
- "id": 11630,
+ "id": 12003,
"properties": {
"east": "true",
"north": "true",
@@ -111267,7 +111351,7 @@
}
},
{
- "id": 11631,
+ "id": 12004,
"properties": {
"east": "true",
"north": "true",
@@ -111277,7 +111361,7 @@
}
},
{
- "id": 11632,
+ "id": 12005,
"properties": {
"east": "true",
"north": "true",
@@ -111287,7 +111371,7 @@
}
},
{
- "id": 11633,
+ "id": 12006,
"properties": {
"east": "true",
"north": "true",
@@ -111297,7 +111381,7 @@
}
},
{
- "id": 11634,
+ "id": 12007,
"properties": {
"east": "true",
"north": "true",
@@ -111307,7 +111391,7 @@
}
},
{
- "id": 11635,
+ "id": 12008,
"properties": {
"east": "true",
"north": "true",
@@ -111317,7 +111401,7 @@
}
},
{
- "id": 11636,
+ "id": 12009,
"properties": {
"east": "true",
"north": "true",
@@ -111327,7 +111411,7 @@
}
},
{
- "id": 11637,
+ "id": 12010,
"properties": {
"east": "true",
"north": "true",
@@ -111337,7 +111421,7 @@
}
},
{
- "id": 11638,
+ "id": 12011,
"properties": {
"east": "true",
"north": "false",
@@ -111347,7 +111431,7 @@
}
},
{
- "id": 11639,
+ "id": 12012,
"properties": {
"east": "true",
"north": "false",
@@ -111357,7 +111441,7 @@
}
},
{
- "id": 11640,
+ "id": 12013,
"properties": {
"east": "true",
"north": "false",
@@ -111367,7 +111451,7 @@
}
},
{
- "id": 11641,
+ "id": 12014,
"properties": {
"east": "true",
"north": "false",
@@ -111377,7 +111461,7 @@
}
},
{
- "id": 11642,
+ "id": 12015,
"properties": {
"east": "true",
"north": "false",
@@ -111387,7 +111471,7 @@
}
},
{
- "id": 11643,
+ "id": 12016,
"properties": {
"east": "true",
"north": "false",
@@ -111397,7 +111481,7 @@
}
},
{
- "id": 11644,
+ "id": 12017,
"properties": {
"east": "true",
"north": "false",
@@ -111407,7 +111491,7 @@
}
},
{
- "id": 11645,
+ "id": 12018,
"properties": {
"east": "true",
"north": "false",
@@ -111417,7 +111501,7 @@
}
},
{
- "id": 11646,
+ "id": 12019,
"properties": {
"east": "false",
"north": "true",
@@ -111427,7 +111511,7 @@
}
},
{
- "id": 11647,
+ "id": 12020,
"properties": {
"east": "false",
"north": "true",
@@ -111437,7 +111521,7 @@
}
},
{
- "id": 11648,
+ "id": 12021,
"properties": {
"east": "false",
"north": "true",
@@ -111447,7 +111531,7 @@
}
},
{
- "id": 11649,
+ "id": 12022,
"properties": {
"east": "false",
"north": "true",
@@ -111457,7 +111541,7 @@
}
},
{
- "id": 11650,
+ "id": 12023,
"properties": {
"east": "false",
"north": "true",
@@ -111467,7 +111551,7 @@
}
},
{
- "id": 11651,
+ "id": 12024,
"properties": {
"east": "false",
"north": "true",
@@ -111477,7 +111561,7 @@
}
},
{
- "id": 11652,
+ "id": 12025,
"properties": {
"east": "false",
"north": "true",
@@ -111487,7 +111571,7 @@
}
},
{
- "id": 11653,
+ "id": 12026,
"properties": {
"east": "false",
"north": "true",
@@ -111497,7 +111581,7 @@
}
},
{
- "id": 11654,
+ "id": 12027,
"properties": {
"east": "false",
"north": "false",
@@ -111507,7 +111591,7 @@
}
},
{
- "id": 11655,
+ "id": 12028,
"properties": {
"east": "false",
"north": "false",
@@ -111517,7 +111601,7 @@
}
},
{
- "id": 11656,
+ "id": 12029,
"properties": {
"east": "false",
"north": "false",
@@ -111527,7 +111611,7 @@
}
},
{
- "id": 11657,
+ "id": 12030,
"properties": {
"east": "false",
"north": "false",
@@ -111537,7 +111621,7 @@
}
},
{
- "id": 11658,
+ "id": 12031,
"properties": {
"east": "false",
"north": "false",
@@ -111547,7 +111631,7 @@
}
},
{
- "id": 11659,
+ "id": 12032,
"properties": {
"east": "false",
"north": "false",
@@ -111557,7 +111641,7 @@
}
},
{
- "id": 11660,
+ "id": 12033,
"properties": {
"east": "false",
"north": "false",
@@ -111568,7 +111652,7 @@
},
{
"default": true,
- "id": 11661,
+ "id": 12034,
"properties": {
"east": "false",
"north": "false",
@@ -111607,7 +111691,7 @@
},
"states": [
{
- "id": 11374,
+ "id": 11715,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -111616,7 +111700,7 @@
}
},
{
- "id": 11375,
+ "id": 11716,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -111625,7 +111709,7 @@
}
},
{
- "id": 11376,
+ "id": 11717,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -111634,7 +111718,7 @@
}
},
{
- "id": 11377,
+ "id": 11718,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -111643,7 +111727,7 @@
}
},
{
- "id": 11378,
+ "id": 11719,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -111652,7 +111736,7 @@
}
},
{
- "id": 11379,
+ "id": 11720,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -111661,7 +111745,7 @@
}
},
{
- "id": 11380,
+ "id": 11721,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -111671,7 +111755,7 @@
},
{
"default": true,
- "id": 11381,
+ "id": 11722,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -111680,7 +111764,7 @@
}
},
{
- "id": 11382,
+ "id": 11723,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -111689,7 +111773,7 @@
}
},
{
- "id": 11383,
+ "id": 11724,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -111698,7 +111782,7 @@
}
},
{
- "id": 11384,
+ "id": 11725,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -111707,7 +111791,7 @@
}
},
{
- "id": 11385,
+ "id": 11726,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -111716,7 +111800,7 @@
}
},
{
- "id": 11386,
+ "id": 11727,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -111725,7 +111809,7 @@
}
},
{
- "id": 11387,
+ "id": 11728,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -111734,7 +111818,7 @@
}
},
{
- "id": 11388,
+ "id": 11729,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -111743,7 +111827,7 @@
}
},
{
- "id": 11389,
+ "id": 11730,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -111752,7 +111836,7 @@
}
},
{
- "id": 11390,
+ "id": 11731,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -111761,7 +111845,7 @@
}
},
{
- "id": 11391,
+ "id": 11732,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -111770,7 +111854,7 @@
}
},
{
- "id": 11392,
+ "id": 11733,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -111779,7 +111863,7 @@
}
},
{
- "id": 11393,
+ "id": 11734,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -111788,7 +111872,7 @@
}
},
{
- "id": 11394,
+ "id": 11735,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -111797,7 +111881,7 @@
}
},
{
- "id": 11395,
+ "id": 11736,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -111806,7 +111890,7 @@
}
},
{
- "id": 11396,
+ "id": 11737,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -111815,7 +111899,7 @@
}
},
{
- "id": 11397,
+ "id": 11738,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -111824,7 +111908,7 @@
}
},
{
- "id": 11398,
+ "id": 11739,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -111833,7 +111917,7 @@
}
},
{
- "id": 11399,
+ "id": 11740,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -111842,7 +111926,7 @@
}
},
{
- "id": 11400,
+ "id": 11741,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -111851,7 +111935,7 @@
}
},
{
- "id": 11401,
+ "id": 11742,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -111860,7 +111944,7 @@
}
},
{
- "id": 11402,
+ "id": 11743,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -111869,7 +111953,7 @@
}
},
{
- "id": 11403,
+ "id": 11744,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -111878,7 +111962,7 @@
}
},
{
- "id": 11404,
+ "id": 11745,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -111887,7 +111971,7 @@
}
},
{
- "id": 11405,
+ "id": 11746,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -111933,7 +112017,7 @@
},
"states": [
{
- "id": 5154,
+ "id": 5246,
"properties": {
"attached": "true",
"rotation": "0",
@@ -111941,7 +112025,7 @@
}
},
{
- "id": 5155,
+ "id": 5247,
"properties": {
"attached": "true",
"rotation": "0",
@@ -111949,7 +112033,7 @@
}
},
{
- "id": 5156,
+ "id": 5248,
"properties": {
"attached": "true",
"rotation": "1",
@@ -111957,7 +112041,7 @@
}
},
{
- "id": 5157,
+ "id": 5249,
"properties": {
"attached": "true",
"rotation": "1",
@@ -111965,7 +112049,7 @@
}
},
{
- "id": 5158,
+ "id": 5250,
"properties": {
"attached": "true",
"rotation": "2",
@@ -111973,7 +112057,7 @@
}
},
{
- "id": 5159,
+ "id": 5251,
"properties": {
"attached": "true",
"rotation": "2",
@@ -111981,7 +112065,7 @@
}
},
{
- "id": 5160,
+ "id": 5252,
"properties": {
"attached": "true",
"rotation": "3",
@@ -111989,7 +112073,7 @@
}
},
{
- "id": 5161,
+ "id": 5253,
"properties": {
"attached": "true",
"rotation": "3",
@@ -111997,7 +112081,7 @@
}
},
{
- "id": 5162,
+ "id": 5254,
"properties": {
"attached": "true",
"rotation": "4",
@@ -112005,7 +112089,7 @@
}
},
{
- "id": 5163,
+ "id": 5255,
"properties": {
"attached": "true",
"rotation": "4",
@@ -112013,7 +112097,7 @@
}
},
{
- "id": 5164,
+ "id": 5256,
"properties": {
"attached": "true",
"rotation": "5",
@@ -112021,7 +112105,7 @@
}
},
{
- "id": 5165,
+ "id": 5257,
"properties": {
"attached": "true",
"rotation": "5",
@@ -112029,7 +112113,7 @@
}
},
{
- "id": 5166,
+ "id": 5258,
"properties": {
"attached": "true",
"rotation": "6",
@@ -112037,7 +112121,7 @@
}
},
{
- "id": 5167,
+ "id": 5259,
"properties": {
"attached": "true",
"rotation": "6",
@@ -112045,7 +112129,7 @@
}
},
{
- "id": 5168,
+ "id": 5260,
"properties": {
"attached": "true",
"rotation": "7",
@@ -112053,7 +112137,7 @@
}
},
{
- "id": 5169,
+ "id": 5261,
"properties": {
"attached": "true",
"rotation": "7",
@@ -112061,7 +112145,7 @@
}
},
{
- "id": 5170,
+ "id": 5262,
"properties": {
"attached": "true",
"rotation": "8",
@@ -112069,7 +112153,7 @@
}
},
{
- "id": 5171,
+ "id": 5263,
"properties": {
"attached": "true",
"rotation": "8",
@@ -112077,7 +112161,7 @@
}
},
{
- "id": 5172,
+ "id": 5264,
"properties": {
"attached": "true",
"rotation": "9",
@@ -112085,7 +112169,7 @@
}
},
{
- "id": 5173,
+ "id": 5265,
"properties": {
"attached": "true",
"rotation": "9",
@@ -112093,7 +112177,7 @@
}
},
{
- "id": 5174,
+ "id": 5266,
"properties": {
"attached": "true",
"rotation": "10",
@@ -112101,7 +112185,7 @@
}
},
{
- "id": 5175,
+ "id": 5267,
"properties": {
"attached": "true",
"rotation": "10",
@@ -112109,7 +112193,7 @@
}
},
{
- "id": 5176,
+ "id": 5268,
"properties": {
"attached": "true",
"rotation": "11",
@@ -112117,7 +112201,7 @@
}
},
{
- "id": 5177,
+ "id": 5269,
"properties": {
"attached": "true",
"rotation": "11",
@@ -112125,7 +112209,7 @@
}
},
{
- "id": 5178,
+ "id": 5270,
"properties": {
"attached": "true",
"rotation": "12",
@@ -112133,7 +112217,7 @@
}
},
{
- "id": 5179,
+ "id": 5271,
"properties": {
"attached": "true",
"rotation": "12",
@@ -112141,7 +112225,7 @@
}
},
{
- "id": 5180,
+ "id": 5272,
"properties": {
"attached": "true",
"rotation": "13",
@@ -112149,7 +112233,7 @@
}
},
{
- "id": 5181,
+ "id": 5273,
"properties": {
"attached": "true",
"rotation": "13",
@@ -112157,7 +112241,7 @@
}
},
{
- "id": 5182,
+ "id": 5274,
"properties": {
"attached": "true",
"rotation": "14",
@@ -112165,7 +112249,7 @@
}
},
{
- "id": 5183,
+ "id": 5275,
"properties": {
"attached": "true",
"rotation": "14",
@@ -112173,7 +112257,7 @@
}
},
{
- "id": 5184,
+ "id": 5276,
"properties": {
"attached": "true",
"rotation": "15",
@@ -112181,7 +112265,7 @@
}
},
{
- "id": 5185,
+ "id": 5277,
"properties": {
"attached": "true",
"rotation": "15",
@@ -112189,7 +112273,7 @@
}
},
{
- "id": 5186,
+ "id": 5278,
"properties": {
"attached": "false",
"rotation": "0",
@@ -112198,7 +112282,7 @@
},
{
"default": true,
- "id": 5187,
+ "id": 5279,
"properties": {
"attached": "false",
"rotation": "0",
@@ -112206,7 +112290,7 @@
}
},
{
- "id": 5188,
+ "id": 5280,
"properties": {
"attached": "false",
"rotation": "1",
@@ -112214,7 +112298,7 @@
}
},
{
- "id": 5189,
+ "id": 5281,
"properties": {
"attached": "false",
"rotation": "1",
@@ -112222,7 +112306,7 @@
}
},
{
- "id": 5190,
+ "id": 5282,
"properties": {
"attached": "false",
"rotation": "2",
@@ -112230,7 +112314,7 @@
}
},
{
- "id": 5191,
+ "id": 5283,
"properties": {
"attached": "false",
"rotation": "2",
@@ -112238,7 +112322,7 @@
}
},
{
- "id": 5192,
+ "id": 5284,
"properties": {
"attached": "false",
"rotation": "3",
@@ -112246,7 +112330,7 @@
}
},
{
- "id": 5193,
+ "id": 5285,
"properties": {
"attached": "false",
"rotation": "3",
@@ -112254,7 +112338,7 @@
}
},
{
- "id": 5194,
+ "id": 5286,
"properties": {
"attached": "false",
"rotation": "4",
@@ -112262,7 +112346,7 @@
}
},
{
- "id": 5195,
+ "id": 5287,
"properties": {
"attached": "false",
"rotation": "4",
@@ -112270,7 +112354,7 @@
}
},
{
- "id": 5196,
+ "id": 5288,
"properties": {
"attached": "false",
"rotation": "5",
@@ -112278,7 +112362,7 @@
}
},
{
- "id": 5197,
+ "id": 5289,
"properties": {
"attached": "false",
"rotation": "5",
@@ -112286,7 +112370,7 @@
}
},
{
- "id": 5198,
+ "id": 5290,
"properties": {
"attached": "false",
"rotation": "6",
@@ -112294,7 +112378,7 @@
}
},
{
- "id": 5199,
+ "id": 5291,
"properties": {
"attached": "false",
"rotation": "6",
@@ -112302,7 +112386,7 @@
}
},
{
- "id": 5200,
+ "id": 5292,
"properties": {
"attached": "false",
"rotation": "7",
@@ -112310,7 +112394,7 @@
}
},
{
- "id": 5201,
+ "id": 5293,
"properties": {
"attached": "false",
"rotation": "7",
@@ -112318,7 +112402,7 @@
}
},
{
- "id": 5202,
+ "id": 5294,
"properties": {
"attached": "false",
"rotation": "8",
@@ -112326,7 +112410,7 @@
}
},
{
- "id": 5203,
+ "id": 5295,
"properties": {
"attached": "false",
"rotation": "8",
@@ -112334,7 +112418,7 @@
}
},
{
- "id": 5204,
+ "id": 5296,
"properties": {
"attached": "false",
"rotation": "9",
@@ -112342,7 +112426,7 @@
}
},
{
- "id": 5205,
+ "id": 5297,
"properties": {
"attached": "false",
"rotation": "9",
@@ -112350,7 +112434,7 @@
}
},
{
- "id": 5206,
+ "id": 5298,
"properties": {
"attached": "false",
"rotation": "10",
@@ -112358,7 +112442,7 @@
}
},
{
- "id": 5207,
+ "id": 5299,
"properties": {
"attached": "false",
"rotation": "10",
@@ -112366,7 +112450,7 @@
}
},
{
- "id": 5208,
+ "id": 5300,
"properties": {
"attached": "false",
"rotation": "11",
@@ -112374,7 +112458,7 @@
}
},
{
- "id": 5209,
+ "id": 5301,
"properties": {
"attached": "false",
"rotation": "11",
@@ -112382,7 +112466,7 @@
}
},
{
- "id": 5210,
+ "id": 5302,
"properties": {
"attached": "false",
"rotation": "12",
@@ -112390,7 +112474,7 @@
}
},
{
- "id": 5211,
+ "id": 5303,
"properties": {
"attached": "false",
"rotation": "12",
@@ -112398,7 +112482,7 @@
}
},
{
- "id": 5212,
+ "id": 5304,
"properties": {
"attached": "false",
"rotation": "13",
@@ -112406,7 +112490,7 @@
}
},
{
- "id": 5213,
+ "id": 5305,
"properties": {
"attached": "false",
"rotation": "13",
@@ -112414,7 +112498,7 @@
}
},
{
- "id": 5214,
+ "id": 5306,
"properties": {
"attached": "false",
"rotation": "14",
@@ -112422,7 +112506,7 @@
}
},
{
- "id": 5215,
+ "id": 5307,
"properties": {
"attached": "false",
"rotation": "14",
@@ -112430,7 +112514,7 @@
}
},
{
- "id": 5216,
+ "id": 5308,
"properties": {
"attached": "false",
"rotation": "15",
@@ -112438,7 +112522,7 @@
}
},
{
- "id": 5217,
+ "id": 5309,
"properties": {
"attached": "false",
"rotation": "15",
@@ -112472,160 +112556,160 @@
]
},
"states": [
- {
- "id": 321,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 322,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 323,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 324,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 325,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 326,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 327,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 328,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 329,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 330,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 331,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 332,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 333,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 334,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 335,
- "properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
{
"id": 336,
"properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "true",
+ "waterlogged": "true"
}
},
{
"id": 337,
"properties": {
- "distance": "5",
+ "distance": "1",
"persistent": "true",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 338,
"properties": {
- "distance": "5",
- "persistent": "true",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "false",
+ "waterlogged": "true"
}
},
{
"id": 339,
"properties": {
- "distance": "5",
+ "distance": "1",
"persistent": "false",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 340,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 341,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 342,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 343,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 344,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 345,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 346,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 347,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 348,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 349,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 350,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 351,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 352,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 353,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 354,
+ "properties": {
+ "distance": "5",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 355,
"properties": {
"distance": "5",
"persistent": "false",
@@ -112633,7 +112717,7 @@
}
},
{
- "id": 341,
+ "id": 356,
"properties": {
"distance": "6",
"persistent": "true",
@@ -112641,7 +112725,7 @@
}
},
{
- "id": 342,
+ "id": 357,
"properties": {
"distance": "6",
"persistent": "true",
@@ -112649,7 +112733,7 @@
}
},
{
- "id": 343,
+ "id": 358,
"properties": {
"distance": "6",
"persistent": "false",
@@ -112657,7 +112741,7 @@
}
},
{
- "id": 344,
+ "id": 359,
"properties": {
"distance": "6",
"persistent": "false",
@@ -112665,7 +112749,7 @@
}
},
{
- "id": 345,
+ "id": 360,
"properties": {
"distance": "7",
"persistent": "true",
@@ -112673,7 +112757,7 @@
}
},
{
- "id": 346,
+ "id": 361,
"properties": {
"distance": "7",
"persistent": "true",
@@ -112681,7 +112765,7 @@
}
},
{
- "id": 347,
+ "id": 362,
"properties": {
"distance": "7",
"persistent": "false",
@@ -112690,7 +112774,7 @@
},
{
"default": true,
- "id": 348,
+ "id": 363,
"properties": {
"distance": "7",
"persistent": "false",
@@ -112713,20 +112797,20 @@
},
"states": [
{
- "id": 139,
+ "id": 145,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 140,
+ "id": 146,
"properties": {
"axis": "y"
}
},
{
- "id": 141,
+ "id": 147,
"properties": {
"axis": "z"
}
@@ -112759,14 +112843,14 @@
},
"states": [
{
- "id": 5722,
+ "id": 5886,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5723,
+ "id": 5887,
"properties": {
"powered": "false"
}
@@ -112788,13 +112872,13 @@
"states": [
{
"default": true,
- "id": 31,
+ "id": 35,
"properties": {
"stage": "0"
}
},
{
- "id": 32,
+ "id": 36,
"properties": {
"stage": "1"
}
@@ -112833,7 +112917,7 @@
},
"states": [
{
- "id": 4462,
+ "id": 4514,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -112841,217 +112925,217 @@
},
{
"default": true,
- "id": 4463,
+ "id": 4515,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 4464,
+ "id": 4516,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 4465,
+ "id": 4517,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 4466,
+ "id": 4518,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 4467,
+ "id": 4519,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 4468,
+ "id": 4520,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 4469,
+ "id": 4521,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 4470,
+ "id": 4522,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 4471,
+ "id": 4523,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 4472,
+ "id": 4524,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 4473,
+ "id": 4525,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 4474,
+ "id": 4526,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 4475,
+ "id": 4527,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 4476,
+ "id": 4528,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 4477,
+ "id": 4529,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 4478,
+ "id": 4530,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 4479,
+ "id": 4531,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 4480,
+ "id": 4532,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 4481,
+ "id": 4533,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 4482,
+ "id": 4534,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 4483,
+ "id": 4535,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 4484,
+ "id": 4536,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 4485,
+ "id": 4537,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 4486,
+ "id": 4538,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 4487,
+ "id": 4539,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 4488,
+ "id": 4540,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 4489,
+ "id": 4541,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 4490,
+ "id": 4542,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 4491,
+ "id": 4543,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 4492,
+ "id": 4544,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 4493,
+ "id": 4545,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -113077,21 +113161,21 @@
},
"states": [
{
- "id": 11180,
+ "id": 11515,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11181,
+ "id": 11516,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11182,
+ "id": 11517,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -113099,21 +113183,21 @@
},
{
"default": true,
- "id": 11183,
+ "id": 11518,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11184,
+ "id": 11519,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11185,
+ "id": 11520,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -113154,7 +113238,7 @@
},
"states": [
{
- "id": 7826,
+ "id": 8056,
"properties": {
"facing": "north",
"half": "top",
@@ -113163,7 +113247,7 @@
}
},
{
- "id": 7827,
+ "id": 8057,
"properties": {
"facing": "north",
"half": "top",
@@ -113172,7 +113256,7 @@
}
},
{
- "id": 7828,
+ "id": 8058,
"properties": {
"facing": "north",
"half": "top",
@@ -113181,7 +113265,7 @@
}
},
{
- "id": 7829,
+ "id": 8059,
"properties": {
"facing": "north",
"half": "top",
@@ -113190,7 +113274,7 @@
}
},
{
- "id": 7830,
+ "id": 8060,
"properties": {
"facing": "north",
"half": "top",
@@ -113199,7 +113283,7 @@
}
},
{
- "id": 7831,
+ "id": 8061,
"properties": {
"facing": "north",
"half": "top",
@@ -113208,7 +113292,7 @@
}
},
{
- "id": 7832,
+ "id": 8062,
"properties": {
"facing": "north",
"half": "top",
@@ -113217,7 +113301,7 @@
}
},
{
- "id": 7833,
+ "id": 8063,
"properties": {
"facing": "north",
"half": "top",
@@ -113226,7 +113310,7 @@
}
},
{
- "id": 7834,
+ "id": 8064,
"properties": {
"facing": "north",
"half": "top",
@@ -113235,7 +113319,7 @@
}
},
{
- "id": 7835,
+ "id": 8065,
"properties": {
"facing": "north",
"half": "top",
@@ -113244,7 +113328,7 @@
}
},
{
- "id": 7836,
+ "id": 8066,
"properties": {
"facing": "north",
"half": "bottom",
@@ -113254,7 +113338,7 @@
},
{
"default": true,
- "id": 7837,
+ "id": 8067,
"properties": {
"facing": "north",
"half": "bottom",
@@ -113263,7 +113347,7 @@
}
},
{
- "id": 7838,
+ "id": 8068,
"properties": {
"facing": "north",
"half": "bottom",
@@ -113272,7 +113356,7 @@
}
},
{
- "id": 7839,
+ "id": 8069,
"properties": {
"facing": "north",
"half": "bottom",
@@ -113281,7 +113365,7 @@
}
},
{
- "id": 7840,
+ "id": 8070,
"properties": {
"facing": "north",
"half": "bottom",
@@ -113290,7 +113374,7 @@
}
},
{
- "id": 7841,
+ "id": 8071,
"properties": {
"facing": "north",
"half": "bottom",
@@ -113299,7 +113383,7 @@
}
},
{
- "id": 7842,
+ "id": 8072,
"properties": {
"facing": "north",
"half": "bottom",
@@ -113308,7 +113392,7 @@
}
},
{
- "id": 7843,
+ "id": 8073,
"properties": {
"facing": "north",
"half": "bottom",
@@ -113317,7 +113401,7 @@
}
},
{
- "id": 7844,
+ "id": 8074,
"properties": {
"facing": "north",
"half": "bottom",
@@ -113326,7 +113410,7 @@
}
},
{
- "id": 7845,
+ "id": 8075,
"properties": {
"facing": "north",
"half": "bottom",
@@ -113335,7 +113419,7 @@
}
},
{
- "id": 7846,
+ "id": 8076,
"properties": {
"facing": "south",
"half": "top",
@@ -113344,7 +113428,7 @@
}
},
{
- "id": 7847,
+ "id": 8077,
"properties": {
"facing": "south",
"half": "top",
@@ -113353,7 +113437,7 @@
}
},
{
- "id": 7848,
+ "id": 8078,
"properties": {
"facing": "south",
"half": "top",
@@ -113362,7 +113446,7 @@
}
},
{
- "id": 7849,
+ "id": 8079,
"properties": {
"facing": "south",
"half": "top",
@@ -113371,7 +113455,7 @@
}
},
{
- "id": 7850,
+ "id": 8080,
"properties": {
"facing": "south",
"half": "top",
@@ -113380,7 +113464,7 @@
}
},
{
- "id": 7851,
+ "id": 8081,
"properties": {
"facing": "south",
"half": "top",
@@ -113389,7 +113473,7 @@
}
},
{
- "id": 7852,
+ "id": 8082,
"properties": {
"facing": "south",
"half": "top",
@@ -113398,7 +113482,7 @@
}
},
{
- "id": 7853,
+ "id": 8083,
"properties": {
"facing": "south",
"half": "top",
@@ -113407,7 +113491,7 @@
}
},
{
- "id": 7854,
+ "id": 8084,
"properties": {
"facing": "south",
"half": "top",
@@ -113416,7 +113500,7 @@
}
},
{
- "id": 7855,
+ "id": 8085,
"properties": {
"facing": "south",
"half": "top",
@@ -113425,7 +113509,7 @@
}
},
{
- "id": 7856,
+ "id": 8086,
"properties": {
"facing": "south",
"half": "bottom",
@@ -113434,7 +113518,7 @@
}
},
{
- "id": 7857,
+ "id": 8087,
"properties": {
"facing": "south",
"half": "bottom",
@@ -113443,7 +113527,7 @@
}
},
{
- "id": 7858,
+ "id": 8088,
"properties": {
"facing": "south",
"half": "bottom",
@@ -113452,7 +113536,7 @@
}
},
{
- "id": 7859,
+ "id": 8089,
"properties": {
"facing": "south",
"half": "bottom",
@@ -113461,7 +113545,7 @@
}
},
{
- "id": 7860,
+ "id": 8090,
"properties": {
"facing": "south",
"half": "bottom",
@@ -113470,7 +113554,7 @@
}
},
{
- "id": 7861,
+ "id": 8091,
"properties": {
"facing": "south",
"half": "bottom",
@@ -113479,7 +113563,7 @@
}
},
{
- "id": 7862,
+ "id": 8092,
"properties": {
"facing": "south",
"half": "bottom",
@@ -113488,7 +113572,7 @@
}
},
{
- "id": 7863,
+ "id": 8093,
"properties": {
"facing": "south",
"half": "bottom",
@@ -113497,7 +113581,7 @@
}
},
{
- "id": 7864,
+ "id": 8094,
"properties": {
"facing": "south",
"half": "bottom",
@@ -113506,7 +113590,7 @@
}
},
{
- "id": 7865,
+ "id": 8095,
"properties": {
"facing": "south",
"half": "bottom",
@@ -113515,7 +113599,7 @@
}
},
{
- "id": 7866,
+ "id": 8096,
"properties": {
"facing": "west",
"half": "top",
@@ -113524,7 +113608,7 @@
}
},
{
- "id": 7867,
+ "id": 8097,
"properties": {
"facing": "west",
"half": "top",
@@ -113533,7 +113617,7 @@
}
},
{
- "id": 7868,
+ "id": 8098,
"properties": {
"facing": "west",
"half": "top",
@@ -113542,7 +113626,7 @@
}
},
{
- "id": 7869,
+ "id": 8099,
"properties": {
"facing": "west",
"half": "top",
@@ -113551,7 +113635,7 @@
}
},
{
- "id": 7870,
+ "id": 8100,
"properties": {
"facing": "west",
"half": "top",
@@ -113560,7 +113644,7 @@
}
},
{
- "id": 7871,
+ "id": 8101,
"properties": {
"facing": "west",
"half": "top",
@@ -113569,7 +113653,7 @@
}
},
{
- "id": 7872,
+ "id": 8102,
"properties": {
"facing": "west",
"half": "top",
@@ -113578,7 +113662,7 @@
}
},
{
- "id": 7873,
+ "id": 8103,
"properties": {
"facing": "west",
"half": "top",
@@ -113587,7 +113671,7 @@
}
},
{
- "id": 7874,
+ "id": 8104,
"properties": {
"facing": "west",
"half": "top",
@@ -113596,7 +113680,7 @@
}
},
{
- "id": 7875,
+ "id": 8105,
"properties": {
"facing": "west",
"half": "top",
@@ -113605,7 +113689,7 @@
}
},
{
- "id": 7876,
+ "id": 8106,
"properties": {
"facing": "west",
"half": "bottom",
@@ -113614,7 +113698,7 @@
}
},
{
- "id": 7877,
+ "id": 8107,
"properties": {
"facing": "west",
"half": "bottom",
@@ -113623,7 +113707,7 @@
}
},
{
- "id": 7878,
+ "id": 8108,
"properties": {
"facing": "west",
"half": "bottom",
@@ -113632,7 +113716,7 @@
}
},
{
- "id": 7879,
+ "id": 8109,
"properties": {
"facing": "west",
"half": "bottom",
@@ -113641,7 +113725,7 @@
}
},
{
- "id": 7880,
+ "id": 8110,
"properties": {
"facing": "west",
"half": "bottom",
@@ -113650,7 +113734,7 @@
}
},
{
- "id": 7881,
+ "id": 8111,
"properties": {
"facing": "west",
"half": "bottom",
@@ -113659,7 +113743,7 @@
}
},
{
- "id": 7882,
+ "id": 8112,
"properties": {
"facing": "west",
"half": "bottom",
@@ -113668,7 +113752,7 @@
}
},
{
- "id": 7883,
+ "id": 8113,
"properties": {
"facing": "west",
"half": "bottom",
@@ -113677,7 +113761,7 @@
}
},
{
- "id": 7884,
+ "id": 8114,
"properties": {
"facing": "west",
"half": "bottom",
@@ -113686,7 +113770,7 @@
}
},
{
- "id": 7885,
+ "id": 8115,
"properties": {
"facing": "west",
"half": "bottom",
@@ -113695,7 +113779,7 @@
}
},
{
- "id": 7886,
+ "id": 8116,
"properties": {
"facing": "east",
"half": "top",
@@ -113704,7 +113788,7 @@
}
},
{
- "id": 7887,
+ "id": 8117,
"properties": {
"facing": "east",
"half": "top",
@@ -113713,7 +113797,7 @@
}
},
{
- "id": 7888,
+ "id": 8118,
"properties": {
"facing": "east",
"half": "top",
@@ -113722,7 +113806,7 @@
}
},
{
- "id": 7889,
+ "id": 8119,
"properties": {
"facing": "east",
"half": "top",
@@ -113731,7 +113815,7 @@
}
},
{
- "id": 7890,
+ "id": 8120,
"properties": {
"facing": "east",
"half": "top",
@@ -113740,7 +113824,7 @@
}
},
{
- "id": 7891,
+ "id": 8121,
"properties": {
"facing": "east",
"half": "top",
@@ -113749,7 +113833,7 @@
}
},
{
- "id": 7892,
+ "id": 8122,
"properties": {
"facing": "east",
"half": "top",
@@ -113758,7 +113842,7 @@
}
},
{
- "id": 7893,
+ "id": 8123,
"properties": {
"facing": "east",
"half": "top",
@@ -113767,7 +113851,7 @@
}
},
{
- "id": 7894,
+ "id": 8124,
"properties": {
"facing": "east",
"half": "top",
@@ -113776,7 +113860,7 @@
}
},
{
- "id": 7895,
+ "id": 8125,
"properties": {
"facing": "east",
"half": "top",
@@ -113785,7 +113869,7 @@
}
},
{
- "id": 7896,
+ "id": 8126,
"properties": {
"facing": "east",
"half": "bottom",
@@ -113794,7 +113878,7 @@
}
},
{
- "id": 7897,
+ "id": 8127,
"properties": {
"facing": "east",
"half": "bottom",
@@ -113803,7 +113887,7 @@
}
},
{
- "id": 7898,
+ "id": 8128,
"properties": {
"facing": "east",
"half": "bottom",
@@ -113812,7 +113896,7 @@
}
},
{
- "id": 7899,
+ "id": 8129,
"properties": {
"facing": "east",
"half": "bottom",
@@ -113821,7 +113905,7 @@
}
},
{
- "id": 7900,
+ "id": 8130,
"properties": {
"facing": "east",
"half": "bottom",
@@ -113830,7 +113914,7 @@
}
},
{
- "id": 7901,
+ "id": 8131,
"properties": {
"facing": "east",
"half": "bottom",
@@ -113839,7 +113923,7 @@
}
},
{
- "id": 7902,
+ "id": 8132,
"properties": {
"facing": "east",
"half": "bottom",
@@ -113848,7 +113932,7 @@
}
},
{
- "id": 7903,
+ "id": 8133,
"properties": {
"facing": "east",
"half": "bottom",
@@ -113857,7 +113941,7 @@
}
},
{
- "id": 7904,
+ "id": 8134,
"properties": {
"facing": "east",
"half": "bottom",
@@ -113866,7 +113950,7 @@
}
},
{
- "id": 7905,
+ "id": 8135,
"properties": {
"facing": "east",
"half": "bottom",
@@ -113908,7 +113992,7 @@
},
"states": [
{
- "id": 6153,
+ "id": 6319,
"properties": {
"facing": "north",
"half": "top",
@@ -113918,7 +114002,7 @@
}
},
{
- "id": 6154,
+ "id": 6320,
"properties": {
"facing": "north",
"half": "top",
@@ -113928,7 +114012,7 @@
}
},
{
- "id": 6155,
+ "id": 6321,
"properties": {
"facing": "north",
"half": "top",
@@ -113938,7 +114022,7 @@
}
},
{
- "id": 6156,
+ "id": 6322,
"properties": {
"facing": "north",
"half": "top",
@@ -113948,7 +114032,7 @@
}
},
{
- "id": 6157,
+ "id": 6323,
"properties": {
"facing": "north",
"half": "top",
@@ -113958,7 +114042,7 @@
}
},
{
- "id": 6158,
+ "id": 6324,
"properties": {
"facing": "north",
"half": "top",
@@ -113968,7 +114052,7 @@
}
},
{
- "id": 6159,
+ "id": 6325,
"properties": {
"facing": "north",
"half": "top",
@@ -113978,7 +114062,7 @@
}
},
{
- "id": 6160,
+ "id": 6326,
"properties": {
"facing": "north",
"half": "top",
@@ -113988,7 +114072,7 @@
}
},
{
- "id": 6161,
+ "id": 6327,
"properties": {
"facing": "north",
"half": "bottom",
@@ -113998,7 +114082,7 @@
}
},
{
- "id": 6162,
+ "id": 6328,
"properties": {
"facing": "north",
"half": "bottom",
@@ -114008,7 +114092,7 @@
}
},
{
- "id": 6163,
+ "id": 6329,
"properties": {
"facing": "north",
"half": "bottom",
@@ -114018,7 +114102,7 @@
}
},
{
- "id": 6164,
+ "id": 6330,
"properties": {
"facing": "north",
"half": "bottom",
@@ -114028,7 +114112,7 @@
}
},
{
- "id": 6165,
+ "id": 6331,
"properties": {
"facing": "north",
"half": "bottom",
@@ -114038,7 +114122,7 @@
}
},
{
- "id": 6166,
+ "id": 6332,
"properties": {
"facing": "north",
"half": "bottom",
@@ -114048,7 +114132,7 @@
}
},
{
- "id": 6167,
+ "id": 6333,
"properties": {
"facing": "north",
"half": "bottom",
@@ -114059,7 +114143,7 @@
},
{
"default": true,
- "id": 6168,
+ "id": 6334,
"properties": {
"facing": "north",
"half": "bottom",
@@ -114069,7 +114153,7 @@
}
},
{
- "id": 6169,
+ "id": 6335,
"properties": {
"facing": "south",
"half": "top",
@@ -114079,7 +114163,7 @@
}
},
{
- "id": 6170,
+ "id": 6336,
"properties": {
"facing": "south",
"half": "top",
@@ -114089,7 +114173,7 @@
}
},
{
- "id": 6171,
+ "id": 6337,
"properties": {
"facing": "south",
"half": "top",
@@ -114099,7 +114183,7 @@
}
},
{
- "id": 6172,
+ "id": 6338,
"properties": {
"facing": "south",
"half": "top",
@@ -114109,7 +114193,7 @@
}
},
{
- "id": 6173,
+ "id": 6339,
"properties": {
"facing": "south",
"half": "top",
@@ -114119,7 +114203,7 @@
}
},
{
- "id": 6174,
+ "id": 6340,
"properties": {
"facing": "south",
"half": "top",
@@ -114129,7 +114213,7 @@
}
},
{
- "id": 6175,
+ "id": 6341,
"properties": {
"facing": "south",
"half": "top",
@@ -114139,7 +114223,7 @@
}
},
{
- "id": 6176,
+ "id": 6342,
"properties": {
"facing": "south",
"half": "top",
@@ -114149,7 +114233,7 @@
}
},
{
- "id": 6177,
+ "id": 6343,
"properties": {
"facing": "south",
"half": "bottom",
@@ -114159,7 +114243,7 @@
}
},
{
- "id": 6178,
+ "id": 6344,
"properties": {
"facing": "south",
"half": "bottom",
@@ -114169,7 +114253,7 @@
}
},
{
- "id": 6179,
+ "id": 6345,
"properties": {
"facing": "south",
"half": "bottom",
@@ -114179,7 +114263,7 @@
}
},
{
- "id": 6180,
+ "id": 6346,
"properties": {
"facing": "south",
"half": "bottom",
@@ -114189,7 +114273,7 @@
}
},
{
- "id": 6181,
+ "id": 6347,
"properties": {
"facing": "south",
"half": "bottom",
@@ -114199,7 +114283,7 @@
}
},
{
- "id": 6182,
+ "id": 6348,
"properties": {
"facing": "south",
"half": "bottom",
@@ -114209,7 +114293,7 @@
}
},
{
- "id": 6183,
+ "id": 6349,
"properties": {
"facing": "south",
"half": "bottom",
@@ -114219,7 +114303,7 @@
}
},
{
- "id": 6184,
+ "id": 6350,
"properties": {
"facing": "south",
"half": "bottom",
@@ -114229,7 +114313,7 @@
}
},
{
- "id": 6185,
+ "id": 6351,
"properties": {
"facing": "west",
"half": "top",
@@ -114239,7 +114323,7 @@
}
},
{
- "id": 6186,
+ "id": 6352,
"properties": {
"facing": "west",
"half": "top",
@@ -114249,7 +114333,7 @@
}
},
{
- "id": 6187,
+ "id": 6353,
"properties": {
"facing": "west",
"half": "top",
@@ -114259,7 +114343,7 @@
}
},
{
- "id": 6188,
+ "id": 6354,
"properties": {
"facing": "west",
"half": "top",
@@ -114269,7 +114353,7 @@
}
},
{
- "id": 6189,
+ "id": 6355,
"properties": {
"facing": "west",
"half": "top",
@@ -114279,7 +114363,7 @@
}
},
{
- "id": 6190,
+ "id": 6356,
"properties": {
"facing": "west",
"half": "top",
@@ -114289,7 +114373,7 @@
}
},
{
- "id": 6191,
+ "id": 6357,
"properties": {
"facing": "west",
"half": "top",
@@ -114299,7 +114383,7 @@
}
},
{
- "id": 6192,
+ "id": 6358,
"properties": {
"facing": "west",
"half": "top",
@@ -114309,7 +114393,7 @@
}
},
{
- "id": 6193,
+ "id": 6359,
"properties": {
"facing": "west",
"half": "bottom",
@@ -114319,7 +114403,7 @@
}
},
{
- "id": 6194,
+ "id": 6360,
"properties": {
"facing": "west",
"half": "bottom",
@@ -114329,7 +114413,7 @@
}
},
{
- "id": 6195,
+ "id": 6361,
"properties": {
"facing": "west",
"half": "bottom",
@@ -114339,7 +114423,7 @@
}
},
{
- "id": 6196,
+ "id": 6362,
"properties": {
"facing": "west",
"half": "bottom",
@@ -114349,7 +114433,7 @@
}
},
{
- "id": 6197,
+ "id": 6363,
"properties": {
"facing": "west",
"half": "bottom",
@@ -114359,7 +114443,7 @@
}
},
{
- "id": 6198,
+ "id": 6364,
"properties": {
"facing": "west",
"half": "bottom",
@@ -114369,7 +114453,7 @@
}
},
{
- "id": 6199,
+ "id": 6365,
"properties": {
"facing": "west",
"half": "bottom",
@@ -114379,7 +114463,7 @@
}
},
{
- "id": 6200,
+ "id": 6366,
"properties": {
"facing": "west",
"half": "bottom",
@@ -114389,7 +114473,7 @@
}
},
{
- "id": 6201,
+ "id": 6367,
"properties": {
"facing": "east",
"half": "top",
@@ -114399,7 +114483,7 @@
}
},
{
- "id": 6202,
+ "id": 6368,
"properties": {
"facing": "east",
"half": "top",
@@ -114409,7 +114493,7 @@
}
},
{
- "id": 6203,
+ "id": 6369,
"properties": {
"facing": "east",
"half": "top",
@@ -114419,7 +114503,7 @@
}
},
{
- "id": 6204,
+ "id": 6370,
"properties": {
"facing": "east",
"half": "top",
@@ -114429,7 +114513,7 @@
}
},
{
- "id": 6205,
+ "id": 6371,
"properties": {
"facing": "east",
"half": "top",
@@ -114439,7 +114523,7 @@
}
},
{
- "id": 6206,
+ "id": 6372,
"properties": {
"facing": "east",
"half": "top",
@@ -114449,7 +114533,7 @@
}
},
{
- "id": 6207,
+ "id": 6373,
"properties": {
"facing": "east",
"half": "top",
@@ -114459,7 +114543,7 @@
}
},
{
- "id": 6208,
+ "id": 6374,
"properties": {
"facing": "east",
"half": "top",
@@ -114469,7 +114553,7 @@
}
},
{
- "id": 6209,
+ "id": 6375,
"properties": {
"facing": "east",
"half": "bottom",
@@ -114479,7 +114563,7 @@
}
},
{
- "id": 6210,
+ "id": 6376,
"properties": {
"facing": "east",
"half": "bottom",
@@ -114489,7 +114573,7 @@
}
},
{
- "id": 6211,
+ "id": 6377,
"properties": {
"facing": "east",
"half": "bottom",
@@ -114499,7 +114583,7 @@
}
},
{
- "id": 6212,
+ "id": 6378,
"properties": {
"facing": "east",
"half": "bottom",
@@ -114509,7 +114593,7 @@
}
},
{
- "id": 6213,
+ "id": 6379,
"properties": {
"facing": "east",
"half": "bottom",
@@ -114519,7 +114603,7 @@
}
},
{
- "id": 6214,
+ "id": 6380,
"properties": {
"facing": "east",
"half": "bottom",
@@ -114529,7 +114613,7 @@
}
},
{
- "id": 6215,
+ "id": 6381,
"properties": {
"facing": "east",
"half": "bottom",
@@ -114539,7 +114623,7 @@
}
},
{
- "id": 6216,
+ "id": 6382,
"properties": {
"facing": "east",
"half": "bottom",
@@ -114570,7 +114654,7 @@
},
"states": [
{
- "id": 5578,
+ "id": 5734,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -114578,49 +114662,49 @@
},
{
"default": true,
- "id": 5579,
+ "id": 5735,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5580,
+ "id": 5736,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5581,
+ "id": 5737,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5582,
+ "id": 5738,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5583,
+ "id": 5739,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5584,
+ "id": 5740,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5585,
+ "id": 5741,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -114648,7 +114732,7 @@
},
"states": [
{
- "id": 4802,
+ "id": 4886,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -114656,49 +114740,49 @@
},
{
"default": true,
- "id": 4803,
+ "id": 4887,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4804,
+ "id": 4888,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4805,
+ "id": 4889,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4806,
+ "id": 4890,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4807,
+ "id": 4891,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4808,
+ "id": 4892,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4809,
+ "id": 4893,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -114720,20 +114804,20 @@
},
"states": [
{
- "id": 198,
+ "id": 210,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 199,
+ "id": 211,
"properties": {
"axis": "y"
}
},
{
- "id": 200,
+ "id": 212,
"properties": {
"axis": "z"
}
@@ -114778,157 +114862,157 @@
"states": [
{
"default": true,
- "id": 12760,
+ "id": 13229,
"properties": {
"age": "0"
}
},
{
- "id": 12761,
+ "id": 13230,
"properties": {
"age": "1"
}
},
{
- "id": 12762,
+ "id": 13231,
"properties": {
"age": "2"
}
},
{
- "id": 12763,
+ "id": 13232,
"properties": {
"age": "3"
}
},
{
- "id": 12764,
+ "id": 13233,
"properties": {
"age": "4"
}
},
{
- "id": 12765,
+ "id": 13234,
"properties": {
"age": "5"
}
},
{
- "id": 12766,
+ "id": 13235,
"properties": {
"age": "6"
}
},
{
- "id": 12767,
+ "id": 13236,
"properties": {
"age": "7"
}
},
{
- "id": 12768,
+ "id": 13237,
"properties": {
"age": "8"
}
},
{
- "id": 12769,
+ "id": 13238,
"properties": {
"age": "9"
}
},
{
- "id": 12770,
+ "id": 13239,
"properties": {
"age": "10"
}
},
{
- "id": 12771,
+ "id": 13240,
"properties": {
"age": "11"
}
},
{
- "id": 12772,
+ "id": 13241,
"properties": {
"age": "12"
}
},
{
- "id": 12773,
+ "id": 13242,
"properties": {
"age": "13"
}
},
{
- "id": 12774,
+ "id": 13243,
"properties": {
"age": "14"
}
},
{
- "id": 12775,
+ "id": 13244,
"properties": {
"age": "15"
}
},
{
- "id": 12776,
+ "id": 13245,
"properties": {
"age": "16"
}
},
{
- "id": 12777,
+ "id": 13246,
"properties": {
"age": "17"
}
},
{
- "id": 12778,
+ "id": 13247,
"properties": {
"age": "18"
}
},
{
- "id": 12779,
+ "id": 13248,
"properties": {
"age": "19"
}
},
{
- "id": 12780,
+ "id": 13249,
"properties": {
"age": "20"
}
},
{
- "id": 12781,
+ "id": 13250,
"properties": {
"age": "21"
}
},
{
- "id": 12782,
+ "id": 13251,
"properties": {
"age": "22"
}
},
{
- "id": 12783,
+ "id": 13252,
"properties": {
"age": "23"
}
},
{
- "id": 12784,
+ "id": 13253,
"properties": {
"age": "24"
}
},
{
- "id": 12785,
+ "id": 13254,
"properties": {
"age": "25"
}
@@ -114943,7 +115027,7 @@
"states": [
{
"default": true,
- "id": 12786
+ "id": 13255
}
]
},
@@ -114966,7 +115050,7 @@
},
"states": [
{
- "id": 4654,
+ "id": 4738,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -114974,49 +115058,49 @@
},
{
"default": true,
- "id": 4655,
+ "id": 4739,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4656,
+ "id": 4740,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4657,
+ "id": 4741,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4658,
+ "id": 4742,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4659,
+ "id": 4743,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4660,
+ "id": 4744,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4661,
+ "id": 4745,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -115041,21 +115125,21 @@
},
"states": [
{
- "id": 18503,
+ "id": 18972,
"properties": {
"hanging": "true",
"waterlogged": "true"
}
},
{
- "id": 18504,
+ "id": 18973,
"properties": {
"hanging": "true",
"waterlogged": "false"
}
},
{
- "id": 18505,
+ "id": 18974,
"properties": {
"hanging": "false",
"waterlogged": "true"
@@ -115063,7 +115147,7 @@
},
{
"default": true,
- "id": 18506,
+ "id": 18975,
"properties": {
"hanging": "false",
"waterlogged": "false"
@@ -115079,7 +115163,7 @@
"states": [
{
"default": true,
- "id": 522
+ "id": 565
}
]
},
@@ -115096,7 +115180,7 @@
"states": [
{
"default": true,
- "id": 520
+ "id": 563
}
]
},
@@ -115123,63 +115207,63 @@
},
"states": [
{
- "id": 21045,
+ "id": 21514,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 21046,
+ "id": 21515,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 21047,
+ "id": 21516,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 21048,
+ "id": 21517,
"properties": {
"facing": "east",
"waterlogged": "false"
}
},
{
- "id": 21049,
+ "id": 21518,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 21050,
+ "id": 21519,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 21051,
+ "id": 21520,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 21052,
+ "id": 21521,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 21053,
+ "id": 21522,
"properties": {
"facing": "up",
"waterlogged": "true"
@@ -115187,21 +115271,21 @@
},
{
"default": true,
- "id": 21054,
+ "id": 21523,
"properties": {
"facing": "up",
"waterlogged": "false"
}
},
{
- "id": 21055,
+ "id": 21524,
"properties": {
"facing": "down",
"waterlogged": "true"
}
},
{
- "id": 21056,
+ "id": 21525,
"properties": {
"facing": "down",
"waterlogged": "false"
@@ -115222,14 +115306,14 @@
},
"states": [
{
- "id": 10757,
+ "id": 11092,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 10758,
+ "id": 11093,
"properties": {
"half": "lower"
}
@@ -115265,97 +115349,97 @@
"states": [
{
"default": true,
- "id": 96,
+ "id": 102,
"properties": {
"level": "0"
}
},
{
- "id": 97,
+ "id": 103,
"properties": {
"level": "1"
}
},
{
- "id": 98,
+ "id": 104,
"properties": {
"level": "2"
}
},
{
- "id": 99,
+ "id": 105,
"properties": {
"level": "3"
}
},
{
- "id": 100,
+ "id": 106,
"properties": {
"level": "4"
}
},
{
- "id": 101,
+ "id": 107,
"properties": {
"level": "5"
}
},
{
- "id": 102,
+ "id": 108,
"properties": {
"level": "6"
}
},
{
- "id": 103,
+ "id": 109,
"properties": {
"level": "7"
}
},
{
- "id": 104,
+ "id": 110,
"properties": {
"level": "8"
}
},
{
- "id": 105,
+ "id": 111,
"properties": {
"level": "9"
}
},
{
- "id": 106,
+ "id": 112,
"properties": {
"level": "10"
}
},
{
- "id": 107,
+ "id": 113,
"properties": {
"level": "11"
}
},
{
- "id": 108,
+ "id": 114,
"properties": {
"level": "12"
}
},
{
- "id": 109,
+ "id": 115,
"properties": {
"level": "13"
}
},
{
- "id": 110,
+ "id": 116,
"properties": {
"level": "14"
}
},
{
- "id": 111,
+ "id": 117,
"properties": {
"level": "15"
}
@@ -115370,7 +115454,7 @@
"states": [
{
"default": true,
- "id": 7402
+ "id": 7632
}
]
},
@@ -115397,7 +115481,7 @@
},
"states": [
{
- "id": 18450,
+ "id": 18919,
"properties": {
"facing": "north",
"has_book": "true",
@@ -115405,7 +115489,7 @@
}
},
{
- "id": 18451,
+ "id": 18920,
"properties": {
"facing": "north",
"has_book": "true",
@@ -115413,7 +115497,7 @@
}
},
{
- "id": 18452,
+ "id": 18921,
"properties": {
"facing": "north",
"has_book": "false",
@@ -115422,7 +115506,7 @@
},
{
"default": true,
- "id": 18453,
+ "id": 18922,
"properties": {
"facing": "north",
"has_book": "false",
@@ -115430,7 +115514,7 @@
}
},
{
- "id": 18454,
+ "id": 18923,
"properties": {
"facing": "south",
"has_book": "true",
@@ -115438,7 +115522,7 @@
}
},
{
- "id": 18455,
+ "id": 18924,
"properties": {
"facing": "south",
"has_book": "true",
@@ -115446,7 +115530,7 @@
}
},
{
- "id": 18456,
+ "id": 18925,
"properties": {
"facing": "south",
"has_book": "false",
@@ -115454,7 +115538,7 @@
}
},
{
- "id": 18457,
+ "id": 18926,
"properties": {
"facing": "south",
"has_book": "false",
@@ -115462,7 +115546,7 @@
}
},
{
- "id": 18458,
+ "id": 18927,
"properties": {
"facing": "west",
"has_book": "true",
@@ -115470,7 +115554,7 @@
}
},
{
- "id": 18459,
+ "id": 18928,
"properties": {
"facing": "west",
"has_book": "true",
@@ -115478,7 +115562,7 @@
}
},
{
- "id": 18460,
+ "id": 18929,
"properties": {
"facing": "west",
"has_book": "false",
@@ -115486,7 +115570,7 @@
}
},
{
- "id": 18461,
+ "id": 18930,
"properties": {
"facing": "west",
"has_book": "false",
@@ -115494,7 +115578,7 @@
}
},
{
- "id": 18462,
+ "id": 18931,
"properties": {
"facing": "east",
"has_book": "true",
@@ -115502,7 +115586,7 @@
}
},
{
- "id": 18463,
+ "id": 18932,
"properties": {
"facing": "east",
"has_book": "true",
@@ -115510,7 +115594,7 @@
}
},
{
- "id": 18464,
+ "id": 18933,
"properties": {
"facing": "east",
"has_book": "false",
@@ -115518,7 +115602,7 @@
}
},
{
- "id": 18465,
+ "id": 18934,
"properties": {
"facing": "east",
"has_book": "false",
@@ -115551,7 +115635,7 @@
},
"states": [
{
- "id": 5626,
+ "id": 5790,
"properties": {
"face": "floor",
"facing": "north",
@@ -115559,7 +115643,7 @@
}
},
{
- "id": 5627,
+ "id": 5791,
"properties": {
"face": "floor",
"facing": "north",
@@ -115567,7 +115651,7 @@
}
},
{
- "id": 5628,
+ "id": 5792,
"properties": {
"face": "floor",
"facing": "south",
@@ -115575,7 +115659,7 @@
}
},
{
- "id": 5629,
+ "id": 5793,
"properties": {
"face": "floor",
"facing": "south",
@@ -115583,7 +115667,7 @@
}
},
{
- "id": 5630,
+ "id": 5794,
"properties": {
"face": "floor",
"facing": "west",
@@ -115591,7 +115675,7 @@
}
},
{
- "id": 5631,
+ "id": 5795,
"properties": {
"face": "floor",
"facing": "west",
@@ -115599,7 +115683,7 @@
}
},
{
- "id": 5632,
+ "id": 5796,
"properties": {
"face": "floor",
"facing": "east",
@@ -115607,7 +115691,7 @@
}
},
{
- "id": 5633,
+ "id": 5797,
"properties": {
"face": "floor",
"facing": "east",
@@ -115615,7 +115699,7 @@
}
},
{
- "id": 5634,
+ "id": 5798,
"properties": {
"face": "wall",
"facing": "north",
@@ -115624,7 +115708,7 @@
},
{
"default": true,
- "id": 5635,
+ "id": 5799,
"properties": {
"face": "wall",
"facing": "north",
@@ -115632,7 +115716,7 @@
}
},
{
- "id": 5636,
+ "id": 5800,
"properties": {
"face": "wall",
"facing": "south",
@@ -115640,7 +115724,7 @@
}
},
{
- "id": 5637,
+ "id": 5801,
"properties": {
"face": "wall",
"facing": "south",
@@ -115648,7 +115732,7 @@
}
},
{
- "id": 5638,
+ "id": 5802,
"properties": {
"face": "wall",
"facing": "west",
@@ -115656,7 +115740,7 @@
}
},
{
- "id": 5639,
+ "id": 5803,
"properties": {
"face": "wall",
"facing": "west",
@@ -115664,7 +115748,7 @@
}
},
{
- "id": 5640,
+ "id": 5804,
"properties": {
"face": "wall",
"facing": "east",
@@ -115672,7 +115756,7 @@
}
},
{
- "id": 5641,
+ "id": 5805,
"properties": {
"face": "wall",
"facing": "east",
@@ -115680,7 +115764,7 @@
}
},
{
- "id": 5642,
+ "id": 5806,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -115688,7 +115772,7 @@
}
},
{
- "id": 5643,
+ "id": 5807,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -115696,7 +115780,7 @@
}
},
{
- "id": 5644,
+ "id": 5808,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -115704,7 +115788,7 @@
}
},
{
- "id": 5645,
+ "id": 5809,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -115712,7 +115796,7 @@
}
},
{
- "id": 5646,
+ "id": 5810,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -115720,7 +115804,7 @@
}
},
{
- "id": 5647,
+ "id": 5811,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -115728,7 +115812,7 @@
}
},
{
- "id": 5648,
+ "id": 5812,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -115736,7 +115820,7 @@
}
},
{
- "id": 5649,
+ "id": 5813,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -115776,217 +115860,217 @@
},
"states": [
{
- "id": 10367,
+ "id": 10702,
"properties": {
"level": "0",
"waterlogged": "true"
}
},
{
- "id": 10368,
+ "id": 10703,
"properties": {
"level": "0",
"waterlogged": "false"
}
},
{
- "id": 10369,
+ "id": 10704,
"properties": {
"level": "1",
"waterlogged": "true"
}
},
{
- "id": 10370,
+ "id": 10705,
"properties": {
"level": "1",
"waterlogged": "false"
}
},
{
- "id": 10371,
+ "id": 10706,
"properties": {
"level": "2",
"waterlogged": "true"
}
},
{
- "id": 10372,
+ "id": 10707,
"properties": {
"level": "2",
"waterlogged": "false"
}
},
{
- "id": 10373,
+ "id": 10708,
"properties": {
"level": "3",
"waterlogged": "true"
}
},
{
- "id": 10374,
+ "id": 10709,
"properties": {
"level": "3",
"waterlogged": "false"
}
},
{
- "id": 10375,
+ "id": 10710,
"properties": {
"level": "4",
"waterlogged": "true"
}
},
{
- "id": 10376,
+ "id": 10711,
"properties": {
"level": "4",
"waterlogged": "false"
}
},
{
- "id": 10377,
+ "id": 10712,
"properties": {
"level": "5",
"waterlogged": "true"
}
},
{
- "id": 10378,
+ "id": 10713,
"properties": {
"level": "5",
"waterlogged": "false"
}
},
{
- "id": 10379,
+ "id": 10714,
"properties": {
"level": "6",
"waterlogged": "true"
}
},
{
- "id": 10380,
+ "id": 10715,
"properties": {
"level": "6",
"waterlogged": "false"
}
},
{
- "id": 10381,
+ "id": 10716,
"properties": {
"level": "7",
"waterlogged": "true"
}
},
{
- "id": 10382,
+ "id": 10717,
"properties": {
"level": "7",
"waterlogged": "false"
}
},
{
- "id": 10383,
+ "id": 10718,
"properties": {
"level": "8",
"waterlogged": "true"
}
},
{
- "id": 10384,
+ "id": 10719,
"properties": {
"level": "8",
"waterlogged": "false"
}
},
{
- "id": 10385,
+ "id": 10720,
"properties": {
"level": "9",
"waterlogged": "true"
}
},
{
- "id": 10386,
+ "id": 10721,
"properties": {
"level": "9",
"waterlogged": "false"
}
},
{
- "id": 10387,
+ "id": 10722,
"properties": {
"level": "10",
"waterlogged": "true"
}
},
{
- "id": 10388,
+ "id": 10723,
"properties": {
"level": "10",
"waterlogged": "false"
}
},
{
- "id": 10389,
+ "id": 10724,
"properties": {
"level": "11",
"waterlogged": "true"
}
},
{
- "id": 10390,
+ "id": 10725,
"properties": {
"level": "11",
"waterlogged": "false"
}
},
{
- "id": 10391,
+ "id": 10726,
"properties": {
"level": "12",
"waterlogged": "true"
}
},
{
- "id": 10392,
+ "id": 10727,
"properties": {
"level": "12",
"waterlogged": "false"
}
},
{
- "id": 10393,
+ "id": 10728,
"properties": {
"level": "13",
"waterlogged": "true"
}
},
{
- "id": 10394,
+ "id": 10729,
"properties": {
"level": "13",
"waterlogged": "false"
}
},
{
- "id": 10395,
+ "id": 10730,
"properties": {
"level": "14",
"waterlogged": "true"
}
},
{
- "id": 10396,
+ "id": 10731,
"properties": {
"level": "14",
"waterlogged": "false"
}
},
{
- "id": 10397,
+ "id": 10732,
"properties": {
"level": "15",
"waterlogged": "true"
@@ -115994,7 +116078,7 @@
},
{
"default": true,
- "id": 10398,
+ "id": 10733,
"properties": {
"level": "15",
"waterlogged": "false"
@@ -116031,97 +116115,97 @@
"states": [
{
"default": true,
- "id": 10807,
+ "id": 11142,
"properties": {
"rotation": "0"
}
},
{
- "id": 10808,
+ "id": 11143,
"properties": {
"rotation": "1"
}
},
{
- "id": 10809,
+ "id": 11144,
"properties": {
"rotation": "2"
}
},
{
- "id": 10810,
+ "id": 11145,
"properties": {
"rotation": "3"
}
},
{
- "id": 10811,
+ "id": 11146,
"properties": {
"rotation": "4"
}
},
{
- "id": 10812,
+ "id": 11147,
"properties": {
"rotation": "5"
}
},
{
- "id": 10813,
+ "id": 11148,
"properties": {
"rotation": "6"
}
},
{
- "id": 10814,
+ "id": 11149,
"properties": {
"rotation": "7"
}
},
{
- "id": 10815,
+ "id": 11150,
"properties": {
"rotation": "8"
}
},
{
- "id": 10816,
+ "id": 11151,
"properties": {
"rotation": "9"
}
},
{
- "id": 10817,
+ "id": 11152,
"properties": {
"rotation": "10"
}
},
{
- "id": 10818,
+ "id": 11153,
"properties": {
"rotation": "11"
}
},
{
- "id": 10819,
+ "id": 11154,
"properties": {
"rotation": "12"
}
},
{
- "id": 10820,
+ "id": 11155,
"properties": {
"rotation": "13"
}
},
{
- "id": 10821,
+ "id": 11156,
"properties": {
"rotation": "14"
}
},
{
- "id": 10822,
+ "id": 11157,
"properties": {
"rotation": "15"
}
@@ -116152,7 +116236,7 @@
},
"states": [
{
- "id": 1736,
+ "id": 1779,
"properties": {
"facing": "north",
"occupied": "true",
@@ -116160,7 +116244,7 @@
}
},
{
- "id": 1737,
+ "id": 1780,
"properties": {
"facing": "north",
"occupied": "true",
@@ -116168,7 +116252,7 @@
}
},
{
- "id": 1738,
+ "id": 1781,
"properties": {
"facing": "north",
"occupied": "false",
@@ -116177,7 +116261,7 @@
},
{
"default": true,
- "id": 1739,
+ "id": 1782,
"properties": {
"facing": "north",
"occupied": "false",
@@ -116185,7 +116269,7 @@
}
},
{
- "id": 1740,
+ "id": 1783,
"properties": {
"facing": "south",
"occupied": "true",
@@ -116193,7 +116277,7 @@
}
},
{
- "id": 1741,
+ "id": 1784,
"properties": {
"facing": "south",
"occupied": "true",
@@ -116201,7 +116285,7 @@
}
},
{
- "id": 1742,
+ "id": 1785,
"properties": {
"facing": "south",
"occupied": "false",
@@ -116209,7 +116293,7 @@
}
},
{
- "id": 1743,
+ "id": 1786,
"properties": {
"facing": "south",
"occupied": "false",
@@ -116217,7 +116301,7 @@
}
},
{
- "id": 1744,
+ "id": 1787,
"properties": {
"facing": "west",
"occupied": "true",
@@ -116225,7 +116309,7 @@
}
},
{
- "id": 1745,
+ "id": 1788,
"properties": {
"facing": "west",
"occupied": "true",
@@ -116233,7 +116317,7 @@
}
},
{
- "id": 1746,
+ "id": 1789,
"properties": {
"facing": "west",
"occupied": "false",
@@ -116241,7 +116325,7 @@
}
},
{
- "id": 1747,
+ "id": 1790,
"properties": {
"facing": "west",
"occupied": "false",
@@ -116249,7 +116333,7 @@
}
},
{
- "id": 1748,
+ "id": 1791,
"properties": {
"facing": "east",
"occupied": "true",
@@ -116257,7 +116341,7 @@
}
},
{
- "id": 1749,
+ "id": 1792,
"properties": {
"facing": "east",
"occupied": "true",
@@ -116265,7 +116349,7 @@
}
},
{
- "id": 1750,
+ "id": 1793,
"properties": {
"facing": "east",
"occupied": "false",
@@ -116273,7 +116357,7 @@
}
},
{
- "id": 1751,
+ "id": 1794,
"properties": {
"facing": "east",
"occupied": "false",
@@ -116305,7 +116389,7 @@
},
"states": [
{
- "id": 20789,
+ "id": 21258,
"properties": {
"candles": "1",
"lit": "true",
@@ -116313,7 +116397,7 @@
}
},
{
- "id": 20790,
+ "id": 21259,
"properties": {
"candles": "1",
"lit": "true",
@@ -116321,7 +116405,7 @@
}
},
{
- "id": 20791,
+ "id": 21260,
"properties": {
"candles": "1",
"lit": "false",
@@ -116330,7 +116414,7 @@
},
{
"default": true,
- "id": 20792,
+ "id": 21261,
"properties": {
"candles": "1",
"lit": "false",
@@ -116338,7 +116422,7 @@
}
},
{
- "id": 20793,
+ "id": 21262,
"properties": {
"candles": "2",
"lit": "true",
@@ -116346,7 +116430,7 @@
}
},
{
- "id": 20794,
+ "id": 21263,
"properties": {
"candles": "2",
"lit": "true",
@@ -116354,7 +116438,7 @@
}
},
{
- "id": 20795,
+ "id": 21264,
"properties": {
"candles": "2",
"lit": "false",
@@ -116362,7 +116446,7 @@
}
},
{
- "id": 20796,
+ "id": 21265,
"properties": {
"candles": "2",
"lit": "false",
@@ -116370,7 +116454,7 @@
}
},
{
- "id": 20797,
+ "id": 21266,
"properties": {
"candles": "3",
"lit": "true",
@@ -116378,7 +116462,7 @@
}
},
{
- "id": 20798,
+ "id": 21267,
"properties": {
"candles": "3",
"lit": "true",
@@ -116386,7 +116470,7 @@
}
},
{
- "id": 20799,
+ "id": 21268,
"properties": {
"candles": "3",
"lit": "false",
@@ -116394,7 +116478,7 @@
}
},
{
- "id": 20800,
+ "id": 21269,
"properties": {
"candles": "3",
"lit": "false",
@@ -116402,7 +116486,7 @@
}
},
{
- "id": 20801,
+ "id": 21270,
"properties": {
"candles": "4",
"lit": "true",
@@ -116410,7 +116494,7 @@
}
},
{
- "id": 20802,
+ "id": 21271,
"properties": {
"candles": "4",
"lit": "true",
@@ -116418,7 +116502,7 @@
}
},
{
- "id": 20803,
+ "id": 21272,
"properties": {
"candles": "4",
"lit": "false",
@@ -116426,7 +116510,7 @@
}
},
{
- "id": 20804,
+ "id": 21273,
"properties": {
"candles": "4",
"lit": "false",
@@ -116449,14 +116533,14 @@
},
"states": [
{
- "id": 21005,
+ "id": 21474,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 21006,
+ "id": 21475,
"properties": {
"lit": "false"
}
@@ -116472,7 +116556,7 @@
"states": [
{
"default": true,
- "id": 10731
+ "id": 11066
}
]
},
@@ -116484,7 +116568,7 @@
"states": [
{
"default": true,
- "id": 12731
+ "id": 13200
}
]
},
@@ -116497,7 +116581,7 @@
"states": [
{
"default": true,
- "id": 12747
+ "id": 13216
}
]
},
@@ -116517,25 +116601,25 @@
"states": [
{
"default": true,
- "id": 12676,
+ "id": 13145,
"properties": {
"facing": "north"
}
},
{
- "id": 12677,
+ "id": 13146,
"properties": {
"facing": "south"
}
},
{
- "id": 12678,
+ "id": 13147,
"properties": {
"facing": "west"
}
},
{
- "id": 12679,
+ "id": 13148,
"properties": {
"facing": "east"
}
@@ -116560,38 +116644,38 @@
},
"states": [
{
- "id": 12586,
+ "id": 13055,
"properties": {
"facing": "north"
}
},
{
- "id": 12587,
+ "id": 13056,
"properties": {
"facing": "east"
}
},
{
- "id": 12588,
+ "id": 13057,
"properties": {
"facing": "south"
}
},
{
- "id": 12589,
+ "id": 13058,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12590,
+ "id": 13059,
"properties": {
"facing": "up"
}
},
{
- "id": 12591,
+ "id": 13060,
"properties": {
"facing": "down"
}
@@ -116607,7 +116691,7 @@
"states": [
{
"default": true,
- "id": 5948
+ "id": 6114
}
]
},
@@ -116641,7 +116725,7 @@
},
"states": [
{
- "id": 9468,
+ "id": 9723,
"properties": {
"east": "true",
"north": "true",
@@ -116651,7 +116735,7 @@
}
},
{
- "id": 9469,
+ "id": 9724,
"properties": {
"east": "true",
"north": "true",
@@ -116661,7 +116745,7 @@
}
},
{
- "id": 9470,
+ "id": 9725,
"properties": {
"east": "true",
"north": "true",
@@ -116671,7 +116755,7 @@
}
},
{
- "id": 9471,
+ "id": 9726,
"properties": {
"east": "true",
"north": "true",
@@ -116681,7 +116765,7 @@
}
},
{
- "id": 9472,
+ "id": 9727,
"properties": {
"east": "true",
"north": "true",
@@ -116691,7 +116775,7 @@
}
},
{
- "id": 9473,
+ "id": 9728,
"properties": {
"east": "true",
"north": "true",
@@ -116701,7 +116785,7 @@
}
},
{
- "id": 9474,
+ "id": 9729,
"properties": {
"east": "true",
"north": "true",
@@ -116711,7 +116795,7 @@
}
},
{
- "id": 9475,
+ "id": 9730,
"properties": {
"east": "true",
"north": "true",
@@ -116721,7 +116805,7 @@
}
},
{
- "id": 9476,
+ "id": 9731,
"properties": {
"east": "true",
"north": "false",
@@ -116731,7 +116815,7 @@
}
},
{
- "id": 9477,
+ "id": 9732,
"properties": {
"east": "true",
"north": "false",
@@ -116741,7 +116825,7 @@
}
},
{
- "id": 9478,
+ "id": 9733,
"properties": {
"east": "true",
"north": "false",
@@ -116751,7 +116835,7 @@
}
},
{
- "id": 9479,
+ "id": 9734,
"properties": {
"east": "true",
"north": "false",
@@ -116761,7 +116845,7 @@
}
},
{
- "id": 9480,
+ "id": 9735,
"properties": {
"east": "true",
"north": "false",
@@ -116771,7 +116855,7 @@
}
},
{
- "id": 9481,
+ "id": 9736,
"properties": {
"east": "true",
"north": "false",
@@ -116781,7 +116865,7 @@
}
},
{
- "id": 9482,
+ "id": 9737,
"properties": {
"east": "true",
"north": "false",
@@ -116791,7 +116875,7 @@
}
},
{
- "id": 9483,
+ "id": 9738,
"properties": {
"east": "true",
"north": "false",
@@ -116801,7 +116885,7 @@
}
},
{
- "id": 9484,
+ "id": 9739,
"properties": {
"east": "false",
"north": "true",
@@ -116811,7 +116895,7 @@
}
},
{
- "id": 9485,
+ "id": 9740,
"properties": {
"east": "false",
"north": "true",
@@ -116821,7 +116905,7 @@
}
},
{
- "id": 9486,
+ "id": 9741,
"properties": {
"east": "false",
"north": "true",
@@ -116831,7 +116915,7 @@
}
},
{
- "id": 9487,
+ "id": 9742,
"properties": {
"east": "false",
"north": "true",
@@ -116841,7 +116925,7 @@
}
},
{
- "id": 9488,
+ "id": 9743,
"properties": {
"east": "false",
"north": "true",
@@ -116851,7 +116935,7 @@
}
},
{
- "id": 9489,
+ "id": 9744,
"properties": {
"east": "false",
"north": "true",
@@ -116861,7 +116945,7 @@
}
},
{
- "id": 9490,
+ "id": 9745,
"properties": {
"east": "false",
"north": "true",
@@ -116871,7 +116955,7 @@
}
},
{
- "id": 9491,
+ "id": 9746,
"properties": {
"east": "false",
"north": "true",
@@ -116881,7 +116965,7 @@
}
},
{
- "id": 9492,
+ "id": 9747,
"properties": {
"east": "false",
"north": "false",
@@ -116891,7 +116975,7 @@
}
},
{
- "id": 9493,
+ "id": 9748,
"properties": {
"east": "false",
"north": "false",
@@ -116901,7 +116985,7 @@
}
},
{
- "id": 9494,
+ "id": 9749,
"properties": {
"east": "false",
"north": "false",
@@ -116911,7 +116995,7 @@
}
},
{
- "id": 9495,
+ "id": 9750,
"properties": {
"east": "false",
"north": "false",
@@ -116921,7 +117005,7 @@
}
},
{
- "id": 9496,
+ "id": 9751,
"properties": {
"east": "false",
"north": "false",
@@ -116931,7 +117015,7 @@
}
},
{
- "id": 9497,
+ "id": 9752,
"properties": {
"east": "false",
"north": "false",
@@ -116941,7 +117025,7 @@
}
},
{
- "id": 9498,
+ "id": 9753,
"properties": {
"east": "false",
"north": "false",
@@ -116952,7 +117036,7 @@
},
{
"default": true,
- "id": 9499,
+ "id": 9754,
"properties": {
"east": "false",
"north": "false",
@@ -116971,7 +117055,7 @@
"states": [
{
"default": true,
- "id": 9359
+ "id": 9614
}
]
},
@@ -116992,25 +117076,25 @@
"states": [
{
"default": true,
- "id": 11027,
+ "id": 11362,
"properties": {
"facing": "north"
}
},
{
- "id": 11028,
+ "id": 11363,
"properties": {
"facing": "south"
}
},
{
- "id": 11029,
+ "id": 11364,
"properties": {
"facing": "west"
}
},
{
- "id": 11030,
+ "id": 11365,
"properties": {
"facing": "east"
}
@@ -117025,7 +117109,7 @@
"states": [
{
"default": true,
- "id": 2050
+ "id": 2093
}
]
},
@@ -117058,97 +117142,97 @@
"states": [
{
"default": true,
- "id": 10887,
+ "id": 11222,
"properties": {
"rotation": "0"
}
},
{
- "id": 10888,
+ "id": 11223,
"properties": {
"rotation": "1"
}
},
{
- "id": 10889,
+ "id": 11224,
"properties": {
"rotation": "2"
}
},
{
- "id": 10890,
+ "id": 11225,
"properties": {
"rotation": "3"
}
},
{
- "id": 10891,
+ "id": 11226,
"properties": {
"rotation": "4"
}
},
{
- "id": 10892,
+ "id": 11227,
"properties": {
"rotation": "5"
}
},
{
- "id": 10893,
+ "id": 11228,
"properties": {
"rotation": "6"
}
},
{
- "id": 10894,
+ "id": 11229,
"properties": {
"rotation": "7"
}
},
{
- "id": 10895,
+ "id": 11230,
"properties": {
"rotation": "8"
}
},
{
- "id": 10896,
+ "id": 11231,
"properties": {
"rotation": "9"
}
},
{
- "id": 10897,
+ "id": 11232,
"properties": {
"rotation": "10"
}
},
{
- "id": 10898,
+ "id": 11233,
"properties": {
"rotation": "11"
}
},
{
- "id": 10899,
+ "id": 11234,
"properties": {
"rotation": "12"
}
},
{
- "id": 10900,
+ "id": 11235,
"properties": {
"rotation": "13"
}
},
{
- "id": 10901,
+ "id": 11236,
"properties": {
"rotation": "14"
}
},
{
- "id": 10902,
+ "id": 11237,
"properties": {
"rotation": "15"
}
@@ -117179,7 +117263,7 @@
},
"states": [
{
- "id": 1816,
+ "id": 1859,
"properties": {
"facing": "north",
"occupied": "true",
@@ -117187,7 +117271,7 @@
}
},
{
- "id": 1817,
+ "id": 1860,
"properties": {
"facing": "north",
"occupied": "true",
@@ -117195,7 +117279,7 @@
}
},
{
- "id": 1818,
+ "id": 1861,
"properties": {
"facing": "north",
"occupied": "false",
@@ -117204,7 +117288,7 @@
},
{
"default": true,
- "id": 1819,
+ "id": 1862,
"properties": {
"facing": "north",
"occupied": "false",
@@ -117212,7 +117296,7 @@
}
},
{
- "id": 1820,
+ "id": 1863,
"properties": {
"facing": "south",
"occupied": "true",
@@ -117220,7 +117304,7 @@
}
},
{
- "id": 1821,
+ "id": 1864,
"properties": {
"facing": "south",
"occupied": "true",
@@ -117228,7 +117312,7 @@
}
},
{
- "id": 1822,
+ "id": 1865,
"properties": {
"facing": "south",
"occupied": "false",
@@ -117236,7 +117320,7 @@
}
},
{
- "id": 1823,
+ "id": 1866,
"properties": {
"facing": "south",
"occupied": "false",
@@ -117244,7 +117328,7 @@
}
},
{
- "id": 1824,
+ "id": 1867,
"properties": {
"facing": "west",
"occupied": "true",
@@ -117252,7 +117336,7 @@
}
},
{
- "id": 1825,
+ "id": 1868,
"properties": {
"facing": "west",
"occupied": "true",
@@ -117260,7 +117344,7 @@
}
},
{
- "id": 1826,
+ "id": 1869,
"properties": {
"facing": "west",
"occupied": "false",
@@ -117268,7 +117352,7 @@
}
},
{
- "id": 1827,
+ "id": 1870,
"properties": {
"facing": "west",
"occupied": "false",
@@ -117276,7 +117360,7 @@
}
},
{
- "id": 1828,
+ "id": 1871,
"properties": {
"facing": "east",
"occupied": "true",
@@ -117284,7 +117368,7 @@
}
},
{
- "id": 1829,
+ "id": 1872,
"properties": {
"facing": "east",
"occupied": "true",
@@ -117292,7 +117376,7 @@
}
},
{
- "id": 1830,
+ "id": 1873,
"properties": {
"facing": "east",
"occupied": "false",
@@ -117300,7 +117384,7 @@
}
},
{
- "id": 1831,
+ "id": 1874,
"properties": {
"facing": "east",
"occupied": "false",
@@ -117332,7 +117416,7 @@
},
"states": [
{
- "id": 20869,
+ "id": 21338,
"properties": {
"candles": "1",
"lit": "true",
@@ -117340,7 +117424,7 @@
}
},
{
- "id": 20870,
+ "id": 21339,
"properties": {
"candles": "1",
"lit": "true",
@@ -117348,7 +117432,7 @@
}
},
{
- "id": 20871,
+ "id": 21340,
"properties": {
"candles": "1",
"lit": "false",
@@ -117357,7 +117441,7 @@
},
{
"default": true,
- "id": 20872,
+ "id": 21341,
"properties": {
"candles": "1",
"lit": "false",
@@ -117365,7 +117449,7 @@
}
},
{
- "id": 20873,
+ "id": 21342,
"properties": {
"candles": "2",
"lit": "true",
@@ -117373,7 +117457,7 @@
}
},
{
- "id": 20874,
+ "id": 21343,
"properties": {
"candles": "2",
"lit": "true",
@@ -117381,7 +117465,7 @@
}
},
{
- "id": 20875,
+ "id": 21344,
"properties": {
"candles": "2",
"lit": "false",
@@ -117389,7 +117473,7 @@
}
},
{
- "id": 20876,
+ "id": 21345,
"properties": {
"candles": "2",
"lit": "false",
@@ -117397,7 +117481,7 @@
}
},
{
- "id": 20877,
+ "id": 21346,
"properties": {
"candles": "3",
"lit": "true",
@@ -117405,7 +117489,7 @@
}
},
{
- "id": 20878,
+ "id": 21347,
"properties": {
"candles": "3",
"lit": "true",
@@ -117413,7 +117497,7 @@
}
},
{
- "id": 20879,
+ "id": 21348,
"properties": {
"candles": "3",
"lit": "false",
@@ -117421,7 +117505,7 @@
}
},
{
- "id": 20880,
+ "id": 21349,
"properties": {
"candles": "3",
"lit": "false",
@@ -117429,7 +117513,7 @@
}
},
{
- "id": 20881,
+ "id": 21350,
"properties": {
"candles": "4",
"lit": "true",
@@ -117437,7 +117521,7 @@
}
},
{
- "id": 20882,
+ "id": 21351,
"properties": {
"candles": "4",
"lit": "true",
@@ -117445,7 +117529,7 @@
}
},
{
- "id": 20883,
+ "id": 21352,
"properties": {
"candles": "4",
"lit": "false",
@@ -117453,7 +117537,7 @@
}
},
{
- "id": 20884,
+ "id": 21353,
"properties": {
"candles": "4",
"lit": "false",
@@ -117476,14 +117560,14 @@
},
"states": [
{
- "id": 21015,
+ "id": 21484,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 21016,
+ "id": 21485,
"properties": {
"lit": "false"
}
@@ -117499,7 +117583,7 @@
"states": [
{
"default": true,
- "id": 10736
+ "id": 11071
}
]
},
@@ -117511,7 +117595,7 @@
"states": [
{
"default": true,
- "id": 12736
+ "id": 13205
}
]
},
@@ -117524,7 +117608,7 @@
"states": [
{
"default": true,
- "id": 12752
+ "id": 13221
}
]
},
@@ -117544,25 +117628,25 @@
"states": [
{
"default": true,
- "id": 12696,
+ "id": 13165,
"properties": {
"facing": "north"
}
},
{
- "id": 12697,
+ "id": 13166,
"properties": {
"facing": "south"
}
},
{
- "id": 12698,
+ "id": 13167,
"properties": {
"facing": "west"
}
},
{
- "id": 12699,
+ "id": 13168,
"properties": {
"facing": "east"
}
@@ -117587,38 +117671,38 @@
},
"states": [
{
- "id": 12616,
+ "id": 13085,
"properties": {
"facing": "north"
}
},
{
- "id": 12617,
+ "id": 13086,
"properties": {
"facing": "east"
}
},
{
- "id": 12618,
+ "id": 13087,
"properties": {
"facing": "south"
}
},
{
- "id": 12619,
+ "id": 13088,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12620,
+ "id": 13089,
"properties": {
"facing": "up"
}
},
{
- "id": 12621,
+ "id": 13090,
"properties": {
"facing": "down"
}
@@ -117634,7 +117718,7 @@
"states": [
{
"default": true,
- "id": 5953
+ "id": 6119
}
]
},
@@ -117668,7 +117752,7 @@
},
"states": [
{
- "id": 9628,
+ "id": 9883,
"properties": {
"east": "true",
"north": "true",
@@ -117678,7 +117762,7 @@
}
},
{
- "id": 9629,
+ "id": 9884,
"properties": {
"east": "true",
"north": "true",
@@ -117688,7 +117772,7 @@
}
},
{
- "id": 9630,
+ "id": 9885,
"properties": {
"east": "true",
"north": "true",
@@ -117698,7 +117782,7 @@
}
},
{
- "id": 9631,
+ "id": 9886,
"properties": {
"east": "true",
"north": "true",
@@ -117708,7 +117792,7 @@
}
},
{
- "id": 9632,
+ "id": 9887,
"properties": {
"east": "true",
"north": "true",
@@ -117718,7 +117802,7 @@
}
},
{
- "id": 9633,
+ "id": 9888,
"properties": {
"east": "true",
"north": "true",
@@ -117728,7 +117812,7 @@
}
},
{
- "id": 9634,
+ "id": 9889,
"properties": {
"east": "true",
"north": "true",
@@ -117738,7 +117822,7 @@
}
},
{
- "id": 9635,
+ "id": 9890,
"properties": {
"east": "true",
"north": "true",
@@ -117748,7 +117832,7 @@
}
},
{
- "id": 9636,
+ "id": 9891,
"properties": {
"east": "true",
"north": "false",
@@ -117758,7 +117842,7 @@
}
},
{
- "id": 9637,
+ "id": 9892,
"properties": {
"east": "true",
"north": "false",
@@ -117768,7 +117852,7 @@
}
},
{
- "id": 9638,
+ "id": 9893,
"properties": {
"east": "true",
"north": "false",
@@ -117778,7 +117862,7 @@
}
},
{
- "id": 9639,
+ "id": 9894,
"properties": {
"east": "true",
"north": "false",
@@ -117788,7 +117872,7 @@
}
},
{
- "id": 9640,
+ "id": 9895,
"properties": {
"east": "true",
"north": "false",
@@ -117798,7 +117882,7 @@
}
},
{
- "id": 9641,
+ "id": 9896,
"properties": {
"east": "true",
"north": "false",
@@ -117808,7 +117892,7 @@
}
},
{
- "id": 9642,
+ "id": 9897,
"properties": {
"east": "true",
"north": "false",
@@ -117818,7 +117902,7 @@
}
},
{
- "id": 9643,
+ "id": 9898,
"properties": {
"east": "true",
"north": "false",
@@ -117828,7 +117912,7 @@
}
},
{
- "id": 9644,
+ "id": 9899,
"properties": {
"east": "false",
"north": "true",
@@ -117838,7 +117922,7 @@
}
},
{
- "id": 9645,
+ "id": 9900,
"properties": {
"east": "false",
"north": "true",
@@ -117848,7 +117932,7 @@
}
},
{
- "id": 9646,
+ "id": 9901,
"properties": {
"east": "false",
"north": "true",
@@ -117858,7 +117942,7 @@
}
},
{
- "id": 9647,
+ "id": 9902,
"properties": {
"east": "false",
"north": "true",
@@ -117868,7 +117952,7 @@
}
},
{
- "id": 9648,
+ "id": 9903,
"properties": {
"east": "false",
"north": "true",
@@ -117878,7 +117962,7 @@
}
},
{
- "id": 9649,
+ "id": 9904,
"properties": {
"east": "false",
"north": "true",
@@ -117888,7 +117972,7 @@
}
},
{
- "id": 9650,
+ "id": 9905,
"properties": {
"east": "false",
"north": "true",
@@ -117898,7 +117982,7 @@
}
},
{
- "id": 9651,
+ "id": 9906,
"properties": {
"east": "false",
"north": "true",
@@ -117908,7 +117992,7 @@
}
},
{
- "id": 9652,
+ "id": 9907,
"properties": {
"east": "false",
"north": "false",
@@ -117918,7 +118002,7 @@
}
},
{
- "id": 9653,
+ "id": 9908,
"properties": {
"east": "false",
"north": "false",
@@ -117928,7 +118012,7 @@
}
},
{
- "id": 9654,
+ "id": 9909,
"properties": {
"east": "false",
"north": "false",
@@ -117938,7 +118022,7 @@
}
},
{
- "id": 9655,
+ "id": 9910,
"properties": {
"east": "false",
"north": "false",
@@ -117948,7 +118032,7 @@
}
},
{
- "id": 9656,
+ "id": 9911,
"properties": {
"east": "false",
"north": "false",
@@ -117958,7 +118042,7 @@
}
},
{
- "id": 9657,
+ "id": 9912,
"properties": {
"east": "false",
"north": "false",
@@ -117968,7 +118052,7 @@
}
},
{
- "id": 9658,
+ "id": 9913,
"properties": {
"east": "false",
"north": "false",
@@ -117979,7 +118063,7 @@
},
{
"default": true,
- "id": 9659,
+ "id": 9914,
"properties": {
"east": "false",
"north": "false",
@@ -117998,7 +118082,7 @@
"states": [
{
"default": true,
- "id": 9364
+ "id": 9619
}
]
},
@@ -118019,25 +118103,25 @@
"states": [
{
"default": true,
- "id": 11047,
+ "id": 11382,
"properties": {
"facing": "north"
}
},
{
- "id": 11048,
+ "id": 11383,
"properties": {
"facing": "south"
}
},
{
- "id": 11049,
+ "id": 11384,
"properties": {
"facing": "west"
}
},
{
- "id": 11050,
+ "id": 11385,
"properties": {
"facing": "east"
}
@@ -118052,7 +118136,7 @@
"states": [
{
"default": true,
- "id": 2055
+ "id": 2098
}
]
},
@@ -118086,97 +118170,97 @@
"states": [
{
"default": true,
- "id": 9143,
+ "id": 9398,
"properties": {
"power": "0"
}
},
{
- "id": 9144,
+ "id": 9399,
"properties": {
"power": "1"
}
},
{
- "id": 9145,
+ "id": 9400,
"properties": {
"power": "2"
}
},
{
- "id": 9146,
+ "id": 9401,
"properties": {
"power": "3"
}
},
{
- "id": 9147,
+ "id": 9402,
"properties": {
"power": "4"
}
},
{
- "id": 9148,
+ "id": 9403,
"properties": {
"power": "5"
}
},
{
- "id": 9149,
+ "id": 9404,
"properties": {
"power": "6"
}
},
{
- "id": 9150,
+ "id": 9405,
"properties": {
"power": "7"
}
},
{
- "id": 9151,
+ "id": 9406,
"properties": {
"power": "8"
}
},
{
- "id": 9152,
+ "id": 9407,
"properties": {
"power": "9"
}
},
{
- "id": 9153,
+ "id": 9408,
"properties": {
"power": "10"
}
},
{
- "id": 9154,
+ "id": 9409,
"properties": {
"power": "11"
}
},
{
- "id": 9155,
+ "id": 9410,
"properties": {
"power": "12"
}
},
{
- "id": 9156,
+ "id": 9411,
"properties": {
"power": "13"
}
},
{
- "id": 9157,
+ "id": 9412,
"properties": {
"power": "14"
}
},
{
- "id": 9158,
+ "id": 9413,
"properties": {
"power": "15"
}
@@ -118208,7 +118292,7 @@
},
"states": [
{
- "id": 24724,
+ "id": 25193,
"properties": {
"facing": "north",
"powered": "true",
@@ -118216,7 +118300,7 @@
}
},
{
- "id": 24725,
+ "id": 25194,
"properties": {
"facing": "north",
"powered": "true",
@@ -118224,7 +118308,7 @@
}
},
{
- "id": 24726,
+ "id": 25195,
"properties": {
"facing": "north",
"powered": "false",
@@ -118232,7 +118316,7 @@
}
},
{
- "id": 24727,
+ "id": 25196,
"properties": {
"facing": "north",
"powered": "false",
@@ -118240,7 +118324,7 @@
}
},
{
- "id": 24728,
+ "id": 25197,
"properties": {
"facing": "east",
"powered": "true",
@@ -118248,7 +118332,7 @@
}
},
{
- "id": 24729,
+ "id": 25198,
"properties": {
"facing": "east",
"powered": "true",
@@ -118256,7 +118340,7 @@
}
},
{
- "id": 24730,
+ "id": 25199,
"properties": {
"facing": "east",
"powered": "false",
@@ -118264,7 +118348,7 @@
}
},
{
- "id": 24731,
+ "id": 25200,
"properties": {
"facing": "east",
"powered": "false",
@@ -118272,7 +118356,7 @@
}
},
{
- "id": 24732,
+ "id": 25201,
"properties": {
"facing": "south",
"powered": "true",
@@ -118280,7 +118364,7 @@
}
},
{
- "id": 24733,
+ "id": 25202,
"properties": {
"facing": "south",
"powered": "true",
@@ -118288,7 +118372,7 @@
}
},
{
- "id": 24734,
+ "id": 25203,
"properties": {
"facing": "south",
"powered": "false",
@@ -118296,7 +118380,7 @@
}
},
{
- "id": 24735,
+ "id": 25204,
"properties": {
"facing": "south",
"powered": "false",
@@ -118304,7 +118388,7 @@
}
},
{
- "id": 24736,
+ "id": 25205,
"properties": {
"facing": "west",
"powered": "true",
@@ -118312,7 +118396,7 @@
}
},
{
- "id": 24737,
+ "id": 25206,
"properties": {
"facing": "west",
"powered": "true",
@@ -118320,7 +118404,7 @@
}
},
{
- "id": 24738,
+ "id": 25207,
"properties": {
"facing": "west",
"powered": "false",
@@ -118328,7 +118412,7 @@
}
},
{
- "id": 24739,
+ "id": 25208,
"properties": {
"facing": "west",
"powered": "false",
@@ -118336,7 +118420,7 @@
}
},
{
- "id": 24740,
+ "id": 25209,
"properties": {
"facing": "up",
"powered": "true",
@@ -118344,7 +118428,7 @@
}
},
{
- "id": 24741,
+ "id": 25210,
"properties": {
"facing": "up",
"powered": "true",
@@ -118352,7 +118436,7 @@
}
},
{
- "id": 24742,
+ "id": 25211,
"properties": {
"facing": "up",
"powered": "false",
@@ -118361,7 +118445,7 @@
},
{
"default": true,
- "id": 24743,
+ "id": 25212,
"properties": {
"facing": "up",
"powered": "false",
@@ -118369,7 +118453,7 @@
}
},
{
- "id": 24744,
+ "id": 25213,
"properties": {
"facing": "down",
"powered": "true",
@@ -118377,7 +118461,7 @@
}
},
{
- "id": 24745,
+ "id": 25214,
"properties": {
"facing": "down",
"powered": "true",
@@ -118385,7 +118469,7 @@
}
},
{
- "id": 24746,
+ "id": 25215,
"properties": {
"facing": "down",
"powered": "false",
@@ -118393,7 +118477,7 @@
}
},
{
- "id": 24747,
+ "id": 25216,
"properties": {
"facing": "down",
"powered": "false",
@@ -118415,14 +118499,14 @@
},
"states": [
{
- "id": 10749,
+ "id": 11084,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 10750,
+ "id": 11085,
"properties": {
"half": "lower"
}
@@ -118443,7 +118527,7 @@
"states": [
{
"default": true,
- "id": 2088
+ "id": 2131
}
]
},
@@ -118455,7 +118539,7 @@
"states": [
{
"default": true,
- "id": 7271
+ "id": 7501
}
]
},
@@ -118488,97 +118572,97 @@
"states": [
{
"default": true,
- "id": 10839,
+ "id": 11174,
"properties": {
"rotation": "0"
}
},
{
- "id": 10840,
+ "id": 11175,
"properties": {
"rotation": "1"
}
},
{
- "id": 10841,
+ "id": 11176,
"properties": {
"rotation": "2"
}
},
{
- "id": 10842,
+ "id": 11177,
"properties": {
"rotation": "3"
}
},
{
- "id": 10843,
+ "id": 11178,
"properties": {
"rotation": "4"
}
},
{
- "id": 10844,
+ "id": 11179,
"properties": {
"rotation": "5"
}
},
{
- "id": 10845,
+ "id": 11180,
"properties": {
"rotation": "6"
}
},
{
- "id": 10846,
+ "id": 11181,
"properties": {
"rotation": "7"
}
},
{
- "id": 10847,
+ "id": 11182,
"properties": {
"rotation": "8"
}
},
{
- "id": 10848,
+ "id": 11183,
"properties": {
"rotation": "9"
}
},
{
- "id": 10849,
+ "id": 11184,
"properties": {
"rotation": "10"
}
},
{
- "id": 10850,
+ "id": 11185,
"properties": {
"rotation": "11"
}
},
{
- "id": 10851,
+ "id": 11186,
"properties": {
"rotation": "12"
}
},
{
- "id": 10852,
+ "id": 11187,
"properties": {
"rotation": "13"
}
},
{
- "id": 10853,
+ "id": 11188,
"properties": {
"rotation": "14"
}
},
{
- "id": 10854,
+ "id": 11189,
"properties": {
"rotation": "15"
}
@@ -118609,7 +118693,7 @@
},
"states": [
{
- "id": 1768,
+ "id": 1811,
"properties": {
"facing": "north",
"occupied": "true",
@@ -118617,7 +118701,7 @@
}
},
{
- "id": 1769,
+ "id": 1812,
"properties": {
"facing": "north",
"occupied": "true",
@@ -118625,7 +118709,7 @@
}
},
{
- "id": 1770,
+ "id": 1813,
"properties": {
"facing": "north",
"occupied": "false",
@@ -118634,7 +118718,7 @@
},
{
"default": true,
- "id": 1771,
+ "id": 1814,
"properties": {
"facing": "north",
"occupied": "false",
@@ -118642,7 +118726,7 @@
}
},
{
- "id": 1772,
+ "id": 1815,
"properties": {
"facing": "south",
"occupied": "true",
@@ -118650,7 +118734,7 @@
}
},
{
- "id": 1773,
+ "id": 1816,
"properties": {
"facing": "south",
"occupied": "true",
@@ -118658,7 +118742,7 @@
}
},
{
- "id": 1774,
+ "id": 1817,
"properties": {
"facing": "south",
"occupied": "false",
@@ -118666,7 +118750,7 @@
}
},
{
- "id": 1775,
+ "id": 1818,
"properties": {
"facing": "south",
"occupied": "false",
@@ -118674,7 +118758,7 @@
}
},
{
- "id": 1776,
+ "id": 1819,
"properties": {
"facing": "west",
"occupied": "true",
@@ -118682,7 +118766,7 @@
}
},
{
- "id": 1777,
+ "id": 1820,
"properties": {
"facing": "west",
"occupied": "true",
@@ -118690,7 +118774,7 @@
}
},
{
- "id": 1778,
+ "id": 1821,
"properties": {
"facing": "west",
"occupied": "false",
@@ -118698,7 +118782,7 @@
}
},
{
- "id": 1779,
+ "id": 1822,
"properties": {
"facing": "west",
"occupied": "false",
@@ -118706,7 +118790,7 @@
}
},
{
- "id": 1780,
+ "id": 1823,
"properties": {
"facing": "east",
"occupied": "true",
@@ -118714,7 +118798,7 @@
}
},
{
- "id": 1781,
+ "id": 1824,
"properties": {
"facing": "east",
"occupied": "true",
@@ -118722,7 +118806,7 @@
}
},
{
- "id": 1782,
+ "id": 1825,
"properties": {
"facing": "east",
"occupied": "false",
@@ -118730,7 +118814,7 @@
}
},
{
- "id": 1783,
+ "id": 1826,
"properties": {
"facing": "east",
"occupied": "false",
@@ -118762,7 +118846,7 @@
},
"states": [
{
- "id": 20821,
+ "id": 21290,
"properties": {
"candles": "1",
"lit": "true",
@@ -118770,7 +118854,7 @@
}
},
{
- "id": 20822,
+ "id": 21291,
"properties": {
"candles": "1",
"lit": "true",
@@ -118778,7 +118862,7 @@
}
},
{
- "id": 20823,
+ "id": 21292,
"properties": {
"candles": "1",
"lit": "false",
@@ -118787,7 +118871,7 @@
},
{
"default": true,
- "id": 20824,
+ "id": 21293,
"properties": {
"candles": "1",
"lit": "false",
@@ -118795,7 +118879,7 @@
}
},
{
- "id": 20825,
+ "id": 21294,
"properties": {
"candles": "2",
"lit": "true",
@@ -118803,7 +118887,7 @@
}
},
{
- "id": 20826,
+ "id": 21295,
"properties": {
"candles": "2",
"lit": "true",
@@ -118811,7 +118895,7 @@
}
},
{
- "id": 20827,
+ "id": 21296,
"properties": {
"candles": "2",
"lit": "false",
@@ -118819,7 +118903,7 @@
}
},
{
- "id": 20828,
+ "id": 21297,
"properties": {
"candles": "2",
"lit": "false",
@@ -118827,7 +118911,7 @@
}
},
{
- "id": 20829,
+ "id": 21298,
"properties": {
"candles": "3",
"lit": "true",
@@ -118835,7 +118919,7 @@
}
},
{
- "id": 20830,
+ "id": 21299,
"properties": {
"candles": "3",
"lit": "true",
@@ -118843,7 +118927,7 @@
}
},
{
- "id": 20831,
+ "id": 21300,
"properties": {
"candles": "3",
"lit": "false",
@@ -118851,7 +118935,7 @@
}
},
{
- "id": 20832,
+ "id": 21301,
"properties": {
"candles": "3",
"lit": "false",
@@ -118859,7 +118943,7 @@
}
},
{
- "id": 20833,
+ "id": 21302,
"properties": {
"candles": "4",
"lit": "true",
@@ -118867,7 +118951,7 @@
}
},
{
- "id": 20834,
+ "id": 21303,
"properties": {
"candles": "4",
"lit": "true",
@@ -118875,7 +118959,7 @@
}
},
{
- "id": 20835,
+ "id": 21304,
"properties": {
"candles": "4",
"lit": "false",
@@ -118883,7 +118967,7 @@
}
},
{
- "id": 20836,
+ "id": 21305,
"properties": {
"candles": "4",
"lit": "false",
@@ -118906,14 +118990,14 @@
},
"states": [
{
- "id": 21009,
+ "id": 21478,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 21010,
+ "id": 21479,
"properties": {
"lit": "false"
}
@@ -118929,7 +119013,7 @@
"states": [
{
"default": true,
- "id": 10733
+ "id": 11068
}
]
},
@@ -118941,7 +119025,7 @@
"states": [
{
"default": true,
- "id": 12733
+ "id": 13202
}
]
},
@@ -118954,7 +119038,7 @@
"states": [
{
"default": true,
- "id": 12749
+ "id": 13218
}
]
},
@@ -118974,25 +119058,25 @@
"states": [
{
"default": true,
- "id": 12684,
+ "id": 13153,
"properties": {
"facing": "north"
}
},
{
- "id": 12685,
+ "id": 13154,
"properties": {
"facing": "south"
}
},
{
- "id": 12686,
+ "id": 13155,
"properties": {
"facing": "west"
}
},
{
- "id": 12687,
+ "id": 13156,
"properties": {
"facing": "east"
}
@@ -119017,38 +119101,38 @@
},
"states": [
{
- "id": 12598,
+ "id": 13067,
"properties": {
"facing": "north"
}
},
{
- "id": 12599,
+ "id": 13068,
"properties": {
"facing": "east"
}
},
{
- "id": 12600,
+ "id": 13069,
"properties": {
"facing": "south"
}
},
{
- "id": 12601,
+ "id": 13070,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12602,
+ "id": 13071,
"properties": {
"facing": "up"
}
},
{
- "id": 12603,
+ "id": 13072,
"properties": {
"facing": "down"
}
@@ -119064,7 +119148,7 @@
"states": [
{
"default": true,
- "id": 5950
+ "id": 6116
}
]
},
@@ -119098,7 +119182,7 @@
},
"states": [
{
- "id": 9532,
+ "id": 9787,
"properties": {
"east": "true",
"north": "true",
@@ -119108,7 +119192,7 @@
}
},
{
- "id": 9533,
+ "id": 9788,
"properties": {
"east": "true",
"north": "true",
@@ -119118,7 +119202,7 @@
}
},
{
- "id": 9534,
+ "id": 9789,
"properties": {
"east": "true",
"north": "true",
@@ -119128,7 +119212,7 @@
}
},
{
- "id": 9535,
+ "id": 9790,
"properties": {
"east": "true",
"north": "true",
@@ -119138,7 +119222,7 @@
}
},
{
- "id": 9536,
+ "id": 9791,
"properties": {
"east": "true",
"north": "true",
@@ -119148,7 +119232,7 @@
}
},
{
- "id": 9537,
+ "id": 9792,
"properties": {
"east": "true",
"north": "true",
@@ -119158,7 +119242,7 @@
}
},
{
- "id": 9538,
+ "id": 9793,
"properties": {
"east": "true",
"north": "true",
@@ -119168,7 +119252,7 @@
}
},
{
- "id": 9539,
+ "id": 9794,
"properties": {
"east": "true",
"north": "true",
@@ -119178,7 +119262,7 @@
}
},
{
- "id": 9540,
+ "id": 9795,
"properties": {
"east": "true",
"north": "false",
@@ -119188,7 +119272,7 @@
}
},
{
- "id": 9541,
+ "id": 9796,
"properties": {
"east": "true",
"north": "false",
@@ -119198,7 +119282,7 @@
}
},
{
- "id": 9542,
+ "id": 9797,
"properties": {
"east": "true",
"north": "false",
@@ -119208,7 +119292,7 @@
}
},
{
- "id": 9543,
+ "id": 9798,
"properties": {
"east": "true",
"north": "false",
@@ -119218,7 +119302,7 @@
}
},
{
- "id": 9544,
+ "id": 9799,
"properties": {
"east": "true",
"north": "false",
@@ -119228,7 +119312,7 @@
}
},
{
- "id": 9545,
+ "id": 9800,
"properties": {
"east": "true",
"north": "false",
@@ -119238,7 +119322,7 @@
}
},
{
- "id": 9546,
+ "id": 9801,
"properties": {
"east": "true",
"north": "false",
@@ -119248,7 +119332,7 @@
}
},
{
- "id": 9547,
+ "id": 9802,
"properties": {
"east": "true",
"north": "false",
@@ -119258,7 +119342,7 @@
}
},
{
- "id": 9548,
+ "id": 9803,
"properties": {
"east": "false",
"north": "true",
@@ -119268,7 +119352,7 @@
}
},
{
- "id": 9549,
+ "id": 9804,
"properties": {
"east": "false",
"north": "true",
@@ -119278,7 +119362,7 @@
}
},
{
- "id": 9550,
+ "id": 9805,
"properties": {
"east": "false",
"north": "true",
@@ -119288,7 +119372,7 @@
}
},
{
- "id": 9551,
+ "id": 9806,
"properties": {
"east": "false",
"north": "true",
@@ -119298,7 +119382,7 @@
}
},
{
- "id": 9552,
+ "id": 9807,
"properties": {
"east": "false",
"north": "true",
@@ -119308,7 +119392,7 @@
}
},
{
- "id": 9553,
+ "id": 9808,
"properties": {
"east": "false",
"north": "true",
@@ -119318,7 +119402,7 @@
}
},
{
- "id": 9554,
+ "id": 9809,
"properties": {
"east": "false",
"north": "true",
@@ -119328,7 +119412,7 @@
}
},
{
- "id": 9555,
+ "id": 9810,
"properties": {
"east": "false",
"north": "true",
@@ -119338,7 +119422,7 @@
}
},
{
- "id": 9556,
+ "id": 9811,
"properties": {
"east": "false",
"north": "false",
@@ -119348,7 +119432,7 @@
}
},
{
- "id": 9557,
+ "id": 9812,
"properties": {
"east": "false",
"north": "false",
@@ -119358,7 +119442,7 @@
}
},
{
- "id": 9558,
+ "id": 9813,
"properties": {
"east": "false",
"north": "false",
@@ -119368,7 +119452,7 @@
}
},
{
- "id": 9559,
+ "id": 9814,
"properties": {
"east": "false",
"north": "false",
@@ -119378,7 +119462,7 @@
}
},
{
- "id": 9560,
+ "id": 9815,
"properties": {
"east": "false",
"north": "false",
@@ -119388,7 +119472,7 @@
}
},
{
- "id": 9561,
+ "id": 9816,
"properties": {
"east": "false",
"north": "false",
@@ -119398,7 +119482,7 @@
}
},
{
- "id": 9562,
+ "id": 9817,
"properties": {
"east": "false",
"north": "false",
@@ -119409,7 +119493,7 @@
},
{
"default": true,
- "id": 9563,
+ "id": 9818,
"properties": {
"east": "false",
"north": "false",
@@ -119428,7 +119512,7 @@
"states": [
{
"default": true,
- "id": 9361
+ "id": 9616
}
]
},
@@ -119449,25 +119533,25 @@
"states": [
{
"default": true,
- "id": 11035,
+ "id": 11370,
"properties": {
"facing": "north"
}
},
{
- "id": 11036,
+ "id": 11371,
"properties": {
"facing": "south"
}
},
{
- "id": 11037,
+ "id": 11372,
"properties": {
"facing": "west"
}
},
{
- "id": 11038,
+ "id": 11373,
"properties": {
"facing": "east"
}
@@ -119482,7 +119566,7 @@
"states": [
{
"default": true,
- "id": 2052
+ "id": 2095
}
]
},
@@ -119494,7 +119578,7 @@
"states": [
{
"default": true,
- "id": 19459
+ "id": 19928
}
]
},
@@ -119514,25 +119598,25 @@
"states": [
{
"default": true,
- "id": 18404,
+ "id": 18873,
"properties": {
"facing": "north"
}
},
{
- "id": 18405,
+ "id": 18874,
"properties": {
"facing": "south"
}
},
{
- "id": 18406,
+ "id": 18875,
"properties": {
"facing": "west"
}
},
{
- "id": 18407,
+ "id": 18876,
"properties": {
"facing": "east"
}
@@ -119568,97 +119652,97 @@
"states": [
{
"default": true,
- "id": 10791,
+ "id": 11126,
"properties": {
"rotation": "0"
}
},
{
- "id": 10792,
+ "id": 11127,
"properties": {
"rotation": "1"
}
},
{
- "id": 10793,
+ "id": 11128,
"properties": {
"rotation": "2"
}
},
{
- "id": 10794,
+ "id": 11129,
"properties": {
"rotation": "3"
}
},
{
- "id": 10795,
+ "id": 11130,
"properties": {
"rotation": "4"
}
},
{
- "id": 10796,
+ "id": 11131,
"properties": {
"rotation": "5"
}
},
{
- "id": 10797,
+ "id": 11132,
"properties": {
"rotation": "6"
}
},
{
- "id": 10798,
+ "id": 11133,
"properties": {
"rotation": "7"
}
},
{
- "id": 10799,
+ "id": 11134,
"properties": {
"rotation": "8"
}
},
{
- "id": 10800,
+ "id": 11135,
"properties": {
"rotation": "9"
}
},
{
- "id": 10801,
+ "id": 11136,
"properties": {
"rotation": "10"
}
},
{
- "id": 10802,
+ "id": 11137,
"properties": {
"rotation": "11"
}
},
{
- "id": 10803,
+ "id": 11138,
"properties": {
"rotation": "12"
}
},
{
- "id": 10804,
+ "id": 11139,
"properties": {
"rotation": "13"
}
},
{
- "id": 10805,
+ "id": 11140,
"properties": {
"rotation": "14"
}
},
{
- "id": 10806,
+ "id": 11141,
"properties": {
"rotation": "15"
}
@@ -119689,7 +119773,7 @@
},
"states": [
{
- "id": 1720,
+ "id": 1763,
"properties": {
"facing": "north",
"occupied": "true",
@@ -119697,7 +119781,7 @@
}
},
{
- "id": 1721,
+ "id": 1764,
"properties": {
"facing": "north",
"occupied": "true",
@@ -119705,7 +119789,7 @@
}
},
{
- "id": 1722,
+ "id": 1765,
"properties": {
"facing": "north",
"occupied": "false",
@@ -119714,7 +119798,7 @@
},
{
"default": true,
- "id": 1723,
+ "id": 1766,
"properties": {
"facing": "north",
"occupied": "false",
@@ -119722,7 +119806,7 @@
}
},
{
- "id": 1724,
+ "id": 1767,
"properties": {
"facing": "south",
"occupied": "true",
@@ -119730,7 +119814,7 @@
}
},
{
- "id": 1725,
+ "id": 1768,
"properties": {
"facing": "south",
"occupied": "true",
@@ -119738,7 +119822,7 @@
}
},
{
- "id": 1726,
+ "id": 1769,
"properties": {
"facing": "south",
"occupied": "false",
@@ -119746,7 +119830,7 @@
}
},
{
- "id": 1727,
+ "id": 1770,
"properties": {
"facing": "south",
"occupied": "false",
@@ -119754,7 +119838,7 @@
}
},
{
- "id": 1728,
+ "id": 1771,
"properties": {
"facing": "west",
"occupied": "true",
@@ -119762,7 +119846,7 @@
}
},
{
- "id": 1729,
+ "id": 1772,
"properties": {
"facing": "west",
"occupied": "true",
@@ -119770,7 +119854,7 @@
}
},
{
- "id": 1730,
+ "id": 1773,
"properties": {
"facing": "west",
"occupied": "false",
@@ -119778,7 +119862,7 @@
}
},
{
- "id": 1731,
+ "id": 1774,
"properties": {
"facing": "west",
"occupied": "false",
@@ -119786,7 +119870,7 @@
}
},
{
- "id": 1732,
+ "id": 1775,
"properties": {
"facing": "east",
"occupied": "true",
@@ -119794,7 +119878,7 @@
}
},
{
- "id": 1733,
+ "id": 1776,
"properties": {
"facing": "east",
"occupied": "true",
@@ -119802,7 +119886,7 @@
}
},
{
- "id": 1734,
+ "id": 1777,
"properties": {
"facing": "east",
"occupied": "false",
@@ -119810,7 +119894,7 @@
}
},
{
- "id": 1735,
+ "id": 1778,
"properties": {
"facing": "east",
"occupied": "false",
@@ -119842,7 +119926,7 @@
},
"states": [
{
- "id": 20773,
+ "id": 21242,
"properties": {
"candles": "1",
"lit": "true",
@@ -119850,7 +119934,7 @@
}
},
{
- "id": 20774,
+ "id": 21243,
"properties": {
"candles": "1",
"lit": "true",
@@ -119858,7 +119942,7 @@
}
},
{
- "id": 20775,
+ "id": 21244,
"properties": {
"candles": "1",
"lit": "false",
@@ -119867,7 +119951,7 @@
},
{
"default": true,
- "id": 20776,
+ "id": 21245,
"properties": {
"candles": "1",
"lit": "false",
@@ -119875,7 +119959,7 @@
}
},
{
- "id": 20777,
+ "id": 21246,
"properties": {
"candles": "2",
"lit": "true",
@@ -119883,7 +119967,7 @@
}
},
{
- "id": 20778,
+ "id": 21247,
"properties": {
"candles": "2",
"lit": "true",
@@ -119891,7 +119975,7 @@
}
},
{
- "id": 20779,
+ "id": 21248,
"properties": {
"candles": "2",
"lit": "false",
@@ -119899,7 +119983,7 @@
}
},
{
- "id": 20780,
+ "id": 21249,
"properties": {
"candles": "2",
"lit": "false",
@@ -119907,7 +119991,7 @@
}
},
{
- "id": 20781,
+ "id": 21250,
"properties": {
"candles": "3",
"lit": "true",
@@ -119915,7 +119999,7 @@
}
},
{
- "id": 20782,
+ "id": 21251,
"properties": {
"candles": "3",
"lit": "true",
@@ -119923,7 +120007,7 @@
}
},
{
- "id": 20783,
+ "id": 21252,
"properties": {
"candles": "3",
"lit": "false",
@@ -119931,7 +120015,7 @@
}
},
{
- "id": 20784,
+ "id": 21253,
"properties": {
"candles": "3",
"lit": "false",
@@ -119939,7 +120023,7 @@
}
},
{
- "id": 20785,
+ "id": 21254,
"properties": {
"candles": "4",
"lit": "true",
@@ -119947,7 +120031,7 @@
}
},
{
- "id": 20786,
+ "id": 21255,
"properties": {
"candles": "4",
"lit": "true",
@@ -119955,7 +120039,7 @@
}
},
{
- "id": 20787,
+ "id": 21256,
"properties": {
"candles": "4",
"lit": "false",
@@ -119963,7 +120047,7 @@
}
},
{
- "id": 20788,
+ "id": 21257,
"properties": {
"candles": "4",
"lit": "false",
@@ -119986,14 +120070,14 @@
},
"states": [
{
- "id": 21003,
+ "id": 21472,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 21004,
+ "id": 21473,
"properties": {
"lit": "false"
}
@@ -120009,7 +120093,7 @@
"states": [
{
"default": true,
- "id": 10730
+ "id": 11065
}
]
},
@@ -120021,7 +120105,7 @@
"states": [
{
"default": true,
- "id": 12730
+ "id": 13199
}
]
},
@@ -120034,7 +120118,7 @@
"states": [
{
"default": true,
- "id": 12746
+ "id": 13215
}
]
},
@@ -120054,25 +120138,25 @@
"states": [
{
"default": true,
- "id": 12672,
+ "id": 13141,
"properties": {
"facing": "north"
}
},
{
- "id": 12673,
+ "id": 13142,
"properties": {
"facing": "south"
}
},
{
- "id": 12674,
+ "id": 13143,
"properties": {
"facing": "west"
}
},
{
- "id": 12675,
+ "id": 13144,
"properties": {
"facing": "east"
}
@@ -120097,38 +120181,38 @@
},
"states": [
{
- "id": 12580,
+ "id": 13049,
"properties": {
"facing": "north"
}
},
{
- "id": 12581,
+ "id": 13050,
"properties": {
"facing": "east"
}
},
{
- "id": 12582,
+ "id": 13051,
"properties": {
"facing": "south"
}
},
{
- "id": 12583,
+ "id": 13052,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12584,
+ "id": 13053,
"properties": {
"facing": "up"
}
},
{
- "id": 12585,
+ "id": 13054,
"properties": {
"facing": "down"
}
@@ -120144,7 +120228,7 @@
"states": [
{
"default": true,
- "id": 5947
+ "id": 6113
}
]
},
@@ -120178,7 +120262,7 @@
},
"states": [
{
- "id": 9436,
+ "id": 9691,
"properties": {
"east": "true",
"north": "true",
@@ -120188,7 +120272,7 @@
}
},
{
- "id": 9437,
+ "id": 9692,
"properties": {
"east": "true",
"north": "true",
@@ -120198,7 +120282,7 @@
}
},
{
- "id": 9438,
+ "id": 9693,
"properties": {
"east": "true",
"north": "true",
@@ -120208,7 +120292,7 @@
}
},
{
- "id": 9439,
+ "id": 9694,
"properties": {
"east": "true",
"north": "true",
@@ -120218,7 +120302,7 @@
}
},
{
- "id": 9440,
+ "id": 9695,
"properties": {
"east": "true",
"north": "true",
@@ -120228,7 +120312,7 @@
}
},
{
- "id": 9441,
+ "id": 9696,
"properties": {
"east": "true",
"north": "true",
@@ -120238,7 +120322,7 @@
}
},
{
- "id": 9442,
+ "id": 9697,
"properties": {
"east": "true",
"north": "true",
@@ -120248,7 +120332,7 @@
}
},
{
- "id": 9443,
+ "id": 9698,
"properties": {
"east": "true",
"north": "true",
@@ -120258,7 +120342,7 @@
}
},
{
- "id": 9444,
+ "id": 9699,
"properties": {
"east": "true",
"north": "false",
@@ -120268,7 +120352,7 @@
}
},
{
- "id": 9445,
+ "id": 9700,
"properties": {
"east": "true",
"north": "false",
@@ -120278,7 +120362,7 @@
}
},
{
- "id": 9446,
+ "id": 9701,
"properties": {
"east": "true",
"north": "false",
@@ -120288,7 +120372,7 @@
}
},
{
- "id": 9447,
+ "id": 9702,
"properties": {
"east": "true",
"north": "false",
@@ -120298,7 +120382,7 @@
}
},
{
- "id": 9448,
+ "id": 9703,
"properties": {
"east": "true",
"north": "false",
@@ -120308,7 +120392,7 @@
}
},
{
- "id": 9449,
+ "id": 9704,
"properties": {
"east": "true",
"north": "false",
@@ -120318,7 +120402,7 @@
}
},
{
- "id": 9450,
+ "id": 9705,
"properties": {
"east": "true",
"north": "false",
@@ -120328,7 +120412,7 @@
}
},
{
- "id": 9451,
+ "id": 9706,
"properties": {
"east": "true",
"north": "false",
@@ -120338,7 +120422,7 @@
}
},
{
- "id": 9452,
+ "id": 9707,
"properties": {
"east": "false",
"north": "true",
@@ -120348,7 +120432,7 @@
}
},
{
- "id": 9453,
+ "id": 9708,
"properties": {
"east": "false",
"north": "true",
@@ -120358,7 +120442,7 @@
}
},
{
- "id": 9454,
+ "id": 9709,
"properties": {
"east": "false",
"north": "true",
@@ -120368,7 +120452,7 @@
}
},
{
- "id": 9455,
+ "id": 9710,
"properties": {
"east": "false",
"north": "true",
@@ -120378,7 +120462,7 @@
}
},
{
- "id": 9456,
+ "id": 9711,
"properties": {
"east": "false",
"north": "true",
@@ -120388,7 +120472,7 @@
}
},
{
- "id": 9457,
+ "id": 9712,
"properties": {
"east": "false",
"north": "true",
@@ -120398,7 +120482,7 @@
}
},
{
- "id": 9458,
+ "id": 9713,
"properties": {
"east": "false",
"north": "true",
@@ -120408,7 +120492,7 @@
}
},
{
- "id": 9459,
+ "id": 9714,
"properties": {
"east": "false",
"north": "true",
@@ -120418,7 +120502,7 @@
}
},
{
- "id": 9460,
+ "id": 9715,
"properties": {
"east": "false",
"north": "false",
@@ -120428,7 +120512,7 @@
}
},
{
- "id": 9461,
+ "id": 9716,
"properties": {
"east": "false",
"north": "false",
@@ -120438,7 +120522,7 @@
}
},
{
- "id": 9462,
+ "id": 9717,
"properties": {
"east": "false",
"north": "false",
@@ -120448,7 +120532,7 @@
}
},
{
- "id": 9463,
+ "id": 9718,
"properties": {
"east": "false",
"north": "false",
@@ -120458,7 +120542,7 @@
}
},
{
- "id": 9464,
+ "id": 9719,
"properties": {
"east": "false",
"north": "false",
@@ -120468,7 +120552,7 @@
}
},
{
- "id": 9465,
+ "id": 9720,
"properties": {
"east": "false",
"north": "false",
@@ -120478,7 +120562,7 @@
}
},
{
- "id": 9466,
+ "id": 9721,
"properties": {
"east": "false",
"north": "false",
@@ -120489,7 +120573,7 @@
},
{
"default": true,
- "id": 9467,
+ "id": 9722,
"properties": {
"east": "false",
"north": "false",
@@ -120508,7 +120592,7 @@
"states": [
{
"default": true,
- "id": 9358
+ "id": 9613
}
]
},
@@ -120529,25 +120613,25 @@
"states": [
{
"default": true,
- "id": 11023,
+ "id": 11358,
"properties": {
"facing": "north"
}
},
{
- "id": 11024,
+ "id": 11359,
"properties": {
"facing": "south"
}
},
{
- "id": 11025,
+ "id": 11360,
"properties": {
"facing": "west"
}
},
{
- "id": 11026,
+ "id": 11361,
"properties": {
"facing": "east"
}
@@ -120562,7 +120646,7 @@
"states": [
{
"default": true,
- "id": 2049
+ "id": 2092
}
]
},
@@ -120574,7 +120658,7 @@
"states": [
{
"default": true,
- "id": 12543
+ "id": 13012
}
]
},
@@ -120604,7 +120688,7 @@
},
"states": [
{
- "id": 8779,
+ "id": 9034,
"properties": {
"face": "floor",
"facing": "north",
@@ -120612,7 +120696,7 @@
}
},
{
- "id": 8780,
+ "id": 9035,
"properties": {
"face": "floor",
"facing": "north",
@@ -120620,7 +120704,7 @@
}
},
{
- "id": 8781,
+ "id": 9036,
"properties": {
"face": "floor",
"facing": "south",
@@ -120628,7 +120712,7 @@
}
},
{
- "id": 8782,
+ "id": 9037,
"properties": {
"face": "floor",
"facing": "south",
@@ -120636,7 +120720,7 @@
}
},
{
- "id": 8783,
+ "id": 9038,
"properties": {
"face": "floor",
"facing": "west",
@@ -120644,7 +120728,7 @@
}
},
{
- "id": 8784,
+ "id": 9039,
"properties": {
"face": "floor",
"facing": "west",
@@ -120652,7 +120736,7 @@
}
},
{
- "id": 8785,
+ "id": 9040,
"properties": {
"face": "floor",
"facing": "east",
@@ -120660,7 +120744,7 @@
}
},
{
- "id": 8786,
+ "id": 9041,
"properties": {
"face": "floor",
"facing": "east",
@@ -120668,7 +120752,7 @@
}
},
{
- "id": 8787,
+ "id": 9042,
"properties": {
"face": "wall",
"facing": "north",
@@ -120677,7 +120761,7 @@
},
{
"default": true,
- "id": 8788,
+ "id": 9043,
"properties": {
"face": "wall",
"facing": "north",
@@ -120685,7 +120769,7 @@
}
},
{
- "id": 8789,
+ "id": 9044,
"properties": {
"face": "wall",
"facing": "south",
@@ -120693,7 +120777,7 @@
}
},
{
- "id": 8790,
+ "id": 9045,
"properties": {
"face": "wall",
"facing": "south",
@@ -120701,7 +120785,7 @@
}
},
{
- "id": 8791,
+ "id": 9046,
"properties": {
"face": "wall",
"facing": "west",
@@ -120709,7 +120793,7 @@
}
},
{
- "id": 8792,
+ "id": 9047,
"properties": {
"face": "wall",
"facing": "west",
@@ -120717,7 +120801,7 @@
}
},
{
- "id": 8793,
+ "id": 9048,
"properties": {
"face": "wall",
"facing": "east",
@@ -120725,7 +120809,7 @@
}
},
{
- "id": 8794,
+ "id": 9049,
"properties": {
"face": "wall",
"facing": "east",
@@ -120733,7 +120817,7 @@
}
},
{
- "id": 8795,
+ "id": 9050,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -120741,7 +120825,7 @@
}
},
{
- "id": 8796,
+ "id": 9051,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -120749,7 +120833,7 @@
}
},
{
- "id": 8797,
+ "id": 9052,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -120757,7 +120841,7 @@
}
},
{
- "id": 8798,
+ "id": 9053,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -120765,7 +120849,7 @@
}
},
{
- "id": 8799,
+ "id": 9054,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -120773,7 +120857,7 @@
}
},
{
- "id": 8800,
+ "id": 9055,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -120781,7 +120865,7 @@
}
},
{
- "id": 8801,
+ "id": 9056,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -120789,7 +120873,7 @@
}
},
{
- "id": 8802,
+ "id": 9057,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -120830,7 +120914,7 @@
},
"states": [
{
- "id": 12206,
+ "id": 12675,
"properties": {
"facing": "north",
"half": "upper",
@@ -120840,7 +120924,7 @@
}
},
{
- "id": 12207,
+ "id": 12676,
"properties": {
"facing": "north",
"half": "upper",
@@ -120850,7 +120934,7 @@
}
},
{
- "id": 12208,
+ "id": 12677,
"properties": {
"facing": "north",
"half": "upper",
@@ -120860,7 +120944,7 @@
}
},
{
- "id": 12209,
+ "id": 12678,
"properties": {
"facing": "north",
"half": "upper",
@@ -120870,7 +120954,7 @@
}
},
{
- "id": 12210,
+ "id": 12679,
"properties": {
"facing": "north",
"half": "upper",
@@ -120880,7 +120964,7 @@
}
},
{
- "id": 12211,
+ "id": 12680,
"properties": {
"facing": "north",
"half": "upper",
@@ -120890,7 +120974,7 @@
}
},
{
- "id": 12212,
+ "id": 12681,
"properties": {
"facing": "north",
"half": "upper",
@@ -120900,7 +120984,7 @@
}
},
{
- "id": 12213,
+ "id": 12682,
"properties": {
"facing": "north",
"half": "upper",
@@ -120910,7 +120994,7 @@
}
},
{
- "id": 12214,
+ "id": 12683,
"properties": {
"facing": "north",
"half": "lower",
@@ -120920,7 +121004,7 @@
}
},
{
- "id": 12215,
+ "id": 12684,
"properties": {
"facing": "north",
"half": "lower",
@@ -120930,7 +121014,7 @@
}
},
{
- "id": 12216,
+ "id": 12685,
"properties": {
"facing": "north",
"half": "lower",
@@ -120941,7 +121025,7 @@
},
{
"default": true,
- "id": 12217,
+ "id": 12686,
"properties": {
"facing": "north",
"half": "lower",
@@ -120951,7 +121035,7 @@
}
},
{
- "id": 12218,
+ "id": 12687,
"properties": {
"facing": "north",
"half": "lower",
@@ -120961,7 +121045,7 @@
}
},
{
- "id": 12219,
+ "id": 12688,
"properties": {
"facing": "north",
"half": "lower",
@@ -120971,7 +121055,7 @@
}
},
{
- "id": 12220,
+ "id": 12689,
"properties": {
"facing": "north",
"half": "lower",
@@ -120981,7 +121065,7 @@
}
},
{
- "id": 12221,
+ "id": 12690,
"properties": {
"facing": "north",
"half": "lower",
@@ -120991,7 +121075,7 @@
}
},
{
- "id": 12222,
+ "id": 12691,
"properties": {
"facing": "south",
"half": "upper",
@@ -121001,7 +121085,7 @@
}
},
{
- "id": 12223,
+ "id": 12692,
"properties": {
"facing": "south",
"half": "upper",
@@ -121011,7 +121095,7 @@
}
},
{
- "id": 12224,
+ "id": 12693,
"properties": {
"facing": "south",
"half": "upper",
@@ -121021,7 +121105,7 @@
}
},
{
- "id": 12225,
+ "id": 12694,
"properties": {
"facing": "south",
"half": "upper",
@@ -121031,7 +121115,7 @@
}
},
{
- "id": 12226,
+ "id": 12695,
"properties": {
"facing": "south",
"half": "upper",
@@ -121041,7 +121125,7 @@
}
},
{
- "id": 12227,
+ "id": 12696,
"properties": {
"facing": "south",
"half": "upper",
@@ -121051,7 +121135,7 @@
}
},
{
- "id": 12228,
+ "id": 12697,
"properties": {
"facing": "south",
"half": "upper",
@@ -121061,7 +121145,7 @@
}
},
{
- "id": 12229,
+ "id": 12698,
"properties": {
"facing": "south",
"half": "upper",
@@ -121071,7 +121155,7 @@
}
},
{
- "id": 12230,
+ "id": 12699,
"properties": {
"facing": "south",
"half": "lower",
@@ -121081,7 +121165,7 @@
}
},
{
- "id": 12231,
+ "id": 12700,
"properties": {
"facing": "south",
"half": "lower",
@@ -121091,7 +121175,7 @@
}
},
{
- "id": 12232,
+ "id": 12701,
"properties": {
"facing": "south",
"half": "lower",
@@ -121101,7 +121185,7 @@
}
},
{
- "id": 12233,
+ "id": 12702,
"properties": {
"facing": "south",
"half": "lower",
@@ -121111,7 +121195,7 @@
}
},
{
- "id": 12234,
+ "id": 12703,
"properties": {
"facing": "south",
"half": "lower",
@@ -121121,7 +121205,7 @@
}
},
{
- "id": 12235,
+ "id": 12704,
"properties": {
"facing": "south",
"half": "lower",
@@ -121131,7 +121215,7 @@
}
},
{
- "id": 12236,
+ "id": 12705,
"properties": {
"facing": "south",
"half": "lower",
@@ -121141,7 +121225,7 @@
}
},
{
- "id": 12237,
+ "id": 12706,
"properties": {
"facing": "south",
"half": "lower",
@@ -121151,7 +121235,7 @@
}
},
{
- "id": 12238,
+ "id": 12707,
"properties": {
"facing": "west",
"half": "upper",
@@ -121161,7 +121245,7 @@
}
},
{
- "id": 12239,
+ "id": 12708,
"properties": {
"facing": "west",
"half": "upper",
@@ -121171,7 +121255,7 @@
}
},
{
- "id": 12240,
+ "id": 12709,
"properties": {
"facing": "west",
"half": "upper",
@@ -121181,7 +121265,7 @@
}
},
{
- "id": 12241,
+ "id": 12710,
"properties": {
"facing": "west",
"half": "upper",
@@ -121191,7 +121275,7 @@
}
},
{
- "id": 12242,
+ "id": 12711,
"properties": {
"facing": "west",
"half": "upper",
@@ -121201,7 +121285,7 @@
}
},
{
- "id": 12243,
+ "id": 12712,
"properties": {
"facing": "west",
"half": "upper",
@@ -121211,7 +121295,7 @@
}
},
{
- "id": 12244,
+ "id": 12713,
"properties": {
"facing": "west",
"half": "upper",
@@ -121221,7 +121305,7 @@
}
},
{
- "id": 12245,
+ "id": 12714,
"properties": {
"facing": "west",
"half": "upper",
@@ -121231,7 +121315,7 @@
}
},
{
- "id": 12246,
+ "id": 12715,
"properties": {
"facing": "west",
"half": "lower",
@@ -121241,7 +121325,7 @@
}
},
{
- "id": 12247,
+ "id": 12716,
"properties": {
"facing": "west",
"half": "lower",
@@ -121251,7 +121335,7 @@
}
},
{
- "id": 12248,
+ "id": 12717,
"properties": {
"facing": "west",
"half": "lower",
@@ -121261,7 +121345,7 @@
}
},
{
- "id": 12249,
+ "id": 12718,
"properties": {
"facing": "west",
"half": "lower",
@@ -121271,7 +121355,7 @@
}
},
{
- "id": 12250,
+ "id": 12719,
"properties": {
"facing": "west",
"half": "lower",
@@ -121281,7 +121365,7 @@
}
},
{
- "id": 12251,
+ "id": 12720,
"properties": {
"facing": "west",
"half": "lower",
@@ -121291,7 +121375,7 @@
}
},
{
- "id": 12252,
+ "id": 12721,
"properties": {
"facing": "west",
"half": "lower",
@@ -121301,7 +121385,7 @@
}
},
{
- "id": 12253,
+ "id": 12722,
"properties": {
"facing": "west",
"half": "lower",
@@ -121311,7 +121395,7 @@
}
},
{
- "id": 12254,
+ "id": 12723,
"properties": {
"facing": "east",
"half": "upper",
@@ -121321,7 +121405,7 @@
}
},
{
- "id": 12255,
+ "id": 12724,
"properties": {
"facing": "east",
"half": "upper",
@@ -121331,7 +121415,7 @@
}
},
{
- "id": 12256,
+ "id": 12725,
"properties": {
"facing": "east",
"half": "upper",
@@ -121341,7 +121425,7 @@
}
},
{
- "id": 12257,
+ "id": 12726,
"properties": {
"facing": "east",
"half": "upper",
@@ -121351,7 +121435,7 @@
}
},
{
- "id": 12258,
+ "id": 12727,
"properties": {
"facing": "east",
"half": "upper",
@@ -121361,7 +121445,7 @@
}
},
{
- "id": 12259,
+ "id": 12728,
"properties": {
"facing": "east",
"half": "upper",
@@ -121371,7 +121455,7 @@
}
},
{
- "id": 12260,
+ "id": 12729,
"properties": {
"facing": "east",
"half": "upper",
@@ -121381,7 +121465,7 @@
}
},
{
- "id": 12261,
+ "id": 12730,
"properties": {
"facing": "east",
"half": "upper",
@@ -121391,7 +121475,7 @@
}
},
{
- "id": 12262,
+ "id": 12731,
"properties": {
"facing": "east",
"half": "lower",
@@ -121401,7 +121485,7 @@
}
},
{
- "id": 12263,
+ "id": 12732,
"properties": {
"facing": "east",
"half": "lower",
@@ -121411,7 +121495,7 @@
}
},
{
- "id": 12264,
+ "id": 12733,
"properties": {
"facing": "east",
"half": "lower",
@@ -121421,7 +121505,7 @@
}
},
{
- "id": 12265,
+ "id": 12734,
"properties": {
"facing": "east",
"half": "lower",
@@ -121431,7 +121515,7 @@
}
},
{
- "id": 12266,
+ "id": 12735,
"properties": {
"facing": "east",
"half": "lower",
@@ -121441,7 +121525,7 @@
}
},
{
- "id": 12267,
+ "id": 12736,
"properties": {
"facing": "east",
"half": "lower",
@@ -121451,7 +121535,7 @@
}
},
{
- "id": 12268,
+ "id": 12737,
"properties": {
"facing": "east",
"half": "lower",
@@ -121461,7 +121545,7 @@
}
},
{
- "id": 12269,
+ "id": 12738,
"properties": {
"facing": "east",
"half": "lower",
@@ -121501,7 +121585,7 @@
},
"states": [
{
- "id": 11758,
+ "id": 12163,
"properties": {
"east": "true",
"north": "true",
@@ -121511,7 +121595,7 @@
}
},
{
- "id": 11759,
+ "id": 12164,
"properties": {
"east": "true",
"north": "true",
@@ -121521,7 +121605,7 @@
}
},
{
- "id": 11760,
+ "id": 12165,
"properties": {
"east": "true",
"north": "true",
@@ -121531,7 +121615,7 @@
}
},
{
- "id": 11761,
+ "id": 12166,
"properties": {
"east": "true",
"north": "true",
@@ -121541,7 +121625,7 @@
}
},
{
- "id": 11762,
+ "id": 12167,
"properties": {
"east": "true",
"north": "true",
@@ -121551,7 +121635,7 @@
}
},
{
- "id": 11763,
+ "id": 12168,
"properties": {
"east": "true",
"north": "true",
@@ -121561,7 +121645,7 @@
}
},
{
- "id": 11764,
+ "id": 12169,
"properties": {
"east": "true",
"north": "true",
@@ -121571,7 +121655,7 @@
}
},
{
- "id": 11765,
+ "id": 12170,
"properties": {
"east": "true",
"north": "true",
@@ -121581,7 +121665,7 @@
}
},
{
- "id": 11766,
+ "id": 12171,
"properties": {
"east": "true",
"north": "false",
@@ -121591,7 +121675,7 @@
}
},
{
- "id": 11767,
+ "id": 12172,
"properties": {
"east": "true",
"north": "false",
@@ -121601,7 +121685,7 @@
}
},
{
- "id": 11768,
+ "id": 12173,
"properties": {
"east": "true",
"north": "false",
@@ -121611,7 +121695,7 @@
}
},
{
- "id": 11769,
+ "id": 12174,
"properties": {
"east": "true",
"north": "false",
@@ -121621,7 +121705,7 @@
}
},
{
- "id": 11770,
+ "id": 12175,
"properties": {
"east": "true",
"north": "false",
@@ -121631,7 +121715,7 @@
}
},
{
- "id": 11771,
+ "id": 12176,
"properties": {
"east": "true",
"north": "false",
@@ -121641,7 +121725,7 @@
}
},
{
- "id": 11772,
+ "id": 12177,
"properties": {
"east": "true",
"north": "false",
@@ -121651,7 +121735,7 @@
}
},
{
- "id": 11773,
+ "id": 12178,
"properties": {
"east": "true",
"north": "false",
@@ -121661,7 +121745,7 @@
}
},
{
- "id": 11774,
+ "id": 12179,
"properties": {
"east": "false",
"north": "true",
@@ -121671,7 +121755,7 @@
}
},
{
- "id": 11775,
+ "id": 12180,
"properties": {
"east": "false",
"north": "true",
@@ -121681,7 +121765,7 @@
}
},
{
- "id": 11776,
+ "id": 12181,
"properties": {
"east": "false",
"north": "true",
@@ -121691,7 +121775,7 @@
}
},
{
- "id": 11777,
+ "id": 12182,
"properties": {
"east": "false",
"north": "true",
@@ -121701,7 +121785,7 @@
}
},
{
- "id": 11778,
+ "id": 12183,
"properties": {
"east": "false",
"north": "true",
@@ -121711,7 +121795,7 @@
}
},
{
- "id": 11779,
+ "id": 12184,
"properties": {
"east": "false",
"north": "true",
@@ -121721,7 +121805,7 @@
}
},
{
- "id": 11780,
+ "id": 12185,
"properties": {
"east": "false",
"north": "true",
@@ -121731,7 +121815,7 @@
}
},
{
- "id": 11781,
+ "id": 12186,
"properties": {
"east": "false",
"north": "true",
@@ -121741,7 +121825,7 @@
}
},
{
- "id": 11782,
+ "id": 12187,
"properties": {
"east": "false",
"north": "false",
@@ -121751,7 +121835,7 @@
}
},
{
- "id": 11783,
+ "id": 12188,
"properties": {
"east": "false",
"north": "false",
@@ -121761,7 +121845,7 @@
}
},
{
- "id": 11784,
+ "id": 12189,
"properties": {
"east": "false",
"north": "false",
@@ -121771,7 +121855,7 @@
}
},
{
- "id": 11785,
+ "id": 12190,
"properties": {
"east": "false",
"north": "false",
@@ -121781,7 +121865,7 @@
}
},
{
- "id": 11786,
+ "id": 12191,
"properties": {
"east": "false",
"north": "false",
@@ -121791,7 +121875,7 @@
}
},
{
- "id": 11787,
+ "id": 12192,
"properties": {
"east": "false",
"north": "false",
@@ -121801,7 +121885,7 @@
}
},
{
- "id": 11788,
+ "id": 12193,
"properties": {
"east": "false",
"north": "false",
@@ -121812,7 +121896,7 @@
},
{
"default": true,
- "id": 11789,
+ "id": 12194,
"properties": {
"east": "false",
"north": "false",
@@ -121851,7 +121935,7 @@
},
"states": [
{
- "id": 11502,
+ "id": 11875,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -121860,7 +121944,7 @@
}
},
{
- "id": 11503,
+ "id": 11876,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -121869,7 +121953,7 @@
}
},
{
- "id": 11504,
+ "id": 11877,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -121878,7 +121962,7 @@
}
},
{
- "id": 11505,
+ "id": 11878,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -121887,7 +121971,7 @@
}
},
{
- "id": 11506,
+ "id": 11879,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -121896,7 +121980,7 @@
}
},
{
- "id": 11507,
+ "id": 11880,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -121905,7 +121989,7 @@
}
},
{
- "id": 11508,
+ "id": 11881,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -121915,7 +121999,7 @@
},
{
"default": true,
- "id": 11509,
+ "id": 11882,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -121924,7 +122008,7 @@
}
},
{
- "id": 11510,
+ "id": 11883,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -121933,7 +122017,7 @@
}
},
{
- "id": 11511,
+ "id": 11884,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -121942,7 +122026,7 @@
}
},
{
- "id": 11512,
+ "id": 11885,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -121951,7 +122035,7 @@
}
},
{
- "id": 11513,
+ "id": 11886,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -121960,7 +122044,7 @@
}
},
{
- "id": 11514,
+ "id": 11887,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -121969,7 +122053,7 @@
}
},
{
- "id": 11515,
+ "id": 11888,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -121978,7 +122062,7 @@
}
},
{
- "id": 11516,
+ "id": 11889,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -121987,7 +122071,7 @@
}
},
{
- "id": 11517,
+ "id": 11890,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -121996,7 +122080,7 @@
}
},
{
- "id": 11518,
+ "id": 11891,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -122005,7 +122089,7 @@
}
},
{
- "id": 11519,
+ "id": 11892,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -122014,7 +122098,7 @@
}
},
{
- "id": 11520,
+ "id": 11893,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -122023,7 +122107,7 @@
}
},
{
- "id": 11521,
+ "id": 11894,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -122032,7 +122116,7 @@
}
},
{
- "id": 11522,
+ "id": 11895,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -122041,7 +122125,7 @@
}
},
{
- "id": 11523,
+ "id": 11896,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -122050,7 +122134,7 @@
}
},
{
- "id": 11524,
+ "id": 11897,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -122059,7 +122143,7 @@
}
},
{
- "id": 11525,
+ "id": 11898,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -122068,7 +122152,7 @@
}
},
{
- "id": 11526,
+ "id": 11899,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -122077,7 +122161,7 @@
}
},
{
- "id": 11527,
+ "id": 11900,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -122086,7 +122170,7 @@
}
},
{
- "id": 11528,
+ "id": 11901,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -122095,7 +122179,7 @@
}
},
{
- "id": 11529,
+ "id": 11902,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -122104,7 +122188,7 @@
}
},
{
- "id": 11530,
+ "id": 11903,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -122113,7 +122197,7 @@
}
},
{
- "id": 11531,
+ "id": 11904,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -122122,7 +122206,7 @@
}
},
{
- "id": 11532,
+ "id": 11905,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -122131,7 +122215,7 @@
}
},
{
- "id": 11533,
+ "id": 11906,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -122177,7 +122261,7 @@
},
"states": [
{
- "id": 5410,
+ "id": 5566,
"properties": {
"attached": "true",
"rotation": "0",
@@ -122185,7 +122269,7 @@
}
},
{
- "id": 5411,
+ "id": 5567,
"properties": {
"attached": "true",
"rotation": "0",
@@ -122193,7 +122277,7 @@
}
},
{
- "id": 5412,
+ "id": 5568,
"properties": {
"attached": "true",
"rotation": "1",
@@ -122201,7 +122285,7 @@
}
},
{
- "id": 5413,
+ "id": 5569,
"properties": {
"attached": "true",
"rotation": "1",
@@ -122209,7 +122293,7 @@
}
},
{
- "id": 5414,
+ "id": 5570,
"properties": {
"attached": "true",
"rotation": "2",
@@ -122217,7 +122301,7 @@
}
},
{
- "id": 5415,
+ "id": 5571,
"properties": {
"attached": "true",
"rotation": "2",
@@ -122225,7 +122309,7 @@
}
},
{
- "id": 5416,
+ "id": 5572,
"properties": {
"attached": "true",
"rotation": "3",
@@ -122233,7 +122317,7 @@
}
},
{
- "id": 5417,
+ "id": 5573,
"properties": {
"attached": "true",
"rotation": "3",
@@ -122241,7 +122325,7 @@
}
},
{
- "id": 5418,
+ "id": 5574,
"properties": {
"attached": "true",
"rotation": "4",
@@ -122249,7 +122333,7 @@
}
},
{
- "id": 5419,
+ "id": 5575,
"properties": {
"attached": "true",
"rotation": "4",
@@ -122257,7 +122341,7 @@
}
},
{
- "id": 5420,
+ "id": 5576,
"properties": {
"attached": "true",
"rotation": "5",
@@ -122265,7 +122349,7 @@
}
},
{
- "id": 5421,
+ "id": 5577,
"properties": {
"attached": "true",
"rotation": "5",
@@ -122273,7 +122357,7 @@
}
},
{
- "id": 5422,
+ "id": 5578,
"properties": {
"attached": "true",
"rotation": "6",
@@ -122281,7 +122365,7 @@
}
},
{
- "id": 5423,
+ "id": 5579,
"properties": {
"attached": "true",
"rotation": "6",
@@ -122289,7 +122373,7 @@
}
},
{
- "id": 5424,
+ "id": 5580,
"properties": {
"attached": "true",
"rotation": "7",
@@ -122297,7 +122381,7 @@
}
},
{
- "id": 5425,
+ "id": 5581,
"properties": {
"attached": "true",
"rotation": "7",
@@ -122305,7 +122389,7 @@
}
},
{
- "id": 5426,
+ "id": 5582,
"properties": {
"attached": "true",
"rotation": "8",
@@ -122313,7 +122397,7 @@
}
},
{
- "id": 5427,
+ "id": 5583,
"properties": {
"attached": "true",
"rotation": "8",
@@ -122321,7 +122405,7 @@
}
},
{
- "id": 5428,
+ "id": 5584,
"properties": {
"attached": "true",
"rotation": "9",
@@ -122329,7 +122413,7 @@
}
},
{
- "id": 5429,
+ "id": 5585,
"properties": {
"attached": "true",
"rotation": "9",
@@ -122337,7 +122421,7 @@
}
},
{
- "id": 5430,
+ "id": 5586,
"properties": {
"attached": "true",
"rotation": "10",
@@ -122345,7 +122429,7 @@
}
},
{
- "id": 5431,
+ "id": 5587,
"properties": {
"attached": "true",
"rotation": "10",
@@ -122353,7 +122437,7 @@
}
},
{
- "id": 5432,
+ "id": 5588,
"properties": {
"attached": "true",
"rotation": "11",
@@ -122361,7 +122445,7 @@
}
},
{
- "id": 5433,
+ "id": 5589,
"properties": {
"attached": "true",
"rotation": "11",
@@ -122369,7 +122453,7 @@
}
},
{
- "id": 5434,
+ "id": 5590,
"properties": {
"attached": "true",
"rotation": "12",
@@ -122377,7 +122461,7 @@
}
},
{
- "id": 5435,
+ "id": 5591,
"properties": {
"attached": "true",
"rotation": "12",
@@ -122385,7 +122469,7 @@
}
},
{
- "id": 5436,
+ "id": 5592,
"properties": {
"attached": "true",
"rotation": "13",
@@ -122393,7 +122477,7 @@
}
},
{
- "id": 5437,
+ "id": 5593,
"properties": {
"attached": "true",
"rotation": "13",
@@ -122401,7 +122485,7 @@
}
},
{
- "id": 5438,
+ "id": 5594,
"properties": {
"attached": "true",
"rotation": "14",
@@ -122409,7 +122493,7 @@
}
},
{
- "id": 5439,
+ "id": 5595,
"properties": {
"attached": "true",
"rotation": "14",
@@ -122417,7 +122501,7 @@
}
},
{
- "id": 5440,
+ "id": 5596,
"properties": {
"attached": "true",
"rotation": "15",
@@ -122425,7 +122509,7 @@
}
},
{
- "id": 5441,
+ "id": 5597,
"properties": {
"attached": "true",
"rotation": "15",
@@ -122433,7 +122517,7 @@
}
},
{
- "id": 5442,
+ "id": 5598,
"properties": {
"attached": "false",
"rotation": "0",
@@ -122442,7 +122526,7 @@
},
{
"default": true,
- "id": 5443,
+ "id": 5599,
"properties": {
"attached": "false",
"rotation": "0",
@@ -122450,7 +122534,7 @@
}
},
{
- "id": 5444,
+ "id": 5600,
"properties": {
"attached": "false",
"rotation": "1",
@@ -122458,7 +122542,7 @@
}
},
{
- "id": 5445,
+ "id": 5601,
"properties": {
"attached": "false",
"rotation": "1",
@@ -122466,7 +122550,7 @@
}
},
{
- "id": 5446,
+ "id": 5602,
"properties": {
"attached": "false",
"rotation": "2",
@@ -122474,7 +122558,7 @@
}
},
{
- "id": 5447,
+ "id": 5603,
"properties": {
"attached": "false",
"rotation": "2",
@@ -122482,7 +122566,7 @@
}
},
{
- "id": 5448,
+ "id": 5604,
"properties": {
"attached": "false",
"rotation": "3",
@@ -122490,7 +122574,7 @@
}
},
{
- "id": 5449,
+ "id": 5605,
"properties": {
"attached": "false",
"rotation": "3",
@@ -122498,7 +122582,7 @@
}
},
{
- "id": 5450,
+ "id": 5606,
"properties": {
"attached": "false",
"rotation": "4",
@@ -122506,7 +122590,7 @@
}
},
{
- "id": 5451,
+ "id": 5607,
"properties": {
"attached": "false",
"rotation": "4",
@@ -122514,7 +122598,7 @@
}
},
{
- "id": 5452,
+ "id": 5608,
"properties": {
"attached": "false",
"rotation": "5",
@@ -122522,7 +122606,7 @@
}
},
{
- "id": 5453,
+ "id": 5609,
"properties": {
"attached": "false",
"rotation": "5",
@@ -122530,7 +122614,7 @@
}
},
{
- "id": 5454,
+ "id": 5610,
"properties": {
"attached": "false",
"rotation": "6",
@@ -122538,7 +122622,7 @@
}
},
{
- "id": 5455,
+ "id": 5611,
"properties": {
"attached": "false",
"rotation": "6",
@@ -122546,7 +122630,7 @@
}
},
{
- "id": 5456,
+ "id": 5612,
"properties": {
"attached": "false",
"rotation": "7",
@@ -122554,7 +122638,7 @@
}
},
{
- "id": 5457,
+ "id": 5613,
"properties": {
"attached": "false",
"rotation": "7",
@@ -122562,7 +122646,7 @@
}
},
{
- "id": 5458,
+ "id": 5614,
"properties": {
"attached": "false",
"rotation": "8",
@@ -122570,7 +122654,7 @@
}
},
{
- "id": 5459,
+ "id": 5615,
"properties": {
"attached": "false",
"rotation": "8",
@@ -122578,7 +122662,7 @@
}
},
{
- "id": 5460,
+ "id": 5616,
"properties": {
"attached": "false",
"rotation": "9",
@@ -122586,7 +122670,7 @@
}
},
{
- "id": 5461,
+ "id": 5617,
"properties": {
"attached": "false",
"rotation": "9",
@@ -122594,7 +122678,7 @@
}
},
{
- "id": 5462,
+ "id": 5618,
"properties": {
"attached": "false",
"rotation": "10",
@@ -122602,7 +122686,7 @@
}
},
{
- "id": 5463,
+ "id": 5619,
"properties": {
"attached": "false",
"rotation": "10",
@@ -122610,7 +122694,7 @@
}
},
{
- "id": 5464,
+ "id": 5620,
"properties": {
"attached": "false",
"rotation": "11",
@@ -122618,7 +122702,7 @@
}
},
{
- "id": 5465,
+ "id": 5621,
"properties": {
"attached": "false",
"rotation": "11",
@@ -122626,7 +122710,7 @@
}
},
{
- "id": 5466,
+ "id": 5622,
"properties": {
"attached": "false",
"rotation": "12",
@@ -122634,7 +122718,7 @@
}
},
{
- "id": 5467,
+ "id": 5623,
"properties": {
"attached": "false",
"rotation": "12",
@@ -122642,7 +122726,7 @@
}
},
{
- "id": 5468,
+ "id": 5624,
"properties": {
"attached": "false",
"rotation": "13",
@@ -122650,7 +122734,7 @@
}
},
{
- "id": 5469,
+ "id": 5625,
"properties": {
"attached": "false",
"rotation": "13",
@@ -122658,7 +122742,7 @@
}
},
{
- "id": 5470,
+ "id": 5626,
"properties": {
"attached": "false",
"rotation": "14",
@@ -122666,7 +122750,7 @@
}
},
{
- "id": 5471,
+ "id": 5627,
"properties": {
"attached": "false",
"rotation": "14",
@@ -122674,7 +122758,7 @@
}
},
{
- "id": 5472,
+ "id": 5628,
"properties": {
"attached": "false",
"rotation": "15",
@@ -122682,7 +122766,7 @@
}
},
{
- "id": 5473,
+ "id": 5629,
"properties": {
"attached": "false",
"rotation": "15",
@@ -122717,7 +122801,7 @@
},
"states": [
{
- "id": 433,
+ "id": 476,
"properties": {
"distance": "1",
"persistent": "true",
@@ -122725,7 +122809,7 @@
}
},
{
- "id": 434,
+ "id": 477,
"properties": {
"distance": "1",
"persistent": "true",
@@ -122733,7 +122817,7 @@
}
},
{
- "id": 435,
+ "id": 478,
"properties": {
"distance": "1",
"persistent": "false",
@@ -122741,7 +122825,7 @@
}
},
{
- "id": 436,
+ "id": 479,
"properties": {
"distance": "1",
"persistent": "false",
@@ -122749,7 +122833,7 @@
}
},
{
- "id": 437,
+ "id": 480,
"properties": {
"distance": "2",
"persistent": "true",
@@ -122757,7 +122841,7 @@
}
},
{
- "id": 438,
+ "id": 481,
"properties": {
"distance": "2",
"persistent": "true",
@@ -122765,7 +122849,7 @@
}
},
{
- "id": 439,
+ "id": 482,
"properties": {
"distance": "2",
"persistent": "false",
@@ -122773,7 +122857,7 @@
}
},
{
- "id": 440,
+ "id": 483,
"properties": {
"distance": "2",
"persistent": "false",
@@ -122781,7 +122865,7 @@
}
},
{
- "id": 441,
+ "id": 484,
"properties": {
"distance": "3",
"persistent": "true",
@@ -122789,7 +122873,7 @@
}
},
{
- "id": 442,
+ "id": 485,
"properties": {
"distance": "3",
"persistent": "true",
@@ -122797,7 +122881,7 @@
}
},
{
- "id": 443,
+ "id": 486,
"properties": {
"distance": "3",
"persistent": "false",
@@ -122805,7 +122889,7 @@
}
},
{
- "id": 444,
+ "id": 487,
"properties": {
"distance": "3",
"persistent": "false",
@@ -122813,7 +122897,7 @@
}
},
{
- "id": 445,
+ "id": 488,
"properties": {
"distance": "4",
"persistent": "true",
@@ -122821,7 +122905,7 @@
}
},
{
- "id": 446,
+ "id": 489,
"properties": {
"distance": "4",
"persistent": "true",
@@ -122829,7 +122913,7 @@
}
},
{
- "id": 447,
+ "id": 490,
"properties": {
"distance": "4",
"persistent": "false",
@@ -122837,7 +122921,7 @@
}
},
{
- "id": 448,
+ "id": 491,
"properties": {
"distance": "4",
"persistent": "false",
@@ -122845,7 +122929,7 @@
}
},
{
- "id": 449,
+ "id": 492,
"properties": {
"distance": "5",
"persistent": "true",
@@ -122853,7 +122937,7 @@
}
},
{
- "id": 450,
+ "id": 493,
"properties": {
"distance": "5",
"persistent": "true",
@@ -122861,7 +122945,7 @@
}
},
{
- "id": 451,
+ "id": 494,
"properties": {
"distance": "5",
"persistent": "false",
@@ -122869,7 +122953,7 @@
}
},
{
- "id": 452,
+ "id": 495,
"properties": {
"distance": "5",
"persistent": "false",
@@ -122877,7 +122961,7 @@
}
},
{
- "id": 453,
+ "id": 496,
"properties": {
"distance": "6",
"persistent": "true",
@@ -122885,7 +122969,7 @@
}
},
{
- "id": 454,
+ "id": 497,
"properties": {
"distance": "6",
"persistent": "true",
@@ -122893,7 +122977,7 @@
}
},
{
- "id": 455,
+ "id": 498,
"properties": {
"distance": "6",
"persistent": "false",
@@ -122901,7 +122985,7 @@
}
},
{
- "id": 456,
+ "id": 499,
"properties": {
"distance": "6",
"persistent": "false",
@@ -122909,7 +122993,7 @@
}
},
{
- "id": 457,
+ "id": 500,
"properties": {
"distance": "7",
"persistent": "true",
@@ -122917,7 +123001,7 @@
}
},
{
- "id": 458,
+ "id": 501,
"properties": {
"distance": "7",
"persistent": "true",
@@ -122925,7 +123009,7 @@
}
},
{
- "id": 459,
+ "id": 502,
"properties": {
"distance": "7",
"persistent": "false",
@@ -122934,7 +123018,7 @@
},
{
"default": true,
- "id": 460,
+ "id": 503,
"properties": {
"distance": "7",
"persistent": "false",
@@ -122957,20 +123041,20 @@
},
"states": [
{
- "id": 151,
+ "id": 160,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 152,
+ "id": 161,
"properties": {
"axis": "y"
}
},
{
- "id": 153,
+ "id": 162,
"properties": {
"axis": "z"
}
@@ -122985,7 +123069,7 @@
"states": [
{
"default": true,
- "id": 22
+ "id": 26
}
]
},
@@ -123003,14 +123087,14 @@
},
"states": [
{
- "id": 5730,
+ "id": 5896,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5731,
+ "id": 5897,
"properties": {
"powered": "false"
}
@@ -123046,7 +123130,7 @@
},
"states": [
{
- "id": 39,
+ "id": 45,
"properties": {
"age": "0",
"hanging": "true",
@@ -123055,7 +123139,7 @@
}
},
{
- "id": 40,
+ "id": 46,
"properties": {
"age": "0",
"hanging": "true",
@@ -123064,7 +123148,7 @@
}
},
{
- "id": 41,
+ "id": 47,
"properties": {
"age": "0",
"hanging": "true",
@@ -123073,7 +123157,7 @@
}
},
{
- "id": 42,
+ "id": 48,
"properties": {
"age": "0",
"hanging": "true",
@@ -123082,7 +123166,7 @@
}
},
{
- "id": 43,
+ "id": 49,
"properties": {
"age": "0",
"hanging": "false",
@@ -123092,88 +123176,88 @@
},
{
"default": true,
- "id": 44,
- "properties": {
- "age": "0",
- "hanging": "false",
- "stage": "0",
- "waterlogged": "false"
- }
- },
- {
- "id": 45,
- "properties": {
- "age": "0",
- "hanging": "false",
- "stage": "1",
- "waterlogged": "true"
- }
- },
- {
- "id": 46,
- "properties": {
- "age": "0",
- "hanging": "false",
- "stage": "1",
- "waterlogged": "false"
- }
- },
- {
- "id": 47,
- "properties": {
- "age": "1",
- "hanging": "true",
- "stage": "0",
- "waterlogged": "true"
- }
- },
- {
- "id": 48,
- "properties": {
- "age": "1",
- "hanging": "true",
- "stage": "0",
- "waterlogged": "false"
- }
- },
- {
- "id": 49,
- "properties": {
- "age": "1",
- "hanging": "true",
- "stage": "1",
- "waterlogged": "true"
- }
- },
- {
"id": 50,
"properties": {
- "age": "1",
- "hanging": "true",
- "stage": "1",
+ "age": "0",
+ "hanging": "false",
+ "stage": "0",
"waterlogged": "false"
}
},
{
"id": 51,
"properties": {
- "age": "1",
+ "age": "0",
"hanging": "false",
- "stage": "0",
+ "stage": "1",
"waterlogged": "true"
}
},
{
"id": 52,
"properties": {
- "age": "1",
+ "age": "0",
"hanging": "false",
- "stage": "0",
+ "stage": "1",
"waterlogged": "false"
}
},
{
"id": 53,
+ "properties": {
+ "age": "1",
+ "hanging": "true",
+ "stage": "0",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 54,
+ "properties": {
+ "age": "1",
+ "hanging": "true",
+ "stage": "0",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 55,
+ "properties": {
+ "age": "1",
+ "hanging": "true",
+ "stage": "1",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 56,
+ "properties": {
+ "age": "1",
+ "hanging": "true",
+ "stage": "1",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 57,
+ "properties": {
+ "age": "1",
+ "hanging": "false",
+ "stage": "0",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 58,
+ "properties": {
+ "age": "1",
+ "hanging": "false",
+ "stage": "0",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 59,
"properties": {
"age": "1",
"hanging": "false",
@@ -123182,7 +123266,7 @@
}
},
{
- "id": 54,
+ "id": 60,
"properties": {
"age": "1",
"hanging": "false",
@@ -123190,66 +123274,12 @@
"waterlogged": "false"
}
},
- {
- "id": 55,
- "properties": {
- "age": "2",
- "hanging": "true",
- "stage": "0",
- "waterlogged": "true"
- }
- },
- {
- "id": 56,
- "properties": {
- "age": "2",
- "hanging": "true",
- "stage": "0",
- "waterlogged": "false"
- }
- },
- {
- "id": 57,
- "properties": {
- "age": "2",
- "hanging": "true",
- "stage": "1",
- "waterlogged": "true"
- }
- },
- {
- "id": 58,
- "properties": {
- "age": "2",
- "hanging": "true",
- "stage": "1",
- "waterlogged": "false"
- }
- },
- {
- "id": 59,
- "properties": {
- "age": "2",
- "hanging": "false",
- "stage": "0",
- "waterlogged": "true"
- }
- },
- {
- "id": 60,
- "properties": {
- "age": "2",
- "hanging": "false",
- "stage": "0",
- "waterlogged": "false"
- }
- },
{
"id": 61,
"properties": {
"age": "2",
- "hanging": "false",
- "stage": "1",
+ "hanging": "true",
+ "stage": "0",
"waterlogged": "true"
}
},
@@ -123257,67 +123287,121 @@
"id": 62,
"properties": {
"age": "2",
- "hanging": "false",
- "stage": "1",
+ "hanging": "true",
+ "stage": "0",
"waterlogged": "false"
}
},
{
"id": 63,
"properties": {
- "age": "3",
+ "age": "2",
"hanging": "true",
- "stage": "0",
+ "stage": "1",
"waterlogged": "true"
}
},
{
"id": 64,
"properties": {
- "age": "3",
+ "age": "2",
"hanging": "true",
- "stage": "0",
+ "stage": "1",
"waterlogged": "false"
}
},
{
"id": 65,
"properties": {
- "age": "3",
- "hanging": "true",
- "stage": "1",
+ "age": "2",
+ "hanging": "false",
+ "stage": "0",
"waterlogged": "true"
}
},
{
"id": 66,
"properties": {
- "age": "3",
- "hanging": "true",
- "stage": "1",
+ "age": "2",
+ "hanging": "false",
+ "stage": "0",
"waterlogged": "false"
}
},
{
"id": 67,
"properties": {
- "age": "3",
+ "age": "2",
"hanging": "false",
- "stage": "0",
+ "stage": "1",
"waterlogged": "true"
}
},
{
"id": 68,
"properties": {
- "age": "3",
+ "age": "2",
"hanging": "false",
- "stage": "0",
+ "stage": "1",
"waterlogged": "false"
}
},
{
"id": 69,
+ "properties": {
+ "age": "3",
+ "hanging": "true",
+ "stage": "0",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 70,
+ "properties": {
+ "age": "3",
+ "hanging": "true",
+ "stage": "0",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 71,
+ "properties": {
+ "age": "3",
+ "hanging": "true",
+ "stage": "1",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 72,
+ "properties": {
+ "age": "3",
+ "hanging": "true",
+ "stage": "1",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 73,
+ "properties": {
+ "age": "3",
+ "hanging": "false",
+ "stage": "0",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 74,
+ "properties": {
+ "age": "3",
+ "hanging": "false",
+ "stage": "0",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 75,
"properties": {
"age": "3",
"hanging": "false",
@@ -123326,7 +123410,7 @@
}
},
{
- "id": 70,
+ "id": 76,
"properties": {
"age": "3",
"hanging": "false",
@@ -123334,71 +123418,71 @@
"waterlogged": "false"
}
},
- {
- "id": 71,
- "properties": {
- "age": "4",
- "hanging": "true",
- "stage": "0",
- "waterlogged": "true"
- }
- },
- {
- "id": 72,
- "properties": {
- "age": "4",
- "hanging": "true",
- "stage": "0",
- "waterlogged": "false"
- }
- },
- {
- "id": 73,
- "properties": {
- "age": "4",
- "hanging": "true",
- "stage": "1",
- "waterlogged": "true"
- }
- },
- {
- "id": 74,
- "properties": {
- "age": "4",
- "hanging": "true",
- "stage": "1",
- "waterlogged": "false"
- }
- },
- {
- "id": 75,
- "properties": {
- "age": "4",
- "hanging": "false",
- "stage": "0",
- "waterlogged": "true"
- }
- },
- {
- "id": 76,
- "properties": {
- "age": "4",
- "hanging": "false",
- "stage": "0",
- "waterlogged": "false"
- }
- },
{
"id": 77,
"properties": {
"age": "4",
- "hanging": "false",
- "stage": "1",
+ "hanging": "true",
+ "stage": "0",
"waterlogged": "true"
}
},
{
"id": 78,
+ "properties": {
+ "age": "4",
+ "hanging": "true",
+ "stage": "0",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 79,
+ "properties": {
+ "age": "4",
+ "hanging": "true",
+ "stage": "1",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 80,
+ "properties": {
+ "age": "4",
+ "hanging": "true",
+ "stage": "1",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 81,
+ "properties": {
+ "age": "4",
+ "hanging": "false",
+ "stage": "0",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 82,
+ "properties": {
+ "age": "4",
+ "hanging": "false",
+ "stage": "0",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 83,
+ "properties": {
+ "age": "4",
+ "hanging": "false",
+ "stage": "1",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 84,
"properties": {
"age": "4",
"hanging": "false",
@@ -123421,14 +123505,14 @@
},
"states": [
{
- "id": 154,
+ "id": 163,
"properties": {
"waterlogged": "true"
}
},
{
"default": true,
- "id": 155,
+ "id": 164,
"properties": {
"waterlogged": "false"
}
@@ -123467,7 +123551,7 @@
},
"states": [
{
- "id": 4526,
+ "id": 4610,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -123475,217 +123559,217 @@
},
{
"default": true,
- "id": 4527,
+ "id": 4611,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 4528,
+ "id": 4612,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 4529,
+ "id": 4613,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 4530,
+ "id": 4614,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 4531,
+ "id": 4615,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 4532,
+ "id": 4616,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 4533,
+ "id": 4617,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 4534,
+ "id": 4618,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 4535,
+ "id": 4619,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 4536,
+ "id": 4620,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 4537,
+ "id": 4621,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 4538,
+ "id": 4622,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 4539,
+ "id": 4623,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 4540,
+ "id": 4624,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 4541,
+ "id": 4625,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 4542,
+ "id": 4626,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 4543,
+ "id": 4627,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 4544,
+ "id": 4628,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 4545,
+ "id": 4629,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 4546,
+ "id": 4630,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 4547,
+ "id": 4631,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 4548,
+ "id": 4632,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 4549,
+ "id": 4633,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 4550,
+ "id": 4634,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 4551,
+ "id": 4635,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 4552,
+ "id": 4636,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 4553,
+ "id": 4637,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 4554,
+ "id": 4638,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 4555,
+ "id": 4639,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 4556,
+ "id": 4640,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 4557,
+ "id": 4641,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -123711,21 +123795,21 @@
},
"states": [
{
- "id": 11204,
+ "id": 11545,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11205,
+ "id": 11546,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11206,
+ "id": 11547,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -123733,21 +123817,21 @@
},
{
"default": true,
- "id": 11207,
+ "id": 11548,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11208,
+ "id": 11549,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11209,
+ "id": 11550,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -123788,7 +123872,7 @@
},
"states": [
{
- "id": 10124,
+ "id": 10459,
"properties": {
"facing": "north",
"half": "top",
@@ -123797,7 +123881,7 @@
}
},
{
- "id": 10125,
+ "id": 10460,
"properties": {
"facing": "north",
"half": "top",
@@ -123806,7 +123890,7 @@
}
},
{
- "id": 10126,
+ "id": 10461,
"properties": {
"facing": "north",
"half": "top",
@@ -123815,7 +123899,7 @@
}
},
{
- "id": 10127,
+ "id": 10462,
"properties": {
"facing": "north",
"half": "top",
@@ -123824,7 +123908,7 @@
}
},
{
- "id": 10128,
+ "id": 10463,
"properties": {
"facing": "north",
"half": "top",
@@ -123833,7 +123917,7 @@
}
},
{
- "id": 10129,
+ "id": 10464,
"properties": {
"facing": "north",
"half": "top",
@@ -123842,7 +123926,7 @@
}
},
{
- "id": 10130,
+ "id": 10465,
"properties": {
"facing": "north",
"half": "top",
@@ -123851,7 +123935,7 @@
}
},
{
- "id": 10131,
+ "id": 10466,
"properties": {
"facing": "north",
"half": "top",
@@ -123860,7 +123944,7 @@
}
},
{
- "id": 10132,
+ "id": 10467,
"properties": {
"facing": "north",
"half": "top",
@@ -123869,7 +123953,7 @@
}
},
{
- "id": 10133,
+ "id": 10468,
"properties": {
"facing": "north",
"half": "top",
@@ -123878,7 +123962,7 @@
}
},
{
- "id": 10134,
+ "id": 10469,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123888,7 +123972,7 @@
},
{
"default": true,
- "id": 10135,
+ "id": 10470,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123897,7 +123981,7 @@
}
},
{
- "id": 10136,
+ "id": 10471,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123906,7 +123990,7 @@
}
},
{
- "id": 10137,
+ "id": 10472,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123915,7 +123999,7 @@
}
},
{
- "id": 10138,
+ "id": 10473,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123924,7 +124008,7 @@
}
},
{
- "id": 10139,
+ "id": 10474,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123933,7 +124017,7 @@
}
},
{
- "id": 10140,
+ "id": 10475,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123942,7 +124026,7 @@
}
},
{
- "id": 10141,
+ "id": 10476,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123951,7 +124035,7 @@
}
},
{
- "id": 10142,
+ "id": 10477,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123960,7 +124044,7 @@
}
},
{
- "id": 10143,
+ "id": 10478,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123969,7 +124053,7 @@
}
},
{
- "id": 10144,
+ "id": 10479,
"properties": {
"facing": "south",
"half": "top",
@@ -123978,7 +124062,7 @@
}
},
{
- "id": 10145,
+ "id": 10480,
"properties": {
"facing": "south",
"half": "top",
@@ -123987,7 +124071,7 @@
}
},
{
- "id": 10146,
+ "id": 10481,
"properties": {
"facing": "south",
"half": "top",
@@ -123996,7 +124080,7 @@
}
},
{
- "id": 10147,
+ "id": 10482,
"properties": {
"facing": "south",
"half": "top",
@@ -124005,7 +124089,7 @@
}
},
{
- "id": 10148,
+ "id": 10483,
"properties": {
"facing": "south",
"half": "top",
@@ -124014,7 +124098,7 @@
}
},
{
- "id": 10149,
+ "id": 10484,
"properties": {
"facing": "south",
"half": "top",
@@ -124023,7 +124107,7 @@
}
},
{
- "id": 10150,
+ "id": 10485,
"properties": {
"facing": "south",
"half": "top",
@@ -124032,7 +124116,7 @@
}
},
{
- "id": 10151,
+ "id": 10486,
"properties": {
"facing": "south",
"half": "top",
@@ -124041,7 +124125,7 @@
}
},
{
- "id": 10152,
+ "id": 10487,
"properties": {
"facing": "south",
"half": "top",
@@ -124050,7 +124134,7 @@
}
},
{
- "id": 10153,
+ "id": 10488,
"properties": {
"facing": "south",
"half": "top",
@@ -124059,7 +124143,7 @@
}
},
{
- "id": 10154,
+ "id": 10489,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124068,7 +124152,7 @@
}
},
{
- "id": 10155,
+ "id": 10490,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124077,7 +124161,7 @@
}
},
{
- "id": 10156,
+ "id": 10491,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124086,7 +124170,7 @@
}
},
{
- "id": 10157,
+ "id": 10492,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124095,7 +124179,7 @@
}
},
{
- "id": 10158,
+ "id": 10493,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124104,7 +124188,7 @@
}
},
{
- "id": 10159,
+ "id": 10494,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124113,7 +124197,7 @@
}
},
{
- "id": 10160,
+ "id": 10495,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124122,7 +124206,7 @@
}
},
{
- "id": 10161,
+ "id": 10496,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124131,7 +124215,7 @@
}
},
{
- "id": 10162,
+ "id": 10497,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124140,7 +124224,7 @@
}
},
{
- "id": 10163,
+ "id": 10498,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124149,7 +124233,7 @@
}
},
{
- "id": 10164,
+ "id": 10499,
"properties": {
"facing": "west",
"half": "top",
@@ -124158,7 +124242,7 @@
}
},
{
- "id": 10165,
+ "id": 10500,
"properties": {
"facing": "west",
"half": "top",
@@ -124167,7 +124251,7 @@
}
},
{
- "id": 10166,
+ "id": 10501,
"properties": {
"facing": "west",
"half": "top",
@@ -124176,7 +124260,7 @@
}
},
{
- "id": 10167,
+ "id": 10502,
"properties": {
"facing": "west",
"half": "top",
@@ -124185,7 +124269,7 @@
}
},
{
- "id": 10168,
+ "id": 10503,
"properties": {
"facing": "west",
"half": "top",
@@ -124194,7 +124278,7 @@
}
},
{
- "id": 10169,
+ "id": 10504,
"properties": {
"facing": "west",
"half": "top",
@@ -124203,7 +124287,7 @@
}
},
{
- "id": 10170,
+ "id": 10505,
"properties": {
"facing": "west",
"half": "top",
@@ -124212,7 +124296,7 @@
}
},
{
- "id": 10171,
+ "id": 10506,
"properties": {
"facing": "west",
"half": "top",
@@ -124221,7 +124305,7 @@
}
},
{
- "id": 10172,
+ "id": 10507,
"properties": {
"facing": "west",
"half": "top",
@@ -124230,7 +124314,7 @@
}
},
{
- "id": 10173,
+ "id": 10508,
"properties": {
"facing": "west",
"half": "top",
@@ -124239,7 +124323,7 @@
}
},
{
- "id": 10174,
+ "id": 10509,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124248,7 +124332,7 @@
}
},
{
- "id": 10175,
+ "id": 10510,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124257,7 +124341,7 @@
}
},
{
- "id": 10176,
+ "id": 10511,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124266,7 +124350,7 @@
}
},
{
- "id": 10177,
+ "id": 10512,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124275,7 +124359,7 @@
}
},
{
- "id": 10178,
+ "id": 10513,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124284,7 +124368,7 @@
}
},
{
- "id": 10179,
+ "id": 10514,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124293,7 +124377,7 @@
}
},
{
- "id": 10180,
+ "id": 10515,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124302,7 +124386,7 @@
}
},
{
- "id": 10181,
+ "id": 10516,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124311,7 +124395,7 @@
}
},
{
- "id": 10182,
+ "id": 10517,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124320,7 +124404,7 @@
}
},
{
- "id": 10183,
+ "id": 10518,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124329,7 +124413,7 @@
}
},
{
- "id": 10184,
+ "id": 10519,
"properties": {
"facing": "east",
"half": "top",
@@ -124338,7 +124422,7 @@
}
},
{
- "id": 10185,
+ "id": 10520,
"properties": {
"facing": "east",
"half": "top",
@@ -124347,7 +124431,7 @@
}
},
{
- "id": 10186,
+ "id": 10521,
"properties": {
"facing": "east",
"half": "top",
@@ -124356,7 +124440,7 @@
}
},
{
- "id": 10187,
+ "id": 10522,
"properties": {
"facing": "east",
"half": "top",
@@ -124365,7 +124449,7 @@
}
},
{
- "id": 10188,
+ "id": 10523,
"properties": {
"facing": "east",
"half": "top",
@@ -124374,7 +124458,7 @@
}
},
{
- "id": 10189,
+ "id": 10524,
"properties": {
"facing": "east",
"half": "top",
@@ -124383,7 +124467,7 @@
}
},
{
- "id": 10190,
+ "id": 10525,
"properties": {
"facing": "east",
"half": "top",
@@ -124392,7 +124476,7 @@
}
},
{
- "id": 10191,
+ "id": 10526,
"properties": {
"facing": "east",
"half": "top",
@@ -124401,7 +124485,7 @@
}
},
{
- "id": 10192,
+ "id": 10527,
"properties": {
"facing": "east",
"half": "top",
@@ -124410,7 +124494,7 @@
}
},
{
- "id": 10193,
+ "id": 10528,
"properties": {
"facing": "east",
"half": "top",
@@ -124419,7 +124503,7 @@
}
},
{
- "id": 10194,
+ "id": 10529,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124428,7 +124512,7 @@
}
},
{
- "id": 10195,
+ "id": 10530,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124437,7 +124521,7 @@
}
},
{
- "id": 10196,
+ "id": 10531,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124446,7 +124530,7 @@
}
},
{
- "id": 10197,
+ "id": 10532,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124455,7 +124539,7 @@
}
},
{
- "id": 10198,
+ "id": 10533,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124464,7 +124548,7 @@
}
},
{
- "id": 10199,
+ "id": 10534,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124473,7 +124557,7 @@
}
},
{
- "id": 10200,
+ "id": 10535,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124482,7 +124566,7 @@
}
},
{
- "id": 10201,
+ "id": 10536,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124491,7 +124575,7 @@
}
},
{
- "id": 10202,
+ "id": 10537,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124500,7 +124584,7 @@
}
},
{
- "id": 10203,
+ "id": 10538,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124542,7 +124626,7 @@
},
"states": [
{
- "id": 6409,
+ "id": 6639,
"properties": {
"facing": "north",
"half": "top",
@@ -124552,7 +124636,7 @@
}
},
{
- "id": 6410,
+ "id": 6640,
"properties": {
"facing": "north",
"half": "top",
@@ -124562,7 +124646,7 @@
}
},
{
- "id": 6411,
+ "id": 6641,
"properties": {
"facing": "north",
"half": "top",
@@ -124572,7 +124656,7 @@
}
},
{
- "id": 6412,
+ "id": 6642,
"properties": {
"facing": "north",
"half": "top",
@@ -124582,7 +124666,7 @@
}
},
{
- "id": 6413,
+ "id": 6643,
"properties": {
"facing": "north",
"half": "top",
@@ -124592,7 +124676,7 @@
}
},
{
- "id": 6414,
+ "id": 6644,
"properties": {
"facing": "north",
"half": "top",
@@ -124602,7 +124686,7 @@
}
},
{
- "id": 6415,
+ "id": 6645,
"properties": {
"facing": "north",
"half": "top",
@@ -124612,7 +124696,7 @@
}
},
{
- "id": 6416,
+ "id": 6646,
"properties": {
"facing": "north",
"half": "top",
@@ -124622,7 +124706,7 @@
}
},
{
- "id": 6417,
+ "id": 6647,
"properties": {
"facing": "north",
"half": "bottom",
@@ -124632,7 +124716,7 @@
}
},
{
- "id": 6418,
+ "id": 6648,
"properties": {
"facing": "north",
"half": "bottom",
@@ -124642,7 +124726,7 @@
}
},
{
- "id": 6419,
+ "id": 6649,
"properties": {
"facing": "north",
"half": "bottom",
@@ -124652,7 +124736,7 @@
}
},
{
- "id": 6420,
+ "id": 6650,
"properties": {
"facing": "north",
"half": "bottom",
@@ -124662,7 +124746,7 @@
}
},
{
- "id": 6421,
+ "id": 6651,
"properties": {
"facing": "north",
"half": "bottom",
@@ -124672,7 +124756,7 @@
}
},
{
- "id": 6422,
+ "id": 6652,
"properties": {
"facing": "north",
"half": "bottom",
@@ -124682,7 +124766,7 @@
}
},
{
- "id": 6423,
+ "id": 6653,
"properties": {
"facing": "north",
"half": "bottom",
@@ -124693,7 +124777,7 @@
},
{
"default": true,
- "id": 6424,
+ "id": 6654,
"properties": {
"facing": "north",
"half": "bottom",
@@ -124703,7 +124787,7 @@
}
},
{
- "id": 6425,
+ "id": 6655,
"properties": {
"facing": "south",
"half": "top",
@@ -124713,7 +124797,7 @@
}
},
{
- "id": 6426,
+ "id": 6656,
"properties": {
"facing": "south",
"half": "top",
@@ -124723,7 +124807,7 @@
}
},
{
- "id": 6427,
+ "id": 6657,
"properties": {
"facing": "south",
"half": "top",
@@ -124733,7 +124817,7 @@
}
},
{
- "id": 6428,
+ "id": 6658,
"properties": {
"facing": "south",
"half": "top",
@@ -124743,7 +124827,7 @@
}
},
{
- "id": 6429,
+ "id": 6659,
"properties": {
"facing": "south",
"half": "top",
@@ -124753,7 +124837,7 @@
}
},
{
- "id": 6430,
+ "id": 6660,
"properties": {
"facing": "south",
"half": "top",
@@ -124763,7 +124847,7 @@
}
},
{
- "id": 6431,
+ "id": 6661,
"properties": {
"facing": "south",
"half": "top",
@@ -124773,7 +124857,7 @@
}
},
{
- "id": 6432,
+ "id": 6662,
"properties": {
"facing": "south",
"half": "top",
@@ -124783,7 +124867,7 @@
}
},
{
- "id": 6433,
+ "id": 6663,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124793,7 +124877,7 @@
}
},
{
- "id": 6434,
+ "id": 6664,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124803,7 +124887,7 @@
}
},
{
- "id": 6435,
+ "id": 6665,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124813,7 +124897,7 @@
}
},
{
- "id": 6436,
+ "id": 6666,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124823,7 +124907,7 @@
}
},
{
- "id": 6437,
+ "id": 6667,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124833,7 +124917,7 @@
}
},
{
- "id": 6438,
+ "id": 6668,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124843,7 +124927,7 @@
}
},
{
- "id": 6439,
+ "id": 6669,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124853,7 +124937,7 @@
}
},
{
- "id": 6440,
+ "id": 6670,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124863,7 +124947,7 @@
}
},
{
- "id": 6441,
+ "id": 6671,
"properties": {
"facing": "west",
"half": "top",
@@ -124873,7 +124957,7 @@
}
},
{
- "id": 6442,
+ "id": 6672,
"properties": {
"facing": "west",
"half": "top",
@@ -124883,7 +124967,7 @@
}
},
{
- "id": 6443,
+ "id": 6673,
"properties": {
"facing": "west",
"half": "top",
@@ -124893,7 +124977,7 @@
}
},
{
- "id": 6444,
+ "id": 6674,
"properties": {
"facing": "west",
"half": "top",
@@ -124903,7 +124987,7 @@
}
},
{
- "id": 6445,
+ "id": 6675,
"properties": {
"facing": "west",
"half": "top",
@@ -124913,7 +124997,7 @@
}
},
{
- "id": 6446,
+ "id": 6676,
"properties": {
"facing": "west",
"half": "top",
@@ -124923,7 +125007,7 @@
}
},
{
- "id": 6447,
+ "id": 6677,
"properties": {
"facing": "west",
"half": "top",
@@ -124933,7 +125017,7 @@
}
},
{
- "id": 6448,
+ "id": 6678,
"properties": {
"facing": "west",
"half": "top",
@@ -124943,7 +125027,7 @@
}
},
{
- "id": 6449,
+ "id": 6679,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124953,7 +125037,7 @@
}
},
{
- "id": 6450,
+ "id": 6680,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124963,7 +125047,7 @@
}
},
{
- "id": 6451,
+ "id": 6681,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124973,7 +125057,7 @@
}
},
{
- "id": 6452,
+ "id": 6682,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124983,7 +125067,7 @@
}
},
{
- "id": 6453,
+ "id": 6683,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124993,7 +125077,7 @@
}
},
{
- "id": 6454,
+ "id": 6684,
"properties": {
"facing": "west",
"half": "bottom",
@@ -125003,7 +125087,7 @@
}
},
{
- "id": 6455,
+ "id": 6685,
"properties": {
"facing": "west",
"half": "bottom",
@@ -125013,7 +125097,7 @@
}
},
{
- "id": 6456,
+ "id": 6686,
"properties": {
"facing": "west",
"half": "bottom",
@@ -125023,7 +125107,7 @@
}
},
{
- "id": 6457,
+ "id": 6687,
"properties": {
"facing": "east",
"half": "top",
@@ -125033,7 +125117,7 @@
}
},
{
- "id": 6458,
+ "id": 6688,
"properties": {
"facing": "east",
"half": "top",
@@ -125043,7 +125127,7 @@
}
},
{
- "id": 6459,
+ "id": 6689,
"properties": {
"facing": "east",
"half": "top",
@@ -125053,7 +125137,7 @@
}
},
{
- "id": 6460,
+ "id": 6690,
"properties": {
"facing": "east",
"half": "top",
@@ -125063,7 +125147,7 @@
}
},
{
- "id": 6461,
+ "id": 6691,
"properties": {
"facing": "east",
"half": "top",
@@ -125073,7 +125157,7 @@
}
},
{
- "id": 6462,
+ "id": 6692,
"properties": {
"facing": "east",
"half": "top",
@@ -125083,7 +125167,7 @@
}
},
{
- "id": 6463,
+ "id": 6693,
"properties": {
"facing": "east",
"half": "top",
@@ -125093,7 +125177,7 @@
}
},
{
- "id": 6464,
+ "id": 6694,
"properties": {
"facing": "east",
"half": "top",
@@ -125103,7 +125187,7 @@
}
},
{
- "id": 6465,
+ "id": 6695,
"properties": {
"facing": "east",
"half": "bottom",
@@ -125113,7 +125197,7 @@
}
},
{
- "id": 6466,
+ "id": 6696,
"properties": {
"facing": "east",
"half": "bottom",
@@ -125123,7 +125207,7 @@
}
},
{
- "id": 6467,
+ "id": 6697,
"properties": {
"facing": "east",
"half": "bottom",
@@ -125133,7 +125217,7 @@
}
},
{
- "id": 6468,
+ "id": 6698,
"properties": {
"facing": "east",
"half": "bottom",
@@ -125143,7 +125227,7 @@
}
},
{
- "id": 6469,
+ "id": 6699,
"properties": {
"facing": "east",
"half": "bottom",
@@ -125153,7 +125237,7 @@
}
},
{
- "id": 6470,
+ "id": 6700,
"properties": {
"facing": "east",
"half": "bottom",
@@ -125163,7 +125247,7 @@
}
},
{
- "id": 6471,
+ "id": 6701,
"properties": {
"facing": "east",
"half": "bottom",
@@ -125173,7 +125257,7 @@
}
},
{
- "id": 6472,
+ "id": 6702,
"properties": {
"facing": "east",
"half": "bottom",
@@ -125204,7 +125288,7 @@
},
"states": [
{
- "id": 5594,
+ "id": 5758,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -125212,49 +125296,49 @@
},
{
"default": true,
- "id": 5595,
+ "id": 5759,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5596,
+ "id": 5760,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5597,
+ "id": 5761,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5598,
+ "id": 5762,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5599,
+ "id": 5763,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5600,
+ "id": 5764,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5601,
+ "id": 5765,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -125282,7 +125366,7 @@
},
"states": [
{
- "id": 4818,
+ "id": 4910,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -125290,49 +125374,49 @@
},
{
"default": true,
- "id": 4819,
+ "id": 4911,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4820,
+ "id": 4912,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4821,
+ "id": 4913,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4822,
+ "id": 4914,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4823,
+ "id": 4915,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4824,
+ "id": 4916,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4825,
+ "id": 4917,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -125354,20 +125438,20 @@
},
"states": [
{
- "id": 210,
+ "id": 222,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 211,
+ "id": 223,
"properties": {
"axis": "y"
}
},
{
- "id": 212,
+ "id": 224,
"properties": {
"axis": "z"
}
@@ -125397,63 +125481,63 @@
},
"states": [
{
- "id": 21057,
+ "id": 21526,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 21058,
+ "id": 21527,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 21059,
+ "id": 21528,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 21060,
+ "id": 21529,
"properties": {
"facing": "east",
"waterlogged": "false"
}
},
{
- "id": 21061,
+ "id": 21530,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 21062,
+ "id": 21531,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 21063,
+ "id": 21532,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 21064,
+ "id": 21533,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 21065,
+ "id": 21534,
"properties": {
"facing": "up",
"waterlogged": "true"
@@ -125461,21 +125545,21 @@
},
{
"default": true,
- "id": 21066,
+ "id": 21535,
"properties": {
"facing": "up",
"waterlogged": "false"
}
},
{
- "id": 21067,
+ "id": 21536,
"properties": {
"facing": "down",
"waterlogged": "true"
}
},
{
- "id": 21068,
+ "id": 21537,
"properties": {
"facing": "down",
"waterlogged": "false"
@@ -125491,7 +125575,7 @@
"states": [
{
"default": true,
- "id": 6812
+ "id": 7042
}
]
},
@@ -125518,49 +125602,49 @@
"states": [
{
"default": true,
- "id": 6829,
+ "id": 7059,
"properties": {
"age": "0"
}
},
{
- "id": 6830,
+ "id": 7060,
"properties": {
"age": "1"
}
},
{
- "id": 6831,
+ "id": 7061,
"properties": {
"age": "2"
}
},
{
- "id": 6832,
+ "id": 7062,
"properties": {
"age": "3"
}
},
{
- "id": 6833,
+ "id": 7063,
"properties": {
"age": "4"
}
},
{
- "id": 6834,
+ "id": 7064,
"properties": {
"age": "5"
}
},
{
- "id": 6835,
+ "id": 7065,
"properties": {
"age": "6"
}
},
{
- "id": 6836,
+ "id": 7066,
"properties": {
"age": "7"
}
@@ -125569,13 +125653,14 @@
},
"minecraft:moss_block": {
"definition": {
- "type": "minecraft:moss",
+ "type": "minecraft:bonemealable_feature_placer",
+ "feature": "minecraft:moss_patch_bonemeal",
"properties": {}
},
"states": [
{
"default": true,
- "id": 24843
+ "id": 25312
}
]
},
@@ -125587,7 +125672,7 @@
"states": [
{
"default": true,
- "id": 24826
+ "id": 25295
}
]
},
@@ -125599,7 +125684,7 @@
"states": [
{
"default": true,
- "id": 2353
+ "id": 2396
}
]
},
@@ -125621,21 +125706,21 @@
},
"states": [
{
- "id": 14106,
+ "id": 14575,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 14107,
+ "id": 14576,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 14108,
+ "id": 14577,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -125643,21 +125728,21 @@
},
{
"default": true,
- "id": 14109,
+ "id": 14578,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 14110,
+ "id": 14579,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 14111,
+ "id": 14580,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -125698,7 +125783,7 @@
},
"states": [
{
- "id": 13282,
+ "id": 13751,
"properties": {
"facing": "north",
"half": "top",
@@ -125707,7 +125792,7 @@
}
},
{
- "id": 13283,
+ "id": 13752,
"properties": {
"facing": "north",
"half": "top",
@@ -125716,7 +125801,7 @@
}
},
{
- "id": 13284,
+ "id": 13753,
"properties": {
"facing": "north",
"half": "top",
@@ -125725,7 +125810,7 @@
}
},
{
- "id": 13285,
+ "id": 13754,
"properties": {
"facing": "north",
"half": "top",
@@ -125734,7 +125819,7 @@
}
},
{
- "id": 13286,
+ "id": 13755,
"properties": {
"facing": "north",
"half": "top",
@@ -125743,7 +125828,7 @@
}
},
{
- "id": 13287,
+ "id": 13756,
"properties": {
"facing": "north",
"half": "top",
@@ -125752,7 +125837,7 @@
}
},
{
- "id": 13288,
+ "id": 13757,
"properties": {
"facing": "north",
"half": "top",
@@ -125761,7 +125846,7 @@
}
},
{
- "id": 13289,
+ "id": 13758,
"properties": {
"facing": "north",
"half": "top",
@@ -125770,7 +125855,7 @@
}
},
{
- "id": 13290,
+ "id": 13759,
"properties": {
"facing": "north",
"half": "top",
@@ -125779,7 +125864,7 @@
}
},
{
- "id": 13291,
+ "id": 13760,
"properties": {
"facing": "north",
"half": "top",
@@ -125788,7 +125873,7 @@
}
},
{
- "id": 13292,
+ "id": 13761,
"properties": {
"facing": "north",
"half": "bottom",
@@ -125798,7 +125883,7 @@
},
{
"default": true,
- "id": 13293,
+ "id": 13762,
"properties": {
"facing": "north",
"half": "bottom",
@@ -125807,7 +125892,7 @@
}
},
{
- "id": 13294,
+ "id": 13763,
"properties": {
"facing": "north",
"half": "bottom",
@@ -125816,7 +125901,7 @@
}
},
{
- "id": 13295,
+ "id": 13764,
"properties": {
"facing": "north",
"half": "bottom",
@@ -125825,7 +125910,7 @@
}
},
{
- "id": 13296,
+ "id": 13765,
"properties": {
"facing": "north",
"half": "bottom",
@@ -125834,7 +125919,7 @@
}
},
{
- "id": 13297,
+ "id": 13766,
"properties": {
"facing": "north",
"half": "bottom",
@@ -125843,7 +125928,7 @@
}
},
{
- "id": 13298,
+ "id": 13767,
"properties": {
"facing": "north",
"half": "bottom",
@@ -125852,7 +125937,7 @@
}
},
{
- "id": 13299,
+ "id": 13768,
"properties": {
"facing": "north",
"half": "bottom",
@@ -125861,7 +125946,7 @@
}
},
{
- "id": 13300,
+ "id": 13769,
"properties": {
"facing": "north",
"half": "bottom",
@@ -125870,7 +125955,7 @@
}
},
{
- "id": 13301,
+ "id": 13770,
"properties": {
"facing": "north",
"half": "bottom",
@@ -125879,7 +125964,7 @@
}
},
{
- "id": 13302,
+ "id": 13771,
"properties": {
"facing": "south",
"half": "top",
@@ -125888,7 +125973,7 @@
}
},
{
- "id": 13303,
+ "id": 13772,
"properties": {
"facing": "south",
"half": "top",
@@ -125897,7 +125982,7 @@
}
},
{
- "id": 13304,
+ "id": 13773,
"properties": {
"facing": "south",
"half": "top",
@@ -125906,7 +125991,7 @@
}
},
{
- "id": 13305,
+ "id": 13774,
"properties": {
"facing": "south",
"half": "top",
@@ -125915,7 +126000,7 @@
}
},
{
- "id": 13306,
+ "id": 13775,
"properties": {
"facing": "south",
"half": "top",
@@ -125924,7 +126009,7 @@
}
},
{
- "id": 13307,
+ "id": 13776,
"properties": {
"facing": "south",
"half": "top",
@@ -125933,7 +126018,7 @@
}
},
{
- "id": 13308,
+ "id": 13777,
"properties": {
"facing": "south",
"half": "top",
@@ -125942,7 +126027,7 @@
}
},
{
- "id": 13309,
+ "id": 13778,
"properties": {
"facing": "south",
"half": "top",
@@ -125951,7 +126036,7 @@
}
},
{
- "id": 13310,
+ "id": 13779,
"properties": {
"facing": "south",
"half": "top",
@@ -125960,7 +126045,7 @@
}
},
{
- "id": 13311,
+ "id": 13780,
"properties": {
"facing": "south",
"half": "top",
@@ -125969,7 +126054,7 @@
}
},
{
- "id": 13312,
+ "id": 13781,
"properties": {
"facing": "south",
"half": "bottom",
@@ -125978,7 +126063,7 @@
}
},
{
- "id": 13313,
+ "id": 13782,
"properties": {
"facing": "south",
"half": "bottom",
@@ -125987,7 +126072,7 @@
}
},
{
- "id": 13314,
+ "id": 13783,
"properties": {
"facing": "south",
"half": "bottom",
@@ -125996,7 +126081,7 @@
}
},
{
- "id": 13315,
+ "id": 13784,
"properties": {
"facing": "south",
"half": "bottom",
@@ -126005,7 +126090,7 @@
}
},
{
- "id": 13316,
+ "id": 13785,
"properties": {
"facing": "south",
"half": "bottom",
@@ -126014,7 +126099,7 @@
}
},
{
- "id": 13317,
+ "id": 13786,
"properties": {
"facing": "south",
"half": "bottom",
@@ -126023,7 +126108,7 @@
}
},
{
- "id": 13318,
+ "id": 13787,
"properties": {
"facing": "south",
"half": "bottom",
@@ -126032,7 +126117,7 @@
}
},
{
- "id": 13319,
+ "id": 13788,
"properties": {
"facing": "south",
"half": "bottom",
@@ -126041,7 +126126,7 @@
}
},
{
- "id": 13320,
+ "id": 13789,
"properties": {
"facing": "south",
"half": "bottom",
@@ -126050,7 +126135,7 @@
}
},
{
- "id": 13321,
+ "id": 13790,
"properties": {
"facing": "south",
"half": "bottom",
@@ -126059,7 +126144,7 @@
}
},
{
- "id": 13322,
+ "id": 13791,
"properties": {
"facing": "west",
"half": "top",
@@ -126068,7 +126153,7 @@
}
},
{
- "id": 13323,
+ "id": 13792,
"properties": {
"facing": "west",
"half": "top",
@@ -126077,7 +126162,7 @@
}
},
{
- "id": 13324,
+ "id": 13793,
"properties": {
"facing": "west",
"half": "top",
@@ -126086,7 +126171,7 @@
}
},
{
- "id": 13325,
+ "id": 13794,
"properties": {
"facing": "west",
"half": "top",
@@ -126095,7 +126180,7 @@
}
},
{
- "id": 13326,
+ "id": 13795,
"properties": {
"facing": "west",
"half": "top",
@@ -126104,7 +126189,7 @@
}
},
{
- "id": 13327,
+ "id": 13796,
"properties": {
"facing": "west",
"half": "top",
@@ -126113,7 +126198,7 @@
}
},
{
- "id": 13328,
+ "id": 13797,
"properties": {
"facing": "west",
"half": "top",
@@ -126122,7 +126207,7 @@
}
},
{
- "id": 13329,
+ "id": 13798,
"properties": {
"facing": "west",
"half": "top",
@@ -126131,7 +126216,7 @@
}
},
{
- "id": 13330,
+ "id": 13799,
"properties": {
"facing": "west",
"half": "top",
@@ -126140,7 +126225,7 @@
}
},
{
- "id": 13331,
+ "id": 13800,
"properties": {
"facing": "west",
"half": "top",
@@ -126149,7 +126234,7 @@
}
},
{
- "id": 13332,
+ "id": 13801,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126158,7 +126243,7 @@
}
},
{
- "id": 13333,
+ "id": 13802,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126167,7 +126252,7 @@
}
},
{
- "id": 13334,
+ "id": 13803,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126176,7 +126261,7 @@
}
},
{
- "id": 13335,
+ "id": 13804,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126185,7 +126270,7 @@
}
},
{
- "id": 13336,
+ "id": 13805,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126194,7 +126279,7 @@
}
},
{
- "id": 13337,
+ "id": 13806,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126203,7 +126288,7 @@
}
},
{
- "id": 13338,
+ "id": 13807,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126212,7 +126297,7 @@
}
},
{
- "id": 13339,
+ "id": 13808,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126221,7 +126306,7 @@
}
},
{
- "id": 13340,
+ "id": 13809,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126230,7 +126315,7 @@
}
},
{
- "id": 13341,
+ "id": 13810,
"properties": {
"facing": "west",
"half": "bottom",
@@ -126239,7 +126324,7 @@
}
},
{
- "id": 13342,
+ "id": 13811,
"properties": {
"facing": "east",
"half": "top",
@@ -126248,7 +126333,7 @@
}
},
{
- "id": 13343,
+ "id": 13812,
"properties": {
"facing": "east",
"half": "top",
@@ -126257,7 +126342,7 @@
}
},
{
- "id": 13344,
+ "id": 13813,
"properties": {
"facing": "east",
"half": "top",
@@ -126266,7 +126351,7 @@
}
},
{
- "id": 13345,
+ "id": 13814,
"properties": {
"facing": "east",
"half": "top",
@@ -126275,7 +126360,7 @@
}
},
{
- "id": 13346,
+ "id": 13815,
"properties": {
"facing": "east",
"half": "top",
@@ -126284,7 +126369,7 @@
}
},
{
- "id": 13347,
+ "id": 13816,
"properties": {
"facing": "east",
"half": "top",
@@ -126293,7 +126378,7 @@
}
},
{
- "id": 13348,
+ "id": 13817,
"properties": {
"facing": "east",
"half": "top",
@@ -126302,7 +126387,7 @@
}
},
{
- "id": 13349,
+ "id": 13818,
"properties": {
"facing": "east",
"half": "top",
@@ -126311,7 +126396,7 @@
}
},
{
- "id": 13350,
+ "id": 13819,
"properties": {
"facing": "east",
"half": "top",
@@ -126320,7 +126405,7 @@
}
},
{
- "id": 13351,
+ "id": 13820,
"properties": {
"facing": "east",
"half": "top",
@@ -126329,7 +126414,7 @@
}
},
{
- "id": 13352,
+ "id": 13821,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126338,7 +126423,7 @@
}
},
{
- "id": 13353,
+ "id": 13822,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126347,7 +126432,7 @@
}
},
{
- "id": 13354,
+ "id": 13823,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126356,7 +126441,7 @@
}
},
{
- "id": 13355,
+ "id": 13824,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126365,7 +126450,7 @@
}
},
{
- "id": 13356,
+ "id": 13825,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126374,7 +126459,7 @@
}
},
{
- "id": 13357,
+ "id": 13826,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126383,7 +126468,7 @@
}
},
{
- "id": 13358,
+ "id": 13827,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126392,7 +126477,7 @@
}
},
{
- "id": 13359,
+ "id": 13828,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126401,7 +126486,7 @@
}
},
{
- "id": 13360,
+ "id": 13829,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126410,7 +126495,7 @@
}
},
{
- "id": 13361,
+ "id": 13830,
"properties": {
"facing": "east",
"half": "bottom",
@@ -126457,7 +126542,7 @@
},
"states": [
{
- "id": 8243,
+ "id": 8473,
"properties": {
"east": "none",
"north": "none",
@@ -126468,7 +126553,7 @@
}
},
{
- "id": 8244,
+ "id": 8474,
"properties": {
"east": "none",
"north": "none",
@@ -126479,7 +126564,7 @@
}
},
{
- "id": 8245,
+ "id": 8475,
"properties": {
"east": "none",
"north": "none",
@@ -126491,2735 +126576,2735 @@
},
{
"default": true,
- "id": 8246,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8247,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8248,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8249,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8250,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8251,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8252,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8253,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8254,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8255,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8256,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8257,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8258,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8259,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8260,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8261,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8262,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8263,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8264,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8265,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8266,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8267,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8268,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8269,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8270,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8271,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8272,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8273,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8274,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8275,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8276,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8277,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8278,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8279,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8280,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8281,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8282,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8283,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8284,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8285,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8286,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8287,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8288,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8289,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8290,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8291,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8292,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8293,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8294,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8295,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8296,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8297,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8298,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8299,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8300,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8301,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8302,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8303,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8304,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8305,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8306,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8307,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8308,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8309,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8310,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8311,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8312,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8313,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8314,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8315,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8316,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8317,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8318,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8319,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8320,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8321,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8322,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8323,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8324,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8325,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8326,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8327,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8328,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8329,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8330,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8331,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8332,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8333,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8334,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8335,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8336,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8337,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8338,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8339,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8340,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8341,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8342,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8343,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8344,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8345,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8346,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8347,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8348,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8349,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8350,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8351,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8352,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8353,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8354,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8355,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8356,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8357,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8358,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8359,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8360,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8361,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8362,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8363,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8364,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8365,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8366,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8367,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8368,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8369,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8370,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8371,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8372,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8373,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8374,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8375,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8376,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8377,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8378,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8379,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8380,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8381,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8382,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8383,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8384,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8385,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8386,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8387,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8388,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8389,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8390,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8391,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8392,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8393,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8394,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8395,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8396,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8397,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8398,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8399,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8400,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8401,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8402,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8403,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8404,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8405,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8406,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8407,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8408,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8409,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8410,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8411,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8412,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8413,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8414,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8415,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8416,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8417,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8418,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8419,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8420,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8421,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8422,
- "properties": {
- "east": "low",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8423,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8424,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8425,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8426,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8427,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8428,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8429,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8430,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8431,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8432,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8433,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8434,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8435,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8436,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8437,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8438,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8439,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8440,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8441,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8442,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8443,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8444,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8445,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8446,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8447,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8448,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8449,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8450,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8451,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8452,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8453,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8454,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8455,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8456,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8457,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8458,
- "properties": {
- "east": "low",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8459,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8460,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8461,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8462,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8463,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8464,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8465,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8466,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8467,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8468,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8469,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 8470,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 8471,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 8472,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 8473,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 8474,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 8475,
- "properties": {
- "east": "tall",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
"id": 8476,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "true",
"waterlogged": "false",
- "west": "tall"
+ "west": "none"
}
},
{
"id": 8477,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
}
},
{
"id": 8478,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
}
},
{
"id": 8479,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "false",
"waterlogged": "true",
- "west": "tall"
+ "west": "none"
}
},
{
"id": 8480,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "false",
- "waterlogged": "false",
- "west": "none"
+ "waterlogged": "true",
+ "west": "low"
}
},
{
"id": 8481,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "false",
- "waterlogged": "false",
- "west": "low"
+ "waterlogged": "true",
+ "west": "tall"
}
},
{
"id": 8482,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "low",
+ "south": "none",
"up": "false",
"waterlogged": "false",
- "west": "tall"
+ "west": "none"
}
},
{
"id": 8483,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
}
},
{
"id": 8484,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
}
},
{
"id": 8485,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "true",
"waterlogged": "true",
- "west": "tall"
+ "west": "none"
}
},
{
"id": 8486,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "true",
- "waterlogged": "false",
- "west": "none"
+ "waterlogged": "true",
+ "west": "low"
}
},
{
"id": 8487,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "true",
- "waterlogged": "false",
- "west": "low"
+ "waterlogged": "true",
+ "west": "tall"
}
},
{
"id": 8488,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "true",
"waterlogged": "false",
- "west": "tall"
+ "west": "none"
}
},
{
"id": 8489,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
}
},
{
"id": 8490,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
}
},
{
"id": 8491,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "false",
"waterlogged": "true",
- "west": "tall"
+ "west": "none"
}
},
{
"id": 8492,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "false",
- "waterlogged": "false",
- "west": "none"
+ "waterlogged": "true",
+ "west": "low"
}
},
{
"id": 8493,
"properties": {
- "east": "tall",
+ "east": "none",
"north": "none",
- "south": "tall",
+ "south": "low",
"up": "false",
- "waterlogged": "false",
- "west": "low"
+ "waterlogged": "true",
+ "west": "tall"
}
},
{
"id": 8494,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8495,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8496,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8497,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8498,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8499,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8500,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8501,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8502,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8503,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8504,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8505,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8506,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8507,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8508,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8509,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8510,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8511,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8512,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8513,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8514,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8515,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8516,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8517,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8518,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8519,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8520,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8521,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8522,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8523,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8524,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8525,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8526,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8527,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8528,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8529,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8530,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8531,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8532,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8533,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8534,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8535,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8536,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8537,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8538,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8539,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8540,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8541,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8542,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8543,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8544,
+ "properties": {
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8545,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8546,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8547,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8548,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8549,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8550,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8551,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8552,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8553,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8554,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8555,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8556,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8557,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8558,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8559,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8560,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8561,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8562,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8563,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8564,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8565,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8566,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8567,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8568,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8569,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8570,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8571,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8572,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8573,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8574,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8575,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8576,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8577,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8578,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8579,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8580,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8581,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8582,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8583,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8584,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8585,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8586,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8587,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8588,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8589,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8590,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8591,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8592,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8593,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8594,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8595,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8596,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8597,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8598,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8599,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8600,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8601,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8602,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8603,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8604,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8605,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8606,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8607,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8608,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8609,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8610,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8611,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8612,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8613,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8614,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8615,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8616,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8617,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8618,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8619,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8620,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8621,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8622,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8623,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8624,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8625,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8626,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8627,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8628,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8629,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8630,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8631,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8632,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8633,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8634,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8635,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8636,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8637,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8638,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8639,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8640,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8641,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8642,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8643,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8644,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8645,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8646,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8647,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8648,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8649,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8650,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8651,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8652,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8653,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8654,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8655,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8656,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8657,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8658,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8659,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8660,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8661,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8662,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8663,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8664,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8665,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8666,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8667,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8668,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8669,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8670,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8671,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8672,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8673,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8674,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8675,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8676,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8677,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8678,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8679,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8680,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8681,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8682,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8683,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8684,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8685,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8686,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8687,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8688,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8689,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8690,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8691,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8692,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8693,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8694,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8695,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8696,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8697,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8698,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8699,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8700,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8701,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8702,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8703,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8704,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8705,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8706,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8707,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8708,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8709,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8710,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8711,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8712,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8713,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8714,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8715,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8716,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8717,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8718,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8719,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8720,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8721,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 8722,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 8723,
+ "properties": {
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 8724,
"properties": {
"east": "tall",
"north": "none",
@@ -129230,7 +129315,7 @@
}
},
{
- "id": 8495,
+ "id": 8725,
"properties": {
"east": "tall",
"north": "low",
@@ -129241,7 +129326,7 @@
}
},
{
- "id": 8496,
+ "id": 8726,
"properties": {
"east": "tall",
"north": "low",
@@ -129252,7 +129337,7 @@
}
},
{
- "id": 8497,
+ "id": 8727,
"properties": {
"east": "tall",
"north": "low",
@@ -129263,7 +129348,7 @@
}
},
{
- "id": 8498,
+ "id": 8728,
"properties": {
"east": "tall",
"north": "low",
@@ -129274,7 +129359,7 @@
}
},
{
- "id": 8499,
+ "id": 8729,
"properties": {
"east": "tall",
"north": "low",
@@ -129285,7 +129370,7 @@
}
},
{
- "id": 8500,
+ "id": 8730,
"properties": {
"east": "tall",
"north": "low",
@@ -129296,7 +129381,7 @@
}
},
{
- "id": 8501,
+ "id": 8731,
"properties": {
"east": "tall",
"north": "low",
@@ -129307,7 +129392,7 @@
}
},
{
- "id": 8502,
+ "id": 8732,
"properties": {
"east": "tall",
"north": "low",
@@ -129318,7 +129403,7 @@
}
},
{
- "id": 8503,
+ "id": 8733,
"properties": {
"east": "tall",
"north": "low",
@@ -129329,7 +129414,7 @@
}
},
{
- "id": 8504,
+ "id": 8734,
"properties": {
"east": "tall",
"north": "low",
@@ -129340,7 +129425,7 @@
}
},
{
- "id": 8505,
+ "id": 8735,
"properties": {
"east": "tall",
"north": "low",
@@ -129351,7 +129436,7 @@
}
},
{
- "id": 8506,
+ "id": 8736,
"properties": {
"east": "tall",
"north": "low",
@@ -129362,7 +129447,7 @@
}
},
{
- "id": 8507,
+ "id": 8737,
"properties": {
"east": "tall",
"north": "low",
@@ -129373,7 +129458,7 @@
}
},
{
- "id": 8508,
+ "id": 8738,
"properties": {
"east": "tall",
"north": "low",
@@ -129384,7 +129469,7 @@
}
},
{
- "id": 8509,
+ "id": 8739,
"properties": {
"east": "tall",
"north": "low",
@@ -129395,7 +129480,7 @@
}
},
{
- "id": 8510,
+ "id": 8740,
"properties": {
"east": "tall",
"north": "low",
@@ -129406,7 +129491,7 @@
}
},
{
- "id": 8511,
+ "id": 8741,
"properties": {
"east": "tall",
"north": "low",
@@ -129417,7 +129502,7 @@
}
},
{
- "id": 8512,
+ "id": 8742,
"properties": {
"east": "tall",
"north": "low",
@@ -129428,7 +129513,7 @@
}
},
{
- "id": 8513,
+ "id": 8743,
"properties": {
"east": "tall",
"north": "low",
@@ -129439,7 +129524,7 @@
}
},
{
- "id": 8514,
+ "id": 8744,
"properties": {
"east": "tall",
"north": "low",
@@ -129450,7 +129535,7 @@
}
},
{
- "id": 8515,
+ "id": 8745,
"properties": {
"east": "tall",
"north": "low",
@@ -129461,7 +129546,7 @@
}
},
{
- "id": 8516,
+ "id": 8746,
"properties": {
"east": "tall",
"north": "low",
@@ -129472,7 +129557,7 @@
}
},
{
- "id": 8517,
+ "id": 8747,
"properties": {
"east": "tall",
"north": "low",
@@ -129483,7 +129568,7 @@
}
},
{
- "id": 8518,
+ "id": 8748,
"properties": {
"east": "tall",
"north": "low",
@@ -129494,7 +129579,7 @@
}
},
{
- "id": 8519,
+ "id": 8749,
"properties": {
"east": "tall",
"north": "low",
@@ -129505,7 +129590,7 @@
}
},
{
- "id": 8520,
+ "id": 8750,
"properties": {
"east": "tall",
"north": "low",
@@ -129516,7 +129601,7 @@
}
},
{
- "id": 8521,
+ "id": 8751,
"properties": {
"east": "tall",
"north": "low",
@@ -129527,7 +129612,7 @@
}
},
{
- "id": 8522,
+ "id": 8752,
"properties": {
"east": "tall",
"north": "low",
@@ -129538,7 +129623,7 @@
}
},
{
- "id": 8523,
+ "id": 8753,
"properties": {
"east": "tall",
"north": "low",
@@ -129549,7 +129634,7 @@
}
},
{
- "id": 8524,
+ "id": 8754,
"properties": {
"east": "tall",
"north": "low",
@@ -129560,7 +129645,7 @@
}
},
{
- "id": 8525,
+ "id": 8755,
"properties": {
"east": "tall",
"north": "low",
@@ -129571,7 +129656,7 @@
}
},
{
- "id": 8526,
+ "id": 8756,
"properties": {
"east": "tall",
"north": "low",
@@ -129582,7 +129667,7 @@
}
},
{
- "id": 8527,
+ "id": 8757,
"properties": {
"east": "tall",
"north": "low",
@@ -129593,7 +129678,7 @@
}
},
{
- "id": 8528,
+ "id": 8758,
"properties": {
"east": "tall",
"north": "low",
@@ -129604,7 +129689,7 @@
}
},
{
- "id": 8529,
+ "id": 8759,
"properties": {
"east": "tall",
"north": "low",
@@ -129615,7 +129700,7 @@
}
},
{
- "id": 8530,
+ "id": 8760,
"properties": {
"east": "tall",
"north": "low",
@@ -129626,7 +129711,7 @@
}
},
{
- "id": 8531,
+ "id": 8761,
"properties": {
"east": "tall",
"north": "tall",
@@ -129637,7 +129722,7 @@
}
},
{
- "id": 8532,
+ "id": 8762,
"properties": {
"east": "tall",
"north": "tall",
@@ -129648,7 +129733,7 @@
}
},
{
- "id": 8533,
+ "id": 8763,
"properties": {
"east": "tall",
"north": "tall",
@@ -129659,7 +129744,7 @@
}
},
{
- "id": 8534,
+ "id": 8764,
"properties": {
"east": "tall",
"north": "tall",
@@ -129670,7 +129755,7 @@
}
},
{
- "id": 8535,
+ "id": 8765,
"properties": {
"east": "tall",
"north": "tall",
@@ -129681,7 +129766,7 @@
}
},
{
- "id": 8536,
+ "id": 8766,
"properties": {
"east": "tall",
"north": "tall",
@@ -129692,7 +129777,7 @@
}
},
{
- "id": 8537,
+ "id": 8767,
"properties": {
"east": "tall",
"north": "tall",
@@ -129703,7 +129788,7 @@
}
},
{
- "id": 8538,
+ "id": 8768,
"properties": {
"east": "tall",
"north": "tall",
@@ -129714,7 +129799,7 @@
}
},
{
- "id": 8539,
+ "id": 8769,
"properties": {
"east": "tall",
"north": "tall",
@@ -129725,7 +129810,7 @@
}
},
{
- "id": 8540,
+ "id": 8770,
"properties": {
"east": "tall",
"north": "tall",
@@ -129736,7 +129821,7 @@
}
},
{
- "id": 8541,
+ "id": 8771,
"properties": {
"east": "tall",
"north": "tall",
@@ -129747,7 +129832,7 @@
}
},
{
- "id": 8542,
+ "id": 8772,
"properties": {
"east": "tall",
"north": "tall",
@@ -129758,7 +129843,7 @@
}
},
{
- "id": 8543,
+ "id": 8773,
"properties": {
"east": "tall",
"north": "tall",
@@ -129769,7 +129854,7 @@
}
},
{
- "id": 8544,
+ "id": 8774,
"properties": {
"east": "tall",
"north": "tall",
@@ -129780,7 +129865,7 @@
}
},
{
- "id": 8545,
+ "id": 8775,
"properties": {
"east": "tall",
"north": "tall",
@@ -129791,7 +129876,7 @@
}
},
{
- "id": 8546,
+ "id": 8776,
"properties": {
"east": "tall",
"north": "tall",
@@ -129802,7 +129887,7 @@
}
},
{
- "id": 8547,
+ "id": 8777,
"properties": {
"east": "tall",
"north": "tall",
@@ -129813,7 +129898,7 @@
}
},
{
- "id": 8548,
+ "id": 8778,
"properties": {
"east": "tall",
"north": "tall",
@@ -129824,7 +129909,7 @@
}
},
{
- "id": 8549,
+ "id": 8779,
"properties": {
"east": "tall",
"north": "tall",
@@ -129835,7 +129920,7 @@
}
},
{
- "id": 8550,
+ "id": 8780,
"properties": {
"east": "tall",
"north": "tall",
@@ -129846,7 +129931,7 @@
}
},
{
- "id": 8551,
+ "id": 8781,
"properties": {
"east": "tall",
"north": "tall",
@@ -129857,7 +129942,7 @@
}
},
{
- "id": 8552,
+ "id": 8782,
"properties": {
"east": "tall",
"north": "tall",
@@ -129868,7 +129953,7 @@
}
},
{
- "id": 8553,
+ "id": 8783,
"properties": {
"east": "tall",
"north": "tall",
@@ -129879,7 +129964,7 @@
}
},
{
- "id": 8554,
+ "id": 8784,
"properties": {
"east": "tall",
"north": "tall",
@@ -129890,7 +129975,7 @@
}
},
{
- "id": 8555,
+ "id": 8785,
"properties": {
"east": "tall",
"north": "tall",
@@ -129901,7 +129986,7 @@
}
},
{
- "id": 8556,
+ "id": 8786,
"properties": {
"east": "tall",
"north": "tall",
@@ -129912,7 +129997,7 @@
}
},
{
- "id": 8557,
+ "id": 8787,
"properties": {
"east": "tall",
"north": "tall",
@@ -129923,7 +130008,7 @@
}
},
{
- "id": 8558,
+ "id": 8788,
"properties": {
"east": "tall",
"north": "tall",
@@ -129934,7 +130019,7 @@
}
},
{
- "id": 8559,
+ "id": 8789,
"properties": {
"east": "tall",
"north": "tall",
@@ -129945,7 +130030,7 @@
}
},
{
- "id": 8560,
+ "id": 8790,
"properties": {
"east": "tall",
"north": "tall",
@@ -129956,7 +130041,7 @@
}
},
{
- "id": 8561,
+ "id": 8791,
"properties": {
"east": "tall",
"north": "tall",
@@ -129967,7 +130052,7 @@
}
},
{
- "id": 8562,
+ "id": 8792,
"properties": {
"east": "tall",
"north": "tall",
@@ -129978,7 +130063,7 @@
}
},
{
- "id": 8563,
+ "id": 8793,
"properties": {
"east": "tall",
"north": "tall",
@@ -129989,7 +130074,7 @@
}
},
{
- "id": 8564,
+ "id": 8794,
"properties": {
"east": "tall",
"north": "tall",
@@ -130000,7 +130085,7 @@
}
},
{
- "id": 8565,
+ "id": 8795,
"properties": {
"east": "tall",
"north": "tall",
@@ -130011,7 +130096,7 @@
}
},
{
- "id": 8566,
+ "id": 8796,
"properties": {
"east": "tall",
"north": "tall",
@@ -130041,21 +130126,21 @@
},
"states": [
{
- "id": 14094,
+ "id": 14563,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 14095,
+ "id": 14564,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 14096,
+ "id": 14565,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -130063,21 +130148,21 @@
},
{
"default": true,
- "id": 14097,
+ "id": 14566,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 14098,
+ "id": 14567,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 14099,
+ "id": 14568,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -130118,7 +130203,7 @@
},
"states": [
{
- "id": 13122,
+ "id": 13591,
"properties": {
"facing": "north",
"half": "top",
@@ -130127,7 +130212,7 @@
}
},
{
- "id": 13123,
+ "id": 13592,
"properties": {
"facing": "north",
"half": "top",
@@ -130136,7 +130221,7 @@
}
},
{
- "id": 13124,
+ "id": 13593,
"properties": {
"facing": "north",
"half": "top",
@@ -130145,7 +130230,7 @@
}
},
{
- "id": 13125,
+ "id": 13594,
"properties": {
"facing": "north",
"half": "top",
@@ -130154,7 +130239,7 @@
}
},
{
- "id": 13126,
+ "id": 13595,
"properties": {
"facing": "north",
"half": "top",
@@ -130163,7 +130248,7 @@
}
},
{
- "id": 13127,
+ "id": 13596,
"properties": {
"facing": "north",
"half": "top",
@@ -130172,7 +130257,7 @@
}
},
{
- "id": 13128,
+ "id": 13597,
"properties": {
"facing": "north",
"half": "top",
@@ -130181,7 +130266,7 @@
}
},
{
- "id": 13129,
+ "id": 13598,
"properties": {
"facing": "north",
"half": "top",
@@ -130190,7 +130275,7 @@
}
},
{
- "id": 13130,
+ "id": 13599,
"properties": {
"facing": "north",
"half": "top",
@@ -130199,7 +130284,7 @@
}
},
{
- "id": 13131,
+ "id": 13600,
"properties": {
"facing": "north",
"half": "top",
@@ -130208,7 +130293,7 @@
}
},
{
- "id": 13132,
+ "id": 13601,
"properties": {
"facing": "north",
"half": "bottom",
@@ -130218,7 +130303,7 @@
},
{
"default": true,
- "id": 13133,
+ "id": 13602,
"properties": {
"facing": "north",
"half": "bottom",
@@ -130227,7 +130312,7 @@
}
},
{
- "id": 13134,
+ "id": 13603,
"properties": {
"facing": "north",
"half": "bottom",
@@ -130236,7 +130321,7 @@
}
},
{
- "id": 13135,
+ "id": 13604,
"properties": {
"facing": "north",
"half": "bottom",
@@ -130245,7 +130330,7 @@
}
},
{
- "id": 13136,
+ "id": 13605,
"properties": {
"facing": "north",
"half": "bottom",
@@ -130254,7 +130339,7 @@
}
},
{
- "id": 13137,
+ "id": 13606,
"properties": {
"facing": "north",
"half": "bottom",
@@ -130263,7 +130348,7 @@
}
},
{
- "id": 13138,
+ "id": 13607,
"properties": {
"facing": "north",
"half": "bottom",
@@ -130272,7 +130357,7 @@
}
},
{
- "id": 13139,
+ "id": 13608,
"properties": {
"facing": "north",
"half": "bottom",
@@ -130281,7 +130366,7 @@
}
},
{
- "id": 13140,
+ "id": 13609,
"properties": {
"facing": "north",
"half": "bottom",
@@ -130290,7 +130375,7 @@
}
},
{
- "id": 13141,
+ "id": 13610,
"properties": {
"facing": "north",
"half": "bottom",
@@ -130299,7 +130384,7 @@
}
},
{
- "id": 13142,
+ "id": 13611,
"properties": {
"facing": "south",
"half": "top",
@@ -130308,7 +130393,7 @@
}
},
{
- "id": 13143,
+ "id": 13612,
"properties": {
"facing": "south",
"half": "top",
@@ -130317,7 +130402,7 @@
}
},
{
- "id": 13144,
+ "id": 13613,
"properties": {
"facing": "south",
"half": "top",
@@ -130326,7 +130411,7 @@
}
},
{
- "id": 13145,
+ "id": 13614,
"properties": {
"facing": "south",
"half": "top",
@@ -130335,7 +130420,7 @@
}
},
{
- "id": 13146,
+ "id": 13615,
"properties": {
"facing": "south",
"half": "top",
@@ -130344,7 +130429,7 @@
}
},
{
- "id": 13147,
+ "id": 13616,
"properties": {
"facing": "south",
"half": "top",
@@ -130353,7 +130438,7 @@
}
},
{
- "id": 13148,
+ "id": 13617,
"properties": {
"facing": "south",
"half": "top",
@@ -130362,7 +130447,7 @@
}
},
{
- "id": 13149,
+ "id": 13618,
"properties": {
"facing": "south",
"half": "top",
@@ -130371,7 +130456,7 @@
}
},
{
- "id": 13150,
+ "id": 13619,
"properties": {
"facing": "south",
"half": "top",
@@ -130380,7 +130465,7 @@
}
},
{
- "id": 13151,
+ "id": 13620,
"properties": {
"facing": "south",
"half": "top",
@@ -130389,7 +130474,7 @@
}
},
{
- "id": 13152,
+ "id": 13621,
"properties": {
"facing": "south",
"half": "bottom",
@@ -130398,7 +130483,7 @@
}
},
{
- "id": 13153,
+ "id": 13622,
"properties": {
"facing": "south",
"half": "bottom",
@@ -130407,7 +130492,7 @@
}
},
{
- "id": 13154,
+ "id": 13623,
"properties": {
"facing": "south",
"half": "bottom",
@@ -130416,7 +130501,7 @@
}
},
{
- "id": 13155,
+ "id": 13624,
"properties": {
"facing": "south",
"half": "bottom",
@@ -130425,7 +130510,7 @@
}
},
{
- "id": 13156,
+ "id": 13625,
"properties": {
"facing": "south",
"half": "bottom",
@@ -130434,7 +130519,7 @@
}
},
{
- "id": 13157,
+ "id": 13626,
"properties": {
"facing": "south",
"half": "bottom",
@@ -130443,7 +130528,7 @@
}
},
{
- "id": 13158,
+ "id": 13627,
"properties": {
"facing": "south",
"half": "bottom",
@@ -130452,7 +130537,7 @@
}
},
{
- "id": 13159,
+ "id": 13628,
"properties": {
"facing": "south",
"half": "bottom",
@@ -130461,7 +130546,7 @@
}
},
{
- "id": 13160,
+ "id": 13629,
"properties": {
"facing": "south",
"half": "bottom",
@@ -130470,7 +130555,7 @@
}
},
{
- "id": 13161,
+ "id": 13630,
"properties": {
"facing": "south",
"half": "bottom",
@@ -130479,7 +130564,7 @@
}
},
{
- "id": 13162,
+ "id": 13631,
"properties": {
"facing": "west",
"half": "top",
@@ -130488,7 +130573,7 @@
}
},
{
- "id": 13163,
+ "id": 13632,
"properties": {
"facing": "west",
"half": "top",
@@ -130497,7 +130582,7 @@
}
},
{
- "id": 13164,
+ "id": 13633,
"properties": {
"facing": "west",
"half": "top",
@@ -130506,7 +130591,7 @@
}
},
{
- "id": 13165,
+ "id": 13634,
"properties": {
"facing": "west",
"half": "top",
@@ -130515,7 +130600,7 @@
}
},
{
- "id": 13166,
+ "id": 13635,
"properties": {
"facing": "west",
"half": "top",
@@ -130524,7 +130609,7 @@
}
},
{
- "id": 13167,
+ "id": 13636,
"properties": {
"facing": "west",
"half": "top",
@@ -130533,7 +130618,7 @@
}
},
{
- "id": 13168,
+ "id": 13637,
"properties": {
"facing": "west",
"half": "top",
@@ -130542,7 +130627,7 @@
}
},
{
- "id": 13169,
+ "id": 13638,
"properties": {
"facing": "west",
"half": "top",
@@ -130551,7 +130636,7 @@
}
},
{
- "id": 13170,
+ "id": 13639,
"properties": {
"facing": "west",
"half": "top",
@@ -130560,7 +130645,7 @@
}
},
{
- "id": 13171,
+ "id": 13640,
"properties": {
"facing": "west",
"half": "top",
@@ -130569,7 +130654,7 @@
}
},
{
- "id": 13172,
+ "id": 13641,
"properties": {
"facing": "west",
"half": "bottom",
@@ -130578,7 +130663,7 @@
}
},
{
- "id": 13173,
+ "id": 13642,
"properties": {
"facing": "west",
"half": "bottom",
@@ -130587,7 +130672,7 @@
}
},
{
- "id": 13174,
+ "id": 13643,
"properties": {
"facing": "west",
"half": "bottom",
@@ -130596,7 +130681,7 @@
}
},
{
- "id": 13175,
+ "id": 13644,
"properties": {
"facing": "west",
"half": "bottom",
@@ -130605,7 +130690,7 @@
}
},
{
- "id": 13176,
+ "id": 13645,
"properties": {
"facing": "west",
"half": "bottom",
@@ -130614,7 +130699,7 @@
}
},
{
- "id": 13177,
+ "id": 13646,
"properties": {
"facing": "west",
"half": "bottom",
@@ -130623,7 +130708,7 @@
}
},
{
- "id": 13178,
+ "id": 13647,
"properties": {
"facing": "west",
"half": "bottom",
@@ -130632,7 +130717,7 @@
}
},
{
- "id": 13179,
+ "id": 13648,
"properties": {
"facing": "west",
"half": "bottom",
@@ -130641,7 +130726,7 @@
}
},
{
- "id": 13180,
+ "id": 13649,
"properties": {
"facing": "west",
"half": "bottom",
@@ -130650,7 +130735,7 @@
}
},
{
- "id": 13181,
+ "id": 13650,
"properties": {
"facing": "west",
"half": "bottom",
@@ -130659,7 +130744,7 @@
}
},
{
- "id": 13182,
+ "id": 13651,
"properties": {
"facing": "east",
"half": "top",
@@ -130668,7 +130753,7 @@
}
},
{
- "id": 13183,
+ "id": 13652,
"properties": {
"facing": "east",
"half": "top",
@@ -130677,7 +130762,7 @@
}
},
{
- "id": 13184,
+ "id": 13653,
"properties": {
"facing": "east",
"half": "top",
@@ -130686,7 +130771,7 @@
}
},
{
- "id": 13185,
+ "id": 13654,
"properties": {
"facing": "east",
"half": "top",
@@ -130695,7 +130780,7 @@
}
},
{
- "id": 13186,
+ "id": 13655,
"properties": {
"facing": "east",
"half": "top",
@@ -130704,7 +130789,7 @@
}
},
{
- "id": 13187,
+ "id": 13656,
"properties": {
"facing": "east",
"half": "top",
@@ -130713,7 +130798,7 @@
}
},
{
- "id": 13188,
+ "id": 13657,
"properties": {
"facing": "east",
"half": "top",
@@ -130722,7 +130807,7 @@
}
},
{
- "id": 13189,
+ "id": 13658,
"properties": {
"facing": "east",
"half": "top",
@@ -130731,7 +130816,7 @@
}
},
{
- "id": 13190,
+ "id": 13659,
"properties": {
"facing": "east",
"half": "top",
@@ -130740,7 +130825,7 @@
}
},
{
- "id": 13191,
+ "id": 13660,
"properties": {
"facing": "east",
"half": "top",
@@ -130749,7 +130834,7 @@
}
},
{
- "id": 13192,
+ "id": 13661,
"properties": {
"facing": "east",
"half": "bottom",
@@ -130758,7 +130843,7 @@
}
},
{
- "id": 13193,
+ "id": 13662,
"properties": {
"facing": "east",
"half": "bottom",
@@ -130767,7 +130852,7 @@
}
},
{
- "id": 13194,
+ "id": 13663,
"properties": {
"facing": "east",
"half": "bottom",
@@ -130776,7 +130861,7 @@
}
},
{
- "id": 13195,
+ "id": 13664,
"properties": {
"facing": "east",
"half": "bottom",
@@ -130785,7 +130870,7 @@
}
},
{
- "id": 13196,
+ "id": 13665,
"properties": {
"facing": "east",
"half": "bottom",
@@ -130794,7 +130879,7 @@
}
},
{
- "id": 13197,
+ "id": 13666,
"properties": {
"facing": "east",
"half": "bottom",
@@ -130803,7 +130888,7 @@
}
},
{
- "id": 13198,
+ "id": 13667,
"properties": {
"facing": "east",
"half": "bottom",
@@ -130812,7 +130897,7 @@
}
},
{
- "id": 13199,
+ "id": 13668,
"properties": {
"facing": "east",
"half": "bottom",
@@ -130821,7 +130906,7 @@
}
},
{
- "id": 13200,
+ "id": 13669,
"properties": {
"facing": "east",
"half": "bottom",
@@ -130830,7 +130915,7 @@
}
},
{
- "id": 13201,
+ "id": 13670,
"properties": {
"facing": "east",
"half": "bottom",
@@ -130877,7 +130962,7 @@
},
"states": [
{
- "id": 15132,
+ "id": 15601,
"properties": {
"east": "none",
"north": "none",
@@ -130888,7 +130973,7 @@
}
},
{
- "id": 15133,
+ "id": 15602,
"properties": {
"east": "none",
"north": "none",
@@ -130899,7 +130984,7 @@
}
},
{
- "id": 15134,
+ "id": 15603,
"properties": {
"east": "none",
"north": "none",
@@ -130911,7 +130996,7 @@
},
{
"default": true,
- "id": 15135,
+ "id": 15604,
"properties": {
"east": "none",
"north": "none",
@@ -130922,7 +131007,7 @@
}
},
{
- "id": 15136,
+ "id": 15605,
"properties": {
"east": "none",
"north": "none",
@@ -130933,7 +131018,7 @@
}
},
{
- "id": 15137,
+ "id": 15606,
"properties": {
"east": "none",
"north": "none",
@@ -130944,7 +131029,7 @@
}
},
{
- "id": 15138,
+ "id": 15607,
"properties": {
"east": "none",
"north": "none",
@@ -130955,7 +131040,7 @@
}
},
{
- "id": 15139,
+ "id": 15608,
"properties": {
"east": "none",
"north": "none",
@@ -130966,7 +131051,7 @@
}
},
{
- "id": 15140,
+ "id": 15609,
"properties": {
"east": "none",
"north": "none",
@@ -130977,7 +131062,7 @@
}
},
{
- "id": 15141,
+ "id": 15610,
"properties": {
"east": "none",
"north": "none",
@@ -130988,7 +131073,7 @@
}
},
{
- "id": 15142,
+ "id": 15611,
"properties": {
"east": "none",
"north": "none",
@@ -130999,7 +131084,7 @@
}
},
{
- "id": 15143,
+ "id": 15612,
"properties": {
"east": "none",
"north": "none",
@@ -131010,7 +131095,7 @@
}
},
{
- "id": 15144,
+ "id": 15613,
"properties": {
"east": "none",
"north": "none",
@@ -131021,7 +131106,7 @@
}
},
{
- "id": 15145,
+ "id": 15614,
"properties": {
"east": "none",
"north": "none",
@@ -131032,7 +131117,7 @@
}
},
{
- "id": 15146,
+ "id": 15615,
"properties": {
"east": "none",
"north": "none",
@@ -131043,7 +131128,7 @@
}
},
{
- "id": 15147,
+ "id": 15616,
"properties": {
"east": "none",
"north": "none",
@@ -131054,7 +131139,7 @@
}
},
{
- "id": 15148,
+ "id": 15617,
"properties": {
"east": "none",
"north": "none",
@@ -131065,7 +131150,7 @@
}
},
{
- "id": 15149,
+ "id": 15618,
"properties": {
"east": "none",
"north": "none",
@@ -131076,7 +131161,7 @@
}
},
{
- "id": 15150,
+ "id": 15619,
"properties": {
"east": "none",
"north": "none",
@@ -131087,7 +131172,7 @@
}
},
{
- "id": 15151,
+ "id": 15620,
"properties": {
"east": "none",
"north": "none",
@@ -131098,7 +131183,7 @@
}
},
{
- "id": 15152,
+ "id": 15621,
"properties": {
"east": "none",
"north": "none",
@@ -131109,7 +131194,7 @@
}
},
{
- "id": 15153,
+ "id": 15622,
"properties": {
"east": "none",
"north": "none",
@@ -131120,7 +131205,7 @@
}
},
{
- "id": 15154,
+ "id": 15623,
"properties": {
"east": "none",
"north": "none",
@@ -131131,7 +131216,7 @@
}
},
{
- "id": 15155,
+ "id": 15624,
"properties": {
"east": "none",
"north": "none",
@@ -131142,7 +131227,7 @@
}
},
{
- "id": 15156,
+ "id": 15625,
"properties": {
"east": "none",
"north": "none",
@@ -131153,7 +131238,7 @@
}
},
{
- "id": 15157,
+ "id": 15626,
"properties": {
"east": "none",
"north": "none",
@@ -131164,7 +131249,7 @@
}
},
{
- "id": 15158,
+ "id": 15627,
"properties": {
"east": "none",
"north": "none",
@@ -131175,7 +131260,7 @@
}
},
{
- "id": 15159,
+ "id": 15628,
"properties": {
"east": "none",
"north": "none",
@@ -131186,7 +131271,7 @@
}
},
{
- "id": 15160,
+ "id": 15629,
"properties": {
"east": "none",
"north": "none",
@@ -131197,7 +131282,7 @@
}
},
{
- "id": 15161,
+ "id": 15630,
"properties": {
"east": "none",
"north": "none",
@@ -131208,7 +131293,7 @@
}
},
{
- "id": 15162,
+ "id": 15631,
"properties": {
"east": "none",
"north": "none",
@@ -131219,7 +131304,7 @@
}
},
{
- "id": 15163,
+ "id": 15632,
"properties": {
"east": "none",
"north": "none",
@@ -131230,7 +131315,7 @@
}
},
{
- "id": 15164,
+ "id": 15633,
"properties": {
"east": "none",
"north": "none",
@@ -131241,7 +131326,7 @@
}
},
{
- "id": 15165,
+ "id": 15634,
"properties": {
"east": "none",
"north": "none",
@@ -131252,7 +131337,7 @@
}
},
{
- "id": 15166,
+ "id": 15635,
"properties": {
"east": "none",
"north": "none",
@@ -131263,7 +131348,7 @@
}
},
{
- "id": 15167,
+ "id": 15636,
"properties": {
"east": "none",
"north": "none",
@@ -131274,7 +131359,7 @@
}
},
{
- "id": 15168,
+ "id": 15637,
"properties": {
"east": "none",
"north": "low",
@@ -131285,7 +131370,7 @@
}
},
{
- "id": 15169,
+ "id": 15638,
"properties": {
"east": "none",
"north": "low",
@@ -131296,7 +131381,7 @@
}
},
{
- "id": 15170,
+ "id": 15639,
"properties": {
"east": "none",
"north": "low",
@@ -131307,7 +131392,7 @@
}
},
{
- "id": 15171,
+ "id": 15640,
"properties": {
"east": "none",
"north": "low",
@@ -131318,7 +131403,7 @@
}
},
{
- "id": 15172,
+ "id": 15641,
"properties": {
"east": "none",
"north": "low",
@@ -131329,7 +131414,7 @@
}
},
{
- "id": 15173,
+ "id": 15642,
"properties": {
"east": "none",
"north": "low",
@@ -131340,7 +131425,7 @@
}
},
{
- "id": 15174,
+ "id": 15643,
"properties": {
"east": "none",
"north": "low",
@@ -131351,7 +131436,7 @@
}
},
{
- "id": 15175,
+ "id": 15644,
"properties": {
"east": "none",
"north": "low",
@@ -131362,7 +131447,7 @@
}
},
{
- "id": 15176,
+ "id": 15645,
"properties": {
"east": "none",
"north": "low",
@@ -131373,7 +131458,7 @@
}
},
{
- "id": 15177,
+ "id": 15646,
"properties": {
"east": "none",
"north": "low",
@@ -131384,7 +131469,7 @@
}
},
{
- "id": 15178,
+ "id": 15647,
"properties": {
"east": "none",
"north": "low",
@@ -131395,7 +131480,7 @@
}
},
{
- "id": 15179,
+ "id": 15648,
"properties": {
"east": "none",
"north": "low",
@@ -131406,7 +131491,7 @@
}
},
{
- "id": 15180,
+ "id": 15649,
"properties": {
"east": "none",
"north": "low",
@@ -131417,7 +131502,7 @@
}
},
{
- "id": 15181,
+ "id": 15650,
"properties": {
"east": "none",
"north": "low",
@@ -131428,7 +131513,7 @@
}
},
{
- "id": 15182,
+ "id": 15651,
"properties": {
"east": "none",
"north": "low",
@@ -131439,7 +131524,7 @@
}
},
{
- "id": 15183,
+ "id": 15652,
"properties": {
"east": "none",
"north": "low",
@@ -131450,7 +131535,7 @@
}
},
{
- "id": 15184,
+ "id": 15653,
"properties": {
"east": "none",
"north": "low",
@@ -131461,7 +131546,7 @@
}
},
{
- "id": 15185,
+ "id": 15654,
"properties": {
"east": "none",
"north": "low",
@@ -131472,7 +131557,7 @@
}
},
{
- "id": 15186,
+ "id": 15655,
"properties": {
"east": "none",
"north": "low",
@@ -131483,7 +131568,7 @@
}
},
{
- "id": 15187,
+ "id": 15656,
"properties": {
"east": "none",
"north": "low",
@@ -131494,7 +131579,7 @@
}
},
{
- "id": 15188,
+ "id": 15657,
"properties": {
"east": "none",
"north": "low",
@@ -131505,7 +131590,7 @@
}
},
{
- "id": 15189,
+ "id": 15658,
"properties": {
"east": "none",
"north": "low",
@@ -131516,7 +131601,7 @@
}
},
{
- "id": 15190,
+ "id": 15659,
"properties": {
"east": "none",
"north": "low",
@@ -131527,7 +131612,7 @@
}
},
{
- "id": 15191,
+ "id": 15660,
"properties": {
"east": "none",
"north": "low",
@@ -131538,7 +131623,7 @@
}
},
{
- "id": 15192,
+ "id": 15661,
"properties": {
"east": "none",
"north": "low",
@@ -131549,7 +131634,7 @@
}
},
{
- "id": 15193,
+ "id": 15662,
"properties": {
"east": "none",
"north": "low",
@@ -131560,7 +131645,7 @@
}
},
{
- "id": 15194,
+ "id": 15663,
"properties": {
"east": "none",
"north": "low",
@@ -131571,7 +131656,7 @@
}
},
{
- "id": 15195,
+ "id": 15664,
"properties": {
"east": "none",
"north": "low",
@@ -131582,7 +131667,7 @@
}
},
{
- "id": 15196,
+ "id": 15665,
"properties": {
"east": "none",
"north": "low",
@@ -131593,7 +131678,7 @@
}
},
{
- "id": 15197,
+ "id": 15666,
"properties": {
"east": "none",
"north": "low",
@@ -131604,7 +131689,7 @@
}
},
{
- "id": 15198,
+ "id": 15667,
"properties": {
"east": "none",
"north": "low",
@@ -131615,7 +131700,7 @@
}
},
{
- "id": 15199,
+ "id": 15668,
"properties": {
"east": "none",
"north": "low",
@@ -131626,7 +131711,7 @@
}
},
{
- "id": 15200,
+ "id": 15669,
"properties": {
"east": "none",
"north": "low",
@@ -131637,7 +131722,7 @@
}
},
{
- "id": 15201,
+ "id": 15670,
"properties": {
"east": "none",
"north": "low",
@@ -131648,7 +131733,7 @@
}
},
{
- "id": 15202,
+ "id": 15671,
"properties": {
"east": "none",
"north": "low",
@@ -131659,7 +131744,7 @@
}
},
{
- "id": 15203,
+ "id": 15672,
"properties": {
"east": "none",
"north": "low",
@@ -131670,7 +131755,7 @@
}
},
{
- "id": 15204,
+ "id": 15673,
"properties": {
"east": "none",
"north": "tall",
@@ -131681,7 +131766,7 @@
}
},
{
- "id": 15205,
+ "id": 15674,
"properties": {
"east": "none",
"north": "tall",
@@ -131692,7 +131777,7 @@
}
},
{
- "id": 15206,
+ "id": 15675,
"properties": {
"east": "none",
"north": "tall",
@@ -131703,7 +131788,7 @@
}
},
{
- "id": 15207,
+ "id": 15676,
"properties": {
"east": "none",
"north": "tall",
@@ -131714,7 +131799,7 @@
}
},
{
- "id": 15208,
+ "id": 15677,
"properties": {
"east": "none",
"north": "tall",
@@ -131725,7 +131810,7 @@
}
},
{
- "id": 15209,
+ "id": 15678,
"properties": {
"east": "none",
"north": "tall",
@@ -131736,7 +131821,7 @@
}
},
{
- "id": 15210,
+ "id": 15679,
"properties": {
"east": "none",
"north": "tall",
@@ -131747,7 +131832,7 @@
}
},
{
- "id": 15211,
+ "id": 15680,
"properties": {
"east": "none",
"north": "tall",
@@ -131758,7 +131843,7 @@
}
},
{
- "id": 15212,
+ "id": 15681,
"properties": {
"east": "none",
"north": "tall",
@@ -131769,7 +131854,7 @@
}
},
{
- "id": 15213,
+ "id": 15682,
"properties": {
"east": "none",
"north": "tall",
@@ -131780,7 +131865,7 @@
}
},
{
- "id": 15214,
+ "id": 15683,
"properties": {
"east": "none",
"north": "tall",
@@ -131791,7 +131876,7 @@
}
},
{
- "id": 15215,
+ "id": 15684,
"properties": {
"east": "none",
"north": "tall",
@@ -131802,7 +131887,7 @@
}
},
{
- "id": 15216,
+ "id": 15685,
"properties": {
"east": "none",
"north": "tall",
@@ -131813,7 +131898,7 @@
}
},
{
- "id": 15217,
+ "id": 15686,
"properties": {
"east": "none",
"north": "tall",
@@ -131824,7 +131909,7 @@
}
},
{
- "id": 15218,
+ "id": 15687,
"properties": {
"east": "none",
"north": "tall",
@@ -131835,7 +131920,7 @@
}
},
{
- "id": 15219,
+ "id": 15688,
"properties": {
"east": "none",
"north": "tall",
@@ -131846,7 +131931,7 @@
}
},
{
- "id": 15220,
+ "id": 15689,
"properties": {
"east": "none",
"north": "tall",
@@ -131857,7 +131942,7 @@
}
},
{
- "id": 15221,
+ "id": 15690,
"properties": {
"east": "none",
"north": "tall",
@@ -131868,7 +131953,7 @@
}
},
{
- "id": 15222,
+ "id": 15691,
"properties": {
"east": "none",
"north": "tall",
@@ -131879,7 +131964,7 @@
}
},
{
- "id": 15223,
+ "id": 15692,
"properties": {
"east": "none",
"north": "tall",
@@ -131890,7 +131975,7 @@
}
},
{
- "id": 15224,
+ "id": 15693,
"properties": {
"east": "none",
"north": "tall",
@@ -131901,7 +131986,7 @@
}
},
{
- "id": 15225,
+ "id": 15694,
"properties": {
"east": "none",
"north": "tall",
@@ -131912,7 +131997,7 @@
}
},
{
- "id": 15226,
+ "id": 15695,
"properties": {
"east": "none",
"north": "tall",
@@ -131923,7 +132008,7 @@
}
},
{
- "id": 15227,
+ "id": 15696,
"properties": {
"east": "none",
"north": "tall",
@@ -131934,7 +132019,7 @@
}
},
{
- "id": 15228,
+ "id": 15697,
"properties": {
"east": "none",
"north": "tall",
@@ -131945,7 +132030,7 @@
}
},
{
- "id": 15229,
+ "id": 15698,
"properties": {
"east": "none",
"north": "tall",
@@ -131956,7 +132041,7 @@
}
},
{
- "id": 15230,
+ "id": 15699,
"properties": {
"east": "none",
"north": "tall",
@@ -131967,7 +132052,7 @@
}
},
{
- "id": 15231,
+ "id": 15700,
"properties": {
"east": "none",
"north": "tall",
@@ -131978,7 +132063,7 @@
}
},
{
- "id": 15232,
+ "id": 15701,
"properties": {
"east": "none",
"north": "tall",
@@ -131989,7 +132074,7 @@
}
},
{
- "id": 15233,
+ "id": 15702,
"properties": {
"east": "none",
"north": "tall",
@@ -132000,7 +132085,7 @@
}
},
{
- "id": 15234,
+ "id": 15703,
"properties": {
"east": "none",
"north": "tall",
@@ -132011,7 +132096,7 @@
}
},
{
- "id": 15235,
+ "id": 15704,
"properties": {
"east": "none",
"north": "tall",
@@ -132022,7 +132107,7 @@
}
},
{
- "id": 15236,
+ "id": 15705,
"properties": {
"east": "none",
"north": "tall",
@@ -132033,7 +132118,7 @@
}
},
{
- "id": 15237,
+ "id": 15706,
"properties": {
"east": "none",
"north": "tall",
@@ -132044,7 +132129,7 @@
}
},
{
- "id": 15238,
+ "id": 15707,
"properties": {
"east": "none",
"north": "tall",
@@ -132055,7 +132140,7 @@
}
},
{
- "id": 15239,
+ "id": 15708,
"properties": {
"east": "none",
"north": "tall",
@@ -132066,7 +132151,7 @@
}
},
{
- "id": 15240,
+ "id": 15709,
"properties": {
"east": "low",
"north": "none",
@@ -132077,7 +132162,7 @@
}
},
{
- "id": 15241,
+ "id": 15710,
"properties": {
"east": "low",
"north": "none",
@@ -132088,7 +132173,7 @@
}
},
{
- "id": 15242,
+ "id": 15711,
"properties": {
"east": "low",
"north": "none",
@@ -132099,7 +132184,7 @@
}
},
{
- "id": 15243,
+ "id": 15712,
"properties": {
"east": "low",
"north": "none",
@@ -132110,7 +132195,7 @@
}
},
{
- "id": 15244,
+ "id": 15713,
"properties": {
"east": "low",
"north": "none",
@@ -132121,7 +132206,7 @@
}
},
{
- "id": 15245,
+ "id": 15714,
"properties": {
"east": "low",
"north": "none",
@@ -132132,7 +132217,7 @@
}
},
{
- "id": 15246,
+ "id": 15715,
"properties": {
"east": "low",
"north": "none",
@@ -132143,7 +132228,7 @@
}
},
{
- "id": 15247,
+ "id": 15716,
"properties": {
"east": "low",
"north": "none",
@@ -132154,7 +132239,7 @@
}
},
{
- "id": 15248,
+ "id": 15717,
"properties": {
"east": "low",
"north": "none",
@@ -132165,7 +132250,7 @@
}
},
{
- "id": 15249,
+ "id": 15718,
"properties": {
"east": "low",
"north": "none",
@@ -132176,7 +132261,7 @@
}
},
{
- "id": 15250,
+ "id": 15719,
"properties": {
"east": "low",
"north": "none",
@@ -132187,7 +132272,7 @@
}
},
{
- "id": 15251,
+ "id": 15720,
"properties": {
"east": "low",
"north": "none",
@@ -132198,7 +132283,7 @@
}
},
{
- "id": 15252,
+ "id": 15721,
"properties": {
"east": "low",
"north": "none",
@@ -132209,7 +132294,7 @@
}
},
{
- "id": 15253,
+ "id": 15722,
"properties": {
"east": "low",
"north": "none",
@@ -132220,7 +132305,7 @@
}
},
{
- "id": 15254,
+ "id": 15723,
"properties": {
"east": "low",
"north": "none",
@@ -132231,7 +132316,7 @@
}
},
{
- "id": 15255,
+ "id": 15724,
"properties": {
"east": "low",
"north": "none",
@@ -132242,7 +132327,7 @@
}
},
{
- "id": 15256,
+ "id": 15725,
"properties": {
"east": "low",
"north": "none",
@@ -132253,7 +132338,7 @@
}
},
{
- "id": 15257,
+ "id": 15726,
"properties": {
"east": "low",
"north": "none",
@@ -132264,7 +132349,7 @@
}
},
{
- "id": 15258,
+ "id": 15727,
"properties": {
"east": "low",
"north": "none",
@@ -132275,7 +132360,7 @@
}
},
{
- "id": 15259,
+ "id": 15728,
"properties": {
"east": "low",
"north": "none",
@@ -132286,7 +132371,7 @@
}
},
{
- "id": 15260,
+ "id": 15729,
"properties": {
"east": "low",
"north": "none",
@@ -132297,7 +132382,7 @@
}
},
{
- "id": 15261,
+ "id": 15730,
"properties": {
"east": "low",
"north": "none",
@@ -132308,7 +132393,7 @@
}
},
{
- "id": 15262,
+ "id": 15731,
"properties": {
"east": "low",
"north": "none",
@@ -132319,7 +132404,7 @@
}
},
{
- "id": 15263,
+ "id": 15732,
"properties": {
"east": "low",
"north": "none",
@@ -132330,7 +132415,7 @@
}
},
{
- "id": 15264,
+ "id": 15733,
"properties": {
"east": "low",
"north": "none",
@@ -132341,7 +132426,7 @@
}
},
{
- "id": 15265,
+ "id": 15734,
"properties": {
"east": "low",
"north": "none",
@@ -132352,7 +132437,7 @@
}
},
{
- "id": 15266,
+ "id": 15735,
"properties": {
"east": "low",
"north": "none",
@@ -132363,7 +132448,7 @@
}
},
{
- "id": 15267,
+ "id": 15736,
"properties": {
"east": "low",
"north": "none",
@@ -132374,7 +132459,7 @@
}
},
{
- "id": 15268,
+ "id": 15737,
"properties": {
"east": "low",
"north": "none",
@@ -132385,7 +132470,7 @@
}
},
{
- "id": 15269,
+ "id": 15738,
"properties": {
"east": "low",
"north": "none",
@@ -132396,7 +132481,7 @@
}
},
{
- "id": 15270,
+ "id": 15739,
"properties": {
"east": "low",
"north": "none",
@@ -132407,7 +132492,7 @@
}
},
{
- "id": 15271,
+ "id": 15740,
"properties": {
"east": "low",
"north": "none",
@@ -132418,7 +132503,7 @@
}
},
{
- "id": 15272,
+ "id": 15741,
"properties": {
"east": "low",
"north": "none",
@@ -132429,7 +132514,7 @@
}
},
{
- "id": 15273,
+ "id": 15742,
"properties": {
"east": "low",
"north": "none",
@@ -132440,7 +132525,7 @@
}
},
{
- "id": 15274,
+ "id": 15743,
"properties": {
"east": "low",
"north": "none",
@@ -132451,7 +132536,7 @@
}
},
{
- "id": 15275,
+ "id": 15744,
"properties": {
"east": "low",
"north": "none",
@@ -132462,7 +132547,7 @@
}
},
{
- "id": 15276,
+ "id": 15745,
"properties": {
"east": "low",
"north": "low",
@@ -132473,7 +132558,7 @@
}
},
{
- "id": 15277,
+ "id": 15746,
"properties": {
"east": "low",
"north": "low",
@@ -132484,7 +132569,7 @@
}
},
{
- "id": 15278,
+ "id": 15747,
"properties": {
"east": "low",
"north": "low",
@@ -132495,7 +132580,7 @@
}
},
{
- "id": 15279,
+ "id": 15748,
"properties": {
"east": "low",
"north": "low",
@@ -132506,7 +132591,7 @@
}
},
{
- "id": 15280,
+ "id": 15749,
"properties": {
"east": "low",
"north": "low",
@@ -132517,7 +132602,7 @@
}
},
{
- "id": 15281,
+ "id": 15750,
"properties": {
"east": "low",
"north": "low",
@@ -132528,7 +132613,7 @@
}
},
{
- "id": 15282,
+ "id": 15751,
"properties": {
"east": "low",
"north": "low",
@@ -132539,7 +132624,7 @@
}
},
{
- "id": 15283,
+ "id": 15752,
"properties": {
"east": "low",
"north": "low",
@@ -132550,7 +132635,7 @@
}
},
{
- "id": 15284,
+ "id": 15753,
"properties": {
"east": "low",
"north": "low",
@@ -132561,7 +132646,7 @@
}
},
{
- "id": 15285,
+ "id": 15754,
"properties": {
"east": "low",
"north": "low",
@@ -132572,7 +132657,7 @@
}
},
{
- "id": 15286,
+ "id": 15755,
"properties": {
"east": "low",
"north": "low",
@@ -132583,7 +132668,7 @@
}
},
{
- "id": 15287,
+ "id": 15756,
"properties": {
"east": "low",
"north": "low",
@@ -132594,7 +132679,7 @@
}
},
{
- "id": 15288,
+ "id": 15757,
"properties": {
"east": "low",
"north": "low",
@@ -132605,7 +132690,7 @@
}
},
{
- "id": 15289,
+ "id": 15758,
"properties": {
"east": "low",
"north": "low",
@@ -132616,7 +132701,7 @@
}
},
{
- "id": 15290,
+ "id": 15759,
"properties": {
"east": "low",
"north": "low",
@@ -132627,7 +132712,7 @@
}
},
{
- "id": 15291,
+ "id": 15760,
"properties": {
"east": "low",
"north": "low",
@@ -132638,7 +132723,7 @@
}
},
{
- "id": 15292,
+ "id": 15761,
"properties": {
"east": "low",
"north": "low",
@@ -132649,7 +132734,7 @@
}
},
{
- "id": 15293,
+ "id": 15762,
"properties": {
"east": "low",
"north": "low",
@@ -132660,7 +132745,7 @@
}
},
{
- "id": 15294,
+ "id": 15763,
"properties": {
"east": "low",
"north": "low",
@@ -132671,7 +132756,7 @@
}
},
{
- "id": 15295,
+ "id": 15764,
"properties": {
"east": "low",
"north": "low",
@@ -132682,7 +132767,7 @@
}
},
{
- "id": 15296,
+ "id": 15765,
"properties": {
"east": "low",
"north": "low",
@@ -132693,7 +132778,7 @@
}
},
{
- "id": 15297,
+ "id": 15766,
"properties": {
"east": "low",
"north": "low",
@@ -132704,7 +132789,7 @@
}
},
{
- "id": 15298,
+ "id": 15767,
"properties": {
"east": "low",
"north": "low",
@@ -132715,7 +132800,7 @@
}
},
{
- "id": 15299,
+ "id": 15768,
"properties": {
"east": "low",
"north": "low",
@@ -132726,7 +132811,7 @@
}
},
{
- "id": 15300,
+ "id": 15769,
"properties": {
"east": "low",
"north": "low",
@@ -132737,7 +132822,7 @@
}
},
{
- "id": 15301,
+ "id": 15770,
"properties": {
"east": "low",
"north": "low",
@@ -132748,7 +132833,7 @@
}
},
{
- "id": 15302,
+ "id": 15771,
"properties": {
"east": "low",
"north": "low",
@@ -132759,7 +132844,7 @@
}
},
{
- "id": 15303,
+ "id": 15772,
"properties": {
"east": "low",
"north": "low",
@@ -132770,7 +132855,7 @@
}
},
{
- "id": 15304,
+ "id": 15773,
"properties": {
"east": "low",
"north": "low",
@@ -132781,7 +132866,7 @@
}
},
{
- "id": 15305,
+ "id": 15774,
"properties": {
"east": "low",
"north": "low",
@@ -132792,7 +132877,7 @@
}
},
{
- "id": 15306,
+ "id": 15775,
"properties": {
"east": "low",
"north": "low",
@@ -132803,7 +132888,7 @@
}
},
{
- "id": 15307,
+ "id": 15776,
"properties": {
"east": "low",
"north": "low",
@@ -132814,7 +132899,7 @@
}
},
{
- "id": 15308,
+ "id": 15777,
"properties": {
"east": "low",
"north": "low",
@@ -132825,7 +132910,7 @@
}
},
{
- "id": 15309,
+ "id": 15778,
"properties": {
"east": "low",
"north": "low",
@@ -132836,7 +132921,7 @@
}
},
{
- "id": 15310,
+ "id": 15779,
"properties": {
"east": "low",
"north": "low",
@@ -132847,7 +132932,7 @@
}
},
{
- "id": 15311,
+ "id": 15780,
"properties": {
"east": "low",
"north": "low",
@@ -132858,7 +132943,7 @@
}
},
{
- "id": 15312,
+ "id": 15781,
"properties": {
"east": "low",
"north": "tall",
@@ -132869,7 +132954,7 @@
}
},
{
- "id": 15313,
+ "id": 15782,
"properties": {
"east": "low",
"north": "tall",
@@ -132880,7 +132965,7 @@
}
},
{
- "id": 15314,
+ "id": 15783,
"properties": {
"east": "low",
"north": "tall",
@@ -132891,7 +132976,7 @@
}
},
{
- "id": 15315,
+ "id": 15784,
"properties": {
"east": "low",
"north": "tall",
@@ -132902,7 +132987,7 @@
}
},
{
- "id": 15316,
+ "id": 15785,
"properties": {
"east": "low",
"north": "tall",
@@ -132913,7 +132998,7 @@
}
},
{
- "id": 15317,
+ "id": 15786,
"properties": {
"east": "low",
"north": "tall",
@@ -132924,7 +133009,7 @@
}
},
{
- "id": 15318,
+ "id": 15787,
"properties": {
"east": "low",
"north": "tall",
@@ -132935,7 +133020,7 @@
}
},
{
- "id": 15319,
+ "id": 15788,
"properties": {
"east": "low",
"north": "tall",
@@ -132946,7 +133031,7 @@
}
},
{
- "id": 15320,
+ "id": 15789,
"properties": {
"east": "low",
"north": "tall",
@@ -132957,7 +133042,7 @@
}
},
{
- "id": 15321,
+ "id": 15790,
"properties": {
"east": "low",
"north": "tall",
@@ -132968,7 +133053,7 @@
}
},
{
- "id": 15322,
+ "id": 15791,
"properties": {
"east": "low",
"north": "tall",
@@ -132979,7 +133064,7 @@
}
},
{
- "id": 15323,
+ "id": 15792,
"properties": {
"east": "low",
"north": "tall",
@@ -132990,7 +133075,7 @@
}
},
{
- "id": 15324,
+ "id": 15793,
"properties": {
"east": "low",
"north": "tall",
@@ -133001,7 +133086,7 @@
}
},
{
- "id": 15325,
+ "id": 15794,
"properties": {
"east": "low",
"north": "tall",
@@ -133012,7 +133097,7 @@
}
},
{
- "id": 15326,
+ "id": 15795,
"properties": {
"east": "low",
"north": "tall",
@@ -133023,7 +133108,7 @@
}
},
{
- "id": 15327,
+ "id": 15796,
"properties": {
"east": "low",
"north": "tall",
@@ -133034,7 +133119,7 @@
}
},
{
- "id": 15328,
+ "id": 15797,
"properties": {
"east": "low",
"north": "tall",
@@ -133045,7 +133130,7 @@
}
},
{
- "id": 15329,
+ "id": 15798,
"properties": {
"east": "low",
"north": "tall",
@@ -133056,7 +133141,7 @@
}
},
{
- "id": 15330,
+ "id": 15799,
"properties": {
"east": "low",
"north": "tall",
@@ -133067,7 +133152,7 @@
}
},
{
- "id": 15331,
+ "id": 15800,
"properties": {
"east": "low",
"north": "tall",
@@ -133078,7 +133163,7 @@
}
},
{
- "id": 15332,
+ "id": 15801,
"properties": {
"east": "low",
"north": "tall",
@@ -133089,7 +133174,7 @@
}
},
{
- "id": 15333,
+ "id": 15802,
"properties": {
"east": "low",
"north": "tall",
@@ -133100,7 +133185,7 @@
}
},
{
- "id": 15334,
+ "id": 15803,
"properties": {
"east": "low",
"north": "tall",
@@ -133111,7 +133196,7 @@
}
},
{
- "id": 15335,
+ "id": 15804,
"properties": {
"east": "low",
"north": "tall",
@@ -133122,7 +133207,7 @@
}
},
{
- "id": 15336,
+ "id": 15805,
"properties": {
"east": "low",
"north": "tall",
@@ -133133,7 +133218,7 @@
}
},
{
- "id": 15337,
+ "id": 15806,
"properties": {
"east": "low",
"north": "tall",
@@ -133144,7 +133229,7 @@
}
},
{
- "id": 15338,
+ "id": 15807,
"properties": {
"east": "low",
"north": "tall",
@@ -133155,7 +133240,7 @@
}
},
{
- "id": 15339,
+ "id": 15808,
"properties": {
"east": "low",
"north": "tall",
@@ -133166,7 +133251,7 @@
}
},
{
- "id": 15340,
+ "id": 15809,
"properties": {
"east": "low",
"north": "tall",
@@ -133177,7 +133262,7 @@
}
},
{
- "id": 15341,
+ "id": 15810,
"properties": {
"east": "low",
"north": "tall",
@@ -133188,7 +133273,7 @@
}
},
{
- "id": 15342,
+ "id": 15811,
"properties": {
"east": "low",
"north": "tall",
@@ -133199,7 +133284,7 @@
}
},
{
- "id": 15343,
+ "id": 15812,
"properties": {
"east": "low",
"north": "tall",
@@ -133210,7 +133295,7 @@
}
},
{
- "id": 15344,
+ "id": 15813,
"properties": {
"east": "low",
"north": "tall",
@@ -133221,7 +133306,7 @@
}
},
{
- "id": 15345,
+ "id": 15814,
"properties": {
"east": "low",
"north": "tall",
@@ -133232,7 +133317,7 @@
}
},
{
- "id": 15346,
+ "id": 15815,
"properties": {
"east": "low",
"north": "tall",
@@ -133243,7 +133328,7 @@
}
},
{
- "id": 15347,
+ "id": 15816,
"properties": {
"east": "low",
"north": "tall",
@@ -133254,7 +133339,7 @@
}
},
{
- "id": 15348,
+ "id": 15817,
"properties": {
"east": "tall",
"north": "none",
@@ -133265,7 +133350,7 @@
}
},
{
- "id": 15349,
+ "id": 15818,
"properties": {
"east": "tall",
"north": "none",
@@ -133276,7 +133361,7 @@
}
},
{
- "id": 15350,
+ "id": 15819,
"properties": {
"east": "tall",
"north": "none",
@@ -133287,7 +133372,7 @@
}
},
{
- "id": 15351,
+ "id": 15820,
"properties": {
"east": "tall",
"north": "none",
@@ -133298,7 +133383,7 @@
}
},
{
- "id": 15352,
+ "id": 15821,
"properties": {
"east": "tall",
"north": "none",
@@ -133309,7 +133394,7 @@
}
},
{
- "id": 15353,
+ "id": 15822,
"properties": {
"east": "tall",
"north": "none",
@@ -133320,7 +133405,7 @@
}
},
{
- "id": 15354,
+ "id": 15823,
"properties": {
"east": "tall",
"north": "none",
@@ -133331,7 +133416,7 @@
}
},
{
- "id": 15355,
+ "id": 15824,
"properties": {
"east": "tall",
"north": "none",
@@ -133342,7 +133427,7 @@
}
},
{
- "id": 15356,
+ "id": 15825,
"properties": {
"east": "tall",
"north": "none",
@@ -133353,7 +133438,7 @@
}
},
{
- "id": 15357,
+ "id": 15826,
"properties": {
"east": "tall",
"north": "none",
@@ -133364,7 +133449,7 @@
}
},
{
- "id": 15358,
+ "id": 15827,
"properties": {
"east": "tall",
"north": "none",
@@ -133375,7 +133460,7 @@
}
},
{
- "id": 15359,
+ "id": 15828,
"properties": {
"east": "tall",
"north": "none",
@@ -133386,7 +133471,7 @@
}
},
{
- "id": 15360,
+ "id": 15829,
"properties": {
"east": "tall",
"north": "none",
@@ -133397,7 +133482,7 @@
}
},
{
- "id": 15361,
+ "id": 15830,
"properties": {
"east": "tall",
"north": "none",
@@ -133408,7 +133493,7 @@
}
},
{
- "id": 15362,
+ "id": 15831,
"properties": {
"east": "tall",
"north": "none",
@@ -133419,7 +133504,7 @@
}
},
{
- "id": 15363,
+ "id": 15832,
"properties": {
"east": "tall",
"north": "none",
@@ -133430,7 +133515,7 @@
}
},
{
- "id": 15364,
+ "id": 15833,
"properties": {
"east": "tall",
"north": "none",
@@ -133441,7 +133526,7 @@
}
},
{
- "id": 15365,
+ "id": 15834,
"properties": {
"east": "tall",
"north": "none",
@@ -133452,7 +133537,7 @@
}
},
{
- "id": 15366,
+ "id": 15835,
"properties": {
"east": "tall",
"north": "none",
@@ -133463,7 +133548,7 @@
}
},
{
- "id": 15367,
+ "id": 15836,
"properties": {
"east": "tall",
"north": "none",
@@ -133474,7 +133559,7 @@
}
},
{
- "id": 15368,
+ "id": 15837,
"properties": {
"east": "tall",
"north": "none",
@@ -133485,7 +133570,7 @@
}
},
{
- "id": 15369,
+ "id": 15838,
"properties": {
"east": "tall",
"north": "none",
@@ -133496,7 +133581,7 @@
}
},
{
- "id": 15370,
+ "id": 15839,
"properties": {
"east": "tall",
"north": "none",
@@ -133507,7 +133592,7 @@
}
},
{
- "id": 15371,
+ "id": 15840,
"properties": {
"east": "tall",
"north": "none",
@@ -133518,7 +133603,7 @@
}
},
{
- "id": 15372,
+ "id": 15841,
"properties": {
"east": "tall",
"north": "none",
@@ -133529,7 +133614,7 @@
}
},
{
- "id": 15373,
+ "id": 15842,
"properties": {
"east": "tall",
"north": "none",
@@ -133540,7 +133625,7 @@
}
},
{
- "id": 15374,
+ "id": 15843,
"properties": {
"east": "tall",
"north": "none",
@@ -133551,7 +133636,7 @@
}
},
{
- "id": 15375,
+ "id": 15844,
"properties": {
"east": "tall",
"north": "none",
@@ -133562,7 +133647,7 @@
}
},
{
- "id": 15376,
+ "id": 15845,
"properties": {
"east": "tall",
"north": "none",
@@ -133573,7 +133658,7 @@
}
},
{
- "id": 15377,
+ "id": 15846,
"properties": {
"east": "tall",
"north": "none",
@@ -133584,7 +133669,7 @@
}
},
{
- "id": 15378,
+ "id": 15847,
"properties": {
"east": "tall",
"north": "none",
@@ -133595,7 +133680,7 @@
}
},
{
- "id": 15379,
+ "id": 15848,
"properties": {
"east": "tall",
"north": "none",
@@ -133606,7 +133691,7 @@
}
},
{
- "id": 15380,
+ "id": 15849,
"properties": {
"east": "tall",
"north": "none",
@@ -133617,7 +133702,7 @@
}
},
{
- "id": 15381,
+ "id": 15850,
"properties": {
"east": "tall",
"north": "none",
@@ -133628,7 +133713,7 @@
}
},
{
- "id": 15382,
+ "id": 15851,
"properties": {
"east": "tall",
"north": "none",
@@ -133639,7 +133724,7 @@
}
},
{
- "id": 15383,
+ "id": 15852,
"properties": {
"east": "tall",
"north": "none",
@@ -133650,7 +133735,7 @@
}
},
{
- "id": 15384,
+ "id": 15853,
"properties": {
"east": "tall",
"north": "low",
@@ -133661,7 +133746,7 @@
}
},
{
- "id": 15385,
+ "id": 15854,
"properties": {
"east": "tall",
"north": "low",
@@ -133672,7 +133757,7 @@
}
},
{
- "id": 15386,
+ "id": 15855,
"properties": {
"east": "tall",
"north": "low",
@@ -133683,7 +133768,7 @@
}
},
{
- "id": 15387,
+ "id": 15856,
"properties": {
"east": "tall",
"north": "low",
@@ -133694,7 +133779,7 @@
}
},
{
- "id": 15388,
+ "id": 15857,
"properties": {
"east": "tall",
"north": "low",
@@ -133705,7 +133790,7 @@
}
},
{
- "id": 15389,
+ "id": 15858,
"properties": {
"east": "tall",
"north": "low",
@@ -133716,7 +133801,7 @@
}
},
{
- "id": 15390,
+ "id": 15859,
"properties": {
"east": "tall",
"north": "low",
@@ -133727,7 +133812,7 @@
}
},
{
- "id": 15391,
+ "id": 15860,
"properties": {
"east": "tall",
"north": "low",
@@ -133738,7 +133823,7 @@
}
},
{
- "id": 15392,
+ "id": 15861,
"properties": {
"east": "tall",
"north": "low",
@@ -133749,7 +133834,7 @@
}
},
{
- "id": 15393,
+ "id": 15862,
"properties": {
"east": "tall",
"north": "low",
@@ -133760,7 +133845,7 @@
}
},
{
- "id": 15394,
+ "id": 15863,
"properties": {
"east": "tall",
"north": "low",
@@ -133771,7 +133856,7 @@
}
},
{
- "id": 15395,
+ "id": 15864,
"properties": {
"east": "tall",
"north": "low",
@@ -133782,7 +133867,7 @@
}
},
{
- "id": 15396,
+ "id": 15865,
"properties": {
"east": "tall",
"north": "low",
@@ -133793,7 +133878,7 @@
}
},
{
- "id": 15397,
+ "id": 15866,
"properties": {
"east": "tall",
"north": "low",
@@ -133804,7 +133889,7 @@
}
},
{
- "id": 15398,
+ "id": 15867,
"properties": {
"east": "tall",
"north": "low",
@@ -133815,7 +133900,7 @@
}
},
{
- "id": 15399,
+ "id": 15868,
"properties": {
"east": "tall",
"north": "low",
@@ -133826,7 +133911,7 @@
}
},
{
- "id": 15400,
+ "id": 15869,
"properties": {
"east": "tall",
"north": "low",
@@ -133837,7 +133922,7 @@
}
},
{
- "id": 15401,
+ "id": 15870,
"properties": {
"east": "tall",
"north": "low",
@@ -133848,7 +133933,7 @@
}
},
{
- "id": 15402,
+ "id": 15871,
"properties": {
"east": "tall",
"north": "low",
@@ -133859,7 +133944,7 @@
}
},
{
- "id": 15403,
+ "id": 15872,
"properties": {
"east": "tall",
"north": "low",
@@ -133870,7 +133955,7 @@
}
},
{
- "id": 15404,
+ "id": 15873,
"properties": {
"east": "tall",
"north": "low",
@@ -133881,7 +133966,7 @@
}
},
{
- "id": 15405,
+ "id": 15874,
"properties": {
"east": "tall",
"north": "low",
@@ -133892,7 +133977,7 @@
}
},
{
- "id": 15406,
+ "id": 15875,
"properties": {
"east": "tall",
"north": "low",
@@ -133903,7 +133988,7 @@
}
},
{
- "id": 15407,
+ "id": 15876,
"properties": {
"east": "tall",
"north": "low",
@@ -133914,7 +133999,7 @@
}
},
{
- "id": 15408,
+ "id": 15877,
"properties": {
"east": "tall",
"north": "low",
@@ -133925,7 +134010,7 @@
}
},
{
- "id": 15409,
+ "id": 15878,
"properties": {
"east": "tall",
"north": "low",
@@ -133936,7 +134021,7 @@
}
},
{
- "id": 15410,
+ "id": 15879,
"properties": {
"east": "tall",
"north": "low",
@@ -133947,7 +134032,7 @@
}
},
{
- "id": 15411,
+ "id": 15880,
"properties": {
"east": "tall",
"north": "low",
@@ -133958,7 +134043,7 @@
}
},
{
- "id": 15412,
+ "id": 15881,
"properties": {
"east": "tall",
"north": "low",
@@ -133969,7 +134054,7 @@
}
},
{
- "id": 15413,
+ "id": 15882,
"properties": {
"east": "tall",
"north": "low",
@@ -133980,7 +134065,7 @@
}
},
{
- "id": 15414,
+ "id": 15883,
"properties": {
"east": "tall",
"north": "low",
@@ -133991,7 +134076,7 @@
}
},
{
- "id": 15415,
+ "id": 15884,
"properties": {
"east": "tall",
"north": "low",
@@ -134002,7 +134087,7 @@
}
},
{
- "id": 15416,
+ "id": 15885,
"properties": {
"east": "tall",
"north": "low",
@@ -134013,7 +134098,7 @@
}
},
{
- "id": 15417,
+ "id": 15886,
"properties": {
"east": "tall",
"north": "low",
@@ -134024,7 +134109,7 @@
}
},
{
- "id": 15418,
+ "id": 15887,
"properties": {
"east": "tall",
"north": "low",
@@ -134035,7 +134120,7 @@
}
},
{
- "id": 15419,
+ "id": 15888,
"properties": {
"east": "tall",
"north": "low",
@@ -134046,7 +134131,7 @@
}
},
{
- "id": 15420,
+ "id": 15889,
"properties": {
"east": "tall",
"north": "tall",
@@ -134057,7 +134142,7 @@
}
},
{
- "id": 15421,
+ "id": 15890,
"properties": {
"east": "tall",
"north": "tall",
@@ -134068,7 +134153,7 @@
}
},
{
- "id": 15422,
+ "id": 15891,
"properties": {
"east": "tall",
"north": "tall",
@@ -134079,7 +134164,7 @@
}
},
{
- "id": 15423,
+ "id": 15892,
"properties": {
"east": "tall",
"north": "tall",
@@ -134090,7 +134175,7 @@
}
},
{
- "id": 15424,
+ "id": 15893,
"properties": {
"east": "tall",
"north": "tall",
@@ -134101,7 +134186,7 @@
}
},
{
- "id": 15425,
+ "id": 15894,
"properties": {
"east": "tall",
"north": "tall",
@@ -134112,7 +134197,7 @@
}
},
{
- "id": 15426,
+ "id": 15895,
"properties": {
"east": "tall",
"north": "tall",
@@ -134123,7 +134208,7 @@
}
},
{
- "id": 15427,
+ "id": 15896,
"properties": {
"east": "tall",
"north": "tall",
@@ -134134,7 +134219,7 @@
}
},
{
- "id": 15428,
+ "id": 15897,
"properties": {
"east": "tall",
"north": "tall",
@@ -134145,7 +134230,7 @@
}
},
{
- "id": 15429,
+ "id": 15898,
"properties": {
"east": "tall",
"north": "tall",
@@ -134156,7 +134241,7 @@
}
},
{
- "id": 15430,
+ "id": 15899,
"properties": {
"east": "tall",
"north": "tall",
@@ -134167,7 +134252,7 @@
}
},
{
- "id": 15431,
+ "id": 15900,
"properties": {
"east": "tall",
"north": "tall",
@@ -134178,7 +134263,7 @@
}
},
{
- "id": 15432,
+ "id": 15901,
"properties": {
"east": "tall",
"north": "tall",
@@ -134189,7 +134274,7 @@
}
},
{
- "id": 15433,
+ "id": 15902,
"properties": {
"east": "tall",
"north": "tall",
@@ -134200,7 +134285,7 @@
}
},
{
- "id": 15434,
+ "id": 15903,
"properties": {
"east": "tall",
"north": "tall",
@@ -134211,7 +134296,7 @@
}
},
{
- "id": 15435,
+ "id": 15904,
"properties": {
"east": "tall",
"north": "tall",
@@ -134222,7 +134307,7 @@
}
},
{
- "id": 15436,
+ "id": 15905,
"properties": {
"east": "tall",
"north": "tall",
@@ -134233,7 +134318,7 @@
}
},
{
- "id": 15437,
+ "id": 15906,
"properties": {
"east": "tall",
"north": "tall",
@@ -134244,7 +134329,7 @@
}
},
{
- "id": 15438,
+ "id": 15907,
"properties": {
"east": "tall",
"north": "tall",
@@ -134255,7 +134340,7 @@
}
},
{
- "id": 15439,
+ "id": 15908,
"properties": {
"east": "tall",
"north": "tall",
@@ -134266,7 +134351,7 @@
}
},
{
- "id": 15440,
+ "id": 15909,
"properties": {
"east": "tall",
"north": "tall",
@@ -134277,7 +134362,7 @@
}
},
{
- "id": 15441,
+ "id": 15910,
"properties": {
"east": "tall",
"north": "tall",
@@ -134288,7 +134373,7 @@
}
},
{
- "id": 15442,
+ "id": 15911,
"properties": {
"east": "tall",
"north": "tall",
@@ -134299,7 +134384,7 @@
}
},
{
- "id": 15443,
+ "id": 15912,
"properties": {
"east": "tall",
"north": "tall",
@@ -134310,7 +134395,7 @@
}
},
{
- "id": 15444,
+ "id": 15913,
"properties": {
"east": "tall",
"north": "tall",
@@ -134321,7 +134406,7 @@
}
},
{
- "id": 15445,
+ "id": 15914,
"properties": {
"east": "tall",
"north": "tall",
@@ -134332,7 +134417,7 @@
}
},
{
- "id": 15446,
+ "id": 15915,
"properties": {
"east": "tall",
"north": "tall",
@@ -134343,7 +134428,7 @@
}
},
{
- "id": 15447,
+ "id": 15916,
"properties": {
"east": "tall",
"north": "tall",
@@ -134354,7 +134439,7 @@
}
},
{
- "id": 15448,
+ "id": 15917,
"properties": {
"east": "tall",
"north": "tall",
@@ -134365,7 +134450,7 @@
}
},
{
- "id": 15449,
+ "id": 15918,
"properties": {
"east": "tall",
"north": "tall",
@@ -134376,7 +134461,7 @@
}
},
{
- "id": 15450,
+ "id": 15919,
"properties": {
"east": "tall",
"north": "tall",
@@ -134387,7 +134472,7 @@
}
},
{
- "id": 15451,
+ "id": 15920,
"properties": {
"east": "tall",
"north": "tall",
@@ -134398,7 +134483,7 @@
}
},
{
- "id": 15452,
+ "id": 15921,
"properties": {
"east": "tall",
"north": "tall",
@@ -134409,7 +134494,7 @@
}
},
{
- "id": 15453,
+ "id": 15922,
"properties": {
"east": "tall",
"north": "tall",
@@ -134420,7 +134505,7 @@
}
},
{
- "id": 15454,
+ "id": 15923,
"properties": {
"east": "tall",
"north": "tall",
@@ -134431,7 +134516,7 @@
}
},
{
- "id": 15455,
+ "id": 15924,
"properties": {
"east": "tall",
"north": "tall",
@@ -134451,7 +134536,7 @@
"states": [
{
"default": true,
- "id": 6538
+ "id": 6768
}
]
},
@@ -134477,84 +134562,84 @@
"states": [
{
"default": true,
- "id": 2063,
+ "id": 2106,
"properties": {
"type": "normal",
"facing": "north"
}
},
{
- "id": 2064,
+ "id": 2107,
"properties": {
"type": "sticky",
"facing": "north"
}
},
{
- "id": 2065,
+ "id": 2108,
"properties": {
"type": "normal",
"facing": "east"
}
},
{
- "id": 2066,
+ "id": 2109,
"properties": {
"type": "sticky",
"facing": "east"
}
},
{
- "id": 2067,
+ "id": 2110,
"properties": {
"type": "normal",
"facing": "south"
}
},
{
- "id": 2068,
+ "id": 2111,
"properties": {
"type": "sticky",
"facing": "south"
}
},
{
- "id": 2069,
+ "id": 2112,
"properties": {
"type": "normal",
"facing": "west"
}
},
{
- "id": 2070,
+ "id": 2113,
"properties": {
"type": "sticky",
"facing": "west"
}
},
{
- "id": 2071,
+ "id": 2114,
"properties": {
"type": "normal",
"facing": "up"
}
},
{
- "id": 2072,
+ "id": 2115,
"properties": {
"type": "sticky",
"facing": "up"
}
},
{
- "id": 2073,
+ "id": 2116,
"properties": {
"type": "normal",
"facing": "down"
}
},
{
- "id": 2074,
+ "id": 2117,
"properties": {
"type": "sticky",
"facing": "down"
@@ -134570,7 +134655,7 @@
"states": [
{
"default": true,
- "id": 24903
+ "id": 25372
}
]
},
@@ -134592,21 +134677,21 @@
},
"states": [
{
- "id": 11270,
+ "id": 11611,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11271,
+ "id": 11612,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11272,
+ "id": 11613,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -134614,21 +134699,21 @@
},
{
"default": true,
- "id": 11273,
+ "id": 11614,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11274,
+ "id": 11615,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11275,
+ "id": 11616,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -134669,7 +134754,7 @@
},
"states": [
{
- "id": 7189,
+ "id": 7419,
"properties": {
"facing": "north",
"half": "top",
@@ -134678,7 +134763,7 @@
}
},
{
- "id": 7190,
+ "id": 7420,
"properties": {
"facing": "north",
"half": "top",
@@ -134687,7 +134772,7 @@
}
},
{
- "id": 7191,
+ "id": 7421,
"properties": {
"facing": "north",
"half": "top",
@@ -134696,7 +134781,7 @@
}
},
{
- "id": 7192,
+ "id": 7422,
"properties": {
"facing": "north",
"half": "top",
@@ -134705,7 +134790,7 @@
}
},
{
- "id": 7193,
+ "id": 7423,
"properties": {
"facing": "north",
"half": "top",
@@ -134714,7 +134799,7 @@
}
},
{
- "id": 7194,
+ "id": 7424,
"properties": {
"facing": "north",
"half": "top",
@@ -134723,7 +134808,7 @@
}
},
{
- "id": 7195,
+ "id": 7425,
"properties": {
"facing": "north",
"half": "top",
@@ -134732,7 +134817,7 @@
}
},
{
- "id": 7196,
+ "id": 7426,
"properties": {
"facing": "north",
"half": "top",
@@ -134741,7 +134826,7 @@
}
},
{
- "id": 7197,
+ "id": 7427,
"properties": {
"facing": "north",
"half": "top",
@@ -134750,7 +134835,7 @@
}
},
{
- "id": 7198,
+ "id": 7428,
"properties": {
"facing": "north",
"half": "top",
@@ -134759,7 +134844,7 @@
}
},
{
- "id": 7199,
+ "id": 7429,
"properties": {
"facing": "north",
"half": "bottom",
@@ -134769,7 +134854,7 @@
},
{
"default": true,
- "id": 7200,
+ "id": 7430,
"properties": {
"facing": "north",
"half": "bottom",
@@ -134778,7 +134863,7 @@
}
},
{
- "id": 7201,
+ "id": 7431,
"properties": {
"facing": "north",
"half": "bottom",
@@ -134787,7 +134872,7 @@
}
},
{
- "id": 7202,
+ "id": 7432,
"properties": {
"facing": "north",
"half": "bottom",
@@ -134796,7 +134881,7 @@
}
},
{
- "id": 7203,
+ "id": 7433,
"properties": {
"facing": "north",
"half": "bottom",
@@ -134805,7 +134890,7 @@
}
},
{
- "id": 7204,
+ "id": 7434,
"properties": {
"facing": "north",
"half": "bottom",
@@ -134814,7 +134899,7 @@
}
},
{
- "id": 7205,
+ "id": 7435,
"properties": {
"facing": "north",
"half": "bottom",
@@ -134823,7 +134908,7 @@
}
},
{
- "id": 7206,
+ "id": 7436,
"properties": {
"facing": "north",
"half": "bottom",
@@ -134832,7 +134917,7 @@
}
},
{
- "id": 7207,
+ "id": 7437,
"properties": {
"facing": "north",
"half": "bottom",
@@ -134841,7 +134926,7 @@
}
},
{
- "id": 7208,
+ "id": 7438,
"properties": {
"facing": "north",
"half": "bottom",
@@ -134850,7 +134935,7 @@
}
},
{
- "id": 7209,
+ "id": 7439,
"properties": {
"facing": "south",
"half": "top",
@@ -134859,7 +134944,7 @@
}
},
{
- "id": 7210,
+ "id": 7440,
"properties": {
"facing": "south",
"half": "top",
@@ -134868,7 +134953,7 @@
}
},
{
- "id": 7211,
+ "id": 7441,
"properties": {
"facing": "south",
"half": "top",
@@ -134877,7 +134962,7 @@
}
},
{
- "id": 7212,
+ "id": 7442,
"properties": {
"facing": "south",
"half": "top",
@@ -134886,7 +134971,7 @@
}
},
{
- "id": 7213,
+ "id": 7443,
"properties": {
"facing": "south",
"half": "top",
@@ -134895,7 +134980,7 @@
}
},
{
- "id": 7214,
+ "id": 7444,
"properties": {
"facing": "south",
"half": "top",
@@ -134904,7 +134989,7 @@
}
},
{
- "id": 7215,
+ "id": 7445,
"properties": {
"facing": "south",
"half": "top",
@@ -134913,7 +134998,7 @@
}
},
{
- "id": 7216,
+ "id": 7446,
"properties": {
"facing": "south",
"half": "top",
@@ -134922,7 +135007,7 @@
}
},
{
- "id": 7217,
+ "id": 7447,
"properties": {
"facing": "south",
"half": "top",
@@ -134931,7 +135016,7 @@
}
},
{
- "id": 7218,
+ "id": 7448,
"properties": {
"facing": "south",
"half": "top",
@@ -134940,7 +135025,7 @@
}
},
{
- "id": 7219,
+ "id": 7449,
"properties": {
"facing": "south",
"half": "bottom",
@@ -134949,7 +135034,7 @@
}
},
{
- "id": 7220,
+ "id": 7450,
"properties": {
"facing": "south",
"half": "bottom",
@@ -134958,7 +135043,7 @@
}
},
{
- "id": 7221,
+ "id": 7451,
"properties": {
"facing": "south",
"half": "bottom",
@@ -134967,7 +135052,7 @@
}
},
{
- "id": 7222,
+ "id": 7452,
"properties": {
"facing": "south",
"half": "bottom",
@@ -134976,7 +135061,7 @@
}
},
{
- "id": 7223,
+ "id": 7453,
"properties": {
"facing": "south",
"half": "bottom",
@@ -134985,7 +135070,7 @@
}
},
{
- "id": 7224,
+ "id": 7454,
"properties": {
"facing": "south",
"half": "bottom",
@@ -134994,7 +135079,7 @@
}
},
{
- "id": 7225,
+ "id": 7455,
"properties": {
"facing": "south",
"half": "bottom",
@@ -135003,7 +135088,7 @@
}
},
{
- "id": 7226,
+ "id": 7456,
"properties": {
"facing": "south",
"half": "bottom",
@@ -135012,7 +135097,7 @@
}
},
{
- "id": 7227,
+ "id": 7457,
"properties": {
"facing": "south",
"half": "bottom",
@@ -135021,7 +135106,7 @@
}
},
{
- "id": 7228,
+ "id": 7458,
"properties": {
"facing": "south",
"half": "bottom",
@@ -135030,7 +135115,7 @@
}
},
{
- "id": 7229,
+ "id": 7459,
"properties": {
"facing": "west",
"half": "top",
@@ -135039,7 +135124,7 @@
}
},
{
- "id": 7230,
+ "id": 7460,
"properties": {
"facing": "west",
"half": "top",
@@ -135048,7 +135133,7 @@
}
},
{
- "id": 7231,
+ "id": 7461,
"properties": {
"facing": "west",
"half": "top",
@@ -135057,7 +135142,7 @@
}
},
{
- "id": 7232,
+ "id": 7462,
"properties": {
"facing": "west",
"half": "top",
@@ -135066,7 +135151,7 @@
}
},
{
- "id": 7233,
+ "id": 7463,
"properties": {
"facing": "west",
"half": "top",
@@ -135075,7 +135160,7 @@
}
},
{
- "id": 7234,
+ "id": 7464,
"properties": {
"facing": "west",
"half": "top",
@@ -135084,7 +135169,7 @@
}
},
{
- "id": 7235,
+ "id": 7465,
"properties": {
"facing": "west",
"half": "top",
@@ -135093,7 +135178,7 @@
}
},
{
- "id": 7236,
+ "id": 7466,
"properties": {
"facing": "west",
"half": "top",
@@ -135102,7 +135187,7 @@
}
},
{
- "id": 7237,
+ "id": 7467,
"properties": {
"facing": "west",
"half": "top",
@@ -135111,7 +135196,7 @@
}
},
{
- "id": 7238,
+ "id": 7468,
"properties": {
"facing": "west",
"half": "top",
@@ -135120,7 +135205,7 @@
}
},
{
- "id": 7239,
+ "id": 7469,
"properties": {
"facing": "west",
"half": "bottom",
@@ -135129,7 +135214,7 @@
}
},
{
- "id": 7240,
+ "id": 7470,
"properties": {
"facing": "west",
"half": "bottom",
@@ -135138,7 +135223,7 @@
}
},
{
- "id": 7241,
+ "id": 7471,
"properties": {
"facing": "west",
"half": "bottom",
@@ -135147,7 +135232,7 @@
}
},
{
- "id": 7242,
+ "id": 7472,
"properties": {
"facing": "west",
"half": "bottom",
@@ -135156,7 +135241,7 @@
}
},
{
- "id": 7243,
+ "id": 7473,
"properties": {
"facing": "west",
"half": "bottom",
@@ -135165,7 +135250,7 @@
}
},
{
- "id": 7244,
+ "id": 7474,
"properties": {
"facing": "west",
"half": "bottom",
@@ -135174,7 +135259,7 @@
}
},
{
- "id": 7245,
+ "id": 7475,
"properties": {
"facing": "west",
"half": "bottom",
@@ -135183,7 +135268,7 @@
}
},
{
- "id": 7246,
+ "id": 7476,
"properties": {
"facing": "west",
"half": "bottom",
@@ -135192,7 +135277,7 @@
}
},
{
- "id": 7247,
+ "id": 7477,
"properties": {
"facing": "west",
"half": "bottom",
@@ -135201,7 +135286,7 @@
}
},
{
- "id": 7248,
+ "id": 7478,
"properties": {
"facing": "west",
"half": "bottom",
@@ -135210,7 +135295,7 @@
}
},
{
- "id": 7249,
+ "id": 7479,
"properties": {
"facing": "east",
"half": "top",
@@ -135219,7 +135304,7 @@
}
},
{
- "id": 7250,
+ "id": 7480,
"properties": {
"facing": "east",
"half": "top",
@@ -135228,7 +135313,7 @@
}
},
{
- "id": 7251,
+ "id": 7481,
"properties": {
"facing": "east",
"half": "top",
@@ -135237,7 +135322,7 @@
}
},
{
- "id": 7252,
+ "id": 7482,
"properties": {
"facing": "east",
"half": "top",
@@ -135246,7 +135331,7 @@
}
},
{
- "id": 7253,
+ "id": 7483,
"properties": {
"facing": "east",
"half": "top",
@@ -135255,7 +135340,7 @@
}
},
{
- "id": 7254,
+ "id": 7484,
"properties": {
"facing": "east",
"half": "top",
@@ -135264,7 +135349,7 @@
}
},
{
- "id": 7255,
+ "id": 7485,
"properties": {
"facing": "east",
"half": "top",
@@ -135273,7 +135358,7 @@
}
},
{
- "id": 7256,
+ "id": 7486,
"properties": {
"facing": "east",
"half": "top",
@@ -135282,7 +135367,7 @@
}
},
{
- "id": 7257,
+ "id": 7487,
"properties": {
"facing": "east",
"half": "top",
@@ -135291,7 +135376,7 @@
}
},
{
- "id": 7258,
+ "id": 7488,
"properties": {
"facing": "east",
"half": "top",
@@ -135300,7 +135385,7 @@
}
},
{
- "id": 7259,
+ "id": 7489,
"properties": {
"facing": "east",
"half": "bottom",
@@ -135309,7 +135394,7 @@
}
},
{
- "id": 7260,
+ "id": 7490,
"properties": {
"facing": "east",
"half": "bottom",
@@ -135318,7 +135403,7 @@
}
},
{
- "id": 7261,
+ "id": 7491,
"properties": {
"facing": "east",
"half": "bottom",
@@ -135327,7 +135412,7 @@
}
},
{
- "id": 7262,
+ "id": 7492,
"properties": {
"facing": "east",
"half": "bottom",
@@ -135336,7 +135421,7 @@
}
},
{
- "id": 7263,
+ "id": 7493,
"properties": {
"facing": "east",
"half": "bottom",
@@ -135345,7 +135430,7 @@
}
},
{
- "id": 7264,
+ "id": 7494,
"properties": {
"facing": "east",
"half": "bottom",
@@ -135354,7 +135439,7 @@
}
},
{
- "id": 7265,
+ "id": 7495,
"properties": {
"facing": "east",
"half": "bottom",
@@ -135363,7 +135448,7 @@
}
},
{
- "id": 7266,
+ "id": 7496,
"properties": {
"facing": "east",
"half": "bottom",
@@ -135372,7 +135457,7 @@
}
},
{
- "id": 7267,
+ "id": 7497,
"properties": {
"facing": "east",
"half": "bottom",
@@ -135381,7 +135466,7 @@
}
},
{
- "id": 7268,
+ "id": 7498,
"properties": {
"facing": "east",
"half": "bottom",
@@ -135428,7 +135513,7 @@
},
"states": [
{
- "id": 16104,
+ "id": 16573,
"properties": {
"east": "none",
"north": "none",
@@ -135439,7 +135524,7 @@
}
},
{
- "id": 16105,
+ "id": 16574,
"properties": {
"east": "none",
"north": "none",
@@ -135450,7 +135535,7 @@
}
},
{
- "id": 16106,
+ "id": 16575,
"properties": {
"east": "none",
"north": "none",
@@ -135462,7 +135547,7 @@
},
{
"default": true,
- "id": 16107,
+ "id": 16576,
"properties": {
"east": "none",
"north": "none",
@@ -135473,7 +135558,7 @@
}
},
{
- "id": 16108,
+ "id": 16577,
"properties": {
"east": "none",
"north": "none",
@@ -135484,7 +135569,7 @@
}
},
{
- "id": 16109,
+ "id": 16578,
"properties": {
"east": "none",
"north": "none",
@@ -135495,7 +135580,7 @@
}
},
{
- "id": 16110,
+ "id": 16579,
"properties": {
"east": "none",
"north": "none",
@@ -135506,7 +135591,7 @@
}
},
{
- "id": 16111,
+ "id": 16580,
"properties": {
"east": "none",
"north": "none",
@@ -135517,7 +135602,7 @@
}
},
{
- "id": 16112,
+ "id": 16581,
"properties": {
"east": "none",
"north": "none",
@@ -135528,7 +135613,7 @@
}
},
{
- "id": 16113,
+ "id": 16582,
"properties": {
"east": "none",
"north": "none",
@@ -135539,7 +135624,7 @@
}
},
{
- "id": 16114,
+ "id": 16583,
"properties": {
"east": "none",
"north": "none",
@@ -135550,7 +135635,7 @@
}
},
{
- "id": 16115,
+ "id": 16584,
"properties": {
"east": "none",
"north": "none",
@@ -135561,7 +135646,7 @@
}
},
{
- "id": 16116,
+ "id": 16585,
"properties": {
"east": "none",
"north": "none",
@@ -135572,7 +135657,7 @@
}
},
{
- "id": 16117,
+ "id": 16586,
"properties": {
"east": "none",
"north": "none",
@@ -135583,7 +135668,7 @@
}
},
{
- "id": 16118,
+ "id": 16587,
"properties": {
"east": "none",
"north": "none",
@@ -135594,7 +135679,7 @@
}
},
{
- "id": 16119,
+ "id": 16588,
"properties": {
"east": "none",
"north": "none",
@@ -135605,7 +135690,7 @@
}
},
{
- "id": 16120,
+ "id": 16589,
"properties": {
"east": "none",
"north": "none",
@@ -135616,7 +135701,7 @@
}
},
{
- "id": 16121,
+ "id": 16590,
"properties": {
"east": "none",
"north": "none",
@@ -135627,7 +135712,7 @@
}
},
{
- "id": 16122,
+ "id": 16591,
"properties": {
"east": "none",
"north": "none",
@@ -135638,7 +135723,7 @@
}
},
{
- "id": 16123,
+ "id": 16592,
"properties": {
"east": "none",
"north": "none",
@@ -135649,7 +135734,7 @@
}
},
{
- "id": 16124,
+ "id": 16593,
"properties": {
"east": "none",
"north": "none",
@@ -135660,7 +135745,7 @@
}
},
{
- "id": 16125,
+ "id": 16594,
"properties": {
"east": "none",
"north": "none",
@@ -135671,7 +135756,7 @@
}
},
{
- "id": 16126,
+ "id": 16595,
"properties": {
"east": "none",
"north": "none",
@@ -135682,7 +135767,7 @@
}
},
{
- "id": 16127,
+ "id": 16596,
"properties": {
"east": "none",
"north": "none",
@@ -135693,7 +135778,7 @@
}
},
{
- "id": 16128,
+ "id": 16597,
"properties": {
"east": "none",
"north": "none",
@@ -135704,7 +135789,7 @@
}
},
{
- "id": 16129,
+ "id": 16598,
"properties": {
"east": "none",
"north": "none",
@@ -135715,7 +135800,7 @@
}
},
{
- "id": 16130,
+ "id": 16599,
"properties": {
"east": "none",
"north": "none",
@@ -135726,7 +135811,7 @@
}
},
{
- "id": 16131,
+ "id": 16600,
"properties": {
"east": "none",
"north": "none",
@@ -135737,7 +135822,7 @@
}
},
{
- "id": 16132,
+ "id": 16601,
"properties": {
"east": "none",
"north": "none",
@@ -135748,7 +135833,7 @@
}
},
{
- "id": 16133,
+ "id": 16602,
"properties": {
"east": "none",
"north": "none",
@@ -135759,7 +135844,7 @@
}
},
{
- "id": 16134,
+ "id": 16603,
"properties": {
"east": "none",
"north": "none",
@@ -135770,7 +135855,7 @@
}
},
{
- "id": 16135,
+ "id": 16604,
"properties": {
"east": "none",
"north": "none",
@@ -135781,7 +135866,7 @@
}
},
{
- "id": 16136,
+ "id": 16605,
"properties": {
"east": "none",
"north": "none",
@@ -135792,7 +135877,7 @@
}
},
{
- "id": 16137,
+ "id": 16606,
"properties": {
"east": "none",
"north": "none",
@@ -135803,7 +135888,7 @@
}
},
{
- "id": 16138,
+ "id": 16607,
"properties": {
"east": "none",
"north": "none",
@@ -135814,7 +135899,7 @@
}
},
{
- "id": 16139,
+ "id": 16608,
"properties": {
"east": "none",
"north": "none",
@@ -135825,7 +135910,7 @@
}
},
{
- "id": 16140,
+ "id": 16609,
"properties": {
"east": "none",
"north": "low",
@@ -135836,7 +135921,7 @@
}
},
{
- "id": 16141,
+ "id": 16610,
"properties": {
"east": "none",
"north": "low",
@@ -135847,7 +135932,7 @@
}
},
{
- "id": 16142,
+ "id": 16611,
"properties": {
"east": "none",
"north": "low",
@@ -135858,7 +135943,7 @@
}
},
{
- "id": 16143,
+ "id": 16612,
"properties": {
"east": "none",
"north": "low",
@@ -135869,7 +135954,7 @@
}
},
{
- "id": 16144,
+ "id": 16613,
"properties": {
"east": "none",
"north": "low",
@@ -135880,7 +135965,7 @@
}
},
{
- "id": 16145,
+ "id": 16614,
"properties": {
"east": "none",
"north": "low",
@@ -135891,7 +135976,7 @@
}
},
{
- "id": 16146,
+ "id": 16615,
"properties": {
"east": "none",
"north": "low",
@@ -135902,7 +135987,7 @@
}
},
{
- "id": 16147,
+ "id": 16616,
"properties": {
"east": "none",
"north": "low",
@@ -135913,7 +135998,7 @@
}
},
{
- "id": 16148,
+ "id": 16617,
"properties": {
"east": "none",
"north": "low",
@@ -135924,7 +136009,7 @@
}
},
{
- "id": 16149,
+ "id": 16618,
"properties": {
"east": "none",
"north": "low",
@@ -135935,7 +136020,7 @@
}
},
{
- "id": 16150,
+ "id": 16619,
"properties": {
"east": "none",
"north": "low",
@@ -135946,7 +136031,7 @@
}
},
{
- "id": 16151,
+ "id": 16620,
"properties": {
"east": "none",
"north": "low",
@@ -135957,7 +136042,7 @@
}
},
{
- "id": 16152,
+ "id": 16621,
"properties": {
"east": "none",
"north": "low",
@@ -135968,7 +136053,7 @@
}
},
{
- "id": 16153,
+ "id": 16622,
"properties": {
"east": "none",
"north": "low",
@@ -135979,7 +136064,7 @@
}
},
{
- "id": 16154,
+ "id": 16623,
"properties": {
"east": "none",
"north": "low",
@@ -135990,7 +136075,7 @@
}
},
{
- "id": 16155,
+ "id": 16624,
"properties": {
"east": "none",
"north": "low",
@@ -136001,7 +136086,7 @@
}
},
{
- "id": 16156,
+ "id": 16625,
"properties": {
"east": "none",
"north": "low",
@@ -136012,7 +136097,7 @@
}
},
{
- "id": 16157,
+ "id": 16626,
"properties": {
"east": "none",
"north": "low",
@@ -136023,7 +136108,7 @@
}
},
{
- "id": 16158,
+ "id": 16627,
"properties": {
"east": "none",
"north": "low",
@@ -136034,7 +136119,7 @@
}
},
{
- "id": 16159,
+ "id": 16628,
"properties": {
"east": "none",
"north": "low",
@@ -136045,7 +136130,7 @@
}
},
{
- "id": 16160,
+ "id": 16629,
"properties": {
"east": "none",
"north": "low",
@@ -136056,7 +136141,7 @@
}
},
{
- "id": 16161,
+ "id": 16630,
"properties": {
"east": "none",
"north": "low",
@@ -136067,7 +136152,7 @@
}
},
{
- "id": 16162,
+ "id": 16631,
"properties": {
"east": "none",
"north": "low",
@@ -136078,7 +136163,7 @@
}
},
{
- "id": 16163,
+ "id": 16632,
"properties": {
"east": "none",
"north": "low",
@@ -136089,7 +136174,7 @@
}
},
{
- "id": 16164,
+ "id": 16633,
"properties": {
"east": "none",
"north": "low",
@@ -136100,7 +136185,7 @@
}
},
{
- "id": 16165,
+ "id": 16634,
"properties": {
"east": "none",
"north": "low",
@@ -136111,7 +136196,7 @@
}
},
{
- "id": 16166,
+ "id": 16635,
"properties": {
"east": "none",
"north": "low",
@@ -136122,7 +136207,7 @@
}
},
{
- "id": 16167,
+ "id": 16636,
"properties": {
"east": "none",
"north": "low",
@@ -136133,7 +136218,7 @@
}
},
{
- "id": 16168,
+ "id": 16637,
"properties": {
"east": "none",
"north": "low",
@@ -136144,7 +136229,7 @@
}
},
{
- "id": 16169,
+ "id": 16638,
"properties": {
"east": "none",
"north": "low",
@@ -136155,7 +136240,7 @@
}
},
{
- "id": 16170,
+ "id": 16639,
"properties": {
"east": "none",
"north": "low",
@@ -136166,7 +136251,7 @@
}
},
{
- "id": 16171,
+ "id": 16640,
"properties": {
"east": "none",
"north": "low",
@@ -136177,7 +136262,7 @@
}
},
{
- "id": 16172,
+ "id": 16641,
"properties": {
"east": "none",
"north": "low",
@@ -136188,7 +136273,7 @@
}
},
{
- "id": 16173,
+ "id": 16642,
"properties": {
"east": "none",
"north": "low",
@@ -136199,7 +136284,7 @@
}
},
{
- "id": 16174,
+ "id": 16643,
"properties": {
"east": "none",
"north": "low",
@@ -136210,7 +136295,7 @@
}
},
{
- "id": 16175,
+ "id": 16644,
"properties": {
"east": "none",
"north": "low",
@@ -136221,7 +136306,7 @@
}
},
{
- "id": 16176,
+ "id": 16645,
"properties": {
"east": "none",
"north": "tall",
@@ -136232,7 +136317,7 @@
}
},
{
- "id": 16177,
+ "id": 16646,
"properties": {
"east": "none",
"north": "tall",
@@ -136243,7 +136328,7 @@
}
},
{
- "id": 16178,
+ "id": 16647,
"properties": {
"east": "none",
"north": "tall",
@@ -136254,7 +136339,7 @@
}
},
{
- "id": 16179,
+ "id": 16648,
"properties": {
"east": "none",
"north": "tall",
@@ -136265,7 +136350,7 @@
}
},
{
- "id": 16180,
+ "id": 16649,
"properties": {
"east": "none",
"north": "tall",
@@ -136276,7 +136361,7 @@
}
},
{
- "id": 16181,
+ "id": 16650,
"properties": {
"east": "none",
"north": "tall",
@@ -136287,7 +136372,7 @@
}
},
{
- "id": 16182,
+ "id": 16651,
"properties": {
"east": "none",
"north": "tall",
@@ -136298,7 +136383,7 @@
}
},
{
- "id": 16183,
+ "id": 16652,
"properties": {
"east": "none",
"north": "tall",
@@ -136309,7 +136394,7 @@
}
},
{
- "id": 16184,
+ "id": 16653,
"properties": {
"east": "none",
"north": "tall",
@@ -136320,7 +136405,7 @@
}
},
{
- "id": 16185,
+ "id": 16654,
"properties": {
"east": "none",
"north": "tall",
@@ -136331,7 +136416,7 @@
}
},
{
- "id": 16186,
+ "id": 16655,
"properties": {
"east": "none",
"north": "tall",
@@ -136342,7 +136427,7 @@
}
},
{
- "id": 16187,
+ "id": 16656,
"properties": {
"east": "none",
"north": "tall",
@@ -136353,7 +136438,7 @@
}
},
{
- "id": 16188,
+ "id": 16657,
"properties": {
"east": "none",
"north": "tall",
@@ -136364,7 +136449,7 @@
}
},
{
- "id": 16189,
+ "id": 16658,
"properties": {
"east": "none",
"north": "tall",
@@ -136375,7 +136460,7 @@
}
},
{
- "id": 16190,
+ "id": 16659,
"properties": {
"east": "none",
"north": "tall",
@@ -136386,7 +136471,7 @@
}
},
{
- "id": 16191,
+ "id": 16660,
"properties": {
"east": "none",
"north": "tall",
@@ -136397,7 +136482,7 @@
}
},
{
- "id": 16192,
+ "id": 16661,
"properties": {
"east": "none",
"north": "tall",
@@ -136408,7 +136493,7 @@
}
},
{
- "id": 16193,
+ "id": 16662,
"properties": {
"east": "none",
"north": "tall",
@@ -136419,7 +136504,7 @@
}
},
{
- "id": 16194,
+ "id": 16663,
"properties": {
"east": "none",
"north": "tall",
@@ -136430,7 +136515,7 @@
}
},
{
- "id": 16195,
+ "id": 16664,
"properties": {
"east": "none",
"north": "tall",
@@ -136441,7 +136526,7 @@
}
},
{
- "id": 16196,
+ "id": 16665,
"properties": {
"east": "none",
"north": "tall",
@@ -136452,7 +136537,7 @@
}
},
{
- "id": 16197,
+ "id": 16666,
"properties": {
"east": "none",
"north": "tall",
@@ -136463,7 +136548,7 @@
}
},
{
- "id": 16198,
+ "id": 16667,
"properties": {
"east": "none",
"north": "tall",
@@ -136474,7 +136559,7 @@
}
},
{
- "id": 16199,
+ "id": 16668,
"properties": {
"east": "none",
"north": "tall",
@@ -136485,7 +136570,7 @@
}
},
{
- "id": 16200,
+ "id": 16669,
"properties": {
"east": "none",
"north": "tall",
@@ -136496,7 +136581,7 @@
}
},
{
- "id": 16201,
+ "id": 16670,
"properties": {
"east": "none",
"north": "tall",
@@ -136507,7 +136592,7 @@
}
},
{
- "id": 16202,
+ "id": 16671,
"properties": {
"east": "none",
"north": "tall",
@@ -136518,7 +136603,7 @@
}
},
{
- "id": 16203,
+ "id": 16672,
"properties": {
"east": "none",
"north": "tall",
@@ -136529,7 +136614,7 @@
}
},
{
- "id": 16204,
+ "id": 16673,
"properties": {
"east": "none",
"north": "tall",
@@ -136540,7 +136625,7 @@
}
},
{
- "id": 16205,
+ "id": 16674,
"properties": {
"east": "none",
"north": "tall",
@@ -136551,7 +136636,7 @@
}
},
{
- "id": 16206,
+ "id": 16675,
"properties": {
"east": "none",
"north": "tall",
@@ -136562,7 +136647,7 @@
}
},
{
- "id": 16207,
+ "id": 16676,
"properties": {
"east": "none",
"north": "tall",
@@ -136573,7 +136658,7 @@
}
},
{
- "id": 16208,
+ "id": 16677,
"properties": {
"east": "none",
"north": "tall",
@@ -136584,7 +136669,7 @@
}
},
{
- "id": 16209,
+ "id": 16678,
"properties": {
"east": "none",
"north": "tall",
@@ -136595,7 +136680,7 @@
}
},
{
- "id": 16210,
+ "id": 16679,
"properties": {
"east": "none",
"north": "tall",
@@ -136606,7 +136691,7 @@
}
},
{
- "id": 16211,
+ "id": 16680,
"properties": {
"east": "none",
"north": "tall",
@@ -136617,7 +136702,7 @@
}
},
{
- "id": 16212,
+ "id": 16681,
"properties": {
"east": "low",
"north": "none",
@@ -136628,7 +136713,7 @@
}
},
{
- "id": 16213,
+ "id": 16682,
"properties": {
"east": "low",
"north": "none",
@@ -136639,7 +136724,7 @@
}
},
{
- "id": 16214,
+ "id": 16683,
"properties": {
"east": "low",
"north": "none",
@@ -136650,7 +136735,7 @@
}
},
{
- "id": 16215,
+ "id": 16684,
"properties": {
"east": "low",
"north": "none",
@@ -136661,7 +136746,7 @@
}
},
{
- "id": 16216,
+ "id": 16685,
"properties": {
"east": "low",
"north": "none",
@@ -136672,7 +136757,7 @@
}
},
{
- "id": 16217,
+ "id": 16686,
"properties": {
"east": "low",
"north": "none",
@@ -136683,7 +136768,7 @@
}
},
{
- "id": 16218,
+ "id": 16687,
"properties": {
"east": "low",
"north": "none",
@@ -136694,7 +136779,7 @@
}
},
{
- "id": 16219,
+ "id": 16688,
"properties": {
"east": "low",
"north": "none",
@@ -136705,7 +136790,7 @@
}
},
{
- "id": 16220,
+ "id": 16689,
"properties": {
"east": "low",
"north": "none",
@@ -136716,7 +136801,7 @@
}
},
{
- "id": 16221,
+ "id": 16690,
"properties": {
"east": "low",
"north": "none",
@@ -136727,7 +136812,7 @@
}
},
{
- "id": 16222,
+ "id": 16691,
"properties": {
"east": "low",
"north": "none",
@@ -136738,7 +136823,7 @@
}
},
{
- "id": 16223,
+ "id": 16692,
"properties": {
"east": "low",
"north": "none",
@@ -136749,7 +136834,7 @@
}
},
{
- "id": 16224,
+ "id": 16693,
"properties": {
"east": "low",
"north": "none",
@@ -136760,7 +136845,7 @@
}
},
{
- "id": 16225,
+ "id": 16694,
"properties": {
"east": "low",
"north": "none",
@@ -136771,7 +136856,7 @@
}
},
{
- "id": 16226,
+ "id": 16695,
"properties": {
"east": "low",
"north": "none",
@@ -136782,7 +136867,7 @@
}
},
{
- "id": 16227,
+ "id": 16696,
"properties": {
"east": "low",
"north": "none",
@@ -136793,7 +136878,7 @@
}
},
{
- "id": 16228,
+ "id": 16697,
"properties": {
"east": "low",
"north": "none",
@@ -136804,7 +136889,7 @@
}
},
{
- "id": 16229,
+ "id": 16698,
"properties": {
"east": "low",
"north": "none",
@@ -136815,7 +136900,7 @@
}
},
{
- "id": 16230,
+ "id": 16699,
"properties": {
"east": "low",
"north": "none",
@@ -136826,7 +136911,7 @@
}
},
{
- "id": 16231,
+ "id": 16700,
"properties": {
"east": "low",
"north": "none",
@@ -136837,7 +136922,7 @@
}
},
{
- "id": 16232,
+ "id": 16701,
"properties": {
"east": "low",
"north": "none",
@@ -136848,7 +136933,7 @@
}
},
{
- "id": 16233,
+ "id": 16702,
"properties": {
"east": "low",
"north": "none",
@@ -136859,7 +136944,7 @@
}
},
{
- "id": 16234,
+ "id": 16703,
"properties": {
"east": "low",
"north": "none",
@@ -136870,7 +136955,7 @@
}
},
{
- "id": 16235,
+ "id": 16704,
"properties": {
"east": "low",
"north": "none",
@@ -136881,7 +136966,7 @@
}
},
{
- "id": 16236,
+ "id": 16705,
"properties": {
"east": "low",
"north": "none",
@@ -136892,7 +136977,7 @@
}
},
{
- "id": 16237,
+ "id": 16706,
"properties": {
"east": "low",
"north": "none",
@@ -136903,7 +136988,7 @@
}
},
{
- "id": 16238,
+ "id": 16707,
"properties": {
"east": "low",
"north": "none",
@@ -136914,7 +136999,7 @@
}
},
{
- "id": 16239,
+ "id": 16708,
"properties": {
"east": "low",
"north": "none",
@@ -136925,7 +137010,7 @@
}
},
{
- "id": 16240,
+ "id": 16709,
"properties": {
"east": "low",
"north": "none",
@@ -136936,7 +137021,7 @@
}
},
{
- "id": 16241,
+ "id": 16710,
"properties": {
"east": "low",
"north": "none",
@@ -136947,7 +137032,7 @@
}
},
{
- "id": 16242,
+ "id": 16711,
"properties": {
"east": "low",
"north": "none",
@@ -136958,7 +137043,7 @@
}
},
{
- "id": 16243,
+ "id": 16712,
"properties": {
"east": "low",
"north": "none",
@@ -136969,7 +137054,7 @@
}
},
{
- "id": 16244,
+ "id": 16713,
"properties": {
"east": "low",
"north": "none",
@@ -136980,7 +137065,7 @@
}
},
{
- "id": 16245,
+ "id": 16714,
"properties": {
"east": "low",
"north": "none",
@@ -136991,7 +137076,7 @@
}
},
{
- "id": 16246,
+ "id": 16715,
"properties": {
"east": "low",
"north": "none",
@@ -137002,7 +137087,7 @@
}
},
{
- "id": 16247,
+ "id": 16716,
"properties": {
"east": "low",
"north": "none",
@@ -137013,7 +137098,7 @@
}
},
{
- "id": 16248,
+ "id": 16717,
"properties": {
"east": "low",
"north": "low",
@@ -137024,7 +137109,7 @@
}
},
{
- "id": 16249,
+ "id": 16718,
"properties": {
"east": "low",
"north": "low",
@@ -137035,7 +137120,7 @@
}
},
{
- "id": 16250,
+ "id": 16719,
"properties": {
"east": "low",
"north": "low",
@@ -137046,7 +137131,7 @@
}
},
{
- "id": 16251,
+ "id": 16720,
"properties": {
"east": "low",
"north": "low",
@@ -137057,7 +137142,7 @@
}
},
{
- "id": 16252,
+ "id": 16721,
"properties": {
"east": "low",
"north": "low",
@@ -137068,7 +137153,7 @@
}
},
{
- "id": 16253,
+ "id": 16722,
"properties": {
"east": "low",
"north": "low",
@@ -137079,7 +137164,7 @@
}
},
{
- "id": 16254,
+ "id": 16723,
"properties": {
"east": "low",
"north": "low",
@@ -137090,7 +137175,7 @@
}
},
{
- "id": 16255,
+ "id": 16724,
"properties": {
"east": "low",
"north": "low",
@@ -137101,7 +137186,7 @@
}
},
{
- "id": 16256,
+ "id": 16725,
"properties": {
"east": "low",
"north": "low",
@@ -137112,7 +137197,7 @@
}
},
{
- "id": 16257,
+ "id": 16726,
"properties": {
"east": "low",
"north": "low",
@@ -137123,7 +137208,7 @@
}
},
{
- "id": 16258,
+ "id": 16727,
"properties": {
"east": "low",
"north": "low",
@@ -137134,7 +137219,7 @@
}
},
{
- "id": 16259,
+ "id": 16728,
"properties": {
"east": "low",
"north": "low",
@@ -137145,7 +137230,7 @@
}
},
{
- "id": 16260,
+ "id": 16729,
"properties": {
"east": "low",
"north": "low",
@@ -137156,7 +137241,7 @@
}
},
{
- "id": 16261,
+ "id": 16730,
"properties": {
"east": "low",
"north": "low",
@@ -137167,7 +137252,7 @@
}
},
{
- "id": 16262,
+ "id": 16731,
"properties": {
"east": "low",
"north": "low",
@@ -137178,7 +137263,7 @@
}
},
{
- "id": 16263,
+ "id": 16732,
"properties": {
"east": "low",
"north": "low",
@@ -137189,7 +137274,7 @@
}
},
{
- "id": 16264,
+ "id": 16733,
"properties": {
"east": "low",
"north": "low",
@@ -137200,7 +137285,7 @@
}
},
{
- "id": 16265,
+ "id": 16734,
"properties": {
"east": "low",
"north": "low",
@@ -137211,7 +137296,7 @@
}
},
{
- "id": 16266,
+ "id": 16735,
"properties": {
"east": "low",
"north": "low",
@@ -137222,7 +137307,7 @@
}
},
{
- "id": 16267,
+ "id": 16736,
"properties": {
"east": "low",
"north": "low",
@@ -137233,7 +137318,7 @@
}
},
{
- "id": 16268,
+ "id": 16737,
"properties": {
"east": "low",
"north": "low",
@@ -137244,7 +137329,7 @@
}
},
{
- "id": 16269,
+ "id": 16738,
"properties": {
"east": "low",
"north": "low",
@@ -137255,7 +137340,7 @@
}
},
{
- "id": 16270,
+ "id": 16739,
"properties": {
"east": "low",
"north": "low",
@@ -137266,7 +137351,7 @@
}
},
{
- "id": 16271,
+ "id": 16740,
"properties": {
"east": "low",
"north": "low",
@@ -137277,7 +137362,7 @@
}
},
{
- "id": 16272,
+ "id": 16741,
"properties": {
"east": "low",
"north": "low",
@@ -137288,7 +137373,7 @@
}
},
{
- "id": 16273,
+ "id": 16742,
"properties": {
"east": "low",
"north": "low",
@@ -137299,7 +137384,7 @@
}
},
{
- "id": 16274,
+ "id": 16743,
"properties": {
"east": "low",
"north": "low",
@@ -137310,7 +137395,7 @@
}
},
{
- "id": 16275,
+ "id": 16744,
"properties": {
"east": "low",
"north": "low",
@@ -137321,7 +137406,7 @@
}
},
{
- "id": 16276,
+ "id": 16745,
"properties": {
"east": "low",
"north": "low",
@@ -137332,7 +137417,7 @@
}
},
{
- "id": 16277,
+ "id": 16746,
"properties": {
"east": "low",
"north": "low",
@@ -137343,7 +137428,7 @@
}
},
{
- "id": 16278,
+ "id": 16747,
"properties": {
"east": "low",
"north": "low",
@@ -137354,7 +137439,7 @@
}
},
{
- "id": 16279,
+ "id": 16748,
"properties": {
"east": "low",
"north": "low",
@@ -137365,7 +137450,7 @@
}
},
{
- "id": 16280,
+ "id": 16749,
"properties": {
"east": "low",
"north": "low",
@@ -137376,7 +137461,7 @@
}
},
{
- "id": 16281,
+ "id": 16750,
"properties": {
"east": "low",
"north": "low",
@@ -137387,7 +137472,7 @@
}
},
{
- "id": 16282,
+ "id": 16751,
"properties": {
"east": "low",
"north": "low",
@@ -137398,7 +137483,7 @@
}
},
{
- "id": 16283,
+ "id": 16752,
"properties": {
"east": "low",
"north": "low",
@@ -137409,7 +137494,7 @@
}
},
{
- "id": 16284,
+ "id": 16753,
"properties": {
"east": "low",
"north": "tall",
@@ -137420,7 +137505,7 @@
}
},
{
- "id": 16285,
+ "id": 16754,
"properties": {
"east": "low",
"north": "tall",
@@ -137431,7 +137516,7 @@
}
},
{
- "id": 16286,
+ "id": 16755,
"properties": {
"east": "low",
"north": "tall",
@@ -137442,7 +137527,7 @@
}
},
{
- "id": 16287,
+ "id": 16756,
"properties": {
"east": "low",
"north": "tall",
@@ -137453,7 +137538,7 @@
}
},
{
- "id": 16288,
+ "id": 16757,
"properties": {
"east": "low",
"north": "tall",
@@ -137464,7 +137549,7 @@
}
},
{
- "id": 16289,
+ "id": 16758,
"properties": {
"east": "low",
"north": "tall",
@@ -137475,7 +137560,7 @@
}
},
{
- "id": 16290,
+ "id": 16759,
"properties": {
"east": "low",
"north": "tall",
@@ -137486,7 +137571,7 @@
}
},
{
- "id": 16291,
+ "id": 16760,
"properties": {
"east": "low",
"north": "tall",
@@ -137497,7 +137582,7 @@
}
},
{
- "id": 16292,
+ "id": 16761,
"properties": {
"east": "low",
"north": "tall",
@@ -137508,7 +137593,7 @@
}
},
{
- "id": 16293,
+ "id": 16762,
"properties": {
"east": "low",
"north": "tall",
@@ -137519,7 +137604,7 @@
}
},
{
- "id": 16294,
+ "id": 16763,
"properties": {
"east": "low",
"north": "tall",
@@ -137530,7 +137615,7 @@
}
},
{
- "id": 16295,
+ "id": 16764,
"properties": {
"east": "low",
"north": "tall",
@@ -137541,7 +137626,7 @@
}
},
{
- "id": 16296,
+ "id": 16765,
"properties": {
"east": "low",
"north": "tall",
@@ -137552,7 +137637,7 @@
}
},
{
- "id": 16297,
+ "id": 16766,
"properties": {
"east": "low",
"north": "tall",
@@ -137563,7 +137648,7 @@
}
},
{
- "id": 16298,
+ "id": 16767,
"properties": {
"east": "low",
"north": "tall",
@@ -137574,7 +137659,7 @@
}
},
{
- "id": 16299,
+ "id": 16768,
"properties": {
"east": "low",
"north": "tall",
@@ -137585,7 +137670,7 @@
}
},
{
- "id": 16300,
+ "id": 16769,
"properties": {
"east": "low",
"north": "tall",
@@ -137596,7 +137681,7 @@
}
},
{
- "id": 16301,
+ "id": 16770,
"properties": {
"east": "low",
"north": "tall",
@@ -137607,7 +137692,7 @@
}
},
{
- "id": 16302,
+ "id": 16771,
"properties": {
"east": "low",
"north": "tall",
@@ -137618,7 +137703,7 @@
}
},
{
- "id": 16303,
+ "id": 16772,
"properties": {
"east": "low",
"north": "tall",
@@ -137629,7 +137714,7 @@
}
},
{
- "id": 16304,
+ "id": 16773,
"properties": {
"east": "low",
"north": "tall",
@@ -137640,7 +137725,7 @@
}
},
{
- "id": 16305,
+ "id": 16774,
"properties": {
"east": "low",
"north": "tall",
@@ -137651,7 +137736,7 @@
}
},
{
- "id": 16306,
+ "id": 16775,
"properties": {
"east": "low",
"north": "tall",
@@ -137662,7 +137747,7 @@
}
},
{
- "id": 16307,
+ "id": 16776,
"properties": {
"east": "low",
"north": "tall",
@@ -137673,7 +137758,7 @@
}
},
{
- "id": 16308,
+ "id": 16777,
"properties": {
"east": "low",
"north": "tall",
@@ -137684,7 +137769,7 @@
}
},
{
- "id": 16309,
+ "id": 16778,
"properties": {
"east": "low",
"north": "tall",
@@ -137695,7 +137780,7 @@
}
},
{
- "id": 16310,
+ "id": 16779,
"properties": {
"east": "low",
"north": "tall",
@@ -137706,7 +137791,7 @@
}
},
{
- "id": 16311,
+ "id": 16780,
"properties": {
"east": "low",
"north": "tall",
@@ -137717,7 +137802,7 @@
}
},
{
- "id": 16312,
+ "id": 16781,
"properties": {
"east": "low",
"north": "tall",
@@ -137728,7 +137813,7 @@
}
},
{
- "id": 16313,
+ "id": 16782,
"properties": {
"east": "low",
"north": "tall",
@@ -137739,7 +137824,7 @@
}
},
{
- "id": 16314,
+ "id": 16783,
"properties": {
"east": "low",
"north": "tall",
@@ -137750,7 +137835,7 @@
}
},
{
- "id": 16315,
+ "id": 16784,
"properties": {
"east": "low",
"north": "tall",
@@ -137761,7 +137846,7 @@
}
},
{
- "id": 16316,
+ "id": 16785,
"properties": {
"east": "low",
"north": "tall",
@@ -137772,7 +137857,7 @@
}
},
{
- "id": 16317,
+ "id": 16786,
"properties": {
"east": "low",
"north": "tall",
@@ -137783,7 +137868,7 @@
}
},
{
- "id": 16318,
+ "id": 16787,
"properties": {
"east": "low",
"north": "tall",
@@ -137794,7 +137879,7 @@
}
},
{
- "id": 16319,
+ "id": 16788,
"properties": {
"east": "low",
"north": "tall",
@@ -137805,7 +137890,7 @@
}
},
{
- "id": 16320,
+ "id": 16789,
"properties": {
"east": "tall",
"north": "none",
@@ -137816,7 +137901,7 @@
}
},
{
- "id": 16321,
+ "id": 16790,
"properties": {
"east": "tall",
"north": "none",
@@ -137827,7 +137912,7 @@
}
},
{
- "id": 16322,
+ "id": 16791,
"properties": {
"east": "tall",
"north": "none",
@@ -137838,7 +137923,7 @@
}
},
{
- "id": 16323,
+ "id": 16792,
"properties": {
"east": "tall",
"north": "none",
@@ -137849,7 +137934,7 @@
}
},
{
- "id": 16324,
+ "id": 16793,
"properties": {
"east": "tall",
"north": "none",
@@ -137860,7 +137945,7 @@
}
},
{
- "id": 16325,
+ "id": 16794,
"properties": {
"east": "tall",
"north": "none",
@@ -137871,7 +137956,7 @@
}
},
{
- "id": 16326,
+ "id": 16795,
"properties": {
"east": "tall",
"north": "none",
@@ -137882,7 +137967,7 @@
}
},
{
- "id": 16327,
+ "id": 16796,
"properties": {
"east": "tall",
"north": "none",
@@ -137893,7 +137978,7 @@
}
},
{
- "id": 16328,
+ "id": 16797,
"properties": {
"east": "tall",
"north": "none",
@@ -137904,7 +137989,7 @@
}
},
{
- "id": 16329,
+ "id": 16798,
"properties": {
"east": "tall",
"north": "none",
@@ -137915,7 +138000,7 @@
}
},
{
- "id": 16330,
+ "id": 16799,
"properties": {
"east": "tall",
"north": "none",
@@ -137926,7 +138011,7 @@
}
},
{
- "id": 16331,
+ "id": 16800,
"properties": {
"east": "tall",
"north": "none",
@@ -137937,7 +138022,7 @@
}
},
{
- "id": 16332,
+ "id": 16801,
"properties": {
"east": "tall",
"north": "none",
@@ -137948,7 +138033,7 @@
}
},
{
- "id": 16333,
+ "id": 16802,
"properties": {
"east": "tall",
"north": "none",
@@ -137959,7 +138044,7 @@
}
},
{
- "id": 16334,
+ "id": 16803,
"properties": {
"east": "tall",
"north": "none",
@@ -137970,7 +138055,7 @@
}
},
{
- "id": 16335,
+ "id": 16804,
"properties": {
"east": "tall",
"north": "none",
@@ -137981,7 +138066,7 @@
}
},
{
- "id": 16336,
+ "id": 16805,
"properties": {
"east": "tall",
"north": "none",
@@ -137992,7 +138077,7 @@
}
},
{
- "id": 16337,
+ "id": 16806,
"properties": {
"east": "tall",
"north": "none",
@@ -138003,7 +138088,7 @@
}
},
{
- "id": 16338,
+ "id": 16807,
"properties": {
"east": "tall",
"north": "none",
@@ -138014,7 +138099,7 @@
}
},
{
- "id": 16339,
+ "id": 16808,
"properties": {
"east": "tall",
"north": "none",
@@ -138025,7 +138110,7 @@
}
},
{
- "id": 16340,
+ "id": 16809,
"properties": {
"east": "tall",
"north": "none",
@@ -138036,7 +138121,7 @@
}
},
{
- "id": 16341,
+ "id": 16810,
"properties": {
"east": "tall",
"north": "none",
@@ -138047,7 +138132,7 @@
}
},
{
- "id": 16342,
+ "id": 16811,
"properties": {
"east": "tall",
"north": "none",
@@ -138058,7 +138143,7 @@
}
},
{
- "id": 16343,
+ "id": 16812,
"properties": {
"east": "tall",
"north": "none",
@@ -138069,7 +138154,7 @@
}
},
{
- "id": 16344,
+ "id": 16813,
"properties": {
"east": "tall",
"north": "none",
@@ -138080,7 +138165,7 @@
}
},
{
- "id": 16345,
+ "id": 16814,
"properties": {
"east": "tall",
"north": "none",
@@ -138091,7 +138176,7 @@
}
},
{
- "id": 16346,
+ "id": 16815,
"properties": {
"east": "tall",
"north": "none",
@@ -138102,7 +138187,7 @@
}
},
{
- "id": 16347,
+ "id": 16816,
"properties": {
"east": "tall",
"north": "none",
@@ -138113,7 +138198,7 @@
}
},
{
- "id": 16348,
+ "id": 16817,
"properties": {
"east": "tall",
"north": "none",
@@ -138124,7 +138209,7 @@
}
},
{
- "id": 16349,
+ "id": 16818,
"properties": {
"east": "tall",
"north": "none",
@@ -138135,7 +138220,7 @@
}
},
{
- "id": 16350,
+ "id": 16819,
"properties": {
"east": "tall",
"north": "none",
@@ -138146,7 +138231,7 @@
}
},
{
- "id": 16351,
+ "id": 16820,
"properties": {
"east": "tall",
"north": "none",
@@ -138157,7 +138242,7 @@
}
},
{
- "id": 16352,
+ "id": 16821,
"properties": {
"east": "tall",
"north": "none",
@@ -138168,7 +138253,7 @@
}
},
{
- "id": 16353,
+ "id": 16822,
"properties": {
"east": "tall",
"north": "none",
@@ -138179,7 +138264,7 @@
}
},
{
- "id": 16354,
+ "id": 16823,
"properties": {
"east": "tall",
"north": "none",
@@ -138190,7 +138275,7 @@
}
},
{
- "id": 16355,
+ "id": 16824,
"properties": {
"east": "tall",
"north": "none",
@@ -138201,7 +138286,7 @@
}
},
{
- "id": 16356,
+ "id": 16825,
"properties": {
"east": "tall",
"north": "low",
@@ -138212,7 +138297,7 @@
}
},
{
- "id": 16357,
+ "id": 16826,
"properties": {
"east": "tall",
"north": "low",
@@ -138223,7 +138308,7 @@
}
},
{
- "id": 16358,
+ "id": 16827,
"properties": {
"east": "tall",
"north": "low",
@@ -138234,7 +138319,7 @@
}
},
{
- "id": 16359,
+ "id": 16828,
"properties": {
"east": "tall",
"north": "low",
@@ -138245,7 +138330,7 @@
}
},
{
- "id": 16360,
+ "id": 16829,
"properties": {
"east": "tall",
"north": "low",
@@ -138256,7 +138341,7 @@
}
},
{
- "id": 16361,
+ "id": 16830,
"properties": {
"east": "tall",
"north": "low",
@@ -138267,7 +138352,7 @@
}
},
{
- "id": 16362,
+ "id": 16831,
"properties": {
"east": "tall",
"north": "low",
@@ -138278,7 +138363,7 @@
}
},
{
- "id": 16363,
+ "id": 16832,
"properties": {
"east": "tall",
"north": "low",
@@ -138289,7 +138374,7 @@
}
},
{
- "id": 16364,
+ "id": 16833,
"properties": {
"east": "tall",
"north": "low",
@@ -138300,7 +138385,7 @@
}
},
{
- "id": 16365,
+ "id": 16834,
"properties": {
"east": "tall",
"north": "low",
@@ -138311,7 +138396,7 @@
}
},
{
- "id": 16366,
+ "id": 16835,
"properties": {
"east": "tall",
"north": "low",
@@ -138322,7 +138407,7 @@
}
},
{
- "id": 16367,
+ "id": 16836,
"properties": {
"east": "tall",
"north": "low",
@@ -138333,7 +138418,7 @@
}
},
{
- "id": 16368,
+ "id": 16837,
"properties": {
"east": "tall",
"north": "low",
@@ -138344,7 +138429,7 @@
}
},
{
- "id": 16369,
+ "id": 16838,
"properties": {
"east": "tall",
"north": "low",
@@ -138355,7 +138440,7 @@
}
},
{
- "id": 16370,
+ "id": 16839,
"properties": {
"east": "tall",
"north": "low",
@@ -138366,7 +138451,7 @@
}
},
{
- "id": 16371,
+ "id": 16840,
"properties": {
"east": "tall",
"north": "low",
@@ -138377,7 +138462,7 @@
}
},
{
- "id": 16372,
+ "id": 16841,
"properties": {
"east": "tall",
"north": "low",
@@ -138388,7 +138473,7 @@
}
},
{
- "id": 16373,
+ "id": 16842,
"properties": {
"east": "tall",
"north": "low",
@@ -138399,7 +138484,7 @@
}
},
{
- "id": 16374,
+ "id": 16843,
"properties": {
"east": "tall",
"north": "low",
@@ -138410,7 +138495,7 @@
}
},
{
- "id": 16375,
+ "id": 16844,
"properties": {
"east": "tall",
"north": "low",
@@ -138421,7 +138506,7 @@
}
},
{
- "id": 16376,
+ "id": 16845,
"properties": {
"east": "tall",
"north": "low",
@@ -138432,7 +138517,7 @@
}
},
{
- "id": 16377,
+ "id": 16846,
"properties": {
"east": "tall",
"north": "low",
@@ -138443,7 +138528,7 @@
}
},
{
- "id": 16378,
+ "id": 16847,
"properties": {
"east": "tall",
"north": "low",
@@ -138454,7 +138539,7 @@
}
},
{
- "id": 16379,
+ "id": 16848,
"properties": {
"east": "tall",
"north": "low",
@@ -138465,7 +138550,7 @@
}
},
{
- "id": 16380,
+ "id": 16849,
"properties": {
"east": "tall",
"north": "low",
@@ -138476,7 +138561,7 @@
}
},
{
- "id": 16381,
+ "id": 16850,
"properties": {
"east": "tall",
"north": "low",
@@ -138487,7 +138572,7 @@
}
},
{
- "id": 16382,
+ "id": 16851,
"properties": {
"east": "tall",
"north": "low",
@@ -138498,7 +138583,7 @@
}
},
{
- "id": 16383,
+ "id": 16852,
"properties": {
"east": "tall",
"north": "low",
@@ -138509,7 +138594,7 @@
}
},
{
- "id": 16384,
+ "id": 16853,
"properties": {
"east": "tall",
"north": "low",
@@ -138520,7 +138605,7 @@
}
},
{
- "id": 16385,
+ "id": 16854,
"properties": {
"east": "tall",
"north": "low",
@@ -138531,7 +138616,7 @@
}
},
{
- "id": 16386,
+ "id": 16855,
"properties": {
"east": "tall",
"north": "low",
@@ -138542,7 +138627,7 @@
}
},
{
- "id": 16387,
+ "id": 16856,
"properties": {
"east": "tall",
"north": "low",
@@ -138553,7 +138638,7 @@
}
},
{
- "id": 16388,
+ "id": 16857,
"properties": {
"east": "tall",
"north": "low",
@@ -138564,7 +138649,7 @@
}
},
{
- "id": 16389,
+ "id": 16858,
"properties": {
"east": "tall",
"north": "low",
@@ -138575,7 +138660,7 @@
}
},
{
- "id": 16390,
+ "id": 16859,
"properties": {
"east": "tall",
"north": "low",
@@ -138586,7 +138671,7 @@
}
},
{
- "id": 16391,
+ "id": 16860,
"properties": {
"east": "tall",
"north": "low",
@@ -138597,7 +138682,7 @@
}
},
{
- "id": 16392,
+ "id": 16861,
"properties": {
"east": "tall",
"north": "tall",
@@ -138608,7 +138693,7 @@
}
},
{
- "id": 16393,
+ "id": 16862,
"properties": {
"east": "tall",
"north": "tall",
@@ -138619,7 +138704,7 @@
}
},
{
- "id": 16394,
+ "id": 16863,
"properties": {
"east": "tall",
"north": "tall",
@@ -138630,7 +138715,7 @@
}
},
{
- "id": 16395,
+ "id": 16864,
"properties": {
"east": "tall",
"north": "tall",
@@ -138641,7 +138726,7 @@
}
},
{
- "id": 16396,
+ "id": 16865,
"properties": {
"east": "tall",
"north": "tall",
@@ -138652,7 +138737,7 @@
}
},
{
- "id": 16397,
+ "id": 16866,
"properties": {
"east": "tall",
"north": "tall",
@@ -138663,7 +138748,7 @@
}
},
{
- "id": 16398,
+ "id": 16867,
"properties": {
"east": "tall",
"north": "tall",
@@ -138674,7 +138759,7 @@
}
},
{
- "id": 16399,
+ "id": 16868,
"properties": {
"east": "tall",
"north": "tall",
@@ -138685,7 +138770,7 @@
}
},
{
- "id": 16400,
+ "id": 16869,
"properties": {
"east": "tall",
"north": "tall",
@@ -138696,7 +138781,7 @@
}
},
{
- "id": 16401,
+ "id": 16870,
"properties": {
"east": "tall",
"north": "tall",
@@ -138707,7 +138792,7 @@
}
},
{
- "id": 16402,
+ "id": 16871,
"properties": {
"east": "tall",
"north": "tall",
@@ -138718,7 +138803,7 @@
}
},
{
- "id": 16403,
+ "id": 16872,
"properties": {
"east": "tall",
"north": "tall",
@@ -138729,7 +138814,7 @@
}
},
{
- "id": 16404,
+ "id": 16873,
"properties": {
"east": "tall",
"north": "tall",
@@ -138740,7 +138825,7 @@
}
},
{
- "id": 16405,
+ "id": 16874,
"properties": {
"east": "tall",
"north": "tall",
@@ -138751,7 +138836,7 @@
}
},
{
- "id": 16406,
+ "id": 16875,
"properties": {
"east": "tall",
"north": "tall",
@@ -138762,7 +138847,7 @@
}
},
{
- "id": 16407,
+ "id": 16876,
"properties": {
"east": "tall",
"north": "tall",
@@ -138773,7 +138858,7 @@
}
},
{
- "id": 16408,
+ "id": 16877,
"properties": {
"east": "tall",
"north": "tall",
@@ -138784,7 +138869,7 @@
}
},
{
- "id": 16409,
+ "id": 16878,
"properties": {
"east": "tall",
"north": "tall",
@@ -138795,7 +138880,7 @@
}
},
{
- "id": 16410,
+ "id": 16879,
"properties": {
"east": "tall",
"north": "tall",
@@ -138806,7 +138891,7 @@
}
},
{
- "id": 16411,
+ "id": 16880,
"properties": {
"east": "tall",
"north": "tall",
@@ -138817,7 +138902,7 @@
}
},
{
- "id": 16412,
+ "id": 16881,
"properties": {
"east": "tall",
"north": "tall",
@@ -138828,7 +138913,7 @@
}
},
{
- "id": 16413,
+ "id": 16882,
"properties": {
"east": "tall",
"north": "tall",
@@ -138839,7 +138924,7 @@
}
},
{
- "id": 16414,
+ "id": 16883,
"properties": {
"east": "tall",
"north": "tall",
@@ -138850,7 +138935,7 @@
}
},
{
- "id": 16415,
+ "id": 16884,
"properties": {
"east": "tall",
"north": "tall",
@@ -138861,7 +138946,7 @@
}
},
{
- "id": 16416,
+ "id": 16885,
"properties": {
"east": "tall",
"north": "tall",
@@ -138872,7 +138957,7 @@
}
},
{
- "id": 16417,
+ "id": 16886,
"properties": {
"east": "tall",
"north": "tall",
@@ -138883,7 +138968,7 @@
}
},
{
- "id": 16418,
+ "id": 16887,
"properties": {
"east": "tall",
"north": "tall",
@@ -138894,7 +138979,7 @@
}
},
{
- "id": 16419,
+ "id": 16888,
"properties": {
"east": "tall",
"north": "tall",
@@ -138905,7 +138990,7 @@
}
},
{
- "id": 16420,
+ "id": 16889,
"properties": {
"east": "tall",
"north": "tall",
@@ -138916,7 +139001,7 @@
}
},
{
- "id": 16421,
+ "id": 16890,
"properties": {
"east": "tall",
"north": "tall",
@@ -138927,7 +139012,7 @@
}
},
{
- "id": 16422,
+ "id": 16891,
"properties": {
"east": "tall",
"north": "tall",
@@ -138938,7 +139023,7 @@
}
},
{
- "id": 16423,
+ "id": 16892,
"properties": {
"east": "tall",
"north": "tall",
@@ -138949,7 +139034,7 @@
}
},
{
- "id": 16424,
+ "id": 16893,
"properties": {
"east": "tall",
"north": "tall",
@@ -138960,7 +139045,7 @@
}
},
{
- "id": 16425,
+ "id": 16894,
"properties": {
"east": "tall",
"north": "tall",
@@ -138971,7 +139056,7 @@
}
},
{
- "id": 16426,
+ "id": 16895,
"properties": {
"east": "tall",
"north": "tall",
@@ -138982,7 +139067,7 @@
}
},
{
- "id": 16427,
+ "id": 16896,
"properties": {
"east": "tall",
"north": "tall",
@@ -139002,7 +139087,7 @@
"states": [
{
"default": true,
- "id": 6542
+ "id": 6772
}
]
},
@@ -139020,20 +139105,20 @@
},
"states": [
{
- "id": 156,
+ "id": 165,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 157,
+ "id": 166,
"properties": {
"axis": "y"
}
},
{
- "id": 158,
+ "id": 167,
"properties": {
"axis": "z"
}
@@ -139074,7 +139159,7 @@
"states": [
{
"default": true,
- "id": 6677,
+ "id": 6907,
"properties": {
"down": "true",
"east": "true",
@@ -139085,7 +139170,7 @@
}
},
{
- "id": 6678,
+ "id": 6908,
"properties": {
"down": "true",
"east": "true",
@@ -139096,7 +139181,7 @@
}
},
{
- "id": 6679,
+ "id": 6909,
"properties": {
"down": "true",
"east": "true",
@@ -139107,7 +139192,7 @@
}
},
{
- "id": 6680,
+ "id": 6910,
"properties": {
"down": "true",
"east": "true",
@@ -139118,7 +139203,7 @@
}
},
{
- "id": 6681,
+ "id": 6911,
"properties": {
"down": "true",
"east": "true",
@@ -139129,7 +139214,7 @@
}
},
{
- "id": 6682,
+ "id": 6912,
"properties": {
"down": "true",
"east": "true",
@@ -139140,7 +139225,7 @@
}
},
{
- "id": 6683,
+ "id": 6913,
"properties": {
"down": "true",
"east": "true",
@@ -139151,7 +139236,7 @@
}
},
{
- "id": 6684,
+ "id": 6914,
"properties": {
"down": "true",
"east": "true",
@@ -139162,7 +139247,7 @@
}
},
{
- "id": 6685,
+ "id": 6915,
"properties": {
"down": "true",
"east": "true",
@@ -139173,7 +139258,7 @@
}
},
{
- "id": 6686,
+ "id": 6916,
"properties": {
"down": "true",
"east": "true",
@@ -139184,7 +139269,7 @@
}
},
{
- "id": 6687,
+ "id": 6917,
"properties": {
"down": "true",
"east": "true",
@@ -139195,7 +139280,7 @@
}
},
{
- "id": 6688,
+ "id": 6918,
"properties": {
"down": "true",
"east": "true",
@@ -139206,7 +139291,7 @@
}
},
{
- "id": 6689,
+ "id": 6919,
"properties": {
"down": "true",
"east": "true",
@@ -139217,7 +139302,7 @@
}
},
{
- "id": 6690,
+ "id": 6920,
"properties": {
"down": "true",
"east": "true",
@@ -139228,7 +139313,7 @@
}
},
{
- "id": 6691,
+ "id": 6921,
"properties": {
"down": "true",
"east": "true",
@@ -139239,7 +139324,7 @@
}
},
{
- "id": 6692,
+ "id": 6922,
"properties": {
"down": "true",
"east": "true",
@@ -139250,7 +139335,7 @@
}
},
{
- "id": 6693,
+ "id": 6923,
"properties": {
"down": "true",
"east": "false",
@@ -139261,7 +139346,7 @@
}
},
{
- "id": 6694,
+ "id": 6924,
"properties": {
"down": "true",
"east": "false",
@@ -139272,7 +139357,7 @@
}
},
{
- "id": 6695,
+ "id": 6925,
"properties": {
"down": "true",
"east": "false",
@@ -139283,7 +139368,7 @@
}
},
{
- "id": 6696,
+ "id": 6926,
"properties": {
"down": "true",
"east": "false",
@@ -139294,7 +139379,7 @@
}
},
{
- "id": 6697,
+ "id": 6927,
"properties": {
"down": "true",
"east": "false",
@@ -139305,7 +139390,7 @@
}
},
{
- "id": 6698,
+ "id": 6928,
"properties": {
"down": "true",
"east": "false",
@@ -139316,7 +139401,7 @@
}
},
{
- "id": 6699,
+ "id": 6929,
"properties": {
"down": "true",
"east": "false",
@@ -139327,7 +139412,7 @@
}
},
{
- "id": 6700,
+ "id": 6930,
"properties": {
"down": "true",
"east": "false",
@@ -139338,7 +139423,7 @@
}
},
{
- "id": 6701,
+ "id": 6931,
"properties": {
"down": "true",
"east": "false",
@@ -139349,7 +139434,7 @@
}
},
{
- "id": 6702,
+ "id": 6932,
"properties": {
"down": "true",
"east": "false",
@@ -139360,7 +139445,7 @@
}
},
{
- "id": 6703,
+ "id": 6933,
"properties": {
"down": "true",
"east": "false",
@@ -139371,7 +139456,7 @@
}
},
{
- "id": 6704,
+ "id": 6934,
"properties": {
"down": "true",
"east": "false",
@@ -139382,7 +139467,7 @@
}
},
{
- "id": 6705,
+ "id": 6935,
"properties": {
"down": "true",
"east": "false",
@@ -139393,7 +139478,7 @@
}
},
{
- "id": 6706,
+ "id": 6936,
"properties": {
"down": "true",
"east": "false",
@@ -139404,7 +139489,7 @@
}
},
{
- "id": 6707,
+ "id": 6937,
"properties": {
"down": "true",
"east": "false",
@@ -139415,7 +139500,7 @@
}
},
{
- "id": 6708,
+ "id": 6938,
"properties": {
"down": "true",
"east": "false",
@@ -139426,7 +139511,7 @@
}
},
{
- "id": 6709,
+ "id": 6939,
"properties": {
"down": "false",
"east": "true",
@@ -139437,7 +139522,7 @@
}
},
{
- "id": 6710,
+ "id": 6940,
"properties": {
"down": "false",
"east": "true",
@@ -139448,7 +139533,7 @@
}
},
{
- "id": 6711,
+ "id": 6941,
"properties": {
"down": "false",
"east": "true",
@@ -139459,7 +139544,7 @@
}
},
{
- "id": 6712,
+ "id": 6942,
"properties": {
"down": "false",
"east": "true",
@@ -139470,7 +139555,7 @@
}
},
{
- "id": 6713,
+ "id": 6943,
"properties": {
"down": "false",
"east": "true",
@@ -139481,7 +139566,7 @@
}
},
{
- "id": 6714,
+ "id": 6944,
"properties": {
"down": "false",
"east": "true",
@@ -139492,7 +139577,7 @@
}
},
{
- "id": 6715,
+ "id": 6945,
"properties": {
"down": "false",
"east": "true",
@@ -139503,7 +139588,7 @@
}
},
{
- "id": 6716,
+ "id": 6946,
"properties": {
"down": "false",
"east": "true",
@@ -139514,7 +139599,7 @@
}
},
{
- "id": 6717,
+ "id": 6947,
"properties": {
"down": "false",
"east": "true",
@@ -139525,7 +139610,7 @@
}
},
{
- "id": 6718,
+ "id": 6948,
"properties": {
"down": "false",
"east": "true",
@@ -139536,7 +139621,7 @@
}
},
{
- "id": 6719,
+ "id": 6949,
"properties": {
"down": "false",
"east": "true",
@@ -139547,7 +139632,7 @@
}
},
{
- "id": 6720,
+ "id": 6950,
"properties": {
"down": "false",
"east": "true",
@@ -139558,7 +139643,7 @@
}
},
{
- "id": 6721,
+ "id": 6951,
"properties": {
"down": "false",
"east": "true",
@@ -139569,7 +139654,7 @@
}
},
{
- "id": 6722,
+ "id": 6952,
"properties": {
"down": "false",
"east": "true",
@@ -139580,7 +139665,7 @@
}
},
{
- "id": 6723,
+ "id": 6953,
"properties": {
"down": "false",
"east": "true",
@@ -139591,7 +139676,7 @@
}
},
{
- "id": 6724,
+ "id": 6954,
"properties": {
"down": "false",
"east": "true",
@@ -139602,7 +139687,7 @@
}
},
{
- "id": 6725,
+ "id": 6955,
"properties": {
"down": "false",
"east": "false",
@@ -139613,7 +139698,7 @@
}
},
{
- "id": 6726,
+ "id": 6956,
"properties": {
"down": "false",
"east": "false",
@@ -139624,7 +139709,7 @@
}
},
{
- "id": 6727,
+ "id": 6957,
"properties": {
"down": "false",
"east": "false",
@@ -139635,7 +139720,7 @@
}
},
{
- "id": 6728,
+ "id": 6958,
"properties": {
"down": "false",
"east": "false",
@@ -139646,7 +139731,7 @@
}
},
{
- "id": 6729,
+ "id": 6959,
"properties": {
"down": "false",
"east": "false",
@@ -139657,7 +139742,7 @@
}
},
{
- "id": 6730,
+ "id": 6960,
"properties": {
"down": "false",
"east": "false",
@@ -139668,7 +139753,7 @@
}
},
{
- "id": 6731,
+ "id": 6961,
"properties": {
"down": "false",
"east": "false",
@@ -139679,7 +139764,7 @@
}
},
{
- "id": 6732,
+ "id": 6962,
"properties": {
"down": "false",
"east": "false",
@@ -139690,7 +139775,7 @@
}
},
{
- "id": 6733,
+ "id": 6963,
"properties": {
"down": "false",
"east": "false",
@@ -139701,7 +139786,7 @@
}
},
{
- "id": 6734,
+ "id": 6964,
"properties": {
"down": "false",
"east": "false",
@@ -139712,7 +139797,7 @@
}
},
{
- "id": 6735,
+ "id": 6965,
"properties": {
"down": "false",
"east": "false",
@@ -139723,7 +139808,7 @@
}
},
{
- "id": 6736,
+ "id": 6966,
"properties": {
"down": "false",
"east": "false",
@@ -139734,7 +139819,7 @@
}
},
{
- "id": 6737,
+ "id": 6967,
"properties": {
"down": "false",
"east": "false",
@@ -139745,7 +139830,7 @@
}
},
{
- "id": 6738,
+ "id": 6968,
"properties": {
"down": "false",
"east": "false",
@@ -139756,7 +139841,7 @@
}
},
{
- "id": 6739,
+ "id": 6969,
"properties": {
"down": "false",
"east": "false",
@@ -139767,7 +139852,7 @@
}
},
{
- "id": 6740,
+ "id": 6970,
"properties": {
"down": "false",
"east": "false",
@@ -139792,14 +139877,14 @@
},
"states": [
{
- "id": 7269,
+ "id": 7499,
"properties": {
"snowy": "true"
}
},
{
"default": true,
- "id": 7270,
+ "id": 7500,
"properties": {
"snowy": "false"
}
@@ -139835,7 +139920,7 @@
},
"states": [
{
- "id": 7273,
+ "id": 7503,
"properties": {
"east": "true",
"north": "true",
@@ -139845,7 +139930,7 @@
}
},
{
- "id": 7274,
+ "id": 7504,
"properties": {
"east": "true",
"north": "true",
@@ -139855,7 +139940,7 @@
}
},
{
- "id": 7275,
+ "id": 7505,
"properties": {
"east": "true",
"north": "true",
@@ -139865,7 +139950,7 @@
}
},
{
- "id": 7276,
+ "id": 7506,
"properties": {
"east": "true",
"north": "true",
@@ -139875,7 +139960,7 @@
}
},
{
- "id": 7277,
+ "id": 7507,
"properties": {
"east": "true",
"north": "true",
@@ -139885,7 +139970,7 @@
}
},
{
- "id": 7278,
+ "id": 7508,
"properties": {
"east": "true",
"north": "true",
@@ -139895,7 +139980,7 @@
}
},
{
- "id": 7279,
+ "id": 7509,
"properties": {
"east": "true",
"north": "true",
@@ -139905,7 +139990,7 @@
}
},
{
- "id": 7280,
+ "id": 7510,
"properties": {
"east": "true",
"north": "true",
@@ -139915,7 +140000,7 @@
}
},
{
- "id": 7281,
+ "id": 7511,
"properties": {
"east": "true",
"north": "false",
@@ -139925,7 +140010,7 @@
}
},
{
- "id": 7282,
+ "id": 7512,
"properties": {
"east": "true",
"north": "false",
@@ -139935,7 +140020,7 @@
}
},
{
- "id": 7283,
+ "id": 7513,
"properties": {
"east": "true",
"north": "false",
@@ -139945,7 +140030,7 @@
}
},
{
- "id": 7284,
+ "id": 7514,
"properties": {
"east": "true",
"north": "false",
@@ -139955,7 +140040,7 @@
}
},
{
- "id": 7285,
+ "id": 7515,
"properties": {
"east": "true",
"north": "false",
@@ -139965,7 +140050,7 @@
}
},
{
- "id": 7286,
+ "id": 7516,
"properties": {
"east": "true",
"north": "false",
@@ -139975,7 +140060,7 @@
}
},
{
- "id": 7287,
+ "id": 7517,
"properties": {
"east": "true",
"north": "false",
@@ -139985,7 +140070,7 @@
}
},
{
- "id": 7288,
+ "id": 7518,
"properties": {
"east": "true",
"north": "false",
@@ -139995,7 +140080,7 @@
}
},
{
- "id": 7289,
+ "id": 7519,
"properties": {
"east": "false",
"north": "true",
@@ -140005,7 +140090,7 @@
}
},
{
- "id": 7290,
+ "id": 7520,
"properties": {
"east": "false",
"north": "true",
@@ -140015,7 +140100,7 @@
}
},
{
- "id": 7291,
+ "id": 7521,
"properties": {
"east": "false",
"north": "true",
@@ -140025,7 +140110,7 @@
}
},
{
- "id": 7292,
+ "id": 7522,
"properties": {
"east": "false",
"north": "true",
@@ -140035,7 +140120,7 @@
}
},
{
- "id": 7293,
+ "id": 7523,
"properties": {
"east": "false",
"north": "true",
@@ -140045,7 +140130,7 @@
}
},
{
- "id": 7294,
+ "id": 7524,
"properties": {
"east": "false",
"north": "true",
@@ -140055,7 +140140,7 @@
}
},
{
- "id": 7295,
+ "id": 7525,
"properties": {
"east": "false",
"north": "true",
@@ -140065,7 +140150,7 @@
}
},
{
- "id": 7296,
+ "id": 7526,
"properties": {
"east": "false",
"north": "true",
@@ -140075,7 +140160,7 @@
}
},
{
- "id": 7297,
+ "id": 7527,
"properties": {
"east": "false",
"north": "false",
@@ -140085,7 +140170,7 @@
}
},
{
- "id": 7298,
+ "id": 7528,
"properties": {
"east": "false",
"north": "false",
@@ -140095,7 +140180,7 @@
}
},
{
- "id": 7299,
+ "id": 7529,
"properties": {
"east": "false",
"north": "false",
@@ -140105,7 +140190,7 @@
}
},
{
- "id": 7300,
+ "id": 7530,
"properties": {
"east": "false",
"north": "false",
@@ -140115,7 +140200,7 @@
}
},
{
- "id": 7301,
+ "id": 7531,
"properties": {
"east": "false",
"north": "false",
@@ -140125,7 +140210,7 @@
}
},
{
- "id": 7302,
+ "id": 7532,
"properties": {
"east": "false",
"north": "false",
@@ -140135,7 +140220,7 @@
}
},
{
- "id": 7303,
+ "id": 7533,
"properties": {
"east": "false",
"north": "false",
@@ -140146,7 +140231,7 @@
},
{
"default": true,
- "id": 7304,
+ "id": 7534,
"properties": {
"east": "false",
"north": "false",
@@ -140175,21 +140260,21 @@
},
"states": [
{
- "id": 11276,
+ "id": 11617,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11277,
+ "id": 11618,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11278,
+ "id": 11619,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -140197,21 +140282,21 @@
},
{
"default": true,
- "id": 11279,
+ "id": 11620,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11280,
+ "id": 11621,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11281,
+ "id": 11622,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -140252,7 +140337,7 @@
},
"states": [
{
- "id": 7305,
+ "id": 7535,
"properties": {
"facing": "north",
"half": "top",
@@ -140261,7 +140346,7 @@
}
},
{
- "id": 7306,
+ "id": 7536,
"properties": {
"facing": "north",
"half": "top",
@@ -140270,7 +140355,7 @@
}
},
{
- "id": 7307,
+ "id": 7537,
"properties": {
"facing": "north",
"half": "top",
@@ -140279,7 +140364,7 @@
}
},
{
- "id": 7308,
+ "id": 7538,
"properties": {
"facing": "north",
"half": "top",
@@ -140288,7 +140373,7 @@
}
},
{
- "id": 7309,
+ "id": 7539,
"properties": {
"facing": "north",
"half": "top",
@@ -140297,7 +140382,7 @@
}
},
{
- "id": 7310,
+ "id": 7540,
"properties": {
"facing": "north",
"half": "top",
@@ -140306,7 +140391,7 @@
}
},
{
- "id": 7311,
+ "id": 7541,
"properties": {
"facing": "north",
"half": "top",
@@ -140315,7 +140400,7 @@
}
},
{
- "id": 7312,
+ "id": 7542,
"properties": {
"facing": "north",
"half": "top",
@@ -140324,7 +140409,7 @@
}
},
{
- "id": 7313,
+ "id": 7543,
"properties": {
"facing": "north",
"half": "top",
@@ -140333,7 +140418,7 @@
}
},
{
- "id": 7314,
+ "id": 7544,
"properties": {
"facing": "north",
"half": "top",
@@ -140342,7 +140427,7 @@
}
},
{
- "id": 7315,
+ "id": 7545,
"properties": {
"facing": "north",
"half": "bottom",
@@ -140352,7 +140437,7 @@
},
{
"default": true,
- "id": 7316,
+ "id": 7546,
"properties": {
"facing": "north",
"half": "bottom",
@@ -140361,7 +140446,7 @@
}
},
{
- "id": 7317,
+ "id": 7547,
"properties": {
"facing": "north",
"half": "bottom",
@@ -140370,7 +140455,7 @@
}
},
{
- "id": 7318,
+ "id": 7548,
"properties": {
"facing": "north",
"half": "bottom",
@@ -140379,7 +140464,7 @@
}
},
{
- "id": 7319,
+ "id": 7549,
"properties": {
"facing": "north",
"half": "bottom",
@@ -140388,7 +140473,7 @@
}
},
{
- "id": 7320,
+ "id": 7550,
"properties": {
"facing": "north",
"half": "bottom",
@@ -140397,7 +140482,7 @@
}
},
{
- "id": 7321,
+ "id": 7551,
"properties": {
"facing": "north",
"half": "bottom",
@@ -140406,7 +140491,7 @@
}
},
{
- "id": 7322,
+ "id": 7552,
"properties": {
"facing": "north",
"half": "bottom",
@@ -140415,7 +140500,7 @@
}
},
{
- "id": 7323,
+ "id": 7553,
"properties": {
"facing": "north",
"half": "bottom",
@@ -140424,7 +140509,7 @@
}
},
{
- "id": 7324,
+ "id": 7554,
"properties": {
"facing": "north",
"half": "bottom",
@@ -140433,7 +140518,7 @@
}
},
{
- "id": 7325,
+ "id": 7555,
"properties": {
"facing": "south",
"half": "top",
@@ -140442,7 +140527,7 @@
}
},
{
- "id": 7326,
+ "id": 7556,
"properties": {
"facing": "south",
"half": "top",
@@ -140451,7 +140536,7 @@
}
},
{
- "id": 7327,
+ "id": 7557,
"properties": {
"facing": "south",
"half": "top",
@@ -140460,7 +140545,7 @@
}
},
{
- "id": 7328,
+ "id": 7558,
"properties": {
"facing": "south",
"half": "top",
@@ -140469,7 +140554,7 @@
}
},
{
- "id": 7329,
+ "id": 7559,
"properties": {
"facing": "south",
"half": "top",
@@ -140478,7 +140563,7 @@
}
},
{
- "id": 7330,
+ "id": 7560,
"properties": {
"facing": "south",
"half": "top",
@@ -140487,7 +140572,7 @@
}
},
{
- "id": 7331,
+ "id": 7561,
"properties": {
"facing": "south",
"half": "top",
@@ -140496,7 +140581,7 @@
}
},
{
- "id": 7332,
+ "id": 7562,
"properties": {
"facing": "south",
"half": "top",
@@ -140505,7 +140590,7 @@
}
},
{
- "id": 7333,
+ "id": 7563,
"properties": {
"facing": "south",
"half": "top",
@@ -140514,7 +140599,7 @@
}
},
{
- "id": 7334,
+ "id": 7564,
"properties": {
"facing": "south",
"half": "top",
@@ -140523,7 +140608,7 @@
}
},
{
- "id": 7335,
+ "id": 7565,
"properties": {
"facing": "south",
"half": "bottom",
@@ -140532,7 +140617,7 @@
}
},
{
- "id": 7336,
+ "id": 7566,
"properties": {
"facing": "south",
"half": "bottom",
@@ -140541,7 +140626,7 @@
}
},
{
- "id": 7337,
+ "id": 7567,
"properties": {
"facing": "south",
"half": "bottom",
@@ -140550,7 +140635,7 @@
}
},
{
- "id": 7338,
+ "id": 7568,
"properties": {
"facing": "south",
"half": "bottom",
@@ -140559,7 +140644,7 @@
}
},
{
- "id": 7339,
+ "id": 7569,
"properties": {
"facing": "south",
"half": "bottom",
@@ -140568,7 +140653,7 @@
}
},
{
- "id": 7340,
+ "id": 7570,
"properties": {
"facing": "south",
"half": "bottom",
@@ -140577,7 +140662,7 @@
}
},
{
- "id": 7341,
+ "id": 7571,
"properties": {
"facing": "south",
"half": "bottom",
@@ -140586,7 +140671,7 @@
}
},
{
- "id": 7342,
+ "id": 7572,
"properties": {
"facing": "south",
"half": "bottom",
@@ -140595,7 +140680,7 @@
}
},
{
- "id": 7343,
+ "id": 7573,
"properties": {
"facing": "south",
"half": "bottom",
@@ -140604,7 +140689,7 @@
}
},
{
- "id": 7344,
+ "id": 7574,
"properties": {
"facing": "south",
"half": "bottom",
@@ -140613,7 +140698,7 @@
}
},
{
- "id": 7345,
+ "id": 7575,
"properties": {
"facing": "west",
"half": "top",
@@ -140622,7 +140707,7 @@
}
},
{
- "id": 7346,
+ "id": 7576,
"properties": {
"facing": "west",
"half": "top",
@@ -140631,7 +140716,7 @@
}
},
{
- "id": 7347,
+ "id": 7577,
"properties": {
"facing": "west",
"half": "top",
@@ -140640,7 +140725,7 @@
}
},
{
- "id": 7348,
+ "id": 7578,
"properties": {
"facing": "west",
"half": "top",
@@ -140649,7 +140734,7 @@
}
},
{
- "id": 7349,
+ "id": 7579,
"properties": {
"facing": "west",
"half": "top",
@@ -140658,7 +140743,7 @@
}
},
{
- "id": 7350,
+ "id": 7580,
"properties": {
"facing": "west",
"half": "top",
@@ -140667,7 +140752,7 @@
}
},
{
- "id": 7351,
+ "id": 7581,
"properties": {
"facing": "west",
"half": "top",
@@ -140676,7 +140761,7 @@
}
},
{
- "id": 7352,
+ "id": 7582,
"properties": {
"facing": "west",
"half": "top",
@@ -140685,7 +140770,7 @@
}
},
{
- "id": 7353,
+ "id": 7583,
"properties": {
"facing": "west",
"half": "top",
@@ -140694,7 +140779,7 @@
}
},
{
- "id": 7354,
+ "id": 7584,
"properties": {
"facing": "west",
"half": "top",
@@ -140703,7 +140788,7 @@
}
},
{
- "id": 7355,
+ "id": 7585,
"properties": {
"facing": "west",
"half": "bottom",
@@ -140712,7 +140797,7 @@
}
},
{
- "id": 7356,
+ "id": 7586,
"properties": {
"facing": "west",
"half": "bottom",
@@ -140721,7 +140806,7 @@
}
},
{
- "id": 7357,
+ "id": 7587,
"properties": {
"facing": "west",
"half": "bottom",
@@ -140730,7 +140815,7 @@
}
},
{
- "id": 7358,
+ "id": 7588,
"properties": {
"facing": "west",
"half": "bottom",
@@ -140739,7 +140824,7 @@
}
},
{
- "id": 7359,
+ "id": 7589,
"properties": {
"facing": "west",
"half": "bottom",
@@ -140748,7 +140833,7 @@
}
},
{
- "id": 7360,
+ "id": 7590,
"properties": {
"facing": "west",
"half": "bottom",
@@ -140757,7 +140842,7 @@
}
},
{
- "id": 7361,
+ "id": 7591,
"properties": {
"facing": "west",
"half": "bottom",
@@ -140766,7 +140851,7 @@
}
},
{
- "id": 7362,
+ "id": 7592,
"properties": {
"facing": "west",
"half": "bottom",
@@ -140775,7 +140860,7 @@
}
},
{
- "id": 7363,
+ "id": 7593,
"properties": {
"facing": "west",
"half": "bottom",
@@ -140784,7 +140869,7 @@
}
},
{
- "id": 7364,
+ "id": 7594,
"properties": {
"facing": "west",
"half": "bottom",
@@ -140793,7 +140878,7 @@
}
},
{
- "id": 7365,
+ "id": 7595,
"properties": {
"facing": "east",
"half": "top",
@@ -140802,7 +140887,7 @@
}
},
{
- "id": 7366,
+ "id": 7596,
"properties": {
"facing": "east",
"half": "top",
@@ -140811,7 +140896,7 @@
}
},
{
- "id": 7367,
+ "id": 7597,
"properties": {
"facing": "east",
"half": "top",
@@ -140820,7 +140905,7 @@
}
},
{
- "id": 7368,
+ "id": 7598,
"properties": {
"facing": "east",
"half": "top",
@@ -140829,7 +140914,7 @@
}
},
{
- "id": 7369,
+ "id": 7599,
"properties": {
"facing": "east",
"half": "top",
@@ -140838,7 +140923,7 @@
}
},
{
- "id": 7370,
+ "id": 7600,
"properties": {
"facing": "east",
"half": "top",
@@ -140847,7 +140932,7 @@
}
},
{
- "id": 7371,
+ "id": 7601,
"properties": {
"facing": "east",
"half": "top",
@@ -140856,7 +140941,7 @@
}
},
{
- "id": 7372,
+ "id": 7602,
"properties": {
"facing": "east",
"half": "top",
@@ -140865,7 +140950,7 @@
}
},
{
- "id": 7373,
+ "id": 7603,
"properties": {
"facing": "east",
"half": "top",
@@ -140874,7 +140959,7 @@
}
},
{
- "id": 7374,
+ "id": 7604,
"properties": {
"facing": "east",
"half": "top",
@@ -140883,7 +140968,7 @@
}
},
{
- "id": 7375,
+ "id": 7605,
"properties": {
"facing": "east",
"half": "bottom",
@@ -140892,7 +140977,7 @@
}
},
{
- "id": 7376,
+ "id": 7606,
"properties": {
"facing": "east",
"half": "bottom",
@@ -140901,7 +140986,7 @@
}
},
{
- "id": 7377,
+ "id": 7607,
"properties": {
"facing": "east",
"half": "bottom",
@@ -140910,7 +140995,7 @@
}
},
{
- "id": 7378,
+ "id": 7608,
"properties": {
"facing": "east",
"half": "bottom",
@@ -140919,7 +141004,7 @@
}
},
{
- "id": 7379,
+ "id": 7609,
"properties": {
"facing": "east",
"half": "bottom",
@@ -140928,7 +141013,7 @@
}
},
{
- "id": 7380,
+ "id": 7610,
"properties": {
"facing": "east",
"half": "bottom",
@@ -140937,7 +141022,7 @@
}
},
{
- "id": 7381,
+ "id": 7611,
"properties": {
"facing": "east",
"half": "bottom",
@@ -140946,7 +141031,7 @@
}
},
{
- "id": 7382,
+ "id": 7612,
"properties": {
"facing": "east",
"half": "bottom",
@@ -140955,7 +141040,7 @@
}
},
{
- "id": 7383,
+ "id": 7613,
"properties": {
"facing": "east",
"half": "bottom",
@@ -140964,7 +141049,7 @@
}
},
{
- "id": 7384,
+ "id": 7614,
"properties": {
"facing": "east",
"half": "bottom",
@@ -141011,7 +141096,7 @@
},
"states": [
{
- "id": 16428,
+ "id": 16897,
"properties": {
"east": "none",
"north": "none",
@@ -141022,7 +141107,7 @@
}
},
{
- "id": 16429,
+ "id": 16898,
"properties": {
"east": "none",
"north": "none",
@@ -141033,7 +141118,7 @@
}
},
{
- "id": 16430,
+ "id": 16899,
"properties": {
"east": "none",
"north": "none",
@@ -141045,7 +141130,7 @@
},
{
"default": true,
- "id": 16431,
+ "id": 16900,
"properties": {
"east": "none",
"north": "none",
@@ -141056,7 +141141,7 @@
}
},
{
- "id": 16432,
+ "id": 16901,
"properties": {
"east": "none",
"north": "none",
@@ -141067,7 +141152,7 @@
}
},
{
- "id": 16433,
+ "id": 16902,
"properties": {
"east": "none",
"north": "none",
@@ -141078,7 +141163,7 @@
}
},
{
- "id": 16434,
+ "id": 16903,
"properties": {
"east": "none",
"north": "none",
@@ -141089,7 +141174,7 @@
}
},
{
- "id": 16435,
+ "id": 16904,
"properties": {
"east": "none",
"north": "none",
@@ -141100,7 +141185,7 @@
}
},
{
- "id": 16436,
+ "id": 16905,
"properties": {
"east": "none",
"north": "none",
@@ -141111,7 +141196,7 @@
}
},
{
- "id": 16437,
+ "id": 16906,
"properties": {
"east": "none",
"north": "none",
@@ -141122,7 +141207,7 @@
}
},
{
- "id": 16438,
+ "id": 16907,
"properties": {
"east": "none",
"north": "none",
@@ -141133,7 +141218,7 @@
}
},
{
- "id": 16439,
+ "id": 16908,
"properties": {
"east": "none",
"north": "none",
@@ -141144,7 +141229,7 @@
}
},
{
- "id": 16440,
+ "id": 16909,
"properties": {
"east": "none",
"north": "none",
@@ -141155,7 +141240,7 @@
}
},
{
- "id": 16441,
+ "id": 16910,
"properties": {
"east": "none",
"north": "none",
@@ -141166,7 +141251,7 @@
}
},
{
- "id": 16442,
+ "id": 16911,
"properties": {
"east": "none",
"north": "none",
@@ -141177,7 +141262,7 @@
}
},
{
- "id": 16443,
+ "id": 16912,
"properties": {
"east": "none",
"north": "none",
@@ -141188,7 +141273,7 @@
}
},
{
- "id": 16444,
+ "id": 16913,
"properties": {
"east": "none",
"north": "none",
@@ -141199,7 +141284,7 @@
}
},
{
- "id": 16445,
+ "id": 16914,
"properties": {
"east": "none",
"north": "none",
@@ -141210,7 +141295,7 @@
}
},
{
- "id": 16446,
+ "id": 16915,
"properties": {
"east": "none",
"north": "none",
@@ -141221,7 +141306,7 @@
}
},
{
- "id": 16447,
+ "id": 16916,
"properties": {
"east": "none",
"north": "none",
@@ -141232,7 +141317,7 @@
}
},
{
- "id": 16448,
+ "id": 16917,
"properties": {
"east": "none",
"north": "none",
@@ -141243,7 +141328,7 @@
}
},
{
- "id": 16449,
+ "id": 16918,
"properties": {
"east": "none",
"north": "none",
@@ -141254,7 +141339,7 @@
}
},
{
- "id": 16450,
+ "id": 16919,
"properties": {
"east": "none",
"north": "none",
@@ -141265,7 +141350,7 @@
}
},
{
- "id": 16451,
+ "id": 16920,
"properties": {
"east": "none",
"north": "none",
@@ -141276,7 +141361,7 @@
}
},
{
- "id": 16452,
+ "id": 16921,
"properties": {
"east": "none",
"north": "none",
@@ -141287,7 +141372,7 @@
}
},
{
- "id": 16453,
+ "id": 16922,
"properties": {
"east": "none",
"north": "none",
@@ -141298,7 +141383,7 @@
}
},
{
- "id": 16454,
+ "id": 16923,
"properties": {
"east": "none",
"north": "none",
@@ -141309,7 +141394,7 @@
}
},
{
- "id": 16455,
+ "id": 16924,
"properties": {
"east": "none",
"north": "none",
@@ -141320,7 +141405,7 @@
}
},
{
- "id": 16456,
+ "id": 16925,
"properties": {
"east": "none",
"north": "none",
@@ -141331,7 +141416,7 @@
}
},
{
- "id": 16457,
+ "id": 16926,
"properties": {
"east": "none",
"north": "none",
@@ -141342,7 +141427,7 @@
}
},
{
- "id": 16458,
+ "id": 16927,
"properties": {
"east": "none",
"north": "none",
@@ -141353,7 +141438,7 @@
}
},
{
- "id": 16459,
+ "id": 16928,
"properties": {
"east": "none",
"north": "none",
@@ -141364,7 +141449,7 @@
}
},
{
- "id": 16460,
+ "id": 16929,
"properties": {
"east": "none",
"north": "none",
@@ -141375,7 +141460,7 @@
}
},
{
- "id": 16461,
+ "id": 16930,
"properties": {
"east": "none",
"north": "none",
@@ -141386,7 +141471,7 @@
}
},
{
- "id": 16462,
+ "id": 16931,
"properties": {
"east": "none",
"north": "none",
@@ -141397,7 +141482,7 @@
}
},
{
- "id": 16463,
+ "id": 16932,
"properties": {
"east": "none",
"north": "none",
@@ -141408,7 +141493,7 @@
}
},
{
- "id": 16464,
+ "id": 16933,
"properties": {
"east": "none",
"north": "low",
@@ -141419,7 +141504,7 @@
}
},
{
- "id": 16465,
+ "id": 16934,
"properties": {
"east": "none",
"north": "low",
@@ -141430,7 +141515,7 @@
}
},
{
- "id": 16466,
+ "id": 16935,
"properties": {
"east": "none",
"north": "low",
@@ -141441,7 +141526,7 @@
}
},
{
- "id": 16467,
+ "id": 16936,
"properties": {
"east": "none",
"north": "low",
@@ -141452,7 +141537,7 @@
}
},
{
- "id": 16468,
+ "id": 16937,
"properties": {
"east": "none",
"north": "low",
@@ -141463,7 +141548,7 @@
}
},
{
- "id": 16469,
+ "id": 16938,
"properties": {
"east": "none",
"north": "low",
@@ -141474,7 +141559,7 @@
}
},
{
- "id": 16470,
+ "id": 16939,
"properties": {
"east": "none",
"north": "low",
@@ -141485,7 +141570,7 @@
}
},
{
- "id": 16471,
+ "id": 16940,
"properties": {
"east": "none",
"north": "low",
@@ -141496,7 +141581,7 @@
}
},
{
- "id": 16472,
+ "id": 16941,
"properties": {
"east": "none",
"north": "low",
@@ -141507,7 +141592,7 @@
}
},
{
- "id": 16473,
+ "id": 16942,
"properties": {
"east": "none",
"north": "low",
@@ -141518,7 +141603,7 @@
}
},
{
- "id": 16474,
+ "id": 16943,
"properties": {
"east": "none",
"north": "low",
@@ -141529,7 +141614,7 @@
}
},
{
- "id": 16475,
+ "id": 16944,
"properties": {
"east": "none",
"north": "low",
@@ -141540,7 +141625,7 @@
}
},
{
- "id": 16476,
+ "id": 16945,
"properties": {
"east": "none",
"north": "low",
@@ -141551,7 +141636,7 @@
}
},
{
- "id": 16477,
+ "id": 16946,
"properties": {
"east": "none",
"north": "low",
@@ -141562,7 +141647,7 @@
}
},
{
- "id": 16478,
+ "id": 16947,
"properties": {
"east": "none",
"north": "low",
@@ -141573,7 +141658,7 @@
}
},
{
- "id": 16479,
+ "id": 16948,
"properties": {
"east": "none",
"north": "low",
@@ -141584,7 +141669,7 @@
}
},
{
- "id": 16480,
+ "id": 16949,
"properties": {
"east": "none",
"north": "low",
@@ -141595,7 +141680,7 @@
}
},
{
- "id": 16481,
+ "id": 16950,
"properties": {
"east": "none",
"north": "low",
@@ -141606,7 +141691,7 @@
}
},
{
- "id": 16482,
+ "id": 16951,
"properties": {
"east": "none",
"north": "low",
@@ -141617,7 +141702,7 @@
}
},
{
- "id": 16483,
+ "id": 16952,
"properties": {
"east": "none",
"north": "low",
@@ -141628,7 +141713,7 @@
}
},
{
- "id": 16484,
+ "id": 16953,
"properties": {
"east": "none",
"north": "low",
@@ -141639,7 +141724,7 @@
}
},
{
- "id": 16485,
+ "id": 16954,
"properties": {
"east": "none",
"north": "low",
@@ -141650,7 +141735,7 @@
}
},
{
- "id": 16486,
+ "id": 16955,
"properties": {
"east": "none",
"north": "low",
@@ -141661,7 +141746,7 @@
}
},
{
- "id": 16487,
+ "id": 16956,
"properties": {
"east": "none",
"north": "low",
@@ -141672,7 +141757,7 @@
}
},
{
- "id": 16488,
+ "id": 16957,
"properties": {
"east": "none",
"north": "low",
@@ -141683,7 +141768,7 @@
}
},
{
- "id": 16489,
+ "id": 16958,
"properties": {
"east": "none",
"north": "low",
@@ -141694,7 +141779,7 @@
}
},
{
- "id": 16490,
+ "id": 16959,
"properties": {
"east": "none",
"north": "low",
@@ -141705,7 +141790,7 @@
}
},
{
- "id": 16491,
+ "id": 16960,
"properties": {
"east": "none",
"north": "low",
@@ -141716,7 +141801,7 @@
}
},
{
- "id": 16492,
+ "id": 16961,
"properties": {
"east": "none",
"north": "low",
@@ -141727,7 +141812,7 @@
}
},
{
- "id": 16493,
+ "id": 16962,
"properties": {
"east": "none",
"north": "low",
@@ -141738,7 +141823,7 @@
}
},
{
- "id": 16494,
+ "id": 16963,
"properties": {
"east": "none",
"north": "low",
@@ -141749,7 +141834,7 @@
}
},
{
- "id": 16495,
+ "id": 16964,
"properties": {
"east": "none",
"north": "low",
@@ -141760,7 +141845,7 @@
}
},
{
- "id": 16496,
+ "id": 16965,
"properties": {
"east": "none",
"north": "low",
@@ -141771,7 +141856,7 @@
}
},
{
- "id": 16497,
+ "id": 16966,
"properties": {
"east": "none",
"north": "low",
@@ -141782,7 +141867,7 @@
}
},
{
- "id": 16498,
+ "id": 16967,
"properties": {
"east": "none",
"north": "low",
@@ -141793,7 +141878,7 @@
}
},
{
- "id": 16499,
+ "id": 16968,
"properties": {
"east": "none",
"north": "low",
@@ -141804,7 +141889,7 @@
}
},
{
- "id": 16500,
+ "id": 16969,
"properties": {
"east": "none",
"north": "tall",
@@ -141815,7 +141900,7 @@
}
},
{
- "id": 16501,
+ "id": 16970,
"properties": {
"east": "none",
"north": "tall",
@@ -141826,7 +141911,7 @@
}
},
{
- "id": 16502,
+ "id": 16971,
"properties": {
"east": "none",
"north": "tall",
@@ -141837,7 +141922,7 @@
}
},
{
- "id": 16503,
+ "id": 16972,
"properties": {
"east": "none",
"north": "tall",
@@ -141848,7 +141933,7 @@
}
},
{
- "id": 16504,
+ "id": 16973,
"properties": {
"east": "none",
"north": "tall",
@@ -141859,7 +141944,7 @@
}
},
{
- "id": 16505,
+ "id": 16974,
"properties": {
"east": "none",
"north": "tall",
@@ -141870,7 +141955,7 @@
}
},
{
- "id": 16506,
+ "id": 16975,
"properties": {
"east": "none",
"north": "tall",
@@ -141881,7 +141966,7 @@
}
},
{
- "id": 16507,
+ "id": 16976,
"properties": {
"east": "none",
"north": "tall",
@@ -141892,7 +141977,7 @@
}
},
{
- "id": 16508,
+ "id": 16977,
"properties": {
"east": "none",
"north": "tall",
@@ -141903,7 +141988,7 @@
}
},
{
- "id": 16509,
+ "id": 16978,
"properties": {
"east": "none",
"north": "tall",
@@ -141914,7 +141999,7 @@
}
},
{
- "id": 16510,
+ "id": 16979,
"properties": {
"east": "none",
"north": "tall",
@@ -141925,7 +142010,7 @@
}
},
{
- "id": 16511,
+ "id": 16980,
"properties": {
"east": "none",
"north": "tall",
@@ -141936,7 +142021,7 @@
}
},
{
- "id": 16512,
+ "id": 16981,
"properties": {
"east": "none",
"north": "tall",
@@ -141947,7 +142032,7 @@
}
},
{
- "id": 16513,
+ "id": 16982,
"properties": {
"east": "none",
"north": "tall",
@@ -141958,7 +142043,7 @@
}
},
{
- "id": 16514,
+ "id": 16983,
"properties": {
"east": "none",
"north": "tall",
@@ -141969,7 +142054,7 @@
}
},
{
- "id": 16515,
+ "id": 16984,
"properties": {
"east": "none",
"north": "tall",
@@ -141980,7 +142065,7 @@
}
},
{
- "id": 16516,
+ "id": 16985,
"properties": {
"east": "none",
"north": "tall",
@@ -141991,7 +142076,7 @@
}
},
{
- "id": 16517,
+ "id": 16986,
"properties": {
"east": "none",
"north": "tall",
@@ -142002,7 +142087,7 @@
}
},
{
- "id": 16518,
+ "id": 16987,
"properties": {
"east": "none",
"north": "tall",
@@ -142013,7 +142098,7 @@
}
},
{
- "id": 16519,
+ "id": 16988,
"properties": {
"east": "none",
"north": "tall",
@@ -142024,7 +142109,7 @@
}
},
{
- "id": 16520,
+ "id": 16989,
"properties": {
"east": "none",
"north": "tall",
@@ -142035,7 +142120,7 @@
}
},
{
- "id": 16521,
+ "id": 16990,
"properties": {
"east": "none",
"north": "tall",
@@ -142046,7 +142131,7 @@
}
},
{
- "id": 16522,
+ "id": 16991,
"properties": {
"east": "none",
"north": "tall",
@@ -142057,7 +142142,7 @@
}
},
{
- "id": 16523,
+ "id": 16992,
"properties": {
"east": "none",
"north": "tall",
@@ -142068,7 +142153,7 @@
}
},
{
- "id": 16524,
+ "id": 16993,
"properties": {
"east": "none",
"north": "tall",
@@ -142079,7 +142164,7 @@
}
},
{
- "id": 16525,
+ "id": 16994,
"properties": {
"east": "none",
"north": "tall",
@@ -142090,7 +142175,7 @@
}
},
{
- "id": 16526,
+ "id": 16995,
"properties": {
"east": "none",
"north": "tall",
@@ -142101,7 +142186,7 @@
}
},
{
- "id": 16527,
+ "id": 16996,
"properties": {
"east": "none",
"north": "tall",
@@ -142112,7 +142197,7 @@
}
},
{
- "id": 16528,
+ "id": 16997,
"properties": {
"east": "none",
"north": "tall",
@@ -142123,7 +142208,7 @@
}
},
{
- "id": 16529,
+ "id": 16998,
"properties": {
"east": "none",
"north": "tall",
@@ -142134,7 +142219,7 @@
}
},
{
- "id": 16530,
+ "id": 16999,
"properties": {
"east": "none",
"north": "tall",
@@ -142145,7 +142230,7 @@
}
},
{
- "id": 16531,
+ "id": 17000,
"properties": {
"east": "none",
"north": "tall",
@@ -142156,7 +142241,7 @@
}
},
{
- "id": 16532,
+ "id": 17001,
"properties": {
"east": "none",
"north": "tall",
@@ -142167,7 +142252,7 @@
}
},
{
- "id": 16533,
+ "id": 17002,
"properties": {
"east": "none",
"north": "tall",
@@ -142178,7 +142263,7 @@
}
},
{
- "id": 16534,
+ "id": 17003,
"properties": {
"east": "none",
"north": "tall",
@@ -142189,7 +142274,7 @@
}
},
{
- "id": 16535,
+ "id": 17004,
"properties": {
"east": "none",
"north": "tall",
@@ -142200,7 +142285,7 @@
}
},
{
- "id": 16536,
+ "id": 17005,
"properties": {
"east": "low",
"north": "none",
@@ -142211,7 +142296,7 @@
}
},
{
- "id": 16537,
+ "id": 17006,
"properties": {
"east": "low",
"north": "none",
@@ -142222,7 +142307,7 @@
}
},
{
- "id": 16538,
+ "id": 17007,
"properties": {
"east": "low",
"north": "none",
@@ -142233,7 +142318,7 @@
}
},
{
- "id": 16539,
+ "id": 17008,
"properties": {
"east": "low",
"north": "none",
@@ -142244,7 +142329,7 @@
}
},
{
- "id": 16540,
+ "id": 17009,
"properties": {
"east": "low",
"north": "none",
@@ -142255,7 +142340,7 @@
}
},
{
- "id": 16541,
+ "id": 17010,
"properties": {
"east": "low",
"north": "none",
@@ -142266,7 +142351,7 @@
}
},
{
- "id": 16542,
+ "id": 17011,
"properties": {
"east": "low",
"north": "none",
@@ -142277,7 +142362,7 @@
}
},
{
- "id": 16543,
+ "id": 17012,
"properties": {
"east": "low",
"north": "none",
@@ -142288,7 +142373,7 @@
}
},
{
- "id": 16544,
+ "id": 17013,
"properties": {
"east": "low",
"north": "none",
@@ -142299,7 +142384,7 @@
}
},
{
- "id": 16545,
+ "id": 17014,
"properties": {
"east": "low",
"north": "none",
@@ -142310,7 +142395,7 @@
}
},
{
- "id": 16546,
+ "id": 17015,
"properties": {
"east": "low",
"north": "none",
@@ -142321,7 +142406,7 @@
}
},
{
- "id": 16547,
+ "id": 17016,
"properties": {
"east": "low",
"north": "none",
@@ -142332,7 +142417,7 @@
}
},
{
- "id": 16548,
+ "id": 17017,
"properties": {
"east": "low",
"north": "none",
@@ -142343,7 +142428,7 @@
}
},
{
- "id": 16549,
+ "id": 17018,
"properties": {
"east": "low",
"north": "none",
@@ -142354,7 +142439,7 @@
}
},
{
- "id": 16550,
+ "id": 17019,
"properties": {
"east": "low",
"north": "none",
@@ -142365,7 +142450,7 @@
}
},
{
- "id": 16551,
+ "id": 17020,
"properties": {
"east": "low",
"north": "none",
@@ -142376,7 +142461,7 @@
}
},
{
- "id": 16552,
+ "id": 17021,
"properties": {
"east": "low",
"north": "none",
@@ -142387,7 +142472,7 @@
}
},
{
- "id": 16553,
+ "id": 17022,
"properties": {
"east": "low",
"north": "none",
@@ -142398,7 +142483,7 @@
}
},
{
- "id": 16554,
+ "id": 17023,
"properties": {
"east": "low",
"north": "none",
@@ -142409,7 +142494,7 @@
}
},
{
- "id": 16555,
+ "id": 17024,
"properties": {
"east": "low",
"north": "none",
@@ -142420,7 +142505,7 @@
}
},
{
- "id": 16556,
+ "id": 17025,
"properties": {
"east": "low",
"north": "none",
@@ -142431,7 +142516,7 @@
}
},
{
- "id": 16557,
+ "id": 17026,
"properties": {
"east": "low",
"north": "none",
@@ -142442,7 +142527,7 @@
}
},
{
- "id": 16558,
+ "id": 17027,
"properties": {
"east": "low",
"north": "none",
@@ -142453,7 +142538,7 @@
}
},
{
- "id": 16559,
+ "id": 17028,
"properties": {
"east": "low",
"north": "none",
@@ -142464,7 +142549,7 @@
}
},
{
- "id": 16560,
+ "id": 17029,
"properties": {
"east": "low",
"north": "none",
@@ -142475,7 +142560,7 @@
}
},
{
- "id": 16561,
+ "id": 17030,
"properties": {
"east": "low",
"north": "none",
@@ -142486,7 +142571,7 @@
}
},
{
- "id": 16562,
+ "id": 17031,
"properties": {
"east": "low",
"north": "none",
@@ -142497,7 +142582,7 @@
}
},
{
- "id": 16563,
+ "id": 17032,
"properties": {
"east": "low",
"north": "none",
@@ -142508,7 +142593,7 @@
}
},
{
- "id": 16564,
+ "id": 17033,
"properties": {
"east": "low",
"north": "none",
@@ -142519,7 +142604,7 @@
}
},
{
- "id": 16565,
+ "id": 17034,
"properties": {
"east": "low",
"north": "none",
@@ -142530,7 +142615,7 @@
}
},
{
- "id": 16566,
+ "id": 17035,
"properties": {
"east": "low",
"north": "none",
@@ -142541,7 +142626,7 @@
}
},
{
- "id": 16567,
+ "id": 17036,
"properties": {
"east": "low",
"north": "none",
@@ -142552,7 +142637,7 @@
}
},
{
- "id": 16568,
+ "id": 17037,
"properties": {
"east": "low",
"north": "none",
@@ -142563,7 +142648,7 @@
}
},
{
- "id": 16569,
+ "id": 17038,
"properties": {
"east": "low",
"north": "none",
@@ -142574,7 +142659,7 @@
}
},
{
- "id": 16570,
+ "id": 17039,
"properties": {
"east": "low",
"north": "none",
@@ -142585,7 +142670,7 @@
}
},
{
- "id": 16571,
+ "id": 17040,
"properties": {
"east": "low",
"north": "none",
@@ -142596,7 +142681,7 @@
}
},
{
- "id": 16572,
+ "id": 17041,
"properties": {
"east": "low",
"north": "low",
@@ -142607,7 +142692,7 @@
}
},
{
- "id": 16573,
+ "id": 17042,
"properties": {
"east": "low",
"north": "low",
@@ -142618,7 +142703,7 @@
}
},
{
- "id": 16574,
+ "id": 17043,
"properties": {
"east": "low",
"north": "low",
@@ -142629,7 +142714,7 @@
}
},
{
- "id": 16575,
+ "id": 17044,
"properties": {
"east": "low",
"north": "low",
@@ -142640,7 +142725,7 @@
}
},
{
- "id": 16576,
+ "id": 17045,
"properties": {
"east": "low",
"north": "low",
@@ -142651,7 +142736,7 @@
}
},
{
- "id": 16577,
+ "id": 17046,
"properties": {
"east": "low",
"north": "low",
@@ -142662,7 +142747,7 @@
}
},
{
- "id": 16578,
+ "id": 17047,
"properties": {
"east": "low",
"north": "low",
@@ -142673,7 +142758,7 @@
}
},
{
- "id": 16579,
+ "id": 17048,
"properties": {
"east": "low",
"north": "low",
@@ -142684,7 +142769,7 @@
}
},
{
- "id": 16580,
+ "id": 17049,
"properties": {
"east": "low",
"north": "low",
@@ -142695,7 +142780,7 @@
}
},
{
- "id": 16581,
+ "id": 17050,
"properties": {
"east": "low",
"north": "low",
@@ -142706,7 +142791,7 @@
}
},
{
- "id": 16582,
+ "id": 17051,
"properties": {
"east": "low",
"north": "low",
@@ -142717,7 +142802,7 @@
}
},
{
- "id": 16583,
+ "id": 17052,
"properties": {
"east": "low",
"north": "low",
@@ -142728,7 +142813,7 @@
}
},
{
- "id": 16584,
+ "id": 17053,
"properties": {
"east": "low",
"north": "low",
@@ -142739,7 +142824,7 @@
}
},
{
- "id": 16585,
+ "id": 17054,
"properties": {
"east": "low",
"north": "low",
@@ -142750,7 +142835,7 @@
}
},
{
- "id": 16586,
+ "id": 17055,
"properties": {
"east": "low",
"north": "low",
@@ -142761,7 +142846,7 @@
}
},
{
- "id": 16587,
+ "id": 17056,
"properties": {
"east": "low",
"north": "low",
@@ -142772,7 +142857,7 @@
}
},
{
- "id": 16588,
+ "id": 17057,
"properties": {
"east": "low",
"north": "low",
@@ -142783,7 +142868,7 @@
}
},
{
- "id": 16589,
+ "id": 17058,
"properties": {
"east": "low",
"north": "low",
@@ -142794,7 +142879,7 @@
}
},
{
- "id": 16590,
+ "id": 17059,
"properties": {
"east": "low",
"north": "low",
@@ -142805,7 +142890,7 @@
}
},
{
- "id": 16591,
+ "id": 17060,
"properties": {
"east": "low",
"north": "low",
@@ -142816,7 +142901,7 @@
}
},
{
- "id": 16592,
+ "id": 17061,
"properties": {
"east": "low",
"north": "low",
@@ -142827,7 +142912,7 @@
}
},
{
- "id": 16593,
+ "id": 17062,
"properties": {
"east": "low",
"north": "low",
@@ -142838,7 +142923,7 @@
}
},
{
- "id": 16594,
+ "id": 17063,
"properties": {
"east": "low",
"north": "low",
@@ -142849,7 +142934,7 @@
}
},
{
- "id": 16595,
+ "id": 17064,
"properties": {
"east": "low",
"north": "low",
@@ -142860,7 +142945,7 @@
}
},
{
- "id": 16596,
+ "id": 17065,
"properties": {
"east": "low",
"north": "low",
@@ -142871,7 +142956,7 @@
}
},
{
- "id": 16597,
+ "id": 17066,
"properties": {
"east": "low",
"north": "low",
@@ -142882,7 +142967,7 @@
}
},
{
- "id": 16598,
+ "id": 17067,
"properties": {
"east": "low",
"north": "low",
@@ -142893,7 +142978,7 @@
}
},
{
- "id": 16599,
+ "id": 17068,
"properties": {
"east": "low",
"north": "low",
@@ -142904,7 +142989,7 @@
}
},
{
- "id": 16600,
+ "id": 17069,
"properties": {
"east": "low",
"north": "low",
@@ -142915,7 +143000,7 @@
}
},
{
- "id": 16601,
+ "id": 17070,
"properties": {
"east": "low",
"north": "low",
@@ -142926,7 +143011,7 @@
}
},
{
- "id": 16602,
+ "id": 17071,
"properties": {
"east": "low",
"north": "low",
@@ -142937,7 +143022,7 @@
}
},
{
- "id": 16603,
+ "id": 17072,
"properties": {
"east": "low",
"north": "low",
@@ -142948,7 +143033,7 @@
}
},
{
- "id": 16604,
+ "id": 17073,
"properties": {
"east": "low",
"north": "low",
@@ -142959,7 +143044,7 @@
}
},
{
- "id": 16605,
+ "id": 17074,
"properties": {
"east": "low",
"north": "low",
@@ -142970,7 +143055,7 @@
}
},
{
- "id": 16606,
+ "id": 17075,
"properties": {
"east": "low",
"north": "low",
@@ -142981,7 +143066,7 @@
}
},
{
- "id": 16607,
+ "id": 17076,
"properties": {
"east": "low",
"north": "low",
@@ -142992,7 +143077,7 @@
}
},
{
- "id": 16608,
+ "id": 17077,
"properties": {
"east": "low",
"north": "tall",
@@ -143003,7 +143088,7 @@
}
},
{
- "id": 16609,
+ "id": 17078,
"properties": {
"east": "low",
"north": "tall",
@@ -143014,7 +143099,7 @@
}
},
{
- "id": 16610,
+ "id": 17079,
"properties": {
"east": "low",
"north": "tall",
@@ -143025,7 +143110,7 @@
}
},
{
- "id": 16611,
+ "id": 17080,
"properties": {
"east": "low",
"north": "tall",
@@ -143036,7 +143121,7 @@
}
},
{
- "id": 16612,
+ "id": 17081,
"properties": {
"east": "low",
"north": "tall",
@@ -143047,7 +143132,7 @@
}
},
{
- "id": 16613,
+ "id": 17082,
"properties": {
"east": "low",
"north": "tall",
@@ -143058,7 +143143,7 @@
}
},
{
- "id": 16614,
+ "id": 17083,
"properties": {
"east": "low",
"north": "tall",
@@ -143069,7 +143154,7 @@
}
},
{
- "id": 16615,
+ "id": 17084,
"properties": {
"east": "low",
"north": "tall",
@@ -143080,7 +143165,7 @@
}
},
{
- "id": 16616,
+ "id": 17085,
"properties": {
"east": "low",
"north": "tall",
@@ -143091,7 +143176,7 @@
}
},
{
- "id": 16617,
+ "id": 17086,
"properties": {
"east": "low",
"north": "tall",
@@ -143102,7 +143187,7 @@
}
},
{
- "id": 16618,
+ "id": 17087,
"properties": {
"east": "low",
"north": "tall",
@@ -143113,7 +143198,7 @@
}
},
{
- "id": 16619,
+ "id": 17088,
"properties": {
"east": "low",
"north": "tall",
@@ -143124,7 +143209,7 @@
}
},
{
- "id": 16620,
+ "id": 17089,
"properties": {
"east": "low",
"north": "tall",
@@ -143135,7 +143220,7 @@
}
},
{
- "id": 16621,
+ "id": 17090,
"properties": {
"east": "low",
"north": "tall",
@@ -143146,7 +143231,7 @@
}
},
{
- "id": 16622,
+ "id": 17091,
"properties": {
"east": "low",
"north": "tall",
@@ -143157,7 +143242,7 @@
}
},
{
- "id": 16623,
+ "id": 17092,
"properties": {
"east": "low",
"north": "tall",
@@ -143168,7 +143253,7 @@
}
},
{
- "id": 16624,
+ "id": 17093,
"properties": {
"east": "low",
"north": "tall",
@@ -143179,7 +143264,7 @@
}
},
{
- "id": 16625,
+ "id": 17094,
"properties": {
"east": "low",
"north": "tall",
@@ -143190,7 +143275,7 @@
}
},
{
- "id": 16626,
+ "id": 17095,
"properties": {
"east": "low",
"north": "tall",
@@ -143201,7 +143286,7 @@
}
},
{
- "id": 16627,
+ "id": 17096,
"properties": {
"east": "low",
"north": "tall",
@@ -143212,7 +143297,7 @@
}
},
{
- "id": 16628,
+ "id": 17097,
"properties": {
"east": "low",
"north": "tall",
@@ -143223,7 +143308,7 @@
}
},
{
- "id": 16629,
+ "id": 17098,
"properties": {
"east": "low",
"north": "tall",
@@ -143234,7 +143319,7 @@
}
},
{
- "id": 16630,
+ "id": 17099,
"properties": {
"east": "low",
"north": "tall",
@@ -143245,7 +143330,7 @@
}
},
{
- "id": 16631,
+ "id": 17100,
"properties": {
"east": "low",
"north": "tall",
@@ -143256,7 +143341,7 @@
}
},
{
- "id": 16632,
+ "id": 17101,
"properties": {
"east": "low",
"north": "tall",
@@ -143267,7 +143352,7 @@
}
},
{
- "id": 16633,
+ "id": 17102,
"properties": {
"east": "low",
"north": "tall",
@@ -143278,7 +143363,7 @@
}
},
{
- "id": 16634,
+ "id": 17103,
"properties": {
"east": "low",
"north": "tall",
@@ -143289,7 +143374,7 @@
}
},
{
- "id": 16635,
+ "id": 17104,
"properties": {
"east": "low",
"north": "tall",
@@ -143300,7 +143385,7 @@
}
},
{
- "id": 16636,
+ "id": 17105,
"properties": {
"east": "low",
"north": "tall",
@@ -143311,7 +143396,7 @@
}
},
{
- "id": 16637,
+ "id": 17106,
"properties": {
"east": "low",
"north": "tall",
@@ -143322,7 +143407,7 @@
}
},
{
- "id": 16638,
+ "id": 17107,
"properties": {
"east": "low",
"north": "tall",
@@ -143333,7 +143418,7 @@
}
},
{
- "id": 16639,
+ "id": 17108,
"properties": {
"east": "low",
"north": "tall",
@@ -143344,7 +143429,7 @@
}
},
{
- "id": 16640,
+ "id": 17109,
"properties": {
"east": "low",
"north": "tall",
@@ -143355,7 +143440,7 @@
}
},
{
- "id": 16641,
+ "id": 17110,
"properties": {
"east": "low",
"north": "tall",
@@ -143366,7 +143451,7 @@
}
},
{
- "id": 16642,
+ "id": 17111,
"properties": {
"east": "low",
"north": "tall",
@@ -143377,7 +143462,7 @@
}
},
{
- "id": 16643,
+ "id": 17112,
"properties": {
"east": "low",
"north": "tall",
@@ -143388,7 +143473,7 @@
}
},
{
- "id": 16644,
+ "id": 17113,
"properties": {
"east": "tall",
"north": "none",
@@ -143399,7 +143484,7 @@
}
},
{
- "id": 16645,
+ "id": 17114,
"properties": {
"east": "tall",
"north": "none",
@@ -143410,7 +143495,7 @@
}
},
{
- "id": 16646,
+ "id": 17115,
"properties": {
"east": "tall",
"north": "none",
@@ -143421,7 +143506,7 @@
}
},
{
- "id": 16647,
+ "id": 17116,
"properties": {
"east": "tall",
"north": "none",
@@ -143432,7 +143517,7 @@
}
},
{
- "id": 16648,
+ "id": 17117,
"properties": {
"east": "tall",
"north": "none",
@@ -143443,7 +143528,7 @@
}
},
{
- "id": 16649,
+ "id": 17118,
"properties": {
"east": "tall",
"north": "none",
@@ -143454,7 +143539,7 @@
}
},
{
- "id": 16650,
+ "id": 17119,
"properties": {
"east": "tall",
"north": "none",
@@ -143465,7 +143550,7 @@
}
},
{
- "id": 16651,
+ "id": 17120,
"properties": {
"east": "tall",
"north": "none",
@@ -143476,7 +143561,7 @@
}
},
{
- "id": 16652,
+ "id": 17121,
"properties": {
"east": "tall",
"north": "none",
@@ -143487,7 +143572,7 @@
}
},
{
- "id": 16653,
+ "id": 17122,
"properties": {
"east": "tall",
"north": "none",
@@ -143498,7 +143583,7 @@
}
},
{
- "id": 16654,
+ "id": 17123,
"properties": {
"east": "tall",
"north": "none",
@@ -143509,7 +143594,7 @@
}
},
{
- "id": 16655,
+ "id": 17124,
"properties": {
"east": "tall",
"north": "none",
@@ -143520,7 +143605,7 @@
}
},
{
- "id": 16656,
+ "id": 17125,
"properties": {
"east": "tall",
"north": "none",
@@ -143531,7 +143616,7 @@
}
},
{
- "id": 16657,
+ "id": 17126,
"properties": {
"east": "tall",
"north": "none",
@@ -143542,7 +143627,7 @@
}
},
{
- "id": 16658,
+ "id": 17127,
"properties": {
"east": "tall",
"north": "none",
@@ -143553,7 +143638,7 @@
}
},
{
- "id": 16659,
+ "id": 17128,
"properties": {
"east": "tall",
"north": "none",
@@ -143564,7 +143649,7 @@
}
},
{
- "id": 16660,
+ "id": 17129,
"properties": {
"east": "tall",
"north": "none",
@@ -143575,7 +143660,7 @@
}
},
{
- "id": 16661,
+ "id": 17130,
"properties": {
"east": "tall",
"north": "none",
@@ -143586,7 +143671,7 @@
}
},
{
- "id": 16662,
+ "id": 17131,
"properties": {
"east": "tall",
"north": "none",
@@ -143597,7 +143682,7 @@
}
},
{
- "id": 16663,
+ "id": 17132,
"properties": {
"east": "tall",
"north": "none",
@@ -143608,7 +143693,7 @@
}
},
{
- "id": 16664,
+ "id": 17133,
"properties": {
"east": "tall",
"north": "none",
@@ -143619,7 +143704,7 @@
}
},
{
- "id": 16665,
+ "id": 17134,
"properties": {
"east": "tall",
"north": "none",
@@ -143630,7 +143715,7 @@
}
},
{
- "id": 16666,
+ "id": 17135,
"properties": {
"east": "tall",
"north": "none",
@@ -143641,7 +143726,7 @@
}
},
{
- "id": 16667,
+ "id": 17136,
"properties": {
"east": "tall",
"north": "none",
@@ -143652,7 +143737,7 @@
}
},
{
- "id": 16668,
+ "id": 17137,
"properties": {
"east": "tall",
"north": "none",
@@ -143663,7 +143748,7 @@
}
},
{
- "id": 16669,
+ "id": 17138,
"properties": {
"east": "tall",
"north": "none",
@@ -143674,7 +143759,7 @@
}
},
{
- "id": 16670,
+ "id": 17139,
"properties": {
"east": "tall",
"north": "none",
@@ -143685,7 +143770,7 @@
}
},
{
- "id": 16671,
+ "id": 17140,
"properties": {
"east": "tall",
"north": "none",
@@ -143696,7 +143781,7 @@
}
},
{
- "id": 16672,
+ "id": 17141,
"properties": {
"east": "tall",
"north": "none",
@@ -143707,7 +143792,7 @@
}
},
{
- "id": 16673,
+ "id": 17142,
"properties": {
"east": "tall",
"north": "none",
@@ -143718,7 +143803,7 @@
}
},
{
- "id": 16674,
+ "id": 17143,
"properties": {
"east": "tall",
"north": "none",
@@ -143729,7 +143814,7 @@
}
},
{
- "id": 16675,
+ "id": 17144,
"properties": {
"east": "tall",
"north": "none",
@@ -143740,7 +143825,7 @@
}
},
{
- "id": 16676,
+ "id": 17145,
"properties": {
"east": "tall",
"north": "none",
@@ -143751,7 +143836,7 @@
}
},
{
- "id": 16677,
+ "id": 17146,
"properties": {
"east": "tall",
"north": "none",
@@ -143762,7 +143847,7 @@
}
},
{
- "id": 16678,
+ "id": 17147,
"properties": {
"east": "tall",
"north": "none",
@@ -143773,7 +143858,7 @@
}
},
{
- "id": 16679,
+ "id": 17148,
"properties": {
"east": "tall",
"north": "none",
@@ -143784,7 +143869,7 @@
}
},
{
- "id": 16680,
+ "id": 17149,
"properties": {
"east": "tall",
"north": "low",
@@ -143795,7 +143880,7 @@
}
},
{
- "id": 16681,
+ "id": 17150,
"properties": {
"east": "tall",
"north": "low",
@@ -143806,7 +143891,7 @@
}
},
{
- "id": 16682,
+ "id": 17151,
"properties": {
"east": "tall",
"north": "low",
@@ -143817,7 +143902,7 @@
}
},
{
- "id": 16683,
+ "id": 17152,
"properties": {
"east": "tall",
"north": "low",
@@ -143828,7 +143913,7 @@
}
},
{
- "id": 16684,
+ "id": 17153,
"properties": {
"east": "tall",
"north": "low",
@@ -143839,7 +143924,7 @@
}
},
{
- "id": 16685,
+ "id": 17154,
"properties": {
"east": "tall",
"north": "low",
@@ -143850,7 +143935,7 @@
}
},
{
- "id": 16686,
+ "id": 17155,
"properties": {
"east": "tall",
"north": "low",
@@ -143861,7 +143946,7 @@
}
},
{
- "id": 16687,
+ "id": 17156,
"properties": {
"east": "tall",
"north": "low",
@@ -143872,7 +143957,7 @@
}
},
{
- "id": 16688,
+ "id": 17157,
"properties": {
"east": "tall",
"north": "low",
@@ -143883,7 +143968,7 @@
}
},
{
- "id": 16689,
+ "id": 17158,
"properties": {
"east": "tall",
"north": "low",
@@ -143894,7 +143979,7 @@
}
},
{
- "id": 16690,
+ "id": 17159,
"properties": {
"east": "tall",
"north": "low",
@@ -143905,7 +143990,7 @@
}
},
{
- "id": 16691,
+ "id": 17160,
"properties": {
"east": "tall",
"north": "low",
@@ -143916,7 +144001,7 @@
}
},
{
- "id": 16692,
+ "id": 17161,
"properties": {
"east": "tall",
"north": "low",
@@ -143927,7 +144012,7 @@
}
},
{
- "id": 16693,
+ "id": 17162,
"properties": {
"east": "tall",
"north": "low",
@@ -143938,7 +144023,7 @@
}
},
{
- "id": 16694,
+ "id": 17163,
"properties": {
"east": "tall",
"north": "low",
@@ -143949,7 +144034,7 @@
}
},
{
- "id": 16695,
+ "id": 17164,
"properties": {
"east": "tall",
"north": "low",
@@ -143960,7 +144045,7 @@
}
},
{
- "id": 16696,
+ "id": 17165,
"properties": {
"east": "tall",
"north": "low",
@@ -143971,7 +144056,7 @@
}
},
{
- "id": 16697,
+ "id": 17166,
"properties": {
"east": "tall",
"north": "low",
@@ -143982,7 +144067,7 @@
}
},
{
- "id": 16698,
+ "id": 17167,
"properties": {
"east": "tall",
"north": "low",
@@ -143993,7 +144078,7 @@
}
},
{
- "id": 16699,
+ "id": 17168,
"properties": {
"east": "tall",
"north": "low",
@@ -144004,7 +144089,7 @@
}
},
{
- "id": 16700,
+ "id": 17169,
"properties": {
"east": "tall",
"north": "low",
@@ -144015,7 +144100,7 @@
}
},
{
- "id": 16701,
+ "id": 17170,
"properties": {
"east": "tall",
"north": "low",
@@ -144026,7 +144111,7 @@
}
},
{
- "id": 16702,
+ "id": 17171,
"properties": {
"east": "tall",
"north": "low",
@@ -144037,7 +144122,7 @@
}
},
{
- "id": 16703,
+ "id": 17172,
"properties": {
"east": "tall",
"north": "low",
@@ -144048,7 +144133,7 @@
}
},
{
- "id": 16704,
+ "id": 17173,
"properties": {
"east": "tall",
"north": "low",
@@ -144059,7 +144144,7 @@
}
},
{
- "id": 16705,
+ "id": 17174,
"properties": {
"east": "tall",
"north": "low",
@@ -144070,7 +144155,7 @@
}
},
{
- "id": 16706,
+ "id": 17175,
"properties": {
"east": "tall",
"north": "low",
@@ -144081,7 +144166,7 @@
}
},
{
- "id": 16707,
+ "id": 17176,
"properties": {
"east": "tall",
"north": "low",
@@ -144092,7 +144177,7 @@
}
},
{
- "id": 16708,
+ "id": 17177,
"properties": {
"east": "tall",
"north": "low",
@@ -144103,7 +144188,7 @@
}
},
{
- "id": 16709,
+ "id": 17178,
"properties": {
"east": "tall",
"north": "low",
@@ -144114,7 +144199,7 @@
}
},
{
- "id": 16710,
+ "id": 17179,
"properties": {
"east": "tall",
"north": "low",
@@ -144125,7 +144210,7 @@
}
},
{
- "id": 16711,
+ "id": 17180,
"properties": {
"east": "tall",
"north": "low",
@@ -144136,7 +144221,7 @@
}
},
{
- "id": 16712,
+ "id": 17181,
"properties": {
"east": "tall",
"north": "low",
@@ -144147,7 +144232,7 @@
}
},
{
- "id": 16713,
+ "id": 17182,
"properties": {
"east": "tall",
"north": "low",
@@ -144158,7 +144243,7 @@
}
},
{
- "id": 16714,
+ "id": 17183,
"properties": {
"east": "tall",
"north": "low",
@@ -144169,7 +144254,7 @@
}
},
{
- "id": 16715,
+ "id": 17184,
"properties": {
"east": "tall",
"north": "low",
@@ -144180,7 +144265,7 @@
}
},
{
- "id": 16716,
+ "id": 17185,
"properties": {
"east": "tall",
"north": "tall",
@@ -144191,7 +144276,7 @@
}
},
{
- "id": 16717,
+ "id": 17186,
"properties": {
"east": "tall",
"north": "tall",
@@ -144202,7 +144287,7 @@
}
},
{
- "id": 16718,
+ "id": 17187,
"properties": {
"east": "tall",
"north": "tall",
@@ -144213,7 +144298,7 @@
}
},
{
- "id": 16719,
+ "id": 17188,
"properties": {
"east": "tall",
"north": "tall",
@@ -144224,7 +144309,7 @@
}
},
{
- "id": 16720,
+ "id": 17189,
"properties": {
"east": "tall",
"north": "tall",
@@ -144235,7 +144320,7 @@
}
},
{
- "id": 16721,
+ "id": 17190,
"properties": {
"east": "tall",
"north": "tall",
@@ -144246,7 +144331,7 @@
}
},
{
- "id": 16722,
+ "id": 17191,
"properties": {
"east": "tall",
"north": "tall",
@@ -144257,7 +144342,7 @@
}
},
{
- "id": 16723,
+ "id": 17192,
"properties": {
"east": "tall",
"north": "tall",
@@ -144268,7 +144353,7 @@
}
},
{
- "id": 16724,
+ "id": 17193,
"properties": {
"east": "tall",
"north": "tall",
@@ -144279,7 +144364,7 @@
}
},
{
- "id": 16725,
+ "id": 17194,
"properties": {
"east": "tall",
"north": "tall",
@@ -144290,7 +144375,7 @@
}
},
{
- "id": 16726,
+ "id": 17195,
"properties": {
"east": "tall",
"north": "tall",
@@ -144301,7 +144386,7 @@
}
},
{
- "id": 16727,
+ "id": 17196,
"properties": {
"east": "tall",
"north": "tall",
@@ -144312,7 +144397,7 @@
}
},
{
- "id": 16728,
+ "id": 17197,
"properties": {
"east": "tall",
"north": "tall",
@@ -144323,7 +144408,7 @@
}
},
{
- "id": 16729,
+ "id": 17198,
"properties": {
"east": "tall",
"north": "tall",
@@ -144334,7 +144419,7 @@
}
},
{
- "id": 16730,
+ "id": 17199,
"properties": {
"east": "tall",
"north": "tall",
@@ -144345,7 +144430,7 @@
}
},
{
- "id": 16731,
+ "id": 17200,
"properties": {
"east": "tall",
"north": "tall",
@@ -144356,7 +144441,7 @@
}
},
{
- "id": 16732,
+ "id": 17201,
"properties": {
"east": "tall",
"north": "tall",
@@ -144367,7 +144452,7 @@
}
},
{
- "id": 16733,
+ "id": 17202,
"properties": {
"east": "tall",
"north": "tall",
@@ -144378,7 +144463,7 @@
}
},
{
- "id": 16734,
+ "id": 17203,
"properties": {
"east": "tall",
"north": "tall",
@@ -144389,7 +144474,7 @@
}
},
{
- "id": 16735,
+ "id": 17204,
"properties": {
"east": "tall",
"north": "tall",
@@ -144400,7 +144485,7 @@
}
},
{
- "id": 16736,
+ "id": 17205,
"properties": {
"east": "tall",
"north": "tall",
@@ -144411,7 +144496,7 @@
}
},
{
- "id": 16737,
+ "id": 17206,
"properties": {
"east": "tall",
"north": "tall",
@@ -144422,7 +144507,7 @@
}
},
{
- "id": 16738,
+ "id": 17207,
"properties": {
"east": "tall",
"north": "tall",
@@ -144433,7 +144518,7 @@
}
},
{
- "id": 16739,
+ "id": 17208,
"properties": {
"east": "tall",
"north": "tall",
@@ -144444,7 +144529,7 @@
}
},
{
- "id": 16740,
+ "id": 17209,
"properties": {
"east": "tall",
"north": "tall",
@@ -144455,7 +144540,7 @@
}
},
{
- "id": 16741,
+ "id": 17210,
"properties": {
"east": "tall",
"north": "tall",
@@ -144466,7 +144551,7 @@
}
},
{
- "id": 16742,
+ "id": 17211,
"properties": {
"east": "tall",
"north": "tall",
@@ -144477,7 +144562,7 @@
}
},
{
- "id": 16743,
+ "id": 17212,
"properties": {
"east": "tall",
"north": "tall",
@@ -144488,7 +144573,7 @@
}
},
{
- "id": 16744,
+ "id": 17213,
"properties": {
"east": "tall",
"north": "tall",
@@ -144499,7 +144584,7 @@
}
},
{
- "id": 16745,
+ "id": 17214,
"properties": {
"east": "tall",
"north": "tall",
@@ -144510,7 +144595,7 @@
}
},
{
- "id": 16746,
+ "id": 17215,
"properties": {
"east": "tall",
"north": "tall",
@@ -144521,7 +144606,7 @@
}
},
{
- "id": 16747,
+ "id": 17216,
"properties": {
"east": "tall",
"north": "tall",
@@ -144532,7 +144617,7 @@
}
},
{
- "id": 16748,
+ "id": 17217,
"properties": {
"east": "tall",
"north": "tall",
@@ -144543,7 +144628,7 @@
}
},
{
- "id": 16749,
+ "id": 17218,
"properties": {
"east": "tall",
"north": "tall",
@@ -144554,7 +144639,7 @@
}
},
{
- "id": 16750,
+ "id": 17219,
"properties": {
"east": "tall",
"north": "tall",
@@ -144565,7 +144650,7 @@
}
},
{
- "id": 16751,
+ "id": 17220,
"properties": {
"east": "tall",
"north": "tall",
@@ -144585,7 +144670,7 @@
"states": [
{
"default": true,
- "id": 7272
+ "id": 7502
}
]
},
@@ -144602,7 +144687,7 @@
"states": [
{
"default": true,
- "id": 129
+ "id": 135
}
]
},
@@ -144620,13 +144705,13 @@
"states": [
{
"default": true,
- "id": 5864,
+ "id": 6030,
"properties": {
"axis": "x"
}
},
{
- "id": 5865,
+ "id": 6031,
"properties": {
"axis": "z"
}
@@ -144646,7 +144731,7 @@
"states": [
{
"default": true,
- "id": 9224
+ "id": 9479
}
]
},
@@ -144658,7 +144743,7 @@
"states": [
{
"default": true,
- "id": 18595
+ "id": 19064
}
]
},
@@ -144678,25 +144763,25 @@
"states": [
{
"default": true,
- "id": 7385,
+ "id": 7615,
"properties": {
"age": "0"
}
},
{
- "id": 7386,
+ "id": 7616,
"properties": {
"age": "1"
}
},
{
- "id": 7387,
+ "id": 7617,
"properties": {
"age": "2"
}
},
{
- "id": 7388,
+ "id": 7618,
"properties": {
"age": "3"
}
@@ -144711,7 +144796,7 @@
"states": [
{
"default": true,
- "id": 12544
+ "id": 13013
}
]
},
@@ -144723,7 +144808,7 @@
"states": [
{
"default": true,
- "id": 19447
+ "id": 19916
}
]
},
@@ -144735,7 +144820,7 @@
"states": [
{
"default": true,
- "id": 5849
+ "id": 6015
}
]
},
@@ -144804,7 +144889,7 @@
},
"states": [
{
- "id": 538,
+ "id": 581,
"properties": {
"instrument": "harp",
"note": "0",
@@ -144813,383 +144898,383 @@
},
{
"default": true,
- "id": 539,
+ "id": 582,
"properties": {
"instrument": "harp",
"note": "0",
"powered": "false"
}
},
- {
- "id": 540,
- "properties": {
- "instrument": "harp",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 541,
- "properties": {
- "instrument": "harp",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 542,
- "properties": {
- "instrument": "harp",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 543,
- "properties": {
- "instrument": "harp",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 544,
- "properties": {
- "instrument": "harp",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 545,
- "properties": {
- "instrument": "harp",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 546,
- "properties": {
- "instrument": "harp",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 547,
- "properties": {
- "instrument": "harp",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 548,
- "properties": {
- "instrument": "harp",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 549,
- "properties": {
- "instrument": "harp",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 550,
- "properties": {
- "instrument": "harp",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 551,
- "properties": {
- "instrument": "harp",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 552,
- "properties": {
- "instrument": "harp",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 553,
- "properties": {
- "instrument": "harp",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 554,
- "properties": {
- "instrument": "harp",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 555,
- "properties": {
- "instrument": "harp",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 556,
- "properties": {
- "instrument": "harp",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 557,
- "properties": {
- "instrument": "harp",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 558,
- "properties": {
- "instrument": "harp",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 559,
- "properties": {
- "instrument": "harp",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 560,
- "properties": {
- "instrument": "harp",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 561,
- "properties": {
- "instrument": "harp",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 562,
- "properties": {
- "instrument": "harp",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 563,
- "properties": {
- "instrument": "harp",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 564,
- "properties": {
- "instrument": "harp",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 565,
- "properties": {
- "instrument": "harp",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 566,
- "properties": {
- "instrument": "harp",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 567,
- "properties": {
- "instrument": "harp",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 568,
- "properties": {
- "instrument": "harp",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 569,
- "properties": {
- "instrument": "harp",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 570,
- "properties": {
- "instrument": "harp",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 571,
- "properties": {
- "instrument": "harp",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 572,
- "properties": {
- "instrument": "harp",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 573,
- "properties": {
- "instrument": "harp",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 574,
- "properties": {
- "instrument": "harp",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 575,
- "properties": {
- "instrument": "harp",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 576,
- "properties": {
- "instrument": "harp",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 577,
- "properties": {
- "instrument": "harp",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 578,
- "properties": {
- "instrument": "harp",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 579,
- "properties": {
- "instrument": "harp",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 580,
- "properties": {
- "instrument": "harp",
- "note": "21",
- "powered": "true"
- }
- },
- {
- "id": 581,
- "properties": {
- "instrument": "harp",
- "note": "21",
- "powered": "false"
- }
- },
- {
- "id": 582,
- "properties": {
- "instrument": "harp",
- "note": "22",
- "powered": "true"
- }
- },
{
"id": 583,
"properties": {
"instrument": "harp",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 584,
"properties": {
"instrument": "harp",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 585,
"properties": {
"instrument": "harp",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 586,
+ "properties": {
+ "instrument": "harp",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 587,
+ "properties": {
+ "instrument": "harp",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 588,
+ "properties": {
+ "instrument": "harp",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 589,
+ "properties": {
+ "instrument": "harp",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 590,
+ "properties": {
+ "instrument": "harp",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 591,
+ "properties": {
+ "instrument": "harp",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 592,
+ "properties": {
+ "instrument": "harp",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 593,
+ "properties": {
+ "instrument": "harp",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 594,
+ "properties": {
+ "instrument": "harp",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 595,
+ "properties": {
+ "instrument": "harp",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 596,
+ "properties": {
+ "instrument": "harp",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 597,
+ "properties": {
+ "instrument": "harp",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 598,
+ "properties": {
+ "instrument": "harp",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 599,
+ "properties": {
+ "instrument": "harp",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 600,
+ "properties": {
+ "instrument": "harp",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 601,
+ "properties": {
+ "instrument": "harp",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 602,
+ "properties": {
+ "instrument": "harp",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 603,
+ "properties": {
+ "instrument": "harp",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 604,
+ "properties": {
+ "instrument": "harp",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 605,
+ "properties": {
+ "instrument": "harp",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 606,
+ "properties": {
+ "instrument": "harp",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 607,
+ "properties": {
+ "instrument": "harp",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 608,
+ "properties": {
+ "instrument": "harp",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 609,
+ "properties": {
+ "instrument": "harp",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 610,
+ "properties": {
+ "instrument": "harp",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 611,
+ "properties": {
+ "instrument": "harp",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 612,
+ "properties": {
+ "instrument": "harp",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 613,
+ "properties": {
+ "instrument": "harp",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 614,
+ "properties": {
+ "instrument": "harp",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 615,
+ "properties": {
+ "instrument": "harp",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 616,
+ "properties": {
+ "instrument": "harp",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 617,
+ "properties": {
+ "instrument": "harp",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 618,
+ "properties": {
+ "instrument": "harp",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 619,
+ "properties": {
+ "instrument": "harp",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 620,
+ "properties": {
+ "instrument": "harp",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 621,
+ "properties": {
+ "instrument": "harp",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 622,
+ "properties": {
+ "instrument": "harp",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 623,
+ "properties": {
+ "instrument": "harp",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 624,
+ "properties": {
+ "instrument": "harp",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 625,
+ "properties": {
+ "instrument": "harp",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 626,
+ "properties": {
+ "instrument": "harp",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 627,
+ "properties": {
+ "instrument": "harp",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 628,
+ "properties": {
+ "instrument": "harp",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 629,
"properties": {
"instrument": "harp",
"note": "24",
@@ -145197,399 +145282,399 @@
}
},
{
- "id": 587,
+ "id": 630,
"properties": {
"instrument": "harp",
"note": "24",
"powered": "false"
}
},
- {
- "id": 588,
- "properties": {
- "instrument": "basedrum",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 589,
- "properties": {
- "instrument": "basedrum",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 590,
- "properties": {
- "instrument": "basedrum",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 591,
- "properties": {
- "instrument": "basedrum",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 592,
- "properties": {
- "instrument": "basedrum",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 593,
- "properties": {
- "instrument": "basedrum",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 594,
- "properties": {
- "instrument": "basedrum",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 595,
- "properties": {
- "instrument": "basedrum",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 596,
- "properties": {
- "instrument": "basedrum",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 597,
- "properties": {
- "instrument": "basedrum",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 598,
- "properties": {
- "instrument": "basedrum",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 599,
- "properties": {
- "instrument": "basedrum",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 600,
- "properties": {
- "instrument": "basedrum",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 601,
- "properties": {
- "instrument": "basedrum",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 602,
- "properties": {
- "instrument": "basedrum",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 603,
- "properties": {
- "instrument": "basedrum",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 604,
- "properties": {
- "instrument": "basedrum",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 605,
- "properties": {
- "instrument": "basedrum",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 606,
- "properties": {
- "instrument": "basedrum",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 607,
- "properties": {
- "instrument": "basedrum",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 608,
- "properties": {
- "instrument": "basedrum",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 609,
- "properties": {
- "instrument": "basedrum",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 610,
- "properties": {
- "instrument": "basedrum",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 611,
- "properties": {
- "instrument": "basedrum",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 612,
- "properties": {
- "instrument": "basedrum",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 613,
- "properties": {
- "instrument": "basedrum",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 614,
- "properties": {
- "instrument": "basedrum",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 615,
- "properties": {
- "instrument": "basedrum",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 616,
- "properties": {
- "instrument": "basedrum",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 617,
- "properties": {
- "instrument": "basedrum",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 618,
- "properties": {
- "instrument": "basedrum",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 619,
- "properties": {
- "instrument": "basedrum",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 620,
- "properties": {
- "instrument": "basedrum",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 621,
- "properties": {
- "instrument": "basedrum",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 622,
- "properties": {
- "instrument": "basedrum",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 623,
- "properties": {
- "instrument": "basedrum",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 624,
- "properties": {
- "instrument": "basedrum",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 625,
- "properties": {
- "instrument": "basedrum",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 626,
- "properties": {
- "instrument": "basedrum",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 627,
- "properties": {
- "instrument": "basedrum",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 628,
- "properties": {
- "instrument": "basedrum",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 629,
- "properties": {
- "instrument": "basedrum",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 630,
- "properties": {
- "instrument": "basedrum",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 631,
"properties": {
"instrument": "basedrum",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 632,
"properties": {
"instrument": "basedrum",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 633,
"properties": {
"instrument": "basedrum",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 634,
"properties": {
"instrument": "basedrum",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 635,
"properties": {
"instrument": "basedrum",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 636,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 637,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 638,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 639,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 640,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 641,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 642,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 643,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 644,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 645,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 646,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 647,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 648,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 649,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 650,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 651,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 652,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 653,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 654,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 655,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 656,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 657,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 658,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 659,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 660,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 661,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 662,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 663,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 664,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 665,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 666,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 667,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 668,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 669,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 670,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 671,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 672,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 673,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 674,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 675,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 676,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 677,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 678,
+ "properties": {
+ "instrument": "basedrum",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 679,
"properties": {
"instrument": "basedrum",
"note": "24",
@@ -145597,399 +145682,399 @@
}
},
{
- "id": 637,
+ "id": 680,
"properties": {
"instrument": "basedrum",
"note": "24",
"powered": "false"
}
},
- {
- "id": 638,
- "properties": {
- "instrument": "snare",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 639,
- "properties": {
- "instrument": "snare",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 640,
- "properties": {
- "instrument": "snare",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 641,
- "properties": {
- "instrument": "snare",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 642,
- "properties": {
- "instrument": "snare",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 643,
- "properties": {
- "instrument": "snare",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 644,
- "properties": {
- "instrument": "snare",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 645,
- "properties": {
- "instrument": "snare",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 646,
- "properties": {
- "instrument": "snare",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 647,
- "properties": {
- "instrument": "snare",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 648,
- "properties": {
- "instrument": "snare",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 649,
- "properties": {
- "instrument": "snare",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 650,
- "properties": {
- "instrument": "snare",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 651,
- "properties": {
- "instrument": "snare",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 652,
- "properties": {
- "instrument": "snare",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 653,
- "properties": {
- "instrument": "snare",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 654,
- "properties": {
- "instrument": "snare",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 655,
- "properties": {
- "instrument": "snare",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 656,
- "properties": {
- "instrument": "snare",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 657,
- "properties": {
- "instrument": "snare",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 658,
- "properties": {
- "instrument": "snare",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 659,
- "properties": {
- "instrument": "snare",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 660,
- "properties": {
- "instrument": "snare",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 661,
- "properties": {
- "instrument": "snare",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 662,
- "properties": {
- "instrument": "snare",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 663,
- "properties": {
- "instrument": "snare",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 664,
- "properties": {
- "instrument": "snare",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 665,
- "properties": {
- "instrument": "snare",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 666,
- "properties": {
- "instrument": "snare",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 667,
- "properties": {
- "instrument": "snare",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 668,
- "properties": {
- "instrument": "snare",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 669,
- "properties": {
- "instrument": "snare",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 670,
- "properties": {
- "instrument": "snare",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 671,
- "properties": {
- "instrument": "snare",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 672,
- "properties": {
- "instrument": "snare",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 673,
- "properties": {
- "instrument": "snare",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 674,
- "properties": {
- "instrument": "snare",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 675,
- "properties": {
- "instrument": "snare",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 676,
- "properties": {
- "instrument": "snare",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 677,
- "properties": {
- "instrument": "snare",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 678,
- "properties": {
- "instrument": "snare",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 679,
- "properties": {
- "instrument": "snare",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 680,
- "properties": {
- "instrument": "snare",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 681,
"properties": {
"instrument": "snare",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 682,
"properties": {
"instrument": "snare",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 683,
"properties": {
"instrument": "snare",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 684,
"properties": {
"instrument": "snare",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 685,
"properties": {
"instrument": "snare",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 686,
+ "properties": {
+ "instrument": "snare",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 687,
+ "properties": {
+ "instrument": "snare",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 688,
+ "properties": {
+ "instrument": "snare",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 689,
+ "properties": {
+ "instrument": "snare",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 690,
+ "properties": {
+ "instrument": "snare",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 691,
+ "properties": {
+ "instrument": "snare",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 692,
+ "properties": {
+ "instrument": "snare",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 693,
+ "properties": {
+ "instrument": "snare",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 694,
+ "properties": {
+ "instrument": "snare",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 695,
+ "properties": {
+ "instrument": "snare",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 696,
+ "properties": {
+ "instrument": "snare",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 697,
+ "properties": {
+ "instrument": "snare",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 698,
+ "properties": {
+ "instrument": "snare",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 699,
+ "properties": {
+ "instrument": "snare",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 700,
+ "properties": {
+ "instrument": "snare",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 701,
+ "properties": {
+ "instrument": "snare",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 702,
+ "properties": {
+ "instrument": "snare",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 703,
+ "properties": {
+ "instrument": "snare",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 704,
+ "properties": {
+ "instrument": "snare",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 705,
+ "properties": {
+ "instrument": "snare",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 706,
+ "properties": {
+ "instrument": "snare",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 707,
+ "properties": {
+ "instrument": "snare",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 708,
+ "properties": {
+ "instrument": "snare",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 709,
+ "properties": {
+ "instrument": "snare",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 710,
+ "properties": {
+ "instrument": "snare",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 711,
+ "properties": {
+ "instrument": "snare",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 712,
+ "properties": {
+ "instrument": "snare",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 713,
+ "properties": {
+ "instrument": "snare",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 714,
+ "properties": {
+ "instrument": "snare",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 715,
+ "properties": {
+ "instrument": "snare",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 716,
+ "properties": {
+ "instrument": "snare",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 717,
+ "properties": {
+ "instrument": "snare",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 718,
+ "properties": {
+ "instrument": "snare",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 719,
+ "properties": {
+ "instrument": "snare",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 720,
+ "properties": {
+ "instrument": "snare",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 721,
+ "properties": {
+ "instrument": "snare",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 722,
+ "properties": {
+ "instrument": "snare",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 723,
+ "properties": {
+ "instrument": "snare",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 724,
+ "properties": {
+ "instrument": "snare",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 725,
+ "properties": {
+ "instrument": "snare",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 726,
+ "properties": {
+ "instrument": "snare",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 727,
+ "properties": {
+ "instrument": "snare",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 728,
+ "properties": {
+ "instrument": "snare",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 729,
"properties": {
"instrument": "snare",
"note": "24",
@@ -145997,399 +146082,399 @@
}
},
{
- "id": 687,
+ "id": 730,
"properties": {
"instrument": "snare",
"note": "24",
"powered": "false"
}
},
- {
- "id": 688,
- "properties": {
- "instrument": "hat",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 689,
- "properties": {
- "instrument": "hat",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 690,
- "properties": {
- "instrument": "hat",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 691,
- "properties": {
- "instrument": "hat",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 692,
- "properties": {
- "instrument": "hat",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 693,
- "properties": {
- "instrument": "hat",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 694,
- "properties": {
- "instrument": "hat",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 695,
- "properties": {
- "instrument": "hat",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 696,
- "properties": {
- "instrument": "hat",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 697,
- "properties": {
- "instrument": "hat",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 698,
- "properties": {
- "instrument": "hat",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 699,
- "properties": {
- "instrument": "hat",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 700,
- "properties": {
- "instrument": "hat",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 701,
- "properties": {
- "instrument": "hat",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 702,
- "properties": {
- "instrument": "hat",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 703,
- "properties": {
- "instrument": "hat",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 704,
- "properties": {
- "instrument": "hat",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 705,
- "properties": {
- "instrument": "hat",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 706,
- "properties": {
- "instrument": "hat",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 707,
- "properties": {
- "instrument": "hat",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 708,
- "properties": {
- "instrument": "hat",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 709,
- "properties": {
- "instrument": "hat",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 710,
- "properties": {
- "instrument": "hat",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 711,
- "properties": {
- "instrument": "hat",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 712,
- "properties": {
- "instrument": "hat",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 713,
- "properties": {
- "instrument": "hat",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 714,
- "properties": {
- "instrument": "hat",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 715,
- "properties": {
- "instrument": "hat",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 716,
- "properties": {
- "instrument": "hat",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 717,
- "properties": {
- "instrument": "hat",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 718,
- "properties": {
- "instrument": "hat",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 719,
- "properties": {
- "instrument": "hat",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 720,
- "properties": {
- "instrument": "hat",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 721,
- "properties": {
- "instrument": "hat",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 722,
- "properties": {
- "instrument": "hat",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 723,
- "properties": {
- "instrument": "hat",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 724,
- "properties": {
- "instrument": "hat",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 725,
- "properties": {
- "instrument": "hat",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 726,
- "properties": {
- "instrument": "hat",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 727,
- "properties": {
- "instrument": "hat",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 728,
- "properties": {
- "instrument": "hat",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 729,
- "properties": {
- "instrument": "hat",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 730,
- "properties": {
- "instrument": "hat",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 731,
"properties": {
"instrument": "hat",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 732,
"properties": {
"instrument": "hat",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 733,
"properties": {
"instrument": "hat",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 734,
"properties": {
"instrument": "hat",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 735,
"properties": {
"instrument": "hat",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 736,
+ "properties": {
+ "instrument": "hat",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 737,
+ "properties": {
+ "instrument": "hat",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 738,
+ "properties": {
+ "instrument": "hat",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 739,
+ "properties": {
+ "instrument": "hat",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 740,
+ "properties": {
+ "instrument": "hat",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 741,
+ "properties": {
+ "instrument": "hat",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 742,
+ "properties": {
+ "instrument": "hat",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 743,
+ "properties": {
+ "instrument": "hat",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 744,
+ "properties": {
+ "instrument": "hat",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 745,
+ "properties": {
+ "instrument": "hat",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 746,
+ "properties": {
+ "instrument": "hat",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 747,
+ "properties": {
+ "instrument": "hat",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 748,
+ "properties": {
+ "instrument": "hat",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 749,
+ "properties": {
+ "instrument": "hat",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 750,
+ "properties": {
+ "instrument": "hat",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 751,
+ "properties": {
+ "instrument": "hat",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 752,
+ "properties": {
+ "instrument": "hat",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 753,
+ "properties": {
+ "instrument": "hat",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 754,
+ "properties": {
+ "instrument": "hat",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 755,
+ "properties": {
+ "instrument": "hat",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 756,
+ "properties": {
+ "instrument": "hat",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 757,
+ "properties": {
+ "instrument": "hat",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 758,
+ "properties": {
+ "instrument": "hat",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 759,
+ "properties": {
+ "instrument": "hat",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 760,
+ "properties": {
+ "instrument": "hat",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 761,
+ "properties": {
+ "instrument": "hat",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 762,
+ "properties": {
+ "instrument": "hat",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 763,
+ "properties": {
+ "instrument": "hat",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 764,
+ "properties": {
+ "instrument": "hat",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 765,
+ "properties": {
+ "instrument": "hat",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 766,
+ "properties": {
+ "instrument": "hat",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 767,
+ "properties": {
+ "instrument": "hat",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 768,
+ "properties": {
+ "instrument": "hat",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 769,
+ "properties": {
+ "instrument": "hat",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 770,
+ "properties": {
+ "instrument": "hat",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 771,
+ "properties": {
+ "instrument": "hat",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 772,
+ "properties": {
+ "instrument": "hat",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 773,
+ "properties": {
+ "instrument": "hat",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 774,
+ "properties": {
+ "instrument": "hat",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 775,
+ "properties": {
+ "instrument": "hat",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 776,
+ "properties": {
+ "instrument": "hat",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 777,
+ "properties": {
+ "instrument": "hat",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 778,
+ "properties": {
+ "instrument": "hat",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 779,
"properties": {
"instrument": "hat",
"note": "24",
@@ -146397,399 +146482,399 @@
}
},
{
- "id": 737,
+ "id": 780,
"properties": {
"instrument": "hat",
"note": "24",
"powered": "false"
}
},
- {
- "id": 738,
- "properties": {
- "instrument": "bass",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 739,
- "properties": {
- "instrument": "bass",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 740,
- "properties": {
- "instrument": "bass",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 741,
- "properties": {
- "instrument": "bass",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 742,
- "properties": {
- "instrument": "bass",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 743,
- "properties": {
- "instrument": "bass",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 744,
- "properties": {
- "instrument": "bass",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 745,
- "properties": {
- "instrument": "bass",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 746,
- "properties": {
- "instrument": "bass",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 747,
- "properties": {
- "instrument": "bass",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 748,
- "properties": {
- "instrument": "bass",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 749,
- "properties": {
- "instrument": "bass",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 750,
- "properties": {
- "instrument": "bass",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 751,
- "properties": {
- "instrument": "bass",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 752,
- "properties": {
- "instrument": "bass",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 753,
- "properties": {
- "instrument": "bass",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 754,
- "properties": {
- "instrument": "bass",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 755,
- "properties": {
- "instrument": "bass",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 756,
- "properties": {
- "instrument": "bass",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 757,
- "properties": {
- "instrument": "bass",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 758,
- "properties": {
- "instrument": "bass",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 759,
- "properties": {
- "instrument": "bass",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 760,
- "properties": {
- "instrument": "bass",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 761,
- "properties": {
- "instrument": "bass",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 762,
- "properties": {
- "instrument": "bass",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 763,
- "properties": {
- "instrument": "bass",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 764,
- "properties": {
- "instrument": "bass",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 765,
- "properties": {
- "instrument": "bass",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 766,
- "properties": {
- "instrument": "bass",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 767,
- "properties": {
- "instrument": "bass",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 768,
- "properties": {
- "instrument": "bass",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 769,
- "properties": {
- "instrument": "bass",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 770,
- "properties": {
- "instrument": "bass",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 771,
- "properties": {
- "instrument": "bass",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 772,
- "properties": {
- "instrument": "bass",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 773,
- "properties": {
- "instrument": "bass",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 774,
- "properties": {
- "instrument": "bass",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 775,
- "properties": {
- "instrument": "bass",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 776,
- "properties": {
- "instrument": "bass",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 777,
- "properties": {
- "instrument": "bass",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 778,
- "properties": {
- "instrument": "bass",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 779,
- "properties": {
- "instrument": "bass",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 780,
- "properties": {
- "instrument": "bass",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 781,
"properties": {
"instrument": "bass",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 782,
"properties": {
"instrument": "bass",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 783,
"properties": {
"instrument": "bass",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 784,
"properties": {
"instrument": "bass",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 785,
"properties": {
"instrument": "bass",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 786,
+ "properties": {
+ "instrument": "bass",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 787,
+ "properties": {
+ "instrument": "bass",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 788,
+ "properties": {
+ "instrument": "bass",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 789,
+ "properties": {
+ "instrument": "bass",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 790,
+ "properties": {
+ "instrument": "bass",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 791,
+ "properties": {
+ "instrument": "bass",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 792,
+ "properties": {
+ "instrument": "bass",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 793,
+ "properties": {
+ "instrument": "bass",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 794,
+ "properties": {
+ "instrument": "bass",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 795,
+ "properties": {
+ "instrument": "bass",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 796,
+ "properties": {
+ "instrument": "bass",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 797,
+ "properties": {
+ "instrument": "bass",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 798,
+ "properties": {
+ "instrument": "bass",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 799,
+ "properties": {
+ "instrument": "bass",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 800,
+ "properties": {
+ "instrument": "bass",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 801,
+ "properties": {
+ "instrument": "bass",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 802,
+ "properties": {
+ "instrument": "bass",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 803,
+ "properties": {
+ "instrument": "bass",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 804,
+ "properties": {
+ "instrument": "bass",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 805,
+ "properties": {
+ "instrument": "bass",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 806,
+ "properties": {
+ "instrument": "bass",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 807,
+ "properties": {
+ "instrument": "bass",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 808,
+ "properties": {
+ "instrument": "bass",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 809,
+ "properties": {
+ "instrument": "bass",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 810,
+ "properties": {
+ "instrument": "bass",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 811,
+ "properties": {
+ "instrument": "bass",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 812,
+ "properties": {
+ "instrument": "bass",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 813,
+ "properties": {
+ "instrument": "bass",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 814,
+ "properties": {
+ "instrument": "bass",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 815,
+ "properties": {
+ "instrument": "bass",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 816,
+ "properties": {
+ "instrument": "bass",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 817,
+ "properties": {
+ "instrument": "bass",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 818,
+ "properties": {
+ "instrument": "bass",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 819,
+ "properties": {
+ "instrument": "bass",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 820,
+ "properties": {
+ "instrument": "bass",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 821,
+ "properties": {
+ "instrument": "bass",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 822,
+ "properties": {
+ "instrument": "bass",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 823,
+ "properties": {
+ "instrument": "bass",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 824,
+ "properties": {
+ "instrument": "bass",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 825,
+ "properties": {
+ "instrument": "bass",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 826,
+ "properties": {
+ "instrument": "bass",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 827,
+ "properties": {
+ "instrument": "bass",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 828,
+ "properties": {
+ "instrument": "bass",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 829,
"properties": {
"instrument": "bass",
"note": "24",
@@ -146797,399 +146882,399 @@
}
},
{
- "id": 787,
+ "id": 830,
"properties": {
"instrument": "bass",
"note": "24",
"powered": "false"
}
},
- {
- "id": 788,
- "properties": {
- "instrument": "flute",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 789,
- "properties": {
- "instrument": "flute",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 790,
- "properties": {
- "instrument": "flute",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 791,
- "properties": {
- "instrument": "flute",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 792,
- "properties": {
- "instrument": "flute",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 793,
- "properties": {
- "instrument": "flute",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 794,
- "properties": {
- "instrument": "flute",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 795,
- "properties": {
- "instrument": "flute",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 796,
- "properties": {
- "instrument": "flute",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 797,
- "properties": {
- "instrument": "flute",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 798,
- "properties": {
- "instrument": "flute",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 799,
- "properties": {
- "instrument": "flute",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 800,
- "properties": {
- "instrument": "flute",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 801,
- "properties": {
- "instrument": "flute",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 802,
- "properties": {
- "instrument": "flute",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 803,
- "properties": {
- "instrument": "flute",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 804,
- "properties": {
- "instrument": "flute",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 805,
- "properties": {
- "instrument": "flute",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 806,
- "properties": {
- "instrument": "flute",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 807,
- "properties": {
- "instrument": "flute",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 808,
- "properties": {
- "instrument": "flute",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 809,
- "properties": {
- "instrument": "flute",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 810,
- "properties": {
- "instrument": "flute",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 811,
- "properties": {
- "instrument": "flute",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 812,
- "properties": {
- "instrument": "flute",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 813,
- "properties": {
- "instrument": "flute",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 814,
- "properties": {
- "instrument": "flute",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 815,
- "properties": {
- "instrument": "flute",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 816,
- "properties": {
- "instrument": "flute",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 817,
- "properties": {
- "instrument": "flute",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 818,
- "properties": {
- "instrument": "flute",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 819,
- "properties": {
- "instrument": "flute",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 820,
- "properties": {
- "instrument": "flute",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 821,
- "properties": {
- "instrument": "flute",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 822,
- "properties": {
- "instrument": "flute",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 823,
- "properties": {
- "instrument": "flute",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 824,
- "properties": {
- "instrument": "flute",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 825,
- "properties": {
- "instrument": "flute",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 826,
- "properties": {
- "instrument": "flute",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 827,
- "properties": {
- "instrument": "flute",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 828,
- "properties": {
- "instrument": "flute",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 829,
- "properties": {
- "instrument": "flute",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 830,
- "properties": {
- "instrument": "flute",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 831,
"properties": {
"instrument": "flute",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 832,
"properties": {
"instrument": "flute",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 833,
"properties": {
"instrument": "flute",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 834,
"properties": {
"instrument": "flute",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 835,
"properties": {
"instrument": "flute",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 836,
+ "properties": {
+ "instrument": "flute",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 837,
+ "properties": {
+ "instrument": "flute",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 838,
+ "properties": {
+ "instrument": "flute",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 839,
+ "properties": {
+ "instrument": "flute",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 840,
+ "properties": {
+ "instrument": "flute",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 841,
+ "properties": {
+ "instrument": "flute",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 842,
+ "properties": {
+ "instrument": "flute",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 843,
+ "properties": {
+ "instrument": "flute",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 844,
+ "properties": {
+ "instrument": "flute",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 845,
+ "properties": {
+ "instrument": "flute",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 846,
+ "properties": {
+ "instrument": "flute",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 847,
+ "properties": {
+ "instrument": "flute",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 848,
+ "properties": {
+ "instrument": "flute",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 849,
+ "properties": {
+ "instrument": "flute",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 850,
+ "properties": {
+ "instrument": "flute",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 851,
+ "properties": {
+ "instrument": "flute",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 852,
+ "properties": {
+ "instrument": "flute",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 853,
+ "properties": {
+ "instrument": "flute",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 854,
+ "properties": {
+ "instrument": "flute",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 855,
+ "properties": {
+ "instrument": "flute",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 856,
+ "properties": {
+ "instrument": "flute",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 857,
+ "properties": {
+ "instrument": "flute",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 858,
+ "properties": {
+ "instrument": "flute",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 859,
+ "properties": {
+ "instrument": "flute",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 860,
+ "properties": {
+ "instrument": "flute",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 861,
+ "properties": {
+ "instrument": "flute",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 862,
+ "properties": {
+ "instrument": "flute",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 863,
+ "properties": {
+ "instrument": "flute",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 864,
+ "properties": {
+ "instrument": "flute",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 865,
+ "properties": {
+ "instrument": "flute",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 866,
+ "properties": {
+ "instrument": "flute",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 867,
+ "properties": {
+ "instrument": "flute",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 868,
+ "properties": {
+ "instrument": "flute",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 869,
+ "properties": {
+ "instrument": "flute",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 870,
+ "properties": {
+ "instrument": "flute",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 871,
+ "properties": {
+ "instrument": "flute",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 872,
+ "properties": {
+ "instrument": "flute",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 873,
+ "properties": {
+ "instrument": "flute",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 874,
+ "properties": {
+ "instrument": "flute",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 875,
+ "properties": {
+ "instrument": "flute",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 876,
+ "properties": {
+ "instrument": "flute",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 877,
+ "properties": {
+ "instrument": "flute",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 878,
+ "properties": {
+ "instrument": "flute",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 879,
"properties": {
"instrument": "flute",
"note": "24",
@@ -147197,399 +147282,399 @@
}
},
{
- "id": 837,
+ "id": 880,
"properties": {
"instrument": "flute",
"note": "24",
"powered": "false"
}
},
- {
- "id": 838,
- "properties": {
- "instrument": "bell",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 839,
- "properties": {
- "instrument": "bell",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 840,
- "properties": {
- "instrument": "bell",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 841,
- "properties": {
- "instrument": "bell",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 842,
- "properties": {
- "instrument": "bell",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 843,
- "properties": {
- "instrument": "bell",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 844,
- "properties": {
- "instrument": "bell",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 845,
- "properties": {
- "instrument": "bell",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 846,
- "properties": {
- "instrument": "bell",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 847,
- "properties": {
- "instrument": "bell",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 848,
- "properties": {
- "instrument": "bell",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 849,
- "properties": {
- "instrument": "bell",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 850,
- "properties": {
- "instrument": "bell",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 851,
- "properties": {
- "instrument": "bell",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 852,
- "properties": {
- "instrument": "bell",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 853,
- "properties": {
- "instrument": "bell",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 854,
- "properties": {
- "instrument": "bell",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 855,
- "properties": {
- "instrument": "bell",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 856,
- "properties": {
- "instrument": "bell",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 857,
- "properties": {
- "instrument": "bell",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 858,
- "properties": {
- "instrument": "bell",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 859,
- "properties": {
- "instrument": "bell",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 860,
- "properties": {
- "instrument": "bell",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 861,
- "properties": {
- "instrument": "bell",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 862,
- "properties": {
- "instrument": "bell",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 863,
- "properties": {
- "instrument": "bell",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 864,
- "properties": {
- "instrument": "bell",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 865,
- "properties": {
- "instrument": "bell",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 866,
- "properties": {
- "instrument": "bell",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 867,
- "properties": {
- "instrument": "bell",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 868,
- "properties": {
- "instrument": "bell",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 869,
- "properties": {
- "instrument": "bell",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 870,
- "properties": {
- "instrument": "bell",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 871,
- "properties": {
- "instrument": "bell",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 872,
- "properties": {
- "instrument": "bell",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 873,
- "properties": {
- "instrument": "bell",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 874,
- "properties": {
- "instrument": "bell",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 875,
- "properties": {
- "instrument": "bell",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 876,
- "properties": {
- "instrument": "bell",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 877,
- "properties": {
- "instrument": "bell",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 878,
- "properties": {
- "instrument": "bell",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 879,
- "properties": {
- "instrument": "bell",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 880,
- "properties": {
- "instrument": "bell",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 881,
"properties": {
"instrument": "bell",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 882,
"properties": {
"instrument": "bell",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 883,
"properties": {
"instrument": "bell",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 884,
"properties": {
"instrument": "bell",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 885,
"properties": {
"instrument": "bell",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 886,
+ "properties": {
+ "instrument": "bell",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 887,
+ "properties": {
+ "instrument": "bell",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 888,
+ "properties": {
+ "instrument": "bell",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 889,
+ "properties": {
+ "instrument": "bell",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 890,
+ "properties": {
+ "instrument": "bell",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 891,
+ "properties": {
+ "instrument": "bell",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 892,
+ "properties": {
+ "instrument": "bell",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 893,
+ "properties": {
+ "instrument": "bell",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 894,
+ "properties": {
+ "instrument": "bell",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 895,
+ "properties": {
+ "instrument": "bell",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 896,
+ "properties": {
+ "instrument": "bell",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 897,
+ "properties": {
+ "instrument": "bell",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 898,
+ "properties": {
+ "instrument": "bell",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 899,
+ "properties": {
+ "instrument": "bell",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 900,
+ "properties": {
+ "instrument": "bell",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 901,
+ "properties": {
+ "instrument": "bell",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 902,
+ "properties": {
+ "instrument": "bell",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 903,
+ "properties": {
+ "instrument": "bell",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 904,
+ "properties": {
+ "instrument": "bell",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 905,
+ "properties": {
+ "instrument": "bell",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 906,
+ "properties": {
+ "instrument": "bell",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 907,
+ "properties": {
+ "instrument": "bell",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 908,
+ "properties": {
+ "instrument": "bell",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 909,
+ "properties": {
+ "instrument": "bell",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 910,
+ "properties": {
+ "instrument": "bell",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 911,
+ "properties": {
+ "instrument": "bell",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 912,
+ "properties": {
+ "instrument": "bell",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 913,
+ "properties": {
+ "instrument": "bell",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 914,
+ "properties": {
+ "instrument": "bell",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 915,
+ "properties": {
+ "instrument": "bell",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 916,
+ "properties": {
+ "instrument": "bell",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 917,
+ "properties": {
+ "instrument": "bell",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 918,
+ "properties": {
+ "instrument": "bell",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 919,
+ "properties": {
+ "instrument": "bell",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 920,
+ "properties": {
+ "instrument": "bell",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 921,
+ "properties": {
+ "instrument": "bell",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 922,
+ "properties": {
+ "instrument": "bell",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 923,
+ "properties": {
+ "instrument": "bell",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 924,
+ "properties": {
+ "instrument": "bell",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 925,
+ "properties": {
+ "instrument": "bell",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 926,
+ "properties": {
+ "instrument": "bell",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 927,
+ "properties": {
+ "instrument": "bell",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 928,
+ "properties": {
+ "instrument": "bell",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 929,
"properties": {
"instrument": "bell",
"note": "24",
@@ -147597,399 +147682,399 @@
}
},
{
- "id": 887,
+ "id": 930,
"properties": {
"instrument": "bell",
"note": "24",
"powered": "false"
}
},
- {
- "id": 888,
- "properties": {
- "instrument": "guitar",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 889,
- "properties": {
- "instrument": "guitar",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 890,
- "properties": {
- "instrument": "guitar",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 891,
- "properties": {
- "instrument": "guitar",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 892,
- "properties": {
- "instrument": "guitar",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 893,
- "properties": {
- "instrument": "guitar",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 894,
- "properties": {
- "instrument": "guitar",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 895,
- "properties": {
- "instrument": "guitar",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 896,
- "properties": {
- "instrument": "guitar",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 897,
- "properties": {
- "instrument": "guitar",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 898,
- "properties": {
- "instrument": "guitar",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 899,
- "properties": {
- "instrument": "guitar",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 900,
- "properties": {
- "instrument": "guitar",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 901,
- "properties": {
- "instrument": "guitar",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 902,
- "properties": {
- "instrument": "guitar",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 903,
- "properties": {
- "instrument": "guitar",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 904,
- "properties": {
- "instrument": "guitar",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 905,
- "properties": {
- "instrument": "guitar",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 906,
- "properties": {
- "instrument": "guitar",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 907,
- "properties": {
- "instrument": "guitar",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 908,
- "properties": {
- "instrument": "guitar",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 909,
- "properties": {
- "instrument": "guitar",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 910,
- "properties": {
- "instrument": "guitar",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 911,
- "properties": {
- "instrument": "guitar",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 912,
- "properties": {
- "instrument": "guitar",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 913,
- "properties": {
- "instrument": "guitar",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 914,
- "properties": {
- "instrument": "guitar",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 915,
- "properties": {
- "instrument": "guitar",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 916,
- "properties": {
- "instrument": "guitar",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 917,
- "properties": {
- "instrument": "guitar",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 918,
- "properties": {
- "instrument": "guitar",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 919,
- "properties": {
- "instrument": "guitar",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 920,
- "properties": {
- "instrument": "guitar",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 921,
- "properties": {
- "instrument": "guitar",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 922,
- "properties": {
- "instrument": "guitar",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 923,
- "properties": {
- "instrument": "guitar",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 924,
- "properties": {
- "instrument": "guitar",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 925,
- "properties": {
- "instrument": "guitar",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 926,
- "properties": {
- "instrument": "guitar",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 927,
- "properties": {
- "instrument": "guitar",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 928,
- "properties": {
- "instrument": "guitar",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 929,
- "properties": {
- "instrument": "guitar",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 930,
- "properties": {
- "instrument": "guitar",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 931,
"properties": {
"instrument": "guitar",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 932,
"properties": {
"instrument": "guitar",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 933,
"properties": {
"instrument": "guitar",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 934,
"properties": {
"instrument": "guitar",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 935,
"properties": {
"instrument": "guitar",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 936,
+ "properties": {
+ "instrument": "guitar",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 937,
+ "properties": {
+ "instrument": "guitar",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 938,
+ "properties": {
+ "instrument": "guitar",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 939,
+ "properties": {
+ "instrument": "guitar",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 940,
+ "properties": {
+ "instrument": "guitar",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 941,
+ "properties": {
+ "instrument": "guitar",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 942,
+ "properties": {
+ "instrument": "guitar",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 943,
+ "properties": {
+ "instrument": "guitar",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 944,
+ "properties": {
+ "instrument": "guitar",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 945,
+ "properties": {
+ "instrument": "guitar",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 946,
+ "properties": {
+ "instrument": "guitar",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 947,
+ "properties": {
+ "instrument": "guitar",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 948,
+ "properties": {
+ "instrument": "guitar",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 949,
+ "properties": {
+ "instrument": "guitar",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 950,
+ "properties": {
+ "instrument": "guitar",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 951,
+ "properties": {
+ "instrument": "guitar",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 952,
+ "properties": {
+ "instrument": "guitar",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 953,
+ "properties": {
+ "instrument": "guitar",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 954,
+ "properties": {
+ "instrument": "guitar",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 955,
+ "properties": {
+ "instrument": "guitar",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 956,
+ "properties": {
+ "instrument": "guitar",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 957,
+ "properties": {
+ "instrument": "guitar",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 958,
+ "properties": {
+ "instrument": "guitar",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 959,
+ "properties": {
+ "instrument": "guitar",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 960,
+ "properties": {
+ "instrument": "guitar",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 961,
+ "properties": {
+ "instrument": "guitar",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 962,
+ "properties": {
+ "instrument": "guitar",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 963,
+ "properties": {
+ "instrument": "guitar",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 964,
+ "properties": {
+ "instrument": "guitar",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 965,
+ "properties": {
+ "instrument": "guitar",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 966,
+ "properties": {
+ "instrument": "guitar",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 967,
+ "properties": {
+ "instrument": "guitar",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 968,
+ "properties": {
+ "instrument": "guitar",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 969,
+ "properties": {
+ "instrument": "guitar",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 970,
+ "properties": {
+ "instrument": "guitar",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 971,
+ "properties": {
+ "instrument": "guitar",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 972,
+ "properties": {
+ "instrument": "guitar",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 973,
+ "properties": {
+ "instrument": "guitar",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 974,
+ "properties": {
+ "instrument": "guitar",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 975,
+ "properties": {
+ "instrument": "guitar",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 976,
+ "properties": {
+ "instrument": "guitar",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 977,
+ "properties": {
+ "instrument": "guitar",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 978,
+ "properties": {
+ "instrument": "guitar",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 979,
"properties": {
"instrument": "guitar",
"note": "24",
@@ -147997,399 +148082,399 @@
}
},
{
- "id": 937,
+ "id": 980,
"properties": {
"instrument": "guitar",
"note": "24",
"powered": "false"
}
},
- {
- "id": 938,
- "properties": {
- "instrument": "chime",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 939,
- "properties": {
- "instrument": "chime",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 940,
- "properties": {
- "instrument": "chime",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 941,
- "properties": {
- "instrument": "chime",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 942,
- "properties": {
- "instrument": "chime",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 943,
- "properties": {
- "instrument": "chime",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 944,
- "properties": {
- "instrument": "chime",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 945,
- "properties": {
- "instrument": "chime",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 946,
- "properties": {
- "instrument": "chime",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 947,
- "properties": {
- "instrument": "chime",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 948,
- "properties": {
- "instrument": "chime",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 949,
- "properties": {
- "instrument": "chime",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 950,
- "properties": {
- "instrument": "chime",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 951,
- "properties": {
- "instrument": "chime",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 952,
- "properties": {
- "instrument": "chime",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 953,
- "properties": {
- "instrument": "chime",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 954,
- "properties": {
- "instrument": "chime",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 955,
- "properties": {
- "instrument": "chime",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 956,
- "properties": {
- "instrument": "chime",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 957,
- "properties": {
- "instrument": "chime",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 958,
- "properties": {
- "instrument": "chime",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 959,
- "properties": {
- "instrument": "chime",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 960,
- "properties": {
- "instrument": "chime",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 961,
- "properties": {
- "instrument": "chime",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 962,
- "properties": {
- "instrument": "chime",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 963,
- "properties": {
- "instrument": "chime",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 964,
- "properties": {
- "instrument": "chime",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 965,
- "properties": {
- "instrument": "chime",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 966,
- "properties": {
- "instrument": "chime",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 967,
- "properties": {
- "instrument": "chime",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 968,
- "properties": {
- "instrument": "chime",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 969,
- "properties": {
- "instrument": "chime",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 970,
- "properties": {
- "instrument": "chime",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 971,
- "properties": {
- "instrument": "chime",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 972,
- "properties": {
- "instrument": "chime",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 973,
- "properties": {
- "instrument": "chime",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 974,
- "properties": {
- "instrument": "chime",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 975,
- "properties": {
- "instrument": "chime",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 976,
- "properties": {
- "instrument": "chime",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 977,
- "properties": {
- "instrument": "chime",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 978,
- "properties": {
- "instrument": "chime",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 979,
- "properties": {
- "instrument": "chime",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 980,
- "properties": {
- "instrument": "chime",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 981,
"properties": {
"instrument": "chime",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 982,
"properties": {
"instrument": "chime",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 983,
"properties": {
"instrument": "chime",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 984,
"properties": {
"instrument": "chime",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 985,
"properties": {
"instrument": "chime",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 986,
+ "properties": {
+ "instrument": "chime",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 987,
+ "properties": {
+ "instrument": "chime",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 988,
+ "properties": {
+ "instrument": "chime",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 989,
+ "properties": {
+ "instrument": "chime",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 990,
+ "properties": {
+ "instrument": "chime",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 991,
+ "properties": {
+ "instrument": "chime",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 992,
+ "properties": {
+ "instrument": "chime",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 993,
+ "properties": {
+ "instrument": "chime",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 994,
+ "properties": {
+ "instrument": "chime",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 995,
+ "properties": {
+ "instrument": "chime",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 996,
+ "properties": {
+ "instrument": "chime",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 997,
+ "properties": {
+ "instrument": "chime",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 998,
+ "properties": {
+ "instrument": "chime",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 999,
+ "properties": {
+ "instrument": "chime",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1000,
+ "properties": {
+ "instrument": "chime",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1001,
+ "properties": {
+ "instrument": "chime",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1002,
+ "properties": {
+ "instrument": "chime",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1003,
+ "properties": {
+ "instrument": "chime",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1004,
+ "properties": {
+ "instrument": "chime",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1005,
+ "properties": {
+ "instrument": "chime",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1006,
+ "properties": {
+ "instrument": "chime",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1007,
+ "properties": {
+ "instrument": "chime",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1008,
+ "properties": {
+ "instrument": "chime",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1009,
+ "properties": {
+ "instrument": "chime",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1010,
+ "properties": {
+ "instrument": "chime",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1011,
+ "properties": {
+ "instrument": "chime",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1012,
+ "properties": {
+ "instrument": "chime",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1013,
+ "properties": {
+ "instrument": "chime",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1014,
+ "properties": {
+ "instrument": "chime",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1015,
+ "properties": {
+ "instrument": "chime",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1016,
+ "properties": {
+ "instrument": "chime",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1017,
+ "properties": {
+ "instrument": "chime",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1018,
+ "properties": {
+ "instrument": "chime",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1019,
+ "properties": {
+ "instrument": "chime",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1020,
+ "properties": {
+ "instrument": "chime",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1021,
+ "properties": {
+ "instrument": "chime",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1022,
+ "properties": {
+ "instrument": "chime",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1023,
+ "properties": {
+ "instrument": "chime",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1024,
+ "properties": {
+ "instrument": "chime",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1025,
+ "properties": {
+ "instrument": "chime",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1026,
+ "properties": {
+ "instrument": "chime",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1027,
+ "properties": {
+ "instrument": "chime",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1028,
+ "properties": {
+ "instrument": "chime",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1029,
"properties": {
"instrument": "chime",
"note": "24",
@@ -148397,399 +148482,399 @@
}
},
{
- "id": 987,
+ "id": 1030,
"properties": {
"instrument": "chime",
"note": "24",
"powered": "false"
}
},
- {
- "id": 988,
- "properties": {
- "instrument": "xylophone",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 989,
- "properties": {
- "instrument": "xylophone",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 990,
- "properties": {
- "instrument": "xylophone",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 991,
- "properties": {
- "instrument": "xylophone",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 992,
- "properties": {
- "instrument": "xylophone",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 993,
- "properties": {
- "instrument": "xylophone",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 994,
- "properties": {
- "instrument": "xylophone",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 995,
- "properties": {
- "instrument": "xylophone",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 996,
- "properties": {
- "instrument": "xylophone",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 997,
- "properties": {
- "instrument": "xylophone",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 998,
- "properties": {
- "instrument": "xylophone",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 999,
- "properties": {
- "instrument": "xylophone",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1000,
- "properties": {
- "instrument": "xylophone",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1001,
- "properties": {
- "instrument": "xylophone",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1002,
- "properties": {
- "instrument": "xylophone",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1003,
- "properties": {
- "instrument": "xylophone",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1004,
- "properties": {
- "instrument": "xylophone",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1005,
- "properties": {
- "instrument": "xylophone",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1006,
- "properties": {
- "instrument": "xylophone",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1007,
- "properties": {
- "instrument": "xylophone",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1008,
- "properties": {
- "instrument": "xylophone",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1009,
- "properties": {
- "instrument": "xylophone",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1010,
- "properties": {
- "instrument": "xylophone",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1011,
- "properties": {
- "instrument": "xylophone",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1012,
- "properties": {
- "instrument": "xylophone",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1013,
- "properties": {
- "instrument": "xylophone",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1014,
- "properties": {
- "instrument": "xylophone",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1015,
- "properties": {
- "instrument": "xylophone",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1016,
- "properties": {
- "instrument": "xylophone",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1017,
- "properties": {
- "instrument": "xylophone",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1018,
- "properties": {
- "instrument": "xylophone",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1019,
- "properties": {
- "instrument": "xylophone",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1020,
- "properties": {
- "instrument": "xylophone",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1021,
- "properties": {
- "instrument": "xylophone",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1022,
- "properties": {
- "instrument": "xylophone",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1023,
- "properties": {
- "instrument": "xylophone",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1024,
- "properties": {
- "instrument": "xylophone",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1025,
- "properties": {
- "instrument": "xylophone",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1026,
- "properties": {
- "instrument": "xylophone",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1027,
- "properties": {
- "instrument": "xylophone",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1028,
- "properties": {
- "instrument": "xylophone",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1029,
- "properties": {
- "instrument": "xylophone",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1030,
- "properties": {
- "instrument": "xylophone",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 1031,
"properties": {
"instrument": "xylophone",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1032,
"properties": {
"instrument": "xylophone",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 1033,
"properties": {
"instrument": "xylophone",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 1034,
"properties": {
"instrument": "xylophone",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 1035,
"properties": {
"instrument": "xylophone",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 1036,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1037,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1038,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1039,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1040,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1041,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1042,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1043,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1044,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1045,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1046,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1047,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1048,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1049,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1050,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1051,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1052,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1053,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1054,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1055,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1056,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1057,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1058,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1059,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1060,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1061,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1062,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1063,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1064,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1065,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1066,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1067,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1068,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1069,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1070,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1071,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1072,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1073,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1074,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1075,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1076,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1077,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1078,
+ "properties": {
+ "instrument": "xylophone",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1079,
"properties": {
"instrument": "xylophone",
"note": "24",
@@ -148797,399 +148882,399 @@
}
},
{
- "id": 1037,
+ "id": 1080,
"properties": {
"instrument": "xylophone",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1038,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1039,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1040,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1041,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1042,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1043,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1044,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1045,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1046,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1047,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1048,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1049,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1050,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1051,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1052,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1053,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1054,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1055,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1056,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1057,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1058,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1059,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1060,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1061,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1062,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1063,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1064,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1065,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1066,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1067,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1068,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1069,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1070,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1071,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1072,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1073,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1074,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1075,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1076,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1077,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1078,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1079,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1080,
- "properties": {
- "instrument": "iron_xylophone",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 1081,
"properties": {
"instrument": "iron_xylophone",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1082,
"properties": {
"instrument": "iron_xylophone",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 1083,
"properties": {
"instrument": "iron_xylophone",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 1084,
"properties": {
"instrument": "iron_xylophone",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 1085,
"properties": {
"instrument": "iron_xylophone",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 1086,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1087,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1088,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1089,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1090,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1091,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1092,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1093,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1094,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1095,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1096,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1097,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1098,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1099,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1100,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1101,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1102,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1103,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1104,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1105,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1106,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1107,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1108,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1109,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1110,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1111,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1112,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1113,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1114,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1115,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1116,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1117,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1118,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1119,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1120,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1121,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1122,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1123,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1124,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1125,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1126,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1127,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1128,
+ "properties": {
+ "instrument": "iron_xylophone",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1129,
"properties": {
"instrument": "iron_xylophone",
"note": "24",
@@ -149197,399 +149282,399 @@
}
},
{
- "id": 1087,
+ "id": 1130,
"properties": {
"instrument": "iron_xylophone",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1088,
- "properties": {
- "instrument": "cow_bell",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1089,
- "properties": {
- "instrument": "cow_bell",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1090,
- "properties": {
- "instrument": "cow_bell",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1091,
- "properties": {
- "instrument": "cow_bell",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1092,
- "properties": {
- "instrument": "cow_bell",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1093,
- "properties": {
- "instrument": "cow_bell",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1094,
- "properties": {
- "instrument": "cow_bell",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1095,
- "properties": {
- "instrument": "cow_bell",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1096,
- "properties": {
- "instrument": "cow_bell",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1097,
- "properties": {
- "instrument": "cow_bell",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1098,
- "properties": {
- "instrument": "cow_bell",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1099,
- "properties": {
- "instrument": "cow_bell",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1100,
- "properties": {
- "instrument": "cow_bell",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1101,
- "properties": {
- "instrument": "cow_bell",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1102,
- "properties": {
- "instrument": "cow_bell",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1103,
- "properties": {
- "instrument": "cow_bell",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1104,
- "properties": {
- "instrument": "cow_bell",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1105,
- "properties": {
- "instrument": "cow_bell",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1106,
- "properties": {
- "instrument": "cow_bell",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1107,
- "properties": {
- "instrument": "cow_bell",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1108,
- "properties": {
- "instrument": "cow_bell",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1109,
- "properties": {
- "instrument": "cow_bell",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1110,
- "properties": {
- "instrument": "cow_bell",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1111,
- "properties": {
- "instrument": "cow_bell",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1112,
- "properties": {
- "instrument": "cow_bell",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1113,
- "properties": {
- "instrument": "cow_bell",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1114,
- "properties": {
- "instrument": "cow_bell",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1115,
- "properties": {
- "instrument": "cow_bell",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1116,
- "properties": {
- "instrument": "cow_bell",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1117,
- "properties": {
- "instrument": "cow_bell",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1118,
- "properties": {
- "instrument": "cow_bell",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1119,
- "properties": {
- "instrument": "cow_bell",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1120,
- "properties": {
- "instrument": "cow_bell",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1121,
- "properties": {
- "instrument": "cow_bell",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1122,
- "properties": {
- "instrument": "cow_bell",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1123,
- "properties": {
- "instrument": "cow_bell",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1124,
- "properties": {
- "instrument": "cow_bell",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1125,
- "properties": {
- "instrument": "cow_bell",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1126,
- "properties": {
- "instrument": "cow_bell",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1127,
- "properties": {
- "instrument": "cow_bell",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1128,
- "properties": {
- "instrument": "cow_bell",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1129,
- "properties": {
- "instrument": "cow_bell",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1130,
- "properties": {
- "instrument": "cow_bell",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 1131,
"properties": {
"instrument": "cow_bell",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1132,
"properties": {
"instrument": "cow_bell",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 1133,
"properties": {
"instrument": "cow_bell",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 1134,
"properties": {
"instrument": "cow_bell",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 1135,
"properties": {
"instrument": "cow_bell",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 1136,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1137,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1138,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1139,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1140,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1141,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1142,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1143,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1144,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1145,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1146,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1147,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1148,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1149,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1150,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1151,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1152,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1153,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1154,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1155,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1156,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1157,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1158,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1159,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1160,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1161,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1162,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1163,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1164,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1165,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1166,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1167,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1168,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1169,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1170,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1171,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1172,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1173,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1174,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1175,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1176,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1177,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1178,
+ "properties": {
+ "instrument": "cow_bell",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1179,
"properties": {
"instrument": "cow_bell",
"note": "24",
@@ -149597,399 +149682,399 @@
}
},
{
- "id": 1137,
+ "id": 1180,
"properties": {
"instrument": "cow_bell",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1138,
- "properties": {
- "instrument": "didgeridoo",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1139,
- "properties": {
- "instrument": "didgeridoo",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1140,
- "properties": {
- "instrument": "didgeridoo",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1141,
- "properties": {
- "instrument": "didgeridoo",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1142,
- "properties": {
- "instrument": "didgeridoo",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1143,
- "properties": {
- "instrument": "didgeridoo",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1144,
- "properties": {
- "instrument": "didgeridoo",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1145,
- "properties": {
- "instrument": "didgeridoo",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1146,
- "properties": {
- "instrument": "didgeridoo",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1147,
- "properties": {
- "instrument": "didgeridoo",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1148,
- "properties": {
- "instrument": "didgeridoo",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1149,
- "properties": {
- "instrument": "didgeridoo",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1150,
- "properties": {
- "instrument": "didgeridoo",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1151,
- "properties": {
- "instrument": "didgeridoo",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1152,
- "properties": {
- "instrument": "didgeridoo",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1153,
- "properties": {
- "instrument": "didgeridoo",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1154,
- "properties": {
- "instrument": "didgeridoo",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1155,
- "properties": {
- "instrument": "didgeridoo",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1156,
- "properties": {
- "instrument": "didgeridoo",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1157,
- "properties": {
- "instrument": "didgeridoo",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1158,
- "properties": {
- "instrument": "didgeridoo",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1159,
- "properties": {
- "instrument": "didgeridoo",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1160,
- "properties": {
- "instrument": "didgeridoo",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1161,
- "properties": {
- "instrument": "didgeridoo",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1162,
- "properties": {
- "instrument": "didgeridoo",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1163,
- "properties": {
- "instrument": "didgeridoo",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1164,
- "properties": {
- "instrument": "didgeridoo",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1165,
- "properties": {
- "instrument": "didgeridoo",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1166,
- "properties": {
- "instrument": "didgeridoo",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1167,
- "properties": {
- "instrument": "didgeridoo",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1168,
- "properties": {
- "instrument": "didgeridoo",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1169,
- "properties": {
- "instrument": "didgeridoo",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1170,
- "properties": {
- "instrument": "didgeridoo",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1171,
- "properties": {
- "instrument": "didgeridoo",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1172,
- "properties": {
- "instrument": "didgeridoo",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1173,
- "properties": {
- "instrument": "didgeridoo",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1174,
- "properties": {
- "instrument": "didgeridoo",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1175,
- "properties": {
- "instrument": "didgeridoo",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1176,
- "properties": {
- "instrument": "didgeridoo",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1177,
- "properties": {
- "instrument": "didgeridoo",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1178,
- "properties": {
- "instrument": "didgeridoo",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1179,
- "properties": {
- "instrument": "didgeridoo",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1180,
- "properties": {
- "instrument": "didgeridoo",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 1181,
"properties": {
"instrument": "didgeridoo",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1182,
"properties": {
"instrument": "didgeridoo",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 1183,
"properties": {
"instrument": "didgeridoo",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 1184,
"properties": {
"instrument": "didgeridoo",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 1185,
"properties": {
"instrument": "didgeridoo",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 1186,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1187,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1188,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1189,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1190,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1191,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1192,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1193,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1194,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1195,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1196,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1197,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1198,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1199,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1200,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1201,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1202,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1203,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1204,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1205,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1206,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1207,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1208,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1209,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1210,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1211,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1212,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1213,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1214,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1215,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1216,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1217,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1218,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1219,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1220,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1221,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1222,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1223,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1224,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1225,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1226,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1227,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1228,
+ "properties": {
+ "instrument": "didgeridoo",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1229,
"properties": {
"instrument": "didgeridoo",
"note": "24",
@@ -149997,399 +150082,399 @@
}
},
{
- "id": 1187,
+ "id": 1230,
"properties": {
"instrument": "didgeridoo",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1188,
- "properties": {
- "instrument": "bit",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1189,
- "properties": {
- "instrument": "bit",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1190,
- "properties": {
- "instrument": "bit",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1191,
- "properties": {
- "instrument": "bit",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1192,
- "properties": {
- "instrument": "bit",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1193,
- "properties": {
- "instrument": "bit",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1194,
- "properties": {
- "instrument": "bit",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1195,
- "properties": {
- "instrument": "bit",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1196,
- "properties": {
- "instrument": "bit",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1197,
- "properties": {
- "instrument": "bit",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1198,
- "properties": {
- "instrument": "bit",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1199,
- "properties": {
- "instrument": "bit",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1200,
- "properties": {
- "instrument": "bit",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1201,
- "properties": {
- "instrument": "bit",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1202,
- "properties": {
- "instrument": "bit",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1203,
- "properties": {
- "instrument": "bit",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1204,
- "properties": {
- "instrument": "bit",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1205,
- "properties": {
- "instrument": "bit",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1206,
- "properties": {
- "instrument": "bit",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1207,
- "properties": {
- "instrument": "bit",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1208,
- "properties": {
- "instrument": "bit",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1209,
- "properties": {
- "instrument": "bit",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1210,
- "properties": {
- "instrument": "bit",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1211,
- "properties": {
- "instrument": "bit",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1212,
- "properties": {
- "instrument": "bit",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1213,
- "properties": {
- "instrument": "bit",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1214,
- "properties": {
- "instrument": "bit",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1215,
- "properties": {
- "instrument": "bit",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1216,
- "properties": {
- "instrument": "bit",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1217,
- "properties": {
- "instrument": "bit",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1218,
- "properties": {
- "instrument": "bit",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1219,
- "properties": {
- "instrument": "bit",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1220,
- "properties": {
- "instrument": "bit",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1221,
- "properties": {
- "instrument": "bit",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1222,
- "properties": {
- "instrument": "bit",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1223,
- "properties": {
- "instrument": "bit",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1224,
- "properties": {
- "instrument": "bit",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1225,
- "properties": {
- "instrument": "bit",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1226,
- "properties": {
- "instrument": "bit",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1227,
- "properties": {
- "instrument": "bit",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1228,
- "properties": {
- "instrument": "bit",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1229,
- "properties": {
- "instrument": "bit",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1230,
- "properties": {
- "instrument": "bit",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 1231,
"properties": {
"instrument": "bit",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1232,
"properties": {
"instrument": "bit",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 1233,
"properties": {
"instrument": "bit",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 1234,
"properties": {
"instrument": "bit",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 1235,
"properties": {
"instrument": "bit",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 1236,
+ "properties": {
+ "instrument": "bit",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1237,
+ "properties": {
+ "instrument": "bit",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1238,
+ "properties": {
+ "instrument": "bit",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1239,
+ "properties": {
+ "instrument": "bit",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1240,
+ "properties": {
+ "instrument": "bit",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1241,
+ "properties": {
+ "instrument": "bit",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1242,
+ "properties": {
+ "instrument": "bit",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1243,
+ "properties": {
+ "instrument": "bit",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1244,
+ "properties": {
+ "instrument": "bit",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1245,
+ "properties": {
+ "instrument": "bit",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1246,
+ "properties": {
+ "instrument": "bit",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1247,
+ "properties": {
+ "instrument": "bit",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1248,
+ "properties": {
+ "instrument": "bit",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1249,
+ "properties": {
+ "instrument": "bit",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1250,
+ "properties": {
+ "instrument": "bit",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1251,
+ "properties": {
+ "instrument": "bit",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1252,
+ "properties": {
+ "instrument": "bit",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1253,
+ "properties": {
+ "instrument": "bit",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1254,
+ "properties": {
+ "instrument": "bit",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1255,
+ "properties": {
+ "instrument": "bit",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1256,
+ "properties": {
+ "instrument": "bit",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1257,
+ "properties": {
+ "instrument": "bit",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1258,
+ "properties": {
+ "instrument": "bit",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1259,
+ "properties": {
+ "instrument": "bit",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1260,
+ "properties": {
+ "instrument": "bit",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1261,
+ "properties": {
+ "instrument": "bit",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1262,
+ "properties": {
+ "instrument": "bit",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1263,
+ "properties": {
+ "instrument": "bit",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1264,
+ "properties": {
+ "instrument": "bit",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1265,
+ "properties": {
+ "instrument": "bit",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1266,
+ "properties": {
+ "instrument": "bit",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1267,
+ "properties": {
+ "instrument": "bit",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1268,
+ "properties": {
+ "instrument": "bit",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1269,
+ "properties": {
+ "instrument": "bit",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1270,
+ "properties": {
+ "instrument": "bit",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1271,
+ "properties": {
+ "instrument": "bit",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1272,
+ "properties": {
+ "instrument": "bit",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1273,
+ "properties": {
+ "instrument": "bit",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1274,
+ "properties": {
+ "instrument": "bit",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1275,
+ "properties": {
+ "instrument": "bit",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1276,
+ "properties": {
+ "instrument": "bit",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1277,
+ "properties": {
+ "instrument": "bit",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1278,
+ "properties": {
+ "instrument": "bit",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1279,
"properties": {
"instrument": "bit",
"note": "24",
@@ -150397,399 +150482,399 @@
}
},
{
- "id": 1237,
+ "id": 1280,
"properties": {
"instrument": "bit",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1238,
- "properties": {
- "instrument": "banjo",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1239,
- "properties": {
- "instrument": "banjo",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1240,
- "properties": {
- "instrument": "banjo",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1241,
- "properties": {
- "instrument": "banjo",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1242,
- "properties": {
- "instrument": "banjo",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1243,
- "properties": {
- "instrument": "banjo",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1244,
- "properties": {
- "instrument": "banjo",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1245,
- "properties": {
- "instrument": "banjo",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1246,
- "properties": {
- "instrument": "banjo",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1247,
- "properties": {
- "instrument": "banjo",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1248,
- "properties": {
- "instrument": "banjo",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1249,
- "properties": {
- "instrument": "banjo",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1250,
- "properties": {
- "instrument": "banjo",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1251,
- "properties": {
- "instrument": "banjo",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1252,
- "properties": {
- "instrument": "banjo",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1253,
- "properties": {
- "instrument": "banjo",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1254,
- "properties": {
- "instrument": "banjo",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1255,
- "properties": {
- "instrument": "banjo",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1256,
- "properties": {
- "instrument": "banjo",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1257,
- "properties": {
- "instrument": "banjo",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1258,
- "properties": {
- "instrument": "banjo",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1259,
- "properties": {
- "instrument": "banjo",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1260,
- "properties": {
- "instrument": "banjo",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1261,
- "properties": {
- "instrument": "banjo",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1262,
- "properties": {
- "instrument": "banjo",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1263,
- "properties": {
- "instrument": "banjo",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1264,
- "properties": {
- "instrument": "banjo",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1265,
- "properties": {
- "instrument": "banjo",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1266,
- "properties": {
- "instrument": "banjo",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1267,
- "properties": {
- "instrument": "banjo",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1268,
- "properties": {
- "instrument": "banjo",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1269,
- "properties": {
- "instrument": "banjo",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1270,
- "properties": {
- "instrument": "banjo",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1271,
- "properties": {
- "instrument": "banjo",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1272,
- "properties": {
- "instrument": "banjo",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1273,
- "properties": {
- "instrument": "banjo",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1274,
- "properties": {
- "instrument": "banjo",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1275,
- "properties": {
- "instrument": "banjo",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1276,
- "properties": {
- "instrument": "banjo",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1277,
- "properties": {
- "instrument": "banjo",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1278,
- "properties": {
- "instrument": "banjo",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1279,
- "properties": {
- "instrument": "banjo",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1280,
- "properties": {
- "instrument": "banjo",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 1281,
"properties": {
"instrument": "banjo",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1282,
"properties": {
"instrument": "banjo",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 1283,
"properties": {
"instrument": "banjo",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 1284,
"properties": {
"instrument": "banjo",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 1285,
"properties": {
"instrument": "banjo",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 1286,
+ "properties": {
+ "instrument": "banjo",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1287,
+ "properties": {
+ "instrument": "banjo",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1288,
+ "properties": {
+ "instrument": "banjo",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1289,
+ "properties": {
+ "instrument": "banjo",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1290,
+ "properties": {
+ "instrument": "banjo",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1291,
+ "properties": {
+ "instrument": "banjo",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1292,
+ "properties": {
+ "instrument": "banjo",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1293,
+ "properties": {
+ "instrument": "banjo",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1294,
+ "properties": {
+ "instrument": "banjo",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1295,
+ "properties": {
+ "instrument": "banjo",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1296,
+ "properties": {
+ "instrument": "banjo",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1297,
+ "properties": {
+ "instrument": "banjo",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1298,
+ "properties": {
+ "instrument": "banjo",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1299,
+ "properties": {
+ "instrument": "banjo",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1300,
+ "properties": {
+ "instrument": "banjo",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1301,
+ "properties": {
+ "instrument": "banjo",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1302,
+ "properties": {
+ "instrument": "banjo",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1303,
+ "properties": {
+ "instrument": "banjo",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1304,
+ "properties": {
+ "instrument": "banjo",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1305,
+ "properties": {
+ "instrument": "banjo",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1306,
+ "properties": {
+ "instrument": "banjo",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1307,
+ "properties": {
+ "instrument": "banjo",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1308,
+ "properties": {
+ "instrument": "banjo",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1309,
+ "properties": {
+ "instrument": "banjo",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1310,
+ "properties": {
+ "instrument": "banjo",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1311,
+ "properties": {
+ "instrument": "banjo",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1312,
+ "properties": {
+ "instrument": "banjo",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1313,
+ "properties": {
+ "instrument": "banjo",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1314,
+ "properties": {
+ "instrument": "banjo",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1315,
+ "properties": {
+ "instrument": "banjo",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1316,
+ "properties": {
+ "instrument": "banjo",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1317,
+ "properties": {
+ "instrument": "banjo",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1318,
+ "properties": {
+ "instrument": "banjo",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1319,
+ "properties": {
+ "instrument": "banjo",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1320,
+ "properties": {
+ "instrument": "banjo",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1321,
+ "properties": {
+ "instrument": "banjo",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1322,
+ "properties": {
+ "instrument": "banjo",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1323,
+ "properties": {
+ "instrument": "banjo",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1324,
+ "properties": {
+ "instrument": "banjo",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1325,
+ "properties": {
+ "instrument": "banjo",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1326,
+ "properties": {
+ "instrument": "banjo",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1327,
+ "properties": {
+ "instrument": "banjo",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1328,
+ "properties": {
+ "instrument": "banjo",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1329,
"properties": {
"instrument": "banjo",
"note": "24",
@@ -150797,399 +150882,399 @@
}
},
{
- "id": 1287,
+ "id": 1330,
"properties": {
"instrument": "banjo",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1288,
- "properties": {
- "instrument": "pling",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1289,
- "properties": {
- "instrument": "pling",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1290,
- "properties": {
- "instrument": "pling",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1291,
- "properties": {
- "instrument": "pling",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1292,
- "properties": {
- "instrument": "pling",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1293,
- "properties": {
- "instrument": "pling",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1294,
- "properties": {
- "instrument": "pling",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1295,
- "properties": {
- "instrument": "pling",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1296,
- "properties": {
- "instrument": "pling",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1297,
- "properties": {
- "instrument": "pling",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1298,
- "properties": {
- "instrument": "pling",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1299,
- "properties": {
- "instrument": "pling",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1300,
- "properties": {
- "instrument": "pling",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1301,
- "properties": {
- "instrument": "pling",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1302,
- "properties": {
- "instrument": "pling",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1303,
- "properties": {
- "instrument": "pling",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1304,
- "properties": {
- "instrument": "pling",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1305,
- "properties": {
- "instrument": "pling",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1306,
- "properties": {
- "instrument": "pling",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1307,
- "properties": {
- "instrument": "pling",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1308,
- "properties": {
- "instrument": "pling",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1309,
- "properties": {
- "instrument": "pling",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1310,
- "properties": {
- "instrument": "pling",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1311,
- "properties": {
- "instrument": "pling",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1312,
- "properties": {
- "instrument": "pling",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1313,
- "properties": {
- "instrument": "pling",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1314,
- "properties": {
- "instrument": "pling",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1315,
- "properties": {
- "instrument": "pling",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1316,
- "properties": {
- "instrument": "pling",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1317,
- "properties": {
- "instrument": "pling",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1318,
- "properties": {
- "instrument": "pling",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1319,
- "properties": {
- "instrument": "pling",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1320,
- "properties": {
- "instrument": "pling",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1321,
- "properties": {
- "instrument": "pling",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1322,
- "properties": {
- "instrument": "pling",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1323,
- "properties": {
- "instrument": "pling",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1324,
- "properties": {
- "instrument": "pling",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1325,
- "properties": {
- "instrument": "pling",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1326,
- "properties": {
- "instrument": "pling",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1327,
- "properties": {
- "instrument": "pling",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1328,
- "properties": {
- "instrument": "pling",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1329,
- "properties": {
- "instrument": "pling",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1330,
- "properties": {
- "instrument": "pling",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 1331,
"properties": {
"instrument": "pling",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1332,
"properties": {
"instrument": "pling",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 1333,
"properties": {
"instrument": "pling",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 1334,
"properties": {
"instrument": "pling",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 1335,
"properties": {
"instrument": "pling",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 1336,
+ "properties": {
+ "instrument": "pling",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1337,
+ "properties": {
+ "instrument": "pling",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1338,
+ "properties": {
+ "instrument": "pling",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1339,
+ "properties": {
+ "instrument": "pling",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1340,
+ "properties": {
+ "instrument": "pling",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1341,
+ "properties": {
+ "instrument": "pling",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1342,
+ "properties": {
+ "instrument": "pling",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1343,
+ "properties": {
+ "instrument": "pling",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1344,
+ "properties": {
+ "instrument": "pling",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1345,
+ "properties": {
+ "instrument": "pling",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1346,
+ "properties": {
+ "instrument": "pling",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1347,
+ "properties": {
+ "instrument": "pling",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1348,
+ "properties": {
+ "instrument": "pling",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1349,
+ "properties": {
+ "instrument": "pling",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1350,
+ "properties": {
+ "instrument": "pling",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1351,
+ "properties": {
+ "instrument": "pling",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1352,
+ "properties": {
+ "instrument": "pling",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1353,
+ "properties": {
+ "instrument": "pling",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1354,
+ "properties": {
+ "instrument": "pling",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1355,
+ "properties": {
+ "instrument": "pling",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1356,
+ "properties": {
+ "instrument": "pling",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1357,
+ "properties": {
+ "instrument": "pling",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1358,
+ "properties": {
+ "instrument": "pling",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1359,
+ "properties": {
+ "instrument": "pling",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1360,
+ "properties": {
+ "instrument": "pling",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1361,
+ "properties": {
+ "instrument": "pling",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1362,
+ "properties": {
+ "instrument": "pling",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1363,
+ "properties": {
+ "instrument": "pling",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1364,
+ "properties": {
+ "instrument": "pling",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1365,
+ "properties": {
+ "instrument": "pling",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1366,
+ "properties": {
+ "instrument": "pling",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1367,
+ "properties": {
+ "instrument": "pling",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1368,
+ "properties": {
+ "instrument": "pling",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1369,
+ "properties": {
+ "instrument": "pling",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1370,
+ "properties": {
+ "instrument": "pling",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1371,
+ "properties": {
+ "instrument": "pling",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1372,
+ "properties": {
+ "instrument": "pling",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1373,
+ "properties": {
+ "instrument": "pling",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1374,
+ "properties": {
+ "instrument": "pling",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1375,
+ "properties": {
+ "instrument": "pling",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1376,
+ "properties": {
+ "instrument": "pling",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1377,
+ "properties": {
+ "instrument": "pling",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1378,
+ "properties": {
+ "instrument": "pling",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1379,
"properties": {
"instrument": "pling",
"note": "24",
@@ -151197,399 +151282,399 @@
}
},
{
- "id": 1337,
+ "id": 1380,
"properties": {
"instrument": "pling",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1338,
- "properties": {
- "instrument": "zombie",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1339,
- "properties": {
- "instrument": "zombie",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1340,
- "properties": {
- "instrument": "zombie",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1341,
- "properties": {
- "instrument": "zombie",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1342,
- "properties": {
- "instrument": "zombie",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1343,
- "properties": {
- "instrument": "zombie",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1344,
- "properties": {
- "instrument": "zombie",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1345,
- "properties": {
- "instrument": "zombie",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1346,
- "properties": {
- "instrument": "zombie",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1347,
- "properties": {
- "instrument": "zombie",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1348,
- "properties": {
- "instrument": "zombie",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1349,
- "properties": {
- "instrument": "zombie",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1350,
- "properties": {
- "instrument": "zombie",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1351,
- "properties": {
- "instrument": "zombie",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1352,
- "properties": {
- "instrument": "zombie",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1353,
- "properties": {
- "instrument": "zombie",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1354,
- "properties": {
- "instrument": "zombie",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1355,
- "properties": {
- "instrument": "zombie",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1356,
- "properties": {
- "instrument": "zombie",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1357,
- "properties": {
- "instrument": "zombie",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1358,
- "properties": {
- "instrument": "zombie",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1359,
- "properties": {
- "instrument": "zombie",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1360,
- "properties": {
- "instrument": "zombie",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1361,
- "properties": {
- "instrument": "zombie",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1362,
- "properties": {
- "instrument": "zombie",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1363,
- "properties": {
- "instrument": "zombie",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1364,
- "properties": {
- "instrument": "zombie",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1365,
- "properties": {
- "instrument": "zombie",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1366,
- "properties": {
- "instrument": "zombie",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1367,
- "properties": {
- "instrument": "zombie",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1368,
- "properties": {
- "instrument": "zombie",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1369,
- "properties": {
- "instrument": "zombie",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1370,
- "properties": {
- "instrument": "zombie",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1371,
- "properties": {
- "instrument": "zombie",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1372,
- "properties": {
- "instrument": "zombie",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1373,
- "properties": {
- "instrument": "zombie",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1374,
- "properties": {
- "instrument": "zombie",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1375,
- "properties": {
- "instrument": "zombie",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1376,
- "properties": {
- "instrument": "zombie",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1377,
- "properties": {
- "instrument": "zombie",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1378,
- "properties": {
- "instrument": "zombie",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1379,
- "properties": {
- "instrument": "zombie",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1380,
- "properties": {
- "instrument": "zombie",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 1381,
"properties": {
"instrument": "zombie",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1382,
"properties": {
"instrument": "zombie",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 1383,
"properties": {
"instrument": "zombie",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 1384,
"properties": {
"instrument": "zombie",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 1385,
"properties": {
"instrument": "zombie",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 1386,
+ "properties": {
+ "instrument": "zombie",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1387,
+ "properties": {
+ "instrument": "zombie",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1388,
+ "properties": {
+ "instrument": "zombie",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1389,
+ "properties": {
+ "instrument": "zombie",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1390,
+ "properties": {
+ "instrument": "zombie",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1391,
+ "properties": {
+ "instrument": "zombie",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1392,
+ "properties": {
+ "instrument": "zombie",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1393,
+ "properties": {
+ "instrument": "zombie",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1394,
+ "properties": {
+ "instrument": "zombie",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1395,
+ "properties": {
+ "instrument": "zombie",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1396,
+ "properties": {
+ "instrument": "zombie",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1397,
+ "properties": {
+ "instrument": "zombie",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1398,
+ "properties": {
+ "instrument": "zombie",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1399,
+ "properties": {
+ "instrument": "zombie",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1400,
+ "properties": {
+ "instrument": "zombie",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1401,
+ "properties": {
+ "instrument": "zombie",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1402,
+ "properties": {
+ "instrument": "zombie",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1403,
+ "properties": {
+ "instrument": "zombie",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1404,
+ "properties": {
+ "instrument": "zombie",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1405,
+ "properties": {
+ "instrument": "zombie",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1406,
+ "properties": {
+ "instrument": "zombie",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1407,
+ "properties": {
+ "instrument": "zombie",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1408,
+ "properties": {
+ "instrument": "zombie",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1409,
+ "properties": {
+ "instrument": "zombie",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1410,
+ "properties": {
+ "instrument": "zombie",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1411,
+ "properties": {
+ "instrument": "zombie",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1412,
+ "properties": {
+ "instrument": "zombie",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1413,
+ "properties": {
+ "instrument": "zombie",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1414,
+ "properties": {
+ "instrument": "zombie",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1415,
+ "properties": {
+ "instrument": "zombie",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1416,
+ "properties": {
+ "instrument": "zombie",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1417,
+ "properties": {
+ "instrument": "zombie",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1418,
+ "properties": {
+ "instrument": "zombie",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1419,
+ "properties": {
+ "instrument": "zombie",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1420,
+ "properties": {
+ "instrument": "zombie",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1421,
+ "properties": {
+ "instrument": "zombie",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1422,
+ "properties": {
+ "instrument": "zombie",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1423,
+ "properties": {
+ "instrument": "zombie",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1424,
+ "properties": {
+ "instrument": "zombie",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1425,
+ "properties": {
+ "instrument": "zombie",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1426,
+ "properties": {
+ "instrument": "zombie",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1427,
+ "properties": {
+ "instrument": "zombie",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1428,
+ "properties": {
+ "instrument": "zombie",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1429,
"properties": {
"instrument": "zombie",
"note": "24",
@@ -151597,399 +151682,399 @@
}
},
{
- "id": 1387,
+ "id": 1430,
"properties": {
"instrument": "zombie",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1388,
- "properties": {
- "instrument": "skeleton",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1389,
- "properties": {
- "instrument": "skeleton",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1390,
- "properties": {
- "instrument": "skeleton",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1391,
- "properties": {
- "instrument": "skeleton",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1392,
- "properties": {
- "instrument": "skeleton",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1393,
- "properties": {
- "instrument": "skeleton",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1394,
- "properties": {
- "instrument": "skeleton",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1395,
- "properties": {
- "instrument": "skeleton",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1396,
- "properties": {
- "instrument": "skeleton",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1397,
- "properties": {
- "instrument": "skeleton",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1398,
- "properties": {
- "instrument": "skeleton",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1399,
- "properties": {
- "instrument": "skeleton",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1400,
- "properties": {
- "instrument": "skeleton",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1401,
- "properties": {
- "instrument": "skeleton",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1402,
- "properties": {
- "instrument": "skeleton",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1403,
- "properties": {
- "instrument": "skeleton",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1404,
- "properties": {
- "instrument": "skeleton",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1405,
- "properties": {
- "instrument": "skeleton",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1406,
- "properties": {
- "instrument": "skeleton",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1407,
- "properties": {
- "instrument": "skeleton",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1408,
- "properties": {
- "instrument": "skeleton",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1409,
- "properties": {
- "instrument": "skeleton",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1410,
- "properties": {
- "instrument": "skeleton",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1411,
- "properties": {
- "instrument": "skeleton",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1412,
- "properties": {
- "instrument": "skeleton",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1413,
- "properties": {
- "instrument": "skeleton",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1414,
- "properties": {
- "instrument": "skeleton",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1415,
- "properties": {
- "instrument": "skeleton",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1416,
- "properties": {
- "instrument": "skeleton",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1417,
- "properties": {
- "instrument": "skeleton",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1418,
- "properties": {
- "instrument": "skeleton",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1419,
- "properties": {
- "instrument": "skeleton",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1420,
- "properties": {
- "instrument": "skeleton",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1421,
- "properties": {
- "instrument": "skeleton",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1422,
- "properties": {
- "instrument": "skeleton",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1423,
- "properties": {
- "instrument": "skeleton",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1424,
- "properties": {
- "instrument": "skeleton",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1425,
- "properties": {
- "instrument": "skeleton",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1426,
- "properties": {
- "instrument": "skeleton",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1427,
- "properties": {
- "instrument": "skeleton",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1428,
- "properties": {
- "instrument": "skeleton",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1429,
- "properties": {
- "instrument": "skeleton",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1430,
- "properties": {
- "instrument": "skeleton",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 1431,
"properties": {
"instrument": "skeleton",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1432,
"properties": {
"instrument": "skeleton",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 1433,
"properties": {
"instrument": "skeleton",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 1434,
"properties": {
"instrument": "skeleton",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 1435,
"properties": {
"instrument": "skeleton",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 1436,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1437,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1438,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1439,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1440,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1441,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1442,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1443,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1444,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1445,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1446,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1447,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1448,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1449,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1450,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1451,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1452,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1453,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1454,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1455,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1456,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1457,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1458,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1459,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1460,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1461,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1462,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1463,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1464,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1465,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1466,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1467,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1468,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1469,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1470,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1471,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1472,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1473,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1474,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1475,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1476,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1477,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1478,
+ "properties": {
+ "instrument": "skeleton",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1479,
"properties": {
"instrument": "skeleton",
"note": "24",
@@ -151997,399 +152082,399 @@
}
},
{
- "id": 1437,
+ "id": 1480,
"properties": {
"instrument": "skeleton",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1438,
- "properties": {
- "instrument": "creeper",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1439,
- "properties": {
- "instrument": "creeper",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1440,
- "properties": {
- "instrument": "creeper",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1441,
- "properties": {
- "instrument": "creeper",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1442,
- "properties": {
- "instrument": "creeper",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1443,
- "properties": {
- "instrument": "creeper",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1444,
- "properties": {
- "instrument": "creeper",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1445,
- "properties": {
- "instrument": "creeper",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1446,
- "properties": {
- "instrument": "creeper",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1447,
- "properties": {
- "instrument": "creeper",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1448,
- "properties": {
- "instrument": "creeper",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1449,
- "properties": {
- "instrument": "creeper",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1450,
- "properties": {
- "instrument": "creeper",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1451,
- "properties": {
- "instrument": "creeper",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1452,
- "properties": {
- "instrument": "creeper",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1453,
- "properties": {
- "instrument": "creeper",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1454,
- "properties": {
- "instrument": "creeper",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1455,
- "properties": {
- "instrument": "creeper",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1456,
- "properties": {
- "instrument": "creeper",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1457,
- "properties": {
- "instrument": "creeper",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1458,
- "properties": {
- "instrument": "creeper",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1459,
- "properties": {
- "instrument": "creeper",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1460,
- "properties": {
- "instrument": "creeper",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1461,
- "properties": {
- "instrument": "creeper",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1462,
- "properties": {
- "instrument": "creeper",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1463,
- "properties": {
- "instrument": "creeper",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1464,
- "properties": {
- "instrument": "creeper",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1465,
- "properties": {
- "instrument": "creeper",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1466,
- "properties": {
- "instrument": "creeper",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1467,
- "properties": {
- "instrument": "creeper",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1468,
- "properties": {
- "instrument": "creeper",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1469,
- "properties": {
- "instrument": "creeper",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1470,
- "properties": {
- "instrument": "creeper",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1471,
- "properties": {
- "instrument": "creeper",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1472,
- "properties": {
- "instrument": "creeper",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1473,
- "properties": {
- "instrument": "creeper",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1474,
- "properties": {
- "instrument": "creeper",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1475,
- "properties": {
- "instrument": "creeper",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1476,
- "properties": {
- "instrument": "creeper",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1477,
- "properties": {
- "instrument": "creeper",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1478,
- "properties": {
- "instrument": "creeper",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1479,
- "properties": {
- "instrument": "creeper",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1480,
- "properties": {
- "instrument": "creeper",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 1481,
"properties": {
"instrument": "creeper",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1482,
"properties": {
"instrument": "creeper",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 1483,
"properties": {
"instrument": "creeper",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 1484,
"properties": {
"instrument": "creeper",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 1485,
"properties": {
"instrument": "creeper",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 1486,
+ "properties": {
+ "instrument": "creeper",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1487,
+ "properties": {
+ "instrument": "creeper",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1488,
+ "properties": {
+ "instrument": "creeper",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1489,
+ "properties": {
+ "instrument": "creeper",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1490,
+ "properties": {
+ "instrument": "creeper",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1491,
+ "properties": {
+ "instrument": "creeper",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1492,
+ "properties": {
+ "instrument": "creeper",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1493,
+ "properties": {
+ "instrument": "creeper",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1494,
+ "properties": {
+ "instrument": "creeper",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1495,
+ "properties": {
+ "instrument": "creeper",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1496,
+ "properties": {
+ "instrument": "creeper",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1497,
+ "properties": {
+ "instrument": "creeper",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1498,
+ "properties": {
+ "instrument": "creeper",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1499,
+ "properties": {
+ "instrument": "creeper",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1500,
+ "properties": {
+ "instrument": "creeper",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1501,
+ "properties": {
+ "instrument": "creeper",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1502,
+ "properties": {
+ "instrument": "creeper",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1503,
+ "properties": {
+ "instrument": "creeper",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1504,
+ "properties": {
+ "instrument": "creeper",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1505,
+ "properties": {
+ "instrument": "creeper",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1506,
+ "properties": {
+ "instrument": "creeper",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1507,
+ "properties": {
+ "instrument": "creeper",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1508,
+ "properties": {
+ "instrument": "creeper",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1509,
+ "properties": {
+ "instrument": "creeper",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1510,
+ "properties": {
+ "instrument": "creeper",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1511,
+ "properties": {
+ "instrument": "creeper",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1512,
+ "properties": {
+ "instrument": "creeper",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1513,
+ "properties": {
+ "instrument": "creeper",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1514,
+ "properties": {
+ "instrument": "creeper",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1515,
+ "properties": {
+ "instrument": "creeper",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1516,
+ "properties": {
+ "instrument": "creeper",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1517,
+ "properties": {
+ "instrument": "creeper",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1518,
+ "properties": {
+ "instrument": "creeper",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1519,
+ "properties": {
+ "instrument": "creeper",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1520,
+ "properties": {
+ "instrument": "creeper",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1521,
+ "properties": {
+ "instrument": "creeper",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1522,
+ "properties": {
+ "instrument": "creeper",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1523,
+ "properties": {
+ "instrument": "creeper",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1524,
+ "properties": {
+ "instrument": "creeper",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1525,
+ "properties": {
+ "instrument": "creeper",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1526,
+ "properties": {
+ "instrument": "creeper",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1527,
+ "properties": {
+ "instrument": "creeper",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1528,
+ "properties": {
+ "instrument": "creeper",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1529,
"properties": {
"instrument": "creeper",
"note": "24",
@@ -152397,399 +152482,399 @@
}
},
{
- "id": 1487,
+ "id": 1530,
"properties": {
"instrument": "creeper",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1488,
- "properties": {
- "instrument": "dragon",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1489,
- "properties": {
- "instrument": "dragon",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1490,
- "properties": {
- "instrument": "dragon",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1491,
- "properties": {
- "instrument": "dragon",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1492,
- "properties": {
- "instrument": "dragon",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1493,
- "properties": {
- "instrument": "dragon",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1494,
- "properties": {
- "instrument": "dragon",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1495,
- "properties": {
- "instrument": "dragon",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1496,
- "properties": {
- "instrument": "dragon",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1497,
- "properties": {
- "instrument": "dragon",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1498,
- "properties": {
- "instrument": "dragon",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1499,
- "properties": {
- "instrument": "dragon",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1500,
- "properties": {
- "instrument": "dragon",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1501,
- "properties": {
- "instrument": "dragon",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1502,
- "properties": {
- "instrument": "dragon",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1503,
- "properties": {
- "instrument": "dragon",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1504,
- "properties": {
- "instrument": "dragon",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1505,
- "properties": {
- "instrument": "dragon",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1506,
- "properties": {
- "instrument": "dragon",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1507,
- "properties": {
- "instrument": "dragon",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1508,
- "properties": {
- "instrument": "dragon",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1509,
- "properties": {
- "instrument": "dragon",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1510,
- "properties": {
- "instrument": "dragon",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1511,
- "properties": {
- "instrument": "dragon",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1512,
- "properties": {
- "instrument": "dragon",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1513,
- "properties": {
- "instrument": "dragon",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1514,
- "properties": {
- "instrument": "dragon",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1515,
- "properties": {
- "instrument": "dragon",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1516,
- "properties": {
- "instrument": "dragon",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1517,
- "properties": {
- "instrument": "dragon",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1518,
- "properties": {
- "instrument": "dragon",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1519,
- "properties": {
- "instrument": "dragon",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1520,
- "properties": {
- "instrument": "dragon",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1521,
- "properties": {
- "instrument": "dragon",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1522,
- "properties": {
- "instrument": "dragon",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1523,
- "properties": {
- "instrument": "dragon",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1524,
- "properties": {
- "instrument": "dragon",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1525,
- "properties": {
- "instrument": "dragon",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1526,
- "properties": {
- "instrument": "dragon",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1527,
- "properties": {
- "instrument": "dragon",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1528,
- "properties": {
- "instrument": "dragon",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1529,
- "properties": {
- "instrument": "dragon",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1530,
- "properties": {
- "instrument": "dragon",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 1531,
"properties": {
"instrument": "dragon",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1532,
"properties": {
"instrument": "dragon",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 1533,
"properties": {
"instrument": "dragon",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 1534,
"properties": {
"instrument": "dragon",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 1535,
"properties": {
"instrument": "dragon",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 1536,
+ "properties": {
+ "instrument": "dragon",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1537,
+ "properties": {
+ "instrument": "dragon",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1538,
+ "properties": {
+ "instrument": "dragon",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1539,
+ "properties": {
+ "instrument": "dragon",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1540,
+ "properties": {
+ "instrument": "dragon",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1541,
+ "properties": {
+ "instrument": "dragon",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1542,
+ "properties": {
+ "instrument": "dragon",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1543,
+ "properties": {
+ "instrument": "dragon",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1544,
+ "properties": {
+ "instrument": "dragon",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1545,
+ "properties": {
+ "instrument": "dragon",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1546,
+ "properties": {
+ "instrument": "dragon",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1547,
+ "properties": {
+ "instrument": "dragon",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1548,
+ "properties": {
+ "instrument": "dragon",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1549,
+ "properties": {
+ "instrument": "dragon",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1550,
+ "properties": {
+ "instrument": "dragon",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1551,
+ "properties": {
+ "instrument": "dragon",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1552,
+ "properties": {
+ "instrument": "dragon",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1553,
+ "properties": {
+ "instrument": "dragon",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1554,
+ "properties": {
+ "instrument": "dragon",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1555,
+ "properties": {
+ "instrument": "dragon",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1556,
+ "properties": {
+ "instrument": "dragon",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1557,
+ "properties": {
+ "instrument": "dragon",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1558,
+ "properties": {
+ "instrument": "dragon",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1559,
+ "properties": {
+ "instrument": "dragon",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1560,
+ "properties": {
+ "instrument": "dragon",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1561,
+ "properties": {
+ "instrument": "dragon",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1562,
+ "properties": {
+ "instrument": "dragon",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1563,
+ "properties": {
+ "instrument": "dragon",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1564,
+ "properties": {
+ "instrument": "dragon",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1565,
+ "properties": {
+ "instrument": "dragon",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1566,
+ "properties": {
+ "instrument": "dragon",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1567,
+ "properties": {
+ "instrument": "dragon",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1568,
+ "properties": {
+ "instrument": "dragon",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1569,
+ "properties": {
+ "instrument": "dragon",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1570,
+ "properties": {
+ "instrument": "dragon",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1571,
+ "properties": {
+ "instrument": "dragon",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1572,
+ "properties": {
+ "instrument": "dragon",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1573,
+ "properties": {
+ "instrument": "dragon",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1574,
+ "properties": {
+ "instrument": "dragon",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1575,
+ "properties": {
+ "instrument": "dragon",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1576,
+ "properties": {
+ "instrument": "dragon",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1577,
+ "properties": {
+ "instrument": "dragon",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1578,
+ "properties": {
+ "instrument": "dragon",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1579,
"properties": {
"instrument": "dragon",
"note": "24",
@@ -152797,399 +152882,399 @@
}
},
{
- "id": 1537,
+ "id": 1580,
"properties": {
"instrument": "dragon",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1538,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1539,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1540,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1541,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1542,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1543,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1544,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1545,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1546,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1547,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1548,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1549,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1550,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1551,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1552,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1553,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1554,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1555,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1556,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1557,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1558,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1559,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1560,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1561,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1562,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1563,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1564,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1565,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1566,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1567,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1568,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1569,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1570,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1571,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1572,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1573,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1574,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1575,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1576,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1577,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1578,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1579,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1580,
- "properties": {
- "instrument": "wither_skeleton",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 1581,
"properties": {
"instrument": "wither_skeleton",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1582,
"properties": {
"instrument": "wither_skeleton",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 1583,
"properties": {
"instrument": "wither_skeleton",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 1584,
"properties": {
"instrument": "wither_skeleton",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 1585,
"properties": {
"instrument": "wither_skeleton",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 1586,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1587,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1588,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1589,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1590,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1591,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1592,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1593,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1594,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1595,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1596,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1597,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1598,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1599,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1600,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1601,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1602,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1603,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1604,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1605,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1606,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1607,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1608,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1609,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1610,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1611,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1612,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1613,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1614,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1615,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1616,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1617,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1618,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1619,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1620,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1621,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1622,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1623,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1624,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1625,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1626,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1627,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1628,
+ "properties": {
+ "instrument": "wither_skeleton",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1629,
"properties": {
"instrument": "wither_skeleton",
"note": "24",
@@ -153197,399 +153282,399 @@
}
},
{
- "id": 1587,
+ "id": 1630,
"properties": {
"instrument": "wither_skeleton",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1588,
- "properties": {
- "instrument": "piglin",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1589,
- "properties": {
- "instrument": "piglin",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1590,
- "properties": {
- "instrument": "piglin",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1591,
- "properties": {
- "instrument": "piglin",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1592,
- "properties": {
- "instrument": "piglin",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1593,
- "properties": {
- "instrument": "piglin",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1594,
- "properties": {
- "instrument": "piglin",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1595,
- "properties": {
- "instrument": "piglin",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1596,
- "properties": {
- "instrument": "piglin",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1597,
- "properties": {
- "instrument": "piglin",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1598,
- "properties": {
- "instrument": "piglin",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1599,
- "properties": {
- "instrument": "piglin",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1600,
- "properties": {
- "instrument": "piglin",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1601,
- "properties": {
- "instrument": "piglin",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1602,
- "properties": {
- "instrument": "piglin",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1603,
- "properties": {
- "instrument": "piglin",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1604,
- "properties": {
- "instrument": "piglin",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1605,
- "properties": {
- "instrument": "piglin",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1606,
- "properties": {
- "instrument": "piglin",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1607,
- "properties": {
- "instrument": "piglin",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1608,
- "properties": {
- "instrument": "piglin",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1609,
- "properties": {
- "instrument": "piglin",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1610,
- "properties": {
- "instrument": "piglin",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1611,
- "properties": {
- "instrument": "piglin",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1612,
- "properties": {
- "instrument": "piglin",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1613,
- "properties": {
- "instrument": "piglin",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1614,
- "properties": {
- "instrument": "piglin",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1615,
- "properties": {
- "instrument": "piglin",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1616,
- "properties": {
- "instrument": "piglin",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1617,
- "properties": {
- "instrument": "piglin",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1618,
- "properties": {
- "instrument": "piglin",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1619,
- "properties": {
- "instrument": "piglin",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1620,
- "properties": {
- "instrument": "piglin",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1621,
- "properties": {
- "instrument": "piglin",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1622,
- "properties": {
- "instrument": "piglin",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1623,
- "properties": {
- "instrument": "piglin",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1624,
- "properties": {
- "instrument": "piglin",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1625,
- "properties": {
- "instrument": "piglin",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1626,
- "properties": {
- "instrument": "piglin",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1627,
- "properties": {
- "instrument": "piglin",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1628,
- "properties": {
- "instrument": "piglin",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1629,
- "properties": {
- "instrument": "piglin",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1630,
- "properties": {
- "instrument": "piglin",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 1631,
"properties": {
"instrument": "piglin",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1632,
"properties": {
"instrument": "piglin",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 1633,
"properties": {
"instrument": "piglin",
- "note": "22",
- "powered": "false"
+ "note": "1",
+ "powered": "true"
}
},
{
"id": 1634,
"properties": {
"instrument": "piglin",
- "note": "23",
- "powered": "true"
+ "note": "1",
+ "powered": "false"
}
},
{
"id": 1635,
"properties": {
"instrument": "piglin",
- "note": "23",
- "powered": "false"
+ "note": "2",
+ "powered": "true"
}
},
{
"id": 1636,
+ "properties": {
+ "instrument": "piglin",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1637,
+ "properties": {
+ "instrument": "piglin",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1638,
+ "properties": {
+ "instrument": "piglin",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1639,
+ "properties": {
+ "instrument": "piglin",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1640,
+ "properties": {
+ "instrument": "piglin",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1641,
+ "properties": {
+ "instrument": "piglin",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1642,
+ "properties": {
+ "instrument": "piglin",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1643,
+ "properties": {
+ "instrument": "piglin",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1644,
+ "properties": {
+ "instrument": "piglin",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1645,
+ "properties": {
+ "instrument": "piglin",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1646,
+ "properties": {
+ "instrument": "piglin",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1647,
+ "properties": {
+ "instrument": "piglin",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1648,
+ "properties": {
+ "instrument": "piglin",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1649,
+ "properties": {
+ "instrument": "piglin",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1650,
+ "properties": {
+ "instrument": "piglin",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1651,
+ "properties": {
+ "instrument": "piglin",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1652,
+ "properties": {
+ "instrument": "piglin",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1653,
+ "properties": {
+ "instrument": "piglin",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1654,
+ "properties": {
+ "instrument": "piglin",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1655,
+ "properties": {
+ "instrument": "piglin",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1656,
+ "properties": {
+ "instrument": "piglin",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1657,
+ "properties": {
+ "instrument": "piglin",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1658,
+ "properties": {
+ "instrument": "piglin",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1659,
+ "properties": {
+ "instrument": "piglin",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1660,
+ "properties": {
+ "instrument": "piglin",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1661,
+ "properties": {
+ "instrument": "piglin",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1662,
+ "properties": {
+ "instrument": "piglin",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1663,
+ "properties": {
+ "instrument": "piglin",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1664,
+ "properties": {
+ "instrument": "piglin",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1665,
+ "properties": {
+ "instrument": "piglin",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1666,
+ "properties": {
+ "instrument": "piglin",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1667,
+ "properties": {
+ "instrument": "piglin",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1668,
+ "properties": {
+ "instrument": "piglin",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1669,
+ "properties": {
+ "instrument": "piglin",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1670,
+ "properties": {
+ "instrument": "piglin",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1671,
+ "properties": {
+ "instrument": "piglin",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1672,
+ "properties": {
+ "instrument": "piglin",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1673,
+ "properties": {
+ "instrument": "piglin",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1674,
+ "properties": {
+ "instrument": "piglin",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1675,
+ "properties": {
+ "instrument": "piglin",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1676,
+ "properties": {
+ "instrument": "piglin",
+ "note": "22",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1677,
+ "properties": {
+ "instrument": "piglin",
+ "note": "23",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1678,
+ "properties": {
+ "instrument": "piglin",
+ "note": "23",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1679,
"properties": {
"instrument": "piglin",
"note": "24",
@@ -153597,375 +153682,375 @@
}
},
{
- "id": 1637,
+ "id": 1680,
"properties": {
"instrument": "piglin",
"note": "24",
"powered": "false"
}
},
- {
- "id": 1638,
- "properties": {
- "instrument": "custom_head",
- "note": "0",
- "powered": "true"
- }
- },
- {
- "id": 1639,
- "properties": {
- "instrument": "custom_head",
- "note": "0",
- "powered": "false"
- }
- },
- {
- "id": 1640,
- "properties": {
- "instrument": "custom_head",
- "note": "1",
- "powered": "true"
- }
- },
- {
- "id": 1641,
- "properties": {
- "instrument": "custom_head",
- "note": "1",
- "powered": "false"
- }
- },
- {
- "id": 1642,
- "properties": {
- "instrument": "custom_head",
- "note": "2",
- "powered": "true"
- }
- },
- {
- "id": 1643,
- "properties": {
- "instrument": "custom_head",
- "note": "2",
- "powered": "false"
- }
- },
- {
- "id": 1644,
- "properties": {
- "instrument": "custom_head",
- "note": "3",
- "powered": "true"
- }
- },
- {
- "id": 1645,
- "properties": {
- "instrument": "custom_head",
- "note": "3",
- "powered": "false"
- }
- },
- {
- "id": 1646,
- "properties": {
- "instrument": "custom_head",
- "note": "4",
- "powered": "true"
- }
- },
- {
- "id": 1647,
- "properties": {
- "instrument": "custom_head",
- "note": "4",
- "powered": "false"
- }
- },
- {
- "id": 1648,
- "properties": {
- "instrument": "custom_head",
- "note": "5",
- "powered": "true"
- }
- },
- {
- "id": 1649,
- "properties": {
- "instrument": "custom_head",
- "note": "5",
- "powered": "false"
- }
- },
- {
- "id": 1650,
- "properties": {
- "instrument": "custom_head",
- "note": "6",
- "powered": "true"
- }
- },
- {
- "id": 1651,
- "properties": {
- "instrument": "custom_head",
- "note": "6",
- "powered": "false"
- }
- },
- {
- "id": 1652,
- "properties": {
- "instrument": "custom_head",
- "note": "7",
- "powered": "true"
- }
- },
- {
- "id": 1653,
- "properties": {
- "instrument": "custom_head",
- "note": "7",
- "powered": "false"
- }
- },
- {
- "id": 1654,
- "properties": {
- "instrument": "custom_head",
- "note": "8",
- "powered": "true"
- }
- },
- {
- "id": 1655,
- "properties": {
- "instrument": "custom_head",
- "note": "8",
- "powered": "false"
- }
- },
- {
- "id": 1656,
- "properties": {
- "instrument": "custom_head",
- "note": "9",
- "powered": "true"
- }
- },
- {
- "id": 1657,
- "properties": {
- "instrument": "custom_head",
- "note": "9",
- "powered": "false"
- }
- },
- {
- "id": 1658,
- "properties": {
- "instrument": "custom_head",
- "note": "10",
- "powered": "true"
- }
- },
- {
- "id": 1659,
- "properties": {
- "instrument": "custom_head",
- "note": "10",
- "powered": "false"
- }
- },
- {
- "id": 1660,
- "properties": {
- "instrument": "custom_head",
- "note": "11",
- "powered": "true"
- }
- },
- {
- "id": 1661,
- "properties": {
- "instrument": "custom_head",
- "note": "11",
- "powered": "false"
- }
- },
- {
- "id": 1662,
- "properties": {
- "instrument": "custom_head",
- "note": "12",
- "powered": "true"
- }
- },
- {
- "id": 1663,
- "properties": {
- "instrument": "custom_head",
- "note": "12",
- "powered": "false"
- }
- },
- {
- "id": 1664,
- "properties": {
- "instrument": "custom_head",
- "note": "13",
- "powered": "true"
- }
- },
- {
- "id": 1665,
- "properties": {
- "instrument": "custom_head",
- "note": "13",
- "powered": "false"
- }
- },
- {
- "id": 1666,
- "properties": {
- "instrument": "custom_head",
- "note": "14",
- "powered": "true"
- }
- },
- {
- "id": 1667,
- "properties": {
- "instrument": "custom_head",
- "note": "14",
- "powered": "false"
- }
- },
- {
- "id": 1668,
- "properties": {
- "instrument": "custom_head",
- "note": "15",
- "powered": "true"
- }
- },
- {
- "id": 1669,
- "properties": {
- "instrument": "custom_head",
- "note": "15",
- "powered": "false"
- }
- },
- {
- "id": 1670,
- "properties": {
- "instrument": "custom_head",
- "note": "16",
- "powered": "true"
- }
- },
- {
- "id": 1671,
- "properties": {
- "instrument": "custom_head",
- "note": "16",
- "powered": "false"
- }
- },
- {
- "id": 1672,
- "properties": {
- "instrument": "custom_head",
- "note": "17",
- "powered": "true"
- }
- },
- {
- "id": 1673,
- "properties": {
- "instrument": "custom_head",
- "note": "17",
- "powered": "false"
- }
- },
- {
- "id": 1674,
- "properties": {
- "instrument": "custom_head",
- "note": "18",
- "powered": "true"
- }
- },
- {
- "id": 1675,
- "properties": {
- "instrument": "custom_head",
- "note": "18",
- "powered": "false"
- }
- },
- {
- "id": 1676,
- "properties": {
- "instrument": "custom_head",
- "note": "19",
- "powered": "true"
- }
- },
- {
- "id": 1677,
- "properties": {
- "instrument": "custom_head",
- "note": "19",
- "powered": "false"
- }
- },
- {
- "id": 1678,
- "properties": {
- "instrument": "custom_head",
- "note": "20",
- "powered": "true"
- }
- },
- {
- "id": 1679,
- "properties": {
- "instrument": "custom_head",
- "note": "20",
- "powered": "false"
- }
- },
- {
- "id": 1680,
- "properties": {
- "instrument": "custom_head",
- "note": "21",
- "powered": "true"
- }
- },
{
"id": 1681,
"properties": {
"instrument": "custom_head",
- "note": "21",
- "powered": "false"
+ "note": "0",
+ "powered": "true"
}
},
{
"id": 1682,
"properties": {
"instrument": "custom_head",
- "note": "22",
- "powered": "true"
+ "note": "0",
+ "powered": "false"
}
},
{
"id": 1683,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "1",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1684,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "1",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1685,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "2",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1686,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "2",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1687,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "3",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1688,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "3",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1689,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "4",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1690,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "4",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1691,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "5",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1692,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "5",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1693,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "6",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1694,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "6",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1695,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "7",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1696,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "7",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1697,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "8",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1698,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "8",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1699,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "9",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1700,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "9",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1701,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "10",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1702,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "10",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1703,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "11",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1704,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "11",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1705,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "12",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1706,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "12",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1707,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "13",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1708,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "13",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1709,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "14",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1710,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "14",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1711,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "15",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1712,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "15",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1713,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "16",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1714,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "16",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1715,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "17",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1716,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "17",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1717,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "18",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1718,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "18",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1719,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "19",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1720,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "19",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1721,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "20",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1722,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "20",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1723,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "21",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1724,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "21",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 1725,
+ "properties": {
+ "instrument": "custom_head",
+ "note": "22",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 1726,
"properties": {
"instrument": "custom_head",
"note": "22",
@@ -153973,7 +154058,7 @@
}
},
{
- "id": 1684,
+ "id": 1727,
"properties": {
"instrument": "custom_head",
"note": "23",
@@ -153981,7 +154066,7 @@
}
},
{
- "id": 1685,
+ "id": 1728,
"properties": {
"instrument": "custom_head",
"note": "23",
@@ -153989,7 +154074,7 @@
}
},
{
- "id": 1686,
+ "id": 1729,
"properties": {
"instrument": "custom_head",
"note": "24",
@@ -153997,7 +154082,7 @@
}
},
{
- "id": 1687,
+ "id": 1730,
"properties": {
"instrument": "custom_head",
"note": "24",
@@ -154032,7 +154117,7 @@
},
"states": [
{
- "id": 8611,
+ "id": 8842,
"properties": {
"face": "floor",
"facing": "north",
@@ -154040,7 +154125,7 @@
}
},
{
- "id": 8612,
+ "id": 8843,
"properties": {
"face": "floor",
"facing": "north",
@@ -154048,7 +154133,7 @@
}
},
{
- "id": 8613,
+ "id": 8844,
"properties": {
"face": "floor",
"facing": "south",
@@ -154056,7 +154141,7 @@
}
},
{
- "id": 8614,
+ "id": 8845,
"properties": {
"face": "floor",
"facing": "south",
@@ -154064,7 +154149,7 @@
}
},
{
- "id": 8615,
+ "id": 8846,
"properties": {
"face": "floor",
"facing": "west",
@@ -154072,7 +154157,7 @@
}
},
{
- "id": 8616,
+ "id": 8847,
"properties": {
"face": "floor",
"facing": "west",
@@ -154080,7 +154165,7 @@
}
},
{
- "id": 8617,
+ "id": 8848,
"properties": {
"face": "floor",
"facing": "east",
@@ -154088,7 +154173,7 @@
}
},
{
- "id": 8618,
+ "id": 8849,
"properties": {
"face": "floor",
"facing": "east",
@@ -154096,7 +154181,7 @@
}
},
{
- "id": 8619,
+ "id": 8850,
"properties": {
"face": "wall",
"facing": "north",
@@ -154105,7 +154190,7 @@
},
{
"default": true,
- "id": 8620,
+ "id": 8851,
"properties": {
"face": "wall",
"facing": "north",
@@ -154113,7 +154198,7 @@
}
},
{
- "id": 8621,
+ "id": 8852,
"properties": {
"face": "wall",
"facing": "south",
@@ -154121,7 +154206,7 @@
}
},
{
- "id": 8622,
+ "id": 8853,
"properties": {
"face": "wall",
"facing": "south",
@@ -154129,7 +154214,7 @@
}
},
{
- "id": 8623,
+ "id": 8854,
"properties": {
"face": "wall",
"facing": "west",
@@ -154137,7 +154222,7 @@
}
},
{
- "id": 8624,
+ "id": 8855,
"properties": {
"face": "wall",
"facing": "west",
@@ -154145,7 +154230,7 @@
}
},
{
- "id": 8625,
+ "id": 8856,
"properties": {
"face": "wall",
"facing": "east",
@@ -154153,7 +154238,7 @@
}
},
{
- "id": 8626,
+ "id": 8857,
"properties": {
"face": "wall",
"facing": "east",
@@ -154161,7 +154246,7 @@
}
},
{
- "id": 8627,
+ "id": 8858,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -154169,7 +154254,7 @@
}
},
{
- "id": 8628,
+ "id": 8859,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -154177,7 +154262,7 @@
}
},
{
- "id": 8629,
+ "id": 8860,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -154185,7 +154270,7 @@
}
},
{
- "id": 8630,
+ "id": 8861,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -154193,7 +154278,7 @@
}
},
{
- "id": 8631,
+ "id": 8862,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -154201,7 +154286,7 @@
}
},
{
- "id": 8632,
+ "id": 8863,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -154209,7 +154294,7 @@
}
},
{
- "id": 8633,
+ "id": 8864,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -154217,7 +154302,7 @@
}
},
{
- "id": 8634,
+ "id": 8865,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -154258,7 +154343,7 @@
},
"states": [
{
- "id": 4590,
+ "id": 4674,
"properties": {
"facing": "north",
"half": "upper",
@@ -154268,7 +154353,7 @@
}
},
{
- "id": 4591,
+ "id": 4675,
"properties": {
"facing": "north",
"half": "upper",
@@ -154278,7 +154363,7 @@
}
},
{
- "id": 4592,
+ "id": 4676,
"properties": {
"facing": "north",
"half": "upper",
@@ -154288,7 +154373,7 @@
}
},
{
- "id": 4593,
+ "id": 4677,
"properties": {
"facing": "north",
"half": "upper",
@@ -154298,7 +154383,7 @@
}
},
{
- "id": 4594,
+ "id": 4678,
"properties": {
"facing": "north",
"half": "upper",
@@ -154308,7 +154393,7 @@
}
},
{
- "id": 4595,
+ "id": 4679,
"properties": {
"facing": "north",
"half": "upper",
@@ -154318,7 +154403,7 @@
}
},
{
- "id": 4596,
+ "id": 4680,
"properties": {
"facing": "north",
"half": "upper",
@@ -154328,7 +154413,7 @@
}
},
{
- "id": 4597,
+ "id": 4681,
"properties": {
"facing": "north",
"half": "upper",
@@ -154338,7 +154423,7 @@
}
},
{
- "id": 4598,
+ "id": 4682,
"properties": {
"facing": "north",
"half": "lower",
@@ -154348,7 +154433,7 @@
}
},
{
- "id": 4599,
+ "id": 4683,
"properties": {
"facing": "north",
"half": "lower",
@@ -154358,7 +154443,7 @@
}
},
{
- "id": 4600,
+ "id": 4684,
"properties": {
"facing": "north",
"half": "lower",
@@ -154369,7 +154454,7 @@
},
{
"default": true,
- "id": 4601,
+ "id": 4685,
"properties": {
"facing": "north",
"half": "lower",
@@ -154379,7 +154464,7 @@
}
},
{
- "id": 4602,
+ "id": 4686,
"properties": {
"facing": "north",
"half": "lower",
@@ -154389,7 +154474,7 @@
}
},
{
- "id": 4603,
+ "id": 4687,
"properties": {
"facing": "north",
"half": "lower",
@@ -154399,7 +154484,7 @@
}
},
{
- "id": 4604,
+ "id": 4688,
"properties": {
"facing": "north",
"half": "lower",
@@ -154409,7 +154494,7 @@
}
},
{
- "id": 4605,
+ "id": 4689,
"properties": {
"facing": "north",
"half": "lower",
@@ -154419,7 +154504,7 @@
}
},
{
- "id": 4606,
+ "id": 4690,
"properties": {
"facing": "south",
"half": "upper",
@@ -154429,7 +154514,7 @@
}
},
{
- "id": 4607,
+ "id": 4691,
"properties": {
"facing": "south",
"half": "upper",
@@ -154439,7 +154524,7 @@
}
},
{
- "id": 4608,
+ "id": 4692,
"properties": {
"facing": "south",
"half": "upper",
@@ -154449,7 +154534,7 @@
}
},
{
- "id": 4609,
+ "id": 4693,
"properties": {
"facing": "south",
"half": "upper",
@@ -154459,7 +154544,7 @@
}
},
{
- "id": 4610,
+ "id": 4694,
"properties": {
"facing": "south",
"half": "upper",
@@ -154469,7 +154554,7 @@
}
},
{
- "id": 4611,
+ "id": 4695,
"properties": {
"facing": "south",
"half": "upper",
@@ -154479,7 +154564,7 @@
}
},
{
- "id": 4612,
+ "id": 4696,
"properties": {
"facing": "south",
"half": "upper",
@@ -154489,7 +154574,7 @@
}
},
{
- "id": 4613,
+ "id": 4697,
"properties": {
"facing": "south",
"half": "upper",
@@ -154499,7 +154584,7 @@
}
},
{
- "id": 4614,
+ "id": 4698,
"properties": {
"facing": "south",
"half": "lower",
@@ -154509,7 +154594,7 @@
}
},
{
- "id": 4615,
+ "id": 4699,
"properties": {
"facing": "south",
"half": "lower",
@@ -154519,7 +154604,7 @@
}
},
{
- "id": 4616,
+ "id": 4700,
"properties": {
"facing": "south",
"half": "lower",
@@ -154529,7 +154614,7 @@
}
},
{
- "id": 4617,
+ "id": 4701,
"properties": {
"facing": "south",
"half": "lower",
@@ -154539,7 +154624,7 @@
}
},
{
- "id": 4618,
+ "id": 4702,
"properties": {
"facing": "south",
"half": "lower",
@@ -154549,7 +154634,7 @@
}
},
{
- "id": 4619,
+ "id": 4703,
"properties": {
"facing": "south",
"half": "lower",
@@ -154559,7 +154644,7 @@
}
},
{
- "id": 4620,
+ "id": 4704,
"properties": {
"facing": "south",
"half": "lower",
@@ -154569,7 +154654,7 @@
}
},
{
- "id": 4621,
+ "id": 4705,
"properties": {
"facing": "south",
"half": "lower",
@@ -154579,7 +154664,7 @@
}
},
{
- "id": 4622,
+ "id": 4706,
"properties": {
"facing": "west",
"half": "upper",
@@ -154589,7 +154674,7 @@
}
},
{
- "id": 4623,
+ "id": 4707,
"properties": {
"facing": "west",
"half": "upper",
@@ -154599,7 +154684,7 @@
}
},
{
- "id": 4624,
+ "id": 4708,
"properties": {
"facing": "west",
"half": "upper",
@@ -154609,7 +154694,7 @@
}
},
{
- "id": 4625,
+ "id": 4709,
"properties": {
"facing": "west",
"half": "upper",
@@ -154619,7 +154704,7 @@
}
},
{
- "id": 4626,
+ "id": 4710,
"properties": {
"facing": "west",
"half": "upper",
@@ -154629,7 +154714,7 @@
}
},
{
- "id": 4627,
+ "id": 4711,
"properties": {
"facing": "west",
"half": "upper",
@@ -154639,7 +154724,7 @@
}
},
{
- "id": 4628,
+ "id": 4712,
"properties": {
"facing": "west",
"half": "upper",
@@ -154649,7 +154734,7 @@
}
},
{
- "id": 4629,
+ "id": 4713,
"properties": {
"facing": "west",
"half": "upper",
@@ -154659,7 +154744,7 @@
}
},
{
- "id": 4630,
+ "id": 4714,
"properties": {
"facing": "west",
"half": "lower",
@@ -154669,7 +154754,7 @@
}
},
{
- "id": 4631,
+ "id": 4715,
"properties": {
"facing": "west",
"half": "lower",
@@ -154679,7 +154764,7 @@
}
},
{
- "id": 4632,
+ "id": 4716,
"properties": {
"facing": "west",
"half": "lower",
@@ -154689,7 +154774,7 @@
}
},
{
- "id": 4633,
+ "id": 4717,
"properties": {
"facing": "west",
"half": "lower",
@@ -154699,7 +154784,7 @@
}
},
{
- "id": 4634,
+ "id": 4718,
"properties": {
"facing": "west",
"half": "lower",
@@ -154709,7 +154794,7 @@
}
},
{
- "id": 4635,
+ "id": 4719,
"properties": {
"facing": "west",
"half": "lower",
@@ -154719,7 +154804,7 @@
}
},
{
- "id": 4636,
+ "id": 4720,
"properties": {
"facing": "west",
"half": "lower",
@@ -154729,7 +154814,7 @@
}
},
{
- "id": 4637,
+ "id": 4721,
"properties": {
"facing": "west",
"half": "lower",
@@ -154739,7 +154824,7 @@
}
},
{
- "id": 4638,
+ "id": 4722,
"properties": {
"facing": "east",
"half": "upper",
@@ -154749,7 +154834,7 @@
}
},
{
- "id": 4639,
+ "id": 4723,
"properties": {
"facing": "east",
"half": "upper",
@@ -154759,7 +154844,7 @@
}
},
{
- "id": 4640,
+ "id": 4724,
"properties": {
"facing": "east",
"half": "upper",
@@ -154769,7 +154854,7 @@
}
},
{
- "id": 4641,
+ "id": 4725,
"properties": {
"facing": "east",
"half": "upper",
@@ -154779,7 +154864,7 @@
}
},
{
- "id": 4642,
+ "id": 4726,
"properties": {
"facing": "east",
"half": "upper",
@@ -154789,7 +154874,7 @@
}
},
{
- "id": 4643,
+ "id": 4727,
"properties": {
"facing": "east",
"half": "upper",
@@ -154799,7 +154884,7 @@
}
},
{
- "id": 4644,
+ "id": 4728,
"properties": {
"facing": "east",
"half": "upper",
@@ -154809,7 +154894,7 @@
}
},
{
- "id": 4645,
+ "id": 4729,
"properties": {
"facing": "east",
"half": "upper",
@@ -154819,7 +154904,7 @@
}
},
{
- "id": 4646,
+ "id": 4730,
"properties": {
"facing": "east",
"half": "lower",
@@ -154829,7 +154914,7 @@
}
},
{
- "id": 4647,
+ "id": 4731,
"properties": {
"facing": "east",
"half": "lower",
@@ -154839,7 +154924,7 @@
}
},
{
- "id": 4648,
+ "id": 4732,
"properties": {
"facing": "east",
"half": "lower",
@@ -154849,7 +154934,7 @@
}
},
{
- "id": 4649,
+ "id": 4733,
"properties": {
"facing": "east",
"half": "lower",
@@ -154859,7 +154944,7 @@
}
},
{
- "id": 4650,
+ "id": 4734,
"properties": {
"facing": "east",
"half": "lower",
@@ -154869,7 +154954,7 @@
}
},
{
- "id": 4651,
+ "id": 4735,
"properties": {
"facing": "east",
"half": "lower",
@@ -154879,7 +154964,7 @@
}
},
{
- "id": 4652,
+ "id": 4736,
"properties": {
"facing": "east",
"half": "lower",
@@ -154889,7 +154974,7 @@
}
},
{
- "id": 4653,
+ "id": 4737,
"properties": {
"facing": "east",
"half": "lower",
@@ -154929,7 +155014,7 @@
},
"states": [
{
- "id": 5817,
+ "id": 5983,
"properties": {
"east": "true",
"north": "true",
@@ -154939,7 +155024,7 @@
}
},
{
- "id": 5818,
+ "id": 5984,
"properties": {
"east": "true",
"north": "true",
@@ -154949,7 +155034,7 @@
}
},
{
- "id": 5819,
+ "id": 5985,
"properties": {
"east": "true",
"north": "true",
@@ -154959,7 +155044,7 @@
}
},
{
- "id": 5820,
+ "id": 5986,
"properties": {
"east": "true",
"north": "true",
@@ -154969,7 +155054,7 @@
}
},
{
- "id": 5821,
+ "id": 5987,
"properties": {
"east": "true",
"north": "true",
@@ -154979,7 +155064,7 @@
}
},
{
- "id": 5822,
+ "id": 5988,
"properties": {
"east": "true",
"north": "true",
@@ -154989,7 +155074,7 @@
}
},
{
- "id": 5823,
+ "id": 5989,
"properties": {
"east": "true",
"north": "true",
@@ -154999,7 +155084,7 @@
}
},
{
- "id": 5824,
+ "id": 5990,
"properties": {
"east": "true",
"north": "true",
@@ -155009,7 +155094,7 @@
}
},
{
- "id": 5825,
+ "id": 5991,
"properties": {
"east": "true",
"north": "false",
@@ -155019,7 +155104,7 @@
}
},
{
- "id": 5826,
+ "id": 5992,
"properties": {
"east": "true",
"north": "false",
@@ -155029,7 +155114,7 @@
}
},
{
- "id": 5827,
+ "id": 5993,
"properties": {
"east": "true",
"north": "false",
@@ -155039,7 +155124,7 @@
}
},
{
- "id": 5828,
+ "id": 5994,
"properties": {
"east": "true",
"north": "false",
@@ -155049,7 +155134,7 @@
}
},
{
- "id": 5829,
+ "id": 5995,
"properties": {
"east": "true",
"north": "false",
@@ -155059,7 +155144,7 @@
}
},
{
- "id": 5830,
+ "id": 5996,
"properties": {
"east": "true",
"north": "false",
@@ -155069,7 +155154,7 @@
}
},
{
- "id": 5831,
+ "id": 5997,
"properties": {
"east": "true",
"north": "false",
@@ -155079,7 +155164,7 @@
}
},
{
- "id": 5832,
+ "id": 5998,
"properties": {
"east": "true",
"north": "false",
@@ -155089,7 +155174,7 @@
}
},
{
- "id": 5833,
+ "id": 5999,
"properties": {
"east": "false",
"north": "true",
@@ -155099,7 +155184,7 @@
}
},
{
- "id": 5834,
+ "id": 6000,
"properties": {
"east": "false",
"north": "true",
@@ -155109,7 +155194,7 @@
}
},
{
- "id": 5835,
+ "id": 6001,
"properties": {
"east": "false",
"north": "true",
@@ -155119,7 +155204,7 @@
}
},
{
- "id": 5836,
+ "id": 6002,
"properties": {
"east": "false",
"north": "true",
@@ -155129,7 +155214,7 @@
}
},
{
- "id": 5837,
+ "id": 6003,
"properties": {
"east": "false",
"north": "true",
@@ -155139,7 +155224,7 @@
}
},
{
- "id": 5838,
+ "id": 6004,
"properties": {
"east": "false",
"north": "true",
@@ -155149,7 +155234,7 @@
}
},
{
- "id": 5839,
+ "id": 6005,
"properties": {
"east": "false",
"north": "true",
@@ -155159,7 +155244,7 @@
}
},
{
- "id": 5840,
+ "id": 6006,
"properties": {
"east": "false",
"north": "true",
@@ -155169,7 +155254,7 @@
}
},
{
- "id": 5841,
+ "id": 6007,
"properties": {
"east": "false",
"north": "false",
@@ -155179,7 +155264,7 @@
}
},
{
- "id": 5842,
+ "id": 6008,
"properties": {
"east": "false",
"north": "false",
@@ -155189,7 +155274,7 @@
}
},
{
- "id": 5843,
+ "id": 6009,
"properties": {
"east": "false",
"north": "false",
@@ -155199,7 +155284,7 @@
}
},
{
- "id": 5844,
+ "id": 6010,
"properties": {
"east": "false",
"north": "false",
@@ -155209,7 +155294,7 @@
}
},
{
- "id": 5845,
+ "id": 6011,
"properties": {
"east": "false",
"north": "false",
@@ -155219,7 +155304,7 @@
}
},
{
- "id": 5846,
+ "id": 6012,
"properties": {
"east": "false",
"north": "false",
@@ -155229,7 +155314,7 @@
}
},
{
- "id": 5847,
+ "id": 6013,
"properties": {
"east": "false",
"north": "false",
@@ -155240,7 +155325,7 @@
},
{
"default": true,
- "id": 5848,
+ "id": 6014,
"properties": {
"east": "false",
"north": "false",
@@ -155279,7 +155364,7 @@
},
"states": [
{
- "id": 6997,
+ "id": 7227,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -155288,7 +155373,7 @@
}
},
{
- "id": 6998,
+ "id": 7228,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -155297,7 +155382,7 @@
}
},
{
- "id": 6999,
+ "id": 7229,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -155306,7 +155391,7 @@
}
},
{
- "id": 7000,
+ "id": 7230,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -155315,7 +155400,7 @@
}
},
{
- "id": 7001,
+ "id": 7231,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -155324,7 +155409,7 @@
}
},
{
- "id": 7002,
+ "id": 7232,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -155333,7 +155418,7 @@
}
},
{
- "id": 7003,
+ "id": 7233,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -155343,7 +155428,7 @@
},
{
"default": true,
- "id": 7004,
+ "id": 7234,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -155352,7 +155437,7 @@
}
},
{
- "id": 7005,
+ "id": 7235,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -155361,7 +155446,7 @@
}
},
{
- "id": 7006,
+ "id": 7236,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -155370,7 +155455,7 @@
}
},
{
- "id": 7007,
+ "id": 7237,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -155379,7 +155464,7 @@
}
},
{
- "id": 7008,
+ "id": 7238,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -155388,7 +155473,7 @@
}
},
{
- "id": 7009,
+ "id": 7239,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -155397,7 +155482,7 @@
}
},
{
- "id": 7010,
+ "id": 7240,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -155406,7 +155491,7 @@
}
},
{
- "id": 7011,
+ "id": 7241,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -155415,7 +155500,7 @@
}
},
{
- "id": 7012,
+ "id": 7242,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -155424,7 +155509,7 @@
}
},
{
- "id": 7013,
+ "id": 7243,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -155433,7 +155518,7 @@
}
},
{
- "id": 7014,
+ "id": 7244,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -155442,7 +155527,7 @@
}
},
{
- "id": 7015,
+ "id": 7245,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -155451,7 +155536,7 @@
}
},
{
- "id": 7016,
+ "id": 7246,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -155460,7 +155545,7 @@
}
},
{
- "id": 7017,
+ "id": 7247,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -155469,7 +155554,7 @@
}
},
{
- "id": 7018,
+ "id": 7248,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -155478,7 +155563,7 @@
}
},
{
- "id": 7019,
+ "id": 7249,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -155487,7 +155572,7 @@
}
},
{
- "id": 7020,
+ "id": 7250,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -155496,7 +155581,7 @@
}
},
{
- "id": 7021,
+ "id": 7251,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -155505,7 +155590,7 @@
}
},
{
- "id": 7022,
+ "id": 7252,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -155514,7 +155599,7 @@
}
},
{
- "id": 7023,
+ "id": 7253,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -155523,7 +155608,7 @@
}
},
{
- "id": 7024,
+ "id": 7254,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -155532,7 +155617,7 @@
}
},
{
- "id": 7025,
+ "id": 7255,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -155541,7 +155626,7 @@
}
},
{
- "id": 7026,
+ "id": 7256,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -155550,7 +155635,7 @@
}
},
{
- "id": 7027,
+ "id": 7257,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -155559,7 +155644,7 @@
}
},
{
- "id": 7028,
+ "id": 7258,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -155605,7 +155690,7 @@
},
"states": [
{
- "id": 4834,
+ "id": 4926,
"properties": {
"attached": "true",
"rotation": "0",
@@ -155613,7 +155698,7 @@
}
},
{
- "id": 4835,
+ "id": 4927,
"properties": {
"attached": "true",
"rotation": "0",
@@ -155621,7 +155706,7 @@
}
},
{
- "id": 4836,
+ "id": 4928,
"properties": {
"attached": "true",
"rotation": "1",
@@ -155629,7 +155714,7 @@
}
},
{
- "id": 4837,
+ "id": 4929,
"properties": {
"attached": "true",
"rotation": "1",
@@ -155637,7 +155722,7 @@
}
},
{
- "id": 4838,
+ "id": 4930,
"properties": {
"attached": "true",
"rotation": "2",
@@ -155645,7 +155730,7 @@
}
},
{
- "id": 4839,
+ "id": 4931,
"properties": {
"attached": "true",
"rotation": "2",
@@ -155653,7 +155738,7 @@
}
},
{
- "id": 4840,
+ "id": 4932,
"properties": {
"attached": "true",
"rotation": "3",
@@ -155661,7 +155746,7 @@
}
},
{
- "id": 4841,
+ "id": 4933,
"properties": {
"attached": "true",
"rotation": "3",
@@ -155669,7 +155754,7 @@
}
},
{
- "id": 4842,
+ "id": 4934,
"properties": {
"attached": "true",
"rotation": "4",
@@ -155677,7 +155762,7 @@
}
},
{
- "id": 4843,
+ "id": 4935,
"properties": {
"attached": "true",
"rotation": "4",
@@ -155685,7 +155770,7 @@
}
},
{
- "id": 4844,
+ "id": 4936,
"properties": {
"attached": "true",
"rotation": "5",
@@ -155693,7 +155778,7 @@
}
},
{
- "id": 4845,
+ "id": 4937,
"properties": {
"attached": "true",
"rotation": "5",
@@ -155701,7 +155786,7 @@
}
},
{
- "id": 4846,
+ "id": 4938,
"properties": {
"attached": "true",
"rotation": "6",
@@ -155709,7 +155794,7 @@
}
},
{
- "id": 4847,
+ "id": 4939,
"properties": {
"attached": "true",
"rotation": "6",
@@ -155717,7 +155802,7 @@
}
},
{
- "id": 4848,
+ "id": 4940,
"properties": {
"attached": "true",
"rotation": "7",
@@ -155725,7 +155810,7 @@
}
},
{
- "id": 4849,
+ "id": 4941,
"properties": {
"attached": "true",
"rotation": "7",
@@ -155733,7 +155818,7 @@
}
},
{
- "id": 4850,
+ "id": 4942,
"properties": {
"attached": "true",
"rotation": "8",
@@ -155741,7 +155826,7 @@
}
},
{
- "id": 4851,
+ "id": 4943,
"properties": {
"attached": "true",
"rotation": "8",
@@ -155749,7 +155834,7 @@
}
},
{
- "id": 4852,
+ "id": 4944,
"properties": {
"attached": "true",
"rotation": "9",
@@ -155757,7 +155842,7 @@
}
},
{
- "id": 4853,
+ "id": 4945,
"properties": {
"attached": "true",
"rotation": "9",
@@ -155765,7 +155850,7 @@
}
},
{
- "id": 4854,
+ "id": 4946,
"properties": {
"attached": "true",
"rotation": "10",
@@ -155773,7 +155858,7 @@
}
},
{
- "id": 4855,
+ "id": 4947,
"properties": {
"attached": "true",
"rotation": "10",
@@ -155781,7 +155866,7 @@
}
},
{
- "id": 4856,
+ "id": 4948,
"properties": {
"attached": "true",
"rotation": "11",
@@ -155789,7 +155874,7 @@
}
},
{
- "id": 4857,
+ "id": 4949,
"properties": {
"attached": "true",
"rotation": "11",
@@ -155797,7 +155882,7 @@
}
},
{
- "id": 4858,
+ "id": 4950,
"properties": {
"attached": "true",
"rotation": "12",
@@ -155805,7 +155890,7 @@
}
},
{
- "id": 4859,
+ "id": 4951,
"properties": {
"attached": "true",
"rotation": "12",
@@ -155813,7 +155898,7 @@
}
},
{
- "id": 4860,
+ "id": 4952,
"properties": {
"attached": "true",
"rotation": "13",
@@ -155821,7 +155906,7 @@
}
},
{
- "id": 4861,
+ "id": 4953,
"properties": {
"attached": "true",
"rotation": "13",
@@ -155829,7 +155914,7 @@
}
},
{
- "id": 4862,
+ "id": 4954,
"properties": {
"attached": "true",
"rotation": "14",
@@ -155837,7 +155922,7 @@
}
},
{
- "id": 4863,
+ "id": 4955,
"properties": {
"attached": "true",
"rotation": "14",
@@ -155845,7 +155930,7 @@
}
},
{
- "id": 4864,
+ "id": 4956,
"properties": {
"attached": "true",
"rotation": "15",
@@ -155853,7 +155938,7 @@
}
},
{
- "id": 4865,
+ "id": 4957,
"properties": {
"attached": "true",
"rotation": "15",
@@ -155861,7 +155946,7 @@
}
},
{
- "id": 4866,
+ "id": 4958,
"properties": {
"attached": "false",
"rotation": "0",
@@ -155870,7 +155955,7 @@
},
{
"default": true,
- "id": 4867,
+ "id": 4959,
"properties": {
"attached": "false",
"rotation": "0",
@@ -155878,7 +155963,7 @@
}
},
{
- "id": 4868,
+ "id": 4960,
"properties": {
"attached": "false",
"rotation": "1",
@@ -155886,7 +155971,7 @@
}
},
{
- "id": 4869,
+ "id": 4961,
"properties": {
"attached": "false",
"rotation": "1",
@@ -155894,7 +155979,7 @@
}
},
{
- "id": 4870,
+ "id": 4962,
"properties": {
"attached": "false",
"rotation": "2",
@@ -155902,7 +155987,7 @@
}
},
{
- "id": 4871,
+ "id": 4963,
"properties": {
"attached": "false",
"rotation": "2",
@@ -155910,7 +155995,7 @@
}
},
{
- "id": 4872,
+ "id": 4964,
"properties": {
"attached": "false",
"rotation": "3",
@@ -155918,7 +156003,7 @@
}
},
{
- "id": 4873,
+ "id": 4965,
"properties": {
"attached": "false",
"rotation": "3",
@@ -155926,7 +156011,7 @@
}
},
{
- "id": 4874,
+ "id": 4966,
"properties": {
"attached": "false",
"rotation": "4",
@@ -155934,7 +156019,7 @@
}
},
{
- "id": 4875,
+ "id": 4967,
"properties": {
"attached": "false",
"rotation": "4",
@@ -155942,7 +156027,7 @@
}
},
{
- "id": 4876,
+ "id": 4968,
"properties": {
"attached": "false",
"rotation": "5",
@@ -155950,7 +156035,7 @@
}
},
{
- "id": 4877,
+ "id": 4969,
"properties": {
"attached": "false",
"rotation": "5",
@@ -155958,7 +156043,7 @@
}
},
{
- "id": 4878,
+ "id": 4970,
"properties": {
"attached": "false",
"rotation": "6",
@@ -155966,7 +156051,7 @@
}
},
{
- "id": 4879,
+ "id": 4971,
"properties": {
"attached": "false",
"rotation": "6",
@@ -155974,7 +156059,7 @@
}
},
{
- "id": 4880,
+ "id": 4972,
"properties": {
"attached": "false",
"rotation": "7",
@@ -155982,7 +156067,7 @@
}
},
{
- "id": 4881,
+ "id": 4973,
"properties": {
"attached": "false",
"rotation": "7",
@@ -155990,7 +156075,7 @@
}
},
{
- "id": 4882,
+ "id": 4974,
"properties": {
"attached": "false",
"rotation": "8",
@@ -155998,7 +156083,7 @@
}
},
{
- "id": 4883,
+ "id": 4975,
"properties": {
"attached": "false",
"rotation": "8",
@@ -156006,7 +156091,7 @@
}
},
{
- "id": 4884,
+ "id": 4976,
"properties": {
"attached": "false",
"rotation": "9",
@@ -156014,7 +156099,7 @@
}
},
{
- "id": 4885,
+ "id": 4977,
"properties": {
"attached": "false",
"rotation": "9",
@@ -156022,7 +156107,7 @@
}
},
{
- "id": 4886,
+ "id": 4978,
"properties": {
"attached": "false",
"rotation": "10",
@@ -156030,7 +156115,7 @@
}
},
{
- "id": 4887,
+ "id": 4979,
"properties": {
"attached": "false",
"rotation": "10",
@@ -156038,7 +156123,7 @@
}
},
{
- "id": 4888,
+ "id": 4980,
"properties": {
"attached": "false",
"rotation": "11",
@@ -156046,7 +156131,7 @@
}
},
{
- "id": 4889,
+ "id": 4981,
"properties": {
"attached": "false",
"rotation": "11",
@@ -156054,7 +156139,7 @@
}
},
{
- "id": 4890,
+ "id": 4982,
"properties": {
"attached": "false",
"rotation": "12",
@@ -156062,7 +156147,7 @@
}
},
{
- "id": 4891,
+ "id": 4983,
"properties": {
"attached": "false",
"rotation": "12",
@@ -156070,7 +156155,7 @@
}
},
{
- "id": 4892,
+ "id": 4984,
"properties": {
"attached": "false",
"rotation": "13",
@@ -156078,7 +156163,7 @@
}
},
{
- "id": 4893,
+ "id": 4985,
"properties": {
"attached": "false",
"rotation": "13",
@@ -156086,7 +156171,7 @@
}
},
{
- "id": 4894,
+ "id": 4986,
"properties": {
"attached": "false",
"rotation": "14",
@@ -156094,7 +156179,7 @@
}
},
{
- "id": 4895,
+ "id": 4987,
"properties": {
"attached": "false",
"rotation": "14",
@@ -156102,7 +156187,7 @@
}
},
{
- "id": 4896,
+ "id": 4988,
"properties": {
"attached": "false",
"rotation": "15",
@@ -156110,7 +156195,7 @@
}
},
{
- "id": 4897,
+ "id": 4989,
"properties": {
"attached": "false",
"rotation": "15",
@@ -156144,160 +156229,160 @@
]
},
"states": [
- {
- "id": 237,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 238,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 239,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 240,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 241,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 242,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 243,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 244,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 245,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 246,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 247,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 248,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 249,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 250,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 251,
- "properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
{
"id": 252,
"properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "true",
+ "waterlogged": "true"
}
},
{
"id": 253,
"properties": {
- "distance": "5",
+ "distance": "1",
"persistent": "true",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 254,
"properties": {
- "distance": "5",
- "persistent": "true",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "false",
+ "waterlogged": "true"
}
},
{
"id": 255,
"properties": {
- "distance": "5",
+ "distance": "1",
"persistent": "false",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 256,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 257,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 258,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 259,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 260,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 261,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 262,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 263,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 264,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 265,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 266,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 267,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 268,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 269,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 270,
+ "properties": {
+ "distance": "5",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 271,
"properties": {
"distance": "5",
"persistent": "false",
@@ -156305,7 +156390,7 @@
}
},
{
- "id": 257,
+ "id": 272,
"properties": {
"distance": "6",
"persistent": "true",
@@ -156313,7 +156398,7 @@
}
},
{
- "id": 258,
+ "id": 273,
"properties": {
"distance": "6",
"persistent": "true",
@@ -156321,7 +156406,7 @@
}
},
{
- "id": 259,
+ "id": 274,
"properties": {
"distance": "6",
"persistent": "false",
@@ -156329,7 +156414,7 @@
}
},
{
- "id": 260,
+ "id": 275,
"properties": {
"distance": "6",
"persistent": "false",
@@ -156337,7 +156422,7 @@
}
},
{
- "id": 261,
+ "id": 276,
"properties": {
"distance": "7",
"persistent": "true",
@@ -156345,7 +156430,7 @@
}
},
{
- "id": 262,
+ "id": 277,
"properties": {
"distance": "7",
"persistent": "true",
@@ -156353,7 +156438,7 @@
}
},
{
- "id": 263,
+ "id": 278,
"properties": {
"distance": "7",
"persistent": "false",
@@ -156362,7 +156447,7 @@
},
{
"default": true,
- "id": 264,
+ "id": 279,
"properties": {
"distance": "7",
"persistent": "false",
@@ -156385,20 +156470,20 @@
},
"states": [
{
- "id": 130,
+ "id": 136,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 131,
+ "id": 137,
"properties": {
"axis": "y"
}
},
{
- "id": 132,
+ "id": 138,
"properties": {
"axis": "z"
}
@@ -156431,14 +156516,14 @@
},
"states": [
{
- "id": 5716,
+ "id": 5880,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5717,
+ "id": 5881,
"properties": {
"powered": "false"
}
@@ -156460,13 +156545,13 @@
"states": [
{
"default": true,
- "id": 25,
+ "id": 29,
"properties": {
"stage": "0"
}
},
{
- "id": 26,
+ "id": 30,
"properties": {
"stage": "1"
}
@@ -156505,7 +156590,7 @@
},
"states": [
{
- "id": 4302,
+ "id": 4354,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -156513,217 +156598,217 @@
},
{
"default": true,
- "id": 4303,
+ "id": 4355,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 4304,
+ "id": 4356,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 4305,
+ "id": 4357,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 4306,
+ "id": 4358,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 4307,
+ "id": 4359,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 4308,
+ "id": 4360,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 4309,
+ "id": 4361,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 4310,
+ "id": 4362,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 4311,
+ "id": 4363,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 4312,
+ "id": 4364,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 4313,
+ "id": 4365,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 4314,
+ "id": 4366,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 4315,
+ "id": 4367,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 4316,
+ "id": 4368,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 4317,
+ "id": 4369,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 4318,
+ "id": 4370,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 4319,
+ "id": 4371,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 4320,
+ "id": 4372,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 4321,
+ "id": 4373,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 4322,
+ "id": 4374,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 4323,
+ "id": 4375,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 4324,
+ "id": 4376,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 4325,
+ "id": 4377,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 4326,
+ "id": 4378,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 4327,
+ "id": 4379,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 4328,
+ "id": 4380,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 4329,
+ "id": 4381,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 4330,
+ "id": 4382,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 4331,
+ "id": 4383,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 4332,
+ "id": 4384,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 4333,
+ "id": 4385,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -156749,21 +156834,21 @@
},
"states": [
{
- "id": 11162,
+ "id": 11497,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11163,
+ "id": 11498,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11164,
+ "id": 11499,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -156771,21 +156856,21 @@
},
{
"default": true,
- "id": 11165,
+ "id": 11500,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11166,
+ "id": 11501,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11167,
+ "id": 11502,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -156826,7 +156911,7 @@
},
"states": [
{
- "id": 2874,
+ "id": 2926,
"properties": {
"facing": "north",
"half": "top",
@@ -156835,7 +156920,7 @@
}
},
{
- "id": 2875,
+ "id": 2927,
"properties": {
"facing": "north",
"half": "top",
@@ -156844,7 +156929,7 @@
}
},
{
- "id": 2876,
+ "id": 2928,
"properties": {
"facing": "north",
"half": "top",
@@ -156853,7 +156938,7 @@
}
},
{
- "id": 2877,
+ "id": 2929,
"properties": {
"facing": "north",
"half": "top",
@@ -156862,7 +156947,7 @@
}
},
{
- "id": 2878,
+ "id": 2930,
"properties": {
"facing": "north",
"half": "top",
@@ -156871,7 +156956,7 @@
}
},
{
- "id": 2879,
+ "id": 2931,
"properties": {
"facing": "north",
"half": "top",
@@ -156880,7 +156965,7 @@
}
},
{
- "id": 2880,
+ "id": 2932,
"properties": {
"facing": "north",
"half": "top",
@@ -156889,7 +156974,7 @@
}
},
{
- "id": 2881,
+ "id": 2933,
"properties": {
"facing": "north",
"half": "top",
@@ -156898,7 +156983,7 @@
}
},
{
- "id": 2882,
+ "id": 2934,
"properties": {
"facing": "north",
"half": "top",
@@ -156907,7 +156992,7 @@
}
},
{
- "id": 2883,
+ "id": 2935,
"properties": {
"facing": "north",
"half": "top",
@@ -156916,7 +157001,7 @@
}
},
{
- "id": 2884,
+ "id": 2936,
"properties": {
"facing": "north",
"half": "bottom",
@@ -156926,529 +157011,529 @@
},
{
"default": true,
- "id": 2885,
- "properties": {
- "facing": "north",
- "half": "bottom",
- "shape": "straight",
- "waterlogged": "false"
- }
- },
- {
- "id": 2886,
- "properties": {
- "facing": "north",
- "half": "bottom",
- "shape": "inner_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2887,
- "properties": {
- "facing": "north",
- "half": "bottom",
- "shape": "inner_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2888,
- "properties": {
- "facing": "north",
- "half": "bottom",
- "shape": "inner_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2889,
- "properties": {
- "facing": "north",
- "half": "bottom",
- "shape": "inner_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2890,
- "properties": {
- "facing": "north",
- "half": "bottom",
- "shape": "outer_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2891,
- "properties": {
- "facing": "north",
- "half": "bottom",
- "shape": "outer_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2892,
- "properties": {
- "facing": "north",
- "half": "bottom",
- "shape": "outer_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2893,
- "properties": {
- "facing": "north",
- "half": "bottom",
- "shape": "outer_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2894,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "straight",
- "waterlogged": "true"
- }
- },
- {
- "id": 2895,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "straight",
- "waterlogged": "false"
- }
- },
- {
- "id": 2896,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "inner_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2897,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "inner_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2898,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "inner_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2899,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "inner_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2900,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "outer_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2901,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "outer_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2902,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "outer_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2903,
- "properties": {
- "facing": "south",
- "half": "top",
- "shape": "outer_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2904,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "straight",
- "waterlogged": "true"
- }
- },
- {
- "id": 2905,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "straight",
- "waterlogged": "false"
- }
- },
- {
- "id": 2906,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "inner_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2907,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "inner_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2908,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "inner_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2909,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "inner_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2910,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "outer_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2911,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "outer_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2912,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "outer_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2913,
- "properties": {
- "facing": "south",
- "half": "bottom",
- "shape": "outer_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2914,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "straight",
- "waterlogged": "true"
- }
- },
- {
- "id": 2915,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "straight",
- "waterlogged": "false"
- }
- },
- {
- "id": 2916,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "inner_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2917,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "inner_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2918,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "inner_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2919,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "inner_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2920,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "outer_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2921,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "outer_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2922,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "outer_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2923,
- "properties": {
- "facing": "west",
- "half": "top",
- "shape": "outer_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2924,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "straight",
- "waterlogged": "true"
- }
- },
- {
- "id": 2925,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "straight",
- "waterlogged": "false"
- }
- },
- {
- "id": 2926,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "inner_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2927,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "inner_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2928,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "inner_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2929,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "inner_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2930,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "outer_left",
- "waterlogged": "true"
- }
- },
- {
- "id": 2931,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "outer_left",
- "waterlogged": "false"
- }
- },
- {
- "id": 2932,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "outer_right",
- "waterlogged": "true"
- }
- },
- {
- "id": 2933,
- "properties": {
- "facing": "west",
- "half": "bottom",
- "shape": "outer_right",
- "waterlogged": "false"
- }
- },
- {
- "id": 2934,
- "properties": {
- "facing": "east",
- "half": "top",
- "shape": "straight",
- "waterlogged": "true"
- }
- },
- {
- "id": 2935,
- "properties": {
- "facing": "east",
- "half": "top",
- "shape": "straight",
- "waterlogged": "false"
- }
- },
- {
- "id": 2936,
- "properties": {
- "facing": "east",
- "half": "top",
- "shape": "inner_left",
- "waterlogged": "true"
- }
- },
- {
"id": 2937,
"properties": {
- "facing": "east",
- "half": "top",
- "shape": "inner_left",
+ "facing": "north",
+ "half": "bottom",
+ "shape": "straight",
"waterlogged": "false"
}
},
{
"id": 2938,
"properties": {
- "facing": "east",
- "half": "top",
- "shape": "inner_right",
+ "facing": "north",
+ "half": "bottom",
+ "shape": "inner_left",
"waterlogged": "true"
}
},
{
"id": 2939,
"properties": {
- "facing": "east",
- "half": "top",
- "shape": "inner_right",
+ "facing": "north",
+ "half": "bottom",
+ "shape": "inner_left",
"waterlogged": "false"
}
},
{
"id": 2940,
"properties": {
- "facing": "east",
- "half": "top",
- "shape": "outer_left",
+ "facing": "north",
+ "half": "bottom",
+ "shape": "inner_right",
"waterlogged": "true"
}
},
{
"id": 2941,
"properties": {
- "facing": "east",
- "half": "top",
- "shape": "outer_left",
+ "facing": "north",
+ "half": "bottom",
+ "shape": "inner_right",
"waterlogged": "false"
}
},
{
"id": 2942,
"properties": {
- "facing": "east",
- "half": "top",
- "shape": "outer_right",
+ "facing": "north",
+ "half": "bottom",
+ "shape": "outer_left",
"waterlogged": "true"
}
},
{
"id": 2943,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2944,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2945,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "shape": "outer_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2946,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2947,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2948,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2949,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2950,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2951,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2952,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2953,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2954,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2955,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "outer_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2956,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "straight",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2957,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "straight",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2958,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "inner_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2959,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "inner_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2960,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "inner_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2961,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "inner_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2962,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "outer_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2963,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2964,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2965,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "outer_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2966,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2967,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2968,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2969,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2970,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2971,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2972,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2973,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2974,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2975,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "outer_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2976,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "straight",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2977,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "straight",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2978,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "inner_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2979,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "inner_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2980,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "inner_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2981,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "inner_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2982,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "outer_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2983,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2984,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2985,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "outer_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2986,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2987,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2988,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2989,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2990,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2991,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2992,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2993,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 2994,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 2995,
"properties": {
"facing": "east",
"half": "top",
@@ -157457,7 +157542,7 @@
}
},
{
- "id": 2944,
+ "id": 2996,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157466,7 +157551,7 @@
}
},
{
- "id": 2945,
+ "id": 2997,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157475,7 +157560,7 @@
}
},
{
- "id": 2946,
+ "id": 2998,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157484,7 +157569,7 @@
}
},
{
- "id": 2947,
+ "id": 2999,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157493,7 +157578,7 @@
}
},
{
- "id": 2948,
+ "id": 3000,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157502,7 +157587,7 @@
}
},
{
- "id": 2949,
+ "id": 3001,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157511,7 +157596,7 @@
}
},
{
- "id": 2950,
+ "id": 3002,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157520,7 +157605,7 @@
}
},
{
- "id": 2951,
+ "id": 3003,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157529,7 +157614,7 @@
}
},
{
- "id": 2952,
+ "id": 3004,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157538,7 +157623,7 @@
}
},
{
- "id": 2953,
+ "id": 3005,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157580,7 +157665,7 @@
},
"states": [
{
- "id": 5961,
+ "id": 6127,
"properties": {
"facing": "north",
"half": "top",
@@ -157590,7 +157675,7 @@
}
},
{
- "id": 5962,
+ "id": 6128,
"properties": {
"facing": "north",
"half": "top",
@@ -157600,7 +157685,7 @@
}
},
{
- "id": 5963,
+ "id": 6129,
"properties": {
"facing": "north",
"half": "top",
@@ -157610,7 +157695,7 @@
}
},
{
- "id": 5964,
+ "id": 6130,
"properties": {
"facing": "north",
"half": "top",
@@ -157620,7 +157705,7 @@
}
},
{
- "id": 5965,
+ "id": 6131,
"properties": {
"facing": "north",
"half": "top",
@@ -157630,7 +157715,7 @@
}
},
{
- "id": 5966,
+ "id": 6132,
"properties": {
"facing": "north",
"half": "top",
@@ -157640,7 +157725,7 @@
}
},
{
- "id": 5967,
+ "id": 6133,
"properties": {
"facing": "north",
"half": "top",
@@ -157650,7 +157735,7 @@
}
},
{
- "id": 5968,
+ "id": 6134,
"properties": {
"facing": "north",
"half": "top",
@@ -157660,7 +157745,7 @@
}
},
{
- "id": 5969,
+ "id": 6135,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157670,7 +157755,7 @@
}
},
{
- "id": 5970,
+ "id": 6136,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157680,7 +157765,7 @@
}
},
{
- "id": 5971,
+ "id": 6137,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157690,7 +157775,7 @@
}
},
{
- "id": 5972,
+ "id": 6138,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157700,7 +157785,7 @@
}
},
{
- "id": 5973,
+ "id": 6139,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157710,7 +157795,7 @@
}
},
{
- "id": 5974,
+ "id": 6140,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157720,7 +157805,7 @@
}
},
{
- "id": 5975,
+ "id": 6141,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157731,7 +157816,7 @@
},
{
"default": true,
- "id": 5976,
+ "id": 6142,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157741,7 +157826,7 @@
}
},
{
- "id": 5977,
+ "id": 6143,
"properties": {
"facing": "south",
"half": "top",
@@ -157751,7 +157836,7 @@
}
},
{
- "id": 5978,
+ "id": 6144,
"properties": {
"facing": "south",
"half": "top",
@@ -157761,7 +157846,7 @@
}
},
{
- "id": 5979,
+ "id": 6145,
"properties": {
"facing": "south",
"half": "top",
@@ -157771,7 +157856,7 @@
}
},
{
- "id": 5980,
+ "id": 6146,
"properties": {
"facing": "south",
"half": "top",
@@ -157781,7 +157866,7 @@
}
},
{
- "id": 5981,
+ "id": 6147,
"properties": {
"facing": "south",
"half": "top",
@@ -157791,7 +157876,7 @@
}
},
{
- "id": 5982,
+ "id": 6148,
"properties": {
"facing": "south",
"half": "top",
@@ -157801,7 +157886,7 @@
}
},
{
- "id": 5983,
+ "id": 6149,
"properties": {
"facing": "south",
"half": "top",
@@ -157811,7 +157896,7 @@
}
},
{
- "id": 5984,
+ "id": 6150,
"properties": {
"facing": "south",
"half": "top",
@@ -157821,7 +157906,7 @@
}
},
{
- "id": 5985,
+ "id": 6151,
"properties": {
"facing": "south",
"half": "bottom",
@@ -157831,7 +157916,7 @@
}
},
{
- "id": 5986,
+ "id": 6152,
"properties": {
"facing": "south",
"half": "bottom",
@@ -157841,7 +157926,7 @@
}
},
{
- "id": 5987,
+ "id": 6153,
"properties": {
"facing": "south",
"half": "bottom",
@@ -157851,7 +157936,7 @@
}
},
{
- "id": 5988,
+ "id": 6154,
"properties": {
"facing": "south",
"half": "bottom",
@@ -157861,7 +157946,7 @@
}
},
{
- "id": 5989,
+ "id": 6155,
"properties": {
"facing": "south",
"half": "bottom",
@@ -157871,7 +157956,7 @@
}
},
{
- "id": 5990,
+ "id": 6156,
"properties": {
"facing": "south",
"half": "bottom",
@@ -157881,7 +157966,7 @@
}
},
{
- "id": 5991,
+ "id": 6157,
"properties": {
"facing": "south",
"half": "bottom",
@@ -157891,7 +157976,7 @@
}
},
{
- "id": 5992,
+ "id": 6158,
"properties": {
"facing": "south",
"half": "bottom",
@@ -157901,7 +157986,7 @@
}
},
{
- "id": 5993,
+ "id": 6159,
"properties": {
"facing": "west",
"half": "top",
@@ -157911,7 +157996,7 @@
}
},
{
- "id": 5994,
+ "id": 6160,
"properties": {
"facing": "west",
"half": "top",
@@ -157921,7 +158006,7 @@
}
},
{
- "id": 5995,
+ "id": 6161,
"properties": {
"facing": "west",
"half": "top",
@@ -157931,7 +158016,7 @@
}
},
{
- "id": 5996,
+ "id": 6162,
"properties": {
"facing": "west",
"half": "top",
@@ -157941,7 +158026,7 @@
}
},
{
- "id": 5997,
+ "id": 6163,
"properties": {
"facing": "west",
"half": "top",
@@ -157951,7 +158036,7 @@
}
},
{
- "id": 5998,
+ "id": 6164,
"properties": {
"facing": "west",
"half": "top",
@@ -157961,7 +158046,7 @@
}
},
{
- "id": 5999,
+ "id": 6165,
"properties": {
"facing": "west",
"half": "top",
@@ -157971,7 +158056,7 @@
}
},
{
- "id": 6000,
+ "id": 6166,
"properties": {
"facing": "west",
"half": "top",
@@ -157981,7 +158066,7 @@
}
},
{
- "id": 6001,
+ "id": 6167,
"properties": {
"facing": "west",
"half": "bottom",
@@ -157991,7 +158076,7 @@
}
},
{
- "id": 6002,
+ "id": 6168,
"properties": {
"facing": "west",
"half": "bottom",
@@ -158001,7 +158086,7 @@
}
},
{
- "id": 6003,
+ "id": 6169,
"properties": {
"facing": "west",
"half": "bottom",
@@ -158011,7 +158096,7 @@
}
},
{
- "id": 6004,
+ "id": 6170,
"properties": {
"facing": "west",
"half": "bottom",
@@ -158021,7 +158106,7 @@
}
},
{
- "id": 6005,
+ "id": 6171,
"properties": {
"facing": "west",
"half": "bottom",
@@ -158031,7 +158116,7 @@
}
},
{
- "id": 6006,
+ "id": 6172,
"properties": {
"facing": "west",
"half": "bottom",
@@ -158041,7 +158126,7 @@
}
},
{
- "id": 6007,
+ "id": 6173,
"properties": {
"facing": "west",
"half": "bottom",
@@ -158051,7 +158136,7 @@
}
},
{
- "id": 6008,
+ "id": 6174,
"properties": {
"facing": "west",
"half": "bottom",
@@ -158061,7 +158146,7 @@
}
},
{
- "id": 6009,
+ "id": 6175,
"properties": {
"facing": "east",
"half": "top",
@@ -158071,7 +158156,7 @@
}
},
{
- "id": 6010,
+ "id": 6176,
"properties": {
"facing": "east",
"half": "top",
@@ -158081,7 +158166,7 @@
}
},
{
- "id": 6011,
+ "id": 6177,
"properties": {
"facing": "east",
"half": "top",
@@ -158091,7 +158176,7 @@
}
},
{
- "id": 6012,
+ "id": 6178,
"properties": {
"facing": "east",
"half": "top",
@@ -158101,7 +158186,7 @@
}
},
{
- "id": 6013,
+ "id": 6179,
"properties": {
"facing": "east",
"half": "top",
@@ -158111,7 +158196,7 @@
}
},
{
- "id": 6014,
+ "id": 6180,
"properties": {
"facing": "east",
"half": "top",
@@ -158121,7 +158206,7 @@
}
},
{
- "id": 6015,
+ "id": 6181,
"properties": {
"facing": "east",
"half": "top",
@@ -158131,7 +158216,7 @@
}
},
{
- "id": 6016,
+ "id": 6182,
"properties": {
"facing": "east",
"half": "top",
@@ -158141,7 +158226,7 @@
}
},
{
- "id": 6017,
+ "id": 6183,
"properties": {
"facing": "east",
"half": "bottom",
@@ -158151,7 +158236,7 @@
}
},
{
- "id": 6018,
+ "id": 6184,
"properties": {
"facing": "east",
"half": "bottom",
@@ -158161,7 +158246,7 @@
}
},
{
- "id": 6019,
+ "id": 6185,
"properties": {
"facing": "east",
"half": "bottom",
@@ -158171,7 +158256,7 @@
}
},
{
- "id": 6020,
+ "id": 6186,
"properties": {
"facing": "east",
"half": "bottom",
@@ -158181,7 +158266,7 @@
}
},
{
- "id": 6021,
+ "id": 6187,
"properties": {
"facing": "east",
"half": "bottom",
@@ -158191,7 +158276,7 @@
}
},
{
- "id": 6022,
+ "id": 6188,
"properties": {
"facing": "east",
"half": "bottom",
@@ -158201,7 +158286,7 @@
}
},
{
- "id": 6023,
+ "id": 6189,
"properties": {
"facing": "east",
"half": "bottom",
@@ -158211,7 +158296,7 @@
}
},
{
- "id": 6024,
+ "id": 6190,
"properties": {
"facing": "east",
"half": "bottom",
@@ -158242,7 +158327,7 @@
},
"states": [
{
- "id": 5538,
+ "id": 5694,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -158250,49 +158335,49 @@
},
{
"default": true,
- "id": 5539,
+ "id": 5695,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5540,
+ "id": 5696,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5541,
+ "id": 5697,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5542,
+ "id": 5698,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5543,
+ "id": 5699,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5544,
+ "id": 5700,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5545,
+ "id": 5701,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -158320,7 +158405,7 @@
},
"states": [
{
- "id": 4762,
+ "id": 4846,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -158328,49 +158413,49 @@
},
{
"default": true,
- "id": 4763,
+ "id": 4847,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4764,
+ "id": 4848,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4765,
+ "id": 4849,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4766,
+ "id": 4850,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4767,
+ "id": 4851,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4768,
+ "id": 4852,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4769,
+ "id": 4853,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -158392,20 +158477,20 @@
},
"states": [
{
- "id": 189,
+ "id": 201,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 190,
+ "id": 202,
"properties": {
"axis": "y"
}
},
{
- "id": 191,
+ "id": 203,
"properties": {
"axis": "z"
}
@@ -158433,35 +158518,35 @@
},
"states": [
{
- "id": 12550,
+ "id": 13019,
"properties": {
"facing": "north",
"powered": "true"
}
},
{
- "id": 12551,
+ "id": 13020,
"properties": {
"facing": "north",
"powered": "false"
}
},
{
- "id": 12552,
+ "id": 13021,
"properties": {
"facing": "east",
"powered": "true"
}
},
{
- "id": 12553,
+ "id": 13022,
"properties": {
"facing": "east",
"powered": "false"
}
},
{
- "id": 12554,
+ "id": 13023,
"properties": {
"facing": "south",
"powered": "true"
@@ -158469,49 +158554,49 @@
},
{
"default": true,
- "id": 12555,
+ "id": 13024,
"properties": {
"facing": "south",
"powered": "false"
}
},
{
- "id": 12556,
+ "id": 13025,
"properties": {
"facing": "west",
"powered": "true"
}
},
{
- "id": 12557,
+ "id": 13026,
"properties": {
"facing": "west",
"powered": "false"
}
},
{
- "id": 12558,
+ "id": 13027,
"properties": {
"facing": "up",
"powered": "true"
}
},
{
- "id": 12559,
+ "id": 13028,
"properties": {
"facing": "up",
"powered": "false"
}
},
{
- "id": 12560,
+ "id": 13029,
"properties": {
"facing": "down",
"powered": "true"
}
},
{
- "id": 12561,
+ "id": 13030,
"properties": {
"facing": "down",
"powered": "false"
@@ -158527,7 +158612,7 @@
"states": [
{
"default": true,
- "id": 2354
+ "id": 2397
}
]
},
@@ -158545,20 +158630,20 @@
},
"states": [
{
- "id": 26563,
+ "id": 27032,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 26564,
+ "id": 27033,
"properties": {
"axis": "y"
}
},
{
- "id": 26565,
+ "id": 27034,
"properties": {
"axis": "z"
}
@@ -158594,97 +158679,97 @@
"states": [
{
"default": true,
- "id": 10775,
+ "id": 11110,
"properties": {
"rotation": "0"
}
},
{
- "id": 10776,
+ "id": 11111,
"properties": {
"rotation": "1"
}
},
{
- "id": 10777,
+ "id": 11112,
"properties": {
"rotation": "2"
}
},
{
- "id": 10778,
+ "id": 11113,
"properties": {
"rotation": "3"
}
},
{
- "id": 10779,
+ "id": 11114,
"properties": {
"rotation": "4"
}
},
{
- "id": 10780,
+ "id": 11115,
"properties": {
"rotation": "5"
}
},
{
- "id": 10781,
+ "id": 11116,
"properties": {
"rotation": "6"
}
},
{
- "id": 10782,
+ "id": 11117,
"properties": {
"rotation": "7"
}
},
{
- "id": 10783,
+ "id": 11118,
"properties": {
"rotation": "8"
}
},
{
- "id": 10784,
+ "id": 11119,
"properties": {
"rotation": "9"
}
},
{
- "id": 10785,
+ "id": 11120,
"properties": {
"rotation": "10"
}
},
{
- "id": 10786,
+ "id": 11121,
"properties": {
"rotation": "11"
}
},
{
- "id": 10787,
+ "id": 11122,
"properties": {
"rotation": "12"
}
},
{
- "id": 10788,
+ "id": 11123,
"properties": {
"rotation": "13"
}
},
{
- "id": 10789,
+ "id": 11124,
"properties": {
"rotation": "14"
}
},
{
- "id": 10790,
+ "id": 11125,
"properties": {
"rotation": "15"
}
@@ -158715,7 +158800,7 @@
},
"states": [
{
- "id": 1704,
+ "id": 1747,
"properties": {
"facing": "north",
"occupied": "true",
@@ -158723,7 +158808,7 @@
}
},
{
- "id": 1705,
+ "id": 1748,
"properties": {
"facing": "north",
"occupied": "true",
@@ -158731,7 +158816,7 @@
}
},
{
- "id": 1706,
+ "id": 1749,
"properties": {
"facing": "north",
"occupied": "false",
@@ -158740,7 +158825,7 @@
},
{
"default": true,
- "id": 1707,
+ "id": 1750,
"properties": {
"facing": "north",
"occupied": "false",
@@ -158748,7 +158833,7 @@
}
},
{
- "id": 1708,
+ "id": 1751,
"properties": {
"facing": "south",
"occupied": "true",
@@ -158756,7 +158841,7 @@
}
},
{
- "id": 1709,
+ "id": 1752,
"properties": {
"facing": "south",
"occupied": "true",
@@ -158764,7 +158849,7 @@
}
},
{
- "id": 1710,
+ "id": 1753,
"properties": {
"facing": "south",
"occupied": "false",
@@ -158772,7 +158857,7 @@
}
},
{
- "id": 1711,
+ "id": 1754,
"properties": {
"facing": "south",
"occupied": "false",
@@ -158780,7 +158865,7 @@
}
},
{
- "id": 1712,
+ "id": 1755,
"properties": {
"facing": "west",
"occupied": "true",
@@ -158788,7 +158873,7 @@
}
},
{
- "id": 1713,
+ "id": 1756,
"properties": {
"facing": "west",
"occupied": "true",
@@ -158796,7 +158881,7 @@
}
},
{
- "id": 1714,
+ "id": 1757,
"properties": {
"facing": "west",
"occupied": "false",
@@ -158804,7 +158889,7 @@
}
},
{
- "id": 1715,
+ "id": 1758,
"properties": {
"facing": "west",
"occupied": "false",
@@ -158812,7 +158897,7 @@
}
},
{
- "id": 1716,
+ "id": 1759,
"properties": {
"facing": "east",
"occupied": "true",
@@ -158820,7 +158905,7 @@
}
},
{
- "id": 1717,
+ "id": 1760,
"properties": {
"facing": "east",
"occupied": "true",
@@ -158828,7 +158913,7 @@
}
},
{
- "id": 1718,
+ "id": 1761,
"properties": {
"facing": "east",
"occupied": "false",
@@ -158836,7 +158921,7 @@
}
},
{
- "id": 1719,
+ "id": 1762,
"properties": {
"facing": "east",
"occupied": "false",
@@ -158868,7 +158953,7 @@
},
"states": [
{
- "id": 20757,
+ "id": 21226,
"properties": {
"candles": "1",
"lit": "true",
@@ -158876,7 +158961,7 @@
}
},
{
- "id": 20758,
+ "id": 21227,
"properties": {
"candles": "1",
"lit": "true",
@@ -158884,7 +158969,7 @@
}
},
{
- "id": 20759,
+ "id": 21228,
"properties": {
"candles": "1",
"lit": "false",
@@ -158893,7 +158978,7 @@
},
{
"default": true,
- "id": 20760,
+ "id": 21229,
"properties": {
"candles": "1",
"lit": "false",
@@ -158901,7 +158986,7 @@
}
},
{
- "id": 20761,
+ "id": 21230,
"properties": {
"candles": "2",
"lit": "true",
@@ -158909,7 +158994,7 @@
}
},
{
- "id": 20762,
+ "id": 21231,
"properties": {
"candles": "2",
"lit": "true",
@@ -158917,7 +159002,7 @@
}
},
{
- "id": 20763,
+ "id": 21232,
"properties": {
"candles": "2",
"lit": "false",
@@ -158925,7 +159010,7 @@
}
},
{
- "id": 20764,
+ "id": 21233,
"properties": {
"candles": "2",
"lit": "false",
@@ -158933,7 +159018,7 @@
}
},
{
- "id": 20765,
+ "id": 21234,
"properties": {
"candles": "3",
"lit": "true",
@@ -158941,7 +159026,7 @@
}
},
{
- "id": 20766,
+ "id": 21235,
"properties": {
"candles": "3",
"lit": "true",
@@ -158949,7 +159034,7 @@
}
},
{
- "id": 20767,
+ "id": 21236,
"properties": {
"candles": "3",
"lit": "false",
@@ -158957,7 +159042,7 @@
}
},
{
- "id": 20768,
+ "id": 21237,
"properties": {
"candles": "3",
"lit": "false",
@@ -158965,7 +159050,7 @@
}
},
{
- "id": 20769,
+ "id": 21238,
"properties": {
"candles": "4",
"lit": "true",
@@ -158973,7 +159058,7 @@
}
},
{
- "id": 20770,
+ "id": 21239,
"properties": {
"candles": "4",
"lit": "true",
@@ -158981,7 +159066,7 @@
}
},
{
- "id": 20771,
+ "id": 21240,
"properties": {
"candles": "4",
"lit": "false",
@@ -158989,7 +159074,7 @@
}
},
{
- "id": 20772,
+ "id": 21241,
"properties": {
"candles": "4",
"lit": "false",
@@ -159012,14 +159097,14 @@
},
"states": [
{
- "id": 21001,
+ "id": 21470,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 21002,
+ "id": 21471,
"properties": {
"lit": "false"
}
@@ -159035,7 +159120,7 @@
"states": [
{
"default": true,
- "id": 10729
+ "id": 11064
}
]
},
@@ -159047,7 +159132,7 @@
"states": [
{
"default": true,
- "id": 12729
+ "id": 13198
}
]
},
@@ -159060,7 +159145,7 @@
"states": [
{
"default": true,
- "id": 12745
+ "id": 13214
}
]
},
@@ -159080,25 +159165,25 @@
"states": [
{
"default": true,
- "id": 12668,
+ "id": 13137,
"properties": {
"facing": "north"
}
},
{
- "id": 12669,
+ "id": 13138,
"properties": {
"facing": "south"
}
},
{
- "id": 12670,
+ "id": 13139,
"properties": {
"facing": "west"
}
},
{
- "id": 12671,
+ "id": 13140,
"properties": {
"facing": "east"
}
@@ -159123,38 +159208,38 @@
},
"states": [
{
- "id": 12574,
+ "id": 13043,
"properties": {
"facing": "north"
}
},
{
- "id": 12575,
+ "id": 13044,
"properties": {
"facing": "east"
}
},
{
- "id": 12576,
+ "id": 13045,
"properties": {
"facing": "south"
}
},
{
- "id": 12577,
+ "id": 13046,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12578,
+ "id": 13047,
"properties": {
"facing": "up"
}
},
{
- "id": 12579,
+ "id": 13048,
"properties": {
"facing": "down"
}
@@ -159170,7 +159255,7 @@
"states": [
{
"default": true,
- "id": 5946
+ "id": 6112
}
]
},
@@ -159204,7 +159289,7 @@
},
"states": [
{
- "id": 9404,
+ "id": 9659,
"properties": {
"east": "true",
"north": "true",
@@ -159214,7 +159299,7 @@
}
},
{
- "id": 9405,
+ "id": 9660,
"properties": {
"east": "true",
"north": "true",
@@ -159224,7 +159309,7 @@
}
},
{
- "id": 9406,
+ "id": 9661,
"properties": {
"east": "true",
"north": "true",
@@ -159234,7 +159319,7 @@
}
},
{
- "id": 9407,
+ "id": 9662,
"properties": {
"east": "true",
"north": "true",
@@ -159244,7 +159329,7 @@
}
},
{
- "id": 9408,
+ "id": 9663,
"properties": {
"east": "true",
"north": "true",
@@ -159254,7 +159339,7 @@
}
},
{
- "id": 9409,
+ "id": 9664,
"properties": {
"east": "true",
"north": "true",
@@ -159264,7 +159349,7 @@
}
},
{
- "id": 9410,
+ "id": 9665,
"properties": {
"east": "true",
"north": "true",
@@ -159274,7 +159359,7 @@
}
},
{
- "id": 9411,
+ "id": 9666,
"properties": {
"east": "true",
"north": "true",
@@ -159284,7 +159369,7 @@
}
},
{
- "id": 9412,
+ "id": 9667,
"properties": {
"east": "true",
"north": "false",
@@ -159294,7 +159379,7 @@
}
},
{
- "id": 9413,
+ "id": 9668,
"properties": {
"east": "true",
"north": "false",
@@ -159304,7 +159389,7 @@
}
},
{
- "id": 9414,
+ "id": 9669,
"properties": {
"east": "true",
"north": "false",
@@ -159314,7 +159399,7 @@
}
},
{
- "id": 9415,
+ "id": 9670,
"properties": {
"east": "true",
"north": "false",
@@ -159324,7 +159409,7 @@
}
},
{
- "id": 9416,
+ "id": 9671,
"properties": {
"east": "true",
"north": "false",
@@ -159334,7 +159419,7 @@
}
},
{
- "id": 9417,
+ "id": 9672,
"properties": {
"east": "true",
"north": "false",
@@ -159344,7 +159429,7 @@
}
},
{
- "id": 9418,
+ "id": 9673,
"properties": {
"east": "true",
"north": "false",
@@ -159354,7 +159439,7 @@
}
},
{
- "id": 9419,
+ "id": 9674,
"properties": {
"east": "true",
"north": "false",
@@ -159364,7 +159449,7 @@
}
},
{
- "id": 9420,
+ "id": 9675,
"properties": {
"east": "false",
"north": "true",
@@ -159374,7 +159459,7 @@
}
},
{
- "id": 9421,
+ "id": 9676,
"properties": {
"east": "false",
"north": "true",
@@ -159384,7 +159469,7 @@
}
},
{
- "id": 9422,
+ "id": 9677,
"properties": {
"east": "false",
"north": "true",
@@ -159394,7 +159479,7 @@
}
},
{
- "id": 9423,
+ "id": 9678,
"properties": {
"east": "false",
"north": "true",
@@ -159404,7 +159489,7 @@
}
},
{
- "id": 9424,
+ "id": 9679,
"properties": {
"east": "false",
"north": "true",
@@ -159414,7 +159499,7 @@
}
},
{
- "id": 9425,
+ "id": 9680,
"properties": {
"east": "false",
"north": "true",
@@ -159424,7 +159509,7 @@
}
},
{
- "id": 9426,
+ "id": 9681,
"properties": {
"east": "false",
"north": "true",
@@ -159434,7 +159519,7 @@
}
},
{
- "id": 9427,
+ "id": 9682,
"properties": {
"east": "false",
"north": "true",
@@ -159444,7 +159529,7 @@
}
},
{
- "id": 9428,
+ "id": 9683,
"properties": {
"east": "false",
"north": "false",
@@ -159454,7 +159539,7 @@
}
},
{
- "id": 9429,
+ "id": 9684,
"properties": {
"east": "false",
"north": "false",
@@ -159464,7 +159549,7 @@
}
},
{
- "id": 9430,
+ "id": 9685,
"properties": {
"east": "false",
"north": "false",
@@ -159474,7 +159559,7 @@
}
},
{
- "id": 9431,
+ "id": 9686,
"properties": {
"east": "false",
"north": "false",
@@ -159484,7 +159569,7 @@
}
},
{
- "id": 9432,
+ "id": 9687,
"properties": {
"east": "false",
"north": "false",
@@ -159494,7 +159579,7 @@
}
},
{
- "id": 9433,
+ "id": 9688,
"properties": {
"east": "false",
"north": "false",
@@ -159504,7 +159589,7 @@
}
},
{
- "id": 9434,
+ "id": 9689,
"properties": {
"east": "false",
"north": "false",
@@ -159515,7 +159600,7 @@
},
{
"default": true,
- "id": 9435,
+ "id": 9690,
"properties": {
"east": "false",
"north": "false",
@@ -159534,7 +159619,7 @@
"states": [
{
"default": true,
- "id": 9357
+ "id": 9612
}
]
},
@@ -159552,7 +159637,7 @@
"states": [
{
"default": true,
- "id": 2082
+ "id": 2125
}
]
},
@@ -159573,25 +159658,25 @@
"states": [
{
"default": true,
- "id": 11019,
+ "id": 11354,
"properties": {
"facing": "north"
}
},
{
- "id": 11020,
+ "id": 11355,
"properties": {
"facing": "south"
}
},
{
- "id": 11021,
+ "id": 11356,
"properties": {
"facing": "west"
}
},
{
- "id": 11022,
+ "id": 11357,
"properties": {
"facing": "east"
}
@@ -159606,7 +159691,7 @@
"states": [
{
"default": true,
- "id": 2048
+ "id": 2091
}
]
},
@@ -159623,7 +159708,7 @@
"states": [
{
"default": true,
- "id": 2085
+ "id": 2128
}
]
},
@@ -159636,7 +159721,7 @@
"states": [
{
"default": true,
- "id": 22948
+ "id": 23417
}
]
},
@@ -159649,7 +159734,7 @@
"states": [
{
"default": true,
- "id": 22941
+ "id": 23410
}
]
},
@@ -159671,21 +159756,21 @@
},
"states": [
{
- "id": 24704,
+ "id": 25173,
"properties": {
"lit": "true",
"powered": "true"
}
},
{
- "id": 24705,
+ "id": 25174,
"properties": {
"lit": "true",
"powered": "false"
}
},
{
- "id": 24706,
+ "id": 25175,
"properties": {
"lit": "false",
"powered": "true"
@@ -159693,7 +159778,7 @@
},
{
"default": true,
- "id": 24707,
+ "id": 25176,
"properties": {
"lit": "false",
"powered": "false"
@@ -159734,7 +159819,7 @@
},
"states": [
{
- "id": 23780,
+ "id": 24249,
"properties": {
"facing": "north",
"half": "upper",
@@ -159744,7 +159829,7 @@
}
},
{
- "id": 23781,
+ "id": 24250,
"properties": {
"facing": "north",
"half": "upper",
@@ -159754,7 +159839,7 @@
}
},
{
- "id": 23782,
+ "id": 24251,
"properties": {
"facing": "north",
"half": "upper",
@@ -159764,7 +159849,7 @@
}
},
{
- "id": 23783,
+ "id": 24252,
"properties": {
"facing": "north",
"half": "upper",
@@ -159774,7 +159859,7 @@
}
},
{
- "id": 23784,
+ "id": 24253,
"properties": {
"facing": "north",
"half": "upper",
@@ -159784,7 +159869,7 @@
}
},
{
- "id": 23785,
+ "id": 24254,
"properties": {
"facing": "north",
"half": "upper",
@@ -159794,7 +159879,7 @@
}
},
{
- "id": 23786,
+ "id": 24255,
"properties": {
"facing": "north",
"half": "upper",
@@ -159804,7 +159889,7 @@
}
},
{
- "id": 23787,
+ "id": 24256,
"properties": {
"facing": "north",
"half": "upper",
@@ -159814,7 +159899,7 @@
}
},
{
- "id": 23788,
+ "id": 24257,
"properties": {
"facing": "north",
"half": "lower",
@@ -159824,7 +159909,7 @@
}
},
{
- "id": 23789,
+ "id": 24258,
"properties": {
"facing": "north",
"half": "lower",
@@ -159834,7 +159919,7 @@
}
},
{
- "id": 23790,
+ "id": 24259,
"properties": {
"facing": "north",
"half": "lower",
@@ -159845,7 +159930,7 @@
},
{
"default": true,
- "id": 23791,
+ "id": 24260,
"properties": {
"facing": "north",
"half": "lower",
@@ -159855,7 +159940,7 @@
}
},
{
- "id": 23792,
+ "id": 24261,
"properties": {
"facing": "north",
"half": "lower",
@@ -159865,7 +159950,7 @@
}
},
{
- "id": 23793,
+ "id": 24262,
"properties": {
"facing": "north",
"half": "lower",
@@ -159875,7 +159960,7 @@
}
},
{
- "id": 23794,
+ "id": 24263,
"properties": {
"facing": "north",
"half": "lower",
@@ -159885,7 +159970,7 @@
}
},
{
- "id": 23795,
+ "id": 24264,
"properties": {
"facing": "north",
"half": "lower",
@@ -159895,7 +159980,7 @@
}
},
{
- "id": 23796,
+ "id": 24265,
"properties": {
"facing": "south",
"half": "upper",
@@ -159905,7 +159990,7 @@
}
},
{
- "id": 23797,
+ "id": 24266,
"properties": {
"facing": "south",
"half": "upper",
@@ -159915,7 +160000,7 @@
}
},
{
- "id": 23798,
+ "id": 24267,
"properties": {
"facing": "south",
"half": "upper",
@@ -159925,7 +160010,7 @@
}
},
{
- "id": 23799,
+ "id": 24268,
"properties": {
"facing": "south",
"half": "upper",
@@ -159935,7 +160020,7 @@
}
},
{
- "id": 23800,
+ "id": 24269,
"properties": {
"facing": "south",
"half": "upper",
@@ -159945,7 +160030,7 @@
}
},
{
- "id": 23801,
+ "id": 24270,
"properties": {
"facing": "south",
"half": "upper",
@@ -159955,7 +160040,7 @@
}
},
{
- "id": 23802,
+ "id": 24271,
"properties": {
"facing": "south",
"half": "upper",
@@ -159965,7 +160050,7 @@
}
},
{
- "id": 23803,
+ "id": 24272,
"properties": {
"facing": "south",
"half": "upper",
@@ -159975,7 +160060,7 @@
}
},
{
- "id": 23804,
+ "id": 24273,
"properties": {
"facing": "south",
"half": "lower",
@@ -159985,7 +160070,7 @@
}
},
{
- "id": 23805,
+ "id": 24274,
"properties": {
"facing": "south",
"half": "lower",
@@ -159995,7 +160080,7 @@
}
},
{
- "id": 23806,
+ "id": 24275,
"properties": {
"facing": "south",
"half": "lower",
@@ -160005,7 +160090,7 @@
}
},
{
- "id": 23807,
+ "id": 24276,
"properties": {
"facing": "south",
"half": "lower",
@@ -160015,7 +160100,7 @@
}
},
{
- "id": 23808,
+ "id": 24277,
"properties": {
"facing": "south",
"half": "lower",
@@ -160025,7 +160110,7 @@
}
},
{
- "id": 23809,
+ "id": 24278,
"properties": {
"facing": "south",
"half": "lower",
@@ -160035,7 +160120,7 @@
}
},
{
- "id": 23810,
+ "id": 24279,
"properties": {
"facing": "south",
"half": "lower",
@@ -160045,7 +160130,7 @@
}
},
{
- "id": 23811,
+ "id": 24280,
"properties": {
"facing": "south",
"half": "lower",
@@ -160055,7 +160140,7 @@
}
},
{
- "id": 23812,
+ "id": 24281,
"properties": {
"facing": "west",
"half": "upper",
@@ -160065,7 +160150,7 @@
}
},
{
- "id": 23813,
+ "id": 24282,
"properties": {
"facing": "west",
"half": "upper",
@@ -160075,7 +160160,7 @@
}
},
{
- "id": 23814,
+ "id": 24283,
"properties": {
"facing": "west",
"half": "upper",
@@ -160085,7 +160170,7 @@
}
},
{
- "id": 23815,
+ "id": 24284,
"properties": {
"facing": "west",
"half": "upper",
@@ -160095,7 +160180,7 @@
}
},
{
- "id": 23816,
+ "id": 24285,
"properties": {
"facing": "west",
"half": "upper",
@@ -160105,7 +160190,7 @@
}
},
{
- "id": 23817,
+ "id": 24286,
"properties": {
"facing": "west",
"half": "upper",
@@ -160115,7 +160200,7 @@
}
},
{
- "id": 23818,
+ "id": 24287,
"properties": {
"facing": "west",
"half": "upper",
@@ -160125,7 +160210,7 @@
}
},
{
- "id": 23819,
+ "id": 24288,
"properties": {
"facing": "west",
"half": "upper",
@@ -160135,7 +160220,7 @@
}
},
{
- "id": 23820,
+ "id": 24289,
"properties": {
"facing": "west",
"half": "lower",
@@ -160145,7 +160230,7 @@
}
},
{
- "id": 23821,
+ "id": 24290,
"properties": {
"facing": "west",
"half": "lower",
@@ -160155,7 +160240,7 @@
}
},
{
- "id": 23822,
+ "id": 24291,
"properties": {
"facing": "west",
"half": "lower",
@@ -160165,7 +160250,7 @@
}
},
{
- "id": 23823,
+ "id": 24292,
"properties": {
"facing": "west",
"half": "lower",
@@ -160175,7 +160260,7 @@
}
},
{
- "id": 23824,
+ "id": 24293,
"properties": {
"facing": "west",
"half": "lower",
@@ -160185,7 +160270,7 @@
}
},
{
- "id": 23825,
+ "id": 24294,
"properties": {
"facing": "west",
"half": "lower",
@@ -160195,7 +160280,7 @@
}
},
{
- "id": 23826,
+ "id": 24295,
"properties": {
"facing": "west",
"half": "lower",
@@ -160205,7 +160290,7 @@
}
},
{
- "id": 23827,
+ "id": 24296,
"properties": {
"facing": "west",
"half": "lower",
@@ -160215,7 +160300,7 @@
}
},
{
- "id": 23828,
+ "id": 24297,
"properties": {
"facing": "east",
"half": "upper",
@@ -160225,7 +160310,7 @@
}
},
{
- "id": 23829,
+ "id": 24298,
"properties": {
"facing": "east",
"half": "upper",
@@ -160235,7 +160320,7 @@
}
},
{
- "id": 23830,
+ "id": 24299,
"properties": {
"facing": "east",
"half": "upper",
@@ -160245,7 +160330,7 @@
}
},
{
- "id": 23831,
+ "id": 24300,
"properties": {
"facing": "east",
"half": "upper",
@@ -160255,7 +160340,7 @@
}
},
{
- "id": 23832,
+ "id": 24301,
"properties": {
"facing": "east",
"half": "upper",
@@ -160265,7 +160350,7 @@
}
},
{
- "id": 23833,
+ "id": 24302,
"properties": {
"facing": "east",
"half": "upper",
@@ -160275,7 +160360,7 @@
}
},
{
- "id": 23834,
+ "id": 24303,
"properties": {
"facing": "east",
"half": "upper",
@@ -160285,7 +160370,7 @@
}
},
{
- "id": 23835,
+ "id": 24304,
"properties": {
"facing": "east",
"half": "upper",
@@ -160295,7 +160380,7 @@
}
},
{
- "id": 23836,
+ "id": 24305,
"properties": {
"facing": "east",
"half": "lower",
@@ -160305,7 +160390,7 @@
}
},
{
- "id": 23837,
+ "id": 24306,
"properties": {
"facing": "east",
"half": "lower",
@@ -160315,7 +160400,7 @@
}
},
{
- "id": 23838,
+ "id": 24307,
"properties": {
"facing": "east",
"half": "lower",
@@ -160325,7 +160410,7 @@
}
},
{
- "id": 23839,
+ "id": 24308,
"properties": {
"facing": "east",
"half": "lower",
@@ -160335,7 +160420,7 @@
}
},
{
- "id": 23840,
+ "id": 24309,
"properties": {
"facing": "east",
"half": "lower",
@@ -160345,7 +160430,7 @@
}
},
{
- "id": 23841,
+ "id": 24310,
"properties": {
"facing": "east",
"half": "lower",
@@ -160355,7 +160440,7 @@
}
},
{
- "id": 23842,
+ "id": 24311,
"properties": {
"facing": "east",
"half": "lower",
@@ -160365,7 +160450,7 @@
}
},
{
- "id": 23843,
+ "id": 24312,
"properties": {
"facing": "east",
"half": "lower",
@@ -160390,14 +160475,14 @@
},
"states": [
{
- "id": 24682,
+ "id": 25151,
"properties": {
"waterlogged": "true"
}
},
{
"default": true,
- "id": 24683,
+ "id": 25152,
"properties": {
"waterlogged": "false"
}
@@ -160437,7 +160522,7 @@
},
"states": [
{
- "id": 24292,
+ "id": 24761,
"properties": {
"facing": "north",
"half": "top",
@@ -160447,7 +160532,7 @@
}
},
{
- "id": 24293,
+ "id": 24762,
"properties": {
"facing": "north",
"half": "top",
@@ -160457,7 +160542,7 @@
}
},
{
- "id": 24294,
+ "id": 24763,
"properties": {
"facing": "north",
"half": "top",
@@ -160467,7 +160552,7 @@
}
},
{
- "id": 24295,
+ "id": 24764,
"properties": {
"facing": "north",
"half": "top",
@@ -160477,7 +160562,7 @@
}
},
{
- "id": 24296,
+ "id": 24765,
"properties": {
"facing": "north",
"half": "top",
@@ -160487,7 +160572,7 @@
}
},
{
- "id": 24297,
+ "id": 24766,
"properties": {
"facing": "north",
"half": "top",
@@ -160497,7 +160582,7 @@
}
},
{
- "id": 24298,
+ "id": 24767,
"properties": {
"facing": "north",
"half": "top",
@@ -160507,7 +160592,7 @@
}
},
{
- "id": 24299,
+ "id": 24768,
"properties": {
"facing": "north",
"half": "top",
@@ -160517,7 +160602,7 @@
}
},
{
- "id": 24300,
+ "id": 24769,
"properties": {
"facing": "north",
"half": "bottom",
@@ -160527,7 +160612,7 @@
}
},
{
- "id": 24301,
+ "id": 24770,
"properties": {
"facing": "north",
"half": "bottom",
@@ -160537,7 +160622,7 @@
}
},
{
- "id": 24302,
+ "id": 24771,
"properties": {
"facing": "north",
"half": "bottom",
@@ -160547,7 +160632,7 @@
}
},
{
- "id": 24303,
+ "id": 24772,
"properties": {
"facing": "north",
"half": "bottom",
@@ -160557,7 +160642,7 @@
}
},
{
- "id": 24304,
+ "id": 24773,
"properties": {
"facing": "north",
"half": "bottom",
@@ -160567,7 +160652,7 @@
}
},
{
- "id": 24305,
+ "id": 24774,
"properties": {
"facing": "north",
"half": "bottom",
@@ -160577,7 +160662,7 @@
}
},
{
- "id": 24306,
+ "id": 24775,
"properties": {
"facing": "north",
"half": "bottom",
@@ -160588,7 +160673,7 @@
},
{
"default": true,
- "id": 24307,
+ "id": 24776,
"properties": {
"facing": "north",
"half": "bottom",
@@ -160598,7 +160683,7 @@
}
},
{
- "id": 24308,
+ "id": 24777,
"properties": {
"facing": "south",
"half": "top",
@@ -160608,7 +160693,7 @@
}
},
{
- "id": 24309,
+ "id": 24778,
"properties": {
"facing": "south",
"half": "top",
@@ -160618,7 +160703,7 @@
}
},
{
- "id": 24310,
+ "id": 24779,
"properties": {
"facing": "south",
"half": "top",
@@ -160628,7 +160713,7 @@
}
},
{
- "id": 24311,
+ "id": 24780,
"properties": {
"facing": "south",
"half": "top",
@@ -160638,7 +160723,7 @@
}
},
{
- "id": 24312,
+ "id": 24781,
"properties": {
"facing": "south",
"half": "top",
@@ -160648,7 +160733,7 @@
}
},
{
- "id": 24313,
+ "id": 24782,
"properties": {
"facing": "south",
"half": "top",
@@ -160658,7 +160743,7 @@
}
},
{
- "id": 24314,
+ "id": 24783,
"properties": {
"facing": "south",
"half": "top",
@@ -160668,7 +160753,7 @@
}
},
{
- "id": 24315,
+ "id": 24784,
"properties": {
"facing": "south",
"half": "top",
@@ -160678,7 +160763,7 @@
}
},
{
- "id": 24316,
+ "id": 24785,
"properties": {
"facing": "south",
"half": "bottom",
@@ -160688,7 +160773,7 @@
}
},
{
- "id": 24317,
+ "id": 24786,
"properties": {
"facing": "south",
"half": "bottom",
@@ -160698,7 +160783,7 @@
}
},
{
- "id": 24318,
+ "id": 24787,
"properties": {
"facing": "south",
"half": "bottom",
@@ -160708,7 +160793,7 @@
}
},
{
- "id": 24319,
+ "id": 24788,
"properties": {
"facing": "south",
"half": "bottom",
@@ -160718,7 +160803,7 @@
}
},
{
- "id": 24320,
+ "id": 24789,
"properties": {
"facing": "south",
"half": "bottom",
@@ -160728,7 +160813,7 @@
}
},
{
- "id": 24321,
+ "id": 24790,
"properties": {
"facing": "south",
"half": "bottom",
@@ -160738,7 +160823,7 @@
}
},
{
- "id": 24322,
+ "id": 24791,
"properties": {
"facing": "south",
"half": "bottom",
@@ -160748,7 +160833,7 @@
}
},
{
- "id": 24323,
+ "id": 24792,
"properties": {
"facing": "south",
"half": "bottom",
@@ -160758,7 +160843,7 @@
}
},
{
- "id": 24324,
+ "id": 24793,
"properties": {
"facing": "west",
"half": "top",
@@ -160768,7 +160853,7 @@
}
},
{
- "id": 24325,
+ "id": 24794,
"properties": {
"facing": "west",
"half": "top",
@@ -160778,7 +160863,7 @@
}
},
{
- "id": 24326,
+ "id": 24795,
"properties": {
"facing": "west",
"half": "top",
@@ -160788,7 +160873,7 @@
}
},
{
- "id": 24327,
+ "id": 24796,
"properties": {
"facing": "west",
"half": "top",
@@ -160798,7 +160883,7 @@
}
},
{
- "id": 24328,
+ "id": 24797,
"properties": {
"facing": "west",
"half": "top",
@@ -160808,7 +160893,7 @@
}
},
{
- "id": 24329,
+ "id": 24798,
"properties": {
"facing": "west",
"half": "top",
@@ -160818,7 +160903,7 @@
}
},
{
- "id": 24330,
+ "id": 24799,
"properties": {
"facing": "west",
"half": "top",
@@ -160828,7 +160913,7 @@
}
},
{
- "id": 24331,
+ "id": 24800,
"properties": {
"facing": "west",
"half": "top",
@@ -160838,7 +160923,7 @@
}
},
{
- "id": 24332,
+ "id": 24801,
"properties": {
"facing": "west",
"half": "bottom",
@@ -160848,7 +160933,7 @@
}
},
{
- "id": 24333,
+ "id": 24802,
"properties": {
"facing": "west",
"half": "bottom",
@@ -160858,7 +160943,7 @@
}
},
{
- "id": 24334,
+ "id": 24803,
"properties": {
"facing": "west",
"half": "bottom",
@@ -160868,7 +160953,7 @@
}
},
{
- "id": 24335,
+ "id": 24804,
"properties": {
"facing": "west",
"half": "bottom",
@@ -160878,7 +160963,7 @@
}
},
{
- "id": 24336,
+ "id": 24805,
"properties": {
"facing": "west",
"half": "bottom",
@@ -160888,7 +160973,7 @@
}
},
{
- "id": 24337,
+ "id": 24806,
"properties": {
"facing": "west",
"half": "bottom",
@@ -160898,7 +160983,7 @@
}
},
{
- "id": 24338,
+ "id": 24807,
"properties": {
"facing": "west",
"half": "bottom",
@@ -160908,7 +160993,7 @@
}
},
{
- "id": 24339,
+ "id": 24808,
"properties": {
"facing": "west",
"half": "bottom",
@@ -160918,7 +161003,7 @@
}
},
{
- "id": 24340,
+ "id": 24809,
"properties": {
"facing": "east",
"half": "top",
@@ -160928,7 +161013,7 @@
}
},
{
- "id": 24341,
+ "id": 24810,
"properties": {
"facing": "east",
"half": "top",
@@ -160938,7 +161023,7 @@
}
},
{
- "id": 24342,
+ "id": 24811,
"properties": {
"facing": "east",
"half": "top",
@@ -160948,7 +161033,7 @@
}
},
{
- "id": 24343,
+ "id": 24812,
"properties": {
"facing": "east",
"half": "top",
@@ -160958,7 +161043,7 @@
}
},
{
- "id": 24344,
+ "id": 24813,
"properties": {
"facing": "east",
"half": "top",
@@ -160968,7 +161053,7 @@
}
},
{
- "id": 24345,
+ "id": 24814,
"properties": {
"facing": "east",
"half": "top",
@@ -160978,7 +161063,7 @@
}
},
{
- "id": 24346,
+ "id": 24815,
"properties": {
"facing": "east",
"half": "top",
@@ -160988,7 +161073,7 @@
}
},
{
- "id": 24347,
+ "id": 24816,
"properties": {
"facing": "east",
"half": "top",
@@ -160998,7 +161083,7 @@
}
},
{
- "id": 24348,
+ "id": 24817,
"properties": {
"facing": "east",
"half": "bottom",
@@ -161008,7 +161093,7 @@
}
},
{
- "id": 24349,
+ "id": 24818,
"properties": {
"facing": "east",
"half": "bottom",
@@ -161018,7 +161103,7 @@
}
},
{
- "id": 24350,
+ "id": 24819,
"properties": {
"facing": "east",
"half": "bottom",
@@ -161028,7 +161113,7 @@
}
},
{
- "id": 24351,
+ "id": 24820,
"properties": {
"facing": "east",
"half": "bottom",
@@ -161038,7 +161123,7 @@
}
},
{
- "id": 24352,
+ "id": 24821,
"properties": {
"facing": "east",
"half": "bottom",
@@ -161048,7 +161133,7 @@
}
},
{
- "id": 24353,
+ "id": 24822,
"properties": {
"facing": "east",
"half": "bottom",
@@ -161058,7 +161143,7 @@
}
},
{
- "id": 24354,
+ "id": 24823,
"properties": {
"facing": "east",
"half": "bottom",
@@ -161068,7 +161153,7 @@
}
},
{
- "id": 24355,
+ "id": 24824,
"properties": {
"facing": "east",
"half": "bottom",
@@ -161088,7 +161173,7 @@
"states": [
{
"default": true,
- "id": 22944
+ "id": 23413
}
]
},
@@ -161111,21 +161196,21 @@
},
"states": [
{
- "id": 23276,
+ "id": 23745,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 23277,
+ "id": 23746,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 23278,
+ "id": 23747,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -161133,21 +161218,21 @@
},
{
"default": true,
- "id": 23279,
+ "id": 23748,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 23280,
+ "id": 23749,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 23281,
+ "id": 23750,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -161189,7 +161274,7 @@
},
"states": [
{
- "id": 22956,
+ "id": 23425,
"properties": {
"facing": "north",
"half": "top",
@@ -161198,7 +161283,7 @@
}
},
{
- "id": 22957,
+ "id": 23426,
"properties": {
"facing": "north",
"half": "top",
@@ -161207,7 +161292,7 @@
}
},
{
- "id": 22958,
+ "id": 23427,
"properties": {
"facing": "north",
"half": "top",
@@ -161216,7 +161301,7 @@
}
},
{
- "id": 22959,
+ "id": 23428,
"properties": {
"facing": "north",
"half": "top",
@@ -161225,7 +161310,7 @@
}
},
{
- "id": 22960,
+ "id": 23429,
"properties": {
"facing": "north",
"half": "top",
@@ -161234,7 +161319,7 @@
}
},
{
- "id": 22961,
+ "id": 23430,
"properties": {
"facing": "north",
"half": "top",
@@ -161243,7 +161328,7 @@
}
},
{
- "id": 22962,
+ "id": 23431,
"properties": {
"facing": "north",
"half": "top",
@@ -161252,7 +161337,7 @@
}
},
{
- "id": 22963,
+ "id": 23432,
"properties": {
"facing": "north",
"half": "top",
@@ -161261,7 +161346,7 @@
}
},
{
- "id": 22964,
+ "id": 23433,
"properties": {
"facing": "north",
"half": "top",
@@ -161270,7 +161355,7 @@
}
},
{
- "id": 22965,
+ "id": 23434,
"properties": {
"facing": "north",
"half": "top",
@@ -161279,7 +161364,7 @@
}
},
{
- "id": 22966,
+ "id": 23435,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161289,7 +161374,7 @@
},
{
"default": true,
- "id": 22967,
+ "id": 23436,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161298,7 +161383,7 @@
}
},
{
- "id": 22968,
+ "id": 23437,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161307,7 +161392,7 @@
}
},
{
- "id": 22969,
+ "id": 23438,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161316,7 +161401,7 @@
}
},
{
- "id": 22970,
+ "id": 23439,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161325,7 +161410,7 @@
}
},
{
- "id": 22971,
+ "id": 23440,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161334,7 +161419,7 @@
}
},
{
- "id": 22972,
+ "id": 23441,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161343,7 +161428,7 @@
}
},
{
- "id": 22973,
+ "id": 23442,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161352,7 +161437,7 @@
}
},
{
- "id": 22974,
+ "id": 23443,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161361,7 +161446,7 @@
}
},
{
- "id": 22975,
+ "id": 23444,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161370,7 +161455,7 @@
}
},
{
- "id": 22976,
+ "id": 23445,
"properties": {
"facing": "south",
"half": "top",
@@ -161379,7 +161464,7 @@
}
},
{
- "id": 22977,
+ "id": 23446,
"properties": {
"facing": "south",
"half": "top",
@@ -161388,7 +161473,7 @@
}
},
{
- "id": 22978,
+ "id": 23447,
"properties": {
"facing": "south",
"half": "top",
@@ -161397,7 +161482,7 @@
}
},
{
- "id": 22979,
+ "id": 23448,
"properties": {
"facing": "south",
"half": "top",
@@ -161406,7 +161491,7 @@
}
},
{
- "id": 22980,
+ "id": 23449,
"properties": {
"facing": "south",
"half": "top",
@@ -161415,7 +161500,7 @@
}
},
{
- "id": 22981,
+ "id": 23450,
"properties": {
"facing": "south",
"half": "top",
@@ -161424,7 +161509,7 @@
}
},
{
- "id": 22982,
+ "id": 23451,
"properties": {
"facing": "south",
"half": "top",
@@ -161433,7 +161518,7 @@
}
},
{
- "id": 22983,
+ "id": 23452,
"properties": {
"facing": "south",
"half": "top",
@@ -161442,7 +161527,7 @@
}
},
{
- "id": 22984,
+ "id": 23453,
"properties": {
"facing": "south",
"half": "top",
@@ -161451,7 +161536,7 @@
}
},
{
- "id": 22985,
+ "id": 23454,
"properties": {
"facing": "south",
"half": "top",
@@ -161460,7 +161545,7 @@
}
},
{
- "id": 22986,
+ "id": 23455,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161469,7 +161554,7 @@
}
},
{
- "id": 22987,
+ "id": 23456,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161478,7 +161563,7 @@
}
},
{
- "id": 22988,
+ "id": 23457,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161487,7 +161572,7 @@
}
},
{
- "id": 22989,
+ "id": 23458,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161496,7 +161581,7 @@
}
},
{
- "id": 22990,
+ "id": 23459,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161505,7 +161590,7 @@
}
},
{
- "id": 22991,
+ "id": 23460,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161514,7 +161599,7 @@
}
},
{
- "id": 22992,
+ "id": 23461,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161523,7 +161608,7 @@
}
},
{
- "id": 22993,
+ "id": 23462,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161532,7 +161617,7 @@
}
},
{
- "id": 22994,
+ "id": 23463,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161541,7 +161626,7 @@
}
},
{
- "id": 22995,
+ "id": 23464,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161550,7 +161635,7 @@
}
},
{
- "id": 22996,
+ "id": 23465,
"properties": {
"facing": "west",
"half": "top",
@@ -161559,7 +161644,7 @@
}
},
{
- "id": 22997,
+ "id": 23466,
"properties": {
"facing": "west",
"half": "top",
@@ -161568,7 +161653,7 @@
}
},
{
- "id": 22998,
+ "id": 23467,
"properties": {
"facing": "west",
"half": "top",
@@ -161577,7 +161662,7 @@
}
},
{
- "id": 22999,
+ "id": 23468,
"properties": {
"facing": "west",
"half": "top",
@@ -161586,7 +161671,7 @@
}
},
{
- "id": 23000,
+ "id": 23469,
"properties": {
"facing": "west",
"half": "top",
@@ -161595,7 +161680,7 @@
}
},
{
- "id": 23001,
+ "id": 23470,
"properties": {
"facing": "west",
"half": "top",
@@ -161604,7 +161689,7 @@
}
},
{
- "id": 23002,
+ "id": 23471,
"properties": {
"facing": "west",
"half": "top",
@@ -161613,7 +161698,7 @@
}
},
{
- "id": 23003,
+ "id": 23472,
"properties": {
"facing": "west",
"half": "top",
@@ -161622,7 +161707,7 @@
}
},
{
- "id": 23004,
+ "id": 23473,
"properties": {
"facing": "west",
"half": "top",
@@ -161631,7 +161716,7 @@
}
},
{
- "id": 23005,
+ "id": 23474,
"properties": {
"facing": "west",
"half": "top",
@@ -161640,7 +161725,7 @@
}
},
{
- "id": 23006,
+ "id": 23475,
"properties": {
"facing": "west",
"half": "bottom",
@@ -161649,7 +161734,7 @@
}
},
{
- "id": 23007,
+ "id": 23476,
"properties": {
"facing": "west",
"half": "bottom",
@@ -161658,7 +161743,7 @@
}
},
{
- "id": 23008,
+ "id": 23477,
"properties": {
"facing": "west",
"half": "bottom",
@@ -161667,7 +161752,7 @@
}
},
{
- "id": 23009,
+ "id": 23478,
"properties": {
"facing": "west",
"half": "bottom",
@@ -161676,7 +161761,7 @@
}
},
{
- "id": 23010,
+ "id": 23479,
"properties": {
"facing": "west",
"half": "bottom",
@@ -161685,7 +161770,7 @@
}
},
{
- "id": 23011,
+ "id": 23480,
"properties": {
"facing": "west",
"half": "bottom",
@@ -161694,7 +161779,7 @@
}
},
{
- "id": 23012,
+ "id": 23481,
"properties": {
"facing": "west",
"half": "bottom",
@@ -161703,7 +161788,7 @@
}
},
{
- "id": 23013,
+ "id": 23482,
"properties": {
"facing": "west",
"half": "bottom",
@@ -161712,7 +161797,7 @@
}
},
{
- "id": 23014,
+ "id": 23483,
"properties": {
"facing": "west",
"half": "bottom",
@@ -161721,7 +161806,7 @@
}
},
{
- "id": 23015,
+ "id": 23484,
"properties": {
"facing": "west",
"half": "bottom",
@@ -161730,7 +161815,7 @@
}
},
{
- "id": 23016,
+ "id": 23485,
"properties": {
"facing": "east",
"half": "top",
@@ -161739,7 +161824,7 @@
}
},
{
- "id": 23017,
+ "id": 23486,
"properties": {
"facing": "east",
"half": "top",
@@ -161748,7 +161833,7 @@
}
},
{
- "id": 23018,
+ "id": 23487,
"properties": {
"facing": "east",
"half": "top",
@@ -161757,7 +161842,7 @@
}
},
{
- "id": 23019,
+ "id": 23488,
"properties": {
"facing": "east",
"half": "top",
@@ -161766,7 +161851,7 @@
}
},
{
- "id": 23020,
+ "id": 23489,
"properties": {
"facing": "east",
"half": "top",
@@ -161775,7 +161860,7 @@
}
},
{
- "id": 23021,
+ "id": 23490,
"properties": {
"facing": "east",
"half": "top",
@@ -161784,7 +161869,7 @@
}
},
{
- "id": 23022,
+ "id": 23491,
"properties": {
"facing": "east",
"half": "top",
@@ -161793,7 +161878,7 @@
}
},
{
- "id": 23023,
+ "id": 23492,
"properties": {
"facing": "east",
"half": "top",
@@ -161802,7 +161887,7 @@
}
},
{
- "id": 23024,
+ "id": 23493,
"properties": {
"facing": "east",
"half": "top",
@@ -161811,7 +161896,7 @@
}
},
{
- "id": 23025,
+ "id": 23494,
"properties": {
"facing": "east",
"half": "top",
@@ -161820,7 +161905,7 @@
}
},
{
- "id": 23026,
+ "id": 23495,
"properties": {
"facing": "east",
"half": "bottom",
@@ -161829,7 +161914,7 @@
}
},
{
- "id": 23027,
+ "id": 23496,
"properties": {
"facing": "east",
"half": "bottom",
@@ -161838,7 +161923,7 @@
}
},
{
- "id": 23028,
+ "id": 23497,
"properties": {
"facing": "east",
"half": "bottom",
@@ -161847,7 +161932,7 @@
}
},
{
- "id": 23029,
+ "id": 23498,
"properties": {
"facing": "east",
"half": "bottom",
@@ -161856,7 +161941,7 @@
}
},
{
- "id": 23030,
+ "id": 23499,
"properties": {
"facing": "east",
"half": "bottom",
@@ -161865,7 +161950,7 @@
}
},
{
- "id": 23031,
+ "id": 23500,
"properties": {
"facing": "east",
"half": "bottom",
@@ -161874,7 +161959,7 @@
}
},
{
- "id": 23032,
+ "id": 23501,
"properties": {
"facing": "east",
"half": "bottom",
@@ -161883,7 +161968,7 @@
}
},
{
- "id": 23033,
+ "id": 23502,
"properties": {
"facing": "east",
"half": "bottom",
@@ -161892,7 +161977,7 @@
}
},
{
- "id": 23034,
+ "id": 23503,
"properties": {
"facing": "east",
"half": "bottom",
@@ -161901,7 +161986,7 @@
}
},
{
- "id": 23035,
+ "id": 23504,
"properties": {
"facing": "east",
"half": "bottom",
@@ -161919,7 +162004,7 @@
"states": [
{
"default": true,
- "id": 10746
+ "id": 11081
}
]
},
@@ -161931,7 +162016,6108 @@
"states": [
{
"default": true,
- "id": 6541
+ "id": 6771
+ }
+ ]
+ },
+ "minecraft:pale_hanging_moss": {
+ "definition": {
+ "type": "minecraft:hanging_moss",
+ "properties": {}
+ },
+ "properties": {
+ "tip": [
+ "true",
+ "false"
+ ]
+ },
+ "states": [
+ {
+ "default": true,
+ "id": 27316,
+ "properties": {
+ "tip": "true"
+ }
+ },
+ {
+ "id": 27317,
+ "properties": {
+ "tip": "false"
+ }
+ }
+ ]
+ },
+ "minecraft:pale_moss_block": {
+ "definition": {
+ "type": "minecraft:bonemealable_feature_placer",
+ "feature": "minecraft:pale_moss_patch_bonemeal",
+ "properties": {}
+ },
+ "states": [
+ {
+ "default": true,
+ "id": 27153
+ }
+ ]
+ },
+ "minecraft:pale_moss_carpet": {
+ "definition": {
+ "type": "minecraft:mossy_carpet",
+ "properties": {}
+ },
+ "properties": {
+ "bottom": [
+ "true",
+ "false"
+ ],
+ "east": [
+ "none",
+ "low",
+ "tall"
+ ],
+ "north": [
+ "none",
+ "low",
+ "tall"
+ ],
+ "south": [
+ "none",
+ "low",
+ "tall"
+ ],
+ "west": [
+ "none",
+ "low",
+ "tall"
+ ]
+ },
+ "states": [
+ {
+ "default": true,
+ "id": 27154,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "none",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27155,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "none",
+ "south": "none",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27156,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "none",
+ "south": "none",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27157,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27158,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27159,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27160,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27161,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27162,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27163,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27164,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27165,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27166,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27167,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27168,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27169,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27170,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27171,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27172,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27173,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27174,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27175,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27176,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27177,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27178,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27179,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27180,
+ "properties": {
+ "bottom": "true",
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27181,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27182,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27183,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27184,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27185,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27186,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27187,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27188,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27189,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27190,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27191,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27192,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27193,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27194,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27195,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27196,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27197,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27198,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27199,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27200,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27201,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27202,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27203,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27204,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27205,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27206,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27207,
+ "properties": {
+ "bottom": "true",
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27208,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27209,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27210,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27211,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27212,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27213,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27214,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27215,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27216,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27217,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "low",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27218,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "low",
+ "south": "none",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27219,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "low",
+ "south": "none",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27220,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "low",
+ "south": "low",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27221,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "low",
+ "south": "low",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27222,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "low",
+ "south": "low",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27223,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "low",
+ "south": "tall",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27224,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "low",
+ "south": "tall",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27225,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "low",
+ "south": "tall",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27226,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "tall",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27227,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "tall",
+ "south": "none",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27228,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "tall",
+ "south": "none",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27229,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "tall",
+ "south": "low",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27230,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "tall",
+ "south": "low",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27231,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "tall",
+ "south": "low",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27232,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "tall",
+ "south": "tall",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27233,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "tall",
+ "south": "tall",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27234,
+ "properties": {
+ "bottom": "true",
+ "east": "tall",
+ "north": "tall",
+ "south": "tall",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27235,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "none",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27236,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "none",
+ "south": "none",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27237,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "none",
+ "south": "none",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27238,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27239,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27240,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27241,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27242,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27243,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27244,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27245,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27246,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "low",
+ "south": "none",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27247,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27248,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27249,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27250,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27251,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27252,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27253,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27254,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27255,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27256,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27257,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27258,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27259,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27260,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27261,
+ "properties": {
+ "bottom": "false",
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27262,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27263,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27264,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27265,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27266,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27267,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27268,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27269,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27270,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27271,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27272,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27273,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27274,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27275,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27276,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27277,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27278,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27279,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27280,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27281,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27282,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27283,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27284,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27285,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27286,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27287,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27288,
+ "properties": {
+ "bottom": "false",
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27289,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27290,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27291,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "none",
+ "south": "none",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27292,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27293,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27294,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "none",
+ "south": "low",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27295,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27296,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27297,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "none",
+ "south": "tall",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27298,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "low",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27299,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "low",
+ "south": "none",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27300,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "low",
+ "south": "none",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27301,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "low",
+ "south": "low",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27302,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "low",
+ "south": "low",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27303,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "low",
+ "south": "low",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27304,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "low",
+ "south": "tall",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27305,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "low",
+ "south": "tall",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27306,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "low",
+ "south": "tall",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27307,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "tall",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27308,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "tall",
+ "south": "none",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27309,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "tall",
+ "south": "none",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27310,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "tall",
+ "south": "low",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27311,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "tall",
+ "south": "low",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27312,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "tall",
+ "south": "low",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 27313,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "tall",
+ "south": "tall",
+ "west": "none"
+ }
+ },
+ {
+ "id": 27314,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "tall",
+ "south": "tall",
+ "west": "low"
+ }
+ },
+ {
+ "id": 27315,
+ "properties": {
+ "bottom": "false",
+ "east": "tall",
+ "north": "tall",
+ "south": "tall",
+ "west": "tall"
+ }
+ }
+ ]
+ },
+ "minecraft:pale_oak_button": {
+ "definition": {
+ "type": "minecraft:button",
+ "block_set_type": "pale_oak",
+ "properties": {},
+ "ticks_to_stay_pressed": 30
+ },
+ "properties": {
+ "face": [
+ "floor",
+ "wall",
+ "ceiling"
+ ],
+ "facing": [
+ "north",
+ "south",
+ "west",
+ "east"
+ ],
+ "powered": [
+ "true",
+ "false"
+ ]
+ },
+ "states": [
+ {
+ "id": 9010,
+ "properties": {
+ "face": "floor",
+ "facing": "north",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 9011,
+ "properties": {
+ "face": "floor",
+ "facing": "north",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 9012,
+ "properties": {
+ "face": "floor",
+ "facing": "south",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 9013,
+ "properties": {
+ "face": "floor",
+ "facing": "south",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 9014,
+ "properties": {
+ "face": "floor",
+ "facing": "west",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 9015,
+ "properties": {
+ "face": "floor",
+ "facing": "west",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 9016,
+ "properties": {
+ "face": "floor",
+ "facing": "east",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 9017,
+ "properties": {
+ "face": "floor",
+ "facing": "east",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 9018,
+ "properties": {
+ "face": "wall",
+ "facing": "north",
+ "powered": "true"
+ }
+ },
+ {
+ "default": true,
+ "id": 9019,
+ "properties": {
+ "face": "wall",
+ "facing": "north",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 9020,
+ "properties": {
+ "face": "wall",
+ "facing": "south",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 9021,
+ "properties": {
+ "face": "wall",
+ "facing": "south",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 9022,
+ "properties": {
+ "face": "wall",
+ "facing": "west",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 9023,
+ "properties": {
+ "face": "wall",
+ "facing": "west",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 9024,
+ "properties": {
+ "face": "wall",
+ "facing": "east",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 9025,
+ "properties": {
+ "face": "wall",
+ "facing": "east",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 9026,
+ "properties": {
+ "face": "ceiling",
+ "facing": "north",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 9027,
+ "properties": {
+ "face": "ceiling",
+ "facing": "north",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 9028,
+ "properties": {
+ "face": "ceiling",
+ "facing": "south",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 9029,
+ "properties": {
+ "face": "ceiling",
+ "facing": "south",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 9030,
+ "properties": {
+ "face": "ceiling",
+ "facing": "west",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 9031,
+ "properties": {
+ "face": "ceiling",
+ "facing": "west",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 9032,
+ "properties": {
+ "face": "ceiling",
+ "facing": "east",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 9033,
+ "properties": {
+ "face": "ceiling",
+ "facing": "east",
+ "powered": "false"
+ }
+ }
+ ]
+ },
+ "minecraft:pale_oak_door": {
+ "definition": {
+ "type": "minecraft:door",
+ "block_set_type": "pale_oak",
+ "properties": {}
+ },
+ "properties": {
+ "facing": [
+ "north",
+ "south",
+ "west",
+ "east"
+ ],
+ "half": [
+ "upper",
+ "lower"
+ ],
+ "hinge": [
+ "left",
+ "right"
+ ],
+ "open": [
+ "true",
+ "false"
+ ],
+ "powered": [
+ "true",
+ "false"
+ ]
+ },
+ "states": [
+ {
+ "id": 12611,
+ "properties": {
+ "facing": "north",
+ "half": "upper",
+ "hinge": "left",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12612,
+ "properties": {
+ "facing": "north",
+ "half": "upper",
+ "hinge": "left",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12613,
+ "properties": {
+ "facing": "north",
+ "half": "upper",
+ "hinge": "left",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12614,
+ "properties": {
+ "facing": "north",
+ "half": "upper",
+ "hinge": "left",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12615,
+ "properties": {
+ "facing": "north",
+ "half": "upper",
+ "hinge": "right",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12616,
+ "properties": {
+ "facing": "north",
+ "half": "upper",
+ "hinge": "right",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12617,
+ "properties": {
+ "facing": "north",
+ "half": "upper",
+ "hinge": "right",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12618,
+ "properties": {
+ "facing": "north",
+ "half": "upper",
+ "hinge": "right",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12619,
+ "properties": {
+ "facing": "north",
+ "half": "lower",
+ "hinge": "left",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12620,
+ "properties": {
+ "facing": "north",
+ "half": "lower",
+ "hinge": "left",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12621,
+ "properties": {
+ "facing": "north",
+ "half": "lower",
+ "hinge": "left",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "default": true,
+ "id": 12622,
+ "properties": {
+ "facing": "north",
+ "half": "lower",
+ "hinge": "left",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12623,
+ "properties": {
+ "facing": "north",
+ "half": "lower",
+ "hinge": "right",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12624,
+ "properties": {
+ "facing": "north",
+ "half": "lower",
+ "hinge": "right",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12625,
+ "properties": {
+ "facing": "north",
+ "half": "lower",
+ "hinge": "right",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12626,
+ "properties": {
+ "facing": "north",
+ "half": "lower",
+ "hinge": "right",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12627,
+ "properties": {
+ "facing": "south",
+ "half": "upper",
+ "hinge": "left",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12628,
+ "properties": {
+ "facing": "south",
+ "half": "upper",
+ "hinge": "left",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12629,
+ "properties": {
+ "facing": "south",
+ "half": "upper",
+ "hinge": "left",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12630,
+ "properties": {
+ "facing": "south",
+ "half": "upper",
+ "hinge": "left",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12631,
+ "properties": {
+ "facing": "south",
+ "half": "upper",
+ "hinge": "right",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12632,
+ "properties": {
+ "facing": "south",
+ "half": "upper",
+ "hinge": "right",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12633,
+ "properties": {
+ "facing": "south",
+ "half": "upper",
+ "hinge": "right",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12634,
+ "properties": {
+ "facing": "south",
+ "half": "upper",
+ "hinge": "right",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12635,
+ "properties": {
+ "facing": "south",
+ "half": "lower",
+ "hinge": "left",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12636,
+ "properties": {
+ "facing": "south",
+ "half": "lower",
+ "hinge": "left",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12637,
+ "properties": {
+ "facing": "south",
+ "half": "lower",
+ "hinge": "left",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12638,
+ "properties": {
+ "facing": "south",
+ "half": "lower",
+ "hinge": "left",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12639,
+ "properties": {
+ "facing": "south",
+ "half": "lower",
+ "hinge": "right",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12640,
+ "properties": {
+ "facing": "south",
+ "half": "lower",
+ "hinge": "right",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12641,
+ "properties": {
+ "facing": "south",
+ "half": "lower",
+ "hinge": "right",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12642,
+ "properties": {
+ "facing": "south",
+ "half": "lower",
+ "hinge": "right",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12643,
+ "properties": {
+ "facing": "west",
+ "half": "upper",
+ "hinge": "left",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12644,
+ "properties": {
+ "facing": "west",
+ "half": "upper",
+ "hinge": "left",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12645,
+ "properties": {
+ "facing": "west",
+ "half": "upper",
+ "hinge": "left",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12646,
+ "properties": {
+ "facing": "west",
+ "half": "upper",
+ "hinge": "left",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12647,
+ "properties": {
+ "facing": "west",
+ "half": "upper",
+ "hinge": "right",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12648,
+ "properties": {
+ "facing": "west",
+ "half": "upper",
+ "hinge": "right",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12649,
+ "properties": {
+ "facing": "west",
+ "half": "upper",
+ "hinge": "right",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12650,
+ "properties": {
+ "facing": "west",
+ "half": "upper",
+ "hinge": "right",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12651,
+ "properties": {
+ "facing": "west",
+ "half": "lower",
+ "hinge": "left",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12652,
+ "properties": {
+ "facing": "west",
+ "half": "lower",
+ "hinge": "left",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12653,
+ "properties": {
+ "facing": "west",
+ "half": "lower",
+ "hinge": "left",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12654,
+ "properties": {
+ "facing": "west",
+ "half": "lower",
+ "hinge": "left",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12655,
+ "properties": {
+ "facing": "west",
+ "half": "lower",
+ "hinge": "right",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12656,
+ "properties": {
+ "facing": "west",
+ "half": "lower",
+ "hinge": "right",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12657,
+ "properties": {
+ "facing": "west",
+ "half": "lower",
+ "hinge": "right",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12658,
+ "properties": {
+ "facing": "west",
+ "half": "lower",
+ "hinge": "right",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12659,
+ "properties": {
+ "facing": "east",
+ "half": "upper",
+ "hinge": "left",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12660,
+ "properties": {
+ "facing": "east",
+ "half": "upper",
+ "hinge": "left",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12661,
+ "properties": {
+ "facing": "east",
+ "half": "upper",
+ "hinge": "left",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12662,
+ "properties": {
+ "facing": "east",
+ "half": "upper",
+ "hinge": "left",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12663,
+ "properties": {
+ "facing": "east",
+ "half": "upper",
+ "hinge": "right",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12664,
+ "properties": {
+ "facing": "east",
+ "half": "upper",
+ "hinge": "right",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12665,
+ "properties": {
+ "facing": "east",
+ "half": "upper",
+ "hinge": "right",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12666,
+ "properties": {
+ "facing": "east",
+ "half": "upper",
+ "hinge": "right",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12667,
+ "properties": {
+ "facing": "east",
+ "half": "lower",
+ "hinge": "left",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12668,
+ "properties": {
+ "facing": "east",
+ "half": "lower",
+ "hinge": "left",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12669,
+ "properties": {
+ "facing": "east",
+ "half": "lower",
+ "hinge": "left",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12670,
+ "properties": {
+ "facing": "east",
+ "half": "lower",
+ "hinge": "left",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12671,
+ "properties": {
+ "facing": "east",
+ "half": "lower",
+ "hinge": "right",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12672,
+ "properties": {
+ "facing": "east",
+ "half": "lower",
+ "hinge": "right",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 12673,
+ "properties": {
+ "facing": "east",
+ "half": "lower",
+ "hinge": "right",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 12674,
+ "properties": {
+ "facing": "east",
+ "half": "lower",
+ "hinge": "right",
+ "open": "false",
+ "powered": "false"
+ }
+ }
+ ]
+ },
+ "minecraft:pale_oak_fence": {
+ "definition": {
+ "type": "minecraft:fence",
+ "properties": {}
+ },
+ "properties": {
+ "east": [
+ "true",
+ "false"
+ ],
+ "north": [
+ "true",
+ "false"
+ ],
+ "south": [
+ "true",
+ "false"
+ ],
+ "waterlogged": [
+ "true",
+ "false"
+ ],
+ "west": [
+ "true",
+ "false"
+ ]
+ },
+ "states": [
+ {
+ "id": 12131,
+ "properties": {
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "waterlogged": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 12132,
+ "properties": {
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "waterlogged": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 12133,
+ "properties": {
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "waterlogged": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 12134,
+ "properties": {
+ "east": "true",
+ "north": "true",
+ "south": "true",
+ "waterlogged": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 12135,
+ "properties": {
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "waterlogged": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 12136,
+ "properties": {
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "waterlogged": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 12137,
+ "properties": {
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "waterlogged": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 12138,
+ "properties": {
+ "east": "true",
+ "north": "true",
+ "south": "false",
+ "waterlogged": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 12139,
+ "properties": {
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "waterlogged": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 12140,
+ "properties": {
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "waterlogged": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 12141,
+ "properties": {
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "waterlogged": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 12142,
+ "properties": {
+ "east": "true",
+ "north": "false",
+ "south": "true",
+ "waterlogged": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 12143,
+ "properties": {
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "waterlogged": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 12144,
+ "properties": {
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "waterlogged": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 12145,
+ "properties": {
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "waterlogged": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 12146,
+ "properties": {
+ "east": "true",
+ "north": "false",
+ "south": "false",
+ "waterlogged": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 12147,
+ "properties": {
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "waterlogged": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 12148,
+ "properties": {
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "waterlogged": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 12149,
+ "properties": {
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "waterlogged": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 12150,
+ "properties": {
+ "east": "false",
+ "north": "true",
+ "south": "true",
+ "waterlogged": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 12151,
+ "properties": {
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "waterlogged": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 12152,
+ "properties": {
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "waterlogged": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 12153,
+ "properties": {
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "waterlogged": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 12154,
+ "properties": {
+ "east": "false",
+ "north": "true",
+ "south": "false",
+ "waterlogged": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 12155,
+ "properties": {
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "waterlogged": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 12156,
+ "properties": {
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "waterlogged": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 12157,
+ "properties": {
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "waterlogged": "false",
+ "west": "true"
+ }
+ },
+ {
+ "id": 12158,
+ "properties": {
+ "east": "false",
+ "north": "false",
+ "south": "true",
+ "waterlogged": "false",
+ "west": "false"
+ }
+ },
+ {
+ "id": 12159,
+ "properties": {
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "waterlogged": "true",
+ "west": "true"
+ }
+ },
+ {
+ "id": 12160,
+ "properties": {
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "waterlogged": "true",
+ "west": "false"
+ }
+ },
+ {
+ "id": 12161,
+ "properties": {
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "waterlogged": "false",
+ "west": "true"
+ }
+ },
+ {
+ "default": true,
+ "id": 12162,
+ "properties": {
+ "east": "false",
+ "north": "false",
+ "south": "false",
+ "waterlogged": "false",
+ "west": "false"
+ }
+ }
+ ]
+ },
+ "minecraft:pale_oak_fence_gate": {
+ "definition": {
+ "type": "minecraft:fence_gate",
+ "properties": {},
+ "wood_type": "pale_oak"
+ },
+ "properties": {
+ "facing": [
+ "north",
+ "south",
+ "west",
+ "east"
+ ],
+ "in_wall": [
+ "true",
+ "false"
+ ],
+ "open": [
+ "true",
+ "false"
+ ],
+ "powered": [
+ "true",
+ "false"
+ ]
+ },
+ "states": [
+ {
+ "id": 11843,
+ "properties": {
+ "facing": "north",
+ "in_wall": "true",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 11844,
+ "properties": {
+ "facing": "north",
+ "in_wall": "true",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 11845,
+ "properties": {
+ "facing": "north",
+ "in_wall": "true",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 11846,
+ "properties": {
+ "facing": "north",
+ "in_wall": "true",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 11847,
+ "properties": {
+ "facing": "north",
+ "in_wall": "false",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 11848,
+ "properties": {
+ "facing": "north",
+ "in_wall": "false",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 11849,
+ "properties": {
+ "facing": "north",
+ "in_wall": "false",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "default": true,
+ "id": 11850,
+ "properties": {
+ "facing": "north",
+ "in_wall": "false",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 11851,
+ "properties": {
+ "facing": "south",
+ "in_wall": "true",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 11852,
+ "properties": {
+ "facing": "south",
+ "in_wall": "true",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 11853,
+ "properties": {
+ "facing": "south",
+ "in_wall": "true",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 11854,
+ "properties": {
+ "facing": "south",
+ "in_wall": "true",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 11855,
+ "properties": {
+ "facing": "south",
+ "in_wall": "false",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 11856,
+ "properties": {
+ "facing": "south",
+ "in_wall": "false",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 11857,
+ "properties": {
+ "facing": "south",
+ "in_wall": "false",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 11858,
+ "properties": {
+ "facing": "south",
+ "in_wall": "false",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 11859,
+ "properties": {
+ "facing": "west",
+ "in_wall": "true",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 11860,
+ "properties": {
+ "facing": "west",
+ "in_wall": "true",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 11861,
+ "properties": {
+ "facing": "west",
+ "in_wall": "true",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 11862,
+ "properties": {
+ "facing": "west",
+ "in_wall": "true",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 11863,
+ "properties": {
+ "facing": "west",
+ "in_wall": "false",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 11864,
+ "properties": {
+ "facing": "west",
+ "in_wall": "false",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 11865,
+ "properties": {
+ "facing": "west",
+ "in_wall": "false",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 11866,
+ "properties": {
+ "facing": "west",
+ "in_wall": "false",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 11867,
+ "properties": {
+ "facing": "east",
+ "in_wall": "true",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 11868,
+ "properties": {
+ "facing": "east",
+ "in_wall": "true",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 11869,
+ "properties": {
+ "facing": "east",
+ "in_wall": "true",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 11870,
+ "properties": {
+ "facing": "east",
+ "in_wall": "true",
+ "open": "false",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 11871,
+ "properties": {
+ "facing": "east",
+ "in_wall": "false",
+ "open": "true",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 11872,
+ "properties": {
+ "facing": "east",
+ "in_wall": "false",
+ "open": "true",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 11873,
+ "properties": {
+ "facing": "east",
+ "in_wall": "false",
+ "open": "false",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 11874,
+ "properties": {
+ "facing": "east",
+ "in_wall": "false",
+ "open": "false",
+ "powered": "false"
+ }
+ }
+ ]
+ },
+ "minecraft:pale_oak_hanging_sign": {
+ "definition": {
+ "type": "minecraft:ceiling_hanging_sign",
+ "properties": {},
+ "wood_type": "pale_oak"
+ },
+ "properties": {
+ "attached": [
+ "true",
+ "false"
+ ],
+ "rotation": [
+ "0",
+ "1",
+ "2",
+ "3",
+ "4",
+ "5",
+ "6",
+ "7",
+ "8",
+ "9",
+ "10",
+ "11",
+ "12",
+ "13",
+ "14",
+ "15"
+ ],
+ "waterlogged": [
+ "true",
+ "false"
+ ]
+ },
+ "states": [
+ {
+ "id": 5374,
+ "properties": {
+ "attached": "true",
+ "rotation": "0",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5375,
+ "properties": {
+ "attached": "true",
+ "rotation": "0",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5376,
+ "properties": {
+ "attached": "true",
+ "rotation": "1",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5377,
+ "properties": {
+ "attached": "true",
+ "rotation": "1",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5378,
+ "properties": {
+ "attached": "true",
+ "rotation": "2",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5379,
+ "properties": {
+ "attached": "true",
+ "rotation": "2",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5380,
+ "properties": {
+ "attached": "true",
+ "rotation": "3",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5381,
+ "properties": {
+ "attached": "true",
+ "rotation": "3",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5382,
+ "properties": {
+ "attached": "true",
+ "rotation": "4",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5383,
+ "properties": {
+ "attached": "true",
+ "rotation": "4",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5384,
+ "properties": {
+ "attached": "true",
+ "rotation": "5",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5385,
+ "properties": {
+ "attached": "true",
+ "rotation": "5",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5386,
+ "properties": {
+ "attached": "true",
+ "rotation": "6",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5387,
+ "properties": {
+ "attached": "true",
+ "rotation": "6",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5388,
+ "properties": {
+ "attached": "true",
+ "rotation": "7",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5389,
+ "properties": {
+ "attached": "true",
+ "rotation": "7",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5390,
+ "properties": {
+ "attached": "true",
+ "rotation": "8",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5391,
+ "properties": {
+ "attached": "true",
+ "rotation": "8",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5392,
+ "properties": {
+ "attached": "true",
+ "rotation": "9",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5393,
+ "properties": {
+ "attached": "true",
+ "rotation": "9",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5394,
+ "properties": {
+ "attached": "true",
+ "rotation": "10",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5395,
+ "properties": {
+ "attached": "true",
+ "rotation": "10",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5396,
+ "properties": {
+ "attached": "true",
+ "rotation": "11",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5397,
+ "properties": {
+ "attached": "true",
+ "rotation": "11",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5398,
+ "properties": {
+ "attached": "true",
+ "rotation": "12",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5399,
+ "properties": {
+ "attached": "true",
+ "rotation": "12",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5400,
+ "properties": {
+ "attached": "true",
+ "rotation": "13",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5401,
+ "properties": {
+ "attached": "true",
+ "rotation": "13",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5402,
+ "properties": {
+ "attached": "true",
+ "rotation": "14",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5403,
+ "properties": {
+ "attached": "true",
+ "rotation": "14",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5404,
+ "properties": {
+ "attached": "true",
+ "rotation": "15",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5405,
+ "properties": {
+ "attached": "true",
+ "rotation": "15",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5406,
+ "properties": {
+ "attached": "false",
+ "rotation": "0",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "default": true,
+ "id": 5407,
+ "properties": {
+ "attached": "false",
+ "rotation": "0",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5408,
+ "properties": {
+ "attached": "false",
+ "rotation": "1",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5409,
+ "properties": {
+ "attached": "false",
+ "rotation": "1",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5410,
+ "properties": {
+ "attached": "false",
+ "rotation": "2",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5411,
+ "properties": {
+ "attached": "false",
+ "rotation": "2",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5412,
+ "properties": {
+ "attached": "false",
+ "rotation": "3",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5413,
+ "properties": {
+ "attached": "false",
+ "rotation": "3",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5414,
+ "properties": {
+ "attached": "false",
+ "rotation": "4",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5415,
+ "properties": {
+ "attached": "false",
+ "rotation": "4",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5416,
+ "properties": {
+ "attached": "false",
+ "rotation": "5",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5417,
+ "properties": {
+ "attached": "false",
+ "rotation": "5",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5418,
+ "properties": {
+ "attached": "false",
+ "rotation": "6",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5419,
+ "properties": {
+ "attached": "false",
+ "rotation": "6",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5420,
+ "properties": {
+ "attached": "false",
+ "rotation": "7",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5421,
+ "properties": {
+ "attached": "false",
+ "rotation": "7",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5422,
+ "properties": {
+ "attached": "false",
+ "rotation": "8",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5423,
+ "properties": {
+ "attached": "false",
+ "rotation": "8",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5424,
+ "properties": {
+ "attached": "false",
+ "rotation": "9",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5425,
+ "properties": {
+ "attached": "false",
+ "rotation": "9",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5426,
+ "properties": {
+ "attached": "false",
+ "rotation": "10",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5427,
+ "properties": {
+ "attached": "false",
+ "rotation": "10",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5428,
+ "properties": {
+ "attached": "false",
+ "rotation": "11",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5429,
+ "properties": {
+ "attached": "false",
+ "rotation": "11",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5430,
+ "properties": {
+ "attached": "false",
+ "rotation": "12",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5431,
+ "properties": {
+ "attached": "false",
+ "rotation": "12",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5432,
+ "properties": {
+ "attached": "false",
+ "rotation": "13",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5433,
+ "properties": {
+ "attached": "false",
+ "rotation": "13",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5434,
+ "properties": {
+ "attached": "false",
+ "rotation": "14",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5435,
+ "properties": {
+ "attached": "false",
+ "rotation": "14",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5436,
+ "properties": {
+ "attached": "false",
+ "rotation": "15",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5437,
+ "properties": {
+ "attached": "false",
+ "rotation": "15",
+ "waterlogged": "false"
+ }
+ }
+ ]
+ },
+ "minecraft:pale_oak_leaves": {
+ "definition": {
+ "type": "minecraft:leaves",
+ "properties": {}
+ },
+ "properties": {
+ "distance": [
+ "1",
+ "2",
+ "3",
+ "4",
+ "5",
+ "6",
+ "7"
+ ],
+ "persistent": [
+ "true",
+ "false"
+ ],
+ "waterlogged": [
+ "true",
+ "false"
+ ]
+ },
+ "states": [
+ {
+ "id": 448,
+ "properties": {
+ "distance": "1",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 449,
+ "properties": {
+ "distance": "1",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 450,
+ "properties": {
+ "distance": "1",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 451,
+ "properties": {
+ "distance": "1",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 452,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 453,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 454,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 455,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 456,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 457,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 458,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 459,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 460,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 461,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 462,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 463,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 464,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 465,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 466,
+ "properties": {
+ "distance": "5",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 467,
+ "properties": {
+ "distance": "5",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 468,
+ "properties": {
+ "distance": "6",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 469,
+ "properties": {
+ "distance": "6",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 470,
+ "properties": {
+ "distance": "6",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 471,
+ "properties": {
+ "distance": "6",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 472,
+ "properties": {
+ "distance": "7",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 473,
+ "properties": {
+ "distance": "7",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 474,
+ "properties": {
+ "distance": "7",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "default": true,
+ "id": 475,
+ "properties": {
+ "distance": "7",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ }
+ ]
+ },
+ "minecraft:pale_oak_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 157,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 158,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 159,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:pale_oak_planks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
+ "states": [
+ {
+ "default": true,
+ "id": 25
+ }
+ ]
+ },
+ "minecraft:pale_oak_pressure_plate": {
+ "definition": {
+ "type": "minecraft:pressure_plate",
+ "block_set_type": "pale_oak",
+ "properties": {}
+ },
+ "properties": {
+ "powered": [
+ "true",
+ "false"
+ ]
+ },
+ "states": [
+ {
+ "id": 5894,
+ "properties": {
+ "powered": "true"
+ }
+ },
+ {
+ "default": true,
+ "id": 5895,
+ "properties": {
+ "powered": "false"
+ }
+ }
+ ]
+ },
+ "minecraft:pale_oak_sapling": {
+ "definition": {
+ "type": "minecraft:sapling",
+ "properties": {},
+ "tree": "pale_oak"
+ },
+ "properties": {
+ "stage": [
+ "0",
+ "1"
+ ]
+ },
+ "states": [
+ {
+ "default": true,
+ "id": 43,
+ "properties": {
+ "stage": "0"
+ }
+ },
+ {
+ "id": 44,
+ "properties": {
+ "stage": "1"
+ }
+ }
+ ]
+ },
+ "minecraft:pale_oak_sign": {
+ "definition": {
+ "type": "minecraft:standing_sign",
+ "properties": {},
+ "wood_type": "pale_oak"
+ },
+ "properties": {
+ "rotation": [
+ "0",
+ "1",
+ "2",
+ "3",
+ "4",
+ "5",
+ "6",
+ "7",
+ "8",
+ "9",
+ "10",
+ "11",
+ "12",
+ "13",
+ "14",
+ "15"
+ ],
+ "waterlogged": [
+ "true",
+ "false"
+ ]
+ },
+ "states": [
+ {
+ "id": 4578,
+ "properties": {
+ "rotation": "0",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "default": true,
+ "id": 4579,
+ "properties": {
+ "rotation": "0",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 4580,
+ "properties": {
+ "rotation": "1",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 4581,
+ "properties": {
+ "rotation": "1",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 4582,
+ "properties": {
+ "rotation": "2",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 4583,
+ "properties": {
+ "rotation": "2",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 4584,
+ "properties": {
+ "rotation": "3",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 4585,
+ "properties": {
+ "rotation": "3",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 4586,
+ "properties": {
+ "rotation": "4",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 4587,
+ "properties": {
+ "rotation": "4",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 4588,
+ "properties": {
+ "rotation": "5",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 4589,
+ "properties": {
+ "rotation": "5",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 4590,
+ "properties": {
+ "rotation": "6",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 4591,
+ "properties": {
+ "rotation": "6",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 4592,
+ "properties": {
+ "rotation": "7",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 4593,
+ "properties": {
+ "rotation": "7",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 4594,
+ "properties": {
+ "rotation": "8",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 4595,
+ "properties": {
+ "rotation": "8",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 4596,
+ "properties": {
+ "rotation": "9",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 4597,
+ "properties": {
+ "rotation": "9",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 4598,
+ "properties": {
+ "rotation": "10",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 4599,
+ "properties": {
+ "rotation": "10",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 4600,
+ "properties": {
+ "rotation": "11",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 4601,
+ "properties": {
+ "rotation": "11",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 4602,
+ "properties": {
+ "rotation": "12",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 4603,
+ "properties": {
+ "rotation": "12",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 4604,
+ "properties": {
+ "rotation": "13",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 4605,
+ "properties": {
+ "rotation": "13",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 4606,
+ "properties": {
+ "rotation": "14",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 4607,
+ "properties": {
+ "rotation": "14",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 4608,
+ "properties": {
+ "rotation": "15",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 4609,
+ "properties": {
+ "rotation": "15",
+ "waterlogged": "false"
+ }
+ }
+ ]
+ },
+ "minecraft:pale_oak_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
+ "properties": {
+ "type": [
+ "top",
+ "bottom",
+ "double"
+ ],
+ "waterlogged": [
+ "true",
+ "false"
+ ]
+ },
+ "states": [
+ {
+ "id": 11539,
+ "properties": {
+ "type": "top",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 11540,
+ "properties": {
+ "type": "top",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 11541,
+ "properties": {
+ "type": "bottom",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "default": true,
+ "id": 11542,
+ "properties": {
+ "type": "bottom",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 11543,
+ "properties": {
+ "type": "double",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 11544,
+ "properties": {
+ "type": "double",
+ "waterlogged": "false"
+ }
+ }
+ ]
+ },
+ "minecraft:pale_oak_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:pale_oak_planks"
+ },
+ "properties": {}
+ },
+ "properties": {
+ "facing": [
+ "north",
+ "south",
+ "west",
+ "east"
+ ],
+ "half": [
+ "top",
+ "bottom"
+ ],
+ "shape": [
+ "straight",
+ "inner_left",
+ "inner_right",
+ "outer_left",
+ "outer_right"
+ ],
+ "waterlogged": [
+ "true",
+ "false"
+ ]
+ },
+ "states": [
+ {
+ "id": 10379,
+ "properties": {
+ "facing": "north",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10380,
+ "properties": {
+ "facing": "north",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10381,
+ "properties": {
+ "facing": "north",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10382,
+ "properties": {
+ "facing": "north",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10383,
+ "properties": {
+ "facing": "north",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10384,
+ "properties": {
+ "facing": "north",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10385,
+ "properties": {
+ "facing": "north",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10386,
+ "properties": {
+ "facing": "north",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10387,
+ "properties": {
+ "facing": "north",
+ "half": "top",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10388,
+ "properties": {
+ "facing": "north",
+ "half": "top",
+ "shape": "outer_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10389,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "shape": "straight",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "default": true,
+ "id": 10390,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "shape": "straight",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10391,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "shape": "inner_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10392,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "shape": "inner_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10393,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "shape": "inner_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10394,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "shape": "inner_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10395,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "shape": "outer_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10396,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10397,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10398,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "shape": "outer_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10399,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10400,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10401,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10402,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10403,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10404,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10405,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10406,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10407,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10408,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "shape": "outer_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10409,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "straight",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10410,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "straight",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10411,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "inner_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10412,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "inner_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10413,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "inner_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10414,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "inner_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10415,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "outer_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10416,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10417,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10418,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "shape": "outer_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10419,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10420,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10421,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10422,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10423,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10424,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10425,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10426,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10427,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10428,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "shape": "outer_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10429,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "straight",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10430,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "straight",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10431,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "inner_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10432,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "inner_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10433,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "inner_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10434,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "inner_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10435,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "outer_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10436,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10437,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10438,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "shape": "outer_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10439,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10440,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "straight",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10441,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10442,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "inner_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10443,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10444,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "inner_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10445,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10446,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10447,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10448,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "shape": "outer_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10449,
+ "properties": {
+ "facing": "east",
+ "half": "bottom",
+ "shape": "straight",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10450,
+ "properties": {
+ "facing": "east",
+ "half": "bottom",
+ "shape": "straight",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10451,
+ "properties": {
+ "facing": "east",
+ "half": "bottom",
+ "shape": "inner_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10452,
+ "properties": {
+ "facing": "east",
+ "half": "bottom",
+ "shape": "inner_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10453,
+ "properties": {
+ "facing": "east",
+ "half": "bottom",
+ "shape": "inner_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10454,
+ "properties": {
+ "facing": "east",
+ "half": "bottom",
+ "shape": "inner_right",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10455,
+ "properties": {
+ "facing": "east",
+ "half": "bottom",
+ "shape": "outer_left",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10456,
+ "properties": {
+ "facing": "east",
+ "half": "bottom",
+ "shape": "outer_left",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 10457,
+ "properties": {
+ "facing": "east",
+ "half": "bottom",
+ "shape": "outer_right",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 10458,
+ "properties": {
+ "facing": "east",
+ "half": "bottom",
+ "shape": "outer_right",
+ "waterlogged": "false"
+ }
+ }
+ ]
+ },
+ "minecraft:pale_oak_trapdoor": {
+ "definition": {
+ "type": "minecraft:trapdoor",
+ "block_set_type": "pale_oak",
+ "properties": {}
+ },
+ "properties": {
+ "facing": [
+ "north",
+ "south",
+ "west",
+ "east"
+ ],
+ "half": [
+ "top",
+ "bottom"
+ ],
+ "open": [
+ "true",
+ "false"
+ ],
+ "powered": [
+ "true",
+ "false"
+ ],
+ "waterlogged": [
+ "true",
+ "false"
+ ]
+ },
+ "states": [
+ {
+ "id": 6575,
+ "properties": {
+ "facing": "north",
+ "half": "top",
+ "open": "true",
+ "powered": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6576,
+ "properties": {
+ "facing": "north",
+ "half": "top",
+ "open": "true",
+ "powered": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6577,
+ "properties": {
+ "facing": "north",
+ "half": "top",
+ "open": "true",
+ "powered": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6578,
+ "properties": {
+ "facing": "north",
+ "half": "top",
+ "open": "true",
+ "powered": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6579,
+ "properties": {
+ "facing": "north",
+ "half": "top",
+ "open": "false",
+ "powered": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6580,
+ "properties": {
+ "facing": "north",
+ "half": "top",
+ "open": "false",
+ "powered": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6581,
+ "properties": {
+ "facing": "north",
+ "half": "top",
+ "open": "false",
+ "powered": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6582,
+ "properties": {
+ "facing": "north",
+ "half": "top",
+ "open": "false",
+ "powered": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6583,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "open": "true",
+ "powered": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6584,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "open": "true",
+ "powered": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6585,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "open": "true",
+ "powered": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6586,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "open": "true",
+ "powered": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6587,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "open": "false",
+ "powered": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6588,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "open": "false",
+ "powered": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6589,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "open": "false",
+ "powered": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "default": true,
+ "id": 6590,
+ "properties": {
+ "facing": "north",
+ "half": "bottom",
+ "open": "false",
+ "powered": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6591,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "open": "true",
+ "powered": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6592,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "open": "true",
+ "powered": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6593,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "open": "true",
+ "powered": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6594,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "open": "true",
+ "powered": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6595,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "open": "false",
+ "powered": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6596,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "open": "false",
+ "powered": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6597,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "open": "false",
+ "powered": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6598,
+ "properties": {
+ "facing": "south",
+ "half": "top",
+ "open": "false",
+ "powered": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6599,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "open": "true",
+ "powered": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6600,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "open": "true",
+ "powered": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6601,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "open": "true",
+ "powered": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6602,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "open": "true",
+ "powered": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6603,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "open": "false",
+ "powered": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6604,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "open": "false",
+ "powered": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6605,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "open": "false",
+ "powered": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6606,
+ "properties": {
+ "facing": "south",
+ "half": "bottom",
+ "open": "false",
+ "powered": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6607,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "open": "true",
+ "powered": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6608,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "open": "true",
+ "powered": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6609,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "open": "true",
+ "powered": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6610,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "open": "true",
+ "powered": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6611,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "open": "false",
+ "powered": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6612,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "open": "false",
+ "powered": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6613,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "open": "false",
+ "powered": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6614,
+ "properties": {
+ "facing": "west",
+ "half": "top",
+ "open": "false",
+ "powered": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6615,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "open": "true",
+ "powered": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6616,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "open": "true",
+ "powered": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6617,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "open": "true",
+ "powered": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6618,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "open": "true",
+ "powered": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6619,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "open": "false",
+ "powered": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6620,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "open": "false",
+ "powered": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6621,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "open": "false",
+ "powered": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6622,
+ "properties": {
+ "facing": "west",
+ "half": "bottom",
+ "open": "false",
+ "powered": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6623,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "open": "true",
+ "powered": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6624,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "open": "true",
+ "powered": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6625,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "open": "true",
+ "powered": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6626,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "open": "true",
+ "powered": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6627,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "open": "false",
+ "powered": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6628,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "open": "false",
+ "powered": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6629,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "open": "false",
+ "powered": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6630,
+ "properties": {
+ "facing": "east",
+ "half": "top",
+ "open": "false",
+ "powered": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6631,
+ "properties": {
+ "facing": "east",
+ "half": "bottom",
+ "open": "true",
+ "powered": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6632,
+ "properties": {
+ "facing": "east",
+ "half": "bottom",
+ "open": "true",
+ "powered": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6633,
+ "properties": {
+ "facing": "east",
+ "half": "bottom",
+ "open": "true",
+ "powered": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6634,
+ "properties": {
+ "facing": "east",
+ "half": "bottom",
+ "open": "true",
+ "powered": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6635,
+ "properties": {
+ "facing": "east",
+ "half": "bottom",
+ "open": "false",
+ "powered": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6636,
+ "properties": {
+ "facing": "east",
+ "half": "bottom",
+ "open": "false",
+ "powered": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 6637,
+ "properties": {
+ "facing": "east",
+ "half": "bottom",
+ "open": "false",
+ "powered": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 6638,
+ "properties": {
+ "facing": "east",
+ "half": "bottom",
+ "open": "false",
+ "powered": "false",
+ "waterlogged": "false"
+ }
+ }
+ ]
+ },
+ "minecraft:pale_oak_wall_hanging_sign": {
+ "definition": {
+ "type": "minecraft:wall_hanging_sign",
+ "properties": {},
+ "wood_type": "pale_oak"
+ },
+ "properties": {
+ "facing": [
+ "north",
+ "south",
+ "west",
+ "east"
+ ],
+ "waterlogged": [
+ "true",
+ "false"
+ ]
+ },
+ "states": [
+ {
+ "id": 5750,
+ "properties": {
+ "facing": "north",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "default": true,
+ "id": 5751,
+ "properties": {
+ "facing": "north",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5752,
+ "properties": {
+ "facing": "south",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5753,
+ "properties": {
+ "facing": "south",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5754,
+ "properties": {
+ "facing": "west",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5755,
+ "properties": {
+ "facing": "west",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 5756,
+ "properties": {
+ "facing": "east",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 5757,
+ "properties": {
+ "facing": "east",
+ "waterlogged": "false"
+ }
+ }
+ ]
+ },
+ "minecraft:pale_oak_wall_sign": {
+ "definition": {
+ "type": "minecraft:wall_sign",
+ "properties": {},
+ "wood_type": "pale_oak"
+ },
+ "properties": {
+ "facing": [
+ "north",
+ "south",
+ "west",
+ "east"
+ ],
+ "waterlogged": [
+ "true",
+ "false"
+ ]
+ },
+ "states": [
+ {
+ "id": 4902,
+ "properties": {
+ "facing": "north",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "default": true,
+ "id": 4903,
+ "properties": {
+ "facing": "north",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 4904,
+ "properties": {
+ "facing": "south",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 4905,
+ "properties": {
+ "facing": "south",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 4906,
+ "properties": {
+ "facing": "west",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 4907,
+ "properties": {
+ "facing": "west",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 4908,
+ "properties": {
+ "facing": "east",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 4909,
+ "properties": {
+ "facing": "east",
+ "waterlogged": "false"
+ }
+ }
+ ]
+ },
+ "minecraft:pale_oak_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 22,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 23,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 24,
+ "properties": {
+ "axis": "z"
+ }
}
]
},
@@ -161949,20 +168135,20 @@
},
"states": [
{
- "id": 26569,
+ "id": 27038,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 26570,
+ "id": 27039,
"properties": {
"axis": "y"
}
},
{
- "id": 26571,
+ "id": 27040,
"properties": {
"axis": "z"
}
@@ -161982,14 +168168,14 @@
},
"states": [
{
- "id": 10753,
+ "id": 11088,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 10754,
+ "id": 11089,
"properties": {
"half": "lower"
}
@@ -162014,21 +168200,21 @@
},
"states": [
{
- "id": 11246,
+ "id": 11587,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11247,
+ "id": 11588,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11248,
+ "id": 11589,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -162036,21 +168222,21 @@
},
{
"default": true,
- "id": 11249,
+ "id": 11590,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11250,
+ "id": 11591,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11251,
+ "id": 11592,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -162090,112 +168276,112 @@
},
"states": [
{
- "id": 9067,
+ "id": 9322,
"properties": {
"powered": "true",
"rotation": "0"
}
},
{
- "id": 9068,
+ "id": 9323,
"properties": {
"powered": "true",
"rotation": "1"
}
},
{
- "id": 9069,
+ "id": 9324,
"properties": {
"powered": "true",
"rotation": "2"
}
},
{
- "id": 9070,
+ "id": 9325,
"properties": {
"powered": "true",
"rotation": "3"
}
},
{
- "id": 9071,
+ "id": 9326,
"properties": {
"powered": "true",
"rotation": "4"
}
},
{
- "id": 9072,
+ "id": 9327,
"properties": {
"powered": "true",
"rotation": "5"
}
},
{
- "id": 9073,
+ "id": 9328,
"properties": {
"powered": "true",
"rotation": "6"
}
},
{
- "id": 9074,
+ "id": 9329,
"properties": {
"powered": "true",
"rotation": "7"
}
},
{
- "id": 9075,
+ "id": 9330,
"properties": {
"powered": "true",
"rotation": "8"
}
},
{
- "id": 9076,
+ "id": 9331,
"properties": {
"powered": "true",
"rotation": "9"
}
},
{
- "id": 9077,
+ "id": 9332,
"properties": {
"powered": "true",
"rotation": "10"
}
},
{
- "id": 9078,
+ "id": 9333,
"properties": {
"powered": "true",
"rotation": "11"
}
},
{
- "id": 9079,
+ "id": 9334,
"properties": {
"powered": "true",
"rotation": "12"
}
},
{
- "id": 9080,
+ "id": 9335,
"properties": {
"powered": "true",
"rotation": "13"
}
},
{
- "id": 9081,
+ "id": 9336,
"properties": {
"powered": "true",
"rotation": "14"
}
},
{
- "id": 9082,
+ "id": 9337,
"properties": {
"powered": "true",
"rotation": "15"
@@ -162203,112 +168389,112 @@
},
{
"default": true,
- "id": 9083,
+ "id": 9338,
"properties": {
"powered": "false",
"rotation": "0"
}
},
{
- "id": 9084,
+ "id": 9339,
"properties": {
"powered": "false",
"rotation": "1"
}
},
{
- "id": 9085,
+ "id": 9340,
"properties": {
"powered": "false",
"rotation": "2"
}
},
{
- "id": 9086,
+ "id": 9341,
"properties": {
"powered": "false",
"rotation": "3"
}
},
{
- "id": 9087,
+ "id": 9342,
"properties": {
"powered": "false",
"rotation": "4"
}
},
{
- "id": 9088,
+ "id": 9343,
"properties": {
"powered": "false",
"rotation": "5"
}
},
{
- "id": 9089,
+ "id": 9344,
"properties": {
"powered": "false",
"rotation": "6"
}
},
{
- "id": 9090,
+ "id": 9345,
"properties": {
"powered": "false",
"rotation": "7"
}
},
{
- "id": 9091,
+ "id": 9346,
"properties": {
"powered": "false",
"rotation": "8"
}
},
{
- "id": 9092,
+ "id": 9347,
"properties": {
"powered": "false",
"rotation": "9"
}
},
{
- "id": 9093,
+ "id": 9348,
"properties": {
"powered": "false",
"rotation": "10"
}
},
{
- "id": 9094,
+ "id": 9349,
"properties": {
"powered": "false",
"rotation": "11"
}
},
{
- "id": 9095,
+ "id": 9350,
"properties": {
"powered": "false",
"rotation": "12"
}
},
{
- "id": 9096,
+ "id": 9351,
"properties": {
"powered": "false",
"rotation": "13"
}
},
{
- "id": 9097,
+ "id": 9352,
"properties": {
"powered": "false",
"rotation": "14"
}
},
{
- "id": 9098,
+ "id": 9353,
"properties": {
"powered": "false",
"rotation": "15"
@@ -162335,7 +168521,7 @@
},
"states": [
{
- "id": 9099,
+ "id": 9354,
"properties": {
"facing": "north",
"powered": "true"
@@ -162343,49 +168529,49 @@
},
{
"default": true,
- "id": 9100,
+ "id": 9355,
"properties": {
"facing": "north",
"powered": "false"
}
},
{
- "id": 9101,
+ "id": 9356,
"properties": {
"facing": "south",
"powered": "true"
}
},
{
- "id": 9102,
+ "id": 9357,
"properties": {
"facing": "south",
"powered": "false"
}
},
{
- "id": 9103,
+ "id": 9358,
"properties": {
"facing": "west",
"powered": "true"
}
},
{
- "id": 9104,
+ "id": 9359,
"properties": {
"facing": "west",
"powered": "false"
}
},
{
- "id": 9105,
+ "id": 9360,
"properties": {
"facing": "east",
"powered": "true"
}
},
{
- "id": 9106,
+ "id": 9361,
"properties": {
"facing": "east",
"powered": "false"
@@ -162422,97 +168608,97 @@
"states": [
{
"default": true,
- "id": 10855,
+ "id": 11190,
"properties": {
"rotation": "0"
}
},
{
- "id": 10856,
+ "id": 11191,
"properties": {
"rotation": "1"
}
},
{
- "id": 10857,
+ "id": 11192,
"properties": {
"rotation": "2"
}
},
{
- "id": 10858,
+ "id": 11193,
"properties": {
"rotation": "3"
}
},
{
- "id": 10859,
+ "id": 11194,
"properties": {
"rotation": "4"
}
},
{
- "id": 10860,
+ "id": 11195,
"properties": {
"rotation": "5"
}
},
{
- "id": 10861,
+ "id": 11196,
"properties": {
"rotation": "6"
}
},
{
- "id": 10862,
+ "id": 11197,
"properties": {
"rotation": "7"
}
},
{
- "id": 10863,
+ "id": 11198,
"properties": {
"rotation": "8"
}
},
{
- "id": 10864,
+ "id": 11199,
"properties": {
"rotation": "9"
}
},
{
- "id": 10865,
+ "id": 11200,
"properties": {
"rotation": "10"
}
},
{
- "id": 10866,
+ "id": 11201,
"properties": {
"rotation": "11"
}
},
{
- "id": 10867,
+ "id": 11202,
"properties": {
"rotation": "12"
}
},
{
- "id": 10868,
+ "id": 11203,
"properties": {
"rotation": "13"
}
},
{
- "id": 10869,
+ "id": 11204,
"properties": {
"rotation": "14"
}
},
{
- "id": 10870,
+ "id": 11205,
"properties": {
"rotation": "15"
}
@@ -162543,7 +168729,7 @@
},
"states": [
{
- "id": 1784,
+ "id": 1827,
"properties": {
"facing": "north",
"occupied": "true",
@@ -162551,7 +168737,7 @@
}
},
{
- "id": 1785,
+ "id": 1828,
"properties": {
"facing": "north",
"occupied": "true",
@@ -162559,7 +168745,7 @@
}
},
{
- "id": 1786,
+ "id": 1829,
"properties": {
"facing": "north",
"occupied": "false",
@@ -162568,7 +168754,7 @@
},
{
"default": true,
- "id": 1787,
+ "id": 1830,
"properties": {
"facing": "north",
"occupied": "false",
@@ -162576,7 +168762,7 @@
}
},
{
- "id": 1788,
+ "id": 1831,
"properties": {
"facing": "south",
"occupied": "true",
@@ -162584,7 +168770,7 @@
}
},
{
- "id": 1789,
+ "id": 1832,
"properties": {
"facing": "south",
"occupied": "true",
@@ -162592,7 +168778,7 @@
}
},
{
- "id": 1790,
+ "id": 1833,
"properties": {
"facing": "south",
"occupied": "false",
@@ -162600,7 +168786,7 @@
}
},
{
- "id": 1791,
+ "id": 1834,
"properties": {
"facing": "south",
"occupied": "false",
@@ -162608,7 +168794,7 @@
}
},
{
- "id": 1792,
+ "id": 1835,
"properties": {
"facing": "west",
"occupied": "true",
@@ -162616,7 +168802,7 @@
}
},
{
- "id": 1793,
+ "id": 1836,
"properties": {
"facing": "west",
"occupied": "true",
@@ -162624,7 +168810,7 @@
}
},
{
- "id": 1794,
+ "id": 1837,
"properties": {
"facing": "west",
"occupied": "false",
@@ -162632,7 +168818,7 @@
}
},
{
- "id": 1795,
+ "id": 1838,
"properties": {
"facing": "west",
"occupied": "false",
@@ -162640,7 +168826,7 @@
}
},
{
- "id": 1796,
+ "id": 1839,
"properties": {
"facing": "east",
"occupied": "true",
@@ -162648,7 +168834,7 @@
}
},
{
- "id": 1797,
+ "id": 1840,
"properties": {
"facing": "east",
"occupied": "true",
@@ -162656,7 +168842,7 @@
}
},
{
- "id": 1798,
+ "id": 1841,
"properties": {
"facing": "east",
"occupied": "false",
@@ -162664,7 +168850,7 @@
}
},
{
- "id": 1799,
+ "id": 1842,
"properties": {
"facing": "east",
"occupied": "false",
@@ -162696,7 +168882,7 @@
},
"states": [
{
- "id": 20837,
+ "id": 21306,
"properties": {
"candles": "1",
"lit": "true",
@@ -162704,7 +168890,7 @@
}
},
{
- "id": 20838,
+ "id": 21307,
"properties": {
"candles": "1",
"lit": "true",
@@ -162712,7 +168898,7 @@
}
},
{
- "id": 20839,
+ "id": 21308,
"properties": {
"candles": "1",
"lit": "false",
@@ -162721,7 +168907,7 @@
},
{
"default": true,
- "id": 20840,
+ "id": 21309,
"properties": {
"candles": "1",
"lit": "false",
@@ -162729,7 +168915,7 @@
}
},
{
- "id": 20841,
+ "id": 21310,
"properties": {
"candles": "2",
"lit": "true",
@@ -162737,7 +168923,7 @@
}
},
{
- "id": 20842,
+ "id": 21311,
"properties": {
"candles": "2",
"lit": "true",
@@ -162745,7 +168931,7 @@
}
},
{
- "id": 20843,
+ "id": 21312,
"properties": {
"candles": "2",
"lit": "false",
@@ -162753,7 +168939,7 @@
}
},
{
- "id": 20844,
+ "id": 21313,
"properties": {
"candles": "2",
"lit": "false",
@@ -162761,7 +168947,7 @@
}
},
{
- "id": 20845,
+ "id": 21314,
"properties": {
"candles": "3",
"lit": "true",
@@ -162769,7 +168955,7 @@
}
},
{
- "id": 20846,
+ "id": 21315,
"properties": {
"candles": "3",
"lit": "true",
@@ -162777,7 +168963,7 @@
}
},
{
- "id": 20847,
+ "id": 21316,
"properties": {
"candles": "3",
"lit": "false",
@@ -162785,7 +168971,7 @@
}
},
{
- "id": 20848,
+ "id": 21317,
"properties": {
"candles": "3",
"lit": "false",
@@ -162793,7 +168979,7 @@
}
},
{
- "id": 20849,
+ "id": 21318,
"properties": {
"candles": "4",
"lit": "true",
@@ -162801,7 +168987,7 @@
}
},
{
- "id": 20850,
+ "id": 21319,
"properties": {
"candles": "4",
"lit": "true",
@@ -162809,7 +168995,7 @@
}
},
{
- "id": 20851,
+ "id": 21320,
"properties": {
"candles": "4",
"lit": "false",
@@ -162817,7 +169003,7 @@
}
},
{
- "id": 20852,
+ "id": 21321,
"properties": {
"candles": "4",
"lit": "false",
@@ -162840,14 +169026,14 @@
},
"states": [
{
- "id": 21011,
+ "id": 21480,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 21012,
+ "id": 21481,
"properties": {
"lit": "false"
}
@@ -162863,7 +169049,7 @@
"states": [
{
"default": true,
- "id": 10734
+ "id": 11069
}
]
},
@@ -162875,7 +169061,7 @@
"states": [
{
"default": true,
- "id": 12734
+ "id": 13203
}
]
},
@@ -162888,7 +169074,7 @@
"states": [
{
"default": true,
- "id": 12750
+ "id": 13219
}
]
},
@@ -162908,25 +169094,25 @@
"states": [
{
"default": true,
- "id": 12688,
+ "id": 13157,
"properties": {
"facing": "north"
}
},
{
- "id": 12689,
+ "id": 13158,
"properties": {
"facing": "south"
}
},
{
- "id": 12690,
+ "id": 13159,
"properties": {
"facing": "west"
}
},
{
- "id": 12691,
+ "id": 13160,
"properties": {
"facing": "east"
}
@@ -162955,112 +169141,112 @@
"states": [
{
"default": true,
- "id": 24827,
+ "id": 25296,
"properties": {
"facing": "north",
"flower_amount": "1"
}
},
{
- "id": 24828,
+ "id": 25297,
"properties": {
"facing": "north",
"flower_amount": "2"
}
},
{
- "id": 24829,
+ "id": 25298,
"properties": {
"facing": "north",
"flower_amount": "3"
}
},
{
- "id": 24830,
+ "id": 25299,
"properties": {
"facing": "north",
"flower_amount": "4"
}
},
{
- "id": 24831,
+ "id": 25300,
"properties": {
"facing": "south",
"flower_amount": "1"
}
},
{
- "id": 24832,
+ "id": 25301,
"properties": {
"facing": "south",
"flower_amount": "2"
}
},
{
- "id": 24833,
+ "id": 25302,
"properties": {
"facing": "south",
"flower_amount": "3"
}
},
{
- "id": 24834,
+ "id": 25303,
"properties": {
"facing": "south",
"flower_amount": "4"
}
},
{
- "id": 24835,
+ "id": 25304,
"properties": {
"facing": "west",
"flower_amount": "1"
}
},
{
- "id": 24836,
+ "id": 25305,
"properties": {
"facing": "west",
"flower_amount": "2"
}
},
{
- "id": 24837,
+ "id": 25306,
"properties": {
"facing": "west",
"flower_amount": "3"
}
},
{
- "id": 24838,
+ "id": 25307,
"properties": {
"facing": "west",
"flower_amount": "4"
}
},
{
- "id": 24839,
+ "id": 25308,
"properties": {
"facing": "east",
"flower_amount": "1"
}
},
{
- "id": 24840,
+ "id": 25309,
"properties": {
"facing": "east",
"flower_amount": "2"
}
},
{
- "id": 24841,
+ "id": 25310,
"properties": {
"facing": "east",
"flower_amount": "3"
}
},
{
- "id": 24842,
+ "id": 25311,
"properties": {
"facing": "east",
"flower_amount": "4"
@@ -163086,38 +169272,38 @@
},
"states": [
{
- "id": 12604,
+ "id": 13073,
"properties": {
"facing": "north"
}
},
{
- "id": 12605,
+ "id": 13074,
"properties": {
"facing": "east"
}
},
{
- "id": 12606,
+ "id": 13075,
"properties": {
"facing": "south"
}
},
{
- "id": 12607,
+ "id": 13076,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12608,
+ "id": 13077,
"properties": {
"facing": "up"
}
},
{
- "id": 12609,
+ "id": 13078,
"properties": {
"facing": "down"
}
@@ -163133,7 +169319,7 @@
"states": [
{
"default": true,
- "id": 5951
+ "id": 6117
}
]
},
@@ -163167,7 +169353,7 @@
},
"states": [
{
- "id": 9564,
+ "id": 9819,
"properties": {
"east": "true",
"north": "true",
@@ -163177,7 +169363,7 @@
}
},
{
- "id": 9565,
+ "id": 9820,
"properties": {
"east": "true",
"north": "true",
@@ -163187,7 +169373,7 @@
}
},
{
- "id": 9566,
+ "id": 9821,
"properties": {
"east": "true",
"north": "true",
@@ -163197,7 +169383,7 @@
}
},
{
- "id": 9567,
+ "id": 9822,
"properties": {
"east": "true",
"north": "true",
@@ -163207,7 +169393,7 @@
}
},
{
- "id": 9568,
+ "id": 9823,
"properties": {
"east": "true",
"north": "true",
@@ -163217,7 +169403,7 @@
}
},
{
- "id": 9569,
+ "id": 9824,
"properties": {
"east": "true",
"north": "true",
@@ -163227,7 +169413,7 @@
}
},
{
- "id": 9570,
+ "id": 9825,
"properties": {
"east": "true",
"north": "true",
@@ -163237,7 +169423,7 @@
}
},
{
- "id": 9571,
+ "id": 9826,
"properties": {
"east": "true",
"north": "true",
@@ -163247,7 +169433,7 @@
}
},
{
- "id": 9572,
+ "id": 9827,
"properties": {
"east": "true",
"north": "false",
@@ -163257,7 +169443,7 @@
}
},
{
- "id": 9573,
+ "id": 9828,
"properties": {
"east": "true",
"north": "false",
@@ -163267,7 +169453,7 @@
}
},
{
- "id": 9574,
+ "id": 9829,
"properties": {
"east": "true",
"north": "false",
@@ -163277,7 +169463,7 @@
}
},
{
- "id": 9575,
+ "id": 9830,
"properties": {
"east": "true",
"north": "false",
@@ -163287,7 +169473,7 @@
}
},
{
- "id": 9576,
+ "id": 9831,
"properties": {
"east": "true",
"north": "false",
@@ -163297,7 +169483,7 @@
}
},
{
- "id": 9577,
+ "id": 9832,
"properties": {
"east": "true",
"north": "false",
@@ -163307,7 +169493,7 @@
}
},
{
- "id": 9578,
+ "id": 9833,
"properties": {
"east": "true",
"north": "false",
@@ -163317,7 +169503,7 @@
}
},
{
- "id": 9579,
+ "id": 9834,
"properties": {
"east": "true",
"north": "false",
@@ -163327,7 +169513,7 @@
}
},
{
- "id": 9580,
+ "id": 9835,
"properties": {
"east": "false",
"north": "true",
@@ -163337,7 +169523,7 @@
}
},
{
- "id": 9581,
+ "id": 9836,
"properties": {
"east": "false",
"north": "true",
@@ -163347,7 +169533,7 @@
}
},
{
- "id": 9582,
+ "id": 9837,
"properties": {
"east": "false",
"north": "true",
@@ -163357,7 +169543,7 @@
}
},
{
- "id": 9583,
+ "id": 9838,
"properties": {
"east": "false",
"north": "true",
@@ -163367,7 +169553,7 @@
}
},
{
- "id": 9584,
+ "id": 9839,
"properties": {
"east": "false",
"north": "true",
@@ -163377,7 +169563,7 @@
}
},
{
- "id": 9585,
+ "id": 9840,
"properties": {
"east": "false",
"north": "true",
@@ -163387,7 +169573,7 @@
}
},
{
- "id": 9586,
+ "id": 9841,
"properties": {
"east": "false",
"north": "true",
@@ -163397,7 +169583,7 @@
}
},
{
- "id": 9587,
+ "id": 9842,
"properties": {
"east": "false",
"north": "true",
@@ -163407,7 +169593,7 @@
}
},
{
- "id": 9588,
+ "id": 9843,
"properties": {
"east": "false",
"north": "false",
@@ -163417,7 +169603,7 @@
}
},
{
- "id": 9589,
+ "id": 9844,
"properties": {
"east": "false",
"north": "false",
@@ -163427,7 +169613,7 @@
}
},
{
- "id": 9590,
+ "id": 9845,
"properties": {
"east": "false",
"north": "false",
@@ -163437,7 +169623,7 @@
}
},
{
- "id": 9591,
+ "id": 9846,
"properties": {
"east": "false",
"north": "false",
@@ -163447,7 +169633,7 @@
}
},
{
- "id": 9592,
+ "id": 9847,
"properties": {
"east": "false",
"north": "false",
@@ -163457,7 +169643,7 @@
}
},
{
- "id": 9593,
+ "id": 9848,
"properties": {
"east": "false",
"north": "false",
@@ -163467,7 +169653,7 @@
}
},
{
- "id": 9594,
+ "id": 9849,
"properties": {
"east": "false",
"north": "false",
@@ -163478,7 +169664,7 @@
},
{
"default": true,
- "id": 9595,
+ "id": 9850,
"properties": {
"east": "false",
"north": "false",
@@ -163497,7 +169683,7 @@
"states": [
{
"default": true,
- "id": 9362
+ "id": 9617
}
]
},
@@ -163515,7 +169701,7 @@
"states": [
{
"default": true,
- "id": 2084
+ "id": 2127
}
]
},
@@ -163536,25 +169722,25 @@
"states": [
{
"default": true,
- "id": 11039,
+ "id": 11374,
"properties": {
"facing": "north"
}
},
{
- "id": 11040,
+ "id": 11375,
"properties": {
"facing": "south"
}
},
{
- "id": 11041,
+ "id": 11376,
"properties": {
"facing": "west"
}
},
{
- "id": 11042,
+ "id": 11377,
"properties": {
"facing": "east"
}
@@ -163569,7 +169755,7 @@
"states": [
{
"default": true,
- "id": 2053
+ "id": 2096
}
]
},
@@ -163595,42 +169781,42 @@
},
"states": [
{
- "id": 2011,
+ "id": 2054,
"properties": {
"extended": "true",
"facing": "north"
}
},
{
- "id": 2012,
+ "id": 2055,
"properties": {
"extended": "true",
"facing": "east"
}
},
{
- "id": 2013,
+ "id": 2056,
"properties": {
"extended": "true",
"facing": "south"
}
},
{
- "id": 2014,
+ "id": 2057,
"properties": {
"extended": "true",
"facing": "west"
}
},
{
- "id": 2015,
+ "id": 2058,
"properties": {
"extended": "true",
"facing": "up"
}
},
{
- "id": 2016,
+ "id": 2059,
"properties": {
"extended": "true",
"facing": "down"
@@ -163638,42 +169824,42 @@
},
{
"default": true,
- "id": 2017,
+ "id": 2060,
"properties": {
"extended": "false",
"facing": "north"
}
},
{
- "id": 2018,
+ "id": 2061,
"properties": {
"extended": "false",
"facing": "east"
}
},
{
- "id": 2019,
+ "id": 2062,
"properties": {
"extended": "false",
"facing": "south"
}
},
{
- "id": 2020,
+ "id": 2063,
"properties": {
"extended": "false",
"facing": "west"
}
},
{
- "id": 2021,
+ "id": 2064,
"properties": {
"extended": "false",
"facing": "up"
}
},
{
- "id": 2022,
+ "id": 2065,
"properties": {
"extended": "false",
"facing": "down"
@@ -163706,7 +169892,7 @@
},
"states": [
{
- "id": 2023,
+ "id": 2066,
"properties": {
"type": "normal",
"facing": "north",
@@ -163714,7 +169900,7 @@
}
},
{
- "id": 2024,
+ "id": 2067,
"properties": {
"type": "sticky",
"facing": "north",
@@ -163723,7 +169909,7 @@
},
{
"default": true,
- "id": 2025,
+ "id": 2068,
"properties": {
"type": "normal",
"facing": "north",
@@ -163731,7 +169917,7 @@
}
},
{
- "id": 2026,
+ "id": 2069,
"properties": {
"type": "sticky",
"facing": "north",
@@ -163739,7 +169925,7 @@
}
},
{
- "id": 2027,
+ "id": 2070,
"properties": {
"type": "normal",
"facing": "east",
@@ -163747,7 +169933,7 @@
}
},
{
- "id": 2028,
+ "id": 2071,
"properties": {
"type": "sticky",
"facing": "east",
@@ -163755,7 +169941,7 @@
}
},
{
- "id": 2029,
+ "id": 2072,
"properties": {
"type": "normal",
"facing": "east",
@@ -163763,7 +169949,7 @@
}
},
{
- "id": 2030,
+ "id": 2073,
"properties": {
"type": "sticky",
"facing": "east",
@@ -163771,7 +169957,7 @@
}
},
{
- "id": 2031,
+ "id": 2074,
"properties": {
"type": "normal",
"facing": "south",
@@ -163779,7 +169965,7 @@
}
},
{
- "id": 2032,
+ "id": 2075,
"properties": {
"type": "sticky",
"facing": "south",
@@ -163787,7 +169973,7 @@
}
},
{
- "id": 2033,
+ "id": 2076,
"properties": {
"type": "normal",
"facing": "south",
@@ -163795,7 +169981,7 @@
}
},
{
- "id": 2034,
+ "id": 2077,
"properties": {
"type": "sticky",
"facing": "south",
@@ -163803,7 +169989,7 @@
}
},
{
- "id": 2035,
+ "id": 2078,
"properties": {
"type": "normal",
"facing": "west",
@@ -163811,7 +169997,7 @@
}
},
{
- "id": 2036,
+ "id": 2079,
"properties": {
"type": "sticky",
"facing": "west",
@@ -163819,7 +170005,7 @@
}
},
{
- "id": 2037,
+ "id": 2080,
"properties": {
"type": "normal",
"facing": "west",
@@ -163827,7 +170013,7 @@
}
},
{
- "id": 2038,
+ "id": 2081,
"properties": {
"type": "sticky",
"facing": "west",
@@ -163835,7 +170021,7 @@
}
},
{
- "id": 2039,
+ "id": 2082,
"properties": {
"type": "normal",
"facing": "up",
@@ -163843,7 +170029,7 @@
}
},
{
- "id": 2040,
+ "id": 2083,
"properties": {
"type": "sticky",
"facing": "up",
@@ -163851,7 +170037,7 @@
}
},
{
- "id": 2041,
+ "id": 2084,
"properties": {
"type": "normal",
"facing": "up",
@@ -163859,7 +170045,7 @@
}
},
{
- "id": 2042,
+ "id": 2085,
"properties": {
"type": "sticky",
"facing": "up",
@@ -163867,7 +170053,7 @@
}
},
{
- "id": 2043,
+ "id": 2086,
"properties": {
"type": "normal",
"facing": "down",
@@ -163875,7 +170061,7 @@
}
},
{
- "id": 2044,
+ "id": 2087,
"properties": {
"type": "sticky",
"facing": "down",
@@ -163883,7 +170069,7 @@
}
},
{
- "id": 2045,
+ "id": 2088,
"properties": {
"type": "normal",
"facing": "down",
@@ -163891,7 +170077,7 @@
}
},
{
- "id": 2046,
+ "id": 2089,
"properties": {
"type": "sticky",
"facing": "down",
@@ -163920,7 +170106,7 @@
},
"states": [
{
- "id": 12497,
+ "id": 12966,
"properties": {
"age": "0",
"half": "upper"
@@ -163928,63 +170114,63 @@
},
{
"default": true,
- "id": 12498,
+ "id": 12967,
"properties": {
"age": "0",
"half": "lower"
}
},
{
- "id": 12499,
+ "id": 12968,
"properties": {
"age": "1",
"half": "upper"
}
},
{
- "id": 12500,
+ "id": 12969,
"properties": {
"age": "1",
"half": "lower"
}
},
{
- "id": 12501,
+ "id": 12970,
"properties": {
"age": "2",
"half": "upper"
}
},
{
- "id": 12502,
+ "id": 12971,
"properties": {
"age": "2",
"half": "lower"
}
},
{
- "id": 12503,
+ "id": 12972,
"properties": {
"age": "3",
"half": "upper"
}
},
{
- "id": 12504,
+ "id": 12973,
"properties": {
"age": "3",
"half": "lower"
}
},
{
- "id": 12505,
+ "id": 12974,
"properties": {
"age": "4",
"half": "upper"
}
},
{
- "id": 12506,
+ "id": 12975,
"properties": {
"age": "4",
"half": "lower"
@@ -164005,14 +170191,14 @@
},
"states": [
{
- "id": 12507,
+ "id": 12976,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 12508,
+ "id": 12977,
"properties": {
"half": "lower"
}
@@ -164050,112 +170236,112 @@
},
"states": [
{
- "id": 8947,
+ "id": 9202,
"properties": {
"powered": "true",
"rotation": "0"
}
},
{
- "id": 8948,
+ "id": 9203,
"properties": {
"powered": "true",
"rotation": "1"
}
},
{
- "id": 8949,
+ "id": 9204,
"properties": {
"powered": "true",
"rotation": "2"
}
},
{
- "id": 8950,
+ "id": 9205,
"properties": {
"powered": "true",
"rotation": "3"
}
},
{
- "id": 8951,
+ "id": 9206,
"properties": {
"powered": "true",
"rotation": "4"
}
},
{
- "id": 8952,
+ "id": 9207,
"properties": {
"powered": "true",
"rotation": "5"
}
},
{
- "id": 8953,
+ "id": 9208,
"properties": {
"powered": "true",
"rotation": "6"
}
},
{
- "id": 8954,
+ "id": 9209,
"properties": {
"powered": "true",
"rotation": "7"
}
},
{
- "id": 8955,
+ "id": 9210,
"properties": {
"powered": "true",
"rotation": "8"
}
},
{
- "id": 8956,
+ "id": 9211,
"properties": {
"powered": "true",
"rotation": "9"
}
},
{
- "id": 8957,
+ "id": 9212,
"properties": {
"powered": "true",
"rotation": "10"
}
},
{
- "id": 8958,
+ "id": 9213,
"properties": {
"powered": "true",
"rotation": "11"
}
},
{
- "id": 8959,
+ "id": 9214,
"properties": {
"powered": "true",
"rotation": "12"
}
},
{
- "id": 8960,
+ "id": 9215,
"properties": {
"powered": "true",
"rotation": "13"
}
},
{
- "id": 8961,
+ "id": 9216,
"properties": {
"powered": "true",
"rotation": "14"
}
},
{
- "id": 8962,
+ "id": 9217,
"properties": {
"powered": "true",
"rotation": "15"
@@ -164163,112 +170349,112 @@
},
{
"default": true,
- "id": 8963,
+ "id": 9218,
"properties": {
"powered": "false",
"rotation": "0"
}
},
{
- "id": 8964,
+ "id": 9219,
"properties": {
"powered": "false",
"rotation": "1"
}
},
{
- "id": 8965,
+ "id": 9220,
"properties": {
"powered": "false",
"rotation": "2"
}
},
{
- "id": 8966,
+ "id": 9221,
"properties": {
"powered": "false",
"rotation": "3"
}
},
{
- "id": 8967,
+ "id": 9222,
"properties": {
"powered": "false",
"rotation": "4"
}
},
{
- "id": 8968,
+ "id": 9223,
"properties": {
"powered": "false",
"rotation": "5"
}
},
{
- "id": 8969,
+ "id": 9224,
"properties": {
"powered": "false",
"rotation": "6"
}
},
{
- "id": 8970,
+ "id": 9225,
"properties": {
"powered": "false",
"rotation": "7"
}
},
{
- "id": 8971,
+ "id": 9226,
"properties": {
"powered": "false",
"rotation": "8"
}
},
{
- "id": 8972,
+ "id": 9227,
"properties": {
"powered": "false",
"rotation": "9"
}
},
{
- "id": 8973,
+ "id": 9228,
"properties": {
"powered": "false",
"rotation": "10"
}
},
{
- "id": 8974,
+ "id": 9229,
"properties": {
"powered": "false",
"rotation": "11"
}
},
{
- "id": 8975,
+ "id": 9230,
"properties": {
"powered": "false",
"rotation": "12"
}
},
{
- "id": 8976,
+ "id": 9231,
"properties": {
"powered": "false",
"rotation": "13"
}
},
{
- "id": 8977,
+ "id": 9232,
"properties": {
"powered": "false",
"rotation": "14"
}
},
{
- "id": 8978,
+ "id": 9233,
"properties": {
"powered": "false",
"rotation": "15"
@@ -164295,7 +170481,7 @@
},
"states": [
{
- "id": 8979,
+ "id": 9234,
"properties": {
"facing": "north",
"powered": "true"
@@ -164303,49 +170489,49 @@
},
{
"default": true,
- "id": 8980,
+ "id": 9235,
"properties": {
"facing": "north",
"powered": "false"
}
},
{
- "id": 8981,
+ "id": 9236,
"properties": {
"facing": "south",
"powered": "true"
}
},
{
- "id": 8982,
+ "id": 9237,
"properties": {
"facing": "south",
"powered": "false"
}
},
{
- "id": 8983,
+ "id": 9238,
"properties": {
"facing": "west",
"powered": "true"
}
},
{
- "id": 8984,
+ "id": 9239,
"properties": {
"facing": "west",
"powered": "false"
}
},
{
- "id": 8985,
+ "id": 9240,
"properties": {
"facing": "east",
"powered": "true"
}
},
{
- "id": 8986,
+ "id": 9241,
"properties": {
"facing": "east",
"powered": "false"
@@ -164404,7 +170590,7 @@
},
"states": [
{
- "id": 24748,
+ "id": 25217,
"properties": {
"thickness": "tip_merge",
"vertical_direction": "up",
@@ -164412,7 +170598,7 @@
}
},
{
- "id": 24749,
+ "id": 25218,
"properties": {
"thickness": "tip_merge",
"vertical_direction": "up",
@@ -164420,7 +170606,7 @@
}
},
{
- "id": 24750,
+ "id": 25219,
"properties": {
"thickness": "tip_merge",
"vertical_direction": "down",
@@ -164428,7 +170614,7 @@
}
},
{
- "id": 24751,
+ "id": 25220,
"properties": {
"thickness": "tip_merge",
"vertical_direction": "down",
@@ -164436,7 +170622,7 @@
}
},
{
- "id": 24752,
+ "id": 25221,
"properties": {
"thickness": "tip",
"vertical_direction": "up",
@@ -164445,7 +170631,7 @@
},
{
"default": true,
- "id": 24753,
+ "id": 25222,
"properties": {
"thickness": "tip",
"vertical_direction": "up",
@@ -164453,7 +170639,7 @@
}
},
{
- "id": 24754,
+ "id": 25223,
"properties": {
"thickness": "tip",
"vertical_direction": "down",
@@ -164461,7 +170647,7 @@
}
},
{
- "id": 24755,
+ "id": 25224,
"properties": {
"thickness": "tip",
"vertical_direction": "down",
@@ -164469,7 +170655,7 @@
}
},
{
- "id": 24756,
+ "id": 25225,
"properties": {
"thickness": "frustum",
"vertical_direction": "up",
@@ -164477,7 +170663,7 @@
}
},
{
- "id": 24757,
+ "id": 25226,
"properties": {
"thickness": "frustum",
"vertical_direction": "up",
@@ -164485,7 +170671,7 @@
}
},
{
- "id": 24758,
+ "id": 25227,
"properties": {
"thickness": "frustum",
"vertical_direction": "down",
@@ -164493,7 +170679,7 @@
}
},
{
- "id": 24759,
+ "id": 25228,
"properties": {
"thickness": "frustum",
"vertical_direction": "down",
@@ -164501,7 +170687,7 @@
}
},
{
- "id": 24760,
+ "id": 25229,
"properties": {
"thickness": "middle",
"vertical_direction": "up",
@@ -164509,7 +170695,7 @@
}
},
{
- "id": 24761,
+ "id": 25230,
"properties": {
"thickness": "middle",
"vertical_direction": "up",
@@ -164517,7 +170703,7 @@
}
},
{
- "id": 24762,
+ "id": 25231,
"properties": {
"thickness": "middle",
"vertical_direction": "down",
@@ -164525,7 +170711,7 @@
}
},
{
- "id": 24763,
+ "id": 25232,
"properties": {
"thickness": "middle",
"vertical_direction": "down",
@@ -164533,7 +170719,7 @@
}
},
{
- "id": 24764,
+ "id": 25233,
"properties": {
"thickness": "base",
"vertical_direction": "up",
@@ -164541,7 +170727,7 @@
}
},
{
- "id": 24765,
+ "id": 25234,
"properties": {
"thickness": "base",
"vertical_direction": "up",
@@ -164549,7 +170735,7 @@
}
},
{
- "id": 24766,
+ "id": 25235,
"properties": {
"thickness": "base",
"vertical_direction": "down",
@@ -164557,7 +170743,7 @@
}
},
{
- "id": 24767,
+ "id": 25236,
"properties": {
"thickness": "base",
"vertical_direction": "down",
@@ -164596,21 +170782,21 @@
},
"states": [
{
- "id": 14148,
+ "id": 14617,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 14149,
+ "id": 14618,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 14150,
+ "id": 14619,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -164618,21 +170804,21 @@
},
{
"default": true,
- "id": 14151,
+ "id": 14620,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 14152,
+ "id": 14621,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 14153,
+ "id": 14622,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -164673,7 +170859,7 @@
},
"states": [
{
- "id": 13922,
+ "id": 14391,
"properties": {
"facing": "north",
"half": "top",
@@ -164682,7 +170868,7 @@
}
},
{
- "id": 13923,
+ "id": 14392,
"properties": {
"facing": "north",
"half": "top",
@@ -164691,7 +170877,7 @@
}
},
{
- "id": 13924,
+ "id": 14393,
"properties": {
"facing": "north",
"half": "top",
@@ -164700,7 +170886,7 @@
}
},
{
- "id": 13925,
+ "id": 14394,
"properties": {
"facing": "north",
"half": "top",
@@ -164709,7 +170895,7 @@
}
},
{
- "id": 13926,
+ "id": 14395,
"properties": {
"facing": "north",
"half": "top",
@@ -164718,7 +170904,7 @@
}
},
{
- "id": 13927,
+ "id": 14396,
"properties": {
"facing": "north",
"half": "top",
@@ -164727,7 +170913,7 @@
}
},
{
- "id": 13928,
+ "id": 14397,
"properties": {
"facing": "north",
"half": "top",
@@ -164736,7 +170922,7 @@
}
},
{
- "id": 13929,
+ "id": 14398,
"properties": {
"facing": "north",
"half": "top",
@@ -164745,7 +170931,7 @@
}
},
{
- "id": 13930,
+ "id": 14399,
"properties": {
"facing": "north",
"half": "top",
@@ -164754,7 +170940,7 @@
}
},
{
- "id": 13931,
+ "id": 14400,
"properties": {
"facing": "north",
"half": "top",
@@ -164763,7 +170949,7 @@
}
},
{
- "id": 13932,
+ "id": 14401,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164773,7 +170959,7 @@
},
{
"default": true,
- "id": 13933,
+ "id": 14402,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164782,7 +170968,7 @@
}
},
{
- "id": 13934,
+ "id": 14403,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164791,7 +170977,7 @@
}
},
{
- "id": 13935,
+ "id": 14404,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164800,7 +170986,7 @@
}
},
{
- "id": 13936,
+ "id": 14405,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164809,7 +170995,7 @@
}
},
{
- "id": 13937,
+ "id": 14406,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164818,7 +171004,7 @@
}
},
{
- "id": 13938,
+ "id": 14407,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164827,7 +171013,7 @@
}
},
{
- "id": 13939,
+ "id": 14408,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164836,7 +171022,7 @@
}
},
{
- "id": 13940,
+ "id": 14409,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164845,7 +171031,7 @@
}
},
{
- "id": 13941,
+ "id": 14410,
"properties": {
"facing": "north",
"half": "bottom",
@@ -164854,7 +171040,7 @@
}
},
{
- "id": 13942,
+ "id": 14411,
"properties": {
"facing": "south",
"half": "top",
@@ -164863,7 +171049,7 @@
}
},
{
- "id": 13943,
+ "id": 14412,
"properties": {
"facing": "south",
"half": "top",
@@ -164872,7 +171058,7 @@
}
},
{
- "id": 13944,
+ "id": 14413,
"properties": {
"facing": "south",
"half": "top",
@@ -164881,7 +171067,7 @@
}
},
{
- "id": 13945,
+ "id": 14414,
"properties": {
"facing": "south",
"half": "top",
@@ -164890,7 +171076,7 @@
}
},
{
- "id": 13946,
+ "id": 14415,
"properties": {
"facing": "south",
"half": "top",
@@ -164899,7 +171085,7 @@
}
},
{
- "id": 13947,
+ "id": 14416,
"properties": {
"facing": "south",
"half": "top",
@@ -164908,7 +171094,7 @@
}
},
{
- "id": 13948,
+ "id": 14417,
"properties": {
"facing": "south",
"half": "top",
@@ -164917,7 +171103,7 @@
}
},
{
- "id": 13949,
+ "id": 14418,
"properties": {
"facing": "south",
"half": "top",
@@ -164926,7 +171112,7 @@
}
},
{
- "id": 13950,
+ "id": 14419,
"properties": {
"facing": "south",
"half": "top",
@@ -164935,7 +171121,7 @@
}
},
{
- "id": 13951,
+ "id": 14420,
"properties": {
"facing": "south",
"half": "top",
@@ -164944,7 +171130,7 @@
}
},
{
- "id": 13952,
+ "id": 14421,
"properties": {
"facing": "south",
"half": "bottom",
@@ -164953,7 +171139,7 @@
}
},
{
- "id": 13953,
+ "id": 14422,
"properties": {
"facing": "south",
"half": "bottom",
@@ -164962,7 +171148,7 @@
}
},
{
- "id": 13954,
+ "id": 14423,
"properties": {
"facing": "south",
"half": "bottom",
@@ -164971,7 +171157,7 @@
}
},
{
- "id": 13955,
+ "id": 14424,
"properties": {
"facing": "south",
"half": "bottom",
@@ -164980,7 +171166,7 @@
}
},
{
- "id": 13956,
+ "id": 14425,
"properties": {
"facing": "south",
"half": "bottom",
@@ -164989,7 +171175,7 @@
}
},
{
- "id": 13957,
+ "id": 14426,
"properties": {
"facing": "south",
"half": "bottom",
@@ -164998,7 +171184,7 @@
}
},
{
- "id": 13958,
+ "id": 14427,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165007,7 +171193,7 @@
}
},
{
- "id": 13959,
+ "id": 14428,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165016,7 +171202,7 @@
}
},
{
- "id": 13960,
+ "id": 14429,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165025,7 +171211,7 @@
}
},
{
- "id": 13961,
+ "id": 14430,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165034,7 +171220,7 @@
}
},
{
- "id": 13962,
+ "id": 14431,
"properties": {
"facing": "west",
"half": "top",
@@ -165043,7 +171229,7 @@
}
},
{
- "id": 13963,
+ "id": 14432,
"properties": {
"facing": "west",
"half": "top",
@@ -165052,7 +171238,7 @@
}
},
{
- "id": 13964,
+ "id": 14433,
"properties": {
"facing": "west",
"half": "top",
@@ -165061,7 +171247,7 @@
}
},
{
- "id": 13965,
+ "id": 14434,
"properties": {
"facing": "west",
"half": "top",
@@ -165070,7 +171256,7 @@
}
},
{
- "id": 13966,
+ "id": 14435,
"properties": {
"facing": "west",
"half": "top",
@@ -165079,7 +171265,7 @@
}
},
{
- "id": 13967,
+ "id": 14436,
"properties": {
"facing": "west",
"half": "top",
@@ -165088,7 +171274,7 @@
}
},
{
- "id": 13968,
+ "id": 14437,
"properties": {
"facing": "west",
"half": "top",
@@ -165097,7 +171283,7 @@
}
},
{
- "id": 13969,
+ "id": 14438,
"properties": {
"facing": "west",
"half": "top",
@@ -165106,7 +171292,7 @@
}
},
{
- "id": 13970,
+ "id": 14439,
"properties": {
"facing": "west",
"half": "top",
@@ -165115,7 +171301,7 @@
}
},
{
- "id": 13971,
+ "id": 14440,
"properties": {
"facing": "west",
"half": "top",
@@ -165124,7 +171310,7 @@
}
},
{
- "id": 13972,
+ "id": 14441,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165133,7 +171319,7 @@
}
},
{
- "id": 13973,
+ "id": 14442,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165142,7 +171328,7 @@
}
},
{
- "id": 13974,
+ "id": 14443,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165151,7 +171337,7 @@
}
},
{
- "id": 13975,
+ "id": 14444,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165160,7 +171346,7 @@
}
},
{
- "id": 13976,
+ "id": 14445,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165169,7 +171355,7 @@
}
},
{
- "id": 13977,
+ "id": 14446,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165178,7 +171364,7 @@
}
},
{
- "id": 13978,
+ "id": 14447,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165187,7 +171373,7 @@
}
},
{
- "id": 13979,
+ "id": 14448,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165196,7 +171382,7 @@
}
},
{
- "id": 13980,
+ "id": 14449,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165205,7 +171391,7 @@
}
},
{
- "id": 13981,
+ "id": 14450,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165214,7 +171400,7 @@
}
},
{
- "id": 13982,
+ "id": 14451,
"properties": {
"facing": "east",
"half": "top",
@@ -165223,7 +171409,7 @@
}
},
{
- "id": 13983,
+ "id": 14452,
"properties": {
"facing": "east",
"half": "top",
@@ -165232,7 +171418,7 @@
}
},
{
- "id": 13984,
+ "id": 14453,
"properties": {
"facing": "east",
"half": "top",
@@ -165241,7 +171427,7 @@
}
},
{
- "id": 13985,
+ "id": 14454,
"properties": {
"facing": "east",
"half": "top",
@@ -165250,7 +171436,7 @@
}
},
{
- "id": 13986,
+ "id": 14455,
"properties": {
"facing": "east",
"half": "top",
@@ -165259,7 +171445,7 @@
}
},
{
- "id": 13987,
+ "id": 14456,
"properties": {
"facing": "east",
"half": "top",
@@ -165268,7 +171454,7 @@
}
},
{
- "id": 13988,
+ "id": 14457,
"properties": {
"facing": "east",
"half": "top",
@@ -165277,7 +171463,7 @@
}
},
{
- "id": 13989,
+ "id": 14458,
"properties": {
"facing": "east",
"half": "top",
@@ -165286,7 +171472,7 @@
}
},
{
- "id": 13990,
+ "id": 14459,
"properties": {
"facing": "east",
"half": "top",
@@ -165295,7 +171481,7 @@
}
},
{
- "id": 13991,
+ "id": 14460,
"properties": {
"facing": "east",
"half": "top",
@@ -165304,7 +171490,7 @@
}
},
{
- "id": 13992,
+ "id": 14461,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165313,7 +171499,7 @@
}
},
{
- "id": 13993,
+ "id": 14462,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165322,7 +171508,7 @@
}
},
{
- "id": 13994,
+ "id": 14463,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165331,7 +171517,7 @@
}
},
{
- "id": 13995,
+ "id": 14464,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165340,7 +171526,7 @@
}
},
{
- "id": 13996,
+ "id": 14465,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165349,7 +171535,7 @@
}
},
{
- "id": 13997,
+ "id": 14466,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165358,7 +171544,7 @@
}
},
{
- "id": 13998,
+ "id": 14467,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165367,7 +171553,7 @@
}
},
{
- "id": 13999,
+ "id": 14468,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165376,7 +171562,7 @@
}
},
{
- "id": 14000,
+ "id": 14469,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165385,7 +171571,7 @@
}
},
{
- "id": 14001,
+ "id": 14470,
"properties": {
"facing": "east",
"half": "bottom",
@@ -165409,20 +171595,20 @@
},
"states": [
{
- "id": 5855,
+ "id": 6021,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 5856,
+ "id": 6022,
"properties": {
"axis": "y"
}
},
{
- "id": 5857,
+ "id": 6023,
"properties": {
"axis": "z"
}
@@ -165437,7 +171623,7 @@
"states": [
{
"default": true,
- "id": 19871
+ "id": 20340
}
]
},
@@ -165459,21 +171645,21 @@
},
"states": [
{
- "id": 19875,
+ "id": 20344,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 19876,
+ "id": 20345,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 19877,
+ "id": 20346,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -165481,21 +171667,21 @@
},
{
"default": true,
- "id": 19878,
+ "id": 20347,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 19879,
+ "id": 20348,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 19880,
+ "id": 20349,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -165536,7 +171722,7 @@
},
"states": [
{
- "id": 19881,
+ "id": 20350,
"properties": {
"facing": "north",
"half": "top",
@@ -165545,7 +171731,7 @@
}
},
{
- "id": 19882,
+ "id": 20351,
"properties": {
"facing": "north",
"half": "top",
@@ -165554,7 +171740,7 @@
}
},
{
- "id": 19883,
+ "id": 20352,
"properties": {
"facing": "north",
"half": "top",
@@ -165563,7 +171749,7 @@
}
},
{
- "id": 19884,
+ "id": 20353,
"properties": {
"facing": "north",
"half": "top",
@@ -165572,7 +171758,7 @@
}
},
{
- "id": 19885,
+ "id": 20354,
"properties": {
"facing": "north",
"half": "top",
@@ -165581,7 +171767,7 @@
}
},
{
- "id": 19886,
+ "id": 20355,
"properties": {
"facing": "north",
"half": "top",
@@ -165590,7 +171776,7 @@
}
},
{
- "id": 19887,
+ "id": 20356,
"properties": {
"facing": "north",
"half": "top",
@@ -165599,7 +171785,7 @@
}
},
{
- "id": 19888,
+ "id": 20357,
"properties": {
"facing": "north",
"half": "top",
@@ -165608,7 +171794,7 @@
}
},
{
- "id": 19889,
+ "id": 20358,
"properties": {
"facing": "north",
"half": "top",
@@ -165617,7 +171803,7 @@
}
},
{
- "id": 19890,
+ "id": 20359,
"properties": {
"facing": "north",
"half": "top",
@@ -165626,7 +171812,7 @@
}
},
{
- "id": 19891,
+ "id": 20360,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165636,7 +171822,7 @@
},
{
"default": true,
- "id": 19892,
+ "id": 20361,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165645,7 +171831,7 @@
}
},
{
- "id": 19893,
+ "id": 20362,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165654,7 +171840,7 @@
}
},
{
- "id": 19894,
+ "id": 20363,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165663,7 +171849,7 @@
}
},
{
- "id": 19895,
+ "id": 20364,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165672,7 +171858,7 @@
}
},
{
- "id": 19896,
+ "id": 20365,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165681,7 +171867,7 @@
}
},
{
- "id": 19897,
+ "id": 20366,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165690,7 +171876,7 @@
}
},
{
- "id": 19898,
+ "id": 20367,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165699,7 +171885,7 @@
}
},
{
- "id": 19899,
+ "id": 20368,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165708,7 +171894,7 @@
}
},
{
- "id": 19900,
+ "id": 20369,
"properties": {
"facing": "north",
"half": "bottom",
@@ -165717,7 +171903,7 @@
}
},
{
- "id": 19901,
+ "id": 20370,
"properties": {
"facing": "south",
"half": "top",
@@ -165726,7 +171912,7 @@
}
},
{
- "id": 19902,
+ "id": 20371,
"properties": {
"facing": "south",
"half": "top",
@@ -165735,7 +171921,7 @@
}
},
{
- "id": 19903,
+ "id": 20372,
"properties": {
"facing": "south",
"half": "top",
@@ -165744,7 +171930,7 @@
}
},
{
- "id": 19904,
+ "id": 20373,
"properties": {
"facing": "south",
"half": "top",
@@ -165753,7 +171939,7 @@
}
},
{
- "id": 19905,
+ "id": 20374,
"properties": {
"facing": "south",
"half": "top",
@@ -165762,7 +171948,7 @@
}
},
{
- "id": 19906,
+ "id": 20375,
"properties": {
"facing": "south",
"half": "top",
@@ -165771,7 +171957,7 @@
}
},
{
- "id": 19907,
+ "id": 20376,
"properties": {
"facing": "south",
"half": "top",
@@ -165780,7 +171966,7 @@
}
},
{
- "id": 19908,
+ "id": 20377,
"properties": {
"facing": "south",
"half": "top",
@@ -165789,7 +171975,7 @@
}
},
{
- "id": 19909,
+ "id": 20378,
"properties": {
"facing": "south",
"half": "top",
@@ -165798,7 +171984,7 @@
}
},
{
- "id": 19910,
+ "id": 20379,
"properties": {
"facing": "south",
"half": "top",
@@ -165807,7 +171993,7 @@
}
},
{
- "id": 19911,
+ "id": 20380,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165816,7 +172002,7 @@
}
},
{
- "id": 19912,
+ "id": 20381,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165825,7 +172011,7 @@
}
},
{
- "id": 19913,
+ "id": 20382,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165834,7 +172020,7 @@
}
},
{
- "id": 19914,
+ "id": 20383,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165843,7 +172029,7 @@
}
},
{
- "id": 19915,
+ "id": 20384,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165852,7 +172038,7 @@
}
},
{
- "id": 19916,
+ "id": 20385,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165861,7 +172047,7 @@
}
},
{
- "id": 19917,
+ "id": 20386,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165870,7 +172056,7 @@
}
},
{
- "id": 19918,
+ "id": 20387,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165879,7 +172065,7 @@
}
},
{
- "id": 19919,
+ "id": 20388,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165888,7 +172074,7 @@
}
},
{
- "id": 19920,
+ "id": 20389,
"properties": {
"facing": "south",
"half": "bottom",
@@ -165897,7 +172083,7 @@
}
},
{
- "id": 19921,
+ "id": 20390,
"properties": {
"facing": "west",
"half": "top",
@@ -165906,7 +172092,7 @@
}
},
{
- "id": 19922,
+ "id": 20391,
"properties": {
"facing": "west",
"half": "top",
@@ -165915,7 +172101,7 @@
}
},
{
- "id": 19923,
+ "id": 20392,
"properties": {
"facing": "west",
"half": "top",
@@ -165924,7 +172110,7 @@
}
},
{
- "id": 19924,
+ "id": 20393,
"properties": {
"facing": "west",
"half": "top",
@@ -165933,7 +172119,7 @@
}
},
{
- "id": 19925,
+ "id": 20394,
"properties": {
"facing": "west",
"half": "top",
@@ -165942,7 +172128,7 @@
}
},
{
- "id": 19926,
+ "id": 20395,
"properties": {
"facing": "west",
"half": "top",
@@ -165951,7 +172137,7 @@
}
},
{
- "id": 19927,
+ "id": 20396,
"properties": {
"facing": "west",
"half": "top",
@@ -165960,7 +172146,7 @@
}
},
{
- "id": 19928,
+ "id": 20397,
"properties": {
"facing": "west",
"half": "top",
@@ -165969,7 +172155,7 @@
}
},
{
- "id": 19929,
+ "id": 20398,
"properties": {
"facing": "west",
"half": "top",
@@ -165978,7 +172164,7 @@
}
},
{
- "id": 19930,
+ "id": 20399,
"properties": {
"facing": "west",
"half": "top",
@@ -165987,7 +172173,7 @@
}
},
{
- "id": 19931,
+ "id": 20400,
"properties": {
"facing": "west",
"half": "bottom",
@@ -165996,7 +172182,7 @@
}
},
{
- "id": 19932,
+ "id": 20401,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166005,7 +172191,7 @@
}
},
{
- "id": 19933,
+ "id": 20402,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166014,7 +172200,7 @@
}
},
{
- "id": 19934,
+ "id": 20403,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166023,7 +172209,7 @@
}
},
{
- "id": 19935,
+ "id": 20404,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166032,7 +172218,7 @@
}
},
{
- "id": 19936,
+ "id": 20405,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166041,7 +172227,7 @@
}
},
{
- "id": 19937,
+ "id": 20406,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166050,7 +172236,7 @@
}
},
{
- "id": 19938,
+ "id": 20407,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166059,7 +172245,7 @@
}
},
{
- "id": 19939,
+ "id": 20408,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166068,7 +172254,7 @@
}
},
{
- "id": 19940,
+ "id": 20409,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166077,7 +172263,7 @@
}
},
{
- "id": 19941,
+ "id": 20410,
"properties": {
"facing": "east",
"half": "top",
@@ -166086,7 +172272,7 @@
}
},
{
- "id": 19942,
+ "id": 20411,
"properties": {
"facing": "east",
"half": "top",
@@ -166095,7 +172281,7 @@
}
},
{
- "id": 19943,
+ "id": 20412,
"properties": {
"facing": "east",
"half": "top",
@@ -166104,7 +172290,7 @@
}
},
{
- "id": 19944,
+ "id": 20413,
"properties": {
"facing": "east",
"half": "top",
@@ -166113,7 +172299,7 @@
}
},
{
- "id": 19945,
+ "id": 20414,
"properties": {
"facing": "east",
"half": "top",
@@ -166122,7 +172308,7 @@
}
},
{
- "id": 19946,
+ "id": 20415,
"properties": {
"facing": "east",
"half": "top",
@@ -166131,7 +172317,7 @@
}
},
{
- "id": 19947,
+ "id": 20416,
"properties": {
"facing": "east",
"half": "top",
@@ -166140,7 +172326,7 @@
}
},
{
- "id": 19948,
+ "id": 20417,
"properties": {
"facing": "east",
"half": "top",
@@ -166149,7 +172335,7 @@
}
},
{
- "id": 19949,
+ "id": 20418,
"properties": {
"facing": "east",
"half": "top",
@@ -166158,7 +172344,7 @@
}
},
{
- "id": 19950,
+ "id": 20419,
"properties": {
"facing": "east",
"half": "top",
@@ -166167,7 +172353,7 @@
}
},
{
- "id": 19951,
+ "id": 20420,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166176,7 +172362,7 @@
}
},
{
- "id": 19952,
+ "id": 20421,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166185,7 +172371,7 @@
}
},
{
- "id": 19953,
+ "id": 20422,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166194,7 +172380,7 @@
}
},
{
- "id": 19954,
+ "id": 20423,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166203,7 +172389,7 @@
}
},
{
- "id": 19955,
+ "id": 20424,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166212,7 +172398,7 @@
}
},
{
- "id": 19956,
+ "id": 20425,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166221,7 +172407,7 @@
}
},
{
- "id": 19957,
+ "id": 20426,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166230,7 +172416,7 @@
}
},
{
- "id": 19958,
+ "id": 20427,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166239,7 +172425,7 @@
}
},
{
- "id": 19959,
+ "id": 20428,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166248,7 +172434,7 @@
}
},
{
- "id": 19960,
+ "id": 20429,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166295,7 +172481,7 @@
},
"states": [
{
- "id": 19961,
+ "id": 20430,
"properties": {
"east": "none",
"north": "none",
@@ -166306,7 +172492,7 @@
}
},
{
- "id": 19962,
+ "id": 20431,
"properties": {
"east": "none",
"north": "none",
@@ -166317,7 +172503,7 @@
}
},
{
- "id": 19963,
+ "id": 20432,
"properties": {
"east": "none",
"north": "none",
@@ -166329,7 +172515,7 @@
},
{
"default": true,
- "id": 19964,
+ "id": 20433,
"properties": {
"east": "none",
"north": "none",
@@ -166340,7 +172526,7 @@
}
},
{
- "id": 19965,
+ "id": 20434,
"properties": {
"east": "none",
"north": "none",
@@ -166351,7 +172537,7 @@
}
},
{
- "id": 19966,
+ "id": 20435,
"properties": {
"east": "none",
"north": "none",
@@ -166362,7 +172548,7 @@
}
},
{
- "id": 19967,
+ "id": 20436,
"properties": {
"east": "none",
"north": "none",
@@ -166373,7 +172559,7 @@
}
},
{
- "id": 19968,
+ "id": 20437,
"properties": {
"east": "none",
"north": "none",
@@ -166384,7 +172570,7 @@
}
},
{
- "id": 19969,
+ "id": 20438,
"properties": {
"east": "none",
"north": "none",
@@ -166395,7 +172581,7 @@
}
},
{
- "id": 19970,
+ "id": 20439,
"properties": {
"east": "none",
"north": "none",
@@ -166406,7 +172592,7 @@
}
},
{
- "id": 19971,
+ "id": 20440,
"properties": {
"east": "none",
"north": "none",
@@ -166417,7 +172603,7 @@
}
},
{
- "id": 19972,
+ "id": 20441,
"properties": {
"east": "none",
"north": "none",
@@ -166428,7 +172614,7 @@
}
},
{
- "id": 19973,
+ "id": 20442,
"properties": {
"east": "none",
"north": "none",
@@ -166439,7 +172625,7 @@
}
},
{
- "id": 19974,
+ "id": 20443,
"properties": {
"east": "none",
"north": "none",
@@ -166450,7 +172636,7 @@
}
},
{
- "id": 19975,
+ "id": 20444,
"properties": {
"east": "none",
"north": "none",
@@ -166461,7 +172647,7 @@
}
},
{
- "id": 19976,
+ "id": 20445,
"properties": {
"east": "none",
"north": "none",
@@ -166472,7 +172658,7 @@
}
},
{
- "id": 19977,
+ "id": 20446,
"properties": {
"east": "none",
"north": "none",
@@ -166483,7 +172669,7 @@
}
},
{
- "id": 19978,
+ "id": 20447,
"properties": {
"east": "none",
"north": "none",
@@ -166494,7 +172680,7 @@
}
},
{
- "id": 19979,
+ "id": 20448,
"properties": {
"east": "none",
"north": "none",
@@ -166505,7 +172691,7 @@
}
},
{
- "id": 19980,
+ "id": 20449,
"properties": {
"east": "none",
"north": "none",
@@ -166516,7 +172702,7 @@
}
},
{
- "id": 19981,
+ "id": 20450,
"properties": {
"east": "none",
"north": "none",
@@ -166527,7 +172713,7 @@
}
},
{
- "id": 19982,
+ "id": 20451,
"properties": {
"east": "none",
"north": "none",
@@ -166538,7 +172724,7 @@
}
},
{
- "id": 19983,
+ "id": 20452,
"properties": {
"east": "none",
"north": "none",
@@ -166549,7 +172735,7 @@
}
},
{
- "id": 19984,
+ "id": 20453,
"properties": {
"east": "none",
"north": "none",
@@ -166560,7 +172746,7 @@
}
},
{
- "id": 19985,
+ "id": 20454,
"properties": {
"east": "none",
"north": "none",
@@ -166571,7 +172757,7 @@
}
},
{
- "id": 19986,
+ "id": 20455,
"properties": {
"east": "none",
"north": "none",
@@ -166582,7 +172768,7 @@
}
},
{
- "id": 19987,
+ "id": 20456,
"properties": {
"east": "none",
"north": "none",
@@ -166593,7 +172779,7 @@
}
},
{
- "id": 19988,
+ "id": 20457,
"properties": {
"east": "none",
"north": "none",
@@ -166604,7 +172790,7 @@
}
},
{
- "id": 19989,
+ "id": 20458,
"properties": {
"east": "none",
"north": "none",
@@ -166615,7 +172801,7 @@
}
},
{
- "id": 19990,
+ "id": 20459,
"properties": {
"east": "none",
"north": "none",
@@ -166626,7 +172812,7 @@
}
},
{
- "id": 19991,
+ "id": 20460,
"properties": {
"east": "none",
"north": "none",
@@ -166637,7 +172823,7 @@
}
},
{
- "id": 19992,
+ "id": 20461,
"properties": {
"east": "none",
"north": "none",
@@ -166648,7 +172834,7 @@
}
},
{
- "id": 19993,
+ "id": 20462,
"properties": {
"east": "none",
"north": "none",
@@ -166659,7 +172845,7 @@
}
},
{
- "id": 19994,
+ "id": 20463,
"properties": {
"east": "none",
"north": "none",
@@ -166670,7 +172856,7 @@
}
},
{
- "id": 19995,
+ "id": 20464,
"properties": {
"east": "none",
"north": "none",
@@ -166681,7 +172867,7 @@
}
},
{
- "id": 19996,
+ "id": 20465,
"properties": {
"east": "none",
"north": "none",
@@ -166692,7 +172878,7 @@
}
},
{
- "id": 19997,
+ "id": 20466,
"properties": {
"east": "none",
"north": "low",
@@ -166703,7 +172889,7 @@
}
},
{
- "id": 19998,
+ "id": 20467,
"properties": {
"east": "none",
"north": "low",
@@ -166714,7 +172900,7 @@
}
},
{
- "id": 19999,
+ "id": 20468,
"properties": {
"east": "none",
"north": "low",
@@ -166725,7 +172911,7 @@
}
},
{
- "id": 20000,
+ "id": 20469,
"properties": {
"east": "none",
"north": "low",
@@ -166736,7 +172922,7 @@
}
},
{
- "id": 20001,
+ "id": 20470,
"properties": {
"east": "none",
"north": "low",
@@ -166747,7 +172933,7 @@
}
},
{
- "id": 20002,
+ "id": 20471,
"properties": {
"east": "none",
"north": "low",
@@ -166758,7 +172944,7 @@
}
},
{
- "id": 20003,
+ "id": 20472,
"properties": {
"east": "none",
"north": "low",
@@ -166769,7 +172955,7 @@
}
},
{
- "id": 20004,
+ "id": 20473,
"properties": {
"east": "none",
"north": "low",
@@ -166780,7 +172966,7 @@
}
},
{
- "id": 20005,
+ "id": 20474,
"properties": {
"east": "none",
"north": "low",
@@ -166791,7 +172977,7 @@
}
},
{
- "id": 20006,
+ "id": 20475,
"properties": {
"east": "none",
"north": "low",
@@ -166802,7 +172988,7 @@
}
},
{
- "id": 20007,
+ "id": 20476,
"properties": {
"east": "none",
"north": "low",
@@ -166813,7 +172999,7 @@
}
},
{
- "id": 20008,
+ "id": 20477,
"properties": {
"east": "none",
"north": "low",
@@ -166824,7 +173010,7 @@
}
},
{
- "id": 20009,
+ "id": 20478,
"properties": {
"east": "none",
"north": "low",
@@ -166835,7 +173021,7 @@
}
},
{
- "id": 20010,
+ "id": 20479,
"properties": {
"east": "none",
"north": "low",
@@ -166846,7 +173032,7 @@
}
},
{
- "id": 20011,
+ "id": 20480,
"properties": {
"east": "none",
"north": "low",
@@ -166857,7 +173043,7 @@
}
},
{
- "id": 20012,
+ "id": 20481,
"properties": {
"east": "none",
"north": "low",
@@ -166868,7 +173054,7 @@
}
},
{
- "id": 20013,
+ "id": 20482,
"properties": {
"east": "none",
"north": "low",
@@ -166879,7 +173065,7 @@
}
},
{
- "id": 20014,
+ "id": 20483,
"properties": {
"east": "none",
"north": "low",
@@ -166890,7 +173076,7 @@
}
},
{
- "id": 20015,
+ "id": 20484,
"properties": {
"east": "none",
"north": "low",
@@ -166901,7 +173087,7 @@
}
},
{
- "id": 20016,
+ "id": 20485,
"properties": {
"east": "none",
"north": "low",
@@ -166912,7 +173098,7 @@
}
},
{
- "id": 20017,
+ "id": 20486,
"properties": {
"east": "none",
"north": "low",
@@ -166923,7 +173109,7 @@
}
},
{
- "id": 20018,
+ "id": 20487,
"properties": {
"east": "none",
"north": "low",
@@ -166934,7 +173120,7 @@
}
},
{
- "id": 20019,
+ "id": 20488,
"properties": {
"east": "none",
"north": "low",
@@ -166945,7 +173131,7 @@
}
},
{
- "id": 20020,
+ "id": 20489,
"properties": {
"east": "none",
"north": "low",
@@ -166956,7 +173142,7 @@
}
},
{
- "id": 20021,
+ "id": 20490,
"properties": {
"east": "none",
"north": "low",
@@ -166967,7 +173153,7 @@
}
},
{
- "id": 20022,
+ "id": 20491,
"properties": {
"east": "none",
"north": "low",
@@ -166978,7 +173164,7 @@
}
},
{
- "id": 20023,
+ "id": 20492,
"properties": {
"east": "none",
"north": "low",
@@ -166989,7 +173175,7 @@
}
},
{
- "id": 20024,
+ "id": 20493,
"properties": {
"east": "none",
"north": "low",
@@ -167000,7 +173186,7 @@
}
},
{
- "id": 20025,
+ "id": 20494,
"properties": {
"east": "none",
"north": "low",
@@ -167011,7 +173197,7 @@
}
},
{
- "id": 20026,
+ "id": 20495,
"properties": {
"east": "none",
"north": "low",
@@ -167022,7 +173208,7 @@
}
},
{
- "id": 20027,
+ "id": 20496,
"properties": {
"east": "none",
"north": "low",
@@ -167033,7 +173219,7 @@
}
},
{
- "id": 20028,
+ "id": 20497,
"properties": {
"east": "none",
"north": "low",
@@ -167044,7 +173230,7 @@
}
},
{
- "id": 20029,
+ "id": 20498,
"properties": {
"east": "none",
"north": "low",
@@ -167055,7 +173241,7 @@
}
},
{
- "id": 20030,
+ "id": 20499,
"properties": {
"east": "none",
"north": "low",
@@ -167066,7 +173252,7 @@
}
},
{
- "id": 20031,
+ "id": 20500,
"properties": {
"east": "none",
"north": "low",
@@ -167077,7 +173263,7 @@
}
},
{
- "id": 20032,
+ "id": 20501,
"properties": {
"east": "none",
"north": "low",
@@ -167088,7 +173274,7 @@
}
},
{
- "id": 20033,
+ "id": 20502,
"properties": {
"east": "none",
"north": "tall",
@@ -167099,7 +173285,7 @@
}
},
{
- "id": 20034,
+ "id": 20503,
"properties": {
"east": "none",
"north": "tall",
@@ -167110,7 +173296,7 @@
}
},
{
- "id": 20035,
+ "id": 20504,
"properties": {
"east": "none",
"north": "tall",
@@ -167121,7 +173307,7 @@
}
},
{
- "id": 20036,
+ "id": 20505,
"properties": {
"east": "none",
"north": "tall",
@@ -167132,7 +173318,7 @@
}
},
{
- "id": 20037,
+ "id": 20506,
"properties": {
"east": "none",
"north": "tall",
@@ -167143,7 +173329,7 @@
}
},
{
- "id": 20038,
+ "id": 20507,
"properties": {
"east": "none",
"north": "tall",
@@ -167154,7 +173340,7 @@
}
},
{
- "id": 20039,
+ "id": 20508,
"properties": {
"east": "none",
"north": "tall",
@@ -167165,7 +173351,7 @@
}
},
{
- "id": 20040,
+ "id": 20509,
"properties": {
"east": "none",
"north": "tall",
@@ -167176,7 +173362,7 @@
}
},
{
- "id": 20041,
+ "id": 20510,
"properties": {
"east": "none",
"north": "tall",
@@ -167187,7 +173373,7 @@
}
},
{
- "id": 20042,
+ "id": 20511,
"properties": {
"east": "none",
"north": "tall",
@@ -167198,7 +173384,7 @@
}
},
{
- "id": 20043,
+ "id": 20512,
"properties": {
"east": "none",
"north": "tall",
@@ -167209,7 +173395,7 @@
}
},
{
- "id": 20044,
+ "id": 20513,
"properties": {
"east": "none",
"north": "tall",
@@ -167220,7 +173406,7 @@
}
},
{
- "id": 20045,
+ "id": 20514,
"properties": {
"east": "none",
"north": "tall",
@@ -167231,7 +173417,7 @@
}
},
{
- "id": 20046,
+ "id": 20515,
"properties": {
"east": "none",
"north": "tall",
@@ -167242,7 +173428,7 @@
}
},
{
- "id": 20047,
+ "id": 20516,
"properties": {
"east": "none",
"north": "tall",
@@ -167253,7 +173439,7 @@
}
},
{
- "id": 20048,
+ "id": 20517,
"properties": {
"east": "none",
"north": "tall",
@@ -167264,7 +173450,7 @@
}
},
{
- "id": 20049,
+ "id": 20518,
"properties": {
"east": "none",
"north": "tall",
@@ -167275,7 +173461,7 @@
}
},
{
- "id": 20050,
+ "id": 20519,
"properties": {
"east": "none",
"north": "tall",
@@ -167286,7 +173472,7 @@
}
},
{
- "id": 20051,
+ "id": 20520,
"properties": {
"east": "none",
"north": "tall",
@@ -167297,7 +173483,7 @@
}
},
{
- "id": 20052,
+ "id": 20521,
"properties": {
"east": "none",
"north": "tall",
@@ -167308,7 +173494,7 @@
}
},
{
- "id": 20053,
+ "id": 20522,
"properties": {
"east": "none",
"north": "tall",
@@ -167319,7 +173505,7 @@
}
},
{
- "id": 20054,
+ "id": 20523,
"properties": {
"east": "none",
"north": "tall",
@@ -167330,7 +173516,7 @@
}
},
{
- "id": 20055,
+ "id": 20524,
"properties": {
"east": "none",
"north": "tall",
@@ -167341,7 +173527,7 @@
}
},
{
- "id": 20056,
+ "id": 20525,
"properties": {
"east": "none",
"north": "tall",
@@ -167352,7 +173538,7 @@
}
},
{
- "id": 20057,
+ "id": 20526,
"properties": {
"east": "none",
"north": "tall",
@@ -167363,7 +173549,7 @@
}
},
{
- "id": 20058,
+ "id": 20527,
"properties": {
"east": "none",
"north": "tall",
@@ -167374,7 +173560,7 @@
}
},
{
- "id": 20059,
+ "id": 20528,
"properties": {
"east": "none",
"north": "tall",
@@ -167385,7 +173571,7 @@
}
},
{
- "id": 20060,
+ "id": 20529,
"properties": {
"east": "none",
"north": "tall",
@@ -167396,7 +173582,7 @@
}
},
{
- "id": 20061,
+ "id": 20530,
"properties": {
"east": "none",
"north": "tall",
@@ -167407,7 +173593,7 @@
}
},
{
- "id": 20062,
+ "id": 20531,
"properties": {
"east": "none",
"north": "tall",
@@ -167418,7 +173604,7 @@
}
},
{
- "id": 20063,
+ "id": 20532,
"properties": {
"east": "none",
"north": "tall",
@@ -167429,7 +173615,7 @@
}
},
{
- "id": 20064,
+ "id": 20533,
"properties": {
"east": "none",
"north": "tall",
@@ -167440,7 +173626,7 @@
}
},
{
- "id": 20065,
+ "id": 20534,
"properties": {
"east": "none",
"north": "tall",
@@ -167451,7 +173637,7 @@
}
},
{
- "id": 20066,
+ "id": 20535,
"properties": {
"east": "none",
"north": "tall",
@@ -167462,7 +173648,7 @@
}
},
{
- "id": 20067,
+ "id": 20536,
"properties": {
"east": "none",
"north": "tall",
@@ -167473,7 +173659,7 @@
}
},
{
- "id": 20068,
+ "id": 20537,
"properties": {
"east": "none",
"north": "tall",
@@ -167484,7 +173670,7 @@
}
},
{
- "id": 20069,
+ "id": 20538,
"properties": {
"east": "low",
"north": "none",
@@ -167495,7 +173681,7 @@
}
},
{
- "id": 20070,
+ "id": 20539,
"properties": {
"east": "low",
"north": "none",
@@ -167506,7 +173692,7 @@
}
},
{
- "id": 20071,
+ "id": 20540,
"properties": {
"east": "low",
"north": "none",
@@ -167517,7 +173703,7 @@
}
},
{
- "id": 20072,
+ "id": 20541,
"properties": {
"east": "low",
"north": "none",
@@ -167528,7 +173714,7 @@
}
},
{
- "id": 20073,
+ "id": 20542,
"properties": {
"east": "low",
"north": "none",
@@ -167539,7 +173725,7 @@
}
},
{
- "id": 20074,
+ "id": 20543,
"properties": {
"east": "low",
"north": "none",
@@ -167550,7 +173736,7 @@
}
},
{
- "id": 20075,
+ "id": 20544,
"properties": {
"east": "low",
"north": "none",
@@ -167561,7 +173747,7 @@
}
},
{
- "id": 20076,
+ "id": 20545,
"properties": {
"east": "low",
"north": "none",
@@ -167572,7 +173758,7 @@
}
},
{
- "id": 20077,
+ "id": 20546,
"properties": {
"east": "low",
"north": "none",
@@ -167583,7 +173769,7 @@
}
},
{
- "id": 20078,
+ "id": 20547,
"properties": {
"east": "low",
"north": "none",
@@ -167594,7 +173780,7 @@
}
},
{
- "id": 20079,
+ "id": 20548,
"properties": {
"east": "low",
"north": "none",
@@ -167605,7 +173791,7 @@
}
},
{
- "id": 20080,
+ "id": 20549,
"properties": {
"east": "low",
"north": "none",
@@ -167616,7 +173802,7 @@
}
},
{
- "id": 20081,
+ "id": 20550,
"properties": {
"east": "low",
"north": "none",
@@ -167627,7 +173813,7 @@
}
},
{
- "id": 20082,
+ "id": 20551,
"properties": {
"east": "low",
"north": "none",
@@ -167638,7 +173824,7 @@
}
},
{
- "id": 20083,
+ "id": 20552,
"properties": {
"east": "low",
"north": "none",
@@ -167649,7 +173835,7 @@
}
},
{
- "id": 20084,
+ "id": 20553,
"properties": {
"east": "low",
"north": "none",
@@ -167660,7 +173846,7 @@
}
},
{
- "id": 20085,
+ "id": 20554,
"properties": {
"east": "low",
"north": "none",
@@ -167671,7 +173857,7 @@
}
},
{
- "id": 20086,
+ "id": 20555,
"properties": {
"east": "low",
"north": "none",
@@ -167682,7 +173868,7 @@
}
},
{
- "id": 20087,
+ "id": 20556,
"properties": {
"east": "low",
"north": "none",
@@ -167693,7 +173879,7 @@
}
},
{
- "id": 20088,
+ "id": 20557,
"properties": {
"east": "low",
"north": "none",
@@ -167704,7 +173890,7 @@
}
},
{
- "id": 20089,
+ "id": 20558,
"properties": {
"east": "low",
"north": "none",
@@ -167715,7 +173901,7 @@
}
},
{
- "id": 20090,
+ "id": 20559,
"properties": {
"east": "low",
"north": "none",
@@ -167726,7 +173912,7 @@
}
},
{
- "id": 20091,
+ "id": 20560,
"properties": {
"east": "low",
"north": "none",
@@ -167737,7 +173923,7 @@
}
},
{
- "id": 20092,
+ "id": 20561,
"properties": {
"east": "low",
"north": "none",
@@ -167748,7 +173934,7 @@
}
},
{
- "id": 20093,
+ "id": 20562,
"properties": {
"east": "low",
"north": "none",
@@ -167759,7 +173945,7 @@
}
},
{
- "id": 20094,
+ "id": 20563,
"properties": {
"east": "low",
"north": "none",
@@ -167770,7 +173956,7 @@
}
},
{
- "id": 20095,
+ "id": 20564,
"properties": {
"east": "low",
"north": "none",
@@ -167781,7 +173967,7 @@
}
},
{
- "id": 20096,
+ "id": 20565,
"properties": {
"east": "low",
"north": "none",
@@ -167792,7 +173978,7 @@
}
},
{
- "id": 20097,
+ "id": 20566,
"properties": {
"east": "low",
"north": "none",
@@ -167803,7 +173989,7 @@
}
},
{
- "id": 20098,
+ "id": 20567,
"properties": {
"east": "low",
"north": "none",
@@ -167814,7 +174000,7 @@
}
},
{
- "id": 20099,
+ "id": 20568,
"properties": {
"east": "low",
"north": "none",
@@ -167825,7 +174011,7 @@
}
},
{
- "id": 20100,
+ "id": 20569,
"properties": {
"east": "low",
"north": "none",
@@ -167836,7 +174022,7 @@
}
},
{
- "id": 20101,
+ "id": 20570,
"properties": {
"east": "low",
"north": "none",
@@ -167847,7 +174033,7 @@
}
},
{
- "id": 20102,
+ "id": 20571,
"properties": {
"east": "low",
"north": "none",
@@ -167858,7 +174044,7 @@
}
},
{
- "id": 20103,
+ "id": 20572,
"properties": {
"east": "low",
"north": "none",
@@ -167869,7 +174055,7 @@
}
},
{
- "id": 20104,
+ "id": 20573,
"properties": {
"east": "low",
"north": "none",
@@ -167880,7 +174066,7 @@
}
},
{
- "id": 20105,
+ "id": 20574,
"properties": {
"east": "low",
"north": "low",
@@ -167891,7 +174077,7 @@
}
},
{
- "id": 20106,
+ "id": 20575,
"properties": {
"east": "low",
"north": "low",
@@ -167902,7 +174088,7 @@
}
},
{
- "id": 20107,
+ "id": 20576,
"properties": {
"east": "low",
"north": "low",
@@ -167913,7 +174099,7 @@
}
},
{
- "id": 20108,
+ "id": 20577,
"properties": {
"east": "low",
"north": "low",
@@ -167924,7 +174110,7 @@
}
},
{
- "id": 20109,
+ "id": 20578,
"properties": {
"east": "low",
"north": "low",
@@ -167935,7 +174121,7 @@
}
},
{
- "id": 20110,
+ "id": 20579,
"properties": {
"east": "low",
"north": "low",
@@ -167946,7 +174132,7 @@
}
},
{
- "id": 20111,
+ "id": 20580,
"properties": {
"east": "low",
"north": "low",
@@ -167957,7 +174143,7 @@
}
},
{
- "id": 20112,
+ "id": 20581,
"properties": {
"east": "low",
"north": "low",
@@ -167968,7 +174154,7 @@
}
},
{
- "id": 20113,
+ "id": 20582,
"properties": {
"east": "low",
"north": "low",
@@ -167979,7 +174165,7 @@
}
},
{
- "id": 20114,
+ "id": 20583,
"properties": {
"east": "low",
"north": "low",
@@ -167990,7 +174176,7 @@
}
},
{
- "id": 20115,
+ "id": 20584,
"properties": {
"east": "low",
"north": "low",
@@ -168001,7 +174187,7 @@
}
},
{
- "id": 20116,
+ "id": 20585,
"properties": {
"east": "low",
"north": "low",
@@ -168012,7 +174198,7 @@
}
},
{
- "id": 20117,
+ "id": 20586,
"properties": {
"east": "low",
"north": "low",
@@ -168023,7 +174209,7 @@
}
},
{
- "id": 20118,
+ "id": 20587,
"properties": {
"east": "low",
"north": "low",
@@ -168034,7 +174220,7 @@
}
},
{
- "id": 20119,
+ "id": 20588,
"properties": {
"east": "low",
"north": "low",
@@ -168045,7 +174231,7 @@
}
},
{
- "id": 20120,
+ "id": 20589,
"properties": {
"east": "low",
"north": "low",
@@ -168056,7 +174242,7 @@
}
},
{
- "id": 20121,
+ "id": 20590,
"properties": {
"east": "low",
"north": "low",
@@ -168067,7 +174253,7 @@
}
},
{
- "id": 20122,
+ "id": 20591,
"properties": {
"east": "low",
"north": "low",
@@ -168078,7 +174264,7 @@
}
},
{
- "id": 20123,
+ "id": 20592,
"properties": {
"east": "low",
"north": "low",
@@ -168089,7 +174275,7 @@
}
},
{
- "id": 20124,
+ "id": 20593,
"properties": {
"east": "low",
"north": "low",
@@ -168100,7 +174286,7 @@
}
},
{
- "id": 20125,
+ "id": 20594,
"properties": {
"east": "low",
"north": "low",
@@ -168111,7 +174297,7 @@
}
},
{
- "id": 20126,
+ "id": 20595,
"properties": {
"east": "low",
"north": "low",
@@ -168122,7 +174308,7 @@
}
},
{
- "id": 20127,
+ "id": 20596,
"properties": {
"east": "low",
"north": "low",
@@ -168133,7 +174319,7 @@
}
},
{
- "id": 20128,
+ "id": 20597,
"properties": {
"east": "low",
"north": "low",
@@ -168144,7 +174330,7 @@
}
},
{
- "id": 20129,
+ "id": 20598,
"properties": {
"east": "low",
"north": "low",
@@ -168155,7 +174341,7 @@
}
},
{
- "id": 20130,
+ "id": 20599,
"properties": {
"east": "low",
"north": "low",
@@ -168166,7 +174352,7 @@
}
},
{
- "id": 20131,
+ "id": 20600,
"properties": {
"east": "low",
"north": "low",
@@ -168177,7 +174363,7 @@
}
},
{
- "id": 20132,
+ "id": 20601,
"properties": {
"east": "low",
"north": "low",
@@ -168188,7 +174374,7 @@
}
},
{
- "id": 20133,
+ "id": 20602,
"properties": {
"east": "low",
"north": "low",
@@ -168199,7 +174385,7 @@
}
},
{
- "id": 20134,
+ "id": 20603,
"properties": {
"east": "low",
"north": "low",
@@ -168210,7 +174396,7 @@
}
},
{
- "id": 20135,
+ "id": 20604,
"properties": {
"east": "low",
"north": "low",
@@ -168221,7 +174407,7 @@
}
},
{
- "id": 20136,
+ "id": 20605,
"properties": {
"east": "low",
"north": "low",
@@ -168232,7 +174418,7 @@
}
},
{
- "id": 20137,
+ "id": 20606,
"properties": {
"east": "low",
"north": "low",
@@ -168243,7 +174429,7 @@
}
},
{
- "id": 20138,
+ "id": 20607,
"properties": {
"east": "low",
"north": "low",
@@ -168254,7 +174440,7 @@
}
},
{
- "id": 20139,
+ "id": 20608,
"properties": {
"east": "low",
"north": "low",
@@ -168265,7 +174451,7 @@
}
},
{
- "id": 20140,
+ "id": 20609,
"properties": {
"east": "low",
"north": "low",
@@ -168276,7 +174462,7 @@
}
},
{
- "id": 20141,
+ "id": 20610,
"properties": {
"east": "low",
"north": "tall",
@@ -168287,7 +174473,7 @@
}
},
{
- "id": 20142,
+ "id": 20611,
"properties": {
"east": "low",
"north": "tall",
@@ -168298,7 +174484,7 @@
}
},
{
- "id": 20143,
+ "id": 20612,
"properties": {
"east": "low",
"north": "tall",
@@ -168309,7 +174495,7 @@
}
},
{
- "id": 20144,
+ "id": 20613,
"properties": {
"east": "low",
"north": "tall",
@@ -168320,7 +174506,7 @@
}
},
{
- "id": 20145,
+ "id": 20614,
"properties": {
"east": "low",
"north": "tall",
@@ -168331,7 +174517,7 @@
}
},
{
- "id": 20146,
+ "id": 20615,
"properties": {
"east": "low",
"north": "tall",
@@ -168342,7 +174528,7 @@
}
},
{
- "id": 20147,
+ "id": 20616,
"properties": {
"east": "low",
"north": "tall",
@@ -168353,7 +174539,7 @@
}
},
{
- "id": 20148,
+ "id": 20617,
"properties": {
"east": "low",
"north": "tall",
@@ -168364,7 +174550,7 @@
}
},
{
- "id": 20149,
+ "id": 20618,
"properties": {
"east": "low",
"north": "tall",
@@ -168375,7 +174561,7 @@
}
},
{
- "id": 20150,
+ "id": 20619,
"properties": {
"east": "low",
"north": "tall",
@@ -168386,7 +174572,7 @@
}
},
{
- "id": 20151,
+ "id": 20620,
"properties": {
"east": "low",
"north": "tall",
@@ -168397,7 +174583,7 @@
}
},
{
- "id": 20152,
+ "id": 20621,
"properties": {
"east": "low",
"north": "tall",
@@ -168408,7 +174594,7 @@
}
},
{
- "id": 20153,
+ "id": 20622,
"properties": {
"east": "low",
"north": "tall",
@@ -168419,7 +174605,7 @@
}
},
{
- "id": 20154,
+ "id": 20623,
"properties": {
"east": "low",
"north": "tall",
@@ -168430,7 +174616,7 @@
}
},
{
- "id": 20155,
+ "id": 20624,
"properties": {
"east": "low",
"north": "tall",
@@ -168441,7 +174627,7 @@
}
},
{
- "id": 20156,
+ "id": 20625,
"properties": {
"east": "low",
"north": "tall",
@@ -168452,7 +174638,7 @@
}
},
{
- "id": 20157,
+ "id": 20626,
"properties": {
"east": "low",
"north": "tall",
@@ -168463,7 +174649,7 @@
}
},
{
- "id": 20158,
+ "id": 20627,
"properties": {
"east": "low",
"north": "tall",
@@ -168474,7 +174660,7 @@
}
},
{
- "id": 20159,
+ "id": 20628,
"properties": {
"east": "low",
"north": "tall",
@@ -168485,7 +174671,7 @@
}
},
{
- "id": 20160,
+ "id": 20629,
"properties": {
"east": "low",
"north": "tall",
@@ -168496,7 +174682,7 @@
}
},
{
- "id": 20161,
+ "id": 20630,
"properties": {
"east": "low",
"north": "tall",
@@ -168507,7 +174693,7 @@
}
},
{
- "id": 20162,
+ "id": 20631,
"properties": {
"east": "low",
"north": "tall",
@@ -168518,7 +174704,7 @@
}
},
{
- "id": 20163,
+ "id": 20632,
"properties": {
"east": "low",
"north": "tall",
@@ -168529,7 +174715,7 @@
}
},
{
- "id": 20164,
+ "id": 20633,
"properties": {
"east": "low",
"north": "tall",
@@ -168540,7 +174726,7 @@
}
},
{
- "id": 20165,
+ "id": 20634,
"properties": {
"east": "low",
"north": "tall",
@@ -168551,7 +174737,7 @@
}
},
{
- "id": 20166,
+ "id": 20635,
"properties": {
"east": "low",
"north": "tall",
@@ -168562,7 +174748,7 @@
}
},
{
- "id": 20167,
+ "id": 20636,
"properties": {
"east": "low",
"north": "tall",
@@ -168573,7 +174759,7 @@
}
},
{
- "id": 20168,
+ "id": 20637,
"properties": {
"east": "low",
"north": "tall",
@@ -168584,7 +174770,7 @@
}
},
{
- "id": 20169,
+ "id": 20638,
"properties": {
"east": "low",
"north": "tall",
@@ -168595,7 +174781,7 @@
}
},
{
- "id": 20170,
+ "id": 20639,
"properties": {
"east": "low",
"north": "tall",
@@ -168606,7 +174792,7 @@
}
},
{
- "id": 20171,
+ "id": 20640,
"properties": {
"east": "low",
"north": "tall",
@@ -168617,7 +174803,7 @@
}
},
{
- "id": 20172,
+ "id": 20641,
"properties": {
"east": "low",
"north": "tall",
@@ -168628,7 +174814,7 @@
}
},
{
- "id": 20173,
+ "id": 20642,
"properties": {
"east": "low",
"north": "tall",
@@ -168639,7 +174825,7 @@
}
},
{
- "id": 20174,
+ "id": 20643,
"properties": {
"east": "low",
"north": "tall",
@@ -168650,7 +174836,7 @@
}
},
{
- "id": 20175,
+ "id": 20644,
"properties": {
"east": "low",
"north": "tall",
@@ -168661,7 +174847,7 @@
}
},
{
- "id": 20176,
+ "id": 20645,
"properties": {
"east": "low",
"north": "tall",
@@ -168672,7 +174858,7 @@
}
},
{
- "id": 20177,
+ "id": 20646,
"properties": {
"east": "tall",
"north": "none",
@@ -168683,7 +174869,7 @@
}
},
{
- "id": 20178,
+ "id": 20647,
"properties": {
"east": "tall",
"north": "none",
@@ -168694,7 +174880,7 @@
}
},
{
- "id": 20179,
+ "id": 20648,
"properties": {
"east": "tall",
"north": "none",
@@ -168705,7 +174891,7 @@
}
},
{
- "id": 20180,
+ "id": 20649,
"properties": {
"east": "tall",
"north": "none",
@@ -168716,7 +174902,7 @@
}
},
{
- "id": 20181,
+ "id": 20650,
"properties": {
"east": "tall",
"north": "none",
@@ -168727,7 +174913,7 @@
}
},
{
- "id": 20182,
+ "id": 20651,
"properties": {
"east": "tall",
"north": "none",
@@ -168738,7 +174924,7 @@
}
},
{
- "id": 20183,
+ "id": 20652,
"properties": {
"east": "tall",
"north": "none",
@@ -168749,7 +174935,7 @@
}
},
{
- "id": 20184,
+ "id": 20653,
"properties": {
"east": "tall",
"north": "none",
@@ -168760,7 +174946,7 @@
}
},
{
- "id": 20185,
+ "id": 20654,
"properties": {
"east": "tall",
"north": "none",
@@ -168771,7 +174957,7 @@
}
},
{
- "id": 20186,
+ "id": 20655,
"properties": {
"east": "tall",
"north": "none",
@@ -168782,7 +174968,7 @@
}
},
{
- "id": 20187,
+ "id": 20656,
"properties": {
"east": "tall",
"north": "none",
@@ -168793,7 +174979,7 @@
}
},
{
- "id": 20188,
+ "id": 20657,
"properties": {
"east": "tall",
"north": "none",
@@ -168804,7 +174990,7 @@
}
},
{
- "id": 20189,
+ "id": 20658,
"properties": {
"east": "tall",
"north": "none",
@@ -168815,7 +175001,7 @@
}
},
{
- "id": 20190,
+ "id": 20659,
"properties": {
"east": "tall",
"north": "none",
@@ -168826,7 +175012,7 @@
}
},
{
- "id": 20191,
+ "id": 20660,
"properties": {
"east": "tall",
"north": "none",
@@ -168837,7 +175023,7 @@
}
},
{
- "id": 20192,
+ "id": 20661,
"properties": {
"east": "tall",
"north": "none",
@@ -168848,7 +175034,7 @@
}
},
{
- "id": 20193,
+ "id": 20662,
"properties": {
"east": "tall",
"north": "none",
@@ -168859,7 +175045,7 @@
}
},
{
- "id": 20194,
+ "id": 20663,
"properties": {
"east": "tall",
"north": "none",
@@ -168870,7 +175056,7 @@
}
},
{
- "id": 20195,
+ "id": 20664,
"properties": {
"east": "tall",
"north": "none",
@@ -168881,7 +175067,7 @@
}
},
{
- "id": 20196,
+ "id": 20665,
"properties": {
"east": "tall",
"north": "none",
@@ -168892,7 +175078,7 @@
}
},
{
- "id": 20197,
+ "id": 20666,
"properties": {
"east": "tall",
"north": "none",
@@ -168903,7 +175089,7 @@
}
},
{
- "id": 20198,
+ "id": 20667,
"properties": {
"east": "tall",
"north": "none",
@@ -168914,7 +175100,7 @@
}
},
{
- "id": 20199,
+ "id": 20668,
"properties": {
"east": "tall",
"north": "none",
@@ -168925,7 +175111,7 @@
}
},
{
- "id": 20200,
+ "id": 20669,
"properties": {
"east": "tall",
"north": "none",
@@ -168936,7 +175122,7 @@
}
},
{
- "id": 20201,
+ "id": 20670,
"properties": {
"east": "tall",
"north": "none",
@@ -168947,7 +175133,7 @@
}
},
{
- "id": 20202,
+ "id": 20671,
"properties": {
"east": "tall",
"north": "none",
@@ -168958,7 +175144,7 @@
}
},
{
- "id": 20203,
+ "id": 20672,
"properties": {
"east": "tall",
"north": "none",
@@ -168969,7 +175155,7 @@
}
},
{
- "id": 20204,
+ "id": 20673,
"properties": {
"east": "tall",
"north": "none",
@@ -168980,7 +175166,7 @@
}
},
{
- "id": 20205,
+ "id": 20674,
"properties": {
"east": "tall",
"north": "none",
@@ -168991,7 +175177,7 @@
}
},
{
- "id": 20206,
+ "id": 20675,
"properties": {
"east": "tall",
"north": "none",
@@ -169002,7 +175188,7 @@
}
},
{
- "id": 20207,
+ "id": 20676,
"properties": {
"east": "tall",
"north": "none",
@@ -169013,7 +175199,7 @@
}
},
{
- "id": 20208,
+ "id": 20677,
"properties": {
"east": "tall",
"north": "none",
@@ -169024,7 +175210,7 @@
}
},
{
- "id": 20209,
+ "id": 20678,
"properties": {
"east": "tall",
"north": "none",
@@ -169035,7 +175221,7 @@
}
},
{
- "id": 20210,
+ "id": 20679,
"properties": {
"east": "tall",
"north": "none",
@@ -169046,7 +175232,7 @@
}
},
{
- "id": 20211,
+ "id": 20680,
"properties": {
"east": "tall",
"north": "none",
@@ -169057,7 +175243,7 @@
}
},
{
- "id": 20212,
+ "id": 20681,
"properties": {
"east": "tall",
"north": "none",
@@ -169068,7 +175254,7 @@
}
},
{
- "id": 20213,
+ "id": 20682,
"properties": {
"east": "tall",
"north": "low",
@@ -169079,7 +175265,7 @@
}
},
{
- "id": 20214,
+ "id": 20683,
"properties": {
"east": "tall",
"north": "low",
@@ -169090,7 +175276,7 @@
}
},
{
- "id": 20215,
+ "id": 20684,
"properties": {
"east": "tall",
"north": "low",
@@ -169101,7 +175287,7 @@
}
},
{
- "id": 20216,
+ "id": 20685,
"properties": {
"east": "tall",
"north": "low",
@@ -169112,7 +175298,7 @@
}
},
{
- "id": 20217,
+ "id": 20686,
"properties": {
"east": "tall",
"north": "low",
@@ -169123,7 +175309,7 @@
}
},
{
- "id": 20218,
+ "id": 20687,
"properties": {
"east": "tall",
"north": "low",
@@ -169134,7 +175320,7 @@
}
},
{
- "id": 20219,
+ "id": 20688,
"properties": {
"east": "tall",
"north": "low",
@@ -169145,7 +175331,7 @@
}
},
{
- "id": 20220,
+ "id": 20689,
"properties": {
"east": "tall",
"north": "low",
@@ -169156,7 +175342,7 @@
}
},
{
- "id": 20221,
+ "id": 20690,
"properties": {
"east": "tall",
"north": "low",
@@ -169167,7 +175353,7 @@
}
},
{
- "id": 20222,
+ "id": 20691,
"properties": {
"east": "tall",
"north": "low",
@@ -169178,7 +175364,7 @@
}
},
{
- "id": 20223,
+ "id": 20692,
"properties": {
"east": "tall",
"north": "low",
@@ -169189,7 +175375,7 @@
}
},
{
- "id": 20224,
+ "id": 20693,
"properties": {
"east": "tall",
"north": "low",
@@ -169200,7 +175386,7 @@
}
},
{
- "id": 20225,
+ "id": 20694,
"properties": {
"east": "tall",
"north": "low",
@@ -169211,7 +175397,7 @@
}
},
{
- "id": 20226,
+ "id": 20695,
"properties": {
"east": "tall",
"north": "low",
@@ -169222,7 +175408,7 @@
}
},
{
- "id": 20227,
+ "id": 20696,
"properties": {
"east": "tall",
"north": "low",
@@ -169233,7 +175419,7 @@
}
},
{
- "id": 20228,
+ "id": 20697,
"properties": {
"east": "tall",
"north": "low",
@@ -169244,7 +175430,7 @@
}
},
{
- "id": 20229,
+ "id": 20698,
"properties": {
"east": "tall",
"north": "low",
@@ -169255,7 +175441,7 @@
}
},
{
- "id": 20230,
+ "id": 20699,
"properties": {
"east": "tall",
"north": "low",
@@ -169266,7 +175452,7 @@
}
},
{
- "id": 20231,
+ "id": 20700,
"properties": {
"east": "tall",
"north": "low",
@@ -169277,7 +175463,7 @@
}
},
{
- "id": 20232,
+ "id": 20701,
"properties": {
"east": "tall",
"north": "low",
@@ -169288,7 +175474,7 @@
}
},
{
- "id": 20233,
+ "id": 20702,
"properties": {
"east": "tall",
"north": "low",
@@ -169299,7 +175485,7 @@
}
},
{
- "id": 20234,
+ "id": 20703,
"properties": {
"east": "tall",
"north": "low",
@@ -169310,7 +175496,7 @@
}
},
{
- "id": 20235,
+ "id": 20704,
"properties": {
"east": "tall",
"north": "low",
@@ -169321,7 +175507,7 @@
}
},
{
- "id": 20236,
+ "id": 20705,
"properties": {
"east": "tall",
"north": "low",
@@ -169332,7 +175518,7 @@
}
},
{
- "id": 20237,
+ "id": 20706,
"properties": {
"east": "tall",
"north": "low",
@@ -169343,7 +175529,7 @@
}
},
{
- "id": 20238,
+ "id": 20707,
"properties": {
"east": "tall",
"north": "low",
@@ -169354,7 +175540,7 @@
}
},
{
- "id": 20239,
+ "id": 20708,
"properties": {
"east": "tall",
"north": "low",
@@ -169365,7 +175551,7 @@
}
},
{
- "id": 20240,
+ "id": 20709,
"properties": {
"east": "tall",
"north": "low",
@@ -169376,7 +175562,7 @@
}
},
{
- "id": 20241,
+ "id": 20710,
"properties": {
"east": "tall",
"north": "low",
@@ -169387,7 +175573,7 @@
}
},
{
- "id": 20242,
+ "id": 20711,
"properties": {
"east": "tall",
"north": "low",
@@ -169398,7 +175584,7 @@
}
},
{
- "id": 20243,
+ "id": 20712,
"properties": {
"east": "tall",
"north": "low",
@@ -169409,7 +175595,7 @@
}
},
{
- "id": 20244,
+ "id": 20713,
"properties": {
"east": "tall",
"north": "low",
@@ -169420,7 +175606,7 @@
}
},
{
- "id": 20245,
+ "id": 20714,
"properties": {
"east": "tall",
"north": "low",
@@ -169431,7 +175617,7 @@
}
},
{
- "id": 20246,
+ "id": 20715,
"properties": {
"east": "tall",
"north": "low",
@@ -169442,7 +175628,7 @@
}
},
{
- "id": 20247,
+ "id": 20716,
"properties": {
"east": "tall",
"north": "low",
@@ -169453,7 +175639,7 @@
}
},
{
- "id": 20248,
+ "id": 20717,
"properties": {
"east": "tall",
"north": "low",
@@ -169464,7 +175650,7 @@
}
},
{
- "id": 20249,
+ "id": 20718,
"properties": {
"east": "tall",
"north": "tall",
@@ -169475,7 +175661,7 @@
}
},
{
- "id": 20250,
+ "id": 20719,
"properties": {
"east": "tall",
"north": "tall",
@@ -169486,7 +175672,7 @@
}
},
{
- "id": 20251,
+ "id": 20720,
"properties": {
"east": "tall",
"north": "tall",
@@ -169497,7 +175683,7 @@
}
},
{
- "id": 20252,
+ "id": 20721,
"properties": {
"east": "tall",
"north": "tall",
@@ -169508,7 +175694,7 @@
}
},
{
- "id": 20253,
+ "id": 20722,
"properties": {
"east": "tall",
"north": "tall",
@@ -169519,7 +175705,7 @@
}
},
{
- "id": 20254,
+ "id": 20723,
"properties": {
"east": "tall",
"north": "tall",
@@ -169530,7 +175716,7 @@
}
},
{
- "id": 20255,
+ "id": 20724,
"properties": {
"east": "tall",
"north": "tall",
@@ -169541,7 +175727,7 @@
}
},
{
- "id": 20256,
+ "id": 20725,
"properties": {
"east": "tall",
"north": "tall",
@@ -169552,7 +175738,7 @@
}
},
{
- "id": 20257,
+ "id": 20726,
"properties": {
"east": "tall",
"north": "tall",
@@ -169563,7 +175749,7 @@
}
},
{
- "id": 20258,
+ "id": 20727,
"properties": {
"east": "tall",
"north": "tall",
@@ -169574,7 +175760,7 @@
}
},
{
- "id": 20259,
+ "id": 20728,
"properties": {
"east": "tall",
"north": "tall",
@@ -169585,7 +175771,7 @@
}
},
{
- "id": 20260,
+ "id": 20729,
"properties": {
"east": "tall",
"north": "tall",
@@ -169596,7 +175782,7 @@
}
},
{
- "id": 20261,
+ "id": 20730,
"properties": {
"east": "tall",
"north": "tall",
@@ -169607,7 +175793,7 @@
}
},
{
- "id": 20262,
+ "id": 20731,
"properties": {
"east": "tall",
"north": "tall",
@@ -169618,7 +175804,7 @@
}
},
{
- "id": 20263,
+ "id": 20732,
"properties": {
"east": "tall",
"north": "tall",
@@ -169629,7 +175815,7 @@
}
},
{
- "id": 20264,
+ "id": 20733,
"properties": {
"east": "tall",
"north": "tall",
@@ -169640,7 +175826,7 @@
}
},
{
- "id": 20265,
+ "id": 20734,
"properties": {
"east": "tall",
"north": "tall",
@@ -169651,7 +175837,7 @@
}
},
{
- "id": 20266,
+ "id": 20735,
"properties": {
"east": "tall",
"north": "tall",
@@ -169662,7 +175848,7 @@
}
},
{
- "id": 20267,
+ "id": 20736,
"properties": {
"east": "tall",
"north": "tall",
@@ -169673,7 +175859,7 @@
}
},
{
- "id": 20268,
+ "id": 20737,
"properties": {
"east": "tall",
"north": "tall",
@@ -169684,7 +175870,7 @@
}
},
{
- "id": 20269,
+ "id": 20738,
"properties": {
"east": "tall",
"north": "tall",
@@ -169695,7 +175881,7 @@
}
},
{
- "id": 20270,
+ "id": 20739,
"properties": {
"east": "tall",
"north": "tall",
@@ -169706,7 +175892,7 @@
}
},
{
- "id": 20271,
+ "id": 20740,
"properties": {
"east": "tall",
"north": "tall",
@@ -169717,7 +175903,7 @@
}
},
{
- "id": 20272,
+ "id": 20741,
"properties": {
"east": "tall",
"north": "tall",
@@ -169728,7 +175914,7 @@
}
},
{
- "id": 20273,
+ "id": 20742,
"properties": {
"east": "tall",
"north": "tall",
@@ -169739,7 +175925,7 @@
}
},
{
- "id": 20274,
+ "id": 20743,
"properties": {
"east": "tall",
"north": "tall",
@@ -169750,7 +175936,7 @@
}
},
{
- "id": 20275,
+ "id": 20744,
"properties": {
"east": "tall",
"north": "tall",
@@ -169761,7 +175947,7 @@
}
},
{
- "id": 20276,
+ "id": 20745,
"properties": {
"east": "tall",
"north": "tall",
@@ -169772,7 +175958,7 @@
}
},
{
- "id": 20277,
+ "id": 20746,
"properties": {
"east": "tall",
"north": "tall",
@@ -169783,7 +175969,7 @@
}
},
{
- "id": 20278,
+ "id": 20747,
"properties": {
"east": "tall",
"north": "tall",
@@ -169794,7 +175980,7 @@
}
},
{
- "id": 20279,
+ "id": 20748,
"properties": {
"east": "tall",
"north": "tall",
@@ -169805,7 +175991,7 @@
}
},
{
- "id": 20280,
+ "id": 20749,
"properties": {
"east": "tall",
"north": "tall",
@@ -169816,7 +176002,7 @@
}
},
{
- "id": 20281,
+ "id": 20750,
"properties": {
"east": "tall",
"north": "tall",
@@ -169827,7 +176013,7 @@
}
},
{
- "id": 20282,
+ "id": 20751,
"properties": {
"east": "tall",
"north": "tall",
@@ -169838,7 +176024,7 @@
}
},
{
- "id": 20283,
+ "id": 20752,
"properties": {
"east": "tall",
"north": "tall",
@@ -169849,7 +176035,7 @@
}
},
{
- "id": 20284,
+ "id": 20753,
"properties": {
"east": "tall",
"north": "tall",
@@ -169869,7 +176055,7 @@
"states": [
{
"default": true,
- "id": 19872
+ "id": 20341
}
]
},
@@ -169899,7 +176085,7 @@
},
"states": [
{
- "id": 20374,
+ "id": 20843,
"properties": {
"face": "floor",
"facing": "north",
@@ -169907,7 +176093,7 @@
}
},
{
- "id": 20375,
+ "id": 20844,
"properties": {
"face": "floor",
"facing": "north",
@@ -169915,7 +176101,7 @@
}
},
{
- "id": 20376,
+ "id": 20845,
"properties": {
"face": "floor",
"facing": "south",
@@ -169923,7 +176109,7 @@
}
},
{
- "id": 20377,
+ "id": 20846,
"properties": {
"face": "floor",
"facing": "south",
@@ -169931,7 +176117,7 @@
}
},
{
- "id": 20378,
+ "id": 20847,
"properties": {
"face": "floor",
"facing": "west",
@@ -169939,7 +176125,7 @@
}
},
{
- "id": 20379,
+ "id": 20848,
"properties": {
"face": "floor",
"facing": "west",
@@ -169947,7 +176133,7 @@
}
},
{
- "id": 20380,
+ "id": 20849,
"properties": {
"face": "floor",
"facing": "east",
@@ -169955,7 +176141,7 @@
}
},
{
- "id": 20381,
+ "id": 20850,
"properties": {
"face": "floor",
"facing": "east",
@@ -169963,7 +176149,7 @@
}
},
{
- "id": 20382,
+ "id": 20851,
"properties": {
"face": "wall",
"facing": "north",
@@ -169972,7 +176158,7 @@
},
{
"default": true,
- "id": 20383,
+ "id": 20852,
"properties": {
"face": "wall",
"facing": "north",
@@ -169980,7 +176166,7 @@
}
},
{
- "id": 20384,
+ "id": 20853,
"properties": {
"face": "wall",
"facing": "south",
@@ -169988,7 +176174,7 @@
}
},
{
- "id": 20385,
+ "id": 20854,
"properties": {
"face": "wall",
"facing": "south",
@@ -169996,7 +176182,7 @@
}
},
{
- "id": 20386,
+ "id": 20855,
"properties": {
"face": "wall",
"facing": "west",
@@ -170004,7 +176190,7 @@
}
},
{
- "id": 20387,
+ "id": 20856,
"properties": {
"face": "wall",
"facing": "west",
@@ -170012,7 +176198,7 @@
}
},
{
- "id": 20388,
+ "id": 20857,
"properties": {
"face": "wall",
"facing": "east",
@@ -170020,7 +176206,7 @@
}
},
{
- "id": 20389,
+ "id": 20858,
"properties": {
"face": "wall",
"facing": "east",
@@ -170028,7 +176214,7 @@
}
},
{
- "id": 20390,
+ "id": 20859,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -170036,7 +176222,7 @@
}
},
{
- "id": 20391,
+ "id": 20860,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -170044,7 +176230,7 @@
}
},
{
- "id": 20392,
+ "id": 20861,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -170052,7 +176238,7 @@
}
},
{
- "id": 20393,
+ "id": 20862,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -170060,7 +176246,7 @@
}
},
{
- "id": 20394,
+ "id": 20863,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -170068,7 +176254,7 @@
}
},
{
- "id": 20395,
+ "id": 20864,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -170076,7 +176262,7 @@
}
},
{
- "id": 20396,
+ "id": 20865,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -170084,7 +176270,7 @@
}
},
{
- "id": 20397,
+ "id": 20866,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -170107,14 +176293,14 @@
},
"states": [
{
- "id": 20372,
+ "id": 20841,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 20373,
+ "id": 20842,
"properties": {
"powered": "false"
}
@@ -170139,21 +176325,21 @@
},
"states": [
{
- "id": 20366,
+ "id": 20835,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 20367,
+ "id": 20836,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 20368,
+ "id": 20837,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -170161,21 +176347,21 @@
},
{
"default": true,
- "id": 20369,
+ "id": 20838,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 20370,
+ "id": 20839,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 20371,
+ "id": 20840,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -170216,7 +176402,7 @@
},
"states": [
{
- "id": 20286,
+ "id": 20755,
"properties": {
"facing": "north",
"half": "top",
@@ -170225,7 +176411,7 @@
}
},
{
- "id": 20287,
+ "id": 20756,
"properties": {
"facing": "north",
"half": "top",
@@ -170234,7 +176420,7 @@
}
},
{
- "id": 20288,
+ "id": 20757,
"properties": {
"facing": "north",
"half": "top",
@@ -170243,7 +176429,7 @@
}
},
{
- "id": 20289,
+ "id": 20758,
"properties": {
"facing": "north",
"half": "top",
@@ -170252,7 +176438,7 @@
}
},
{
- "id": 20290,
+ "id": 20759,
"properties": {
"facing": "north",
"half": "top",
@@ -170261,7 +176447,7 @@
}
},
{
- "id": 20291,
+ "id": 20760,
"properties": {
"facing": "north",
"half": "top",
@@ -170270,7 +176456,7 @@
}
},
{
- "id": 20292,
+ "id": 20761,
"properties": {
"facing": "north",
"half": "top",
@@ -170279,7 +176465,7 @@
}
},
{
- "id": 20293,
+ "id": 20762,
"properties": {
"facing": "north",
"half": "top",
@@ -170288,7 +176474,7 @@
}
},
{
- "id": 20294,
+ "id": 20763,
"properties": {
"facing": "north",
"half": "top",
@@ -170297,7 +176483,7 @@
}
},
{
- "id": 20295,
+ "id": 20764,
"properties": {
"facing": "north",
"half": "top",
@@ -170306,7 +176492,7 @@
}
},
{
- "id": 20296,
+ "id": 20765,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170316,7 +176502,7 @@
},
{
"default": true,
- "id": 20297,
+ "id": 20766,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170325,7 +176511,7 @@
}
},
{
- "id": 20298,
+ "id": 20767,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170334,7 +176520,7 @@
}
},
{
- "id": 20299,
+ "id": 20768,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170343,7 +176529,7 @@
}
},
{
- "id": 20300,
+ "id": 20769,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170352,7 +176538,7 @@
}
},
{
- "id": 20301,
+ "id": 20770,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170361,7 +176547,7 @@
}
},
{
- "id": 20302,
+ "id": 20771,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170370,7 +176556,7 @@
}
},
{
- "id": 20303,
+ "id": 20772,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170379,7 +176565,7 @@
}
},
{
- "id": 20304,
+ "id": 20773,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170388,7 +176574,7 @@
}
},
{
- "id": 20305,
+ "id": 20774,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170397,7 +176583,7 @@
}
},
{
- "id": 20306,
+ "id": 20775,
"properties": {
"facing": "south",
"half": "top",
@@ -170406,7 +176592,7 @@
}
},
{
- "id": 20307,
+ "id": 20776,
"properties": {
"facing": "south",
"half": "top",
@@ -170415,7 +176601,7 @@
}
},
{
- "id": 20308,
+ "id": 20777,
"properties": {
"facing": "south",
"half": "top",
@@ -170424,7 +176610,7 @@
}
},
{
- "id": 20309,
+ "id": 20778,
"properties": {
"facing": "south",
"half": "top",
@@ -170433,7 +176619,7 @@
}
},
{
- "id": 20310,
+ "id": 20779,
"properties": {
"facing": "south",
"half": "top",
@@ -170442,7 +176628,7 @@
}
},
{
- "id": 20311,
+ "id": 20780,
"properties": {
"facing": "south",
"half": "top",
@@ -170451,7 +176637,7 @@
}
},
{
- "id": 20312,
+ "id": 20781,
"properties": {
"facing": "south",
"half": "top",
@@ -170460,7 +176646,7 @@
}
},
{
- "id": 20313,
+ "id": 20782,
"properties": {
"facing": "south",
"half": "top",
@@ -170469,7 +176655,7 @@
}
},
{
- "id": 20314,
+ "id": 20783,
"properties": {
"facing": "south",
"half": "top",
@@ -170478,7 +176664,7 @@
}
},
{
- "id": 20315,
+ "id": 20784,
"properties": {
"facing": "south",
"half": "top",
@@ -170487,7 +176673,7 @@
}
},
{
- "id": 20316,
+ "id": 20785,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170496,7 +176682,7 @@
}
},
{
- "id": 20317,
+ "id": 20786,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170505,7 +176691,7 @@
}
},
{
- "id": 20318,
+ "id": 20787,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170514,7 +176700,7 @@
}
},
{
- "id": 20319,
+ "id": 20788,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170523,7 +176709,7 @@
}
},
{
- "id": 20320,
+ "id": 20789,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170532,7 +176718,7 @@
}
},
{
- "id": 20321,
+ "id": 20790,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170541,7 +176727,7 @@
}
},
{
- "id": 20322,
+ "id": 20791,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170550,7 +176736,7 @@
}
},
{
- "id": 20323,
+ "id": 20792,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170559,7 +176745,7 @@
}
},
{
- "id": 20324,
+ "id": 20793,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170568,7 +176754,7 @@
}
},
{
- "id": 20325,
+ "id": 20794,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170577,7 +176763,7 @@
}
},
{
- "id": 20326,
+ "id": 20795,
"properties": {
"facing": "west",
"half": "top",
@@ -170586,7 +176772,7 @@
}
},
{
- "id": 20327,
+ "id": 20796,
"properties": {
"facing": "west",
"half": "top",
@@ -170595,7 +176781,7 @@
}
},
{
- "id": 20328,
+ "id": 20797,
"properties": {
"facing": "west",
"half": "top",
@@ -170604,7 +176790,7 @@
}
},
{
- "id": 20329,
+ "id": 20798,
"properties": {
"facing": "west",
"half": "top",
@@ -170613,7 +176799,7 @@
}
},
{
- "id": 20330,
+ "id": 20799,
"properties": {
"facing": "west",
"half": "top",
@@ -170622,7 +176808,7 @@
}
},
{
- "id": 20331,
+ "id": 20800,
"properties": {
"facing": "west",
"half": "top",
@@ -170631,7 +176817,7 @@
}
},
{
- "id": 20332,
+ "id": 20801,
"properties": {
"facing": "west",
"half": "top",
@@ -170640,7 +176826,7 @@
}
},
{
- "id": 20333,
+ "id": 20802,
"properties": {
"facing": "west",
"half": "top",
@@ -170649,7 +176835,7 @@
}
},
{
- "id": 20334,
+ "id": 20803,
"properties": {
"facing": "west",
"half": "top",
@@ -170658,7 +176844,7 @@
}
},
{
- "id": 20335,
+ "id": 20804,
"properties": {
"facing": "west",
"half": "top",
@@ -170667,7 +176853,7 @@
}
},
{
- "id": 20336,
+ "id": 20805,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170676,7 +176862,7 @@
}
},
{
- "id": 20337,
+ "id": 20806,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170685,7 +176871,7 @@
}
},
{
- "id": 20338,
+ "id": 20807,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170694,7 +176880,7 @@
}
},
{
- "id": 20339,
+ "id": 20808,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170703,7 +176889,7 @@
}
},
{
- "id": 20340,
+ "id": 20809,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170712,7 +176898,7 @@
}
},
{
- "id": 20341,
+ "id": 20810,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170721,7 +176907,7 @@
}
},
{
- "id": 20342,
+ "id": 20811,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170730,7 +176916,7 @@
}
},
{
- "id": 20343,
+ "id": 20812,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170739,7 +176925,7 @@
}
},
{
- "id": 20344,
+ "id": 20813,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170748,7 +176934,7 @@
}
},
{
- "id": 20345,
+ "id": 20814,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170757,7 +176943,7 @@
}
},
{
- "id": 20346,
+ "id": 20815,
"properties": {
"facing": "east",
"half": "top",
@@ -170766,7 +176952,7 @@
}
},
{
- "id": 20347,
+ "id": 20816,
"properties": {
"facing": "east",
"half": "top",
@@ -170775,7 +176961,7 @@
}
},
{
- "id": 20348,
+ "id": 20817,
"properties": {
"facing": "east",
"half": "top",
@@ -170784,7 +176970,7 @@
}
},
{
- "id": 20349,
+ "id": 20818,
"properties": {
"facing": "east",
"half": "top",
@@ -170793,7 +176979,7 @@
}
},
{
- "id": 20350,
+ "id": 20819,
"properties": {
"facing": "east",
"half": "top",
@@ -170802,7 +176988,7 @@
}
},
{
- "id": 20351,
+ "id": 20820,
"properties": {
"facing": "east",
"half": "top",
@@ -170811,7 +176997,7 @@
}
},
{
- "id": 20352,
+ "id": 20821,
"properties": {
"facing": "east",
"half": "top",
@@ -170820,7 +177006,7 @@
}
},
{
- "id": 20353,
+ "id": 20822,
"properties": {
"facing": "east",
"half": "top",
@@ -170829,7 +177015,7 @@
}
},
{
- "id": 20354,
+ "id": 20823,
"properties": {
"facing": "east",
"half": "top",
@@ -170838,7 +177024,7 @@
}
},
{
- "id": 20355,
+ "id": 20824,
"properties": {
"facing": "east",
"half": "top",
@@ -170847,7 +177033,7 @@
}
},
{
- "id": 20356,
+ "id": 20825,
"properties": {
"facing": "east",
"half": "bottom",
@@ -170856,7 +177042,7 @@
}
},
{
- "id": 20357,
+ "id": 20826,
"properties": {
"facing": "east",
"half": "bottom",
@@ -170865,7 +177051,7 @@
}
},
{
- "id": 20358,
+ "id": 20827,
"properties": {
"facing": "east",
"half": "bottom",
@@ -170874,7 +177060,7 @@
}
},
{
- "id": 20359,
+ "id": 20828,
"properties": {
"facing": "east",
"half": "bottom",
@@ -170883,7 +177069,7 @@
}
},
{
- "id": 20360,
+ "id": 20829,
"properties": {
"facing": "east",
"half": "bottom",
@@ -170892,7 +177078,7 @@
}
},
{
- "id": 20361,
+ "id": 20830,
"properties": {
"facing": "east",
"half": "bottom",
@@ -170901,7 +177087,7 @@
}
},
{
- "id": 20362,
+ "id": 20831,
"properties": {
"facing": "east",
"half": "bottom",
@@ -170910,7 +177096,7 @@
}
},
{
- "id": 20363,
+ "id": 20832,
"properties": {
"facing": "east",
"half": "bottom",
@@ -170919,7 +177105,7 @@
}
},
{
- "id": 20364,
+ "id": 20833,
"properties": {
"facing": "east",
"half": "bottom",
@@ -170928,7 +177114,7 @@
}
},
{
- "id": 20365,
+ "id": 20834,
"properties": {
"facing": "east",
"half": "bottom",
@@ -170975,7 +177161,7 @@
},
"states": [
{
- "id": 20398,
+ "id": 20867,
"properties": {
"east": "none",
"north": "none",
@@ -170986,7 +177172,7 @@
}
},
{
- "id": 20399,
+ "id": 20868,
"properties": {
"east": "none",
"north": "none",
@@ -170997,7 +177183,7 @@
}
},
{
- "id": 20400,
+ "id": 20869,
"properties": {
"east": "none",
"north": "none",
@@ -171009,7 +177195,7 @@
},
{
"default": true,
- "id": 20401,
+ "id": 20870,
"properties": {
"east": "none",
"north": "none",
@@ -171020,7 +177206,7 @@
}
},
{
- "id": 20402,
+ "id": 20871,
"properties": {
"east": "none",
"north": "none",
@@ -171031,7 +177217,7 @@
}
},
{
- "id": 20403,
+ "id": 20872,
"properties": {
"east": "none",
"north": "none",
@@ -171042,7 +177228,7 @@
}
},
{
- "id": 20404,
+ "id": 20873,
"properties": {
"east": "none",
"north": "none",
@@ -171053,7 +177239,7 @@
}
},
{
- "id": 20405,
+ "id": 20874,
"properties": {
"east": "none",
"north": "none",
@@ -171064,7 +177250,7 @@
}
},
{
- "id": 20406,
+ "id": 20875,
"properties": {
"east": "none",
"north": "none",
@@ -171075,7 +177261,7 @@
}
},
{
- "id": 20407,
+ "id": 20876,
"properties": {
"east": "none",
"north": "none",
@@ -171086,7 +177272,7 @@
}
},
{
- "id": 20408,
+ "id": 20877,
"properties": {
"east": "none",
"north": "none",
@@ -171097,7 +177283,7 @@
}
},
{
- "id": 20409,
+ "id": 20878,
"properties": {
"east": "none",
"north": "none",
@@ -171108,7 +177294,7 @@
}
},
{
- "id": 20410,
+ "id": 20879,
"properties": {
"east": "none",
"north": "none",
@@ -171119,7 +177305,7 @@
}
},
{
- "id": 20411,
+ "id": 20880,
"properties": {
"east": "none",
"north": "none",
@@ -171130,7 +177316,7 @@
}
},
{
- "id": 20412,
+ "id": 20881,
"properties": {
"east": "none",
"north": "none",
@@ -171141,7 +177327,7 @@
}
},
{
- "id": 20413,
+ "id": 20882,
"properties": {
"east": "none",
"north": "none",
@@ -171152,7 +177338,7 @@
}
},
{
- "id": 20414,
+ "id": 20883,
"properties": {
"east": "none",
"north": "none",
@@ -171163,7 +177349,7 @@
}
},
{
- "id": 20415,
+ "id": 20884,
"properties": {
"east": "none",
"north": "none",
@@ -171174,7 +177360,7 @@
}
},
{
- "id": 20416,
+ "id": 20885,
"properties": {
"east": "none",
"north": "none",
@@ -171185,7 +177371,7 @@
}
},
{
- "id": 20417,
+ "id": 20886,
"properties": {
"east": "none",
"north": "none",
@@ -171196,7 +177382,7 @@
}
},
{
- "id": 20418,
+ "id": 20887,
"properties": {
"east": "none",
"north": "none",
@@ -171207,7 +177393,7 @@
}
},
{
- "id": 20419,
+ "id": 20888,
"properties": {
"east": "none",
"north": "none",
@@ -171218,7 +177404,7 @@
}
},
{
- "id": 20420,
+ "id": 20889,
"properties": {
"east": "none",
"north": "none",
@@ -171229,7 +177415,7 @@
}
},
{
- "id": 20421,
+ "id": 20890,
"properties": {
"east": "none",
"north": "none",
@@ -171240,7 +177426,7 @@
}
},
{
- "id": 20422,
+ "id": 20891,
"properties": {
"east": "none",
"north": "none",
@@ -171251,7 +177437,7 @@
}
},
{
- "id": 20423,
+ "id": 20892,
"properties": {
"east": "none",
"north": "none",
@@ -171262,7 +177448,7 @@
}
},
{
- "id": 20424,
+ "id": 20893,
"properties": {
"east": "none",
"north": "none",
@@ -171273,7 +177459,7 @@
}
},
{
- "id": 20425,
+ "id": 20894,
"properties": {
"east": "none",
"north": "none",
@@ -171284,7 +177470,7 @@
}
},
{
- "id": 20426,
+ "id": 20895,
"properties": {
"east": "none",
"north": "none",
@@ -171295,7 +177481,7 @@
}
},
{
- "id": 20427,
+ "id": 20896,
"properties": {
"east": "none",
"north": "none",
@@ -171306,7 +177492,7 @@
}
},
{
- "id": 20428,
+ "id": 20897,
"properties": {
"east": "none",
"north": "none",
@@ -171317,7 +177503,7 @@
}
},
{
- "id": 20429,
+ "id": 20898,
"properties": {
"east": "none",
"north": "none",
@@ -171328,7 +177514,7 @@
}
},
{
- "id": 20430,
+ "id": 20899,
"properties": {
"east": "none",
"north": "none",
@@ -171339,7 +177525,7 @@
}
},
{
- "id": 20431,
+ "id": 20900,
"properties": {
"east": "none",
"north": "none",
@@ -171350,7 +177536,7 @@
}
},
{
- "id": 20432,
+ "id": 20901,
"properties": {
"east": "none",
"north": "none",
@@ -171361,7 +177547,7 @@
}
},
{
- "id": 20433,
+ "id": 20902,
"properties": {
"east": "none",
"north": "none",
@@ -171372,7 +177558,7 @@
}
},
{
- "id": 20434,
+ "id": 20903,
"properties": {
"east": "none",
"north": "low",
@@ -171383,7 +177569,7 @@
}
},
{
- "id": 20435,
+ "id": 20904,
"properties": {
"east": "none",
"north": "low",
@@ -171394,7 +177580,7 @@
}
},
{
- "id": 20436,
+ "id": 20905,
"properties": {
"east": "none",
"north": "low",
@@ -171405,7 +177591,7 @@
}
},
{
- "id": 20437,
+ "id": 20906,
"properties": {
"east": "none",
"north": "low",
@@ -171416,7 +177602,7 @@
}
},
{
- "id": 20438,
+ "id": 20907,
"properties": {
"east": "none",
"north": "low",
@@ -171427,7 +177613,7 @@
}
},
{
- "id": 20439,
+ "id": 20908,
"properties": {
"east": "none",
"north": "low",
@@ -171438,7 +177624,7 @@
}
},
{
- "id": 20440,
+ "id": 20909,
"properties": {
"east": "none",
"north": "low",
@@ -171449,7 +177635,7 @@
}
},
{
- "id": 20441,
+ "id": 20910,
"properties": {
"east": "none",
"north": "low",
@@ -171460,7 +177646,7 @@
}
},
{
- "id": 20442,
+ "id": 20911,
"properties": {
"east": "none",
"north": "low",
@@ -171471,7 +177657,7 @@
}
},
{
- "id": 20443,
+ "id": 20912,
"properties": {
"east": "none",
"north": "low",
@@ -171482,7 +177668,7 @@
}
},
{
- "id": 20444,
+ "id": 20913,
"properties": {
"east": "none",
"north": "low",
@@ -171493,7 +177679,7 @@
}
},
{
- "id": 20445,
+ "id": 20914,
"properties": {
"east": "none",
"north": "low",
@@ -171504,7 +177690,7 @@
}
},
{
- "id": 20446,
+ "id": 20915,
"properties": {
"east": "none",
"north": "low",
@@ -171515,7 +177701,7 @@
}
},
{
- "id": 20447,
+ "id": 20916,
"properties": {
"east": "none",
"north": "low",
@@ -171526,7 +177712,7 @@
}
},
{
- "id": 20448,
+ "id": 20917,
"properties": {
"east": "none",
"north": "low",
@@ -171537,7 +177723,7 @@
}
},
{
- "id": 20449,
+ "id": 20918,
"properties": {
"east": "none",
"north": "low",
@@ -171548,7 +177734,7 @@
}
},
{
- "id": 20450,
+ "id": 20919,
"properties": {
"east": "none",
"north": "low",
@@ -171559,7 +177745,7 @@
}
},
{
- "id": 20451,
+ "id": 20920,
"properties": {
"east": "none",
"north": "low",
@@ -171570,7 +177756,7 @@
}
},
{
- "id": 20452,
+ "id": 20921,
"properties": {
"east": "none",
"north": "low",
@@ -171581,7 +177767,7 @@
}
},
{
- "id": 20453,
+ "id": 20922,
"properties": {
"east": "none",
"north": "low",
@@ -171592,7 +177778,7 @@
}
},
{
- "id": 20454,
+ "id": 20923,
"properties": {
"east": "none",
"north": "low",
@@ -171603,7 +177789,7 @@
}
},
{
- "id": 20455,
+ "id": 20924,
"properties": {
"east": "none",
"north": "low",
@@ -171614,7 +177800,7 @@
}
},
{
- "id": 20456,
+ "id": 20925,
"properties": {
"east": "none",
"north": "low",
@@ -171625,7 +177811,7 @@
}
},
{
- "id": 20457,
+ "id": 20926,
"properties": {
"east": "none",
"north": "low",
@@ -171636,7 +177822,7 @@
}
},
{
- "id": 20458,
+ "id": 20927,
"properties": {
"east": "none",
"north": "low",
@@ -171647,7 +177833,7 @@
}
},
{
- "id": 20459,
+ "id": 20928,
"properties": {
"east": "none",
"north": "low",
@@ -171658,7 +177844,7 @@
}
},
{
- "id": 20460,
+ "id": 20929,
"properties": {
"east": "none",
"north": "low",
@@ -171669,7 +177855,7 @@
}
},
{
- "id": 20461,
+ "id": 20930,
"properties": {
"east": "none",
"north": "low",
@@ -171680,7 +177866,7 @@
}
},
{
- "id": 20462,
+ "id": 20931,
"properties": {
"east": "none",
"north": "low",
@@ -171691,7 +177877,7 @@
}
},
{
- "id": 20463,
+ "id": 20932,
"properties": {
"east": "none",
"north": "low",
@@ -171702,7 +177888,7 @@
}
},
{
- "id": 20464,
+ "id": 20933,
"properties": {
"east": "none",
"north": "low",
@@ -171713,7 +177899,7 @@
}
},
{
- "id": 20465,
+ "id": 20934,
"properties": {
"east": "none",
"north": "low",
@@ -171724,7 +177910,7 @@
}
},
{
- "id": 20466,
+ "id": 20935,
"properties": {
"east": "none",
"north": "low",
@@ -171735,7 +177921,7 @@
}
},
{
- "id": 20467,
+ "id": 20936,
"properties": {
"east": "none",
"north": "low",
@@ -171746,7 +177932,7 @@
}
},
{
- "id": 20468,
+ "id": 20937,
"properties": {
"east": "none",
"north": "low",
@@ -171757,7 +177943,7 @@
}
},
{
- "id": 20469,
+ "id": 20938,
"properties": {
"east": "none",
"north": "low",
@@ -171768,7 +177954,7 @@
}
},
{
- "id": 20470,
+ "id": 20939,
"properties": {
"east": "none",
"north": "tall",
@@ -171779,7 +177965,7 @@
}
},
{
- "id": 20471,
+ "id": 20940,
"properties": {
"east": "none",
"north": "tall",
@@ -171790,7 +177976,7 @@
}
},
{
- "id": 20472,
+ "id": 20941,
"properties": {
"east": "none",
"north": "tall",
@@ -171801,7 +177987,7 @@
}
},
{
- "id": 20473,
+ "id": 20942,
"properties": {
"east": "none",
"north": "tall",
@@ -171812,7 +177998,7 @@
}
},
{
- "id": 20474,
+ "id": 20943,
"properties": {
"east": "none",
"north": "tall",
@@ -171823,7 +178009,7 @@
}
},
{
- "id": 20475,
+ "id": 20944,
"properties": {
"east": "none",
"north": "tall",
@@ -171834,7 +178020,7 @@
}
},
{
- "id": 20476,
+ "id": 20945,
"properties": {
"east": "none",
"north": "tall",
@@ -171845,7 +178031,7 @@
}
},
{
- "id": 20477,
+ "id": 20946,
"properties": {
"east": "none",
"north": "tall",
@@ -171856,7 +178042,7 @@
}
},
{
- "id": 20478,
+ "id": 20947,
"properties": {
"east": "none",
"north": "tall",
@@ -171867,7 +178053,7 @@
}
},
{
- "id": 20479,
+ "id": 20948,
"properties": {
"east": "none",
"north": "tall",
@@ -171878,7 +178064,7 @@
}
},
{
- "id": 20480,
+ "id": 20949,
"properties": {
"east": "none",
"north": "tall",
@@ -171889,7 +178075,7 @@
}
},
{
- "id": 20481,
+ "id": 20950,
"properties": {
"east": "none",
"north": "tall",
@@ -171900,7 +178086,7 @@
}
},
{
- "id": 20482,
+ "id": 20951,
"properties": {
"east": "none",
"north": "tall",
@@ -171911,7 +178097,7 @@
}
},
{
- "id": 20483,
+ "id": 20952,
"properties": {
"east": "none",
"north": "tall",
@@ -171922,7 +178108,7 @@
}
},
{
- "id": 20484,
+ "id": 20953,
"properties": {
"east": "none",
"north": "tall",
@@ -171933,7 +178119,7 @@
}
},
{
- "id": 20485,
+ "id": 20954,
"properties": {
"east": "none",
"north": "tall",
@@ -171944,7 +178130,7 @@
}
},
{
- "id": 20486,
+ "id": 20955,
"properties": {
"east": "none",
"north": "tall",
@@ -171955,7 +178141,7 @@
}
},
{
- "id": 20487,
+ "id": 20956,
"properties": {
"east": "none",
"north": "tall",
@@ -171966,7 +178152,7 @@
}
},
{
- "id": 20488,
+ "id": 20957,
"properties": {
"east": "none",
"north": "tall",
@@ -171977,7 +178163,7 @@
}
},
{
- "id": 20489,
+ "id": 20958,
"properties": {
"east": "none",
"north": "tall",
@@ -171988,7 +178174,7 @@
}
},
{
- "id": 20490,
+ "id": 20959,
"properties": {
"east": "none",
"north": "tall",
@@ -171999,7 +178185,7 @@
}
},
{
- "id": 20491,
+ "id": 20960,
"properties": {
"east": "none",
"north": "tall",
@@ -172010,7 +178196,7 @@
}
},
{
- "id": 20492,
+ "id": 20961,
"properties": {
"east": "none",
"north": "tall",
@@ -172021,7 +178207,7 @@
}
},
{
- "id": 20493,
+ "id": 20962,
"properties": {
"east": "none",
"north": "tall",
@@ -172032,7 +178218,7 @@
}
},
{
- "id": 20494,
+ "id": 20963,
"properties": {
"east": "none",
"north": "tall",
@@ -172043,7 +178229,7 @@
}
},
{
- "id": 20495,
+ "id": 20964,
"properties": {
"east": "none",
"north": "tall",
@@ -172054,7 +178240,7 @@
}
},
{
- "id": 20496,
+ "id": 20965,
"properties": {
"east": "none",
"north": "tall",
@@ -172065,7 +178251,7 @@
}
},
{
- "id": 20497,
+ "id": 20966,
"properties": {
"east": "none",
"north": "tall",
@@ -172076,7 +178262,7 @@
}
},
{
- "id": 20498,
+ "id": 20967,
"properties": {
"east": "none",
"north": "tall",
@@ -172087,7 +178273,7 @@
}
},
{
- "id": 20499,
+ "id": 20968,
"properties": {
"east": "none",
"north": "tall",
@@ -172098,7 +178284,7 @@
}
},
{
- "id": 20500,
+ "id": 20969,
"properties": {
"east": "none",
"north": "tall",
@@ -172109,7 +178295,7 @@
}
},
{
- "id": 20501,
+ "id": 20970,
"properties": {
"east": "none",
"north": "tall",
@@ -172120,7 +178306,7 @@
}
},
{
- "id": 20502,
+ "id": 20971,
"properties": {
"east": "none",
"north": "tall",
@@ -172131,7 +178317,7 @@
}
},
{
- "id": 20503,
+ "id": 20972,
"properties": {
"east": "none",
"north": "tall",
@@ -172142,7 +178328,7 @@
}
},
{
- "id": 20504,
+ "id": 20973,
"properties": {
"east": "none",
"north": "tall",
@@ -172153,7 +178339,7 @@
}
},
{
- "id": 20505,
+ "id": 20974,
"properties": {
"east": "none",
"north": "tall",
@@ -172164,7 +178350,7 @@
}
},
{
- "id": 20506,
+ "id": 20975,
"properties": {
"east": "low",
"north": "none",
@@ -172175,7 +178361,7 @@
}
},
{
- "id": 20507,
+ "id": 20976,
"properties": {
"east": "low",
"north": "none",
@@ -172186,7 +178372,7 @@
}
},
{
- "id": 20508,
+ "id": 20977,
"properties": {
"east": "low",
"north": "none",
@@ -172197,7 +178383,7 @@
}
},
{
- "id": 20509,
+ "id": 20978,
"properties": {
"east": "low",
"north": "none",
@@ -172208,7 +178394,7 @@
}
},
{
- "id": 20510,
+ "id": 20979,
"properties": {
"east": "low",
"north": "none",
@@ -172219,7 +178405,7 @@
}
},
{
- "id": 20511,
+ "id": 20980,
"properties": {
"east": "low",
"north": "none",
@@ -172230,7 +178416,7 @@
}
},
{
- "id": 20512,
+ "id": 20981,
"properties": {
"east": "low",
"north": "none",
@@ -172241,7 +178427,7 @@
}
},
{
- "id": 20513,
+ "id": 20982,
"properties": {
"east": "low",
"north": "none",
@@ -172252,7 +178438,7 @@
}
},
{
- "id": 20514,
+ "id": 20983,
"properties": {
"east": "low",
"north": "none",
@@ -172263,7 +178449,7 @@
}
},
{
- "id": 20515,
+ "id": 20984,
"properties": {
"east": "low",
"north": "none",
@@ -172274,7 +178460,7 @@
}
},
{
- "id": 20516,
+ "id": 20985,
"properties": {
"east": "low",
"north": "none",
@@ -172285,7 +178471,7 @@
}
},
{
- "id": 20517,
+ "id": 20986,
"properties": {
"east": "low",
"north": "none",
@@ -172296,7 +178482,7 @@
}
},
{
- "id": 20518,
+ "id": 20987,
"properties": {
"east": "low",
"north": "none",
@@ -172307,7 +178493,7 @@
}
},
{
- "id": 20519,
+ "id": 20988,
"properties": {
"east": "low",
"north": "none",
@@ -172318,7 +178504,7 @@
}
},
{
- "id": 20520,
+ "id": 20989,
"properties": {
"east": "low",
"north": "none",
@@ -172329,7 +178515,7 @@
}
},
{
- "id": 20521,
+ "id": 20990,
"properties": {
"east": "low",
"north": "none",
@@ -172340,7 +178526,7 @@
}
},
{
- "id": 20522,
+ "id": 20991,
"properties": {
"east": "low",
"north": "none",
@@ -172351,7 +178537,7 @@
}
},
{
- "id": 20523,
+ "id": 20992,
"properties": {
"east": "low",
"north": "none",
@@ -172362,7 +178548,7 @@
}
},
{
- "id": 20524,
+ "id": 20993,
"properties": {
"east": "low",
"north": "none",
@@ -172373,7 +178559,7 @@
}
},
{
- "id": 20525,
+ "id": 20994,
"properties": {
"east": "low",
"north": "none",
@@ -172384,7 +178570,7 @@
}
},
{
- "id": 20526,
+ "id": 20995,
"properties": {
"east": "low",
"north": "none",
@@ -172395,7 +178581,7 @@
}
},
{
- "id": 20527,
+ "id": 20996,
"properties": {
"east": "low",
"north": "none",
@@ -172406,7 +178592,7 @@
}
},
{
- "id": 20528,
+ "id": 20997,
"properties": {
"east": "low",
"north": "none",
@@ -172417,7 +178603,7 @@
}
},
{
- "id": 20529,
+ "id": 20998,
"properties": {
"east": "low",
"north": "none",
@@ -172428,7 +178614,7 @@
}
},
{
- "id": 20530,
+ "id": 20999,
"properties": {
"east": "low",
"north": "none",
@@ -172439,7 +178625,7 @@
}
},
{
- "id": 20531,
+ "id": 21000,
"properties": {
"east": "low",
"north": "none",
@@ -172450,7 +178636,7 @@
}
},
{
- "id": 20532,
+ "id": 21001,
"properties": {
"east": "low",
"north": "none",
@@ -172461,7 +178647,7 @@
}
},
{
- "id": 20533,
+ "id": 21002,
"properties": {
"east": "low",
"north": "none",
@@ -172472,7 +178658,7 @@
}
},
{
- "id": 20534,
+ "id": 21003,
"properties": {
"east": "low",
"north": "none",
@@ -172483,7 +178669,7 @@
}
},
{
- "id": 20535,
+ "id": 21004,
"properties": {
"east": "low",
"north": "none",
@@ -172494,7 +178680,7 @@
}
},
{
- "id": 20536,
+ "id": 21005,
"properties": {
"east": "low",
"north": "none",
@@ -172505,7 +178691,7 @@
}
},
{
- "id": 20537,
+ "id": 21006,
"properties": {
"east": "low",
"north": "none",
@@ -172516,7 +178702,7 @@
}
},
{
- "id": 20538,
+ "id": 21007,
"properties": {
"east": "low",
"north": "none",
@@ -172527,7 +178713,7 @@
}
},
{
- "id": 20539,
+ "id": 21008,
"properties": {
"east": "low",
"north": "none",
@@ -172538,7 +178724,7 @@
}
},
{
- "id": 20540,
+ "id": 21009,
"properties": {
"east": "low",
"north": "none",
@@ -172549,7 +178735,7 @@
}
},
{
- "id": 20541,
+ "id": 21010,
"properties": {
"east": "low",
"north": "none",
@@ -172560,7 +178746,7 @@
}
},
{
- "id": 20542,
+ "id": 21011,
"properties": {
"east": "low",
"north": "low",
@@ -172571,7 +178757,7 @@
}
},
{
- "id": 20543,
+ "id": 21012,
"properties": {
"east": "low",
"north": "low",
@@ -172582,7 +178768,7 @@
}
},
{
- "id": 20544,
+ "id": 21013,
"properties": {
"east": "low",
"north": "low",
@@ -172593,7 +178779,7 @@
}
},
{
- "id": 20545,
+ "id": 21014,
"properties": {
"east": "low",
"north": "low",
@@ -172604,7 +178790,7 @@
}
},
{
- "id": 20546,
+ "id": 21015,
"properties": {
"east": "low",
"north": "low",
@@ -172615,7 +178801,7 @@
}
},
{
- "id": 20547,
+ "id": 21016,
"properties": {
"east": "low",
"north": "low",
@@ -172626,7 +178812,7 @@
}
},
{
- "id": 20548,
+ "id": 21017,
"properties": {
"east": "low",
"north": "low",
@@ -172637,7 +178823,7 @@
}
},
{
- "id": 20549,
+ "id": 21018,
"properties": {
"east": "low",
"north": "low",
@@ -172648,7 +178834,7 @@
}
},
{
- "id": 20550,
+ "id": 21019,
"properties": {
"east": "low",
"north": "low",
@@ -172659,7 +178845,7 @@
}
},
{
- "id": 20551,
+ "id": 21020,
"properties": {
"east": "low",
"north": "low",
@@ -172670,7 +178856,7 @@
}
},
{
- "id": 20552,
+ "id": 21021,
"properties": {
"east": "low",
"north": "low",
@@ -172681,7 +178867,7 @@
}
},
{
- "id": 20553,
+ "id": 21022,
"properties": {
"east": "low",
"north": "low",
@@ -172692,7 +178878,7 @@
}
},
{
- "id": 20554,
+ "id": 21023,
"properties": {
"east": "low",
"north": "low",
@@ -172703,7 +178889,7 @@
}
},
{
- "id": 20555,
+ "id": 21024,
"properties": {
"east": "low",
"north": "low",
@@ -172714,7 +178900,7 @@
}
},
{
- "id": 20556,
+ "id": 21025,
"properties": {
"east": "low",
"north": "low",
@@ -172725,7 +178911,7 @@
}
},
{
- "id": 20557,
+ "id": 21026,
"properties": {
"east": "low",
"north": "low",
@@ -172736,7 +178922,7 @@
}
},
{
- "id": 20558,
+ "id": 21027,
"properties": {
"east": "low",
"north": "low",
@@ -172747,7 +178933,7 @@
}
},
{
- "id": 20559,
+ "id": 21028,
"properties": {
"east": "low",
"north": "low",
@@ -172758,7 +178944,7 @@
}
},
{
- "id": 20560,
+ "id": 21029,
"properties": {
"east": "low",
"north": "low",
@@ -172769,7 +178955,7 @@
}
},
{
- "id": 20561,
+ "id": 21030,
"properties": {
"east": "low",
"north": "low",
@@ -172780,7 +178966,7 @@
}
},
{
- "id": 20562,
+ "id": 21031,
"properties": {
"east": "low",
"north": "low",
@@ -172791,7 +178977,7 @@
}
},
{
- "id": 20563,
+ "id": 21032,
"properties": {
"east": "low",
"north": "low",
@@ -172802,7 +178988,7 @@
}
},
{
- "id": 20564,
+ "id": 21033,
"properties": {
"east": "low",
"north": "low",
@@ -172813,7 +178999,7 @@
}
},
{
- "id": 20565,
+ "id": 21034,
"properties": {
"east": "low",
"north": "low",
@@ -172824,7 +179010,7 @@
}
},
{
- "id": 20566,
+ "id": 21035,
"properties": {
"east": "low",
"north": "low",
@@ -172835,7 +179021,7 @@
}
},
{
- "id": 20567,
+ "id": 21036,
"properties": {
"east": "low",
"north": "low",
@@ -172846,7 +179032,7 @@
}
},
{
- "id": 20568,
+ "id": 21037,
"properties": {
"east": "low",
"north": "low",
@@ -172857,7 +179043,7 @@
}
},
{
- "id": 20569,
+ "id": 21038,
"properties": {
"east": "low",
"north": "low",
@@ -172868,7 +179054,7 @@
}
},
{
- "id": 20570,
+ "id": 21039,
"properties": {
"east": "low",
"north": "low",
@@ -172879,7 +179065,7 @@
}
},
{
- "id": 20571,
+ "id": 21040,
"properties": {
"east": "low",
"north": "low",
@@ -172890,7 +179076,7 @@
}
},
{
- "id": 20572,
+ "id": 21041,
"properties": {
"east": "low",
"north": "low",
@@ -172901,7 +179087,7 @@
}
},
{
- "id": 20573,
+ "id": 21042,
"properties": {
"east": "low",
"north": "low",
@@ -172912,7 +179098,7 @@
}
},
{
- "id": 20574,
+ "id": 21043,
"properties": {
"east": "low",
"north": "low",
@@ -172923,7 +179109,7 @@
}
},
{
- "id": 20575,
+ "id": 21044,
"properties": {
"east": "low",
"north": "low",
@@ -172934,7 +179120,7 @@
}
},
{
- "id": 20576,
+ "id": 21045,
"properties": {
"east": "low",
"north": "low",
@@ -172945,7 +179131,7 @@
}
},
{
- "id": 20577,
+ "id": 21046,
"properties": {
"east": "low",
"north": "low",
@@ -172956,7 +179142,7 @@
}
},
{
- "id": 20578,
+ "id": 21047,
"properties": {
"east": "low",
"north": "tall",
@@ -172967,7 +179153,7 @@
}
},
{
- "id": 20579,
+ "id": 21048,
"properties": {
"east": "low",
"north": "tall",
@@ -172978,7 +179164,7 @@
}
},
{
- "id": 20580,
+ "id": 21049,
"properties": {
"east": "low",
"north": "tall",
@@ -172989,7 +179175,7 @@
}
},
{
- "id": 20581,
+ "id": 21050,
"properties": {
"east": "low",
"north": "tall",
@@ -173000,7 +179186,7 @@
}
},
{
- "id": 20582,
+ "id": 21051,
"properties": {
"east": "low",
"north": "tall",
@@ -173011,7 +179197,7 @@
}
},
{
- "id": 20583,
+ "id": 21052,
"properties": {
"east": "low",
"north": "tall",
@@ -173022,7 +179208,7 @@
}
},
{
- "id": 20584,
+ "id": 21053,
"properties": {
"east": "low",
"north": "tall",
@@ -173033,7 +179219,7 @@
}
},
{
- "id": 20585,
+ "id": 21054,
"properties": {
"east": "low",
"north": "tall",
@@ -173044,7 +179230,7 @@
}
},
{
- "id": 20586,
+ "id": 21055,
"properties": {
"east": "low",
"north": "tall",
@@ -173055,7 +179241,7 @@
}
},
{
- "id": 20587,
+ "id": 21056,
"properties": {
"east": "low",
"north": "tall",
@@ -173066,7 +179252,7 @@
}
},
{
- "id": 20588,
+ "id": 21057,
"properties": {
"east": "low",
"north": "tall",
@@ -173077,7 +179263,7 @@
}
},
{
- "id": 20589,
+ "id": 21058,
"properties": {
"east": "low",
"north": "tall",
@@ -173088,7 +179274,7 @@
}
},
{
- "id": 20590,
+ "id": 21059,
"properties": {
"east": "low",
"north": "tall",
@@ -173099,7 +179285,7 @@
}
},
{
- "id": 20591,
+ "id": 21060,
"properties": {
"east": "low",
"north": "tall",
@@ -173110,7 +179296,7 @@
}
},
{
- "id": 20592,
+ "id": 21061,
"properties": {
"east": "low",
"north": "tall",
@@ -173121,7 +179307,7 @@
}
},
{
- "id": 20593,
+ "id": 21062,
"properties": {
"east": "low",
"north": "tall",
@@ -173132,7 +179318,7 @@
}
},
{
- "id": 20594,
+ "id": 21063,
"properties": {
"east": "low",
"north": "tall",
@@ -173143,7 +179329,7 @@
}
},
{
- "id": 20595,
+ "id": 21064,
"properties": {
"east": "low",
"north": "tall",
@@ -173154,7 +179340,7 @@
}
},
{
- "id": 20596,
+ "id": 21065,
"properties": {
"east": "low",
"north": "tall",
@@ -173165,7 +179351,7 @@
}
},
{
- "id": 20597,
+ "id": 21066,
"properties": {
"east": "low",
"north": "tall",
@@ -173176,7 +179362,7 @@
}
},
{
- "id": 20598,
+ "id": 21067,
"properties": {
"east": "low",
"north": "tall",
@@ -173187,7 +179373,7 @@
}
},
{
- "id": 20599,
+ "id": 21068,
"properties": {
"east": "low",
"north": "tall",
@@ -173198,7 +179384,7 @@
}
},
{
- "id": 20600,
+ "id": 21069,
"properties": {
"east": "low",
"north": "tall",
@@ -173209,7 +179395,7 @@
}
},
{
- "id": 20601,
+ "id": 21070,
"properties": {
"east": "low",
"north": "tall",
@@ -173220,7 +179406,7 @@
}
},
{
- "id": 20602,
+ "id": 21071,
"properties": {
"east": "low",
"north": "tall",
@@ -173231,7 +179417,7 @@
}
},
{
- "id": 20603,
+ "id": 21072,
"properties": {
"east": "low",
"north": "tall",
@@ -173242,7 +179428,7 @@
}
},
{
- "id": 20604,
+ "id": 21073,
"properties": {
"east": "low",
"north": "tall",
@@ -173253,7 +179439,7 @@
}
},
{
- "id": 20605,
+ "id": 21074,
"properties": {
"east": "low",
"north": "tall",
@@ -173264,7 +179450,7 @@
}
},
{
- "id": 20606,
+ "id": 21075,
"properties": {
"east": "low",
"north": "tall",
@@ -173275,7 +179461,7 @@
}
},
{
- "id": 20607,
+ "id": 21076,
"properties": {
"east": "low",
"north": "tall",
@@ -173286,7 +179472,7 @@
}
},
{
- "id": 20608,
+ "id": 21077,
"properties": {
"east": "low",
"north": "tall",
@@ -173297,7 +179483,7 @@
}
},
{
- "id": 20609,
+ "id": 21078,
"properties": {
"east": "low",
"north": "tall",
@@ -173308,7 +179494,7 @@
}
},
{
- "id": 20610,
+ "id": 21079,
"properties": {
"east": "low",
"north": "tall",
@@ -173319,7 +179505,7 @@
}
},
{
- "id": 20611,
+ "id": 21080,
"properties": {
"east": "low",
"north": "tall",
@@ -173330,7 +179516,7 @@
}
},
{
- "id": 20612,
+ "id": 21081,
"properties": {
"east": "low",
"north": "tall",
@@ -173341,7 +179527,7 @@
}
},
{
- "id": 20613,
+ "id": 21082,
"properties": {
"east": "low",
"north": "tall",
@@ -173352,7 +179538,7 @@
}
},
{
- "id": 20614,
+ "id": 21083,
"properties": {
"east": "tall",
"north": "none",
@@ -173363,7 +179549,7 @@
}
},
{
- "id": 20615,
+ "id": 21084,
"properties": {
"east": "tall",
"north": "none",
@@ -173374,7 +179560,7 @@
}
},
{
- "id": 20616,
+ "id": 21085,
"properties": {
"east": "tall",
"north": "none",
@@ -173385,7 +179571,7 @@
}
},
{
- "id": 20617,
+ "id": 21086,
"properties": {
"east": "tall",
"north": "none",
@@ -173396,7 +179582,7 @@
}
},
{
- "id": 20618,
+ "id": 21087,
"properties": {
"east": "tall",
"north": "none",
@@ -173407,7 +179593,7 @@
}
},
{
- "id": 20619,
+ "id": 21088,
"properties": {
"east": "tall",
"north": "none",
@@ -173418,7 +179604,7 @@
}
},
{
- "id": 20620,
+ "id": 21089,
"properties": {
"east": "tall",
"north": "none",
@@ -173429,7 +179615,7 @@
}
},
{
- "id": 20621,
+ "id": 21090,
"properties": {
"east": "tall",
"north": "none",
@@ -173440,7 +179626,7 @@
}
},
{
- "id": 20622,
+ "id": 21091,
"properties": {
"east": "tall",
"north": "none",
@@ -173451,7 +179637,7 @@
}
},
{
- "id": 20623,
+ "id": 21092,
"properties": {
"east": "tall",
"north": "none",
@@ -173462,7 +179648,7 @@
}
},
{
- "id": 20624,
+ "id": 21093,
"properties": {
"east": "tall",
"north": "none",
@@ -173473,7 +179659,7 @@
}
},
{
- "id": 20625,
+ "id": 21094,
"properties": {
"east": "tall",
"north": "none",
@@ -173484,7 +179670,7 @@
}
},
{
- "id": 20626,
+ "id": 21095,
"properties": {
"east": "tall",
"north": "none",
@@ -173495,7 +179681,7 @@
}
},
{
- "id": 20627,
+ "id": 21096,
"properties": {
"east": "tall",
"north": "none",
@@ -173506,7 +179692,7 @@
}
},
{
- "id": 20628,
+ "id": 21097,
"properties": {
"east": "tall",
"north": "none",
@@ -173517,7 +179703,7 @@
}
},
{
- "id": 20629,
+ "id": 21098,
"properties": {
"east": "tall",
"north": "none",
@@ -173528,7 +179714,7 @@
}
},
{
- "id": 20630,
+ "id": 21099,
"properties": {
"east": "tall",
"north": "none",
@@ -173539,7 +179725,7 @@
}
},
{
- "id": 20631,
+ "id": 21100,
"properties": {
"east": "tall",
"north": "none",
@@ -173550,7 +179736,7 @@
}
},
{
- "id": 20632,
+ "id": 21101,
"properties": {
"east": "tall",
"north": "none",
@@ -173561,7 +179747,7 @@
}
},
{
- "id": 20633,
+ "id": 21102,
"properties": {
"east": "tall",
"north": "none",
@@ -173572,7 +179758,7 @@
}
},
{
- "id": 20634,
+ "id": 21103,
"properties": {
"east": "tall",
"north": "none",
@@ -173583,7 +179769,7 @@
}
},
{
- "id": 20635,
+ "id": 21104,
"properties": {
"east": "tall",
"north": "none",
@@ -173594,7 +179780,7 @@
}
},
{
- "id": 20636,
+ "id": 21105,
"properties": {
"east": "tall",
"north": "none",
@@ -173605,7 +179791,7 @@
}
},
{
- "id": 20637,
+ "id": 21106,
"properties": {
"east": "tall",
"north": "none",
@@ -173616,7 +179802,7 @@
}
},
{
- "id": 20638,
+ "id": 21107,
"properties": {
"east": "tall",
"north": "none",
@@ -173627,7 +179813,7 @@
}
},
{
- "id": 20639,
+ "id": 21108,
"properties": {
"east": "tall",
"north": "none",
@@ -173638,7 +179824,7 @@
}
},
{
- "id": 20640,
+ "id": 21109,
"properties": {
"east": "tall",
"north": "none",
@@ -173649,7 +179835,7 @@
}
},
{
- "id": 20641,
+ "id": 21110,
"properties": {
"east": "tall",
"north": "none",
@@ -173660,7 +179846,7 @@
}
},
{
- "id": 20642,
+ "id": 21111,
"properties": {
"east": "tall",
"north": "none",
@@ -173671,7 +179857,7 @@
}
},
{
- "id": 20643,
+ "id": 21112,
"properties": {
"east": "tall",
"north": "none",
@@ -173682,7 +179868,7 @@
}
},
{
- "id": 20644,
+ "id": 21113,
"properties": {
"east": "tall",
"north": "none",
@@ -173693,7 +179879,7 @@
}
},
{
- "id": 20645,
+ "id": 21114,
"properties": {
"east": "tall",
"north": "none",
@@ -173704,7 +179890,7 @@
}
},
{
- "id": 20646,
+ "id": 21115,
"properties": {
"east": "tall",
"north": "none",
@@ -173715,7 +179901,7 @@
}
},
{
- "id": 20647,
+ "id": 21116,
"properties": {
"east": "tall",
"north": "none",
@@ -173726,7 +179912,7 @@
}
},
{
- "id": 20648,
+ "id": 21117,
"properties": {
"east": "tall",
"north": "none",
@@ -173737,7 +179923,7 @@
}
},
{
- "id": 20649,
+ "id": 21118,
"properties": {
"east": "tall",
"north": "none",
@@ -173748,7 +179934,7 @@
}
},
{
- "id": 20650,
+ "id": 21119,
"properties": {
"east": "tall",
"north": "low",
@@ -173759,7 +179945,7 @@
}
},
{
- "id": 20651,
+ "id": 21120,
"properties": {
"east": "tall",
"north": "low",
@@ -173770,7 +179956,7 @@
}
},
{
- "id": 20652,
+ "id": 21121,
"properties": {
"east": "tall",
"north": "low",
@@ -173781,7 +179967,7 @@
}
},
{
- "id": 20653,
+ "id": 21122,
"properties": {
"east": "tall",
"north": "low",
@@ -173792,7 +179978,7 @@
}
},
{
- "id": 20654,
+ "id": 21123,
"properties": {
"east": "tall",
"north": "low",
@@ -173803,7 +179989,7 @@
}
},
{
- "id": 20655,
+ "id": 21124,
"properties": {
"east": "tall",
"north": "low",
@@ -173814,7 +180000,7 @@
}
},
{
- "id": 20656,
+ "id": 21125,
"properties": {
"east": "tall",
"north": "low",
@@ -173825,7 +180011,7 @@
}
},
{
- "id": 20657,
+ "id": 21126,
"properties": {
"east": "tall",
"north": "low",
@@ -173836,7 +180022,7 @@
}
},
{
- "id": 20658,
+ "id": 21127,
"properties": {
"east": "tall",
"north": "low",
@@ -173847,7 +180033,7 @@
}
},
{
- "id": 20659,
+ "id": 21128,
"properties": {
"east": "tall",
"north": "low",
@@ -173858,7 +180044,7 @@
}
},
{
- "id": 20660,
+ "id": 21129,
"properties": {
"east": "tall",
"north": "low",
@@ -173869,7 +180055,7 @@
}
},
{
- "id": 20661,
+ "id": 21130,
"properties": {
"east": "tall",
"north": "low",
@@ -173880,7 +180066,7 @@
}
},
{
- "id": 20662,
+ "id": 21131,
"properties": {
"east": "tall",
"north": "low",
@@ -173891,7 +180077,7 @@
}
},
{
- "id": 20663,
+ "id": 21132,
"properties": {
"east": "tall",
"north": "low",
@@ -173902,7 +180088,7 @@
}
},
{
- "id": 20664,
+ "id": 21133,
"properties": {
"east": "tall",
"north": "low",
@@ -173913,7 +180099,7 @@
}
},
{
- "id": 20665,
+ "id": 21134,
"properties": {
"east": "tall",
"north": "low",
@@ -173924,7 +180110,7 @@
}
},
{
- "id": 20666,
+ "id": 21135,
"properties": {
"east": "tall",
"north": "low",
@@ -173935,7 +180121,7 @@
}
},
{
- "id": 20667,
+ "id": 21136,
"properties": {
"east": "tall",
"north": "low",
@@ -173946,7 +180132,7 @@
}
},
{
- "id": 20668,
+ "id": 21137,
"properties": {
"east": "tall",
"north": "low",
@@ -173957,7 +180143,7 @@
}
},
{
- "id": 20669,
+ "id": 21138,
"properties": {
"east": "tall",
"north": "low",
@@ -173968,7 +180154,7 @@
}
},
{
- "id": 20670,
+ "id": 21139,
"properties": {
"east": "tall",
"north": "low",
@@ -173979,7 +180165,7 @@
}
},
{
- "id": 20671,
+ "id": 21140,
"properties": {
"east": "tall",
"north": "low",
@@ -173990,7 +180176,7 @@
}
},
{
- "id": 20672,
+ "id": 21141,
"properties": {
"east": "tall",
"north": "low",
@@ -174001,7 +180187,7 @@
}
},
{
- "id": 20673,
+ "id": 21142,
"properties": {
"east": "tall",
"north": "low",
@@ -174012,7 +180198,7 @@
}
},
{
- "id": 20674,
+ "id": 21143,
"properties": {
"east": "tall",
"north": "low",
@@ -174023,7 +180209,7 @@
}
},
{
- "id": 20675,
+ "id": 21144,
"properties": {
"east": "tall",
"north": "low",
@@ -174034,7 +180220,7 @@
}
},
{
- "id": 20676,
+ "id": 21145,
"properties": {
"east": "tall",
"north": "low",
@@ -174045,7 +180231,7 @@
}
},
{
- "id": 20677,
+ "id": 21146,
"properties": {
"east": "tall",
"north": "low",
@@ -174056,7 +180242,7 @@
}
},
{
- "id": 20678,
+ "id": 21147,
"properties": {
"east": "tall",
"north": "low",
@@ -174067,7 +180253,7 @@
}
},
{
- "id": 20679,
+ "id": 21148,
"properties": {
"east": "tall",
"north": "low",
@@ -174078,7 +180264,7 @@
}
},
{
- "id": 20680,
+ "id": 21149,
"properties": {
"east": "tall",
"north": "low",
@@ -174089,7 +180275,7 @@
}
},
{
- "id": 20681,
+ "id": 21150,
"properties": {
"east": "tall",
"north": "low",
@@ -174100,7 +180286,7 @@
}
},
{
- "id": 20682,
+ "id": 21151,
"properties": {
"east": "tall",
"north": "low",
@@ -174111,7 +180297,7 @@
}
},
{
- "id": 20683,
+ "id": 21152,
"properties": {
"east": "tall",
"north": "low",
@@ -174122,7 +180308,7 @@
}
},
{
- "id": 20684,
+ "id": 21153,
"properties": {
"east": "tall",
"north": "low",
@@ -174133,7 +180319,7 @@
}
},
{
- "id": 20685,
+ "id": 21154,
"properties": {
"east": "tall",
"north": "low",
@@ -174144,7 +180330,7 @@
}
},
{
- "id": 20686,
+ "id": 21155,
"properties": {
"east": "tall",
"north": "tall",
@@ -174155,7 +180341,7 @@
}
},
{
- "id": 20687,
+ "id": 21156,
"properties": {
"east": "tall",
"north": "tall",
@@ -174166,7 +180352,7 @@
}
},
{
- "id": 20688,
+ "id": 21157,
"properties": {
"east": "tall",
"north": "tall",
@@ -174177,7 +180363,7 @@
}
},
{
- "id": 20689,
+ "id": 21158,
"properties": {
"east": "tall",
"north": "tall",
@@ -174188,7 +180374,7 @@
}
},
{
- "id": 20690,
+ "id": 21159,
"properties": {
"east": "tall",
"north": "tall",
@@ -174199,7 +180385,7 @@
}
},
{
- "id": 20691,
+ "id": 21160,
"properties": {
"east": "tall",
"north": "tall",
@@ -174210,7 +180396,7 @@
}
},
{
- "id": 20692,
+ "id": 21161,
"properties": {
"east": "tall",
"north": "tall",
@@ -174221,7 +180407,7 @@
}
},
{
- "id": 20693,
+ "id": 21162,
"properties": {
"east": "tall",
"north": "tall",
@@ -174232,7 +180418,7 @@
}
},
{
- "id": 20694,
+ "id": 21163,
"properties": {
"east": "tall",
"north": "tall",
@@ -174243,7 +180429,7 @@
}
},
{
- "id": 20695,
+ "id": 21164,
"properties": {
"east": "tall",
"north": "tall",
@@ -174254,7 +180440,7 @@
}
},
{
- "id": 20696,
+ "id": 21165,
"properties": {
"east": "tall",
"north": "tall",
@@ -174265,7 +180451,7 @@
}
},
{
- "id": 20697,
+ "id": 21166,
"properties": {
"east": "tall",
"north": "tall",
@@ -174276,7 +180462,7 @@
}
},
{
- "id": 20698,
+ "id": 21167,
"properties": {
"east": "tall",
"north": "tall",
@@ -174287,7 +180473,7 @@
}
},
{
- "id": 20699,
+ "id": 21168,
"properties": {
"east": "tall",
"north": "tall",
@@ -174298,7 +180484,7 @@
}
},
{
- "id": 20700,
+ "id": 21169,
"properties": {
"east": "tall",
"north": "tall",
@@ -174309,7 +180495,7 @@
}
},
{
- "id": 20701,
+ "id": 21170,
"properties": {
"east": "tall",
"north": "tall",
@@ -174320,7 +180506,7 @@
}
},
{
- "id": 20702,
+ "id": 21171,
"properties": {
"east": "tall",
"north": "tall",
@@ -174331,7 +180517,7 @@
}
},
{
- "id": 20703,
+ "id": 21172,
"properties": {
"east": "tall",
"north": "tall",
@@ -174342,7 +180528,7 @@
}
},
{
- "id": 20704,
+ "id": 21173,
"properties": {
"east": "tall",
"north": "tall",
@@ -174353,7 +180539,7 @@
}
},
{
- "id": 20705,
+ "id": 21174,
"properties": {
"east": "tall",
"north": "tall",
@@ -174364,7 +180550,7 @@
}
},
{
- "id": 20706,
+ "id": 21175,
"properties": {
"east": "tall",
"north": "tall",
@@ -174375,7 +180561,7 @@
}
},
{
- "id": 20707,
+ "id": 21176,
"properties": {
"east": "tall",
"north": "tall",
@@ -174386,7 +180572,7 @@
}
},
{
- "id": 20708,
+ "id": 21177,
"properties": {
"east": "tall",
"north": "tall",
@@ -174397,7 +180583,7 @@
}
},
{
- "id": 20709,
+ "id": 21178,
"properties": {
"east": "tall",
"north": "tall",
@@ -174408,7 +180594,7 @@
}
},
{
- "id": 20710,
+ "id": 21179,
"properties": {
"east": "tall",
"north": "tall",
@@ -174419,7 +180605,7 @@
}
},
{
- "id": 20711,
+ "id": 21180,
"properties": {
"east": "tall",
"north": "tall",
@@ -174430,7 +180616,7 @@
}
},
{
- "id": 20712,
+ "id": 21181,
"properties": {
"east": "tall",
"north": "tall",
@@ -174441,7 +180627,7 @@
}
},
{
- "id": 20713,
+ "id": 21182,
"properties": {
"east": "tall",
"north": "tall",
@@ -174452,7 +180638,7 @@
}
},
{
- "id": 20714,
+ "id": 21183,
"properties": {
"east": "tall",
"north": "tall",
@@ -174463,7 +180649,7 @@
}
},
{
- "id": 20715,
+ "id": 21184,
"properties": {
"east": "tall",
"north": "tall",
@@ -174474,7 +180660,7 @@
}
},
{
- "id": 20716,
+ "id": 21185,
"properties": {
"east": "tall",
"north": "tall",
@@ -174485,7 +180671,7 @@
}
},
{
- "id": 20717,
+ "id": 21186,
"properties": {
"east": "tall",
"north": "tall",
@@ -174496,7 +180682,7 @@
}
},
{
- "id": 20718,
+ "id": 21187,
"properties": {
"east": "tall",
"north": "tall",
@@ -174507,7 +180693,7 @@
}
},
{
- "id": 20719,
+ "id": 21188,
"properties": {
"east": "tall",
"north": "tall",
@@ -174518,7 +180704,7 @@
}
},
{
- "id": 20720,
+ "id": 21189,
"properties": {
"east": "tall",
"north": "tall",
@@ -174529,7 +180715,7 @@
}
},
{
- "id": 20721,
+ "id": 21190,
"properties": {
"east": "tall",
"north": "tall",
@@ -174549,7 +180735,7 @@
"states": [
{
"default": true,
- "id": 25318
+ "id": 25787
}
]
},
@@ -174571,21 +180757,21 @@
},
"states": [
{
- "id": 25399,
+ "id": 25868,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 25400,
+ "id": 25869,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 25401,
+ "id": 25870,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -174593,21 +180779,21 @@
},
{
"default": true,
- "id": 25402,
+ "id": 25871,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 25403,
+ "id": 25872,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 25404,
+ "id": 25873,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -174648,7 +180834,7 @@
},
"states": [
{
- "id": 25319,
+ "id": 25788,
"properties": {
"facing": "north",
"half": "top",
@@ -174657,7 +180843,7 @@
}
},
{
- "id": 25320,
+ "id": 25789,
"properties": {
"facing": "north",
"half": "top",
@@ -174666,7 +180852,7 @@
}
},
{
- "id": 25321,
+ "id": 25790,
"properties": {
"facing": "north",
"half": "top",
@@ -174675,7 +180861,7 @@
}
},
{
- "id": 25322,
+ "id": 25791,
"properties": {
"facing": "north",
"half": "top",
@@ -174684,7 +180870,7 @@
}
},
{
- "id": 25323,
+ "id": 25792,
"properties": {
"facing": "north",
"half": "top",
@@ -174693,7 +180879,7 @@
}
},
{
- "id": 25324,
+ "id": 25793,
"properties": {
"facing": "north",
"half": "top",
@@ -174702,7 +180888,7 @@
}
},
{
- "id": 25325,
+ "id": 25794,
"properties": {
"facing": "north",
"half": "top",
@@ -174711,7 +180897,7 @@
}
},
{
- "id": 25326,
+ "id": 25795,
"properties": {
"facing": "north",
"half": "top",
@@ -174720,7 +180906,7 @@
}
},
{
- "id": 25327,
+ "id": 25796,
"properties": {
"facing": "north",
"half": "top",
@@ -174729,7 +180915,7 @@
}
},
{
- "id": 25328,
+ "id": 25797,
"properties": {
"facing": "north",
"half": "top",
@@ -174738,7 +180924,7 @@
}
},
{
- "id": 25329,
+ "id": 25798,
"properties": {
"facing": "north",
"half": "bottom",
@@ -174748,7 +180934,7 @@
},
{
"default": true,
- "id": 25330,
+ "id": 25799,
"properties": {
"facing": "north",
"half": "bottom",
@@ -174757,7 +180943,7 @@
}
},
{
- "id": 25331,
+ "id": 25800,
"properties": {
"facing": "north",
"half": "bottom",
@@ -174766,7 +180952,7 @@
}
},
{
- "id": 25332,
+ "id": 25801,
"properties": {
"facing": "north",
"half": "bottom",
@@ -174775,7 +180961,7 @@
}
},
{
- "id": 25333,
+ "id": 25802,
"properties": {
"facing": "north",
"half": "bottom",
@@ -174784,7 +180970,7 @@
}
},
{
- "id": 25334,
+ "id": 25803,
"properties": {
"facing": "north",
"half": "bottom",
@@ -174793,7 +180979,7 @@
}
},
{
- "id": 25335,
+ "id": 25804,
"properties": {
"facing": "north",
"half": "bottom",
@@ -174802,7 +180988,7 @@
}
},
{
- "id": 25336,
+ "id": 25805,
"properties": {
"facing": "north",
"half": "bottom",
@@ -174811,7 +180997,7 @@
}
},
{
- "id": 25337,
+ "id": 25806,
"properties": {
"facing": "north",
"half": "bottom",
@@ -174820,7 +181006,7 @@
}
},
{
- "id": 25338,
+ "id": 25807,
"properties": {
"facing": "north",
"half": "bottom",
@@ -174829,7 +181015,7 @@
}
},
{
- "id": 25339,
+ "id": 25808,
"properties": {
"facing": "south",
"half": "top",
@@ -174838,7 +181024,7 @@
}
},
{
- "id": 25340,
+ "id": 25809,
"properties": {
"facing": "south",
"half": "top",
@@ -174847,7 +181033,7 @@
}
},
{
- "id": 25341,
+ "id": 25810,
"properties": {
"facing": "south",
"half": "top",
@@ -174856,7 +181042,7 @@
}
},
{
- "id": 25342,
+ "id": 25811,
"properties": {
"facing": "south",
"half": "top",
@@ -174865,7 +181051,7 @@
}
},
{
- "id": 25343,
+ "id": 25812,
"properties": {
"facing": "south",
"half": "top",
@@ -174874,7 +181060,7 @@
}
},
{
- "id": 25344,
+ "id": 25813,
"properties": {
"facing": "south",
"half": "top",
@@ -174883,7 +181069,7 @@
}
},
{
- "id": 25345,
+ "id": 25814,
"properties": {
"facing": "south",
"half": "top",
@@ -174892,7 +181078,7 @@
}
},
{
- "id": 25346,
+ "id": 25815,
"properties": {
"facing": "south",
"half": "top",
@@ -174901,7 +181087,7 @@
}
},
{
- "id": 25347,
+ "id": 25816,
"properties": {
"facing": "south",
"half": "top",
@@ -174910,7 +181096,7 @@
}
},
{
- "id": 25348,
+ "id": 25817,
"properties": {
"facing": "south",
"half": "top",
@@ -174919,7 +181105,7 @@
}
},
{
- "id": 25349,
+ "id": 25818,
"properties": {
"facing": "south",
"half": "bottom",
@@ -174928,7 +181114,7 @@
}
},
{
- "id": 25350,
+ "id": 25819,
"properties": {
"facing": "south",
"half": "bottom",
@@ -174937,7 +181123,7 @@
}
},
{
- "id": 25351,
+ "id": 25820,
"properties": {
"facing": "south",
"half": "bottom",
@@ -174946,7 +181132,7 @@
}
},
{
- "id": 25352,
+ "id": 25821,
"properties": {
"facing": "south",
"half": "bottom",
@@ -174955,7 +181141,7 @@
}
},
{
- "id": 25353,
+ "id": 25822,
"properties": {
"facing": "south",
"half": "bottom",
@@ -174964,7 +181150,7 @@
}
},
{
- "id": 25354,
+ "id": 25823,
"properties": {
"facing": "south",
"half": "bottom",
@@ -174973,7 +181159,7 @@
}
},
{
- "id": 25355,
+ "id": 25824,
"properties": {
"facing": "south",
"half": "bottom",
@@ -174982,7 +181168,7 @@
}
},
{
- "id": 25356,
+ "id": 25825,
"properties": {
"facing": "south",
"half": "bottom",
@@ -174991,7 +181177,7 @@
}
},
{
- "id": 25357,
+ "id": 25826,
"properties": {
"facing": "south",
"half": "bottom",
@@ -175000,7 +181186,7 @@
}
},
{
- "id": 25358,
+ "id": 25827,
"properties": {
"facing": "south",
"half": "bottom",
@@ -175009,7 +181195,7 @@
}
},
{
- "id": 25359,
+ "id": 25828,
"properties": {
"facing": "west",
"half": "top",
@@ -175018,7 +181204,7 @@
}
},
{
- "id": 25360,
+ "id": 25829,
"properties": {
"facing": "west",
"half": "top",
@@ -175027,7 +181213,7 @@
}
},
{
- "id": 25361,
+ "id": 25830,
"properties": {
"facing": "west",
"half": "top",
@@ -175036,7 +181222,7 @@
}
},
{
- "id": 25362,
+ "id": 25831,
"properties": {
"facing": "west",
"half": "top",
@@ -175045,7 +181231,7 @@
}
},
{
- "id": 25363,
+ "id": 25832,
"properties": {
"facing": "west",
"half": "top",
@@ -175054,7 +181240,7 @@
}
},
{
- "id": 25364,
+ "id": 25833,
"properties": {
"facing": "west",
"half": "top",
@@ -175063,7 +181249,7 @@
}
},
{
- "id": 25365,
+ "id": 25834,
"properties": {
"facing": "west",
"half": "top",
@@ -175072,7 +181258,7 @@
}
},
{
- "id": 25366,
+ "id": 25835,
"properties": {
"facing": "west",
"half": "top",
@@ -175081,7 +181267,7 @@
}
},
{
- "id": 25367,
+ "id": 25836,
"properties": {
"facing": "west",
"half": "top",
@@ -175090,7 +181276,7 @@
}
},
{
- "id": 25368,
+ "id": 25837,
"properties": {
"facing": "west",
"half": "top",
@@ -175099,7 +181285,7 @@
}
},
{
- "id": 25369,
+ "id": 25838,
"properties": {
"facing": "west",
"half": "bottom",
@@ -175108,7 +181294,7 @@
}
},
{
- "id": 25370,
+ "id": 25839,
"properties": {
"facing": "west",
"half": "bottom",
@@ -175117,7 +181303,7 @@
}
},
{
- "id": 25371,
+ "id": 25840,
"properties": {
"facing": "west",
"half": "bottom",
@@ -175126,7 +181312,7 @@
}
},
{
- "id": 25372,
+ "id": 25841,
"properties": {
"facing": "west",
"half": "bottom",
@@ -175135,7 +181321,7 @@
}
},
{
- "id": 25373,
+ "id": 25842,
"properties": {
"facing": "west",
"half": "bottom",
@@ -175144,7 +181330,7 @@
}
},
{
- "id": 25374,
+ "id": 25843,
"properties": {
"facing": "west",
"half": "bottom",
@@ -175153,7 +181339,7 @@
}
},
{
- "id": 25375,
+ "id": 25844,
"properties": {
"facing": "west",
"half": "bottom",
@@ -175162,7 +181348,7 @@
}
},
{
- "id": 25376,
+ "id": 25845,
"properties": {
"facing": "west",
"half": "bottom",
@@ -175171,7 +181357,7 @@
}
},
{
- "id": 25377,
+ "id": 25846,
"properties": {
"facing": "west",
"half": "bottom",
@@ -175180,7 +181366,7 @@
}
},
{
- "id": 25378,
+ "id": 25847,
"properties": {
"facing": "west",
"half": "bottom",
@@ -175189,7 +181375,7 @@
}
},
{
- "id": 25379,
+ "id": 25848,
"properties": {
"facing": "east",
"half": "top",
@@ -175198,7 +181384,7 @@
}
},
{
- "id": 25380,
+ "id": 25849,
"properties": {
"facing": "east",
"half": "top",
@@ -175207,7 +181393,7 @@
}
},
{
- "id": 25381,
+ "id": 25850,
"properties": {
"facing": "east",
"half": "top",
@@ -175216,7 +181402,7 @@
}
},
{
- "id": 25382,
+ "id": 25851,
"properties": {
"facing": "east",
"half": "top",
@@ -175225,7 +181411,7 @@
}
},
{
- "id": 25383,
+ "id": 25852,
"properties": {
"facing": "east",
"half": "top",
@@ -175234,7 +181420,7 @@
}
},
{
- "id": 25384,
+ "id": 25853,
"properties": {
"facing": "east",
"half": "top",
@@ -175243,7 +181429,7 @@
}
},
{
- "id": 25385,
+ "id": 25854,
"properties": {
"facing": "east",
"half": "top",
@@ -175252,7 +181438,7 @@
}
},
{
- "id": 25386,
+ "id": 25855,
"properties": {
"facing": "east",
"half": "top",
@@ -175261,7 +181447,7 @@
}
},
{
- "id": 25387,
+ "id": 25856,
"properties": {
"facing": "east",
"half": "top",
@@ -175270,7 +181456,7 @@
}
},
{
- "id": 25388,
+ "id": 25857,
"properties": {
"facing": "east",
"half": "top",
@@ -175279,7 +181465,7 @@
}
},
{
- "id": 25389,
+ "id": 25858,
"properties": {
"facing": "east",
"half": "bottom",
@@ -175288,7 +181474,7 @@
}
},
{
- "id": 25390,
+ "id": 25859,
"properties": {
"facing": "east",
"half": "bottom",
@@ -175297,7 +181483,7 @@
}
},
{
- "id": 25391,
+ "id": 25860,
"properties": {
"facing": "east",
"half": "bottom",
@@ -175306,7 +181492,7 @@
}
},
{
- "id": 25392,
+ "id": 25861,
"properties": {
"facing": "east",
"half": "bottom",
@@ -175315,7 +181501,7 @@
}
},
{
- "id": 25393,
+ "id": 25862,
"properties": {
"facing": "east",
"half": "bottom",
@@ -175324,7 +181510,7 @@
}
},
{
- "id": 25394,
+ "id": 25863,
"properties": {
"facing": "east",
"half": "bottom",
@@ -175333,7 +181519,7 @@
}
},
{
- "id": 25395,
+ "id": 25864,
"properties": {
"facing": "east",
"half": "bottom",
@@ -175342,7 +181528,7 @@
}
},
{
- "id": 25396,
+ "id": 25865,
"properties": {
"facing": "east",
"half": "bottom",
@@ -175351,7 +181537,7 @@
}
},
{
- "id": 25397,
+ "id": 25866,
"properties": {
"facing": "east",
"half": "bottom",
@@ -175360,7 +181546,7 @@
}
},
{
- "id": 25398,
+ "id": 25867,
"properties": {
"facing": "east",
"half": "bottom",
@@ -175407,7 +181593,7 @@
},
"states": [
{
- "id": 25405,
+ "id": 25874,
"properties": {
"east": "none",
"north": "none",
@@ -175418,7 +181604,7 @@
}
},
{
- "id": 25406,
+ "id": 25875,
"properties": {
"east": "none",
"north": "none",
@@ -175429,7 +181615,7 @@
}
},
{
- "id": 25407,
+ "id": 25876,
"properties": {
"east": "none",
"north": "none",
@@ -175441,7 +181627,7 @@
},
{
"default": true,
- "id": 25408,
+ "id": 25877,
"properties": {
"east": "none",
"north": "none",
@@ -175452,7 +181638,7 @@
}
},
{
- "id": 25409,
+ "id": 25878,
"properties": {
"east": "none",
"north": "none",
@@ -175463,7 +181649,7 @@
}
},
{
- "id": 25410,
+ "id": 25879,
"properties": {
"east": "none",
"north": "none",
@@ -175474,7 +181660,7 @@
}
},
{
- "id": 25411,
+ "id": 25880,
"properties": {
"east": "none",
"north": "none",
@@ -175485,7 +181671,7 @@
}
},
{
- "id": 25412,
+ "id": 25881,
"properties": {
"east": "none",
"north": "none",
@@ -175496,7 +181682,7 @@
}
},
{
- "id": 25413,
+ "id": 25882,
"properties": {
"east": "none",
"north": "none",
@@ -175507,7 +181693,7 @@
}
},
{
- "id": 25414,
+ "id": 25883,
"properties": {
"east": "none",
"north": "none",
@@ -175518,7 +181704,7 @@
}
},
{
- "id": 25415,
+ "id": 25884,
"properties": {
"east": "none",
"north": "none",
@@ -175529,7 +181715,7 @@
}
},
{
- "id": 25416,
+ "id": 25885,
"properties": {
"east": "none",
"north": "none",
@@ -175540,7 +181726,7 @@
}
},
{
- "id": 25417,
+ "id": 25886,
"properties": {
"east": "none",
"north": "none",
@@ -175551,7 +181737,7 @@
}
},
{
- "id": 25418,
+ "id": 25887,
"properties": {
"east": "none",
"north": "none",
@@ -175562,7 +181748,7 @@
}
},
{
- "id": 25419,
+ "id": 25888,
"properties": {
"east": "none",
"north": "none",
@@ -175573,7 +181759,7 @@
}
},
{
- "id": 25420,
+ "id": 25889,
"properties": {
"east": "none",
"north": "none",
@@ -175584,7 +181770,7 @@
}
},
{
- "id": 25421,
+ "id": 25890,
"properties": {
"east": "none",
"north": "none",
@@ -175595,7 +181781,7 @@
}
},
{
- "id": 25422,
+ "id": 25891,
"properties": {
"east": "none",
"north": "none",
@@ -175606,7 +181792,7 @@
}
},
{
- "id": 25423,
+ "id": 25892,
"properties": {
"east": "none",
"north": "none",
@@ -175617,7 +181803,7 @@
}
},
{
- "id": 25424,
+ "id": 25893,
"properties": {
"east": "none",
"north": "none",
@@ -175628,7 +181814,7 @@
}
},
{
- "id": 25425,
+ "id": 25894,
"properties": {
"east": "none",
"north": "none",
@@ -175639,7 +181825,7 @@
}
},
{
- "id": 25426,
+ "id": 25895,
"properties": {
"east": "none",
"north": "none",
@@ -175650,7 +181836,7 @@
}
},
{
- "id": 25427,
+ "id": 25896,
"properties": {
"east": "none",
"north": "none",
@@ -175661,7 +181847,7 @@
}
},
{
- "id": 25428,
+ "id": 25897,
"properties": {
"east": "none",
"north": "none",
@@ -175672,7 +181858,7 @@
}
},
{
- "id": 25429,
+ "id": 25898,
"properties": {
"east": "none",
"north": "none",
@@ -175683,7 +181869,7 @@
}
},
{
- "id": 25430,
+ "id": 25899,
"properties": {
"east": "none",
"north": "none",
@@ -175694,7 +181880,7 @@
}
},
{
- "id": 25431,
+ "id": 25900,
"properties": {
"east": "none",
"north": "none",
@@ -175705,7 +181891,7 @@
}
},
{
- "id": 25432,
+ "id": 25901,
"properties": {
"east": "none",
"north": "none",
@@ -175716,7 +181902,7 @@
}
},
{
- "id": 25433,
+ "id": 25902,
"properties": {
"east": "none",
"north": "none",
@@ -175727,7 +181913,7 @@
}
},
{
- "id": 25434,
+ "id": 25903,
"properties": {
"east": "none",
"north": "none",
@@ -175738,7 +181924,7 @@
}
},
{
- "id": 25435,
+ "id": 25904,
"properties": {
"east": "none",
"north": "none",
@@ -175749,7 +181935,7 @@
}
},
{
- "id": 25436,
+ "id": 25905,
"properties": {
"east": "none",
"north": "none",
@@ -175760,7 +181946,7 @@
}
},
{
- "id": 25437,
+ "id": 25906,
"properties": {
"east": "none",
"north": "none",
@@ -175771,7 +181957,7 @@
}
},
{
- "id": 25438,
+ "id": 25907,
"properties": {
"east": "none",
"north": "none",
@@ -175782,7 +181968,7 @@
}
},
{
- "id": 25439,
+ "id": 25908,
"properties": {
"east": "none",
"north": "none",
@@ -175793,7 +181979,7 @@
}
},
{
- "id": 25440,
+ "id": 25909,
"properties": {
"east": "none",
"north": "none",
@@ -175804,7 +181990,7 @@
}
},
{
- "id": 25441,
+ "id": 25910,
"properties": {
"east": "none",
"north": "low",
@@ -175815,7 +182001,7 @@
}
},
{
- "id": 25442,
+ "id": 25911,
"properties": {
"east": "none",
"north": "low",
@@ -175826,7 +182012,7 @@
}
},
{
- "id": 25443,
+ "id": 25912,
"properties": {
"east": "none",
"north": "low",
@@ -175837,7 +182023,7 @@
}
},
{
- "id": 25444,
+ "id": 25913,
"properties": {
"east": "none",
"north": "low",
@@ -175848,7 +182034,7 @@
}
},
{
- "id": 25445,
+ "id": 25914,
"properties": {
"east": "none",
"north": "low",
@@ -175859,7 +182045,7 @@
}
},
{
- "id": 25446,
+ "id": 25915,
"properties": {
"east": "none",
"north": "low",
@@ -175870,7 +182056,7 @@
}
},
{
- "id": 25447,
+ "id": 25916,
"properties": {
"east": "none",
"north": "low",
@@ -175881,7 +182067,7 @@
}
},
{
- "id": 25448,
+ "id": 25917,
"properties": {
"east": "none",
"north": "low",
@@ -175892,7 +182078,7 @@
}
},
{
- "id": 25449,
+ "id": 25918,
"properties": {
"east": "none",
"north": "low",
@@ -175903,7 +182089,7 @@
}
},
{
- "id": 25450,
+ "id": 25919,
"properties": {
"east": "none",
"north": "low",
@@ -175914,7 +182100,7 @@
}
},
{
- "id": 25451,
+ "id": 25920,
"properties": {
"east": "none",
"north": "low",
@@ -175925,7 +182111,7 @@
}
},
{
- "id": 25452,
+ "id": 25921,
"properties": {
"east": "none",
"north": "low",
@@ -175936,7 +182122,7 @@
}
},
{
- "id": 25453,
+ "id": 25922,
"properties": {
"east": "none",
"north": "low",
@@ -175947,7 +182133,7 @@
}
},
{
- "id": 25454,
+ "id": 25923,
"properties": {
"east": "none",
"north": "low",
@@ -175958,7 +182144,7 @@
}
},
{
- "id": 25455,
+ "id": 25924,
"properties": {
"east": "none",
"north": "low",
@@ -175969,7 +182155,7 @@
}
},
{
- "id": 25456,
+ "id": 25925,
"properties": {
"east": "none",
"north": "low",
@@ -175980,7 +182166,7 @@
}
},
{
- "id": 25457,
+ "id": 25926,
"properties": {
"east": "none",
"north": "low",
@@ -175991,7 +182177,7 @@
}
},
{
- "id": 25458,
+ "id": 25927,
"properties": {
"east": "none",
"north": "low",
@@ -176002,7 +182188,7 @@
}
},
{
- "id": 25459,
+ "id": 25928,
"properties": {
"east": "none",
"north": "low",
@@ -176013,7 +182199,7 @@
}
},
{
- "id": 25460,
+ "id": 25929,
"properties": {
"east": "none",
"north": "low",
@@ -176024,7 +182210,7 @@
}
},
{
- "id": 25461,
+ "id": 25930,
"properties": {
"east": "none",
"north": "low",
@@ -176035,7 +182221,7 @@
}
},
{
- "id": 25462,
+ "id": 25931,
"properties": {
"east": "none",
"north": "low",
@@ -176046,7 +182232,7 @@
}
},
{
- "id": 25463,
+ "id": 25932,
"properties": {
"east": "none",
"north": "low",
@@ -176057,7 +182243,7 @@
}
},
{
- "id": 25464,
+ "id": 25933,
"properties": {
"east": "none",
"north": "low",
@@ -176068,7 +182254,7 @@
}
},
{
- "id": 25465,
+ "id": 25934,
"properties": {
"east": "none",
"north": "low",
@@ -176079,7 +182265,7 @@
}
},
{
- "id": 25466,
+ "id": 25935,
"properties": {
"east": "none",
"north": "low",
@@ -176090,7 +182276,7 @@
}
},
{
- "id": 25467,
+ "id": 25936,
"properties": {
"east": "none",
"north": "low",
@@ -176101,7 +182287,7 @@
}
},
{
- "id": 25468,
+ "id": 25937,
"properties": {
"east": "none",
"north": "low",
@@ -176112,7 +182298,7 @@
}
},
{
- "id": 25469,
+ "id": 25938,
"properties": {
"east": "none",
"north": "low",
@@ -176123,7 +182309,7 @@
}
},
{
- "id": 25470,
+ "id": 25939,
"properties": {
"east": "none",
"north": "low",
@@ -176134,7 +182320,7 @@
}
},
{
- "id": 25471,
+ "id": 25940,
"properties": {
"east": "none",
"north": "low",
@@ -176145,7 +182331,7 @@
}
},
{
- "id": 25472,
+ "id": 25941,
"properties": {
"east": "none",
"north": "low",
@@ -176156,7 +182342,7 @@
}
},
{
- "id": 25473,
+ "id": 25942,
"properties": {
"east": "none",
"north": "low",
@@ -176167,7 +182353,7 @@
}
},
{
- "id": 25474,
+ "id": 25943,
"properties": {
"east": "none",
"north": "low",
@@ -176178,7 +182364,7 @@
}
},
{
- "id": 25475,
+ "id": 25944,
"properties": {
"east": "none",
"north": "low",
@@ -176189,7 +182375,7 @@
}
},
{
- "id": 25476,
+ "id": 25945,
"properties": {
"east": "none",
"north": "low",
@@ -176200,7 +182386,7 @@
}
},
{
- "id": 25477,
+ "id": 25946,
"properties": {
"east": "none",
"north": "tall",
@@ -176211,7 +182397,7 @@
}
},
{
- "id": 25478,
+ "id": 25947,
"properties": {
"east": "none",
"north": "tall",
@@ -176222,7 +182408,7 @@
}
},
{
- "id": 25479,
+ "id": 25948,
"properties": {
"east": "none",
"north": "tall",
@@ -176233,7 +182419,7 @@
}
},
{
- "id": 25480,
+ "id": 25949,
"properties": {
"east": "none",
"north": "tall",
@@ -176244,7 +182430,7 @@
}
},
{
- "id": 25481,
+ "id": 25950,
"properties": {
"east": "none",
"north": "tall",
@@ -176255,7 +182441,7 @@
}
},
{
- "id": 25482,
+ "id": 25951,
"properties": {
"east": "none",
"north": "tall",
@@ -176266,7 +182452,7 @@
}
},
{
- "id": 25483,
+ "id": 25952,
"properties": {
"east": "none",
"north": "tall",
@@ -176277,7 +182463,7 @@
}
},
{
- "id": 25484,
+ "id": 25953,
"properties": {
"east": "none",
"north": "tall",
@@ -176288,7 +182474,7 @@
}
},
{
- "id": 25485,
+ "id": 25954,
"properties": {
"east": "none",
"north": "tall",
@@ -176299,7 +182485,7 @@
}
},
{
- "id": 25486,
+ "id": 25955,
"properties": {
"east": "none",
"north": "tall",
@@ -176310,7 +182496,7 @@
}
},
{
- "id": 25487,
+ "id": 25956,
"properties": {
"east": "none",
"north": "tall",
@@ -176321,7 +182507,7 @@
}
},
{
- "id": 25488,
+ "id": 25957,
"properties": {
"east": "none",
"north": "tall",
@@ -176332,7 +182518,7 @@
}
},
{
- "id": 25489,
+ "id": 25958,
"properties": {
"east": "none",
"north": "tall",
@@ -176343,7 +182529,7 @@
}
},
{
- "id": 25490,
+ "id": 25959,
"properties": {
"east": "none",
"north": "tall",
@@ -176354,7 +182540,7 @@
}
},
{
- "id": 25491,
+ "id": 25960,
"properties": {
"east": "none",
"north": "tall",
@@ -176365,7 +182551,7 @@
}
},
{
- "id": 25492,
+ "id": 25961,
"properties": {
"east": "none",
"north": "tall",
@@ -176376,7 +182562,7 @@
}
},
{
- "id": 25493,
+ "id": 25962,
"properties": {
"east": "none",
"north": "tall",
@@ -176387,7 +182573,7 @@
}
},
{
- "id": 25494,
+ "id": 25963,
"properties": {
"east": "none",
"north": "tall",
@@ -176398,7 +182584,7 @@
}
},
{
- "id": 25495,
+ "id": 25964,
"properties": {
"east": "none",
"north": "tall",
@@ -176409,7 +182595,7 @@
}
},
{
- "id": 25496,
+ "id": 25965,
"properties": {
"east": "none",
"north": "tall",
@@ -176420,7 +182606,7 @@
}
},
{
- "id": 25497,
+ "id": 25966,
"properties": {
"east": "none",
"north": "tall",
@@ -176431,7 +182617,7 @@
}
},
{
- "id": 25498,
+ "id": 25967,
"properties": {
"east": "none",
"north": "tall",
@@ -176442,7 +182628,7 @@
}
},
{
- "id": 25499,
+ "id": 25968,
"properties": {
"east": "none",
"north": "tall",
@@ -176453,7 +182639,7 @@
}
},
{
- "id": 25500,
+ "id": 25969,
"properties": {
"east": "none",
"north": "tall",
@@ -176464,7 +182650,7 @@
}
},
{
- "id": 25501,
+ "id": 25970,
"properties": {
"east": "none",
"north": "tall",
@@ -176475,7 +182661,7 @@
}
},
{
- "id": 25502,
+ "id": 25971,
"properties": {
"east": "none",
"north": "tall",
@@ -176486,7 +182672,7 @@
}
},
{
- "id": 25503,
+ "id": 25972,
"properties": {
"east": "none",
"north": "tall",
@@ -176497,7 +182683,7 @@
}
},
{
- "id": 25504,
+ "id": 25973,
"properties": {
"east": "none",
"north": "tall",
@@ -176508,7 +182694,7 @@
}
},
{
- "id": 25505,
+ "id": 25974,
"properties": {
"east": "none",
"north": "tall",
@@ -176519,7 +182705,7 @@
}
},
{
- "id": 25506,
+ "id": 25975,
"properties": {
"east": "none",
"north": "tall",
@@ -176530,7 +182716,7 @@
}
},
{
- "id": 25507,
+ "id": 25976,
"properties": {
"east": "none",
"north": "tall",
@@ -176541,7 +182727,7 @@
}
},
{
- "id": 25508,
+ "id": 25977,
"properties": {
"east": "none",
"north": "tall",
@@ -176552,7 +182738,7 @@
}
},
{
- "id": 25509,
+ "id": 25978,
"properties": {
"east": "none",
"north": "tall",
@@ -176563,7 +182749,7 @@
}
},
{
- "id": 25510,
+ "id": 25979,
"properties": {
"east": "none",
"north": "tall",
@@ -176574,7 +182760,7 @@
}
},
{
- "id": 25511,
+ "id": 25980,
"properties": {
"east": "none",
"north": "tall",
@@ -176585,7 +182771,7 @@
}
},
{
- "id": 25512,
+ "id": 25981,
"properties": {
"east": "none",
"north": "tall",
@@ -176596,7 +182782,7 @@
}
},
{
- "id": 25513,
+ "id": 25982,
"properties": {
"east": "low",
"north": "none",
@@ -176607,7 +182793,7 @@
}
},
{
- "id": 25514,
+ "id": 25983,
"properties": {
"east": "low",
"north": "none",
@@ -176618,7 +182804,7 @@
}
},
{
- "id": 25515,
+ "id": 25984,
"properties": {
"east": "low",
"north": "none",
@@ -176629,7 +182815,7 @@
}
},
{
- "id": 25516,
+ "id": 25985,
"properties": {
"east": "low",
"north": "none",
@@ -176640,7 +182826,7 @@
}
},
{
- "id": 25517,
+ "id": 25986,
"properties": {
"east": "low",
"north": "none",
@@ -176651,7 +182837,7 @@
}
},
{
- "id": 25518,
+ "id": 25987,
"properties": {
"east": "low",
"north": "none",
@@ -176662,7 +182848,7 @@
}
},
{
- "id": 25519,
+ "id": 25988,
"properties": {
"east": "low",
"north": "none",
@@ -176673,7 +182859,7 @@
}
},
{
- "id": 25520,
+ "id": 25989,
"properties": {
"east": "low",
"north": "none",
@@ -176684,7 +182870,7 @@
}
},
{
- "id": 25521,
+ "id": 25990,
"properties": {
"east": "low",
"north": "none",
@@ -176695,7 +182881,7 @@
}
},
{
- "id": 25522,
+ "id": 25991,
"properties": {
"east": "low",
"north": "none",
@@ -176706,7 +182892,7 @@
}
},
{
- "id": 25523,
+ "id": 25992,
"properties": {
"east": "low",
"north": "none",
@@ -176717,7 +182903,7 @@
}
},
{
- "id": 25524,
+ "id": 25993,
"properties": {
"east": "low",
"north": "none",
@@ -176728,7 +182914,7 @@
}
},
{
- "id": 25525,
+ "id": 25994,
"properties": {
"east": "low",
"north": "none",
@@ -176739,7 +182925,7 @@
}
},
{
- "id": 25526,
+ "id": 25995,
"properties": {
"east": "low",
"north": "none",
@@ -176750,7 +182936,7 @@
}
},
{
- "id": 25527,
+ "id": 25996,
"properties": {
"east": "low",
"north": "none",
@@ -176761,7 +182947,7 @@
}
},
{
- "id": 25528,
+ "id": 25997,
"properties": {
"east": "low",
"north": "none",
@@ -176772,7 +182958,7 @@
}
},
{
- "id": 25529,
+ "id": 25998,
"properties": {
"east": "low",
"north": "none",
@@ -176783,7 +182969,7 @@
}
},
{
- "id": 25530,
+ "id": 25999,
"properties": {
"east": "low",
"north": "none",
@@ -176794,7 +182980,7 @@
}
},
{
- "id": 25531,
+ "id": 26000,
"properties": {
"east": "low",
"north": "none",
@@ -176805,7 +182991,7 @@
}
},
{
- "id": 25532,
+ "id": 26001,
"properties": {
"east": "low",
"north": "none",
@@ -176816,7 +183002,7 @@
}
},
{
- "id": 25533,
+ "id": 26002,
"properties": {
"east": "low",
"north": "none",
@@ -176827,7 +183013,7 @@
}
},
{
- "id": 25534,
+ "id": 26003,
"properties": {
"east": "low",
"north": "none",
@@ -176838,7 +183024,7 @@
}
},
{
- "id": 25535,
+ "id": 26004,
"properties": {
"east": "low",
"north": "none",
@@ -176849,7 +183035,7 @@
}
},
{
- "id": 25536,
+ "id": 26005,
"properties": {
"east": "low",
"north": "none",
@@ -176860,7 +183046,7 @@
}
},
{
- "id": 25537,
+ "id": 26006,
"properties": {
"east": "low",
"north": "none",
@@ -176871,7 +183057,7 @@
}
},
{
- "id": 25538,
+ "id": 26007,
"properties": {
"east": "low",
"north": "none",
@@ -176882,7 +183068,7 @@
}
},
{
- "id": 25539,
+ "id": 26008,
"properties": {
"east": "low",
"north": "none",
@@ -176893,7 +183079,7 @@
}
},
{
- "id": 25540,
+ "id": 26009,
"properties": {
"east": "low",
"north": "none",
@@ -176904,7 +183090,7 @@
}
},
{
- "id": 25541,
+ "id": 26010,
"properties": {
"east": "low",
"north": "none",
@@ -176915,7 +183101,7 @@
}
},
{
- "id": 25542,
+ "id": 26011,
"properties": {
"east": "low",
"north": "none",
@@ -176926,7 +183112,7 @@
}
},
{
- "id": 25543,
+ "id": 26012,
"properties": {
"east": "low",
"north": "none",
@@ -176937,7 +183123,7 @@
}
},
{
- "id": 25544,
+ "id": 26013,
"properties": {
"east": "low",
"north": "none",
@@ -176948,7 +183134,7 @@
}
},
{
- "id": 25545,
+ "id": 26014,
"properties": {
"east": "low",
"north": "none",
@@ -176959,7 +183145,7 @@
}
},
{
- "id": 25546,
+ "id": 26015,
"properties": {
"east": "low",
"north": "none",
@@ -176970,7 +183156,7 @@
}
},
{
- "id": 25547,
+ "id": 26016,
"properties": {
"east": "low",
"north": "none",
@@ -176981,7 +183167,7 @@
}
},
{
- "id": 25548,
+ "id": 26017,
"properties": {
"east": "low",
"north": "none",
@@ -176992,7 +183178,7 @@
}
},
{
- "id": 25549,
+ "id": 26018,
"properties": {
"east": "low",
"north": "low",
@@ -177003,7 +183189,7 @@
}
},
{
- "id": 25550,
+ "id": 26019,
"properties": {
"east": "low",
"north": "low",
@@ -177014,7 +183200,7 @@
}
},
{
- "id": 25551,
+ "id": 26020,
"properties": {
"east": "low",
"north": "low",
@@ -177025,7 +183211,7 @@
}
},
{
- "id": 25552,
+ "id": 26021,
"properties": {
"east": "low",
"north": "low",
@@ -177036,7 +183222,7 @@
}
},
{
- "id": 25553,
+ "id": 26022,
"properties": {
"east": "low",
"north": "low",
@@ -177047,7 +183233,7 @@
}
},
{
- "id": 25554,
+ "id": 26023,
"properties": {
"east": "low",
"north": "low",
@@ -177058,7 +183244,7 @@
}
},
{
- "id": 25555,
+ "id": 26024,
"properties": {
"east": "low",
"north": "low",
@@ -177069,7 +183255,7 @@
}
},
{
- "id": 25556,
+ "id": 26025,
"properties": {
"east": "low",
"north": "low",
@@ -177080,7 +183266,7 @@
}
},
{
- "id": 25557,
+ "id": 26026,
"properties": {
"east": "low",
"north": "low",
@@ -177091,7 +183277,7 @@
}
},
{
- "id": 25558,
+ "id": 26027,
"properties": {
"east": "low",
"north": "low",
@@ -177102,7 +183288,7 @@
}
},
{
- "id": 25559,
+ "id": 26028,
"properties": {
"east": "low",
"north": "low",
@@ -177113,7 +183299,7 @@
}
},
{
- "id": 25560,
+ "id": 26029,
"properties": {
"east": "low",
"north": "low",
@@ -177124,7 +183310,7 @@
}
},
{
- "id": 25561,
+ "id": 26030,
"properties": {
"east": "low",
"north": "low",
@@ -177135,7 +183321,7 @@
}
},
{
- "id": 25562,
+ "id": 26031,
"properties": {
"east": "low",
"north": "low",
@@ -177146,7 +183332,7 @@
}
},
{
- "id": 25563,
+ "id": 26032,
"properties": {
"east": "low",
"north": "low",
@@ -177157,7 +183343,7 @@
}
},
{
- "id": 25564,
+ "id": 26033,
"properties": {
"east": "low",
"north": "low",
@@ -177168,7 +183354,7 @@
}
},
{
- "id": 25565,
+ "id": 26034,
"properties": {
"east": "low",
"north": "low",
@@ -177179,7 +183365,7 @@
}
},
{
- "id": 25566,
+ "id": 26035,
"properties": {
"east": "low",
"north": "low",
@@ -177190,7 +183376,7 @@
}
},
{
- "id": 25567,
+ "id": 26036,
"properties": {
"east": "low",
"north": "low",
@@ -177201,7 +183387,7 @@
}
},
{
- "id": 25568,
+ "id": 26037,
"properties": {
"east": "low",
"north": "low",
@@ -177212,7 +183398,7 @@
}
},
{
- "id": 25569,
+ "id": 26038,
"properties": {
"east": "low",
"north": "low",
@@ -177223,7 +183409,7 @@
}
},
{
- "id": 25570,
+ "id": 26039,
"properties": {
"east": "low",
"north": "low",
@@ -177234,7 +183420,7 @@
}
},
{
- "id": 25571,
+ "id": 26040,
"properties": {
"east": "low",
"north": "low",
@@ -177245,7 +183431,7 @@
}
},
{
- "id": 25572,
+ "id": 26041,
"properties": {
"east": "low",
"north": "low",
@@ -177256,7 +183442,7 @@
}
},
{
- "id": 25573,
+ "id": 26042,
"properties": {
"east": "low",
"north": "low",
@@ -177267,7 +183453,7 @@
}
},
{
- "id": 25574,
+ "id": 26043,
"properties": {
"east": "low",
"north": "low",
@@ -177278,7 +183464,7 @@
}
},
{
- "id": 25575,
+ "id": 26044,
"properties": {
"east": "low",
"north": "low",
@@ -177289,7 +183475,7 @@
}
},
{
- "id": 25576,
+ "id": 26045,
"properties": {
"east": "low",
"north": "low",
@@ -177300,7 +183486,7 @@
}
},
{
- "id": 25577,
+ "id": 26046,
"properties": {
"east": "low",
"north": "low",
@@ -177311,7 +183497,7 @@
}
},
{
- "id": 25578,
+ "id": 26047,
"properties": {
"east": "low",
"north": "low",
@@ -177322,7 +183508,7 @@
}
},
{
- "id": 25579,
+ "id": 26048,
"properties": {
"east": "low",
"north": "low",
@@ -177333,7 +183519,7 @@
}
},
{
- "id": 25580,
+ "id": 26049,
"properties": {
"east": "low",
"north": "low",
@@ -177344,7 +183530,7 @@
}
},
{
- "id": 25581,
+ "id": 26050,
"properties": {
"east": "low",
"north": "low",
@@ -177355,7 +183541,7 @@
}
},
{
- "id": 25582,
+ "id": 26051,
"properties": {
"east": "low",
"north": "low",
@@ -177366,7 +183552,7 @@
}
},
{
- "id": 25583,
+ "id": 26052,
"properties": {
"east": "low",
"north": "low",
@@ -177377,7 +183563,7 @@
}
},
{
- "id": 25584,
+ "id": 26053,
"properties": {
"east": "low",
"north": "low",
@@ -177388,7 +183574,7 @@
}
},
{
- "id": 25585,
+ "id": 26054,
"properties": {
"east": "low",
"north": "tall",
@@ -177399,7 +183585,7 @@
}
},
{
- "id": 25586,
+ "id": 26055,
"properties": {
"east": "low",
"north": "tall",
@@ -177410,7 +183596,7 @@
}
},
{
- "id": 25587,
+ "id": 26056,
"properties": {
"east": "low",
"north": "tall",
@@ -177421,7 +183607,7 @@
}
},
{
- "id": 25588,
+ "id": 26057,
"properties": {
"east": "low",
"north": "tall",
@@ -177432,7 +183618,7 @@
}
},
{
- "id": 25589,
+ "id": 26058,
"properties": {
"east": "low",
"north": "tall",
@@ -177443,7 +183629,7 @@
}
},
{
- "id": 25590,
+ "id": 26059,
"properties": {
"east": "low",
"north": "tall",
@@ -177454,7 +183640,7 @@
}
},
{
- "id": 25591,
+ "id": 26060,
"properties": {
"east": "low",
"north": "tall",
@@ -177465,7 +183651,7 @@
}
},
{
- "id": 25592,
+ "id": 26061,
"properties": {
"east": "low",
"north": "tall",
@@ -177476,7 +183662,7 @@
}
},
{
- "id": 25593,
+ "id": 26062,
"properties": {
"east": "low",
"north": "tall",
@@ -177487,7 +183673,7 @@
}
},
{
- "id": 25594,
+ "id": 26063,
"properties": {
"east": "low",
"north": "tall",
@@ -177498,7 +183684,7 @@
}
},
{
- "id": 25595,
+ "id": 26064,
"properties": {
"east": "low",
"north": "tall",
@@ -177509,7 +183695,7 @@
}
},
{
- "id": 25596,
+ "id": 26065,
"properties": {
"east": "low",
"north": "tall",
@@ -177520,7 +183706,7 @@
}
},
{
- "id": 25597,
+ "id": 26066,
"properties": {
"east": "low",
"north": "tall",
@@ -177531,7 +183717,7 @@
}
},
{
- "id": 25598,
+ "id": 26067,
"properties": {
"east": "low",
"north": "tall",
@@ -177542,7 +183728,7 @@
}
},
{
- "id": 25599,
+ "id": 26068,
"properties": {
"east": "low",
"north": "tall",
@@ -177553,7 +183739,7 @@
}
},
{
- "id": 25600,
+ "id": 26069,
"properties": {
"east": "low",
"north": "tall",
@@ -177564,7 +183750,7 @@
}
},
{
- "id": 25601,
+ "id": 26070,
"properties": {
"east": "low",
"north": "tall",
@@ -177575,7 +183761,7 @@
}
},
{
- "id": 25602,
+ "id": 26071,
"properties": {
"east": "low",
"north": "tall",
@@ -177586,7 +183772,7 @@
}
},
{
- "id": 25603,
+ "id": 26072,
"properties": {
"east": "low",
"north": "tall",
@@ -177597,7 +183783,7 @@
}
},
{
- "id": 25604,
+ "id": 26073,
"properties": {
"east": "low",
"north": "tall",
@@ -177608,7 +183794,7 @@
}
},
{
- "id": 25605,
+ "id": 26074,
"properties": {
"east": "low",
"north": "tall",
@@ -177619,7 +183805,7 @@
}
},
{
- "id": 25606,
+ "id": 26075,
"properties": {
"east": "low",
"north": "tall",
@@ -177630,7 +183816,7 @@
}
},
{
- "id": 25607,
+ "id": 26076,
"properties": {
"east": "low",
"north": "tall",
@@ -177641,7 +183827,7 @@
}
},
{
- "id": 25608,
+ "id": 26077,
"properties": {
"east": "low",
"north": "tall",
@@ -177652,7 +183838,7 @@
}
},
{
- "id": 25609,
+ "id": 26078,
"properties": {
"east": "low",
"north": "tall",
@@ -177663,7 +183849,7 @@
}
},
{
- "id": 25610,
+ "id": 26079,
"properties": {
"east": "low",
"north": "tall",
@@ -177674,7 +183860,7 @@
}
},
{
- "id": 25611,
+ "id": 26080,
"properties": {
"east": "low",
"north": "tall",
@@ -177685,7 +183871,7 @@
}
},
{
- "id": 25612,
+ "id": 26081,
"properties": {
"east": "low",
"north": "tall",
@@ -177696,7 +183882,7 @@
}
},
{
- "id": 25613,
+ "id": 26082,
"properties": {
"east": "low",
"north": "tall",
@@ -177707,7 +183893,7 @@
}
},
{
- "id": 25614,
+ "id": 26083,
"properties": {
"east": "low",
"north": "tall",
@@ -177718,7 +183904,7 @@
}
},
{
- "id": 25615,
+ "id": 26084,
"properties": {
"east": "low",
"north": "tall",
@@ -177729,7 +183915,7 @@
}
},
{
- "id": 25616,
+ "id": 26085,
"properties": {
"east": "low",
"north": "tall",
@@ -177740,7 +183926,7 @@
}
},
{
- "id": 25617,
+ "id": 26086,
"properties": {
"east": "low",
"north": "tall",
@@ -177751,7 +183937,7 @@
}
},
{
- "id": 25618,
+ "id": 26087,
"properties": {
"east": "low",
"north": "tall",
@@ -177762,7 +183948,7 @@
}
},
{
- "id": 25619,
+ "id": 26088,
"properties": {
"east": "low",
"north": "tall",
@@ -177773,7 +183959,7 @@
}
},
{
- "id": 25620,
+ "id": 26089,
"properties": {
"east": "low",
"north": "tall",
@@ -177784,7 +183970,7 @@
}
},
{
- "id": 25621,
+ "id": 26090,
"properties": {
"east": "tall",
"north": "none",
@@ -177795,7 +183981,7 @@
}
},
{
- "id": 25622,
+ "id": 26091,
"properties": {
"east": "tall",
"north": "none",
@@ -177806,7 +183992,7 @@
}
},
{
- "id": 25623,
+ "id": 26092,
"properties": {
"east": "tall",
"north": "none",
@@ -177817,7 +184003,7 @@
}
},
{
- "id": 25624,
+ "id": 26093,
"properties": {
"east": "tall",
"north": "none",
@@ -177828,7 +184014,7 @@
}
},
{
- "id": 25625,
+ "id": 26094,
"properties": {
"east": "tall",
"north": "none",
@@ -177839,7 +184025,7 @@
}
},
{
- "id": 25626,
+ "id": 26095,
"properties": {
"east": "tall",
"north": "none",
@@ -177850,7 +184036,7 @@
}
},
{
- "id": 25627,
+ "id": 26096,
"properties": {
"east": "tall",
"north": "none",
@@ -177861,7 +184047,7 @@
}
},
{
- "id": 25628,
+ "id": 26097,
"properties": {
"east": "tall",
"north": "none",
@@ -177872,7 +184058,7 @@
}
},
{
- "id": 25629,
+ "id": 26098,
"properties": {
"east": "tall",
"north": "none",
@@ -177883,7 +184069,7 @@
}
},
{
- "id": 25630,
+ "id": 26099,
"properties": {
"east": "tall",
"north": "none",
@@ -177894,7 +184080,7 @@
}
},
{
- "id": 25631,
+ "id": 26100,
"properties": {
"east": "tall",
"north": "none",
@@ -177905,7 +184091,7 @@
}
},
{
- "id": 25632,
+ "id": 26101,
"properties": {
"east": "tall",
"north": "none",
@@ -177916,7 +184102,7 @@
}
},
{
- "id": 25633,
+ "id": 26102,
"properties": {
"east": "tall",
"north": "none",
@@ -177927,7 +184113,7 @@
}
},
{
- "id": 25634,
+ "id": 26103,
"properties": {
"east": "tall",
"north": "none",
@@ -177938,7 +184124,7 @@
}
},
{
- "id": 25635,
+ "id": 26104,
"properties": {
"east": "tall",
"north": "none",
@@ -177949,7 +184135,7 @@
}
},
{
- "id": 25636,
+ "id": 26105,
"properties": {
"east": "tall",
"north": "none",
@@ -177960,7 +184146,7 @@
}
},
{
- "id": 25637,
+ "id": 26106,
"properties": {
"east": "tall",
"north": "none",
@@ -177971,7 +184157,7 @@
}
},
{
- "id": 25638,
+ "id": 26107,
"properties": {
"east": "tall",
"north": "none",
@@ -177982,7 +184168,7 @@
}
},
{
- "id": 25639,
+ "id": 26108,
"properties": {
"east": "tall",
"north": "none",
@@ -177993,7 +184179,7 @@
}
},
{
- "id": 25640,
+ "id": 26109,
"properties": {
"east": "tall",
"north": "none",
@@ -178004,7 +184190,7 @@
}
},
{
- "id": 25641,
+ "id": 26110,
"properties": {
"east": "tall",
"north": "none",
@@ -178015,7 +184201,7 @@
}
},
{
- "id": 25642,
+ "id": 26111,
"properties": {
"east": "tall",
"north": "none",
@@ -178026,7 +184212,7 @@
}
},
{
- "id": 25643,
+ "id": 26112,
"properties": {
"east": "tall",
"north": "none",
@@ -178037,7 +184223,7 @@
}
},
{
- "id": 25644,
+ "id": 26113,
"properties": {
"east": "tall",
"north": "none",
@@ -178048,7 +184234,7 @@
}
},
{
- "id": 25645,
+ "id": 26114,
"properties": {
"east": "tall",
"north": "none",
@@ -178059,7 +184245,7 @@
}
},
{
- "id": 25646,
+ "id": 26115,
"properties": {
"east": "tall",
"north": "none",
@@ -178070,7 +184256,7 @@
}
},
{
- "id": 25647,
+ "id": 26116,
"properties": {
"east": "tall",
"north": "none",
@@ -178081,7 +184267,7 @@
}
},
{
- "id": 25648,
+ "id": 26117,
"properties": {
"east": "tall",
"north": "none",
@@ -178092,7 +184278,7 @@
}
},
{
- "id": 25649,
+ "id": 26118,
"properties": {
"east": "tall",
"north": "none",
@@ -178103,7 +184289,7 @@
}
},
{
- "id": 25650,
+ "id": 26119,
"properties": {
"east": "tall",
"north": "none",
@@ -178114,7 +184300,7 @@
}
},
{
- "id": 25651,
+ "id": 26120,
"properties": {
"east": "tall",
"north": "none",
@@ -178125,7 +184311,7 @@
}
},
{
- "id": 25652,
+ "id": 26121,
"properties": {
"east": "tall",
"north": "none",
@@ -178136,7 +184322,7 @@
}
},
{
- "id": 25653,
+ "id": 26122,
"properties": {
"east": "tall",
"north": "none",
@@ -178147,7 +184333,7 @@
}
},
{
- "id": 25654,
+ "id": 26123,
"properties": {
"east": "tall",
"north": "none",
@@ -178158,7 +184344,7 @@
}
},
{
- "id": 25655,
+ "id": 26124,
"properties": {
"east": "tall",
"north": "none",
@@ -178169,7 +184355,7 @@
}
},
{
- "id": 25656,
+ "id": 26125,
"properties": {
"east": "tall",
"north": "none",
@@ -178180,7 +184366,7 @@
}
},
{
- "id": 25657,
+ "id": 26126,
"properties": {
"east": "tall",
"north": "low",
@@ -178191,7 +184377,7 @@
}
},
{
- "id": 25658,
+ "id": 26127,
"properties": {
"east": "tall",
"north": "low",
@@ -178202,7 +184388,7 @@
}
},
{
- "id": 25659,
+ "id": 26128,
"properties": {
"east": "tall",
"north": "low",
@@ -178213,7 +184399,7 @@
}
},
{
- "id": 25660,
+ "id": 26129,
"properties": {
"east": "tall",
"north": "low",
@@ -178224,7 +184410,7 @@
}
},
{
- "id": 25661,
+ "id": 26130,
"properties": {
"east": "tall",
"north": "low",
@@ -178235,7 +184421,7 @@
}
},
{
- "id": 25662,
+ "id": 26131,
"properties": {
"east": "tall",
"north": "low",
@@ -178246,7 +184432,7 @@
}
},
{
- "id": 25663,
+ "id": 26132,
"properties": {
"east": "tall",
"north": "low",
@@ -178257,7 +184443,7 @@
}
},
{
- "id": 25664,
+ "id": 26133,
"properties": {
"east": "tall",
"north": "low",
@@ -178268,7 +184454,7 @@
}
},
{
- "id": 25665,
+ "id": 26134,
"properties": {
"east": "tall",
"north": "low",
@@ -178279,7 +184465,7 @@
}
},
{
- "id": 25666,
+ "id": 26135,
"properties": {
"east": "tall",
"north": "low",
@@ -178290,7 +184476,7 @@
}
},
{
- "id": 25667,
+ "id": 26136,
"properties": {
"east": "tall",
"north": "low",
@@ -178301,7 +184487,7 @@
}
},
{
- "id": 25668,
+ "id": 26137,
"properties": {
"east": "tall",
"north": "low",
@@ -178312,7 +184498,7 @@
}
},
{
- "id": 25669,
+ "id": 26138,
"properties": {
"east": "tall",
"north": "low",
@@ -178323,7 +184509,7 @@
}
},
{
- "id": 25670,
+ "id": 26139,
"properties": {
"east": "tall",
"north": "low",
@@ -178334,7 +184520,7 @@
}
},
{
- "id": 25671,
+ "id": 26140,
"properties": {
"east": "tall",
"north": "low",
@@ -178345,7 +184531,7 @@
}
},
{
- "id": 25672,
+ "id": 26141,
"properties": {
"east": "tall",
"north": "low",
@@ -178356,7 +184542,7 @@
}
},
{
- "id": 25673,
+ "id": 26142,
"properties": {
"east": "tall",
"north": "low",
@@ -178367,7 +184553,7 @@
}
},
{
- "id": 25674,
+ "id": 26143,
"properties": {
"east": "tall",
"north": "low",
@@ -178378,7 +184564,7 @@
}
},
{
- "id": 25675,
+ "id": 26144,
"properties": {
"east": "tall",
"north": "low",
@@ -178389,7 +184575,7 @@
}
},
{
- "id": 25676,
+ "id": 26145,
"properties": {
"east": "tall",
"north": "low",
@@ -178400,7 +184586,7 @@
}
},
{
- "id": 25677,
+ "id": 26146,
"properties": {
"east": "tall",
"north": "low",
@@ -178411,7 +184597,7 @@
}
},
{
- "id": 25678,
+ "id": 26147,
"properties": {
"east": "tall",
"north": "low",
@@ -178422,7 +184608,7 @@
}
},
{
- "id": 25679,
+ "id": 26148,
"properties": {
"east": "tall",
"north": "low",
@@ -178433,7 +184619,7 @@
}
},
{
- "id": 25680,
+ "id": 26149,
"properties": {
"east": "tall",
"north": "low",
@@ -178444,7 +184630,7 @@
}
},
{
- "id": 25681,
+ "id": 26150,
"properties": {
"east": "tall",
"north": "low",
@@ -178455,7 +184641,7 @@
}
},
{
- "id": 25682,
+ "id": 26151,
"properties": {
"east": "tall",
"north": "low",
@@ -178466,7 +184652,7 @@
}
},
{
- "id": 25683,
+ "id": 26152,
"properties": {
"east": "tall",
"north": "low",
@@ -178477,7 +184663,7 @@
}
},
{
- "id": 25684,
+ "id": 26153,
"properties": {
"east": "tall",
"north": "low",
@@ -178488,7 +184674,7 @@
}
},
{
- "id": 25685,
+ "id": 26154,
"properties": {
"east": "tall",
"north": "low",
@@ -178499,7 +184685,7 @@
}
},
{
- "id": 25686,
+ "id": 26155,
"properties": {
"east": "tall",
"north": "low",
@@ -178510,7 +184696,7 @@
}
},
{
- "id": 25687,
+ "id": 26156,
"properties": {
"east": "tall",
"north": "low",
@@ -178521,7 +184707,7 @@
}
},
{
- "id": 25688,
+ "id": 26157,
"properties": {
"east": "tall",
"north": "low",
@@ -178532,7 +184718,7 @@
}
},
{
- "id": 25689,
+ "id": 26158,
"properties": {
"east": "tall",
"north": "low",
@@ -178543,7 +184729,7 @@
}
},
{
- "id": 25690,
+ "id": 26159,
"properties": {
"east": "tall",
"north": "low",
@@ -178554,7 +184740,7 @@
}
},
{
- "id": 25691,
+ "id": 26160,
"properties": {
"east": "tall",
"north": "low",
@@ -178565,7 +184751,7 @@
}
},
{
- "id": 25692,
+ "id": 26161,
"properties": {
"east": "tall",
"north": "low",
@@ -178576,7 +184762,7 @@
}
},
{
- "id": 25693,
+ "id": 26162,
"properties": {
"east": "tall",
"north": "tall",
@@ -178587,7 +184773,7 @@
}
},
{
- "id": 25694,
+ "id": 26163,
"properties": {
"east": "tall",
"north": "tall",
@@ -178598,7 +184784,7 @@
}
},
{
- "id": 25695,
+ "id": 26164,
"properties": {
"east": "tall",
"north": "tall",
@@ -178609,7 +184795,7 @@
}
},
{
- "id": 25696,
+ "id": 26165,
"properties": {
"east": "tall",
"north": "tall",
@@ -178620,7 +184806,7 @@
}
},
{
- "id": 25697,
+ "id": 26166,
"properties": {
"east": "tall",
"north": "tall",
@@ -178631,7 +184817,7 @@
}
},
{
- "id": 25698,
+ "id": 26167,
"properties": {
"east": "tall",
"north": "tall",
@@ -178642,7 +184828,7 @@
}
},
{
- "id": 25699,
+ "id": 26168,
"properties": {
"east": "tall",
"north": "tall",
@@ -178653,7 +184839,7 @@
}
},
{
- "id": 25700,
+ "id": 26169,
"properties": {
"east": "tall",
"north": "tall",
@@ -178664,7 +184850,7 @@
}
},
{
- "id": 25701,
+ "id": 26170,
"properties": {
"east": "tall",
"north": "tall",
@@ -178675,7 +184861,7 @@
}
},
{
- "id": 25702,
+ "id": 26171,
"properties": {
"east": "tall",
"north": "tall",
@@ -178686,7 +184872,7 @@
}
},
{
- "id": 25703,
+ "id": 26172,
"properties": {
"east": "tall",
"north": "tall",
@@ -178697,7 +184883,7 @@
}
},
{
- "id": 25704,
+ "id": 26173,
"properties": {
"east": "tall",
"north": "tall",
@@ -178708,7 +184894,7 @@
}
},
{
- "id": 25705,
+ "id": 26174,
"properties": {
"east": "tall",
"north": "tall",
@@ -178719,7 +184905,7 @@
}
},
{
- "id": 25706,
+ "id": 26175,
"properties": {
"east": "tall",
"north": "tall",
@@ -178730,7 +184916,7 @@
}
},
{
- "id": 25707,
+ "id": 26176,
"properties": {
"east": "tall",
"north": "tall",
@@ -178741,7 +184927,7 @@
}
},
{
- "id": 25708,
+ "id": 26177,
"properties": {
"east": "tall",
"north": "tall",
@@ -178752,7 +184938,7 @@
}
},
{
- "id": 25709,
+ "id": 26178,
"properties": {
"east": "tall",
"north": "tall",
@@ -178763,7 +184949,7 @@
}
},
{
- "id": 25710,
+ "id": 26179,
"properties": {
"east": "tall",
"north": "tall",
@@ -178774,7 +184960,7 @@
}
},
{
- "id": 25711,
+ "id": 26180,
"properties": {
"east": "tall",
"north": "tall",
@@ -178785,7 +184971,7 @@
}
},
{
- "id": 25712,
+ "id": 26181,
"properties": {
"east": "tall",
"north": "tall",
@@ -178796,7 +184982,7 @@
}
},
{
- "id": 25713,
+ "id": 26182,
"properties": {
"east": "tall",
"north": "tall",
@@ -178807,7 +184993,7 @@
}
},
{
- "id": 25714,
+ "id": 26183,
"properties": {
"east": "tall",
"north": "tall",
@@ -178818,7 +185004,7 @@
}
},
{
- "id": 25715,
+ "id": 26184,
"properties": {
"east": "tall",
"north": "tall",
@@ -178829,7 +185015,7 @@
}
},
{
- "id": 25716,
+ "id": 26185,
"properties": {
"east": "tall",
"north": "tall",
@@ -178840,7 +185026,7 @@
}
},
{
- "id": 25717,
+ "id": 26186,
"properties": {
"east": "tall",
"north": "tall",
@@ -178851,7 +185037,7 @@
}
},
{
- "id": 25718,
+ "id": 26187,
"properties": {
"east": "tall",
"north": "tall",
@@ -178862,7 +185048,7 @@
}
},
{
- "id": 25719,
+ "id": 26188,
"properties": {
"east": "tall",
"north": "tall",
@@ -178873,7 +185059,7 @@
}
},
{
- "id": 25720,
+ "id": 26189,
"properties": {
"east": "tall",
"north": "tall",
@@ -178884,7 +185070,7 @@
}
},
{
- "id": 25721,
+ "id": 26190,
"properties": {
"east": "tall",
"north": "tall",
@@ -178895,7 +185081,7 @@
}
},
{
- "id": 25722,
+ "id": 26191,
"properties": {
"east": "tall",
"north": "tall",
@@ -178906,7 +185092,7 @@
}
},
{
- "id": 25723,
+ "id": 26192,
"properties": {
"east": "tall",
"north": "tall",
@@ -178917,7 +185103,7 @@
}
},
{
- "id": 25724,
+ "id": 26193,
"properties": {
"east": "tall",
"north": "tall",
@@ -178928,7 +185114,7 @@
}
},
{
- "id": 25725,
+ "id": 26194,
"properties": {
"east": "tall",
"north": "tall",
@@ -178939,7 +185125,7 @@
}
},
{
- "id": 25726,
+ "id": 26195,
"properties": {
"east": "tall",
"north": "tall",
@@ -178950,7 +185136,7 @@
}
},
{
- "id": 25727,
+ "id": 26196,
"properties": {
"east": "tall",
"north": "tall",
@@ -178961,7 +185147,7 @@
}
},
{
- "id": 25728,
+ "id": 26197,
"properties": {
"east": "tall",
"north": "tall",
@@ -179003,21 +185189,21 @@
},
"states": [
{
- "id": 14100,
+ "id": 14569,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 14101,
+ "id": 14570,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 14102,
+ "id": 14571,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -179025,21 +185211,21 @@
},
{
"default": true,
- "id": 14103,
+ "id": 14572,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 14104,
+ "id": 14573,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 14105,
+ "id": 14574,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -179080,7 +185266,7 @@
},
"states": [
{
- "id": 13202,
+ "id": 13671,
"properties": {
"facing": "north",
"half": "top",
@@ -179089,7 +185275,7 @@
}
},
{
- "id": 13203,
+ "id": 13672,
"properties": {
"facing": "north",
"half": "top",
@@ -179098,7 +185284,7 @@
}
},
{
- "id": 13204,
+ "id": 13673,
"properties": {
"facing": "north",
"half": "top",
@@ -179107,7 +185293,7 @@
}
},
{
- "id": 13205,
+ "id": 13674,
"properties": {
"facing": "north",
"half": "top",
@@ -179116,7 +185302,7 @@
}
},
{
- "id": 13206,
+ "id": 13675,
"properties": {
"facing": "north",
"half": "top",
@@ -179125,7 +185311,7 @@
}
},
{
- "id": 13207,
+ "id": 13676,
"properties": {
"facing": "north",
"half": "top",
@@ -179134,7 +185320,7 @@
}
},
{
- "id": 13208,
+ "id": 13677,
"properties": {
"facing": "north",
"half": "top",
@@ -179143,7 +185329,7 @@
}
},
{
- "id": 13209,
+ "id": 13678,
"properties": {
"facing": "north",
"half": "top",
@@ -179152,7 +185338,7 @@
}
},
{
- "id": 13210,
+ "id": 13679,
"properties": {
"facing": "north",
"half": "top",
@@ -179161,7 +185347,7 @@
}
},
{
- "id": 13211,
+ "id": 13680,
"properties": {
"facing": "north",
"half": "top",
@@ -179170,7 +185356,7 @@
}
},
{
- "id": 13212,
+ "id": 13681,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179180,7 +185366,7 @@
},
{
"default": true,
- "id": 13213,
+ "id": 13682,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179189,7 +185375,7 @@
}
},
{
- "id": 13214,
+ "id": 13683,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179198,7 +185384,7 @@
}
},
{
- "id": 13215,
+ "id": 13684,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179207,7 +185393,7 @@
}
},
{
- "id": 13216,
+ "id": 13685,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179216,7 +185402,7 @@
}
},
{
- "id": 13217,
+ "id": 13686,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179225,7 +185411,7 @@
}
},
{
- "id": 13218,
+ "id": 13687,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179234,7 +185420,7 @@
}
},
{
- "id": 13219,
+ "id": 13688,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179243,7 +185429,7 @@
}
},
{
- "id": 13220,
+ "id": 13689,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179252,7 +185438,7 @@
}
},
{
- "id": 13221,
+ "id": 13690,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179261,7 +185447,7 @@
}
},
{
- "id": 13222,
+ "id": 13691,
"properties": {
"facing": "south",
"half": "top",
@@ -179270,7 +185456,7 @@
}
},
{
- "id": 13223,
+ "id": 13692,
"properties": {
"facing": "south",
"half": "top",
@@ -179279,7 +185465,7 @@
}
},
{
- "id": 13224,
+ "id": 13693,
"properties": {
"facing": "south",
"half": "top",
@@ -179288,7 +185474,7 @@
}
},
{
- "id": 13225,
+ "id": 13694,
"properties": {
"facing": "south",
"half": "top",
@@ -179297,7 +185483,7 @@
}
},
{
- "id": 13226,
+ "id": 13695,
"properties": {
"facing": "south",
"half": "top",
@@ -179306,7 +185492,7 @@
}
},
{
- "id": 13227,
+ "id": 13696,
"properties": {
"facing": "south",
"half": "top",
@@ -179315,7 +185501,7 @@
}
},
{
- "id": 13228,
+ "id": 13697,
"properties": {
"facing": "south",
"half": "top",
@@ -179324,7 +185510,7 @@
}
},
{
- "id": 13229,
+ "id": 13698,
"properties": {
"facing": "south",
"half": "top",
@@ -179333,7 +185519,7 @@
}
},
{
- "id": 13230,
+ "id": 13699,
"properties": {
"facing": "south",
"half": "top",
@@ -179342,7 +185528,7 @@
}
},
{
- "id": 13231,
+ "id": 13700,
"properties": {
"facing": "south",
"half": "top",
@@ -179351,7 +185537,7 @@
}
},
{
- "id": 13232,
+ "id": 13701,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179360,7 +185546,7 @@
}
},
{
- "id": 13233,
+ "id": 13702,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179369,7 +185555,7 @@
}
},
{
- "id": 13234,
+ "id": 13703,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179378,7 +185564,7 @@
}
},
{
- "id": 13235,
+ "id": 13704,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179387,7 +185573,7 @@
}
},
{
- "id": 13236,
+ "id": 13705,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179396,7 +185582,7 @@
}
},
{
- "id": 13237,
+ "id": 13706,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179405,7 +185591,7 @@
}
},
{
- "id": 13238,
+ "id": 13707,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179414,7 +185600,7 @@
}
},
{
- "id": 13239,
+ "id": 13708,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179423,7 +185609,7 @@
}
},
{
- "id": 13240,
+ "id": 13709,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179432,7 +185618,7 @@
}
},
{
- "id": 13241,
+ "id": 13710,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179441,7 +185627,7 @@
}
},
{
- "id": 13242,
+ "id": 13711,
"properties": {
"facing": "west",
"half": "top",
@@ -179450,7 +185636,7 @@
}
},
{
- "id": 13243,
+ "id": 13712,
"properties": {
"facing": "west",
"half": "top",
@@ -179459,7 +185645,7 @@
}
},
{
- "id": 13244,
+ "id": 13713,
"properties": {
"facing": "west",
"half": "top",
@@ -179468,7 +185654,7 @@
}
},
{
- "id": 13245,
+ "id": 13714,
"properties": {
"facing": "west",
"half": "top",
@@ -179477,7 +185663,7 @@
}
},
{
- "id": 13246,
+ "id": 13715,
"properties": {
"facing": "west",
"half": "top",
@@ -179486,7 +185672,7 @@
}
},
{
- "id": 13247,
+ "id": 13716,
"properties": {
"facing": "west",
"half": "top",
@@ -179495,7 +185681,7 @@
}
},
{
- "id": 13248,
+ "id": 13717,
"properties": {
"facing": "west",
"half": "top",
@@ -179504,7 +185690,7 @@
}
},
{
- "id": 13249,
+ "id": 13718,
"properties": {
"facing": "west",
"half": "top",
@@ -179513,7 +185699,7 @@
}
},
{
- "id": 13250,
+ "id": 13719,
"properties": {
"facing": "west",
"half": "top",
@@ -179522,7 +185708,7 @@
}
},
{
- "id": 13251,
+ "id": 13720,
"properties": {
"facing": "west",
"half": "top",
@@ -179531,7 +185717,7 @@
}
},
{
- "id": 13252,
+ "id": 13721,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179540,7 +185726,7 @@
}
},
{
- "id": 13253,
+ "id": 13722,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179549,7 +185735,7 @@
}
},
{
- "id": 13254,
+ "id": 13723,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179558,7 +185744,7 @@
}
},
{
- "id": 13255,
+ "id": 13724,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179567,7 +185753,7 @@
}
},
{
- "id": 13256,
+ "id": 13725,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179576,7 +185762,7 @@
}
},
{
- "id": 13257,
+ "id": 13726,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179585,7 +185771,7 @@
}
},
{
- "id": 13258,
+ "id": 13727,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179594,7 +185780,7 @@
}
},
{
- "id": 13259,
+ "id": 13728,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179603,7 +185789,7 @@
}
},
{
- "id": 13260,
+ "id": 13729,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179612,7 +185798,7 @@
}
},
{
- "id": 13261,
+ "id": 13730,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179621,7 +185807,7 @@
}
},
{
- "id": 13262,
+ "id": 13731,
"properties": {
"facing": "east",
"half": "top",
@@ -179630,7 +185816,7 @@
}
},
{
- "id": 13263,
+ "id": 13732,
"properties": {
"facing": "east",
"half": "top",
@@ -179639,7 +185825,7 @@
}
},
{
- "id": 13264,
+ "id": 13733,
"properties": {
"facing": "east",
"half": "top",
@@ -179648,7 +185834,7 @@
}
},
{
- "id": 13265,
+ "id": 13734,
"properties": {
"facing": "east",
"half": "top",
@@ -179657,7 +185843,7 @@
}
},
{
- "id": 13266,
+ "id": 13735,
"properties": {
"facing": "east",
"half": "top",
@@ -179666,7 +185852,7 @@
}
},
{
- "id": 13267,
+ "id": 13736,
"properties": {
"facing": "east",
"half": "top",
@@ -179675,7 +185861,7 @@
}
},
{
- "id": 13268,
+ "id": 13737,
"properties": {
"facing": "east",
"half": "top",
@@ -179684,7 +185870,7 @@
}
},
{
- "id": 13269,
+ "id": 13738,
"properties": {
"facing": "east",
"half": "top",
@@ -179693,7 +185879,7 @@
}
},
{
- "id": 13270,
+ "id": 13739,
"properties": {
"facing": "east",
"half": "top",
@@ -179702,7 +185888,7 @@
}
},
{
- "id": 13271,
+ "id": 13740,
"properties": {
"facing": "east",
"half": "top",
@@ -179711,7 +185897,7 @@
}
},
{
- "id": 13272,
+ "id": 13741,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179720,7 +185906,7 @@
}
},
{
- "id": 13273,
+ "id": 13742,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179729,7 +185915,7 @@
}
},
{
- "id": 13274,
+ "id": 13743,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179738,7 +185924,7 @@
}
},
{
- "id": 13275,
+ "id": 13744,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179747,7 +185933,7 @@
}
},
{
- "id": 13276,
+ "id": 13745,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179756,7 +185942,7 @@
}
},
{
- "id": 13277,
+ "id": 13746,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179765,7 +185951,7 @@
}
},
{
- "id": 13278,
+ "id": 13747,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179774,7 +185960,7 @@
}
},
{
- "id": 13279,
+ "id": 13748,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179783,7 +185969,7 @@
}
},
{
- "id": 13280,
+ "id": 13749,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179792,7 +185978,7 @@
}
},
{
- "id": 13281,
+ "id": 13750,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179832,21 +186018,21 @@
},
"states": [
{
- "id": 14082,
+ "id": 14551,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 14083,
+ "id": 14552,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 14084,
+ "id": 14553,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -179854,21 +186040,21 @@
},
{
"default": true,
- "id": 14085,
+ "id": 14554,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 14086,
+ "id": 14555,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 14087,
+ "id": 14556,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -179909,7 +186095,7 @@
},
"states": [
{
- "id": 12962,
+ "id": 13431,
"properties": {
"facing": "north",
"half": "top",
@@ -179918,7 +186104,7 @@
}
},
{
- "id": 12963,
+ "id": 13432,
"properties": {
"facing": "north",
"half": "top",
@@ -179927,7 +186113,7 @@
}
},
{
- "id": 12964,
+ "id": 13433,
"properties": {
"facing": "north",
"half": "top",
@@ -179936,7 +186122,7 @@
}
},
{
- "id": 12965,
+ "id": 13434,
"properties": {
"facing": "north",
"half": "top",
@@ -179945,7 +186131,7 @@
}
},
{
- "id": 12966,
+ "id": 13435,
"properties": {
"facing": "north",
"half": "top",
@@ -179954,7 +186140,7 @@
}
},
{
- "id": 12967,
+ "id": 13436,
"properties": {
"facing": "north",
"half": "top",
@@ -179963,7 +186149,7 @@
}
},
{
- "id": 12968,
+ "id": 13437,
"properties": {
"facing": "north",
"half": "top",
@@ -179972,7 +186158,7 @@
}
},
{
- "id": 12969,
+ "id": 13438,
"properties": {
"facing": "north",
"half": "top",
@@ -179981,7 +186167,7 @@
}
},
{
- "id": 12970,
+ "id": 13439,
"properties": {
"facing": "north",
"half": "top",
@@ -179990,7 +186176,7 @@
}
},
{
- "id": 12971,
+ "id": 13440,
"properties": {
"facing": "north",
"half": "top",
@@ -179999,7 +186185,7 @@
}
},
{
- "id": 12972,
+ "id": 13441,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180009,7 +186195,7 @@
},
{
"default": true,
- "id": 12973,
+ "id": 13442,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180018,7 +186204,7 @@
}
},
{
- "id": 12974,
+ "id": 13443,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180027,7 +186213,7 @@
}
},
{
- "id": 12975,
+ "id": 13444,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180036,7 +186222,7 @@
}
},
{
- "id": 12976,
+ "id": 13445,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180045,7 +186231,7 @@
}
},
{
- "id": 12977,
+ "id": 13446,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180054,7 +186240,7 @@
}
},
{
- "id": 12978,
+ "id": 13447,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180063,7 +186249,7 @@
}
},
{
- "id": 12979,
+ "id": 13448,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180072,7 +186258,7 @@
}
},
{
- "id": 12980,
+ "id": 13449,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180081,7 +186267,7 @@
}
},
{
- "id": 12981,
+ "id": 13450,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180090,7 +186276,7 @@
}
},
{
- "id": 12982,
+ "id": 13451,
"properties": {
"facing": "south",
"half": "top",
@@ -180099,7 +186285,7 @@
}
},
{
- "id": 12983,
+ "id": 13452,
"properties": {
"facing": "south",
"half": "top",
@@ -180108,7 +186294,7 @@
}
},
{
- "id": 12984,
+ "id": 13453,
"properties": {
"facing": "south",
"half": "top",
@@ -180117,7 +186303,7 @@
}
},
{
- "id": 12985,
+ "id": 13454,
"properties": {
"facing": "south",
"half": "top",
@@ -180126,7 +186312,7 @@
}
},
{
- "id": 12986,
+ "id": 13455,
"properties": {
"facing": "south",
"half": "top",
@@ -180135,7 +186321,7 @@
}
},
{
- "id": 12987,
+ "id": 13456,
"properties": {
"facing": "south",
"half": "top",
@@ -180144,7 +186330,7 @@
}
},
{
- "id": 12988,
+ "id": 13457,
"properties": {
"facing": "south",
"half": "top",
@@ -180153,7 +186339,7 @@
}
},
{
- "id": 12989,
+ "id": 13458,
"properties": {
"facing": "south",
"half": "top",
@@ -180162,7 +186348,7 @@
}
},
{
- "id": 12990,
+ "id": 13459,
"properties": {
"facing": "south",
"half": "top",
@@ -180171,7 +186357,7 @@
}
},
{
- "id": 12991,
+ "id": 13460,
"properties": {
"facing": "south",
"half": "top",
@@ -180180,7 +186366,7 @@
}
},
{
- "id": 12992,
+ "id": 13461,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180189,7 +186375,7 @@
}
},
{
- "id": 12993,
+ "id": 13462,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180198,7 +186384,7 @@
}
},
{
- "id": 12994,
+ "id": 13463,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180207,7 +186393,7 @@
}
},
{
- "id": 12995,
+ "id": 13464,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180216,7 +186402,7 @@
}
},
{
- "id": 12996,
+ "id": 13465,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180225,7 +186411,7 @@
}
},
{
- "id": 12997,
+ "id": 13466,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180234,7 +186420,7 @@
}
},
{
- "id": 12998,
+ "id": 13467,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180243,7 +186429,7 @@
}
},
{
- "id": 12999,
+ "id": 13468,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180252,7 +186438,7 @@
}
},
{
- "id": 13000,
+ "id": 13469,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180261,7 +186447,7 @@
}
},
{
- "id": 13001,
+ "id": 13470,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180270,7 +186456,7 @@
}
},
{
- "id": 13002,
+ "id": 13471,
"properties": {
"facing": "west",
"half": "top",
@@ -180279,7 +186465,7 @@
}
},
{
- "id": 13003,
+ "id": 13472,
"properties": {
"facing": "west",
"half": "top",
@@ -180288,7 +186474,7 @@
}
},
{
- "id": 13004,
+ "id": 13473,
"properties": {
"facing": "west",
"half": "top",
@@ -180297,7 +186483,7 @@
}
},
{
- "id": 13005,
+ "id": 13474,
"properties": {
"facing": "west",
"half": "top",
@@ -180306,7 +186492,7 @@
}
},
{
- "id": 13006,
+ "id": 13475,
"properties": {
"facing": "west",
"half": "top",
@@ -180315,7 +186501,7 @@
}
},
{
- "id": 13007,
+ "id": 13476,
"properties": {
"facing": "west",
"half": "top",
@@ -180324,7 +186510,7 @@
}
},
{
- "id": 13008,
+ "id": 13477,
"properties": {
"facing": "west",
"half": "top",
@@ -180333,7 +186519,7 @@
}
},
{
- "id": 13009,
+ "id": 13478,
"properties": {
"facing": "west",
"half": "top",
@@ -180342,7 +186528,7 @@
}
},
{
- "id": 13010,
+ "id": 13479,
"properties": {
"facing": "west",
"half": "top",
@@ -180351,7 +186537,7 @@
}
},
{
- "id": 13011,
+ "id": 13480,
"properties": {
"facing": "west",
"half": "top",
@@ -180360,7 +186546,7 @@
}
},
{
- "id": 13012,
+ "id": 13481,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180369,7 +186555,7 @@
}
},
{
- "id": 13013,
+ "id": 13482,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180378,7 +186564,7 @@
}
},
{
- "id": 13014,
+ "id": 13483,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180387,7 +186573,7 @@
}
},
{
- "id": 13015,
+ "id": 13484,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180396,7 +186582,7 @@
}
},
{
- "id": 13016,
+ "id": 13485,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180405,7 +186591,7 @@
}
},
{
- "id": 13017,
+ "id": 13486,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180414,7 +186600,7 @@
}
},
{
- "id": 13018,
+ "id": 13487,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180423,7 +186609,7 @@
}
},
{
- "id": 13019,
+ "id": 13488,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180432,7 +186618,7 @@
}
},
{
- "id": 13020,
+ "id": 13489,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180441,7 +186627,7 @@
}
},
{
- "id": 13021,
+ "id": 13490,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180450,7 +186636,7 @@
}
},
{
- "id": 13022,
+ "id": 13491,
"properties": {
"facing": "east",
"half": "top",
@@ -180459,7 +186645,7 @@
}
},
{
- "id": 13023,
+ "id": 13492,
"properties": {
"facing": "east",
"half": "top",
@@ -180468,7 +186654,7 @@
}
},
{
- "id": 13024,
+ "id": 13493,
"properties": {
"facing": "east",
"half": "top",
@@ -180477,7 +186663,7 @@
}
},
{
- "id": 13025,
+ "id": 13494,
"properties": {
"facing": "east",
"half": "top",
@@ -180486,7 +186672,7 @@
}
},
{
- "id": 13026,
+ "id": 13495,
"properties": {
"facing": "east",
"half": "top",
@@ -180495,7 +186681,7 @@
}
},
{
- "id": 13027,
+ "id": 13496,
"properties": {
"facing": "east",
"half": "top",
@@ -180504,7 +186690,7 @@
}
},
{
- "id": 13028,
+ "id": 13497,
"properties": {
"facing": "east",
"half": "top",
@@ -180513,7 +186699,7 @@
}
},
{
- "id": 13029,
+ "id": 13498,
"properties": {
"facing": "east",
"half": "top",
@@ -180522,7 +186708,7 @@
}
},
{
- "id": 13030,
+ "id": 13499,
"properties": {
"facing": "east",
"half": "top",
@@ -180531,7 +186717,7 @@
}
},
{
- "id": 13031,
+ "id": 13500,
"properties": {
"facing": "east",
"half": "top",
@@ -180540,7 +186726,7 @@
}
},
{
- "id": 13032,
+ "id": 13501,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180549,7 +186735,7 @@
}
},
{
- "id": 13033,
+ "id": 13502,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180558,7 +186744,7 @@
}
},
{
- "id": 13034,
+ "id": 13503,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180567,7 +186753,7 @@
}
},
{
- "id": 13035,
+ "id": 13504,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180576,7 +186762,7 @@
}
},
{
- "id": 13036,
+ "id": 13505,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180585,7 +186771,7 @@
}
},
{
- "id": 13037,
+ "id": 13506,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180594,7 +186780,7 @@
}
},
{
- "id": 13038,
+ "id": 13507,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180603,7 +186789,7 @@
}
},
{
- "id": 13039,
+ "id": 13508,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180612,7 +186798,7 @@
}
},
{
- "id": 13040,
+ "id": 13509,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180621,7 +186807,7 @@
}
},
{
- "id": 13041,
+ "id": 13510,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180639,7 +186825,7 @@
"states": [
{
"default": true,
- "id": 21492
+ "id": 21961
}
]
},
@@ -180661,21 +186847,21 @@
},
"states": [
{
- "id": 21493,
+ "id": 21962,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 21494,
+ "id": 21963,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 21495,
+ "id": 21964,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -180683,21 +186869,21 @@
},
{
"default": true,
- "id": 21496,
+ "id": 21965,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 21497,
+ "id": 21966,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 21498,
+ "id": 21967,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -180738,7 +186924,7 @@
},
"states": [
{
- "id": 21499,
+ "id": 21968,
"properties": {
"facing": "north",
"half": "top",
@@ -180747,7 +186933,7 @@
}
},
{
- "id": 21500,
+ "id": 21969,
"properties": {
"facing": "north",
"half": "top",
@@ -180756,7 +186942,7 @@
}
},
{
- "id": 21501,
+ "id": 21970,
"properties": {
"facing": "north",
"half": "top",
@@ -180765,7 +186951,7 @@
}
},
{
- "id": 21502,
+ "id": 21971,
"properties": {
"facing": "north",
"half": "top",
@@ -180774,7 +186960,7 @@
}
},
{
- "id": 21503,
+ "id": 21972,
"properties": {
"facing": "north",
"half": "top",
@@ -180783,7 +186969,7 @@
}
},
{
- "id": 21504,
+ "id": 21973,
"properties": {
"facing": "north",
"half": "top",
@@ -180792,7 +186978,7 @@
}
},
{
- "id": 21505,
+ "id": 21974,
"properties": {
"facing": "north",
"half": "top",
@@ -180801,7 +186987,7 @@
}
},
{
- "id": 21506,
+ "id": 21975,
"properties": {
"facing": "north",
"half": "top",
@@ -180810,7 +186996,7 @@
}
},
{
- "id": 21507,
+ "id": 21976,
"properties": {
"facing": "north",
"half": "top",
@@ -180819,7 +187005,7 @@
}
},
{
- "id": 21508,
+ "id": 21977,
"properties": {
"facing": "north",
"half": "top",
@@ -180828,7 +187014,7 @@
}
},
{
- "id": 21509,
+ "id": 21978,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180838,7 +187024,7 @@
},
{
"default": true,
- "id": 21510,
+ "id": 21979,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180847,7 +187033,7 @@
}
},
{
- "id": 21511,
+ "id": 21980,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180856,7 +187042,7 @@
}
},
{
- "id": 21512,
+ "id": 21981,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180865,7 +187051,7 @@
}
},
{
- "id": 21513,
+ "id": 21982,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180874,7 +187060,7 @@
}
},
{
- "id": 21514,
+ "id": 21983,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180883,7 +187069,7 @@
}
},
{
- "id": 21515,
+ "id": 21984,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180892,7 +187078,7 @@
}
},
{
- "id": 21516,
+ "id": 21985,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180901,7 +187087,7 @@
}
},
{
- "id": 21517,
+ "id": 21986,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180910,7 +187096,7 @@
}
},
{
- "id": 21518,
+ "id": 21987,
"properties": {
"facing": "north",
"half": "bottom",
@@ -180919,7 +187105,7 @@
}
},
{
- "id": 21519,
+ "id": 21988,
"properties": {
"facing": "south",
"half": "top",
@@ -180928,7 +187114,7 @@
}
},
{
- "id": 21520,
+ "id": 21989,
"properties": {
"facing": "south",
"half": "top",
@@ -180937,7 +187123,7 @@
}
},
{
- "id": 21521,
+ "id": 21990,
"properties": {
"facing": "south",
"half": "top",
@@ -180946,7 +187132,7 @@
}
},
{
- "id": 21522,
+ "id": 21991,
"properties": {
"facing": "south",
"half": "top",
@@ -180955,7 +187141,7 @@
}
},
{
- "id": 21523,
+ "id": 21992,
"properties": {
"facing": "south",
"half": "top",
@@ -180964,7 +187150,7 @@
}
},
{
- "id": 21524,
+ "id": 21993,
"properties": {
"facing": "south",
"half": "top",
@@ -180973,7 +187159,7 @@
}
},
{
- "id": 21525,
+ "id": 21994,
"properties": {
"facing": "south",
"half": "top",
@@ -180982,7 +187168,7 @@
}
},
{
- "id": 21526,
+ "id": 21995,
"properties": {
"facing": "south",
"half": "top",
@@ -180991,7 +187177,7 @@
}
},
{
- "id": 21527,
+ "id": 21996,
"properties": {
"facing": "south",
"half": "top",
@@ -181000,7 +187186,7 @@
}
},
{
- "id": 21528,
+ "id": 21997,
"properties": {
"facing": "south",
"half": "top",
@@ -181009,7 +187195,7 @@
}
},
{
- "id": 21529,
+ "id": 21998,
"properties": {
"facing": "south",
"half": "bottom",
@@ -181018,7 +187204,7 @@
}
},
{
- "id": 21530,
+ "id": 21999,
"properties": {
"facing": "south",
"half": "bottom",
@@ -181027,7 +187213,7 @@
}
},
{
- "id": 21531,
+ "id": 22000,
"properties": {
"facing": "south",
"half": "bottom",
@@ -181036,7 +187222,7 @@
}
},
{
- "id": 21532,
+ "id": 22001,
"properties": {
"facing": "south",
"half": "bottom",
@@ -181045,7 +187231,7 @@
}
},
{
- "id": 21533,
+ "id": 22002,
"properties": {
"facing": "south",
"half": "bottom",
@@ -181054,7 +187240,7 @@
}
},
{
- "id": 21534,
+ "id": 22003,
"properties": {
"facing": "south",
"half": "bottom",
@@ -181063,7 +187249,7 @@
}
},
{
- "id": 21535,
+ "id": 22004,
"properties": {
"facing": "south",
"half": "bottom",
@@ -181072,7 +187258,7 @@
}
},
{
- "id": 21536,
+ "id": 22005,
"properties": {
"facing": "south",
"half": "bottom",
@@ -181081,7 +187267,7 @@
}
},
{
- "id": 21537,
+ "id": 22006,
"properties": {
"facing": "south",
"half": "bottom",
@@ -181090,7 +187276,7 @@
}
},
{
- "id": 21538,
+ "id": 22007,
"properties": {
"facing": "south",
"half": "bottom",
@@ -181099,7 +187285,7 @@
}
},
{
- "id": 21539,
+ "id": 22008,
"properties": {
"facing": "west",
"half": "top",
@@ -181108,7 +187294,7 @@
}
},
{
- "id": 21540,
+ "id": 22009,
"properties": {
"facing": "west",
"half": "top",
@@ -181117,7 +187303,7 @@
}
},
{
- "id": 21541,
+ "id": 22010,
"properties": {
"facing": "west",
"half": "top",
@@ -181126,7 +187312,7 @@
}
},
{
- "id": 21542,
+ "id": 22011,
"properties": {
"facing": "west",
"half": "top",
@@ -181135,7 +187321,7 @@
}
},
{
- "id": 21543,
+ "id": 22012,
"properties": {
"facing": "west",
"half": "top",
@@ -181144,7 +187330,7 @@
}
},
{
- "id": 21544,
+ "id": 22013,
"properties": {
"facing": "west",
"half": "top",
@@ -181153,7 +187339,7 @@
}
},
{
- "id": 21545,
+ "id": 22014,
"properties": {
"facing": "west",
"half": "top",
@@ -181162,7 +187348,7 @@
}
},
{
- "id": 21546,
+ "id": 22015,
"properties": {
"facing": "west",
"half": "top",
@@ -181171,7 +187357,7 @@
}
},
{
- "id": 21547,
+ "id": 22016,
"properties": {
"facing": "west",
"half": "top",
@@ -181180,7 +187366,7 @@
}
},
{
- "id": 21548,
+ "id": 22017,
"properties": {
"facing": "west",
"half": "top",
@@ -181189,7 +187375,7 @@
}
},
{
- "id": 21549,
+ "id": 22018,
"properties": {
"facing": "west",
"half": "bottom",
@@ -181198,7 +187384,7 @@
}
},
{
- "id": 21550,
+ "id": 22019,
"properties": {
"facing": "west",
"half": "bottom",
@@ -181207,7 +187393,7 @@
}
},
{
- "id": 21551,
+ "id": 22020,
"properties": {
"facing": "west",
"half": "bottom",
@@ -181216,7 +187402,7 @@
}
},
{
- "id": 21552,
+ "id": 22021,
"properties": {
"facing": "west",
"half": "bottom",
@@ -181225,7 +187411,7 @@
}
},
{
- "id": 21553,
+ "id": 22022,
"properties": {
"facing": "west",
"half": "bottom",
@@ -181234,7 +187420,7 @@
}
},
{
- "id": 21554,
+ "id": 22023,
"properties": {
"facing": "west",
"half": "bottom",
@@ -181243,7 +187429,7 @@
}
},
{
- "id": 21555,
+ "id": 22024,
"properties": {
"facing": "west",
"half": "bottom",
@@ -181252,7 +187438,7 @@
}
},
{
- "id": 21556,
+ "id": 22025,
"properties": {
"facing": "west",
"half": "bottom",
@@ -181261,7 +187447,7 @@
}
},
{
- "id": 21557,
+ "id": 22026,
"properties": {
"facing": "west",
"half": "bottom",
@@ -181270,7 +187456,7 @@
}
},
{
- "id": 21558,
+ "id": 22027,
"properties": {
"facing": "west",
"half": "bottom",
@@ -181279,7 +187465,7 @@
}
},
{
- "id": 21559,
+ "id": 22028,
"properties": {
"facing": "east",
"half": "top",
@@ -181288,7 +187474,7 @@
}
},
{
- "id": 21560,
+ "id": 22029,
"properties": {
"facing": "east",
"half": "top",
@@ -181297,7 +187483,7 @@
}
},
{
- "id": 21561,
+ "id": 22030,
"properties": {
"facing": "east",
"half": "top",
@@ -181306,7 +187492,7 @@
}
},
{
- "id": 21562,
+ "id": 22031,
"properties": {
"facing": "east",
"half": "top",
@@ -181315,7 +187501,7 @@
}
},
{
- "id": 21563,
+ "id": 22032,
"properties": {
"facing": "east",
"half": "top",
@@ -181324,7 +187510,7 @@
}
},
{
- "id": 21564,
+ "id": 22033,
"properties": {
"facing": "east",
"half": "top",
@@ -181333,7 +187519,7 @@
}
},
{
- "id": 21565,
+ "id": 22034,
"properties": {
"facing": "east",
"half": "top",
@@ -181342,7 +187528,7 @@
}
},
{
- "id": 21566,
+ "id": 22035,
"properties": {
"facing": "east",
"half": "top",
@@ -181351,7 +187537,7 @@
}
},
{
- "id": 21567,
+ "id": 22036,
"properties": {
"facing": "east",
"half": "top",
@@ -181360,7 +187546,7 @@
}
},
{
- "id": 21568,
+ "id": 22037,
"properties": {
"facing": "east",
"half": "top",
@@ -181369,7 +187555,7 @@
}
},
{
- "id": 21569,
+ "id": 22038,
"properties": {
"facing": "east",
"half": "bottom",
@@ -181378,7 +187564,7 @@
}
},
{
- "id": 21570,
+ "id": 22039,
"properties": {
"facing": "east",
"half": "bottom",
@@ -181387,7 +187573,7 @@
}
},
{
- "id": 21571,
+ "id": 22040,
"properties": {
"facing": "east",
"half": "bottom",
@@ -181396,7 +187582,7 @@
}
},
{
- "id": 21572,
+ "id": 22041,
"properties": {
"facing": "east",
"half": "bottom",
@@ -181405,7 +187591,7 @@
}
},
{
- "id": 21573,
+ "id": 22042,
"properties": {
"facing": "east",
"half": "bottom",
@@ -181414,7 +187600,7 @@
}
},
{
- "id": 21574,
+ "id": 22043,
"properties": {
"facing": "east",
"half": "bottom",
@@ -181423,7 +187609,7 @@
}
},
{
- "id": 21575,
+ "id": 22044,
"properties": {
"facing": "east",
"half": "bottom",
@@ -181432,7 +187618,7 @@
}
},
{
- "id": 21576,
+ "id": 22045,
"properties": {
"facing": "east",
"half": "bottom",
@@ -181441,7 +187627,7 @@
}
},
{
- "id": 21577,
+ "id": 22046,
"properties": {
"facing": "east",
"half": "bottom",
@@ -181450,7 +187636,7 @@
}
},
{
- "id": 21578,
+ "id": 22047,
"properties": {
"facing": "east",
"half": "bottom",
@@ -181497,7 +187683,7 @@
},
"states": [
{
- "id": 21579,
+ "id": 22048,
"properties": {
"east": "none",
"north": "none",
@@ -181508,7 +187694,7 @@
}
},
{
- "id": 21580,
+ "id": 22049,
"properties": {
"east": "none",
"north": "none",
@@ -181519,7 +187705,7 @@
}
},
{
- "id": 21581,
+ "id": 22050,
"properties": {
"east": "none",
"north": "none",
@@ -181531,7 +187717,7 @@
},
{
"default": true,
- "id": 21582,
+ "id": 22051,
"properties": {
"east": "none",
"north": "none",
@@ -181542,7 +187728,7 @@
}
},
{
- "id": 21583,
+ "id": 22052,
"properties": {
"east": "none",
"north": "none",
@@ -181553,7 +187739,7 @@
}
},
{
- "id": 21584,
+ "id": 22053,
"properties": {
"east": "none",
"north": "none",
@@ -181564,7 +187750,7 @@
}
},
{
- "id": 21585,
+ "id": 22054,
"properties": {
"east": "none",
"north": "none",
@@ -181575,7 +187761,7 @@
}
},
{
- "id": 21586,
+ "id": 22055,
"properties": {
"east": "none",
"north": "none",
@@ -181586,7 +187772,7 @@
}
},
{
- "id": 21587,
+ "id": 22056,
"properties": {
"east": "none",
"north": "none",
@@ -181597,7 +187783,7 @@
}
},
{
- "id": 21588,
+ "id": 22057,
"properties": {
"east": "none",
"north": "none",
@@ -181608,7 +187794,7 @@
}
},
{
- "id": 21589,
+ "id": 22058,
"properties": {
"east": "none",
"north": "none",
@@ -181619,7 +187805,7 @@
}
},
{
- "id": 21590,
+ "id": 22059,
"properties": {
"east": "none",
"north": "none",
@@ -181630,7 +187816,7 @@
}
},
{
- "id": 21591,
+ "id": 22060,
"properties": {
"east": "none",
"north": "none",
@@ -181641,7 +187827,7 @@
}
},
{
- "id": 21592,
+ "id": 22061,
"properties": {
"east": "none",
"north": "none",
@@ -181652,7 +187838,7 @@
}
},
{
- "id": 21593,
+ "id": 22062,
"properties": {
"east": "none",
"north": "none",
@@ -181663,7 +187849,7 @@
}
},
{
- "id": 21594,
+ "id": 22063,
"properties": {
"east": "none",
"north": "none",
@@ -181674,7 +187860,7 @@
}
},
{
- "id": 21595,
+ "id": 22064,
"properties": {
"east": "none",
"north": "none",
@@ -181685,7 +187871,7 @@
}
},
{
- "id": 21596,
+ "id": 22065,
"properties": {
"east": "none",
"north": "none",
@@ -181696,7 +187882,7 @@
}
},
{
- "id": 21597,
+ "id": 22066,
"properties": {
"east": "none",
"north": "none",
@@ -181707,7 +187893,7 @@
}
},
{
- "id": 21598,
+ "id": 22067,
"properties": {
"east": "none",
"north": "none",
@@ -181718,7 +187904,7 @@
}
},
{
- "id": 21599,
+ "id": 22068,
"properties": {
"east": "none",
"north": "none",
@@ -181729,7 +187915,7 @@
}
},
{
- "id": 21600,
+ "id": 22069,
"properties": {
"east": "none",
"north": "none",
@@ -181740,7 +187926,7 @@
}
},
{
- "id": 21601,
+ "id": 22070,
"properties": {
"east": "none",
"north": "none",
@@ -181751,7 +187937,7 @@
}
},
{
- "id": 21602,
+ "id": 22071,
"properties": {
"east": "none",
"north": "none",
@@ -181762,7 +187948,7 @@
}
},
{
- "id": 21603,
+ "id": 22072,
"properties": {
"east": "none",
"north": "none",
@@ -181773,7 +187959,7 @@
}
},
{
- "id": 21604,
+ "id": 22073,
"properties": {
"east": "none",
"north": "none",
@@ -181784,7 +187970,7 @@
}
},
{
- "id": 21605,
+ "id": 22074,
"properties": {
"east": "none",
"north": "none",
@@ -181795,7 +187981,7 @@
}
},
{
- "id": 21606,
+ "id": 22075,
"properties": {
"east": "none",
"north": "none",
@@ -181806,7 +187992,7 @@
}
},
{
- "id": 21607,
+ "id": 22076,
"properties": {
"east": "none",
"north": "none",
@@ -181817,7 +188003,7 @@
}
},
{
- "id": 21608,
+ "id": 22077,
"properties": {
"east": "none",
"north": "none",
@@ -181828,7 +188014,7 @@
}
},
{
- "id": 21609,
+ "id": 22078,
"properties": {
"east": "none",
"north": "none",
@@ -181839,7 +188025,7 @@
}
},
{
- "id": 21610,
+ "id": 22079,
"properties": {
"east": "none",
"north": "none",
@@ -181850,7 +188036,7 @@
}
},
{
- "id": 21611,
+ "id": 22080,
"properties": {
"east": "none",
"north": "none",
@@ -181861,7 +188047,7 @@
}
},
{
- "id": 21612,
+ "id": 22081,
"properties": {
"east": "none",
"north": "none",
@@ -181872,7 +188058,7 @@
}
},
{
- "id": 21613,
+ "id": 22082,
"properties": {
"east": "none",
"north": "none",
@@ -181883,7 +188069,7 @@
}
},
{
- "id": 21614,
+ "id": 22083,
"properties": {
"east": "none",
"north": "none",
@@ -181894,7 +188080,7 @@
}
},
{
- "id": 21615,
+ "id": 22084,
"properties": {
"east": "none",
"north": "low",
@@ -181905,7 +188091,7 @@
}
},
{
- "id": 21616,
+ "id": 22085,
"properties": {
"east": "none",
"north": "low",
@@ -181916,7 +188102,7 @@
}
},
{
- "id": 21617,
+ "id": 22086,
"properties": {
"east": "none",
"north": "low",
@@ -181927,7 +188113,7 @@
}
},
{
- "id": 21618,
+ "id": 22087,
"properties": {
"east": "none",
"north": "low",
@@ -181938,7 +188124,7 @@
}
},
{
- "id": 21619,
+ "id": 22088,
"properties": {
"east": "none",
"north": "low",
@@ -181949,7 +188135,7 @@
}
},
{
- "id": 21620,
+ "id": 22089,
"properties": {
"east": "none",
"north": "low",
@@ -181960,7 +188146,7 @@
}
},
{
- "id": 21621,
+ "id": 22090,
"properties": {
"east": "none",
"north": "low",
@@ -181971,7 +188157,7 @@
}
},
{
- "id": 21622,
+ "id": 22091,
"properties": {
"east": "none",
"north": "low",
@@ -181982,7 +188168,7 @@
}
},
{
- "id": 21623,
+ "id": 22092,
"properties": {
"east": "none",
"north": "low",
@@ -181993,7 +188179,7 @@
}
},
{
- "id": 21624,
+ "id": 22093,
"properties": {
"east": "none",
"north": "low",
@@ -182004,7 +188190,7 @@
}
},
{
- "id": 21625,
+ "id": 22094,
"properties": {
"east": "none",
"north": "low",
@@ -182015,7 +188201,7 @@
}
},
{
- "id": 21626,
+ "id": 22095,
"properties": {
"east": "none",
"north": "low",
@@ -182026,7 +188212,7 @@
}
},
{
- "id": 21627,
+ "id": 22096,
"properties": {
"east": "none",
"north": "low",
@@ -182037,7 +188223,7 @@
}
},
{
- "id": 21628,
+ "id": 22097,
"properties": {
"east": "none",
"north": "low",
@@ -182048,7 +188234,7 @@
}
},
{
- "id": 21629,
+ "id": 22098,
"properties": {
"east": "none",
"north": "low",
@@ -182059,7 +188245,7 @@
}
},
{
- "id": 21630,
+ "id": 22099,
"properties": {
"east": "none",
"north": "low",
@@ -182070,7 +188256,7 @@
}
},
{
- "id": 21631,
+ "id": 22100,
"properties": {
"east": "none",
"north": "low",
@@ -182081,7 +188267,7 @@
}
},
{
- "id": 21632,
+ "id": 22101,
"properties": {
"east": "none",
"north": "low",
@@ -182092,7 +188278,7 @@
}
},
{
- "id": 21633,
+ "id": 22102,
"properties": {
"east": "none",
"north": "low",
@@ -182103,7 +188289,7 @@
}
},
{
- "id": 21634,
+ "id": 22103,
"properties": {
"east": "none",
"north": "low",
@@ -182114,7 +188300,7 @@
}
},
{
- "id": 21635,
+ "id": 22104,
"properties": {
"east": "none",
"north": "low",
@@ -182125,7 +188311,7 @@
}
},
{
- "id": 21636,
+ "id": 22105,
"properties": {
"east": "none",
"north": "low",
@@ -182136,7 +188322,7 @@
}
},
{
- "id": 21637,
+ "id": 22106,
"properties": {
"east": "none",
"north": "low",
@@ -182147,7 +188333,7 @@
}
},
{
- "id": 21638,
+ "id": 22107,
"properties": {
"east": "none",
"north": "low",
@@ -182158,7 +188344,7 @@
}
},
{
- "id": 21639,
+ "id": 22108,
"properties": {
"east": "none",
"north": "low",
@@ -182169,7 +188355,7 @@
}
},
{
- "id": 21640,
+ "id": 22109,
"properties": {
"east": "none",
"north": "low",
@@ -182180,7 +188366,7 @@
}
},
{
- "id": 21641,
+ "id": 22110,
"properties": {
"east": "none",
"north": "low",
@@ -182191,7 +188377,7 @@
}
},
{
- "id": 21642,
+ "id": 22111,
"properties": {
"east": "none",
"north": "low",
@@ -182202,7 +188388,7 @@
}
},
{
- "id": 21643,
+ "id": 22112,
"properties": {
"east": "none",
"north": "low",
@@ -182213,7 +188399,7 @@
}
},
{
- "id": 21644,
+ "id": 22113,
"properties": {
"east": "none",
"north": "low",
@@ -182224,7 +188410,7 @@
}
},
{
- "id": 21645,
+ "id": 22114,
"properties": {
"east": "none",
"north": "low",
@@ -182235,7 +188421,7 @@
}
},
{
- "id": 21646,
+ "id": 22115,
"properties": {
"east": "none",
"north": "low",
@@ -182246,7 +188432,7 @@
}
},
{
- "id": 21647,
+ "id": 22116,
"properties": {
"east": "none",
"north": "low",
@@ -182257,7 +188443,7 @@
}
},
{
- "id": 21648,
+ "id": 22117,
"properties": {
"east": "none",
"north": "low",
@@ -182268,7 +188454,7 @@
}
},
{
- "id": 21649,
+ "id": 22118,
"properties": {
"east": "none",
"north": "low",
@@ -182279,7 +188465,7 @@
}
},
{
- "id": 21650,
+ "id": 22119,
"properties": {
"east": "none",
"north": "low",
@@ -182290,7 +188476,7 @@
}
},
{
- "id": 21651,
+ "id": 22120,
"properties": {
"east": "none",
"north": "tall",
@@ -182301,7 +188487,7 @@
}
},
{
- "id": 21652,
+ "id": 22121,
"properties": {
"east": "none",
"north": "tall",
@@ -182312,7 +188498,7 @@
}
},
{
- "id": 21653,
+ "id": 22122,
"properties": {
"east": "none",
"north": "tall",
@@ -182323,7 +188509,7 @@
}
},
{
- "id": 21654,
+ "id": 22123,
"properties": {
"east": "none",
"north": "tall",
@@ -182334,7 +188520,7 @@
}
},
{
- "id": 21655,
+ "id": 22124,
"properties": {
"east": "none",
"north": "tall",
@@ -182345,7 +188531,7 @@
}
},
{
- "id": 21656,
+ "id": 22125,
"properties": {
"east": "none",
"north": "tall",
@@ -182356,7 +188542,7 @@
}
},
{
- "id": 21657,
+ "id": 22126,
"properties": {
"east": "none",
"north": "tall",
@@ -182367,7 +188553,7 @@
}
},
{
- "id": 21658,
+ "id": 22127,
"properties": {
"east": "none",
"north": "tall",
@@ -182378,7 +188564,7 @@
}
},
{
- "id": 21659,
+ "id": 22128,
"properties": {
"east": "none",
"north": "tall",
@@ -182389,7 +188575,7 @@
}
},
{
- "id": 21660,
+ "id": 22129,
"properties": {
"east": "none",
"north": "tall",
@@ -182400,7 +188586,7 @@
}
},
{
- "id": 21661,
+ "id": 22130,
"properties": {
"east": "none",
"north": "tall",
@@ -182411,7 +188597,7 @@
}
},
{
- "id": 21662,
+ "id": 22131,
"properties": {
"east": "none",
"north": "tall",
@@ -182422,7 +188608,7 @@
}
},
{
- "id": 21663,
+ "id": 22132,
"properties": {
"east": "none",
"north": "tall",
@@ -182433,7 +188619,7 @@
}
},
{
- "id": 21664,
+ "id": 22133,
"properties": {
"east": "none",
"north": "tall",
@@ -182444,7 +188630,7 @@
}
},
{
- "id": 21665,
+ "id": 22134,
"properties": {
"east": "none",
"north": "tall",
@@ -182455,7 +188641,7 @@
}
},
{
- "id": 21666,
+ "id": 22135,
"properties": {
"east": "none",
"north": "tall",
@@ -182466,7 +188652,7 @@
}
},
{
- "id": 21667,
+ "id": 22136,
"properties": {
"east": "none",
"north": "tall",
@@ -182477,7 +188663,7 @@
}
},
{
- "id": 21668,
+ "id": 22137,
"properties": {
"east": "none",
"north": "tall",
@@ -182488,7 +188674,7 @@
}
},
{
- "id": 21669,
+ "id": 22138,
"properties": {
"east": "none",
"north": "tall",
@@ -182499,7 +188685,7 @@
}
},
{
- "id": 21670,
+ "id": 22139,
"properties": {
"east": "none",
"north": "tall",
@@ -182510,7 +188696,7 @@
}
},
{
- "id": 21671,
+ "id": 22140,
"properties": {
"east": "none",
"north": "tall",
@@ -182521,7 +188707,7 @@
}
},
{
- "id": 21672,
+ "id": 22141,
"properties": {
"east": "none",
"north": "tall",
@@ -182532,7 +188718,7 @@
}
},
{
- "id": 21673,
+ "id": 22142,
"properties": {
"east": "none",
"north": "tall",
@@ -182543,7 +188729,7 @@
}
},
{
- "id": 21674,
+ "id": 22143,
"properties": {
"east": "none",
"north": "tall",
@@ -182554,7 +188740,7 @@
}
},
{
- "id": 21675,
+ "id": 22144,
"properties": {
"east": "none",
"north": "tall",
@@ -182565,7 +188751,7 @@
}
},
{
- "id": 21676,
+ "id": 22145,
"properties": {
"east": "none",
"north": "tall",
@@ -182576,7 +188762,7 @@
}
},
{
- "id": 21677,
+ "id": 22146,
"properties": {
"east": "none",
"north": "tall",
@@ -182587,7 +188773,7 @@
}
},
{
- "id": 21678,
+ "id": 22147,
"properties": {
"east": "none",
"north": "tall",
@@ -182598,7 +188784,7 @@
}
},
{
- "id": 21679,
+ "id": 22148,
"properties": {
"east": "none",
"north": "tall",
@@ -182609,7 +188795,7 @@
}
},
{
- "id": 21680,
+ "id": 22149,
"properties": {
"east": "none",
"north": "tall",
@@ -182620,7 +188806,7 @@
}
},
{
- "id": 21681,
+ "id": 22150,
"properties": {
"east": "none",
"north": "tall",
@@ -182631,7 +188817,7 @@
}
},
{
- "id": 21682,
+ "id": 22151,
"properties": {
"east": "none",
"north": "tall",
@@ -182642,7 +188828,7 @@
}
},
{
- "id": 21683,
+ "id": 22152,
"properties": {
"east": "none",
"north": "tall",
@@ -182653,7 +188839,7 @@
}
},
{
- "id": 21684,
+ "id": 22153,
"properties": {
"east": "none",
"north": "tall",
@@ -182664,7 +188850,7 @@
}
},
{
- "id": 21685,
+ "id": 22154,
"properties": {
"east": "none",
"north": "tall",
@@ -182675,7 +188861,7 @@
}
},
{
- "id": 21686,
+ "id": 22155,
"properties": {
"east": "none",
"north": "tall",
@@ -182686,7 +188872,7 @@
}
},
{
- "id": 21687,
+ "id": 22156,
"properties": {
"east": "low",
"north": "none",
@@ -182697,7 +188883,7 @@
}
},
{
- "id": 21688,
+ "id": 22157,
"properties": {
"east": "low",
"north": "none",
@@ -182708,7 +188894,7 @@
}
},
{
- "id": 21689,
+ "id": 22158,
"properties": {
"east": "low",
"north": "none",
@@ -182719,7 +188905,7 @@
}
},
{
- "id": 21690,
+ "id": 22159,
"properties": {
"east": "low",
"north": "none",
@@ -182730,7 +188916,7 @@
}
},
{
- "id": 21691,
+ "id": 22160,
"properties": {
"east": "low",
"north": "none",
@@ -182741,7 +188927,7 @@
}
},
{
- "id": 21692,
+ "id": 22161,
"properties": {
"east": "low",
"north": "none",
@@ -182752,7 +188938,7 @@
}
},
{
- "id": 21693,
+ "id": 22162,
"properties": {
"east": "low",
"north": "none",
@@ -182763,7 +188949,7 @@
}
},
{
- "id": 21694,
+ "id": 22163,
"properties": {
"east": "low",
"north": "none",
@@ -182774,7 +188960,7 @@
}
},
{
- "id": 21695,
+ "id": 22164,
"properties": {
"east": "low",
"north": "none",
@@ -182785,7 +188971,7 @@
}
},
{
- "id": 21696,
+ "id": 22165,
"properties": {
"east": "low",
"north": "none",
@@ -182796,7 +188982,7 @@
}
},
{
- "id": 21697,
+ "id": 22166,
"properties": {
"east": "low",
"north": "none",
@@ -182807,7 +188993,7 @@
}
},
{
- "id": 21698,
+ "id": 22167,
"properties": {
"east": "low",
"north": "none",
@@ -182818,7 +189004,7 @@
}
},
{
- "id": 21699,
+ "id": 22168,
"properties": {
"east": "low",
"north": "none",
@@ -182829,7 +189015,7 @@
}
},
{
- "id": 21700,
+ "id": 22169,
"properties": {
"east": "low",
"north": "none",
@@ -182840,7 +189026,7 @@
}
},
{
- "id": 21701,
+ "id": 22170,
"properties": {
"east": "low",
"north": "none",
@@ -182851,7 +189037,7 @@
}
},
{
- "id": 21702,
+ "id": 22171,
"properties": {
"east": "low",
"north": "none",
@@ -182862,7 +189048,7 @@
}
},
{
- "id": 21703,
+ "id": 22172,
"properties": {
"east": "low",
"north": "none",
@@ -182873,7 +189059,7 @@
}
},
{
- "id": 21704,
+ "id": 22173,
"properties": {
"east": "low",
"north": "none",
@@ -182884,7 +189070,7 @@
}
},
{
- "id": 21705,
+ "id": 22174,
"properties": {
"east": "low",
"north": "none",
@@ -182895,7 +189081,7 @@
}
},
{
- "id": 21706,
+ "id": 22175,
"properties": {
"east": "low",
"north": "none",
@@ -182906,7 +189092,7 @@
}
},
{
- "id": 21707,
+ "id": 22176,
"properties": {
"east": "low",
"north": "none",
@@ -182917,7 +189103,7 @@
}
},
{
- "id": 21708,
+ "id": 22177,
"properties": {
"east": "low",
"north": "none",
@@ -182928,7 +189114,7 @@
}
},
{
- "id": 21709,
+ "id": 22178,
"properties": {
"east": "low",
"north": "none",
@@ -182939,7 +189125,7 @@
}
},
{
- "id": 21710,
+ "id": 22179,
"properties": {
"east": "low",
"north": "none",
@@ -182950,7 +189136,7 @@
}
},
{
- "id": 21711,
+ "id": 22180,
"properties": {
"east": "low",
"north": "none",
@@ -182961,7 +189147,7 @@
}
},
{
- "id": 21712,
+ "id": 22181,
"properties": {
"east": "low",
"north": "none",
@@ -182972,7 +189158,7 @@
}
},
{
- "id": 21713,
+ "id": 22182,
"properties": {
"east": "low",
"north": "none",
@@ -182983,7 +189169,7 @@
}
},
{
- "id": 21714,
+ "id": 22183,
"properties": {
"east": "low",
"north": "none",
@@ -182994,7 +189180,7 @@
}
},
{
- "id": 21715,
+ "id": 22184,
"properties": {
"east": "low",
"north": "none",
@@ -183005,7 +189191,7 @@
}
},
{
- "id": 21716,
+ "id": 22185,
"properties": {
"east": "low",
"north": "none",
@@ -183016,7 +189202,7 @@
}
},
{
- "id": 21717,
+ "id": 22186,
"properties": {
"east": "low",
"north": "none",
@@ -183027,7 +189213,7 @@
}
},
{
- "id": 21718,
+ "id": 22187,
"properties": {
"east": "low",
"north": "none",
@@ -183038,7 +189224,7 @@
}
},
{
- "id": 21719,
+ "id": 22188,
"properties": {
"east": "low",
"north": "none",
@@ -183049,7 +189235,7 @@
}
},
{
- "id": 21720,
+ "id": 22189,
"properties": {
"east": "low",
"north": "none",
@@ -183060,7 +189246,7 @@
}
},
{
- "id": 21721,
+ "id": 22190,
"properties": {
"east": "low",
"north": "none",
@@ -183071,7 +189257,7 @@
}
},
{
- "id": 21722,
+ "id": 22191,
"properties": {
"east": "low",
"north": "none",
@@ -183082,7 +189268,7 @@
}
},
{
- "id": 21723,
+ "id": 22192,
"properties": {
"east": "low",
"north": "low",
@@ -183093,7 +189279,7 @@
}
},
{
- "id": 21724,
+ "id": 22193,
"properties": {
"east": "low",
"north": "low",
@@ -183104,7 +189290,7 @@
}
},
{
- "id": 21725,
+ "id": 22194,
"properties": {
"east": "low",
"north": "low",
@@ -183115,7 +189301,7 @@
}
},
{
- "id": 21726,
+ "id": 22195,
"properties": {
"east": "low",
"north": "low",
@@ -183126,7 +189312,7 @@
}
},
{
- "id": 21727,
+ "id": 22196,
"properties": {
"east": "low",
"north": "low",
@@ -183137,7 +189323,7 @@
}
},
{
- "id": 21728,
+ "id": 22197,
"properties": {
"east": "low",
"north": "low",
@@ -183148,7 +189334,7 @@
}
},
{
- "id": 21729,
+ "id": 22198,
"properties": {
"east": "low",
"north": "low",
@@ -183159,7 +189345,7 @@
}
},
{
- "id": 21730,
+ "id": 22199,
"properties": {
"east": "low",
"north": "low",
@@ -183170,7 +189356,7 @@
}
},
{
- "id": 21731,
+ "id": 22200,
"properties": {
"east": "low",
"north": "low",
@@ -183181,7 +189367,7 @@
}
},
{
- "id": 21732,
+ "id": 22201,
"properties": {
"east": "low",
"north": "low",
@@ -183192,7 +189378,7 @@
}
},
{
- "id": 21733,
+ "id": 22202,
"properties": {
"east": "low",
"north": "low",
@@ -183203,7 +189389,7 @@
}
},
{
- "id": 21734,
+ "id": 22203,
"properties": {
"east": "low",
"north": "low",
@@ -183214,7 +189400,7 @@
}
},
{
- "id": 21735,
+ "id": 22204,
"properties": {
"east": "low",
"north": "low",
@@ -183225,7 +189411,7 @@
}
},
{
- "id": 21736,
+ "id": 22205,
"properties": {
"east": "low",
"north": "low",
@@ -183236,7 +189422,7 @@
}
},
{
- "id": 21737,
+ "id": 22206,
"properties": {
"east": "low",
"north": "low",
@@ -183247,7 +189433,7 @@
}
},
{
- "id": 21738,
+ "id": 22207,
"properties": {
"east": "low",
"north": "low",
@@ -183258,7 +189444,7 @@
}
},
{
- "id": 21739,
+ "id": 22208,
"properties": {
"east": "low",
"north": "low",
@@ -183269,7 +189455,7 @@
}
},
{
- "id": 21740,
+ "id": 22209,
"properties": {
"east": "low",
"north": "low",
@@ -183280,7 +189466,7 @@
}
},
{
- "id": 21741,
+ "id": 22210,
"properties": {
"east": "low",
"north": "low",
@@ -183291,7 +189477,7 @@
}
},
{
- "id": 21742,
+ "id": 22211,
"properties": {
"east": "low",
"north": "low",
@@ -183302,7 +189488,7 @@
}
},
{
- "id": 21743,
+ "id": 22212,
"properties": {
"east": "low",
"north": "low",
@@ -183313,7 +189499,7 @@
}
},
{
- "id": 21744,
+ "id": 22213,
"properties": {
"east": "low",
"north": "low",
@@ -183324,7 +189510,7 @@
}
},
{
- "id": 21745,
+ "id": 22214,
"properties": {
"east": "low",
"north": "low",
@@ -183335,7 +189521,7 @@
}
},
{
- "id": 21746,
+ "id": 22215,
"properties": {
"east": "low",
"north": "low",
@@ -183346,7 +189532,7 @@
}
},
{
- "id": 21747,
+ "id": 22216,
"properties": {
"east": "low",
"north": "low",
@@ -183357,7 +189543,7 @@
}
},
{
- "id": 21748,
+ "id": 22217,
"properties": {
"east": "low",
"north": "low",
@@ -183368,7 +189554,7 @@
}
},
{
- "id": 21749,
+ "id": 22218,
"properties": {
"east": "low",
"north": "low",
@@ -183379,7 +189565,7 @@
}
},
{
- "id": 21750,
+ "id": 22219,
"properties": {
"east": "low",
"north": "low",
@@ -183390,7 +189576,7 @@
}
},
{
- "id": 21751,
+ "id": 22220,
"properties": {
"east": "low",
"north": "low",
@@ -183401,7 +189587,7 @@
}
},
{
- "id": 21752,
+ "id": 22221,
"properties": {
"east": "low",
"north": "low",
@@ -183412,7 +189598,7 @@
}
},
{
- "id": 21753,
+ "id": 22222,
"properties": {
"east": "low",
"north": "low",
@@ -183423,7 +189609,7 @@
}
},
{
- "id": 21754,
+ "id": 22223,
"properties": {
"east": "low",
"north": "low",
@@ -183434,7 +189620,7 @@
}
},
{
- "id": 21755,
+ "id": 22224,
"properties": {
"east": "low",
"north": "low",
@@ -183445,7 +189631,7 @@
}
},
{
- "id": 21756,
+ "id": 22225,
"properties": {
"east": "low",
"north": "low",
@@ -183456,7 +189642,7 @@
}
},
{
- "id": 21757,
+ "id": 22226,
"properties": {
"east": "low",
"north": "low",
@@ -183467,7 +189653,7 @@
}
},
{
- "id": 21758,
+ "id": 22227,
"properties": {
"east": "low",
"north": "low",
@@ -183478,7 +189664,7 @@
}
},
{
- "id": 21759,
+ "id": 22228,
"properties": {
"east": "low",
"north": "tall",
@@ -183489,7 +189675,7 @@
}
},
{
- "id": 21760,
+ "id": 22229,
"properties": {
"east": "low",
"north": "tall",
@@ -183500,7 +189686,7 @@
}
},
{
- "id": 21761,
+ "id": 22230,
"properties": {
"east": "low",
"north": "tall",
@@ -183511,7 +189697,7 @@
}
},
{
- "id": 21762,
+ "id": 22231,
"properties": {
"east": "low",
"north": "tall",
@@ -183522,7 +189708,7 @@
}
},
{
- "id": 21763,
+ "id": 22232,
"properties": {
"east": "low",
"north": "tall",
@@ -183533,7 +189719,7 @@
}
},
{
- "id": 21764,
+ "id": 22233,
"properties": {
"east": "low",
"north": "tall",
@@ -183544,7 +189730,7 @@
}
},
{
- "id": 21765,
+ "id": 22234,
"properties": {
"east": "low",
"north": "tall",
@@ -183555,7 +189741,7 @@
}
},
{
- "id": 21766,
+ "id": 22235,
"properties": {
"east": "low",
"north": "tall",
@@ -183566,7 +189752,7 @@
}
},
{
- "id": 21767,
+ "id": 22236,
"properties": {
"east": "low",
"north": "tall",
@@ -183577,7 +189763,7 @@
}
},
{
- "id": 21768,
+ "id": 22237,
"properties": {
"east": "low",
"north": "tall",
@@ -183588,7 +189774,7 @@
}
},
{
- "id": 21769,
+ "id": 22238,
"properties": {
"east": "low",
"north": "tall",
@@ -183599,7 +189785,7 @@
}
},
{
- "id": 21770,
+ "id": 22239,
"properties": {
"east": "low",
"north": "tall",
@@ -183610,7 +189796,7 @@
}
},
{
- "id": 21771,
+ "id": 22240,
"properties": {
"east": "low",
"north": "tall",
@@ -183621,7 +189807,7 @@
}
},
{
- "id": 21772,
+ "id": 22241,
"properties": {
"east": "low",
"north": "tall",
@@ -183632,7 +189818,7 @@
}
},
{
- "id": 21773,
+ "id": 22242,
"properties": {
"east": "low",
"north": "tall",
@@ -183643,7 +189829,7 @@
}
},
{
- "id": 21774,
+ "id": 22243,
"properties": {
"east": "low",
"north": "tall",
@@ -183654,7 +189840,7 @@
}
},
{
- "id": 21775,
+ "id": 22244,
"properties": {
"east": "low",
"north": "tall",
@@ -183665,7 +189851,7 @@
}
},
{
- "id": 21776,
+ "id": 22245,
"properties": {
"east": "low",
"north": "tall",
@@ -183676,7 +189862,7 @@
}
},
{
- "id": 21777,
+ "id": 22246,
"properties": {
"east": "low",
"north": "tall",
@@ -183687,7 +189873,7 @@
}
},
{
- "id": 21778,
+ "id": 22247,
"properties": {
"east": "low",
"north": "tall",
@@ -183698,7 +189884,7 @@
}
},
{
- "id": 21779,
+ "id": 22248,
"properties": {
"east": "low",
"north": "tall",
@@ -183709,7 +189895,7 @@
}
},
{
- "id": 21780,
+ "id": 22249,
"properties": {
"east": "low",
"north": "tall",
@@ -183720,7 +189906,7 @@
}
},
{
- "id": 21781,
+ "id": 22250,
"properties": {
"east": "low",
"north": "tall",
@@ -183731,7 +189917,7 @@
}
},
{
- "id": 21782,
+ "id": 22251,
"properties": {
"east": "low",
"north": "tall",
@@ -183742,7 +189928,7 @@
}
},
{
- "id": 21783,
+ "id": 22252,
"properties": {
"east": "low",
"north": "tall",
@@ -183753,7 +189939,7 @@
}
},
{
- "id": 21784,
+ "id": 22253,
"properties": {
"east": "low",
"north": "tall",
@@ -183764,7 +189950,7 @@
}
},
{
- "id": 21785,
+ "id": 22254,
"properties": {
"east": "low",
"north": "tall",
@@ -183775,7 +189961,7 @@
}
},
{
- "id": 21786,
+ "id": 22255,
"properties": {
"east": "low",
"north": "tall",
@@ -183786,7 +189972,7 @@
}
},
{
- "id": 21787,
+ "id": 22256,
"properties": {
"east": "low",
"north": "tall",
@@ -183797,7 +189983,7 @@
}
},
{
- "id": 21788,
+ "id": 22257,
"properties": {
"east": "low",
"north": "tall",
@@ -183808,7 +189994,7 @@
}
},
{
- "id": 21789,
+ "id": 22258,
"properties": {
"east": "low",
"north": "tall",
@@ -183819,7 +190005,7 @@
}
},
{
- "id": 21790,
+ "id": 22259,
"properties": {
"east": "low",
"north": "tall",
@@ -183830,7 +190016,7 @@
}
},
{
- "id": 21791,
+ "id": 22260,
"properties": {
"east": "low",
"north": "tall",
@@ -183841,7 +190027,7 @@
}
},
{
- "id": 21792,
+ "id": 22261,
"properties": {
"east": "low",
"north": "tall",
@@ -183852,7 +190038,7 @@
}
},
{
- "id": 21793,
+ "id": 22262,
"properties": {
"east": "low",
"north": "tall",
@@ -183863,7 +190049,7 @@
}
},
{
- "id": 21794,
+ "id": 22263,
"properties": {
"east": "low",
"north": "tall",
@@ -183874,7 +190060,7 @@
}
},
{
- "id": 21795,
+ "id": 22264,
"properties": {
"east": "tall",
"north": "none",
@@ -183885,7 +190071,7 @@
}
},
{
- "id": 21796,
+ "id": 22265,
"properties": {
"east": "tall",
"north": "none",
@@ -183896,7 +190082,7 @@
}
},
{
- "id": 21797,
+ "id": 22266,
"properties": {
"east": "tall",
"north": "none",
@@ -183907,7 +190093,7 @@
}
},
{
- "id": 21798,
+ "id": 22267,
"properties": {
"east": "tall",
"north": "none",
@@ -183918,7 +190104,7 @@
}
},
{
- "id": 21799,
+ "id": 22268,
"properties": {
"east": "tall",
"north": "none",
@@ -183929,7 +190115,7 @@
}
},
{
- "id": 21800,
+ "id": 22269,
"properties": {
"east": "tall",
"north": "none",
@@ -183940,7 +190126,7 @@
}
},
{
- "id": 21801,
+ "id": 22270,
"properties": {
"east": "tall",
"north": "none",
@@ -183951,7 +190137,7 @@
}
},
{
- "id": 21802,
+ "id": 22271,
"properties": {
"east": "tall",
"north": "none",
@@ -183962,7 +190148,7 @@
}
},
{
- "id": 21803,
+ "id": 22272,
"properties": {
"east": "tall",
"north": "none",
@@ -183973,7 +190159,7 @@
}
},
{
- "id": 21804,
+ "id": 22273,
"properties": {
"east": "tall",
"north": "none",
@@ -183984,7 +190170,7 @@
}
},
{
- "id": 21805,
+ "id": 22274,
"properties": {
"east": "tall",
"north": "none",
@@ -183995,7 +190181,7 @@
}
},
{
- "id": 21806,
+ "id": 22275,
"properties": {
"east": "tall",
"north": "none",
@@ -184006,7 +190192,7 @@
}
},
{
- "id": 21807,
+ "id": 22276,
"properties": {
"east": "tall",
"north": "none",
@@ -184017,7 +190203,7 @@
}
},
{
- "id": 21808,
+ "id": 22277,
"properties": {
"east": "tall",
"north": "none",
@@ -184028,7 +190214,7 @@
}
},
{
- "id": 21809,
+ "id": 22278,
"properties": {
"east": "tall",
"north": "none",
@@ -184039,7 +190225,7 @@
}
},
{
- "id": 21810,
+ "id": 22279,
"properties": {
"east": "tall",
"north": "none",
@@ -184050,7 +190236,7 @@
}
},
{
- "id": 21811,
+ "id": 22280,
"properties": {
"east": "tall",
"north": "none",
@@ -184061,7 +190247,7 @@
}
},
{
- "id": 21812,
+ "id": 22281,
"properties": {
"east": "tall",
"north": "none",
@@ -184072,7 +190258,7 @@
}
},
{
- "id": 21813,
+ "id": 22282,
"properties": {
"east": "tall",
"north": "none",
@@ -184083,7 +190269,7 @@
}
},
{
- "id": 21814,
+ "id": 22283,
"properties": {
"east": "tall",
"north": "none",
@@ -184094,7 +190280,7 @@
}
},
{
- "id": 21815,
+ "id": 22284,
"properties": {
"east": "tall",
"north": "none",
@@ -184105,7 +190291,7 @@
}
},
{
- "id": 21816,
+ "id": 22285,
"properties": {
"east": "tall",
"north": "none",
@@ -184116,7 +190302,7 @@
}
},
{
- "id": 21817,
+ "id": 22286,
"properties": {
"east": "tall",
"north": "none",
@@ -184127,7 +190313,7 @@
}
},
{
- "id": 21818,
+ "id": 22287,
"properties": {
"east": "tall",
"north": "none",
@@ -184138,7 +190324,7 @@
}
},
{
- "id": 21819,
+ "id": 22288,
"properties": {
"east": "tall",
"north": "none",
@@ -184149,7 +190335,7 @@
}
},
{
- "id": 21820,
+ "id": 22289,
"properties": {
"east": "tall",
"north": "none",
@@ -184160,7 +190346,7 @@
}
},
{
- "id": 21821,
+ "id": 22290,
"properties": {
"east": "tall",
"north": "none",
@@ -184171,7 +190357,7 @@
}
},
{
- "id": 21822,
+ "id": 22291,
"properties": {
"east": "tall",
"north": "none",
@@ -184182,7 +190368,7 @@
}
},
{
- "id": 21823,
+ "id": 22292,
"properties": {
"east": "tall",
"north": "none",
@@ -184193,7 +190379,7 @@
}
},
{
- "id": 21824,
+ "id": 22293,
"properties": {
"east": "tall",
"north": "none",
@@ -184204,7 +190390,7 @@
}
},
{
- "id": 21825,
+ "id": 22294,
"properties": {
"east": "tall",
"north": "none",
@@ -184215,7 +190401,7 @@
}
},
{
- "id": 21826,
+ "id": 22295,
"properties": {
"east": "tall",
"north": "none",
@@ -184226,7 +190412,7 @@
}
},
{
- "id": 21827,
+ "id": 22296,
"properties": {
"east": "tall",
"north": "none",
@@ -184237,7 +190423,7 @@
}
},
{
- "id": 21828,
+ "id": 22297,
"properties": {
"east": "tall",
"north": "none",
@@ -184248,7 +190434,7 @@
}
},
{
- "id": 21829,
+ "id": 22298,
"properties": {
"east": "tall",
"north": "none",
@@ -184259,7 +190445,7 @@
}
},
{
- "id": 21830,
+ "id": 22299,
"properties": {
"east": "tall",
"north": "none",
@@ -184270,7 +190456,7 @@
}
},
{
- "id": 21831,
+ "id": 22300,
"properties": {
"east": "tall",
"north": "low",
@@ -184281,7 +190467,7 @@
}
},
{
- "id": 21832,
+ "id": 22301,
"properties": {
"east": "tall",
"north": "low",
@@ -184292,7 +190478,7 @@
}
},
{
- "id": 21833,
+ "id": 22302,
"properties": {
"east": "tall",
"north": "low",
@@ -184303,7 +190489,7 @@
}
},
{
- "id": 21834,
+ "id": 22303,
"properties": {
"east": "tall",
"north": "low",
@@ -184314,7 +190500,7 @@
}
},
{
- "id": 21835,
+ "id": 22304,
"properties": {
"east": "tall",
"north": "low",
@@ -184325,7 +190511,7 @@
}
},
{
- "id": 21836,
+ "id": 22305,
"properties": {
"east": "tall",
"north": "low",
@@ -184336,7 +190522,7 @@
}
},
{
- "id": 21837,
+ "id": 22306,
"properties": {
"east": "tall",
"north": "low",
@@ -184347,7 +190533,7 @@
}
},
{
- "id": 21838,
+ "id": 22307,
"properties": {
"east": "tall",
"north": "low",
@@ -184358,7 +190544,7 @@
}
},
{
- "id": 21839,
+ "id": 22308,
"properties": {
"east": "tall",
"north": "low",
@@ -184369,7 +190555,7 @@
}
},
{
- "id": 21840,
+ "id": 22309,
"properties": {
"east": "tall",
"north": "low",
@@ -184380,7 +190566,7 @@
}
},
{
- "id": 21841,
+ "id": 22310,
"properties": {
"east": "tall",
"north": "low",
@@ -184391,7 +190577,7 @@
}
},
{
- "id": 21842,
+ "id": 22311,
"properties": {
"east": "tall",
"north": "low",
@@ -184402,7 +190588,7 @@
}
},
{
- "id": 21843,
+ "id": 22312,
"properties": {
"east": "tall",
"north": "low",
@@ -184413,7 +190599,7 @@
}
},
{
- "id": 21844,
+ "id": 22313,
"properties": {
"east": "tall",
"north": "low",
@@ -184424,7 +190610,7 @@
}
},
{
- "id": 21845,
+ "id": 22314,
"properties": {
"east": "tall",
"north": "low",
@@ -184435,7 +190621,7 @@
}
},
{
- "id": 21846,
+ "id": 22315,
"properties": {
"east": "tall",
"north": "low",
@@ -184446,7 +190632,7 @@
}
},
{
- "id": 21847,
+ "id": 22316,
"properties": {
"east": "tall",
"north": "low",
@@ -184457,7 +190643,7 @@
}
},
{
- "id": 21848,
+ "id": 22317,
"properties": {
"east": "tall",
"north": "low",
@@ -184468,7 +190654,7 @@
}
},
{
- "id": 21849,
+ "id": 22318,
"properties": {
"east": "tall",
"north": "low",
@@ -184479,7 +190665,7 @@
}
},
{
- "id": 21850,
+ "id": 22319,
"properties": {
"east": "tall",
"north": "low",
@@ -184490,7 +190676,7 @@
}
},
{
- "id": 21851,
+ "id": 22320,
"properties": {
"east": "tall",
"north": "low",
@@ -184501,7 +190687,7 @@
}
},
{
- "id": 21852,
+ "id": 22321,
"properties": {
"east": "tall",
"north": "low",
@@ -184512,7 +190698,7 @@
}
},
{
- "id": 21853,
+ "id": 22322,
"properties": {
"east": "tall",
"north": "low",
@@ -184523,7 +190709,7 @@
}
},
{
- "id": 21854,
+ "id": 22323,
"properties": {
"east": "tall",
"north": "low",
@@ -184534,7 +190720,7 @@
}
},
{
- "id": 21855,
+ "id": 22324,
"properties": {
"east": "tall",
"north": "low",
@@ -184545,7 +190731,7 @@
}
},
{
- "id": 21856,
+ "id": 22325,
"properties": {
"east": "tall",
"north": "low",
@@ -184556,7 +190742,7 @@
}
},
{
- "id": 21857,
+ "id": 22326,
"properties": {
"east": "tall",
"north": "low",
@@ -184567,7 +190753,7 @@
}
},
{
- "id": 21858,
+ "id": 22327,
"properties": {
"east": "tall",
"north": "low",
@@ -184578,7 +190764,7 @@
}
},
{
- "id": 21859,
+ "id": 22328,
"properties": {
"east": "tall",
"north": "low",
@@ -184589,7 +190775,7 @@
}
},
{
- "id": 21860,
+ "id": 22329,
"properties": {
"east": "tall",
"north": "low",
@@ -184600,7 +190786,7 @@
}
},
{
- "id": 21861,
+ "id": 22330,
"properties": {
"east": "tall",
"north": "low",
@@ -184611,7 +190797,7 @@
}
},
{
- "id": 21862,
+ "id": 22331,
"properties": {
"east": "tall",
"north": "low",
@@ -184622,7 +190808,7 @@
}
},
{
- "id": 21863,
+ "id": 22332,
"properties": {
"east": "tall",
"north": "low",
@@ -184633,7 +190819,7 @@
}
},
{
- "id": 21864,
+ "id": 22333,
"properties": {
"east": "tall",
"north": "low",
@@ -184644,7 +190830,7 @@
}
},
{
- "id": 21865,
+ "id": 22334,
"properties": {
"east": "tall",
"north": "low",
@@ -184655,7 +190841,7 @@
}
},
{
- "id": 21866,
+ "id": 22335,
"properties": {
"east": "tall",
"north": "low",
@@ -184666,7 +190852,7 @@
}
},
{
- "id": 21867,
+ "id": 22336,
"properties": {
"east": "tall",
"north": "tall",
@@ -184677,7 +190863,7 @@
}
},
{
- "id": 21868,
+ "id": 22337,
"properties": {
"east": "tall",
"north": "tall",
@@ -184688,7 +190874,7 @@
}
},
{
- "id": 21869,
+ "id": 22338,
"properties": {
"east": "tall",
"north": "tall",
@@ -184699,7 +190885,7 @@
}
},
{
- "id": 21870,
+ "id": 22339,
"properties": {
"east": "tall",
"north": "tall",
@@ -184710,7 +190896,7 @@
}
},
{
- "id": 21871,
+ "id": 22340,
"properties": {
"east": "tall",
"north": "tall",
@@ -184721,7 +190907,7 @@
}
},
{
- "id": 21872,
+ "id": 22341,
"properties": {
"east": "tall",
"north": "tall",
@@ -184732,7 +190918,7 @@
}
},
{
- "id": 21873,
+ "id": 22342,
"properties": {
"east": "tall",
"north": "tall",
@@ -184743,7 +190929,7 @@
}
},
{
- "id": 21874,
+ "id": 22343,
"properties": {
"east": "tall",
"north": "tall",
@@ -184754,7 +190940,7 @@
}
},
{
- "id": 21875,
+ "id": 22344,
"properties": {
"east": "tall",
"north": "tall",
@@ -184765,7 +190951,7 @@
}
},
{
- "id": 21876,
+ "id": 22345,
"properties": {
"east": "tall",
"north": "tall",
@@ -184776,7 +190962,7 @@
}
},
{
- "id": 21877,
+ "id": 22346,
"properties": {
"east": "tall",
"north": "tall",
@@ -184787,7 +190973,7 @@
}
},
{
- "id": 21878,
+ "id": 22347,
"properties": {
"east": "tall",
"north": "tall",
@@ -184798,7 +190984,7 @@
}
},
{
- "id": 21879,
+ "id": 22348,
"properties": {
"east": "tall",
"north": "tall",
@@ -184809,7 +190995,7 @@
}
},
{
- "id": 21880,
+ "id": 22349,
"properties": {
"east": "tall",
"north": "tall",
@@ -184820,7 +191006,7 @@
}
},
{
- "id": 21881,
+ "id": 22350,
"properties": {
"east": "tall",
"north": "tall",
@@ -184831,7 +191017,7 @@
}
},
{
- "id": 21882,
+ "id": 22351,
"properties": {
"east": "tall",
"north": "tall",
@@ -184842,7 +191028,7 @@
}
},
{
- "id": 21883,
+ "id": 22352,
"properties": {
"east": "tall",
"north": "tall",
@@ -184853,7 +191039,7 @@
}
},
{
- "id": 21884,
+ "id": 22353,
"properties": {
"east": "tall",
"north": "tall",
@@ -184864,7 +191050,7 @@
}
},
{
- "id": 21885,
+ "id": 22354,
"properties": {
"east": "tall",
"north": "tall",
@@ -184875,7 +191061,7 @@
}
},
{
- "id": 21886,
+ "id": 22355,
"properties": {
"east": "tall",
"north": "tall",
@@ -184886,7 +191072,7 @@
}
},
{
- "id": 21887,
+ "id": 22356,
"properties": {
"east": "tall",
"north": "tall",
@@ -184897,7 +191083,7 @@
}
},
{
- "id": 21888,
+ "id": 22357,
"properties": {
"east": "tall",
"north": "tall",
@@ -184908,7 +191094,7 @@
}
},
{
- "id": 21889,
+ "id": 22358,
"properties": {
"east": "tall",
"north": "tall",
@@ -184919,7 +191105,7 @@
}
},
{
- "id": 21890,
+ "id": 22359,
"properties": {
"east": "tall",
"north": "tall",
@@ -184930,7 +191116,7 @@
}
},
{
- "id": 21891,
+ "id": 22360,
"properties": {
"east": "tall",
"north": "tall",
@@ -184941,7 +191127,7 @@
}
},
{
- "id": 21892,
+ "id": 22361,
"properties": {
"east": "tall",
"north": "tall",
@@ -184952,7 +191138,7 @@
}
},
{
- "id": 21893,
+ "id": 22362,
"properties": {
"east": "tall",
"north": "tall",
@@ -184963,7 +191149,7 @@
}
},
{
- "id": 21894,
+ "id": 22363,
"properties": {
"east": "tall",
"north": "tall",
@@ -184974,7 +191160,7 @@
}
},
{
- "id": 21895,
+ "id": 22364,
"properties": {
"east": "tall",
"north": "tall",
@@ -184985,7 +191171,7 @@
}
},
{
- "id": 21896,
+ "id": 22365,
"properties": {
"east": "tall",
"north": "tall",
@@ -184996,7 +191182,7 @@
}
},
{
- "id": 21897,
+ "id": 22366,
"properties": {
"east": "tall",
"north": "tall",
@@ -185007,7 +191193,7 @@
}
},
{
- "id": 21898,
+ "id": 22367,
"properties": {
"east": "tall",
"north": "tall",
@@ -185018,7 +191204,7 @@
}
},
{
- "id": 21899,
+ "id": 22368,
"properties": {
"east": "tall",
"north": "tall",
@@ -185029,7 +191215,7 @@
}
},
{
- "id": 21900,
+ "id": 22369,
"properties": {
"east": "tall",
"north": "tall",
@@ -185040,7 +191226,7 @@
}
},
{
- "id": 21901,
+ "id": 22370,
"properties": {
"east": "tall",
"north": "tall",
@@ -185051,7 +191237,7 @@
}
},
{
- "id": 21902,
+ "id": 22371,
"properties": {
"east": "tall",
"north": "tall",
@@ -185077,7 +191263,7 @@
"states": [
{
"default": true,
- "id": 2077
+ "id": 2120
}
]
},
@@ -185101,49 +191287,49 @@
"states": [
{
"default": true,
- "id": 8603,
+ "id": 8834,
"properties": {
"age": "0"
}
},
{
- "id": 8604,
+ "id": 8835,
"properties": {
"age": "1"
}
},
{
- "id": 8605,
+ "id": 8836,
"properties": {
"age": "2"
}
},
{
- "id": 8606,
+ "id": 8837,
"properties": {
"age": "3"
}
},
{
- "id": 8607,
+ "id": 8838,
"properties": {
"age": "4"
}
},
{
- "id": 8608,
+ "id": 8839,
"properties": {
"age": "5"
}
},
{
- "id": 8609,
+ "id": 8840,
"properties": {
"age": "6"
}
},
{
- "id": 8610,
+ "id": 8841,
"properties": {
"age": "7"
}
@@ -185159,7 +191345,7 @@
"states": [
{
"default": true,
- "id": 8573
+ "id": 8803
}
]
},
@@ -185172,7 +191358,7 @@
"states": [
{
"default": true,
- "id": 8581
+ "id": 8812
}
]
},
@@ -185185,7 +191371,7 @@
"states": [
{
"default": true,
- "id": 26561
+ "id": 27030
}
]
},
@@ -185198,7 +191384,7 @@
"states": [
{
"default": true,
- "id": 8582
+ "id": 8813
}
]
},
@@ -185211,7 +191397,7 @@
"states": [
{
"default": true,
- "id": 12957
+ "id": 13426
}
]
},
@@ -185224,7 +191410,7 @@
"states": [
{
"default": true,
- "id": 8571
+ "id": 8801
}
]
},
@@ -185237,7 +191423,7 @@
"states": [
{
"default": true,
- "id": 8580
+ "id": 8811
}
]
},
@@ -185250,7 +191436,7 @@
"states": [
{
"default": true,
- "id": 8592
+ "id": 8823
}
]
},
@@ -185263,7 +191449,7 @@
"states": [
{
"default": true,
- "id": 8594
+ "id": 8825
}
]
},
@@ -185276,7 +191462,7 @@
"states": [
{
"default": true,
- "id": 8574
+ "id": 8804
}
]
},
@@ -185289,7 +191475,7 @@
"states": [
{
"default": true,
- "id": 8588
+ "id": 8819
}
]
},
@@ -185302,7 +191488,7 @@
"states": [
{
"default": true,
- "id": 19455
+ "id": 19924
}
]
},
@@ -185315,7 +191501,7 @@
"states": [
{
"default": true,
- "id": 19457
+ "id": 19926
}
]
},
@@ -185328,7 +191514,7 @@
"states": [
{
"default": true,
- "id": 8578
+ "id": 8809
}
]
},
@@ -185341,7 +191527,7 @@
"states": [
{
"default": true,
- "id": 8575
+ "id": 8805
}
]
},
@@ -185354,7 +191540,7 @@
"states": [
{
"default": true,
- "id": 8593
+ "id": 8824
}
]
},
@@ -185367,7 +191553,7 @@
"states": [
{
"default": true,
- "id": 8577
+ "id": 8808
}
]
},
@@ -185380,7 +191566,7 @@
"states": [
{
"default": true,
- "id": 26562
+ "id": 27031
}
]
},
@@ -185393,7 +191579,7 @@
"states": [
{
"default": true,
- "id": 8572
+ "id": 8802
}
]
},
@@ -185406,7 +191592,7 @@
"states": [
{
"default": true,
- "id": 8589
+ "id": 8820
}
]
},
@@ -185419,7 +191605,7 @@
"states": [
{
"default": true,
- "id": 8576
+ "id": 8807
}
]
},
@@ -185432,7 +191618,7 @@
"states": [
{
"default": true,
- "id": 8569
+ "id": 8799
}
]
},
@@ -185445,7 +191631,7 @@
"states": [
{
"default": true,
- "id": 8584
+ "id": 8815
}
]
},
@@ -185458,7 +191644,20 @@
"states": [
{
"default": true,
- "id": 8587
+ "id": 8818
+ }
+ ]
+ },
+ "minecraft:potted_pale_oak_sapling": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:pale_oak_sapling",
+ "properties": {}
+ },
+ "states": [
+ {
+ "default": true,
+ "id": 8806
}
]
},
@@ -185471,7 +191670,7 @@
"states": [
{
"default": true,
- "id": 8586
+ "id": 8817
}
]
},
@@ -185484,7 +191683,7 @@
"states": [
{
"default": true,
- "id": 8579
+ "id": 8810
}
]
},
@@ -185497,7 +191696,7 @@
"states": [
{
"default": true,
- "id": 8591
+ "id": 8822
}
]
},
@@ -185510,7 +191709,7 @@
"states": [
{
"default": true,
- "id": 8583
+ "id": 8814
}
]
},
@@ -185523,7 +191722,7 @@
"states": [
{
"default": true,
- "id": 8570
+ "id": 8800
}
]
},
@@ -185536,7 +191735,7 @@
"states": [
{
"default": true,
- "id": 8568
+ "id": 8798
}
]
},
@@ -185549,7 +191748,7 @@
"states": [
{
"default": true,
- "id": 19456
+ "id": 19925
}
]
},
@@ -185562,7 +191761,7 @@
"states": [
{
"default": true,
- "id": 19458
+ "id": 19927
}
]
},
@@ -185575,7 +191774,7 @@
"states": [
{
"default": true,
- "id": 8585
+ "id": 8816
}
]
},
@@ -185588,7 +191787,7 @@
"states": [
{
"default": true,
- "id": 8590
+ "id": 8821
}
]
},
@@ -185600,7 +191799,7 @@
"states": [
{
"default": true,
- "id": 22318
+ "id": 22787
}
]
},
@@ -185621,19 +191820,19 @@
"states": [
{
"default": true,
- "id": 7403,
+ "id": 7633,
"properties": {
"level": "1"
}
},
{
- "id": 7404,
+ "id": 7634,
"properties": {
"level": "2"
}
},
{
- "id": 7405,
+ "id": 7635,
"properties": {
"level": "3"
}
@@ -185665,7 +191864,7 @@
},
"states": [
{
- "id": 1944,
+ "id": 1987,
"properties": {
"powered": "true",
"shape": "north_south",
@@ -185673,7 +191872,7 @@
}
},
{
- "id": 1945,
+ "id": 1988,
"properties": {
"powered": "true",
"shape": "north_south",
@@ -185681,7 +191880,7 @@
}
},
{
- "id": 1946,
+ "id": 1989,
"properties": {
"powered": "true",
"shape": "east_west",
@@ -185689,7 +191888,7 @@
}
},
{
- "id": 1947,
+ "id": 1990,
"properties": {
"powered": "true",
"shape": "east_west",
@@ -185697,7 +191896,7 @@
}
},
{
- "id": 1948,
+ "id": 1991,
"properties": {
"powered": "true",
"shape": "ascending_east",
@@ -185705,7 +191904,7 @@
}
},
{
- "id": 1949,
+ "id": 1992,
"properties": {
"powered": "true",
"shape": "ascending_east",
@@ -185713,7 +191912,7 @@
}
},
{
- "id": 1950,
+ "id": 1993,
"properties": {
"powered": "true",
"shape": "ascending_west",
@@ -185721,7 +191920,7 @@
}
},
{
- "id": 1951,
+ "id": 1994,
"properties": {
"powered": "true",
"shape": "ascending_west",
@@ -185729,7 +191928,7 @@
}
},
{
- "id": 1952,
+ "id": 1995,
"properties": {
"powered": "true",
"shape": "ascending_north",
@@ -185737,7 +191936,7 @@
}
},
{
- "id": 1953,
+ "id": 1996,
"properties": {
"powered": "true",
"shape": "ascending_north",
@@ -185745,7 +191944,7 @@
}
},
{
- "id": 1954,
+ "id": 1997,
"properties": {
"powered": "true",
"shape": "ascending_south",
@@ -185753,7 +191952,7 @@
}
},
{
- "id": 1955,
+ "id": 1998,
"properties": {
"powered": "true",
"shape": "ascending_south",
@@ -185761,7 +191960,7 @@
}
},
{
- "id": 1956,
+ "id": 1999,
"properties": {
"powered": "false",
"shape": "north_south",
@@ -185770,7 +191969,7 @@
},
{
"default": true,
- "id": 1957,
+ "id": 2000,
"properties": {
"powered": "false",
"shape": "north_south",
@@ -185778,7 +191977,7 @@
}
},
{
- "id": 1958,
+ "id": 2001,
"properties": {
"powered": "false",
"shape": "east_west",
@@ -185786,7 +191985,7 @@
}
},
{
- "id": 1959,
+ "id": 2002,
"properties": {
"powered": "false",
"shape": "east_west",
@@ -185794,7 +191993,7 @@
}
},
{
- "id": 1960,
+ "id": 2003,
"properties": {
"powered": "false",
"shape": "ascending_east",
@@ -185802,7 +192001,7 @@
}
},
{
- "id": 1961,
+ "id": 2004,
"properties": {
"powered": "false",
"shape": "ascending_east",
@@ -185810,7 +192009,7 @@
}
},
{
- "id": 1962,
+ "id": 2005,
"properties": {
"powered": "false",
"shape": "ascending_west",
@@ -185818,7 +192017,7 @@
}
},
{
- "id": 1963,
+ "id": 2006,
"properties": {
"powered": "false",
"shape": "ascending_west",
@@ -185826,7 +192025,7 @@
}
},
{
- "id": 1964,
+ "id": 2007,
"properties": {
"powered": "false",
"shape": "ascending_north",
@@ -185834,7 +192033,7 @@
}
},
{
- "id": 1965,
+ "id": 2008,
"properties": {
"powered": "false",
"shape": "ascending_north",
@@ -185842,7 +192041,7 @@
}
},
{
- "id": 1966,
+ "id": 2009,
"properties": {
"powered": "false",
"shape": "ascending_south",
@@ -185850,7 +192049,7 @@
}
},
{
- "id": 1967,
+ "id": 2010,
"properties": {
"powered": "false",
"shape": "ascending_south",
@@ -185867,7 +192066,7 @@
"states": [
{
"default": true,
- "id": 10463
+ "id": 10798
}
]
},
@@ -185889,21 +192088,21 @@
},
"states": [
{
- "id": 10712,
+ "id": 11047,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10713,
+ "id": 11048,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10714,
+ "id": 11049,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -185911,21 +192110,21 @@
},
{
"default": true,
- "id": 10715,
+ "id": 11050,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10716,
+ "id": 11051,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10717,
+ "id": 11052,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -185966,7 +192165,7 @@
},
"states": [
{
- "id": 10546,
+ "id": 10881,
"properties": {
"facing": "north",
"half": "top",
@@ -185975,7 +192174,7 @@
}
},
{
- "id": 10547,
+ "id": 10882,
"properties": {
"facing": "north",
"half": "top",
@@ -185984,7 +192183,7 @@
}
},
{
- "id": 10548,
+ "id": 10883,
"properties": {
"facing": "north",
"half": "top",
@@ -185993,7 +192192,7 @@
}
},
{
- "id": 10549,
+ "id": 10884,
"properties": {
"facing": "north",
"half": "top",
@@ -186002,7 +192201,7 @@
}
},
{
- "id": 10550,
+ "id": 10885,
"properties": {
"facing": "north",
"half": "top",
@@ -186011,7 +192210,7 @@
}
},
{
- "id": 10551,
+ "id": 10886,
"properties": {
"facing": "north",
"half": "top",
@@ -186020,7 +192219,7 @@
}
},
{
- "id": 10552,
+ "id": 10887,
"properties": {
"facing": "north",
"half": "top",
@@ -186029,7 +192228,7 @@
}
},
{
- "id": 10553,
+ "id": 10888,
"properties": {
"facing": "north",
"half": "top",
@@ -186038,7 +192237,7 @@
}
},
{
- "id": 10554,
+ "id": 10889,
"properties": {
"facing": "north",
"half": "top",
@@ -186047,7 +192246,7 @@
}
},
{
- "id": 10555,
+ "id": 10890,
"properties": {
"facing": "north",
"half": "top",
@@ -186056,7 +192255,7 @@
}
},
{
- "id": 10556,
+ "id": 10891,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186066,7 +192265,7 @@
},
{
"default": true,
- "id": 10557,
+ "id": 10892,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186075,7 +192274,7 @@
}
},
{
- "id": 10558,
+ "id": 10893,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186084,7 +192283,7 @@
}
},
{
- "id": 10559,
+ "id": 10894,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186093,7 +192292,7 @@
}
},
{
- "id": 10560,
+ "id": 10895,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186102,7 +192301,7 @@
}
},
{
- "id": 10561,
+ "id": 10896,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186111,7 +192310,7 @@
}
},
{
- "id": 10562,
+ "id": 10897,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186120,7 +192319,7 @@
}
},
{
- "id": 10563,
+ "id": 10898,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186129,7 +192328,7 @@
}
},
{
- "id": 10564,
+ "id": 10899,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186138,7 +192337,7 @@
}
},
{
- "id": 10565,
+ "id": 10900,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186147,7 +192346,7 @@
}
},
{
- "id": 10566,
+ "id": 10901,
"properties": {
"facing": "south",
"half": "top",
@@ -186156,7 +192355,7 @@
}
},
{
- "id": 10567,
+ "id": 10902,
"properties": {
"facing": "south",
"half": "top",
@@ -186165,7 +192364,7 @@
}
},
{
- "id": 10568,
+ "id": 10903,
"properties": {
"facing": "south",
"half": "top",
@@ -186174,7 +192373,7 @@
}
},
{
- "id": 10569,
+ "id": 10904,
"properties": {
"facing": "south",
"half": "top",
@@ -186183,7 +192382,7 @@
}
},
{
- "id": 10570,
+ "id": 10905,
"properties": {
"facing": "south",
"half": "top",
@@ -186192,7 +192391,7 @@
}
},
{
- "id": 10571,
+ "id": 10906,
"properties": {
"facing": "south",
"half": "top",
@@ -186201,7 +192400,7 @@
}
},
{
- "id": 10572,
+ "id": 10907,
"properties": {
"facing": "south",
"half": "top",
@@ -186210,7 +192409,7 @@
}
},
{
- "id": 10573,
+ "id": 10908,
"properties": {
"facing": "south",
"half": "top",
@@ -186219,7 +192418,7 @@
}
},
{
- "id": 10574,
+ "id": 10909,
"properties": {
"facing": "south",
"half": "top",
@@ -186228,7 +192427,7 @@
}
},
{
- "id": 10575,
+ "id": 10910,
"properties": {
"facing": "south",
"half": "top",
@@ -186237,7 +192436,7 @@
}
},
{
- "id": 10576,
+ "id": 10911,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186246,7 +192445,7 @@
}
},
{
- "id": 10577,
+ "id": 10912,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186255,7 +192454,7 @@
}
},
{
- "id": 10578,
+ "id": 10913,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186264,7 +192463,7 @@
}
},
{
- "id": 10579,
+ "id": 10914,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186273,7 +192472,7 @@
}
},
{
- "id": 10580,
+ "id": 10915,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186282,7 +192481,7 @@
}
},
{
- "id": 10581,
+ "id": 10916,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186291,7 +192490,7 @@
}
},
{
- "id": 10582,
+ "id": 10917,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186300,7 +192499,7 @@
}
},
{
- "id": 10583,
+ "id": 10918,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186309,7 +192508,7 @@
}
},
{
- "id": 10584,
+ "id": 10919,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186318,7 +192517,7 @@
}
},
{
- "id": 10585,
+ "id": 10920,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186327,7 +192526,7 @@
}
},
{
- "id": 10586,
+ "id": 10921,
"properties": {
"facing": "west",
"half": "top",
@@ -186336,7 +192535,7 @@
}
},
{
- "id": 10587,
+ "id": 10922,
"properties": {
"facing": "west",
"half": "top",
@@ -186345,7 +192544,7 @@
}
},
{
- "id": 10588,
+ "id": 10923,
"properties": {
"facing": "west",
"half": "top",
@@ -186354,7 +192553,7 @@
}
},
{
- "id": 10589,
+ "id": 10924,
"properties": {
"facing": "west",
"half": "top",
@@ -186363,7 +192562,7 @@
}
},
{
- "id": 10590,
+ "id": 10925,
"properties": {
"facing": "west",
"half": "top",
@@ -186372,7 +192571,7 @@
}
},
{
- "id": 10591,
+ "id": 10926,
"properties": {
"facing": "west",
"half": "top",
@@ -186381,7 +192580,7 @@
}
},
{
- "id": 10592,
+ "id": 10927,
"properties": {
"facing": "west",
"half": "top",
@@ -186390,7 +192589,7 @@
}
},
{
- "id": 10593,
+ "id": 10928,
"properties": {
"facing": "west",
"half": "top",
@@ -186399,7 +192598,7 @@
}
},
{
- "id": 10594,
+ "id": 10929,
"properties": {
"facing": "west",
"half": "top",
@@ -186408,7 +192607,7 @@
}
},
{
- "id": 10595,
+ "id": 10930,
"properties": {
"facing": "west",
"half": "top",
@@ -186417,7 +192616,7 @@
}
},
{
- "id": 10596,
+ "id": 10931,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186426,7 +192625,7 @@
}
},
{
- "id": 10597,
+ "id": 10932,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186435,7 +192634,7 @@
}
},
{
- "id": 10598,
+ "id": 10933,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186444,7 +192643,7 @@
}
},
{
- "id": 10599,
+ "id": 10934,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186453,7 +192652,7 @@
}
},
{
- "id": 10600,
+ "id": 10935,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186462,7 +192661,7 @@
}
},
{
- "id": 10601,
+ "id": 10936,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186471,7 +192670,7 @@
}
},
{
- "id": 10602,
+ "id": 10937,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186480,7 +192679,7 @@
}
},
{
- "id": 10603,
+ "id": 10938,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186489,7 +192688,7 @@
}
},
{
- "id": 10604,
+ "id": 10939,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186498,7 +192697,7 @@
}
},
{
- "id": 10605,
+ "id": 10940,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186507,7 +192706,7 @@
}
},
{
- "id": 10606,
+ "id": 10941,
"properties": {
"facing": "east",
"half": "top",
@@ -186516,7 +192715,7 @@
}
},
{
- "id": 10607,
+ "id": 10942,
"properties": {
"facing": "east",
"half": "top",
@@ -186525,7 +192724,7 @@
}
},
{
- "id": 10608,
+ "id": 10943,
"properties": {
"facing": "east",
"half": "top",
@@ -186534,7 +192733,7 @@
}
},
{
- "id": 10609,
+ "id": 10944,
"properties": {
"facing": "east",
"half": "top",
@@ -186543,7 +192742,7 @@
}
},
{
- "id": 10610,
+ "id": 10945,
"properties": {
"facing": "east",
"half": "top",
@@ -186552,7 +192751,7 @@
}
},
{
- "id": 10611,
+ "id": 10946,
"properties": {
"facing": "east",
"half": "top",
@@ -186561,7 +192760,7 @@
}
},
{
- "id": 10612,
+ "id": 10947,
"properties": {
"facing": "east",
"half": "top",
@@ -186570,7 +192769,7 @@
}
},
{
- "id": 10613,
+ "id": 10948,
"properties": {
"facing": "east",
"half": "top",
@@ -186579,7 +192778,7 @@
}
},
{
- "id": 10614,
+ "id": 10949,
"properties": {
"facing": "east",
"half": "top",
@@ -186588,7 +192787,7 @@
}
},
{
- "id": 10615,
+ "id": 10950,
"properties": {
"facing": "east",
"half": "top",
@@ -186597,7 +192796,7 @@
}
},
{
- "id": 10616,
+ "id": 10951,
"properties": {
"facing": "east",
"half": "bottom",
@@ -186606,7 +192805,7 @@
}
},
{
- "id": 10617,
+ "id": 10952,
"properties": {
"facing": "east",
"half": "bottom",
@@ -186615,7 +192814,7 @@
}
},
{
- "id": 10618,
+ "id": 10953,
"properties": {
"facing": "east",
"half": "bottom",
@@ -186624,7 +192823,7 @@
}
},
{
- "id": 10619,
+ "id": 10954,
"properties": {
"facing": "east",
"half": "bottom",
@@ -186633,7 +192832,7 @@
}
},
{
- "id": 10620,
+ "id": 10955,
"properties": {
"facing": "east",
"half": "bottom",
@@ -186642,7 +192841,7 @@
}
},
{
- "id": 10621,
+ "id": 10956,
"properties": {
"facing": "east",
"half": "bottom",
@@ -186651,7 +192850,7 @@
}
},
{
- "id": 10622,
+ "id": 10957,
"properties": {
"facing": "east",
"half": "bottom",
@@ -186660,7 +192859,7 @@
}
},
{
- "id": 10623,
+ "id": 10958,
"properties": {
"facing": "east",
"half": "bottom",
@@ -186669,7 +192868,7 @@
}
},
{
- "id": 10624,
+ "id": 10959,
"properties": {
"facing": "east",
"half": "bottom",
@@ -186678,7 +192877,7 @@
}
},
{
- "id": 10625,
+ "id": 10960,
"properties": {
"facing": "east",
"half": "bottom",
@@ -186696,7 +192895,7 @@
"states": [
{
"default": true,
- "id": 10464
+ "id": 10799
}
]
},
@@ -186718,21 +192917,21 @@
},
"states": [
{
- "id": 10706,
+ "id": 11041,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10707,
+ "id": 11042,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10708,
+ "id": 11043,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -186740,21 +192939,21 @@
},
{
"default": true,
- "id": 10709,
+ "id": 11044,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10710,
+ "id": 11045,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10711,
+ "id": 11046,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -186795,7 +192994,7 @@
},
"states": [
{
- "id": 10466,
+ "id": 10801,
"properties": {
"facing": "north",
"half": "top",
@@ -186804,7 +193003,7 @@
}
},
{
- "id": 10467,
+ "id": 10802,
"properties": {
"facing": "north",
"half": "top",
@@ -186813,7 +193012,7 @@
}
},
{
- "id": 10468,
+ "id": 10803,
"properties": {
"facing": "north",
"half": "top",
@@ -186822,7 +193021,7 @@
}
},
{
- "id": 10469,
+ "id": 10804,
"properties": {
"facing": "north",
"half": "top",
@@ -186831,7 +193030,7 @@
}
},
{
- "id": 10470,
+ "id": 10805,
"properties": {
"facing": "north",
"half": "top",
@@ -186840,7 +193039,7 @@
}
},
{
- "id": 10471,
+ "id": 10806,
"properties": {
"facing": "north",
"half": "top",
@@ -186849,7 +193048,7 @@
}
},
{
- "id": 10472,
+ "id": 10807,
"properties": {
"facing": "north",
"half": "top",
@@ -186858,7 +193057,7 @@
}
},
{
- "id": 10473,
+ "id": 10808,
"properties": {
"facing": "north",
"half": "top",
@@ -186867,7 +193066,7 @@
}
},
{
- "id": 10474,
+ "id": 10809,
"properties": {
"facing": "north",
"half": "top",
@@ -186876,7 +193075,7 @@
}
},
{
- "id": 10475,
+ "id": 10810,
"properties": {
"facing": "north",
"half": "top",
@@ -186885,7 +193084,7 @@
}
},
{
- "id": 10476,
+ "id": 10811,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186895,7 +193094,7 @@
},
{
"default": true,
- "id": 10477,
+ "id": 10812,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186904,7 +193103,7 @@
}
},
{
- "id": 10478,
+ "id": 10813,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186913,7 +193112,7 @@
}
},
{
- "id": 10479,
+ "id": 10814,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186922,7 +193121,7 @@
}
},
{
- "id": 10480,
+ "id": 10815,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186931,7 +193130,7 @@
}
},
{
- "id": 10481,
+ "id": 10816,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186940,7 +193139,7 @@
}
},
{
- "id": 10482,
+ "id": 10817,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186949,7 +193148,7 @@
}
},
{
- "id": 10483,
+ "id": 10818,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186958,7 +193157,7 @@
}
},
{
- "id": 10484,
+ "id": 10819,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186967,7 +193166,7 @@
}
},
{
- "id": 10485,
+ "id": 10820,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186976,7 +193175,7 @@
}
},
{
- "id": 10486,
+ "id": 10821,
"properties": {
"facing": "south",
"half": "top",
@@ -186985,7 +193184,7 @@
}
},
{
- "id": 10487,
+ "id": 10822,
"properties": {
"facing": "south",
"half": "top",
@@ -186994,7 +193193,7 @@
}
},
{
- "id": 10488,
+ "id": 10823,
"properties": {
"facing": "south",
"half": "top",
@@ -187003,7 +193202,7 @@
}
},
{
- "id": 10489,
+ "id": 10824,
"properties": {
"facing": "south",
"half": "top",
@@ -187012,7 +193211,7 @@
}
},
{
- "id": 10490,
+ "id": 10825,
"properties": {
"facing": "south",
"half": "top",
@@ -187021,7 +193220,7 @@
}
},
{
- "id": 10491,
+ "id": 10826,
"properties": {
"facing": "south",
"half": "top",
@@ -187030,7 +193229,7 @@
}
},
{
- "id": 10492,
+ "id": 10827,
"properties": {
"facing": "south",
"half": "top",
@@ -187039,7 +193238,7 @@
}
},
{
- "id": 10493,
+ "id": 10828,
"properties": {
"facing": "south",
"half": "top",
@@ -187048,7 +193247,7 @@
}
},
{
- "id": 10494,
+ "id": 10829,
"properties": {
"facing": "south",
"half": "top",
@@ -187057,7 +193256,7 @@
}
},
{
- "id": 10495,
+ "id": 10830,
"properties": {
"facing": "south",
"half": "top",
@@ -187066,7 +193265,7 @@
}
},
{
- "id": 10496,
+ "id": 10831,
"properties": {
"facing": "south",
"half": "bottom",
@@ -187075,7 +193274,7 @@
}
},
{
- "id": 10497,
+ "id": 10832,
"properties": {
"facing": "south",
"half": "bottom",
@@ -187084,7 +193283,7 @@
}
},
{
- "id": 10498,
+ "id": 10833,
"properties": {
"facing": "south",
"half": "bottom",
@@ -187093,7 +193292,7 @@
}
},
{
- "id": 10499,
+ "id": 10834,
"properties": {
"facing": "south",
"half": "bottom",
@@ -187102,7 +193301,7 @@
}
},
{
- "id": 10500,
+ "id": 10835,
"properties": {
"facing": "south",
"half": "bottom",
@@ -187111,7 +193310,7 @@
}
},
{
- "id": 10501,
+ "id": 10836,
"properties": {
"facing": "south",
"half": "bottom",
@@ -187120,7 +193319,7 @@
}
},
{
- "id": 10502,
+ "id": 10837,
"properties": {
"facing": "south",
"half": "bottom",
@@ -187129,7 +193328,7 @@
}
},
{
- "id": 10503,
+ "id": 10838,
"properties": {
"facing": "south",
"half": "bottom",
@@ -187138,7 +193337,7 @@
}
},
{
- "id": 10504,
+ "id": 10839,
"properties": {
"facing": "south",
"half": "bottom",
@@ -187147,7 +193346,7 @@
}
},
{
- "id": 10505,
+ "id": 10840,
"properties": {
"facing": "south",
"half": "bottom",
@@ -187156,7 +193355,7 @@
}
},
{
- "id": 10506,
+ "id": 10841,
"properties": {
"facing": "west",
"half": "top",
@@ -187165,7 +193364,7 @@
}
},
{
- "id": 10507,
+ "id": 10842,
"properties": {
"facing": "west",
"half": "top",
@@ -187174,7 +193373,7 @@
}
},
{
- "id": 10508,
+ "id": 10843,
"properties": {
"facing": "west",
"half": "top",
@@ -187183,7 +193382,7 @@
}
},
{
- "id": 10509,
+ "id": 10844,
"properties": {
"facing": "west",
"half": "top",
@@ -187192,7 +193391,7 @@
}
},
{
- "id": 10510,
+ "id": 10845,
"properties": {
"facing": "west",
"half": "top",
@@ -187201,7 +193400,7 @@
}
},
{
- "id": 10511,
+ "id": 10846,
"properties": {
"facing": "west",
"half": "top",
@@ -187210,7 +193409,7 @@
}
},
{
- "id": 10512,
+ "id": 10847,
"properties": {
"facing": "west",
"half": "top",
@@ -187219,7 +193418,7 @@
}
},
{
- "id": 10513,
+ "id": 10848,
"properties": {
"facing": "west",
"half": "top",
@@ -187228,7 +193427,7 @@
}
},
{
- "id": 10514,
+ "id": 10849,
"properties": {
"facing": "west",
"half": "top",
@@ -187237,7 +193436,7 @@
}
},
{
- "id": 10515,
+ "id": 10850,
"properties": {
"facing": "west",
"half": "top",
@@ -187246,7 +193445,7 @@
}
},
{
- "id": 10516,
+ "id": 10851,
"properties": {
"facing": "west",
"half": "bottom",
@@ -187255,7 +193454,7 @@
}
},
{
- "id": 10517,
+ "id": 10852,
"properties": {
"facing": "west",
"half": "bottom",
@@ -187264,7 +193463,7 @@
}
},
{
- "id": 10518,
+ "id": 10853,
"properties": {
"facing": "west",
"half": "bottom",
@@ -187273,7 +193472,7 @@
}
},
{
- "id": 10519,
+ "id": 10854,
"properties": {
"facing": "west",
"half": "bottom",
@@ -187282,7 +193481,7 @@
}
},
{
- "id": 10520,
+ "id": 10855,
"properties": {
"facing": "west",
"half": "bottom",
@@ -187291,7 +193490,7 @@
}
},
{
- "id": 10521,
+ "id": 10856,
"properties": {
"facing": "west",
"half": "bottom",
@@ -187300,7 +193499,7 @@
}
},
{
- "id": 10522,
+ "id": 10857,
"properties": {
"facing": "west",
"half": "bottom",
@@ -187309,7 +193508,7 @@
}
},
{
- "id": 10523,
+ "id": 10858,
"properties": {
"facing": "west",
"half": "bottom",
@@ -187318,7 +193517,7 @@
}
},
{
- "id": 10524,
+ "id": 10859,
"properties": {
"facing": "west",
"half": "bottom",
@@ -187327,7 +193526,7 @@
}
},
{
- "id": 10525,
+ "id": 10860,
"properties": {
"facing": "west",
"half": "bottom",
@@ -187336,7 +193535,7 @@
}
},
{
- "id": 10526,
+ "id": 10861,
"properties": {
"facing": "east",
"half": "top",
@@ -187345,7 +193544,7 @@
}
},
{
- "id": 10527,
+ "id": 10862,
"properties": {
"facing": "east",
"half": "top",
@@ -187354,7 +193553,7 @@
}
},
{
- "id": 10528,
+ "id": 10863,
"properties": {
"facing": "east",
"half": "top",
@@ -187363,7 +193562,7 @@
}
},
{
- "id": 10529,
+ "id": 10864,
"properties": {
"facing": "east",
"half": "top",
@@ -187372,7 +193571,7 @@
}
},
{
- "id": 10530,
+ "id": 10865,
"properties": {
"facing": "east",
"half": "top",
@@ -187381,7 +193580,7 @@
}
},
{
- "id": 10531,
+ "id": 10866,
"properties": {
"facing": "east",
"half": "top",
@@ -187390,7 +193589,7 @@
}
},
{
- "id": 10532,
+ "id": 10867,
"properties": {
"facing": "east",
"half": "top",
@@ -187399,7 +193598,7 @@
}
},
{
- "id": 10533,
+ "id": 10868,
"properties": {
"facing": "east",
"half": "top",
@@ -187408,7 +193607,7 @@
}
},
{
- "id": 10534,
+ "id": 10869,
"properties": {
"facing": "east",
"half": "top",
@@ -187417,7 +193616,7 @@
}
},
{
- "id": 10535,
+ "id": 10870,
"properties": {
"facing": "east",
"half": "top",
@@ -187426,7 +193625,7 @@
}
},
{
- "id": 10536,
+ "id": 10871,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187435,7 +193634,7 @@
}
},
{
- "id": 10537,
+ "id": 10872,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187444,7 +193643,7 @@
}
},
{
- "id": 10538,
+ "id": 10873,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187453,7 +193652,7 @@
}
},
{
- "id": 10539,
+ "id": 10874,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187462,7 +193661,7 @@
}
},
{
- "id": 10540,
+ "id": 10875,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187471,7 +193670,7 @@
}
},
{
- "id": 10541,
+ "id": 10876,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187480,7 +193679,7 @@
}
},
{
- "id": 10542,
+ "id": 10877,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187489,7 +193688,7 @@
}
},
{
- "id": 10543,
+ "id": 10878,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187498,7 +193697,7 @@
}
},
{
- "id": 10544,
+ "id": 10879,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187507,7 +193706,7 @@
}
},
{
- "id": 10545,
+ "id": 10880,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187554,7 +193753,7 @@
},
"states": [
{
- "id": 14484,
+ "id": 14953,
"properties": {
"east": "none",
"north": "none",
@@ -187565,7 +193764,7 @@
}
},
{
- "id": 14485,
+ "id": 14954,
"properties": {
"east": "none",
"north": "none",
@@ -187576,7 +193775,7 @@
}
},
{
- "id": 14486,
+ "id": 14955,
"properties": {
"east": "none",
"north": "none",
@@ -187588,7 +193787,7 @@
},
{
"default": true,
- "id": 14487,
+ "id": 14956,
"properties": {
"east": "none",
"north": "none",
@@ -187599,7 +193798,7 @@
}
},
{
- "id": 14488,
+ "id": 14957,
"properties": {
"east": "none",
"north": "none",
@@ -187610,7 +193809,7 @@
}
},
{
- "id": 14489,
+ "id": 14958,
"properties": {
"east": "none",
"north": "none",
@@ -187621,7 +193820,7 @@
}
},
{
- "id": 14490,
+ "id": 14959,
"properties": {
"east": "none",
"north": "none",
@@ -187632,7 +193831,7 @@
}
},
{
- "id": 14491,
+ "id": 14960,
"properties": {
"east": "none",
"north": "none",
@@ -187643,7 +193842,7 @@
}
},
{
- "id": 14492,
+ "id": 14961,
"properties": {
"east": "none",
"north": "none",
@@ -187654,7 +193853,7 @@
}
},
{
- "id": 14493,
+ "id": 14962,
"properties": {
"east": "none",
"north": "none",
@@ -187665,7 +193864,7 @@
}
},
{
- "id": 14494,
+ "id": 14963,
"properties": {
"east": "none",
"north": "none",
@@ -187676,7 +193875,7 @@
}
},
{
- "id": 14495,
+ "id": 14964,
"properties": {
"east": "none",
"north": "none",
@@ -187687,7 +193886,7 @@
}
},
{
- "id": 14496,
+ "id": 14965,
"properties": {
"east": "none",
"north": "none",
@@ -187698,7 +193897,7 @@
}
},
{
- "id": 14497,
+ "id": 14966,
"properties": {
"east": "none",
"north": "none",
@@ -187709,7 +193908,7 @@
}
},
{
- "id": 14498,
+ "id": 14967,
"properties": {
"east": "none",
"north": "none",
@@ -187720,7 +193919,7 @@
}
},
{
- "id": 14499,
+ "id": 14968,
"properties": {
"east": "none",
"north": "none",
@@ -187731,7 +193930,7 @@
}
},
{
- "id": 14500,
+ "id": 14969,
"properties": {
"east": "none",
"north": "none",
@@ -187742,7 +193941,7 @@
}
},
{
- "id": 14501,
+ "id": 14970,
"properties": {
"east": "none",
"north": "none",
@@ -187753,7 +193952,7 @@
}
},
{
- "id": 14502,
+ "id": 14971,
"properties": {
"east": "none",
"north": "none",
@@ -187764,7 +193963,7 @@
}
},
{
- "id": 14503,
+ "id": 14972,
"properties": {
"east": "none",
"north": "none",
@@ -187775,7 +193974,7 @@
}
},
{
- "id": 14504,
+ "id": 14973,
"properties": {
"east": "none",
"north": "none",
@@ -187786,7 +193985,7 @@
}
},
{
- "id": 14505,
+ "id": 14974,
"properties": {
"east": "none",
"north": "none",
@@ -187797,7 +193996,7 @@
}
},
{
- "id": 14506,
+ "id": 14975,
"properties": {
"east": "none",
"north": "none",
@@ -187808,7 +194007,7 @@
}
},
{
- "id": 14507,
+ "id": 14976,
"properties": {
"east": "none",
"north": "none",
@@ -187819,7 +194018,7 @@
}
},
{
- "id": 14508,
+ "id": 14977,
"properties": {
"east": "none",
"north": "none",
@@ -187830,7 +194029,7 @@
}
},
{
- "id": 14509,
+ "id": 14978,
"properties": {
"east": "none",
"north": "none",
@@ -187841,7 +194040,7 @@
}
},
{
- "id": 14510,
+ "id": 14979,
"properties": {
"east": "none",
"north": "none",
@@ -187852,7 +194051,7 @@
}
},
{
- "id": 14511,
+ "id": 14980,
"properties": {
"east": "none",
"north": "none",
@@ -187863,7 +194062,7 @@
}
},
{
- "id": 14512,
+ "id": 14981,
"properties": {
"east": "none",
"north": "none",
@@ -187874,7 +194073,7 @@
}
},
{
- "id": 14513,
+ "id": 14982,
"properties": {
"east": "none",
"north": "none",
@@ -187885,7 +194084,7 @@
}
},
{
- "id": 14514,
+ "id": 14983,
"properties": {
"east": "none",
"north": "none",
@@ -187896,7 +194095,7 @@
}
},
{
- "id": 14515,
+ "id": 14984,
"properties": {
"east": "none",
"north": "none",
@@ -187907,7 +194106,7 @@
}
},
{
- "id": 14516,
+ "id": 14985,
"properties": {
"east": "none",
"north": "none",
@@ -187918,7 +194117,7 @@
}
},
{
- "id": 14517,
+ "id": 14986,
"properties": {
"east": "none",
"north": "none",
@@ -187929,7 +194128,7 @@
}
},
{
- "id": 14518,
+ "id": 14987,
"properties": {
"east": "none",
"north": "none",
@@ -187940,7 +194139,7 @@
}
},
{
- "id": 14519,
+ "id": 14988,
"properties": {
"east": "none",
"north": "none",
@@ -187951,7 +194150,7 @@
}
},
{
- "id": 14520,
+ "id": 14989,
"properties": {
"east": "none",
"north": "low",
@@ -187962,7 +194161,7 @@
}
},
{
- "id": 14521,
+ "id": 14990,
"properties": {
"east": "none",
"north": "low",
@@ -187973,7 +194172,7 @@
}
},
{
- "id": 14522,
+ "id": 14991,
"properties": {
"east": "none",
"north": "low",
@@ -187984,7 +194183,7 @@
}
},
{
- "id": 14523,
+ "id": 14992,
"properties": {
"east": "none",
"north": "low",
@@ -187995,7 +194194,7 @@
}
},
{
- "id": 14524,
+ "id": 14993,
"properties": {
"east": "none",
"north": "low",
@@ -188006,7 +194205,7 @@
}
},
{
- "id": 14525,
+ "id": 14994,
"properties": {
"east": "none",
"north": "low",
@@ -188017,7 +194216,7 @@
}
},
{
- "id": 14526,
+ "id": 14995,
"properties": {
"east": "none",
"north": "low",
@@ -188028,7 +194227,7 @@
}
},
{
- "id": 14527,
+ "id": 14996,
"properties": {
"east": "none",
"north": "low",
@@ -188039,7 +194238,7 @@
}
},
{
- "id": 14528,
+ "id": 14997,
"properties": {
"east": "none",
"north": "low",
@@ -188050,7 +194249,7 @@
}
},
{
- "id": 14529,
+ "id": 14998,
"properties": {
"east": "none",
"north": "low",
@@ -188061,7 +194260,7 @@
}
},
{
- "id": 14530,
+ "id": 14999,
"properties": {
"east": "none",
"north": "low",
@@ -188072,7 +194271,7 @@
}
},
{
- "id": 14531,
+ "id": 15000,
"properties": {
"east": "none",
"north": "low",
@@ -188083,7 +194282,7 @@
}
},
{
- "id": 14532,
+ "id": 15001,
"properties": {
"east": "none",
"north": "low",
@@ -188094,7 +194293,7 @@
}
},
{
- "id": 14533,
+ "id": 15002,
"properties": {
"east": "none",
"north": "low",
@@ -188105,7 +194304,7 @@
}
},
{
- "id": 14534,
+ "id": 15003,
"properties": {
"east": "none",
"north": "low",
@@ -188116,7 +194315,7 @@
}
},
{
- "id": 14535,
+ "id": 15004,
"properties": {
"east": "none",
"north": "low",
@@ -188127,7 +194326,7 @@
}
},
{
- "id": 14536,
+ "id": 15005,
"properties": {
"east": "none",
"north": "low",
@@ -188138,7 +194337,7 @@
}
},
{
- "id": 14537,
+ "id": 15006,
"properties": {
"east": "none",
"north": "low",
@@ -188149,7 +194348,7 @@
}
},
{
- "id": 14538,
+ "id": 15007,
"properties": {
"east": "none",
"north": "low",
@@ -188160,7 +194359,7 @@
}
},
{
- "id": 14539,
+ "id": 15008,
"properties": {
"east": "none",
"north": "low",
@@ -188171,7 +194370,7 @@
}
},
{
- "id": 14540,
+ "id": 15009,
"properties": {
"east": "none",
"north": "low",
@@ -188182,7 +194381,7 @@
}
},
{
- "id": 14541,
+ "id": 15010,
"properties": {
"east": "none",
"north": "low",
@@ -188193,7 +194392,7 @@
}
},
{
- "id": 14542,
+ "id": 15011,
"properties": {
"east": "none",
"north": "low",
@@ -188204,7 +194403,7 @@
}
},
{
- "id": 14543,
+ "id": 15012,
"properties": {
"east": "none",
"north": "low",
@@ -188215,7 +194414,7 @@
}
},
{
- "id": 14544,
+ "id": 15013,
"properties": {
"east": "none",
"north": "low",
@@ -188226,7 +194425,7 @@
}
},
{
- "id": 14545,
+ "id": 15014,
"properties": {
"east": "none",
"north": "low",
@@ -188237,7 +194436,7 @@
}
},
{
- "id": 14546,
+ "id": 15015,
"properties": {
"east": "none",
"north": "low",
@@ -188248,7 +194447,7 @@
}
},
{
- "id": 14547,
+ "id": 15016,
"properties": {
"east": "none",
"north": "low",
@@ -188259,7 +194458,7 @@
}
},
{
- "id": 14548,
+ "id": 15017,
"properties": {
"east": "none",
"north": "low",
@@ -188270,7 +194469,7 @@
}
},
{
- "id": 14549,
+ "id": 15018,
"properties": {
"east": "none",
"north": "low",
@@ -188281,7 +194480,7 @@
}
},
{
- "id": 14550,
+ "id": 15019,
"properties": {
"east": "none",
"north": "low",
@@ -188292,7 +194491,7 @@
}
},
{
- "id": 14551,
+ "id": 15020,
"properties": {
"east": "none",
"north": "low",
@@ -188303,7 +194502,7 @@
}
},
{
- "id": 14552,
+ "id": 15021,
"properties": {
"east": "none",
"north": "low",
@@ -188314,7 +194513,7 @@
}
},
{
- "id": 14553,
+ "id": 15022,
"properties": {
"east": "none",
"north": "low",
@@ -188325,7 +194524,7 @@
}
},
{
- "id": 14554,
+ "id": 15023,
"properties": {
"east": "none",
"north": "low",
@@ -188336,7 +194535,7 @@
}
},
{
- "id": 14555,
+ "id": 15024,
"properties": {
"east": "none",
"north": "low",
@@ -188347,7 +194546,7 @@
}
},
{
- "id": 14556,
+ "id": 15025,
"properties": {
"east": "none",
"north": "tall",
@@ -188358,7 +194557,7 @@
}
},
{
- "id": 14557,
+ "id": 15026,
"properties": {
"east": "none",
"north": "tall",
@@ -188369,7 +194568,7 @@
}
},
{
- "id": 14558,
+ "id": 15027,
"properties": {
"east": "none",
"north": "tall",
@@ -188380,7 +194579,7 @@
}
},
{
- "id": 14559,
+ "id": 15028,
"properties": {
"east": "none",
"north": "tall",
@@ -188391,7 +194590,7 @@
}
},
{
- "id": 14560,
+ "id": 15029,
"properties": {
"east": "none",
"north": "tall",
@@ -188402,7 +194601,7 @@
}
},
{
- "id": 14561,
+ "id": 15030,
"properties": {
"east": "none",
"north": "tall",
@@ -188413,7 +194612,7 @@
}
},
{
- "id": 14562,
+ "id": 15031,
"properties": {
"east": "none",
"north": "tall",
@@ -188424,7 +194623,7 @@
}
},
{
- "id": 14563,
+ "id": 15032,
"properties": {
"east": "none",
"north": "tall",
@@ -188435,7 +194634,7 @@
}
},
{
- "id": 14564,
+ "id": 15033,
"properties": {
"east": "none",
"north": "tall",
@@ -188446,7 +194645,7 @@
}
},
{
- "id": 14565,
+ "id": 15034,
"properties": {
"east": "none",
"north": "tall",
@@ -188457,7 +194656,7 @@
}
},
{
- "id": 14566,
+ "id": 15035,
"properties": {
"east": "none",
"north": "tall",
@@ -188468,7 +194667,7 @@
}
},
{
- "id": 14567,
+ "id": 15036,
"properties": {
"east": "none",
"north": "tall",
@@ -188479,7 +194678,7 @@
}
},
{
- "id": 14568,
+ "id": 15037,
"properties": {
"east": "none",
"north": "tall",
@@ -188490,7 +194689,7 @@
}
},
{
- "id": 14569,
+ "id": 15038,
"properties": {
"east": "none",
"north": "tall",
@@ -188501,7 +194700,7 @@
}
},
{
- "id": 14570,
+ "id": 15039,
"properties": {
"east": "none",
"north": "tall",
@@ -188512,7 +194711,7 @@
}
},
{
- "id": 14571,
+ "id": 15040,
"properties": {
"east": "none",
"north": "tall",
@@ -188523,7 +194722,7 @@
}
},
{
- "id": 14572,
+ "id": 15041,
"properties": {
"east": "none",
"north": "tall",
@@ -188534,7 +194733,7 @@
}
},
{
- "id": 14573,
+ "id": 15042,
"properties": {
"east": "none",
"north": "tall",
@@ -188545,7 +194744,7 @@
}
},
{
- "id": 14574,
+ "id": 15043,
"properties": {
"east": "none",
"north": "tall",
@@ -188556,7 +194755,7 @@
}
},
{
- "id": 14575,
+ "id": 15044,
"properties": {
"east": "none",
"north": "tall",
@@ -188567,7 +194766,7 @@
}
},
{
- "id": 14576,
+ "id": 15045,
"properties": {
"east": "none",
"north": "tall",
@@ -188578,7 +194777,7 @@
}
},
{
- "id": 14577,
+ "id": 15046,
"properties": {
"east": "none",
"north": "tall",
@@ -188589,7 +194788,7 @@
}
},
{
- "id": 14578,
+ "id": 15047,
"properties": {
"east": "none",
"north": "tall",
@@ -188600,7 +194799,7 @@
}
},
{
- "id": 14579,
+ "id": 15048,
"properties": {
"east": "none",
"north": "tall",
@@ -188611,7 +194810,7 @@
}
},
{
- "id": 14580,
+ "id": 15049,
"properties": {
"east": "none",
"north": "tall",
@@ -188622,7 +194821,7 @@
}
},
{
- "id": 14581,
+ "id": 15050,
"properties": {
"east": "none",
"north": "tall",
@@ -188633,7 +194832,7 @@
}
},
{
- "id": 14582,
+ "id": 15051,
"properties": {
"east": "none",
"north": "tall",
@@ -188644,7 +194843,7 @@
}
},
{
- "id": 14583,
+ "id": 15052,
"properties": {
"east": "none",
"north": "tall",
@@ -188655,7 +194854,7 @@
}
},
{
- "id": 14584,
+ "id": 15053,
"properties": {
"east": "none",
"north": "tall",
@@ -188666,7 +194865,7 @@
}
},
{
- "id": 14585,
+ "id": 15054,
"properties": {
"east": "none",
"north": "tall",
@@ -188677,7 +194876,7 @@
}
},
{
- "id": 14586,
+ "id": 15055,
"properties": {
"east": "none",
"north": "tall",
@@ -188688,7 +194887,7 @@
}
},
{
- "id": 14587,
+ "id": 15056,
"properties": {
"east": "none",
"north": "tall",
@@ -188699,7 +194898,7 @@
}
},
{
- "id": 14588,
+ "id": 15057,
"properties": {
"east": "none",
"north": "tall",
@@ -188710,7 +194909,7 @@
}
},
{
- "id": 14589,
+ "id": 15058,
"properties": {
"east": "none",
"north": "tall",
@@ -188721,7 +194920,7 @@
}
},
{
- "id": 14590,
+ "id": 15059,
"properties": {
"east": "none",
"north": "tall",
@@ -188732,7 +194931,7 @@
}
},
{
- "id": 14591,
+ "id": 15060,
"properties": {
"east": "none",
"north": "tall",
@@ -188743,7 +194942,7 @@
}
},
{
- "id": 14592,
+ "id": 15061,
"properties": {
"east": "low",
"north": "none",
@@ -188754,7 +194953,7 @@
}
},
{
- "id": 14593,
+ "id": 15062,
"properties": {
"east": "low",
"north": "none",
@@ -188765,7 +194964,7 @@
}
},
{
- "id": 14594,
+ "id": 15063,
"properties": {
"east": "low",
"north": "none",
@@ -188776,7 +194975,7 @@
}
},
{
- "id": 14595,
+ "id": 15064,
"properties": {
"east": "low",
"north": "none",
@@ -188787,7 +194986,7 @@
}
},
{
- "id": 14596,
+ "id": 15065,
"properties": {
"east": "low",
"north": "none",
@@ -188798,7 +194997,7 @@
}
},
{
- "id": 14597,
+ "id": 15066,
"properties": {
"east": "low",
"north": "none",
@@ -188809,7 +195008,7 @@
}
},
{
- "id": 14598,
+ "id": 15067,
"properties": {
"east": "low",
"north": "none",
@@ -188820,7 +195019,7 @@
}
},
{
- "id": 14599,
+ "id": 15068,
"properties": {
"east": "low",
"north": "none",
@@ -188831,7 +195030,7 @@
}
},
{
- "id": 14600,
+ "id": 15069,
"properties": {
"east": "low",
"north": "none",
@@ -188842,7 +195041,7 @@
}
},
{
- "id": 14601,
+ "id": 15070,
"properties": {
"east": "low",
"north": "none",
@@ -188853,7 +195052,7 @@
}
},
{
- "id": 14602,
+ "id": 15071,
"properties": {
"east": "low",
"north": "none",
@@ -188864,7 +195063,7 @@
}
},
{
- "id": 14603,
+ "id": 15072,
"properties": {
"east": "low",
"north": "none",
@@ -188875,7 +195074,7 @@
}
},
{
- "id": 14604,
+ "id": 15073,
"properties": {
"east": "low",
"north": "none",
@@ -188886,7 +195085,7 @@
}
},
{
- "id": 14605,
+ "id": 15074,
"properties": {
"east": "low",
"north": "none",
@@ -188897,7 +195096,7 @@
}
},
{
- "id": 14606,
+ "id": 15075,
"properties": {
"east": "low",
"north": "none",
@@ -188908,7 +195107,7 @@
}
},
{
- "id": 14607,
+ "id": 15076,
"properties": {
"east": "low",
"north": "none",
@@ -188919,7 +195118,7 @@
}
},
{
- "id": 14608,
+ "id": 15077,
"properties": {
"east": "low",
"north": "none",
@@ -188930,7 +195129,7 @@
}
},
{
- "id": 14609,
+ "id": 15078,
"properties": {
"east": "low",
"north": "none",
@@ -188941,7 +195140,7 @@
}
},
{
- "id": 14610,
+ "id": 15079,
"properties": {
"east": "low",
"north": "none",
@@ -188952,7 +195151,7 @@
}
},
{
- "id": 14611,
+ "id": 15080,
"properties": {
"east": "low",
"north": "none",
@@ -188963,7 +195162,7 @@
}
},
{
- "id": 14612,
+ "id": 15081,
"properties": {
"east": "low",
"north": "none",
@@ -188974,7 +195173,7 @@
}
},
{
- "id": 14613,
+ "id": 15082,
"properties": {
"east": "low",
"north": "none",
@@ -188985,7 +195184,7 @@
}
},
{
- "id": 14614,
+ "id": 15083,
"properties": {
"east": "low",
"north": "none",
@@ -188996,7 +195195,7 @@
}
},
{
- "id": 14615,
+ "id": 15084,
"properties": {
"east": "low",
"north": "none",
@@ -189007,7 +195206,7 @@
}
},
{
- "id": 14616,
+ "id": 15085,
"properties": {
"east": "low",
"north": "none",
@@ -189018,7 +195217,7 @@
}
},
{
- "id": 14617,
+ "id": 15086,
"properties": {
"east": "low",
"north": "none",
@@ -189029,7 +195228,7 @@
}
},
{
- "id": 14618,
+ "id": 15087,
"properties": {
"east": "low",
"north": "none",
@@ -189040,7 +195239,7 @@
}
},
{
- "id": 14619,
+ "id": 15088,
"properties": {
"east": "low",
"north": "none",
@@ -189051,7 +195250,7 @@
}
},
{
- "id": 14620,
+ "id": 15089,
"properties": {
"east": "low",
"north": "none",
@@ -189062,7 +195261,7 @@
}
},
{
- "id": 14621,
+ "id": 15090,
"properties": {
"east": "low",
"north": "none",
@@ -189073,7 +195272,7 @@
}
},
{
- "id": 14622,
+ "id": 15091,
"properties": {
"east": "low",
"north": "none",
@@ -189084,7 +195283,7 @@
}
},
{
- "id": 14623,
+ "id": 15092,
"properties": {
"east": "low",
"north": "none",
@@ -189095,7 +195294,7 @@
}
},
{
- "id": 14624,
+ "id": 15093,
"properties": {
"east": "low",
"north": "none",
@@ -189106,7 +195305,7 @@
}
},
{
- "id": 14625,
+ "id": 15094,
"properties": {
"east": "low",
"north": "none",
@@ -189117,7 +195316,7 @@
}
},
{
- "id": 14626,
+ "id": 15095,
"properties": {
"east": "low",
"north": "none",
@@ -189128,7 +195327,7 @@
}
},
{
- "id": 14627,
+ "id": 15096,
"properties": {
"east": "low",
"north": "none",
@@ -189139,7 +195338,7 @@
}
},
{
- "id": 14628,
+ "id": 15097,
"properties": {
"east": "low",
"north": "low",
@@ -189150,7 +195349,7 @@
}
},
{
- "id": 14629,
+ "id": 15098,
"properties": {
"east": "low",
"north": "low",
@@ -189161,7 +195360,7 @@
}
},
{
- "id": 14630,
+ "id": 15099,
"properties": {
"east": "low",
"north": "low",
@@ -189172,7 +195371,7 @@
}
},
{
- "id": 14631,
+ "id": 15100,
"properties": {
"east": "low",
"north": "low",
@@ -189183,7 +195382,7 @@
}
},
{
- "id": 14632,
+ "id": 15101,
"properties": {
"east": "low",
"north": "low",
@@ -189194,7 +195393,7 @@
}
},
{
- "id": 14633,
+ "id": 15102,
"properties": {
"east": "low",
"north": "low",
@@ -189205,7 +195404,7 @@
}
},
{
- "id": 14634,
+ "id": 15103,
"properties": {
"east": "low",
"north": "low",
@@ -189216,7 +195415,7 @@
}
},
{
- "id": 14635,
+ "id": 15104,
"properties": {
"east": "low",
"north": "low",
@@ -189227,7 +195426,7 @@
}
},
{
- "id": 14636,
+ "id": 15105,
"properties": {
"east": "low",
"north": "low",
@@ -189238,7 +195437,7 @@
}
},
{
- "id": 14637,
+ "id": 15106,
"properties": {
"east": "low",
"north": "low",
@@ -189249,7 +195448,7 @@
}
},
{
- "id": 14638,
+ "id": 15107,
"properties": {
"east": "low",
"north": "low",
@@ -189260,7 +195459,7 @@
}
},
{
- "id": 14639,
+ "id": 15108,
"properties": {
"east": "low",
"north": "low",
@@ -189271,7 +195470,7 @@
}
},
{
- "id": 14640,
+ "id": 15109,
"properties": {
"east": "low",
"north": "low",
@@ -189282,7 +195481,7 @@
}
},
{
- "id": 14641,
+ "id": 15110,
"properties": {
"east": "low",
"north": "low",
@@ -189293,7 +195492,7 @@
}
},
{
- "id": 14642,
+ "id": 15111,
"properties": {
"east": "low",
"north": "low",
@@ -189304,7 +195503,7 @@
}
},
{
- "id": 14643,
+ "id": 15112,
"properties": {
"east": "low",
"north": "low",
@@ -189315,7 +195514,7 @@
}
},
{
- "id": 14644,
+ "id": 15113,
"properties": {
"east": "low",
"north": "low",
@@ -189326,7 +195525,7 @@
}
},
{
- "id": 14645,
+ "id": 15114,
"properties": {
"east": "low",
"north": "low",
@@ -189337,7 +195536,7 @@
}
},
{
- "id": 14646,
+ "id": 15115,
"properties": {
"east": "low",
"north": "low",
@@ -189348,7 +195547,7 @@
}
},
{
- "id": 14647,
+ "id": 15116,
"properties": {
"east": "low",
"north": "low",
@@ -189359,7 +195558,7 @@
}
},
{
- "id": 14648,
+ "id": 15117,
"properties": {
"east": "low",
"north": "low",
@@ -189370,7 +195569,7 @@
}
},
{
- "id": 14649,
+ "id": 15118,
"properties": {
"east": "low",
"north": "low",
@@ -189381,7 +195580,7 @@
}
},
{
- "id": 14650,
+ "id": 15119,
"properties": {
"east": "low",
"north": "low",
@@ -189392,7 +195591,7 @@
}
},
{
- "id": 14651,
+ "id": 15120,
"properties": {
"east": "low",
"north": "low",
@@ -189403,7 +195602,7 @@
}
},
{
- "id": 14652,
+ "id": 15121,
"properties": {
"east": "low",
"north": "low",
@@ -189414,7 +195613,7 @@
}
},
{
- "id": 14653,
+ "id": 15122,
"properties": {
"east": "low",
"north": "low",
@@ -189425,7 +195624,7 @@
}
},
{
- "id": 14654,
+ "id": 15123,
"properties": {
"east": "low",
"north": "low",
@@ -189436,7 +195635,7 @@
}
},
{
- "id": 14655,
+ "id": 15124,
"properties": {
"east": "low",
"north": "low",
@@ -189447,7 +195646,7 @@
}
},
{
- "id": 14656,
+ "id": 15125,
"properties": {
"east": "low",
"north": "low",
@@ -189458,7 +195657,7 @@
}
},
{
- "id": 14657,
+ "id": 15126,
"properties": {
"east": "low",
"north": "low",
@@ -189469,7 +195668,7 @@
}
},
{
- "id": 14658,
+ "id": 15127,
"properties": {
"east": "low",
"north": "low",
@@ -189480,7 +195679,7 @@
}
},
{
- "id": 14659,
+ "id": 15128,
"properties": {
"east": "low",
"north": "low",
@@ -189491,7 +195690,7 @@
}
},
{
- "id": 14660,
+ "id": 15129,
"properties": {
"east": "low",
"north": "low",
@@ -189502,7 +195701,7 @@
}
},
{
- "id": 14661,
+ "id": 15130,
"properties": {
"east": "low",
"north": "low",
@@ -189513,7 +195712,7 @@
}
},
{
- "id": 14662,
+ "id": 15131,
"properties": {
"east": "low",
"north": "low",
@@ -189524,7 +195723,7 @@
}
},
{
- "id": 14663,
+ "id": 15132,
"properties": {
"east": "low",
"north": "low",
@@ -189535,7 +195734,7 @@
}
},
{
- "id": 14664,
+ "id": 15133,
"properties": {
"east": "low",
"north": "tall",
@@ -189546,7 +195745,7 @@
}
},
{
- "id": 14665,
+ "id": 15134,
"properties": {
"east": "low",
"north": "tall",
@@ -189557,7 +195756,7 @@
}
},
{
- "id": 14666,
+ "id": 15135,
"properties": {
"east": "low",
"north": "tall",
@@ -189568,7 +195767,7 @@
}
},
{
- "id": 14667,
+ "id": 15136,
"properties": {
"east": "low",
"north": "tall",
@@ -189579,7 +195778,7 @@
}
},
{
- "id": 14668,
+ "id": 15137,
"properties": {
"east": "low",
"north": "tall",
@@ -189590,7 +195789,7 @@
}
},
{
- "id": 14669,
+ "id": 15138,
"properties": {
"east": "low",
"north": "tall",
@@ -189601,7 +195800,7 @@
}
},
{
- "id": 14670,
+ "id": 15139,
"properties": {
"east": "low",
"north": "tall",
@@ -189612,7 +195811,7 @@
}
},
{
- "id": 14671,
+ "id": 15140,
"properties": {
"east": "low",
"north": "tall",
@@ -189623,7 +195822,7 @@
}
},
{
- "id": 14672,
+ "id": 15141,
"properties": {
"east": "low",
"north": "tall",
@@ -189634,7 +195833,7 @@
}
},
{
- "id": 14673,
+ "id": 15142,
"properties": {
"east": "low",
"north": "tall",
@@ -189645,7 +195844,7 @@
}
},
{
- "id": 14674,
+ "id": 15143,
"properties": {
"east": "low",
"north": "tall",
@@ -189656,7 +195855,7 @@
}
},
{
- "id": 14675,
+ "id": 15144,
"properties": {
"east": "low",
"north": "tall",
@@ -189667,7 +195866,7 @@
}
},
{
- "id": 14676,
+ "id": 15145,
"properties": {
"east": "low",
"north": "tall",
@@ -189678,7 +195877,7 @@
}
},
{
- "id": 14677,
+ "id": 15146,
"properties": {
"east": "low",
"north": "tall",
@@ -189689,7 +195888,7 @@
}
},
{
- "id": 14678,
+ "id": 15147,
"properties": {
"east": "low",
"north": "tall",
@@ -189700,7 +195899,7 @@
}
},
{
- "id": 14679,
+ "id": 15148,
"properties": {
"east": "low",
"north": "tall",
@@ -189711,7 +195910,7 @@
}
},
{
- "id": 14680,
+ "id": 15149,
"properties": {
"east": "low",
"north": "tall",
@@ -189722,7 +195921,7 @@
}
},
{
- "id": 14681,
+ "id": 15150,
"properties": {
"east": "low",
"north": "tall",
@@ -189733,7 +195932,7 @@
}
},
{
- "id": 14682,
+ "id": 15151,
"properties": {
"east": "low",
"north": "tall",
@@ -189744,7 +195943,7 @@
}
},
{
- "id": 14683,
+ "id": 15152,
"properties": {
"east": "low",
"north": "tall",
@@ -189755,7 +195954,7 @@
}
},
{
- "id": 14684,
+ "id": 15153,
"properties": {
"east": "low",
"north": "tall",
@@ -189766,7 +195965,7 @@
}
},
{
- "id": 14685,
+ "id": 15154,
"properties": {
"east": "low",
"north": "tall",
@@ -189777,7 +195976,7 @@
}
},
{
- "id": 14686,
+ "id": 15155,
"properties": {
"east": "low",
"north": "tall",
@@ -189788,7 +195987,7 @@
}
},
{
- "id": 14687,
+ "id": 15156,
"properties": {
"east": "low",
"north": "tall",
@@ -189799,7 +195998,7 @@
}
},
{
- "id": 14688,
+ "id": 15157,
"properties": {
"east": "low",
"north": "tall",
@@ -189810,7 +196009,7 @@
}
},
{
- "id": 14689,
+ "id": 15158,
"properties": {
"east": "low",
"north": "tall",
@@ -189821,7 +196020,7 @@
}
},
{
- "id": 14690,
+ "id": 15159,
"properties": {
"east": "low",
"north": "tall",
@@ -189832,7 +196031,7 @@
}
},
{
- "id": 14691,
+ "id": 15160,
"properties": {
"east": "low",
"north": "tall",
@@ -189843,7 +196042,7 @@
}
},
{
- "id": 14692,
+ "id": 15161,
"properties": {
"east": "low",
"north": "tall",
@@ -189854,7 +196053,7 @@
}
},
{
- "id": 14693,
+ "id": 15162,
"properties": {
"east": "low",
"north": "tall",
@@ -189865,7 +196064,7 @@
}
},
{
- "id": 14694,
+ "id": 15163,
"properties": {
"east": "low",
"north": "tall",
@@ -189876,7 +196075,7 @@
}
},
{
- "id": 14695,
+ "id": 15164,
"properties": {
"east": "low",
"north": "tall",
@@ -189887,7 +196086,7 @@
}
},
{
- "id": 14696,
+ "id": 15165,
"properties": {
"east": "low",
"north": "tall",
@@ -189898,7 +196097,7 @@
}
},
{
- "id": 14697,
+ "id": 15166,
"properties": {
"east": "low",
"north": "tall",
@@ -189909,7 +196108,7 @@
}
},
{
- "id": 14698,
+ "id": 15167,
"properties": {
"east": "low",
"north": "tall",
@@ -189920,7 +196119,7 @@
}
},
{
- "id": 14699,
+ "id": 15168,
"properties": {
"east": "low",
"north": "tall",
@@ -189931,7 +196130,7 @@
}
},
{
- "id": 14700,
+ "id": 15169,
"properties": {
"east": "tall",
"north": "none",
@@ -189942,7 +196141,7 @@
}
},
{
- "id": 14701,
+ "id": 15170,
"properties": {
"east": "tall",
"north": "none",
@@ -189953,7 +196152,7 @@
}
},
{
- "id": 14702,
+ "id": 15171,
"properties": {
"east": "tall",
"north": "none",
@@ -189964,7 +196163,7 @@
}
},
{
- "id": 14703,
+ "id": 15172,
"properties": {
"east": "tall",
"north": "none",
@@ -189975,7 +196174,7 @@
}
},
{
- "id": 14704,
+ "id": 15173,
"properties": {
"east": "tall",
"north": "none",
@@ -189986,7 +196185,7 @@
}
},
{
- "id": 14705,
+ "id": 15174,
"properties": {
"east": "tall",
"north": "none",
@@ -189997,7 +196196,7 @@
}
},
{
- "id": 14706,
+ "id": 15175,
"properties": {
"east": "tall",
"north": "none",
@@ -190008,7 +196207,7 @@
}
},
{
- "id": 14707,
+ "id": 15176,
"properties": {
"east": "tall",
"north": "none",
@@ -190019,7 +196218,7 @@
}
},
{
- "id": 14708,
+ "id": 15177,
"properties": {
"east": "tall",
"north": "none",
@@ -190030,7 +196229,7 @@
}
},
{
- "id": 14709,
+ "id": 15178,
"properties": {
"east": "tall",
"north": "none",
@@ -190041,7 +196240,7 @@
}
},
{
- "id": 14710,
+ "id": 15179,
"properties": {
"east": "tall",
"north": "none",
@@ -190052,7 +196251,7 @@
}
},
{
- "id": 14711,
+ "id": 15180,
"properties": {
"east": "tall",
"north": "none",
@@ -190063,7 +196262,7 @@
}
},
{
- "id": 14712,
+ "id": 15181,
"properties": {
"east": "tall",
"north": "none",
@@ -190074,7 +196273,7 @@
}
},
{
- "id": 14713,
+ "id": 15182,
"properties": {
"east": "tall",
"north": "none",
@@ -190085,7 +196284,7 @@
}
},
{
- "id": 14714,
+ "id": 15183,
"properties": {
"east": "tall",
"north": "none",
@@ -190096,7 +196295,7 @@
}
},
{
- "id": 14715,
+ "id": 15184,
"properties": {
"east": "tall",
"north": "none",
@@ -190107,7 +196306,7 @@
}
},
{
- "id": 14716,
+ "id": 15185,
"properties": {
"east": "tall",
"north": "none",
@@ -190118,7 +196317,7 @@
}
},
{
- "id": 14717,
+ "id": 15186,
"properties": {
"east": "tall",
"north": "none",
@@ -190129,7 +196328,7 @@
}
},
{
- "id": 14718,
+ "id": 15187,
"properties": {
"east": "tall",
"north": "none",
@@ -190140,7 +196339,7 @@
}
},
{
- "id": 14719,
+ "id": 15188,
"properties": {
"east": "tall",
"north": "none",
@@ -190151,7 +196350,7 @@
}
},
{
- "id": 14720,
+ "id": 15189,
"properties": {
"east": "tall",
"north": "none",
@@ -190162,7 +196361,7 @@
}
},
{
- "id": 14721,
+ "id": 15190,
"properties": {
"east": "tall",
"north": "none",
@@ -190173,7 +196372,7 @@
}
},
{
- "id": 14722,
+ "id": 15191,
"properties": {
"east": "tall",
"north": "none",
@@ -190184,7 +196383,7 @@
}
},
{
- "id": 14723,
+ "id": 15192,
"properties": {
"east": "tall",
"north": "none",
@@ -190195,7 +196394,7 @@
}
},
{
- "id": 14724,
+ "id": 15193,
"properties": {
"east": "tall",
"north": "none",
@@ -190206,7 +196405,7 @@
}
},
{
- "id": 14725,
+ "id": 15194,
"properties": {
"east": "tall",
"north": "none",
@@ -190217,7 +196416,7 @@
}
},
{
- "id": 14726,
+ "id": 15195,
"properties": {
"east": "tall",
"north": "none",
@@ -190228,7 +196427,7 @@
}
},
{
- "id": 14727,
+ "id": 15196,
"properties": {
"east": "tall",
"north": "none",
@@ -190239,7 +196438,7 @@
}
},
{
- "id": 14728,
+ "id": 15197,
"properties": {
"east": "tall",
"north": "none",
@@ -190250,7 +196449,7 @@
}
},
{
- "id": 14729,
+ "id": 15198,
"properties": {
"east": "tall",
"north": "none",
@@ -190261,7 +196460,7 @@
}
},
{
- "id": 14730,
+ "id": 15199,
"properties": {
"east": "tall",
"north": "none",
@@ -190272,7 +196471,7 @@
}
},
{
- "id": 14731,
+ "id": 15200,
"properties": {
"east": "tall",
"north": "none",
@@ -190283,7 +196482,7 @@
}
},
{
- "id": 14732,
+ "id": 15201,
"properties": {
"east": "tall",
"north": "none",
@@ -190294,7 +196493,7 @@
}
},
{
- "id": 14733,
+ "id": 15202,
"properties": {
"east": "tall",
"north": "none",
@@ -190305,7 +196504,7 @@
}
},
{
- "id": 14734,
+ "id": 15203,
"properties": {
"east": "tall",
"north": "none",
@@ -190316,7 +196515,7 @@
}
},
{
- "id": 14735,
+ "id": 15204,
"properties": {
"east": "tall",
"north": "none",
@@ -190327,7 +196526,7 @@
}
},
{
- "id": 14736,
+ "id": 15205,
"properties": {
"east": "tall",
"north": "low",
@@ -190338,7 +196537,7 @@
}
},
{
- "id": 14737,
+ "id": 15206,
"properties": {
"east": "tall",
"north": "low",
@@ -190349,7 +196548,7 @@
}
},
{
- "id": 14738,
+ "id": 15207,
"properties": {
"east": "tall",
"north": "low",
@@ -190360,7 +196559,7 @@
}
},
{
- "id": 14739,
+ "id": 15208,
"properties": {
"east": "tall",
"north": "low",
@@ -190371,7 +196570,7 @@
}
},
{
- "id": 14740,
+ "id": 15209,
"properties": {
"east": "tall",
"north": "low",
@@ -190382,7 +196581,7 @@
}
},
{
- "id": 14741,
+ "id": 15210,
"properties": {
"east": "tall",
"north": "low",
@@ -190393,7 +196592,7 @@
}
},
{
- "id": 14742,
+ "id": 15211,
"properties": {
"east": "tall",
"north": "low",
@@ -190404,7 +196603,7 @@
}
},
{
- "id": 14743,
+ "id": 15212,
"properties": {
"east": "tall",
"north": "low",
@@ -190415,7 +196614,7 @@
}
},
{
- "id": 14744,
+ "id": 15213,
"properties": {
"east": "tall",
"north": "low",
@@ -190426,7 +196625,7 @@
}
},
{
- "id": 14745,
+ "id": 15214,
"properties": {
"east": "tall",
"north": "low",
@@ -190437,7 +196636,7 @@
}
},
{
- "id": 14746,
+ "id": 15215,
"properties": {
"east": "tall",
"north": "low",
@@ -190448,7 +196647,7 @@
}
},
{
- "id": 14747,
+ "id": 15216,
"properties": {
"east": "tall",
"north": "low",
@@ -190459,7 +196658,7 @@
}
},
{
- "id": 14748,
+ "id": 15217,
"properties": {
"east": "tall",
"north": "low",
@@ -190470,7 +196669,7 @@
}
},
{
- "id": 14749,
+ "id": 15218,
"properties": {
"east": "tall",
"north": "low",
@@ -190481,7 +196680,7 @@
}
},
{
- "id": 14750,
+ "id": 15219,
"properties": {
"east": "tall",
"north": "low",
@@ -190492,7 +196691,7 @@
}
},
{
- "id": 14751,
+ "id": 15220,
"properties": {
"east": "tall",
"north": "low",
@@ -190503,7 +196702,7 @@
}
},
{
- "id": 14752,
+ "id": 15221,
"properties": {
"east": "tall",
"north": "low",
@@ -190514,7 +196713,7 @@
}
},
{
- "id": 14753,
+ "id": 15222,
"properties": {
"east": "tall",
"north": "low",
@@ -190525,7 +196724,7 @@
}
},
{
- "id": 14754,
+ "id": 15223,
"properties": {
"east": "tall",
"north": "low",
@@ -190536,7 +196735,7 @@
}
},
{
- "id": 14755,
+ "id": 15224,
"properties": {
"east": "tall",
"north": "low",
@@ -190547,7 +196746,7 @@
}
},
{
- "id": 14756,
+ "id": 15225,
"properties": {
"east": "tall",
"north": "low",
@@ -190558,7 +196757,7 @@
}
},
{
- "id": 14757,
+ "id": 15226,
"properties": {
"east": "tall",
"north": "low",
@@ -190569,7 +196768,7 @@
}
},
{
- "id": 14758,
+ "id": 15227,
"properties": {
"east": "tall",
"north": "low",
@@ -190580,7 +196779,7 @@
}
},
{
- "id": 14759,
+ "id": 15228,
"properties": {
"east": "tall",
"north": "low",
@@ -190591,7 +196790,7 @@
}
},
{
- "id": 14760,
+ "id": 15229,
"properties": {
"east": "tall",
"north": "low",
@@ -190602,7 +196801,7 @@
}
},
{
- "id": 14761,
+ "id": 15230,
"properties": {
"east": "tall",
"north": "low",
@@ -190613,7 +196812,7 @@
}
},
{
- "id": 14762,
+ "id": 15231,
"properties": {
"east": "tall",
"north": "low",
@@ -190624,7 +196823,7 @@
}
},
{
- "id": 14763,
+ "id": 15232,
"properties": {
"east": "tall",
"north": "low",
@@ -190635,7 +196834,7 @@
}
},
{
- "id": 14764,
+ "id": 15233,
"properties": {
"east": "tall",
"north": "low",
@@ -190646,7 +196845,7 @@
}
},
{
- "id": 14765,
+ "id": 15234,
"properties": {
"east": "tall",
"north": "low",
@@ -190657,7 +196856,7 @@
}
},
{
- "id": 14766,
+ "id": 15235,
"properties": {
"east": "tall",
"north": "low",
@@ -190668,7 +196867,7 @@
}
},
{
- "id": 14767,
+ "id": 15236,
"properties": {
"east": "tall",
"north": "low",
@@ -190679,7 +196878,7 @@
}
},
{
- "id": 14768,
+ "id": 15237,
"properties": {
"east": "tall",
"north": "low",
@@ -190690,7 +196889,7 @@
}
},
{
- "id": 14769,
+ "id": 15238,
"properties": {
"east": "tall",
"north": "low",
@@ -190701,7 +196900,7 @@
}
},
{
- "id": 14770,
+ "id": 15239,
"properties": {
"east": "tall",
"north": "low",
@@ -190712,7 +196911,7 @@
}
},
{
- "id": 14771,
+ "id": 15240,
"properties": {
"east": "tall",
"north": "low",
@@ -190723,7 +196922,7 @@
}
},
{
- "id": 14772,
+ "id": 15241,
"properties": {
"east": "tall",
"north": "tall",
@@ -190734,7 +196933,7 @@
}
},
{
- "id": 14773,
+ "id": 15242,
"properties": {
"east": "tall",
"north": "tall",
@@ -190745,7 +196944,7 @@
}
},
{
- "id": 14774,
+ "id": 15243,
"properties": {
"east": "tall",
"north": "tall",
@@ -190756,7 +196955,7 @@
}
},
{
- "id": 14775,
+ "id": 15244,
"properties": {
"east": "tall",
"north": "tall",
@@ -190767,7 +196966,7 @@
}
},
{
- "id": 14776,
+ "id": 15245,
"properties": {
"east": "tall",
"north": "tall",
@@ -190778,7 +196977,7 @@
}
},
{
- "id": 14777,
+ "id": 15246,
"properties": {
"east": "tall",
"north": "tall",
@@ -190789,7 +196988,7 @@
}
},
{
- "id": 14778,
+ "id": 15247,
"properties": {
"east": "tall",
"north": "tall",
@@ -190800,7 +196999,7 @@
}
},
{
- "id": 14779,
+ "id": 15248,
"properties": {
"east": "tall",
"north": "tall",
@@ -190811,7 +197010,7 @@
}
},
{
- "id": 14780,
+ "id": 15249,
"properties": {
"east": "tall",
"north": "tall",
@@ -190822,7 +197021,7 @@
}
},
{
- "id": 14781,
+ "id": 15250,
"properties": {
"east": "tall",
"north": "tall",
@@ -190833,7 +197032,7 @@
}
},
{
- "id": 14782,
+ "id": 15251,
"properties": {
"east": "tall",
"north": "tall",
@@ -190844,7 +197043,7 @@
}
},
{
- "id": 14783,
+ "id": 15252,
"properties": {
"east": "tall",
"north": "tall",
@@ -190855,7 +197054,7 @@
}
},
{
- "id": 14784,
+ "id": 15253,
"properties": {
"east": "tall",
"north": "tall",
@@ -190866,7 +197065,7 @@
}
},
{
- "id": 14785,
+ "id": 15254,
"properties": {
"east": "tall",
"north": "tall",
@@ -190877,7 +197076,7 @@
}
},
{
- "id": 14786,
+ "id": 15255,
"properties": {
"east": "tall",
"north": "tall",
@@ -190888,7 +197087,7 @@
}
},
{
- "id": 14787,
+ "id": 15256,
"properties": {
"east": "tall",
"north": "tall",
@@ -190899,7 +197098,7 @@
}
},
{
- "id": 14788,
+ "id": 15257,
"properties": {
"east": "tall",
"north": "tall",
@@ -190910,7 +197109,7 @@
}
},
{
- "id": 14789,
+ "id": 15258,
"properties": {
"east": "tall",
"north": "tall",
@@ -190921,7 +197120,7 @@
}
},
{
- "id": 14790,
+ "id": 15259,
"properties": {
"east": "tall",
"north": "tall",
@@ -190932,7 +197131,7 @@
}
},
{
- "id": 14791,
+ "id": 15260,
"properties": {
"east": "tall",
"north": "tall",
@@ -190943,7 +197142,7 @@
}
},
{
- "id": 14792,
+ "id": 15261,
"properties": {
"east": "tall",
"north": "tall",
@@ -190954,7 +197153,7 @@
}
},
{
- "id": 14793,
+ "id": 15262,
"properties": {
"east": "tall",
"north": "tall",
@@ -190965,7 +197164,7 @@
}
},
{
- "id": 14794,
+ "id": 15263,
"properties": {
"east": "tall",
"north": "tall",
@@ -190976,7 +197175,7 @@
}
},
{
- "id": 14795,
+ "id": 15264,
"properties": {
"east": "tall",
"north": "tall",
@@ -190987,7 +197186,7 @@
}
},
{
- "id": 14796,
+ "id": 15265,
"properties": {
"east": "tall",
"north": "tall",
@@ -190998,7 +197197,7 @@
}
},
{
- "id": 14797,
+ "id": 15266,
"properties": {
"east": "tall",
"north": "tall",
@@ -191009,7 +197208,7 @@
}
},
{
- "id": 14798,
+ "id": 15267,
"properties": {
"east": "tall",
"north": "tall",
@@ -191020,7 +197219,7 @@
}
},
{
- "id": 14799,
+ "id": 15268,
"properties": {
"east": "tall",
"north": "tall",
@@ -191031,7 +197230,7 @@
}
},
{
- "id": 14800,
+ "id": 15269,
"properties": {
"east": "tall",
"north": "tall",
@@ -191042,7 +197241,7 @@
}
},
{
- "id": 14801,
+ "id": 15270,
"properties": {
"east": "tall",
"north": "tall",
@@ -191053,7 +197252,7 @@
}
},
{
- "id": 14802,
+ "id": 15271,
"properties": {
"east": "tall",
"north": "tall",
@@ -191064,7 +197263,7 @@
}
},
{
- "id": 14803,
+ "id": 15272,
"properties": {
"east": "tall",
"north": "tall",
@@ -191075,7 +197274,7 @@
}
},
{
- "id": 14804,
+ "id": 15273,
"properties": {
"east": "tall",
"north": "tall",
@@ -191086,7 +197285,7 @@
}
},
{
- "id": 14805,
+ "id": 15274,
"properties": {
"east": "tall",
"north": "tall",
@@ -191097,7 +197296,7 @@
}
},
{
- "id": 14806,
+ "id": 15275,
"properties": {
"east": "tall",
"north": "tall",
@@ -191108,7 +197307,7 @@
}
},
{
- "id": 14807,
+ "id": 15276,
"properties": {
"east": "tall",
"north": "tall",
@@ -191128,7 +197327,7 @@
"states": [
{
"default": true,
- "id": 6811
+ "id": 7041
}
]
},
@@ -191155,49 +197354,49 @@
"states": [
{
"default": true,
- "id": 6821,
+ "id": 7051,
"properties": {
"age": "0"
}
},
{
- "id": 6822,
+ "id": 7052,
"properties": {
"age": "1"
}
},
{
- "id": 6823,
+ "id": 7053,
"properties": {
"age": "2"
}
},
{
- "id": 6824,
+ "id": 7054,
"properties": {
"age": "3"
}
},
{
- "id": 6825,
+ "id": 7055,
"properties": {
"age": "4"
}
},
{
- "id": 6826,
+ "id": 7056,
"properties": {
"age": "5"
}
},
{
- "id": 6827,
+ "id": 7057,
"properties": {
"age": "6"
}
},
{
- "id": 6828,
+ "id": 7058,
"properties": {
"age": "7"
}
@@ -191233,97 +197432,97 @@
"states": [
{
"default": true,
- "id": 10919,
+ "id": 11254,
"properties": {
"rotation": "0"
}
},
{
- "id": 10920,
+ "id": 11255,
"properties": {
"rotation": "1"
}
},
{
- "id": 10921,
+ "id": 11256,
"properties": {
"rotation": "2"
}
},
{
- "id": 10922,
+ "id": 11257,
"properties": {
"rotation": "3"
}
},
{
- "id": 10923,
+ "id": 11258,
"properties": {
"rotation": "4"
}
},
{
- "id": 10924,
+ "id": 11259,
"properties": {
"rotation": "5"
}
},
{
- "id": 10925,
+ "id": 11260,
"properties": {
"rotation": "6"
}
},
{
- "id": 10926,
+ "id": 11261,
"properties": {
"rotation": "7"
}
},
{
- "id": 10927,
+ "id": 11262,
"properties": {
"rotation": "8"
}
},
{
- "id": 10928,
+ "id": 11263,
"properties": {
"rotation": "9"
}
},
{
- "id": 10929,
+ "id": 11264,
"properties": {
"rotation": "10"
}
},
{
- "id": 10930,
+ "id": 11265,
"properties": {
"rotation": "11"
}
},
{
- "id": 10931,
+ "id": 11266,
"properties": {
"rotation": "12"
}
},
{
- "id": 10932,
+ "id": 11267,
"properties": {
"rotation": "13"
}
},
{
- "id": 10933,
+ "id": 11268,
"properties": {
"rotation": "14"
}
},
{
- "id": 10934,
+ "id": 11269,
"properties": {
"rotation": "15"
}
@@ -191354,7 +197553,7 @@
},
"states": [
{
- "id": 1848,
+ "id": 1891,
"properties": {
"facing": "north",
"occupied": "true",
@@ -191362,7 +197561,7 @@
}
},
{
- "id": 1849,
+ "id": 1892,
"properties": {
"facing": "north",
"occupied": "true",
@@ -191370,7 +197569,7 @@
}
},
{
- "id": 1850,
+ "id": 1893,
"properties": {
"facing": "north",
"occupied": "false",
@@ -191379,7 +197578,7 @@
},
{
"default": true,
- "id": 1851,
+ "id": 1894,
"properties": {
"facing": "north",
"occupied": "false",
@@ -191387,7 +197586,7 @@
}
},
{
- "id": 1852,
+ "id": 1895,
"properties": {
"facing": "south",
"occupied": "true",
@@ -191395,7 +197594,7 @@
}
},
{
- "id": 1853,
+ "id": 1896,
"properties": {
"facing": "south",
"occupied": "true",
@@ -191403,7 +197602,7 @@
}
},
{
- "id": 1854,
+ "id": 1897,
"properties": {
"facing": "south",
"occupied": "false",
@@ -191411,7 +197610,7 @@
}
},
{
- "id": 1855,
+ "id": 1898,
"properties": {
"facing": "south",
"occupied": "false",
@@ -191419,7 +197618,7 @@
}
},
{
- "id": 1856,
+ "id": 1899,
"properties": {
"facing": "west",
"occupied": "true",
@@ -191427,7 +197626,7 @@
}
},
{
- "id": 1857,
+ "id": 1900,
"properties": {
"facing": "west",
"occupied": "true",
@@ -191435,7 +197634,7 @@
}
},
{
- "id": 1858,
+ "id": 1901,
"properties": {
"facing": "west",
"occupied": "false",
@@ -191443,7 +197642,7 @@
}
},
{
- "id": 1859,
+ "id": 1902,
"properties": {
"facing": "west",
"occupied": "false",
@@ -191451,7 +197650,7 @@
}
},
{
- "id": 1860,
+ "id": 1903,
"properties": {
"facing": "east",
"occupied": "true",
@@ -191459,7 +197658,7 @@
}
},
{
- "id": 1861,
+ "id": 1904,
"properties": {
"facing": "east",
"occupied": "true",
@@ -191467,7 +197666,7 @@
}
},
{
- "id": 1862,
+ "id": 1905,
"properties": {
"facing": "east",
"occupied": "false",
@@ -191475,7 +197674,7 @@
}
},
{
- "id": 1863,
+ "id": 1906,
"properties": {
"facing": "east",
"occupied": "false",
@@ -191507,7 +197706,7 @@
},
"states": [
{
- "id": 20901,
+ "id": 21370,
"properties": {
"candles": "1",
"lit": "true",
@@ -191515,7 +197714,7 @@
}
},
{
- "id": 20902,
+ "id": 21371,
"properties": {
"candles": "1",
"lit": "true",
@@ -191523,7 +197722,7 @@
}
},
{
- "id": 20903,
+ "id": 21372,
"properties": {
"candles": "1",
"lit": "false",
@@ -191532,7 +197731,7 @@
},
{
"default": true,
- "id": 20904,
+ "id": 21373,
"properties": {
"candles": "1",
"lit": "false",
@@ -191540,7 +197739,7 @@
}
},
{
- "id": 20905,
+ "id": 21374,
"properties": {
"candles": "2",
"lit": "true",
@@ -191548,7 +197747,7 @@
}
},
{
- "id": 20906,
+ "id": 21375,
"properties": {
"candles": "2",
"lit": "true",
@@ -191556,7 +197755,7 @@
}
},
{
- "id": 20907,
+ "id": 21376,
"properties": {
"candles": "2",
"lit": "false",
@@ -191564,7 +197763,7 @@
}
},
{
- "id": 20908,
+ "id": 21377,
"properties": {
"candles": "2",
"lit": "false",
@@ -191572,7 +197771,7 @@
}
},
{
- "id": 20909,
+ "id": 21378,
"properties": {
"candles": "3",
"lit": "true",
@@ -191580,7 +197779,7 @@
}
},
{
- "id": 20910,
+ "id": 21379,
"properties": {
"candles": "3",
"lit": "true",
@@ -191588,7 +197787,7 @@
}
},
{
- "id": 20911,
+ "id": 21380,
"properties": {
"candles": "3",
"lit": "false",
@@ -191596,7 +197795,7 @@
}
},
{
- "id": 20912,
+ "id": 21381,
"properties": {
"candles": "3",
"lit": "false",
@@ -191604,7 +197803,7 @@
}
},
{
- "id": 20913,
+ "id": 21382,
"properties": {
"candles": "4",
"lit": "true",
@@ -191612,7 +197811,7 @@
}
},
{
- "id": 20914,
+ "id": 21383,
"properties": {
"candles": "4",
"lit": "true",
@@ -191620,7 +197819,7 @@
}
},
{
- "id": 20915,
+ "id": 21384,
"properties": {
"candles": "4",
"lit": "false",
@@ -191628,7 +197827,7 @@
}
},
{
- "id": 20916,
+ "id": 21385,
"properties": {
"candles": "4",
"lit": "false",
@@ -191651,14 +197850,14 @@
},
"states": [
{
- "id": 21019,
+ "id": 21488,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 21020,
+ "id": 21489,
"properties": {
"lit": "false"
}
@@ -191674,7 +197873,7 @@
"states": [
{
"default": true,
- "id": 10738
+ "id": 11073
}
]
},
@@ -191686,7 +197885,7 @@
"states": [
{
"default": true,
- "id": 12738
+ "id": 13207
}
]
},
@@ -191699,7 +197898,7 @@
"states": [
{
"default": true,
- "id": 12754
+ "id": 13223
}
]
},
@@ -191719,25 +197918,25 @@
"states": [
{
"default": true,
- "id": 12704,
+ "id": 13173,
"properties": {
"facing": "north"
}
},
{
- "id": 12705,
+ "id": 13174,
"properties": {
"facing": "south"
}
},
{
- "id": 12706,
+ "id": 13175,
"properties": {
"facing": "west"
}
},
{
- "id": 12707,
+ "id": 13176,
"properties": {
"facing": "east"
}
@@ -191762,38 +197961,38 @@
},
"states": [
{
- "id": 12628,
+ "id": 13097,
"properties": {
"facing": "north"
}
},
{
- "id": 12629,
+ "id": 13098,
"properties": {
"facing": "east"
}
},
{
- "id": 12630,
+ "id": 13099,
"properties": {
"facing": "south"
}
},
{
- "id": 12631,
+ "id": 13100,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12632,
+ "id": 13101,
"properties": {
"facing": "up"
}
},
{
- "id": 12633,
+ "id": 13102,
"properties": {
"facing": "down"
}
@@ -191809,7 +198008,7 @@
"states": [
{
"default": true,
- "id": 5955
+ "id": 6121
}
]
},
@@ -191843,7 +198042,7 @@
},
"states": [
{
- "id": 9692,
+ "id": 9947,
"properties": {
"east": "true",
"north": "true",
@@ -191853,7 +198052,7 @@
}
},
{
- "id": 9693,
+ "id": 9948,
"properties": {
"east": "true",
"north": "true",
@@ -191863,7 +198062,7 @@
}
},
{
- "id": 9694,
+ "id": 9949,
"properties": {
"east": "true",
"north": "true",
@@ -191873,7 +198072,7 @@
}
},
{
- "id": 9695,
+ "id": 9950,
"properties": {
"east": "true",
"north": "true",
@@ -191883,7 +198082,7 @@
}
},
{
- "id": 9696,
+ "id": 9951,
"properties": {
"east": "true",
"north": "true",
@@ -191893,7 +198092,7 @@
}
},
{
- "id": 9697,
+ "id": 9952,
"properties": {
"east": "true",
"north": "true",
@@ -191903,7 +198102,7 @@
}
},
{
- "id": 9698,
+ "id": 9953,
"properties": {
"east": "true",
"north": "true",
@@ -191913,7 +198112,7 @@
}
},
{
- "id": 9699,
+ "id": 9954,
"properties": {
"east": "true",
"north": "true",
@@ -191923,7 +198122,7 @@
}
},
{
- "id": 9700,
+ "id": 9955,
"properties": {
"east": "true",
"north": "false",
@@ -191933,7 +198132,7 @@
}
},
{
- "id": 9701,
+ "id": 9956,
"properties": {
"east": "true",
"north": "false",
@@ -191943,7 +198142,7 @@
}
},
{
- "id": 9702,
+ "id": 9957,
"properties": {
"east": "true",
"north": "false",
@@ -191953,7 +198152,7 @@
}
},
{
- "id": 9703,
+ "id": 9958,
"properties": {
"east": "true",
"north": "false",
@@ -191963,7 +198162,7 @@
}
},
{
- "id": 9704,
+ "id": 9959,
"properties": {
"east": "true",
"north": "false",
@@ -191973,7 +198172,7 @@
}
},
{
- "id": 9705,
+ "id": 9960,
"properties": {
"east": "true",
"north": "false",
@@ -191983,7 +198182,7 @@
}
},
{
- "id": 9706,
+ "id": 9961,
"properties": {
"east": "true",
"north": "false",
@@ -191993,7 +198192,7 @@
}
},
{
- "id": 9707,
+ "id": 9962,
"properties": {
"east": "true",
"north": "false",
@@ -192003,7 +198202,7 @@
}
},
{
- "id": 9708,
+ "id": 9963,
"properties": {
"east": "false",
"north": "true",
@@ -192013,7 +198212,7 @@
}
},
{
- "id": 9709,
+ "id": 9964,
"properties": {
"east": "false",
"north": "true",
@@ -192023,7 +198222,7 @@
}
},
{
- "id": 9710,
+ "id": 9965,
"properties": {
"east": "false",
"north": "true",
@@ -192033,7 +198232,7 @@
}
},
{
- "id": 9711,
+ "id": 9966,
"properties": {
"east": "false",
"north": "true",
@@ -192043,7 +198242,7 @@
}
},
{
- "id": 9712,
+ "id": 9967,
"properties": {
"east": "false",
"north": "true",
@@ -192053,7 +198252,7 @@
}
},
{
- "id": 9713,
+ "id": 9968,
"properties": {
"east": "false",
"north": "true",
@@ -192063,7 +198262,7 @@
}
},
{
- "id": 9714,
+ "id": 9969,
"properties": {
"east": "false",
"north": "true",
@@ -192073,7 +198272,7 @@
}
},
{
- "id": 9715,
+ "id": 9970,
"properties": {
"east": "false",
"north": "true",
@@ -192083,7 +198282,7 @@
}
},
{
- "id": 9716,
+ "id": 9971,
"properties": {
"east": "false",
"north": "false",
@@ -192093,7 +198292,7 @@
}
},
{
- "id": 9717,
+ "id": 9972,
"properties": {
"east": "false",
"north": "false",
@@ -192103,7 +198302,7 @@
}
},
{
- "id": 9718,
+ "id": 9973,
"properties": {
"east": "false",
"north": "false",
@@ -192113,7 +198312,7 @@
}
},
{
- "id": 9719,
+ "id": 9974,
"properties": {
"east": "false",
"north": "false",
@@ -192123,7 +198322,7 @@
}
},
{
- "id": 9720,
+ "id": 9975,
"properties": {
"east": "false",
"north": "false",
@@ -192133,7 +198332,7 @@
}
},
{
- "id": 9721,
+ "id": 9976,
"properties": {
"east": "false",
"north": "false",
@@ -192143,7 +198342,7 @@
}
},
{
- "id": 9722,
+ "id": 9977,
"properties": {
"east": "false",
"north": "false",
@@ -192154,7 +198353,7 @@
},
{
"default": true,
- "id": 9723,
+ "id": 9978,
"properties": {
"east": "false",
"north": "false",
@@ -192173,7 +198372,7 @@
"states": [
{
"default": true,
- "id": 9366
+ "id": 9621
}
]
},
@@ -192194,25 +198393,25 @@
"states": [
{
"default": true,
- "id": 11055,
+ "id": 11390,
"properties": {
"facing": "north"
}
},
{
- "id": 11056,
+ "id": 11391,
"properties": {
"facing": "south"
}
},
{
- "id": 11057,
+ "id": 11392,
"properties": {
"facing": "west"
}
},
{
- "id": 11058,
+ "id": 11393,
"properties": {
"facing": "east"
}
@@ -192227,7 +198426,7 @@
"states": [
{
"default": true,
- "id": 2057
+ "id": 2100
}
]
},
@@ -192239,7 +198438,7 @@
"states": [
{
"default": true,
- "id": 12410
+ "id": 12879
}
]
},
@@ -192257,20 +198456,20 @@
},
"states": [
{
- "id": 12411,
+ "id": 12880,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 12412,
+ "id": 12881,
"properties": {
"axis": "y"
}
},
{
- "id": 12413,
+ "id": 12882,
"properties": {
"axis": "z"
}
@@ -192295,21 +198494,21 @@
},
"states": [
{
- "id": 11300,
+ "id": 11641,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11301,
+ "id": 11642,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11302,
+ "id": 11643,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -192317,21 +198516,21 @@
},
{
"default": true,
- "id": 11303,
+ "id": 11644,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11304,
+ "id": 11645,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11305,
+ "id": 11646,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -192372,7 +198571,7 @@
},
"states": [
{
- "id": 12414,
+ "id": 12883,
"properties": {
"facing": "north",
"half": "top",
@@ -192381,7 +198580,7 @@
}
},
{
- "id": 12415,
+ "id": 12884,
"properties": {
"facing": "north",
"half": "top",
@@ -192390,7 +198589,7 @@
}
},
{
- "id": 12416,
+ "id": 12885,
"properties": {
"facing": "north",
"half": "top",
@@ -192399,7 +198598,7 @@
}
},
{
- "id": 12417,
+ "id": 12886,
"properties": {
"facing": "north",
"half": "top",
@@ -192408,7 +198607,7 @@
}
},
{
- "id": 12418,
+ "id": 12887,
"properties": {
"facing": "north",
"half": "top",
@@ -192417,7 +198616,7 @@
}
},
{
- "id": 12419,
+ "id": 12888,
"properties": {
"facing": "north",
"half": "top",
@@ -192426,7 +198625,7 @@
}
},
{
- "id": 12420,
+ "id": 12889,
"properties": {
"facing": "north",
"half": "top",
@@ -192435,7 +198634,7 @@
}
},
{
- "id": 12421,
+ "id": 12890,
"properties": {
"facing": "north",
"half": "top",
@@ -192444,7 +198643,7 @@
}
},
{
- "id": 12422,
+ "id": 12891,
"properties": {
"facing": "north",
"half": "top",
@@ -192453,7 +198652,7 @@
}
},
{
- "id": 12423,
+ "id": 12892,
"properties": {
"facing": "north",
"half": "top",
@@ -192462,7 +198661,7 @@
}
},
{
- "id": 12424,
+ "id": 12893,
"properties": {
"facing": "north",
"half": "bottom",
@@ -192472,7 +198671,7 @@
},
{
"default": true,
- "id": 12425,
+ "id": 12894,
"properties": {
"facing": "north",
"half": "bottom",
@@ -192481,7 +198680,7 @@
}
},
{
- "id": 12426,
+ "id": 12895,
"properties": {
"facing": "north",
"half": "bottom",
@@ -192490,7 +198689,7 @@
}
},
{
- "id": 12427,
+ "id": 12896,
"properties": {
"facing": "north",
"half": "bottom",
@@ -192499,7 +198698,7 @@
}
},
{
- "id": 12428,
+ "id": 12897,
"properties": {
"facing": "north",
"half": "bottom",
@@ -192508,7 +198707,7 @@
}
},
{
- "id": 12429,
+ "id": 12898,
"properties": {
"facing": "north",
"half": "bottom",
@@ -192517,7 +198716,7 @@
}
},
{
- "id": 12430,
+ "id": 12899,
"properties": {
"facing": "north",
"half": "bottom",
@@ -192526,7 +198725,7 @@
}
},
{
- "id": 12431,
+ "id": 12900,
"properties": {
"facing": "north",
"half": "bottom",
@@ -192535,7 +198734,7 @@
}
},
{
- "id": 12432,
+ "id": 12901,
"properties": {
"facing": "north",
"half": "bottom",
@@ -192544,7 +198743,7 @@
}
},
{
- "id": 12433,
+ "id": 12902,
"properties": {
"facing": "north",
"half": "bottom",
@@ -192553,7 +198752,7 @@
}
},
{
- "id": 12434,
+ "id": 12903,
"properties": {
"facing": "south",
"half": "top",
@@ -192562,7 +198761,7 @@
}
},
{
- "id": 12435,
+ "id": 12904,
"properties": {
"facing": "south",
"half": "top",
@@ -192571,7 +198770,7 @@
}
},
{
- "id": 12436,
+ "id": 12905,
"properties": {
"facing": "south",
"half": "top",
@@ -192580,7 +198779,7 @@
}
},
{
- "id": 12437,
+ "id": 12906,
"properties": {
"facing": "south",
"half": "top",
@@ -192589,7 +198788,7 @@
}
},
{
- "id": 12438,
+ "id": 12907,
"properties": {
"facing": "south",
"half": "top",
@@ -192598,7 +198797,7 @@
}
},
{
- "id": 12439,
+ "id": 12908,
"properties": {
"facing": "south",
"half": "top",
@@ -192607,7 +198806,7 @@
}
},
{
- "id": 12440,
+ "id": 12909,
"properties": {
"facing": "south",
"half": "top",
@@ -192616,7 +198815,7 @@
}
},
{
- "id": 12441,
+ "id": 12910,
"properties": {
"facing": "south",
"half": "top",
@@ -192625,7 +198824,7 @@
}
},
{
- "id": 12442,
+ "id": 12911,
"properties": {
"facing": "south",
"half": "top",
@@ -192634,7 +198833,7 @@
}
},
{
- "id": 12443,
+ "id": 12912,
"properties": {
"facing": "south",
"half": "top",
@@ -192643,7 +198842,7 @@
}
},
{
- "id": 12444,
+ "id": 12913,
"properties": {
"facing": "south",
"half": "bottom",
@@ -192652,7 +198851,7 @@
}
},
{
- "id": 12445,
+ "id": 12914,
"properties": {
"facing": "south",
"half": "bottom",
@@ -192661,7 +198860,7 @@
}
},
{
- "id": 12446,
+ "id": 12915,
"properties": {
"facing": "south",
"half": "bottom",
@@ -192670,7 +198869,7 @@
}
},
{
- "id": 12447,
+ "id": 12916,
"properties": {
"facing": "south",
"half": "bottom",
@@ -192679,7 +198878,7 @@
}
},
{
- "id": 12448,
+ "id": 12917,
"properties": {
"facing": "south",
"half": "bottom",
@@ -192688,7 +198887,7 @@
}
},
{
- "id": 12449,
+ "id": 12918,
"properties": {
"facing": "south",
"half": "bottom",
@@ -192697,7 +198896,7 @@
}
},
{
- "id": 12450,
+ "id": 12919,
"properties": {
"facing": "south",
"half": "bottom",
@@ -192706,7 +198905,7 @@
}
},
{
- "id": 12451,
+ "id": 12920,
"properties": {
"facing": "south",
"half": "bottom",
@@ -192715,7 +198914,7 @@
}
},
{
- "id": 12452,
+ "id": 12921,
"properties": {
"facing": "south",
"half": "bottom",
@@ -192724,7 +198923,7 @@
}
},
{
- "id": 12453,
+ "id": 12922,
"properties": {
"facing": "south",
"half": "bottom",
@@ -192733,7 +198932,7 @@
}
},
{
- "id": 12454,
+ "id": 12923,
"properties": {
"facing": "west",
"half": "top",
@@ -192742,7 +198941,7 @@
}
},
{
- "id": 12455,
+ "id": 12924,
"properties": {
"facing": "west",
"half": "top",
@@ -192751,7 +198950,7 @@
}
},
{
- "id": 12456,
+ "id": 12925,
"properties": {
"facing": "west",
"half": "top",
@@ -192760,7 +198959,7 @@
}
},
{
- "id": 12457,
+ "id": 12926,
"properties": {
"facing": "west",
"half": "top",
@@ -192769,7 +198968,7 @@
}
},
{
- "id": 12458,
+ "id": 12927,
"properties": {
"facing": "west",
"half": "top",
@@ -192778,7 +198977,7 @@
}
},
{
- "id": 12459,
+ "id": 12928,
"properties": {
"facing": "west",
"half": "top",
@@ -192787,7 +198986,7 @@
}
},
{
- "id": 12460,
+ "id": 12929,
"properties": {
"facing": "west",
"half": "top",
@@ -192796,7 +198995,7 @@
}
},
{
- "id": 12461,
+ "id": 12930,
"properties": {
"facing": "west",
"half": "top",
@@ -192805,7 +199004,7 @@
}
},
{
- "id": 12462,
+ "id": 12931,
"properties": {
"facing": "west",
"half": "top",
@@ -192814,7 +199013,7 @@
}
},
{
- "id": 12463,
+ "id": 12932,
"properties": {
"facing": "west",
"half": "top",
@@ -192823,7 +199022,7 @@
}
},
{
- "id": 12464,
+ "id": 12933,
"properties": {
"facing": "west",
"half": "bottom",
@@ -192832,7 +199031,7 @@
}
},
{
- "id": 12465,
+ "id": 12934,
"properties": {
"facing": "west",
"half": "bottom",
@@ -192841,7 +199040,7 @@
}
},
{
- "id": 12466,
+ "id": 12935,
"properties": {
"facing": "west",
"half": "bottom",
@@ -192850,7 +199049,7 @@
}
},
{
- "id": 12467,
+ "id": 12936,
"properties": {
"facing": "west",
"half": "bottom",
@@ -192859,7 +199058,7 @@
}
},
{
- "id": 12468,
+ "id": 12937,
"properties": {
"facing": "west",
"half": "bottom",
@@ -192868,7 +199067,7 @@
}
},
{
- "id": 12469,
+ "id": 12938,
"properties": {
"facing": "west",
"half": "bottom",
@@ -192877,7 +199076,7 @@
}
},
{
- "id": 12470,
+ "id": 12939,
"properties": {
"facing": "west",
"half": "bottom",
@@ -192886,7 +199085,7 @@
}
},
{
- "id": 12471,
+ "id": 12940,
"properties": {
"facing": "west",
"half": "bottom",
@@ -192895,7 +199094,7 @@
}
},
{
- "id": 12472,
+ "id": 12941,
"properties": {
"facing": "west",
"half": "bottom",
@@ -192904,7 +199103,7 @@
}
},
{
- "id": 12473,
+ "id": 12942,
"properties": {
"facing": "west",
"half": "bottom",
@@ -192913,7 +199112,7 @@
}
},
{
- "id": 12474,
+ "id": 12943,
"properties": {
"facing": "east",
"half": "top",
@@ -192922,7 +199121,7 @@
}
},
{
- "id": 12475,
+ "id": 12944,
"properties": {
"facing": "east",
"half": "top",
@@ -192931,7 +199130,7 @@
}
},
{
- "id": 12476,
+ "id": 12945,
"properties": {
"facing": "east",
"half": "top",
@@ -192940,7 +199139,7 @@
}
},
{
- "id": 12477,
+ "id": 12946,
"properties": {
"facing": "east",
"half": "top",
@@ -192949,7 +199148,7 @@
}
},
{
- "id": 12478,
+ "id": 12947,
"properties": {
"facing": "east",
"half": "top",
@@ -192958,7 +199157,7 @@
}
},
{
- "id": 12479,
+ "id": 12948,
"properties": {
"facing": "east",
"half": "top",
@@ -192967,7 +199166,7 @@
}
},
{
- "id": 12480,
+ "id": 12949,
"properties": {
"facing": "east",
"half": "top",
@@ -192976,7 +199175,7 @@
}
},
{
- "id": 12481,
+ "id": 12950,
"properties": {
"facing": "east",
"half": "top",
@@ -192985,7 +199184,7 @@
}
},
{
- "id": 12482,
+ "id": 12951,
"properties": {
"facing": "east",
"half": "top",
@@ -192994,7 +199193,7 @@
}
},
{
- "id": 12483,
+ "id": 12952,
"properties": {
"facing": "east",
"half": "top",
@@ -193003,7 +199202,7 @@
}
},
{
- "id": 12484,
+ "id": 12953,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193012,7 +199211,7 @@
}
},
{
- "id": 12485,
+ "id": 12954,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193021,7 +199220,7 @@
}
},
{
- "id": 12486,
+ "id": 12955,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193030,7 +199229,7 @@
}
},
{
- "id": 12487,
+ "id": 12956,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193039,7 +199238,7 @@
}
},
{
- "id": 12488,
+ "id": 12957,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193048,7 +199247,7 @@
}
},
{
- "id": 12489,
+ "id": 12958,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193057,7 +199256,7 @@
}
},
{
- "id": 12490,
+ "id": 12959,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193066,7 +199265,7 @@
}
},
{
- "id": 12491,
+ "id": 12960,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193075,7 +199274,7 @@
}
},
{
- "id": 12492,
+ "id": 12961,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193084,7 +199283,7 @@
}
},
{
- "id": 12493,
+ "id": 12962,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193102,7 +199301,7 @@
"states": [
{
"default": true,
- "id": 9235
+ "id": 9490
}
]
},
@@ -193114,7 +199313,7 @@
"states": [
{
"default": true,
- "id": 20724
+ "id": 21193
}
]
},
@@ -193132,20 +199331,20 @@
},
"states": [
{
- "id": 9237,
+ "id": 9492,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 9238,
+ "id": 9493,
"properties": {
"axis": "y"
}
},
{
- "id": 9239,
+ "id": 9494,
"properties": {
"axis": "z"
}
@@ -193170,21 +199369,21 @@
},
"states": [
{
- "id": 11282,
+ "id": 11623,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11283,
+ "id": 11624,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11284,
+ "id": 11625,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -193192,21 +199391,21 @@
},
{
"default": true,
- "id": 11285,
+ "id": 11626,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11286,
+ "id": 11627,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11287,
+ "id": 11628,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -193247,7 +199446,7 @@
},
"states": [
{
- "id": 9240,
+ "id": 9495,
"properties": {
"facing": "north",
"half": "top",
@@ -193256,7 +199455,7 @@
}
},
{
- "id": 9241,
+ "id": 9496,
"properties": {
"facing": "north",
"half": "top",
@@ -193265,7 +199464,7 @@
}
},
{
- "id": 9242,
+ "id": 9497,
"properties": {
"facing": "north",
"half": "top",
@@ -193274,7 +199473,7 @@
}
},
{
- "id": 9243,
+ "id": 9498,
"properties": {
"facing": "north",
"half": "top",
@@ -193283,7 +199482,7 @@
}
},
{
- "id": 9244,
+ "id": 9499,
"properties": {
"facing": "north",
"half": "top",
@@ -193292,7 +199491,7 @@
}
},
{
- "id": 9245,
+ "id": 9500,
"properties": {
"facing": "north",
"half": "top",
@@ -193301,7 +199500,7 @@
}
},
{
- "id": 9246,
+ "id": 9501,
"properties": {
"facing": "north",
"half": "top",
@@ -193310,7 +199509,7 @@
}
},
{
- "id": 9247,
+ "id": 9502,
"properties": {
"facing": "north",
"half": "top",
@@ -193319,7 +199518,7 @@
}
},
{
- "id": 9248,
+ "id": 9503,
"properties": {
"facing": "north",
"half": "top",
@@ -193328,7 +199527,7 @@
}
},
{
- "id": 9249,
+ "id": 9504,
"properties": {
"facing": "north",
"half": "top",
@@ -193337,7 +199536,7 @@
}
},
{
- "id": 9250,
+ "id": 9505,
"properties": {
"facing": "north",
"half": "bottom",
@@ -193347,7 +199546,7 @@
},
{
"default": true,
- "id": 9251,
+ "id": 9506,
"properties": {
"facing": "north",
"half": "bottom",
@@ -193356,7 +199555,7 @@
}
},
{
- "id": 9252,
+ "id": 9507,
"properties": {
"facing": "north",
"half": "bottom",
@@ -193365,7 +199564,7 @@
}
},
{
- "id": 9253,
+ "id": 9508,
"properties": {
"facing": "north",
"half": "bottom",
@@ -193374,7 +199573,7 @@
}
},
{
- "id": 9254,
+ "id": 9509,
"properties": {
"facing": "north",
"half": "bottom",
@@ -193383,7 +199582,7 @@
}
},
{
- "id": 9255,
+ "id": 9510,
"properties": {
"facing": "north",
"half": "bottom",
@@ -193392,7 +199591,7 @@
}
},
{
- "id": 9256,
+ "id": 9511,
"properties": {
"facing": "north",
"half": "bottom",
@@ -193401,7 +199600,7 @@
}
},
{
- "id": 9257,
+ "id": 9512,
"properties": {
"facing": "north",
"half": "bottom",
@@ -193410,7 +199609,7 @@
}
},
{
- "id": 9258,
+ "id": 9513,
"properties": {
"facing": "north",
"half": "bottom",
@@ -193419,7 +199618,7 @@
}
},
{
- "id": 9259,
+ "id": 9514,
"properties": {
"facing": "north",
"half": "bottom",
@@ -193428,7 +199627,7 @@
}
},
{
- "id": 9260,
+ "id": 9515,
"properties": {
"facing": "south",
"half": "top",
@@ -193437,7 +199636,7 @@
}
},
{
- "id": 9261,
+ "id": 9516,
"properties": {
"facing": "south",
"half": "top",
@@ -193446,7 +199645,7 @@
}
},
{
- "id": 9262,
+ "id": 9517,
"properties": {
"facing": "south",
"half": "top",
@@ -193455,7 +199654,7 @@
}
},
{
- "id": 9263,
+ "id": 9518,
"properties": {
"facing": "south",
"half": "top",
@@ -193464,7 +199663,7 @@
}
},
{
- "id": 9264,
+ "id": 9519,
"properties": {
"facing": "south",
"half": "top",
@@ -193473,7 +199672,7 @@
}
},
{
- "id": 9265,
+ "id": 9520,
"properties": {
"facing": "south",
"half": "top",
@@ -193482,7 +199681,7 @@
}
},
{
- "id": 9266,
+ "id": 9521,
"properties": {
"facing": "south",
"half": "top",
@@ -193491,7 +199690,7 @@
}
},
{
- "id": 9267,
+ "id": 9522,
"properties": {
"facing": "south",
"half": "top",
@@ -193500,7 +199699,7 @@
}
},
{
- "id": 9268,
+ "id": 9523,
"properties": {
"facing": "south",
"half": "top",
@@ -193509,7 +199708,7 @@
}
},
{
- "id": 9269,
+ "id": 9524,
"properties": {
"facing": "south",
"half": "top",
@@ -193518,7 +199717,7 @@
}
},
{
- "id": 9270,
+ "id": 9525,
"properties": {
"facing": "south",
"half": "bottom",
@@ -193527,7 +199726,7 @@
}
},
{
- "id": 9271,
+ "id": 9526,
"properties": {
"facing": "south",
"half": "bottom",
@@ -193536,7 +199735,7 @@
}
},
{
- "id": 9272,
+ "id": 9527,
"properties": {
"facing": "south",
"half": "bottom",
@@ -193545,7 +199744,7 @@
}
},
{
- "id": 9273,
+ "id": 9528,
"properties": {
"facing": "south",
"half": "bottom",
@@ -193554,7 +199753,7 @@
}
},
{
- "id": 9274,
+ "id": 9529,
"properties": {
"facing": "south",
"half": "bottom",
@@ -193563,7 +199762,7 @@
}
},
{
- "id": 9275,
+ "id": 9530,
"properties": {
"facing": "south",
"half": "bottom",
@@ -193572,7 +199771,7 @@
}
},
{
- "id": 9276,
+ "id": 9531,
"properties": {
"facing": "south",
"half": "bottom",
@@ -193581,7 +199780,7 @@
}
},
{
- "id": 9277,
+ "id": 9532,
"properties": {
"facing": "south",
"half": "bottom",
@@ -193590,7 +199789,7 @@
}
},
{
- "id": 9278,
+ "id": 9533,
"properties": {
"facing": "south",
"half": "bottom",
@@ -193599,7 +199798,7 @@
}
},
{
- "id": 9279,
+ "id": 9534,
"properties": {
"facing": "south",
"half": "bottom",
@@ -193608,7 +199807,7 @@
}
},
{
- "id": 9280,
+ "id": 9535,
"properties": {
"facing": "west",
"half": "top",
@@ -193617,7 +199816,7 @@
}
},
{
- "id": 9281,
+ "id": 9536,
"properties": {
"facing": "west",
"half": "top",
@@ -193626,7 +199825,7 @@
}
},
{
- "id": 9282,
+ "id": 9537,
"properties": {
"facing": "west",
"half": "top",
@@ -193635,7 +199834,7 @@
}
},
{
- "id": 9283,
+ "id": 9538,
"properties": {
"facing": "west",
"half": "top",
@@ -193644,7 +199843,7 @@
}
},
{
- "id": 9284,
+ "id": 9539,
"properties": {
"facing": "west",
"half": "top",
@@ -193653,7 +199852,7 @@
}
},
{
- "id": 9285,
+ "id": 9540,
"properties": {
"facing": "west",
"half": "top",
@@ -193662,7 +199861,7 @@
}
},
{
- "id": 9286,
+ "id": 9541,
"properties": {
"facing": "west",
"half": "top",
@@ -193671,7 +199870,7 @@
}
},
{
- "id": 9287,
+ "id": 9542,
"properties": {
"facing": "west",
"half": "top",
@@ -193680,7 +199879,7 @@
}
},
{
- "id": 9288,
+ "id": 9543,
"properties": {
"facing": "west",
"half": "top",
@@ -193689,7 +199888,7 @@
}
},
{
- "id": 9289,
+ "id": 9544,
"properties": {
"facing": "west",
"half": "top",
@@ -193698,7 +199897,7 @@
}
},
{
- "id": 9290,
+ "id": 9545,
"properties": {
"facing": "west",
"half": "bottom",
@@ -193707,7 +199906,7 @@
}
},
{
- "id": 9291,
+ "id": 9546,
"properties": {
"facing": "west",
"half": "bottom",
@@ -193716,7 +199915,7 @@
}
},
{
- "id": 9292,
+ "id": 9547,
"properties": {
"facing": "west",
"half": "bottom",
@@ -193725,7 +199924,7 @@
}
},
{
- "id": 9293,
+ "id": 9548,
"properties": {
"facing": "west",
"half": "bottom",
@@ -193734,7 +199933,7 @@
}
},
{
- "id": 9294,
+ "id": 9549,
"properties": {
"facing": "west",
"half": "bottom",
@@ -193743,7 +199942,7 @@
}
},
{
- "id": 9295,
+ "id": 9550,
"properties": {
"facing": "west",
"half": "bottom",
@@ -193752,7 +199951,7 @@
}
},
{
- "id": 9296,
+ "id": 9551,
"properties": {
"facing": "west",
"half": "bottom",
@@ -193761,7 +199960,7 @@
}
},
{
- "id": 9297,
+ "id": 9552,
"properties": {
"facing": "west",
"half": "bottom",
@@ -193770,7 +199969,7 @@
}
},
{
- "id": 9298,
+ "id": 9553,
"properties": {
"facing": "west",
"half": "bottom",
@@ -193779,7 +199978,7 @@
}
},
{
- "id": 9299,
+ "id": 9554,
"properties": {
"facing": "west",
"half": "bottom",
@@ -193788,7 +199987,7 @@
}
},
{
- "id": 9300,
+ "id": 9555,
"properties": {
"facing": "east",
"half": "top",
@@ -193797,7 +199996,7 @@
}
},
{
- "id": 9301,
+ "id": 9556,
"properties": {
"facing": "east",
"half": "top",
@@ -193806,7 +200005,7 @@
}
},
{
- "id": 9302,
+ "id": 9557,
"properties": {
"facing": "east",
"half": "top",
@@ -193815,7 +200014,7 @@
}
},
{
- "id": 9303,
+ "id": 9558,
"properties": {
"facing": "east",
"half": "top",
@@ -193824,7 +200023,7 @@
}
},
{
- "id": 9304,
+ "id": 9559,
"properties": {
"facing": "east",
"half": "top",
@@ -193833,7 +200032,7 @@
}
},
{
- "id": 9305,
+ "id": 9560,
"properties": {
"facing": "east",
"half": "top",
@@ -193842,7 +200041,7 @@
}
},
{
- "id": 9306,
+ "id": 9561,
"properties": {
"facing": "east",
"half": "top",
@@ -193851,7 +200050,7 @@
}
},
{
- "id": 9307,
+ "id": 9562,
"properties": {
"facing": "east",
"half": "top",
@@ -193860,7 +200059,7 @@
}
},
{
- "id": 9308,
+ "id": 9563,
"properties": {
"facing": "east",
"half": "top",
@@ -193869,7 +200068,7 @@
}
},
{
- "id": 9309,
+ "id": 9564,
"properties": {
"facing": "east",
"half": "top",
@@ -193878,7 +200077,7 @@
}
},
{
- "id": 9310,
+ "id": 9565,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193887,7 +200086,7 @@
}
},
{
- "id": 9311,
+ "id": 9566,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193896,7 +200095,7 @@
}
},
{
- "id": 9312,
+ "id": 9567,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193905,7 +200104,7 @@
}
},
{
- "id": 9313,
+ "id": 9568,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193914,7 +200113,7 @@
}
},
{
- "id": 9314,
+ "id": 9569,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193923,7 +200122,7 @@
}
},
{
- "id": 9315,
+ "id": 9570,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193932,7 +200131,7 @@
}
},
{
- "id": 9316,
+ "id": 9571,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193941,7 +200140,7 @@
}
},
{
- "id": 9317,
+ "id": 9572,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193950,7 +200149,7 @@
}
},
{
- "id": 9318,
+ "id": 9573,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193959,7 +200158,7 @@
}
},
{
- "id": 9319,
+ "id": 9574,
"properties": {
"facing": "east",
"half": "bottom",
@@ -193994,7 +200193,7 @@
},
"states": [
{
- "id": 4662,
+ "id": 4746,
"properties": {
"shape": "north_south",
"waterlogged": "true"
@@ -194002,133 +200201,133 @@
},
{
"default": true,
- "id": 4663,
+ "id": 4747,
"properties": {
"shape": "north_south",
"waterlogged": "false"
}
},
{
- "id": 4664,
+ "id": 4748,
"properties": {
"shape": "east_west",
"waterlogged": "true"
}
},
{
- "id": 4665,
+ "id": 4749,
"properties": {
"shape": "east_west",
"waterlogged": "false"
}
},
{
- "id": 4666,
+ "id": 4750,
"properties": {
"shape": "ascending_east",
"waterlogged": "true"
}
},
{
- "id": 4667,
+ "id": 4751,
"properties": {
"shape": "ascending_east",
"waterlogged": "false"
}
},
{
- "id": 4668,
+ "id": 4752,
"properties": {
"shape": "ascending_west",
"waterlogged": "true"
}
},
{
- "id": 4669,
+ "id": 4753,
"properties": {
"shape": "ascending_west",
"waterlogged": "false"
}
},
{
- "id": 4670,
+ "id": 4754,
"properties": {
"shape": "ascending_north",
"waterlogged": "true"
}
},
{
- "id": 4671,
+ "id": 4755,
"properties": {
"shape": "ascending_north",
"waterlogged": "false"
}
},
{
- "id": 4672,
+ "id": 4756,
"properties": {
"shape": "ascending_south",
"waterlogged": "true"
}
},
{
- "id": 4673,
+ "id": 4757,
"properties": {
"shape": "ascending_south",
"waterlogged": "false"
}
},
{
- "id": 4674,
+ "id": 4758,
"properties": {
"shape": "south_east",
"waterlogged": "true"
}
},
{
- "id": 4675,
+ "id": 4759,
"properties": {
"shape": "south_east",
"waterlogged": "false"
}
},
{
- "id": 4676,
+ "id": 4760,
"properties": {
"shape": "south_west",
"waterlogged": "true"
}
},
{
- "id": 4677,
+ "id": 4761,
"properties": {
"shape": "south_west",
"waterlogged": "false"
}
},
{
- "id": 4678,
+ "id": 4762,
"properties": {
"shape": "north_west",
"waterlogged": "true"
}
},
{
- "id": 4679,
+ "id": 4763,
"properties": {
"shape": "north_west",
"waterlogged": "false"
}
},
{
- "id": 4680,
+ "id": 4764,
"properties": {
"shape": "north_east",
"waterlogged": "true"
}
},
{
- "id": 4681,
+ "id": 4765,
"properties": {
"shape": "north_east",
"waterlogged": "false"
@@ -194144,7 +200343,7 @@
"states": [
{
"default": true,
- "id": 26559
+ "id": 27028
}
]
},
@@ -194156,7 +200355,7 @@
"states": [
{
"default": true,
- "id": 26560
+ "id": 27029
}
]
},
@@ -194168,7 +200367,7 @@
"states": [
{
"default": true,
- "id": 26558
+ "id": 27027
}
]
},
@@ -194201,97 +200400,97 @@
"states": [
{
"default": true,
- "id": 10983,
+ "id": 11318,
"properties": {
"rotation": "0"
}
},
{
- "id": 10984,
+ "id": 11319,
"properties": {
"rotation": "1"
}
},
{
- "id": 10985,
+ "id": 11320,
"properties": {
"rotation": "2"
}
},
{
- "id": 10986,
+ "id": 11321,
"properties": {
"rotation": "3"
}
},
{
- "id": 10987,
+ "id": 11322,
"properties": {
"rotation": "4"
}
},
{
- "id": 10988,
+ "id": 11323,
"properties": {
"rotation": "5"
}
},
{
- "id": 10989,
+ "id": 11324,
"properties": {
"rotation": "6"
}
},
{
- "id": 10990,
+ "id": 11325,
"properties": {
"rotation": "7"
}
},
{
- "id": 10991,
+ "id": 11326,
"properties": {
"rotation": "8"
}
},
{
- "id": 10992,
+ "id": 11327,
"properties": {
"rotation": "9"
}
},
{
- "id": 10993,
+ "id": 11328,
"properties": {
"rotation": "10"
}
},
{
- "id": 10994,
+ "id": 11329,
"properties": {
"rotation": "11"
}
},
{
- "id": 10995,
+ "id": 11330,
"properties": {
"rotation": "12"
}
},
{
- "id": 10996,
+ "id": 11331,
"properties": {
"rotation": "13"
}
},
{
- "id": 10997,
+ "id": 11332,
"properties": {
"rotation": "14"
}
},
{
- "id": 10998,
+ "id": 11333,
"properties": {
"rotation": "15"
}
@@ -194322,7 +200521,7 @@
},
"states": [
{
- "id": 1912,
+ "id": 1955,
"properties": {
"facing": "north",
"occupied": "true",
@@ -194330,7 +200529,7 @@
}
},
{
- "id": 1913,
+ "id": 1956,
"properties": {
"facing": "north",
"occupied": "true",
@@ -194338,7 +200537,7 @@
}
},
{
- "id": 1914,
+ "id": 1957,
"properties": {
"facing": "north",
"occupied": "false",
@@ -194347,7 +200546,7 @@
},
{
"default": true,
- "id": 1915,
+ "id": 1958,
"properties": {
"facing": "north",
"occupied": "false",
@@ -194355,7 +200554,7 @@
}
},
{
- "id": 1916,
+ "id": 1959,
"properties": {
"facing": "south",
"occupied": "true",
@@ -194363,7 +200562,7 @@
}
},
{
- "id": 1917,
+ "id": 1960,
"properties": {
"facing": "south",
"occupied": "true",
@@ -194371,7 +200570,7 @@
}
},
{
- "id": 1918,
+ "id": 1961,
"properties": {
"facing": "south",
"occupied": "false",
@@ -194379,7 +200578,7 @@
}
},
{
- "id": 1919,
+ "id": 1962,
"properties": {
"facing": "south",
"occupied": "false",
@@ -194387,7 +200586,7 @@
}
},
{
- "id": 1920,
+ "id": 1963,
"properties": {
"facing": "west",
"occupied": "true",
@@ -194395,7 +200594,7 @@
}
},
{
- "id": 1921,
+ "id": 1964,
"properties": {
"facing": "west",
"occupied": "true",
@@ -194403,7 +200602,7 @@
}
},
{
- "id": 1922,
+ "id": 1965,
"properties": {
"facing": "west",
"occupied": "false",
@@ -194411,7 +200610,7 @@
}
},
{
- "id": 1923,
+ "id": 1966,
"properties": {
"facing": "west",
"occupied": "false",
@@ -194419,7 +200618,7 @@
}
},
{
- "id": 1924,
+ "id": 1967,
"properties": {
"facing": "east",
"occupied": "true",
@@ -194427,7 +200626,7 @@
}
},
{
- "id": 1925,
+ "id": 1968,
"properties": {
"facing": "east",
"occupied": "true",
@@ -194435,7 +200634,7 @@
}
},
{
- "id": 1926,
+ "id": 1969,
"properties": {
"facing": "east",
"occupied": "false",
@@ -194443,7 +200642,7 @@
}
},
{
- "id": 1927,
+ "id": 1970,
"properties": {
"facing": "east",
"occupied": "false",
@@ -194475,7 +200674,7 @@
},
"states": [
{
- "id": 20965,
+ "id": 21434,
"properties": {
"candles": "1",
"lit": "true",
@@ -194483,7 +200682,7 @@
}
},
{
- "id": 20966,
+ "id": 21435,
"properties": {
"candles": "1",
"lit": "true",
@@ -194491,7 +200690,7 @@
}
},
{
- "id": 20967,
+ "id": 21436,
"properties": {
"candles": "1",
"lit": "false",
@@ -194500,7 +200699,7 @@
},
{
"default": true,
- "id": 20968,
+ "id": 21437,
"properties": {
"candles": "1",
"lit": "false",
@@ -194508,7 +200707,7 @@
}
},
{
- "id": 20969,
+ "id": 21438,
"properties": {
"candles": "2",
"lit": "true",
@@ -194516,7 +200715,7 @@
}
},
{
- "id": 20970,
+ "id": 21439,
"properties": {
"candles": "2",
"lit": "true",
@@ -194524,7 +200723,7 @@
}
},
{
- "id": 20971,
+ "id": 21440,
"properties": {
"candles": "2",
"lit": "false",
@@ -194532,7 +200731,7 @@
}
},
{
- "id": 20972,
+ "id": 21441,
"properties": {
"candles": "2",
"lit": "false",
@@ -194540,7 +200739,7 @@
}
},
{
- "id": 20973,
+ "id": 21442,
"properties": {
"candles": "3",
"lit": "true",
@@ -194548,7 +200747,7 @@
}
},
{
- "id": 20974,
+ "id": 21443,
"properties": {
"candles": "3",
"lit": "true",
@@ -194556,7 +200755,7 @@
}
},
{
- "id": 20975,
+ "id": 21444,
"properties": {
"candles": "3",
"lit": "false",
@@ -194564,7 +200763,7 @@
}
},
{
- "id": 20976,
+ "id": 21445,
"properties": {
"candles": "3",
"lit": "false",
@@ -194572,7 +200771,7 @@
}
},
{
- "id": 20977,
+ "id": 21446,
"properties": {
"candles": "4",
"lit": "true",
@@ -194580,7 +200779,7 @@
}
},
{
- "id": 20978,
+ "id": 21447,
"properties": {
"candles": "4",
"lit": "true",
@@ -194588,7 +200787,7 @@
}
},
{
- "id": 20979,
+ "id": 21448,
"properties": {
"candles": "4",
"lit": "false",
@@ -194596,7 +200795,7 @@
}
},
{
- "id": 20980,
+ "id": 21449,
"properties": {
"candles": "4",
"lit": "false",
@@ -194619,14 +200818,14 @@
},
"states": [
{
- "id": 21027,
+ "id": 21496,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 21028,
+ "id": 21497,
"properties": {
"lit": "false"
}
@@ -194642,7 +200841,7 @@
"states": [
{
"default": true,
- "id": 10742
+ "id": 11077
}
]
},
@@ -194654,7 +200853,7 @@
"states": [
{
"default": true,
- "id": 12742
+ "id": 13211
}
]
},
@@ -194667,7 +200866,7 @@
"states": [
{
"default": true,
- "id": 12758
+ "id": 13227
}
]
},
@@ -194687,25 +200886,25 @@
"states": [
{
"default": true,
- "id": 12720,
+ "id": 13189,
"properties": {
"facing": "north"
}
},
{
- "id": 12721,
+ "id": 13190,
"properties": {
"facing": "south"
}
},
{
- "id": 12722,
+ "id": 13191,
"properties": {
"facing": "west"
}
},
{
- "id": 12723,
+ "id": 13192,
"properties": {
"facing": "east"
}
@@ -194721,7 +200920,7 @@
"states": [
{
"default": true,
- "id": 2090
+ "id": 2133
}
]
},
@@ -194759,7 +200958,7 @@
"states": [
{
"default": true,
- "id": 6613,
+ "id": 6843,
"properties": {
"down": "true",
"east": "true",
@@ -194770,7 +200969,7 @@
}
},
{
- "id": 6614,
+ "id": 6844,
"properties": {
"down": "true",
"east": "true",
@@ -194781,7 +200980,7 @@
}
},
{
- "id": 6615,
+ "id": 6845,
"properties": {
"down": "true",
"east": "true",
@@ -194792,7 +200991,7 @@
}
},
{
- "id": 6616,
+ "id": 6846,
"properties": {
"down": "true",
"east": "true",
@@ -194803,7 +201002,7 @@
}
},
{
- "id": 6617,
+ "id": 6847,
"properties": {
"down": "true",
"east": "true",
@@ -194814,7 +201013,7 @@
}
},
{
- "id": 6618,
+ "id": 6848,
"properties": {
"down": "true",
"east": "true",
@@ -194825,7 +201024,7 @@
}
},
{
- "id": 6619,
+ "id": 6849,
"properties": {
"down": "true",
"east": "true",
@@ -194836,7 +201035,7 @@
}
},
{
- "id": 6620,
+ "id": 6850,
"properties": {
"down": "true",
"east": "true",
@@ -194847,7 +201046,7 @@
}
},
{
- "id": 6621,
+ "id": 6851,
"properties": {
"down": "true",
"east": "true",
@@ -194858,7 +201057,7 @@
}
},
{
- "id": 6622,
+ "id": 6852,
"properties": {
"down": "true",
"east": "true",
@@ -194869,7 +201068,7 @@
}
},
{
- "id": 6623,
+ "id": 6853,
"properties": {
"down": "true",
"east": "true",
@@ -194880,7 +201079,7 @@
}
},
{
- "id": 6624,
+ "id": 6854,
"properties": {
"down": "true",
"east": "true",
@@ -194891,7 +201090,7 @@
}
},
{
- "id": 6625,
+ "id": 6855,
"properties": {
"down": "true",
"east": "true",
@@ -194902,7 +201101,7 @@
}
},
{
- "id": 6626,
+ "id": 6856,
"properties": {
"down": "true",
"east": "true",
@@ -194913,7 +201112,7 @@
}
},
{
- "id": 6627,
+ "id": 6857,
"properties": {
"down": "true",
"east": "true",
@@ -194924,7 +201123,7 @@
}
},
{
- "id": 6628,
+ "id": 6858,
"properties": {
"down": "true",
"east": "true",
@@ -194935,7 +201134,7 @@
}
},
{
- "id": 6629,
+ "id": 6859,
"properties": {
"down": "true",
"east": "false",
@@ -194946,7 +201145,7 @@
}
},
{
- "id": 6630,
+ "id": 6860,
"properties": {
"down": "true",
"east": "false",
@@ -194957,7 +201156,7 @@
}
},
{
- "id": 6631,
+ "id": 6861,
"properties": {
"down": "true",
"east": "false",
@@ -194968,7 +201167,7 @@
}
},
{
- "id": 6632,
+ "id": 6862,
"properties": {
"down": "true",
"east": "false",
@@ -194979,7 +201178,7 @@
}
},
{
- "id": 6633,
+ "id": 6863,
"properties": {
"down": "true",
"east": "false",
@@ -194990,7 +201189,7 @@
}
},
{
- "id": 6634,
+ "id": 6864,
"properties": {
"down": "true",
"east": "false",
@@ -195001,7 +201200,7 @@
}
},
{
- "id": 6635,
+ "id": 6865,
"properties": {
"down": "true",
"east": "false",
@@ -195012,7 +201211,7 @@
}
},
{
- "id": 6636,
+ "id": 6866,
"properties": {
"down": "true",
"east": "false",
@@ -195023,7 +201222,7 @@
}
},
{
- "id": 6637,
+ "id": 6867,
"properties": {
"down": "true",
"east": "false",
@@ -195034,7 +201233,7 @@
}
},
{
- "id": 6638,
+ "id": 6868,
"properties": {
"down": "true",
"east": "false",
@@ -195045,7 +201244,7 @@
}
},
{
- "id": 6639,
+ "id": 6869,
"properties": {
"down": "true",
"east": "false",
@@ -195056,7 +201255,7 @@
}
},
{
- "id": 6640,
+ "id": 6870,
"properties": {
"down": "true",
"east": "false",
@@ -195067,7 +201266,7 @@
}
},
{
- "id": 6641,
+ "id": 6871,
"properties": {
"down": "true",
"east": "false",
@@ -195078,7 +201277,7 @@
}
},
{
- "id": 6642,
+ "id": 6872,
"properties": {
"down": "true",
"east": "false",
@@ -195089,7 +201288,7 @@
}
},
{
- "id": 6643,
+ "id": 6873,
"properties": {
"down": "true",
"east": "false",
@@ -195100,7 +201299,7 @@
}
},
{
- "id": 6644,
+ "id": 6874,
"properties": {
"down": "true",
"east": "false",
@@ -195111,7 +201310,7 @@
}
},
{
- "id": 6645,
+ "id": 6875,
"properties": {
"down": "false",
"east": "true",
@@ -195122,7 +201321,7 @@
}
},
{
- "id": 6646,
+ "id": 6876,
"properties": {
"down": "false",
"east": "true",
@@ -195133,7 +201332,7 @@
}
},
{
- "id": 6647,
+ "id": 6877,
"properties": {
"down": "false",
"east": "true",
@@ -195144,7 +201343,7 @@
}
},
{
- "id": 6648,
+ "id": 6878,
"properties": {
"down": "false",
"east": "true",
@@ -195155,7 +201354,7 @@
}
},
{
- "id": 6649,
+ "id": 6879,
"properties": {
"down": "false",
"east": "true",
@@ -195166,7 +201365,7 @@
}
},
{
- "id": 6650,
+ "id": 6880,
"properties": {
"down": "false",
"east": "true",
@@ -195177,7 +201376,7 @@
}
},
{
- "id": 6651,
+ "id": 6881,
"properties": {
"down": "false",
"east": "true",
@@ -195188,7 +201387,7 @@
}
},
{
- "id": 6652,
+ "id": 6882,
"properties": {
"down": "false",
"east": "true",
@@ -195199,7 +201398,7 @@
}
},
{
- "id": 6653,
+ "id": 6883,
"properties": {
"down": "false",
"east": "true",
@@ -195210,7 +201409,7 @@
}
},
{
- "id": 6654,
+ "id": 6884,
"properties": {
"down": "false",
"east": "true",
@@ -195221,7 +201420,7 @@
}
},
{
- "id": 6655,
+ "id": 6885,
"properties": {
"down": "false",
"east": "true",
@@ -195232,7 +201431,7 @@
}
},
{
- "id": 6656,
+ "id": 6886,
"properties": {
"down": "false",
"east": "true",
@@ -195243,7 +201442,7 @@
}
},
{
- "id": 6657,
+ "id": 6887,
"properties": {
"down": "false",
"east": "true",
@@ -195254,7 +201453,7 @@
}
},
{
- "id": 6658,
+ "id": 6888,
"properties": {
"down": "false",
"east": "true",
@@ -195265,7 +201464,7 @@
}
},
{
- "id": 6659,
+ "id": 6889,
"properties": {
"down": "false",
"east": "true",
@@ -195276,7 +201475,7 @@
}
},
{
- "id": 6660,
+ "id": 6890,
"properties": {
"down": "false",
"east": "true",
@@ -195287,7 +201486,7 @@
}
},
{
- "id": 6661,
+ "id": 6891,
"properties": {
"down": "false",
"east": "false",
@@ -195298,7 +201497,7 @@
}
},
{
- "id": 6662,
+ "id": 6892,
"properties": {
"down": "false",
"east": "false",
@@ -195309,7 +201508,7 @@
}
},
{
- "id": 6663,
+ "id": 6893,
"properties": {
"down": "false",
"east": "false",
@@ -195320,7 +201519,7 @@
}
},
{
- "id": 6664,
+ "id": 6894,
"properties": {
"down": "false",
"east": "false",
@@ -195331,7 +201530,7 @@
}
},
{
- "id": 6665,
+ "id": 6895,
"properties": {
"down": "false",
"east": "false",
@@ -195342,7 +201541,7 @@
}
},
{
- "id": 6666,
+ "id": 6896,
"properties": {
"down": "false",
"east": "false",
@@ -195353,7 +201552,7 @@
}
},
{
- "id": 6667,
+ "id": 6897,
"properties": {
"down": "false",
"east": "false",
@@ -195364,7 +201563,7 @@
}
},
{
- "id": 6668,
+ "id": 6898,
"properties": {
"down": "false",
"east": "false",
@@ -195375,7 +201574,7 @@
}
},
{
- "id": 6669,
+ "id": 6899,
"properties": {
"down": "false",
"east": "false",
@@ -195386,7 +201585,7 @@
}
},
{
- "id": 6670,
+ "id": 6900,
"properties": {
"down": "false",
"east": "false",
@@ -195397,7 +201596,7 @@
}
},
{
- "id": 6671,
+ "id": 6901,
"properties": {
"down": "false",
"east": "false",
@@ -195408,7 +201607,7 @@
}
},
{
- "id": 6672,
+ "id": 6902,
"properties": {
"down": "false",
"east": "false",
@@ -195419,7 +201618,7 @@
}
},
{
- "id": 6673,
+ "id": 6903,
"properties": {
"down": "false",
"east": "false",
@@ -195430,7 +201629,7 @@
}
},
{
- "id": 6674,
+ "id": 6904,
"properties": {
"down": "false",
"east": "false",
@@ -195441,7 +201640,7 @@
}
},
{
- "id": 6675,
+ "id": 6905,
"properties": {
"down": "false",
"east": "false",
@@ -195452,7 +201651,7 @@
}
},
{
- "id": 6676,
+ "id": 6906,
"properties": {
"down": "false",
"east": "false",
@@ -195482,21 +201681,21 @@
},
"states": [
{
- "id": 14142,
+ "id": 14611,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 14143,
+ "id": 14612,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 14144,
+ "id": 14613,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -195504,21 +201703,21 @@
},
{
"default": true,
- "id": 14145,
+ "id": 14614,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 14146,
+ "id": 14615,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 14147,
+ "id": 14616,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -195559,7 +201758,7 @@
},
"states": [
{
- "id": 13842,
+ "id": 14311,
"properties": {
"facing": "north",
"half": "top",
@@ -195568,7 +201767,7 @@
}
},
{
- "id": 13843,
+ "id": 14312,
"properties": {
"facing": "north",
"half": "top",
@@ -195577,7 +201776,7 @@
}
},
{
- "id": 13844,
+ "id": 14313,
"properties": {
"facing": "north",
"half": "top",
@@ -195586,7 +201785,7 @@
}
},
{
- "id": 13845,
+ "id": 14314,
"properties": {
"facing": "north",
"half": "top",
@@ -195595,7 +201794,7 @@
}
},
{
- "id": 13846,
+ "id": 14315,
"properties": {
"facing": "north",
"half": "top",
@@ -195604,7 +201803,7 @@
}
},
{
- "id": 13847,
+ "id": 14316,
"properties": {
"facing": "north",
"half": "top",
@@ -195613,7 +201812,7 @@
}
},
{
- "id": 13848,
+ "id": 14317,
"properties": {
"facing": "north",
"half": "top",
@@ -195622,7 +201821,7 @@
}
},
{
- "id": 13849,
+ "id": 14318,
"properties": {
"facing": "north",
"half": "top",
@@ -195631,7 +201830,7 @@
}
},
{
- "id": 13850,
+ "id": 14319,
"properties": {
"facing": "north",
"half": "top",
@@ -195640,7 +201839,7 @@
}
},
{
- "id": 13851,
+ "id": 14320,
"properties": {
"facing": "north",
"half": "top",
@@ -195649,7 +201848,7 @@
}
},
{
- "id": 13852,
+ "id": 14321,
"properties": {
"facing": "north",
"half": "bottom",
@@ -195659,7 +201858,7 @@
},
{
"default": true,
- "id": 13853,
+ "id": 14322,
"properties": {
"facing": "north",
"half": "bottom",
@@ -195668,7 +201867,7 @@
}
},
{
- "id": 13854,
+ "id": 14323,
"properties": {
"facing": "north",
"half": "bottom",
@@ -195677,7 +201876,7 @@
}
},
{
- "id": 13855,
+ "id": 14324,
"properties": {
"facing": "north",
"half": "bottom",
@@ -195686,7 +201885,7 @@
}
},
{
- "id": 13856,
+ "id": 14325,
"properties": {
"facing": "north",
"half": "bottom",
@@ -195695,7 +201894,7 @@
}
},
{
- "id": 13857,
+ "id": 14326,
"properties": {
"facing": "north",
"half": "bottom",
@@ -195704,7 +201903,7 @@
}
},
{
- "id": 13858,
+ "id": 14327,
"properties": {
"facing": "north",
"half": "bottom",
@@ -195713,7 +201912,7 @@
}
},
{
- "id": 13859,
+ "id": 14328,
"properties": {
"facing": "north",
"half": "bottom",
@@ -195722,7 +201921,7 @@
}
},
{
- "id": 13860,
+ "id": 14329,
"properties": {
"facing": "north",
"half": "bottom",
@@ -195731,7 +201930,7 @@
}
},
{
- "id": 13861,
+ "id": 14330,
"properties": {
"facing": "north",
"half": "bottom",
@@ -195740,7 +201939,7 @@
}
},
{
- "id": 13862,
+ "id": 14331,
"properties": {
"facing": "south",
"half": "top",
@@ -195749,7 +201948,7 @@
}
},
{
- "id": 13863,
+ "id": 14332,
"properties": {
"facing": "south",
"half": "top",
@@ -195758,7 +201957,7 @@
}
},
{
- "id": 13864,
+ "id": 14333,
"properties": {
"facing": "south",
"half": "top",
@@ -195767,7 +201966,7 @@
}
},
{
- "id": 13865,
+ "id": 14334,
"properties": {
"facing": "south",
"half": "top",
@@ -195776,7 +201975,7 @@
}
},
{
- "id": 13866,
+ "id": 14335,
"properties": {
"facing": "south",
"half": "top",
@@ -195785,7 +201984,7 @@
}
},
{
- "id": 13867,
+ "id": 14336,
"properties": {
"facing": "south",
"half": "top",
@@ -195794,7 +201993,7 @@
}
},
{
- "id": 13868,
+ "id": 14337,
"properties": {
"facing": "south",
"half": "top",
@@ -195803,7 +202002,7 @@
}
},
{
- "id": 13869,
+ "id": 14338,
"properties": {
"facing": "south",
"half": "top",
@@ -195812,7 +202011,7 @@
}
},
{
- "id": 13870,
+ "id": 14339,
"properties": {
"facing": "south",
"half": "top",
@@ -195821,7 +202020,7 @@
}
},
{
- "id": 13871,
+ "id": 14340,
"properties": {
"facing": "south",
"half": "top",
@@ -195830,7 +202029,7 @@
}
},
{
- "id": 13872,
+ "id": 14341,
"properties": {
"facing": "south",
"half": "bottom",
@@ -195839,7 +202038,7 @@
}
},
{
- "id": 13873,
+ "id": 14342,
"properties": {
"facing": "south",
"half": "bottom",
@@ -195848,7 +202047,7 @@
}
},
{
- "id": 13874,
+ "id": 14343,
"properties": {
"facing": "south",
"half": "bottom",
@@ -195857,7 +202056,7 @@
}
},
{
- "id": 13875,
+ "id": 14344,
"properties": {
"facing": "south",
"half": "bottom",
@@ -195866,7 +202065,7 @@
}
},
{
- "id": 13876,
+ "id": 14345,
"properties": {
"facing": "south",
"half": "bottom",
@@ -195875,7 +202074,7 @@
}
},
{
- "id": 13877,
+ "id": 14346,
"properties": {
"facing": "south",
"half": "bottom",
@@ -195884,7 +202083,7 @@
}
},
{
- "id": 13878,
+ "id": 14347,
"properties": {
"facing": "south",
"half": "bottom",
@@ -195893,7 +202092,7 @@
}
},
{
- "id": 13879,
+ "id": 14348,
"properties": {
"facing": "south",
"half": "bottom",
@@ -195902,7 +202101,7 @@
}
},
{
- "id": 13880,
+ "id": 14349,
"properties": {
"facing": "south",
"half": "bottom",
@@ -195911,7 +202110,7 @@
}
},
{
- "id": 13881,
+ "id": 14350,
"properties": {
"facing": "south",
"half": "bottom",
@@ -195920,7 +202119,7 @@
}
},
{
- "id": 13882,
+ "id": 14351,
"properties": {
"facing": "west",
"half": "top",
@@ -195929,7 +202128,7 @@
}
},
{
- "id": 13883,
+ "id": 14352,
"properties": {
"facing": "west",
"half": "top",
@@ -195938,7 +202137,7 @@
}
},
{
- "id": 13884,
+ "id": 14353,
"properties": {
"facing": "west",
"half": "top",
@@ -195947,7 +202146,7 @@
}
},
{
- "id": 13885,
+ "id": 14354,
"properties": {
"facing": "west",
"half": "top",
@@ -195956,7 +202155,7 @@
}
},
{
- "id": 13886,
+ "id": 14355,
"properties": {
"facing": "west",
"half": "top",
@@ -195965,7 +202164,7 @@
}
},
{
- "id": 13887,
+ "id": 14356,
"properties": {
"facing": "west",
"half": "top",
@@ -195974,7 +202173,7 @@
}
},
{
- "id": 13888,
+ "id": 14357,
"properties": {
"facing": "west",
"half": "top",
@@ -195983,7 +202182,7 @@
}
},
{
- "id": 13889,
+ "id": 14358,
"properties": {
"facing": "west",
"half": "top",
@@ -195992,7 +202191,7 @@
}
},
{
- "id": 13890,
+ "id": 14359,
"properties": {
"facing": "west",
"half": "top",
@@ -196001,7 +202200,7 @@
}
},
{
- "id": 13891,
+ "id": 14360,
"properties": {
"facing": "west",
"half": "top",
@@ -196010,7 +202209,7 @@
}
},
{
- "id": 13892,
+ "id": 14361,
"properties": {
"facing": "west",
"half": "bottom",
@@ -196019,7 +202218,7 @@
}
},
{
- "id": 13893,
+ "id": 14362,
"properties": {
"facing": "west",
"half": "bottom",
@@ -196028,7 +202227,7 @@
}
},
{
- "id": 13894,
+ "id": 14363,
"properties": {
"facing": "west",
"half": "bottom",
@@ -196037,7 +202236,7 @@
}
},
{
- "id": 13895,
+ "id": 14364,
"properties": {
"facing": "west",
"half": "bottom",
@@ -196046,7 +202245,7 @@
}
},
{
- "id": 13896,
+ "id": 14365,
"properties": {
"facing": "west",
"half": "bottom",
@@ -196055,7 +202254,7 @@
}
},
{
- "id": 13897,
+ "id": 14366,
"properties": {
"facing": "west",
"half": "bottom",
@@ -196064,7 +202263,7 @@
}
},
{
- "id": 13898,
+ "id": 14367,
"properties": {
"facing": "west",
"half": "bottom",
@@ -196073,7 +202272,7 @@
}
},
{
- "id": 13899,
+ "id": 14368,
"properties": {
"facing": "west",
"half": "bottom",
@@ -196082,7 +202281,7 @@
}
},
{
- "id": 13900,
+ "id": 14369,
"properties": {
"facing": "west",
"half": "bottom",
@@ -196091,7 +202290,7 @@
}
},
{
- "id": 13901,
+ "id": 14370,
"properties": {
"facing": "west",
"half": "bottom",
@@ -196100,7 +202299,7 @@
}
},
{
- "id": 13902,
+ "id": 14371,
"properties": {
"facing": "east",
"half": "top",
@@ -196109,7 +202308,7 @@
}
},
{
- "id": 13903,
+ "id": 14372,
"properties": {
"facing": "east",
"half": "top",
@@ -196118,7 +202317,7 @@
}
},
{
- "id": 13904,
+ "id": 14373,
"properties": {
"facing": "east",
"half": "top",
@@ -196127,7 +202326,7 @@
}
},
{
- "id": 13905,
+ "id": 14374,
"properties": {
"facing": "east",
"half": "top",
@@ -196136,7 +202335,7 @@
}
},
{
- "id": 13906,
+ "id": 14375,
"properties": {
"facing": "east",
"half": "top",
@@ -196145,7 +202344,7 @@
}
},
{
- "id": 13907,
+ "id": 14376,
"properties": {
"facing": "east",
"half": "top",
@@ -196154,7 +202353,7 @@
}
},
{
- "id": 13908,
+ "id": 14377,
"properties": {
"facing": "east",
"half": "top",
@@ -196163,7 +202362,7 @@
}
},
{
- "id": 13909,
+ "id": 14378,
"properties": {
"facing": "east",
"half": "top",
@@ -196172,7 +202371,7 @@
}
},
{
- "id": 13910,
+ "id": 14379,
"properties": {
"facing": "east",
"half": "top",
@@ -196181,7 +202380,7 @@
}
},
{
- "id": 13911,
+ "id": 14380,
"properties": {
"facing": "east",
"half": "top",
@@ -196190,7 +202389,7 @@
}
},
{
- "id": 13912,
+ "id": 14381,
"properties": {
"facing": "east",
"half": "bottom",
@@ -196199,7 +202398,7 @@
}
},
{
- "id": 13913,
+ "id": 14382,
"properties": {
"facing": "east",
"half": "bottom",
@@ -196208,7 +202407,7 @@
}
},
{
- "id": 13914,
+ "id": 14383,
"properties": {
"facing": "east",
"half": "bottom",
@@ -196217,7 +202416,7 @@
}
},
{
- "id": 13915,
+ "id": 14384,
"properties": {
"facing": "east",
"half": "bottom",
@@ -196226,7 +202425,7 @@
}
},
{
- "id": 13916,
+ "id": 14385,
"properties": {
"facing": "east",
"half": "bottom",
@@ -196235,7 +202434,7 @@
}
},
{
- "id": 13917,
+ "id": 14386,
"properties": {
"facing": "east",
"half": "bottom",
@@ -196244,7 +202443,7 @@
}
},
{
- "id": 13918,
+ "id": 14387,
"properties": {
"facing": "east",
"half": "bottom",
@@ -196253,7 +202452,7 @@
}
},
{
- "id": 13919,
+ "id": 14388,
"properties": {
"facing": "east",
"half": "bottom",
@@ -196262,7 +202461,7 @@
}
},
{
- "id": 13920,
+ "id": 14389,
"properties": {
"facing": "east",
"half": "bottom",
@@ -196271,7 +202470,7 @@
}
},
{
- "id": 13921,
+ "id": 14390,
"properties": {
"facing": "east",
"half": "bottom",
@@ -196318,7 +202517,7 @@
},
"states": [
{
- "id": 17076,
+ "id": 17545,
"properties": {
"east": "none",
"north": "none",
@@ -196329,7 +202528,7 @@
}
},
{
- "id": 17077,
+ "id": 17546,
"properties": {
"east": "none",
"north": "none",
@@ -196340,7 +202539,7 @@
}
},
{
- "id": 17078,
+ "id": 17547,
"properties": {
"east": "none",
"north": "none",
@@ -196352,7 +202551,7 @@
},
{
"default": true,
- "id": 17079,
+ "id": 17548,
"properties": {
"east": "none",
"north": "none",
@@ -196363,7 +202562,7 @@
}
},
{
- "id": 17080,
+ "id": 17549,
"properties": {
"east": "none",
"north": "none",
@@ -196374,7 +202573,7 @@
}
},
{
- "id": 17081,
+ "id": 17550,
"properties": {
"east": "none",
"north": "none",
@@ -196385,7 +202584,7 @@
}
},
{
- "id": 17082,
+ "id": 17551,
"properties": {
"east": "none",
"north": "none",
@@ -196396,7 +202595,7 @@
}
},
{
- "id": 17083,
+ "id": 17552,
"properties": {
"east": "none",
"north": "none",
@@ -196407,7 +202606,7 @@
}
},
{
- "id": 17084,
+ "id": 17553,
"properties": {
"east": "none",
"north": "none",
@@ -196418,7 +202617,7 @@
}
},
{
- "id": 17085,
+ "id": 17554,
"properties": {
"east": "none",
"north": "none",
@@ -196429,7 +202628,7 @@
}
},
{
- "id": 17086,
+ "id": 17555,
"properties": {
"east": "none",
"north": "none",
@@ -196440,7 +202639,7 @@
}
},
{
- "id": 17087,
+ "id": 17556,
"properties": {
"east": "none",
"north": "none",
@@ -196451,7 +202650,7 @@
}
},
{
- "id": 17088,
+ "id": 17557,
"properties": {
"east": "none",
"north": "none",
@@ -196462,7 +202661,7 @@
}
},
{
- "id": 17089,
+ "id": 17558,
"properties": {
"east": "none",
"north": "none",
@@ -196473,7 +202672,7 @@
}
},
{
- "id": 17090,
+ "id": 17559,
"properties": {
"east": "none",
"north": "none",
@@ -196484,7 +202683,7 @@
}
},
{
- "id": 17091,
+ "id": 17560,
"properties": {
"east": "none",
"north": "none",
@@ -196495,7 +202694,7 @@
}
},
{
- "id": 17092,
+ "id": 17561,
"properties": {
"east": "none",
"north": "none",
@@ -196506,7 +202705,7 @@
}
},
{
- "id": 17093,
+ "id": 17562,
"properties": {
"east": "none",
"north": "none",
@@ -196517,7 +202716,7 @@
}
},
{
- "id": 17094,
+ "id": 17563,
"properties": {
"east": "none",
"north": "none",
@@ -196528,7 +202727,7 @@
}
},
{
- "id": 17095,
+ "id": 17564,
"properties": {
"east": "none",
"north": "none",
@@ -196539,7 +202738,7 @@
}
},
{
- "id": 17096,
+ "id": 17565,
"properties": {
"east": "none",
"north": "none",
@@ -196550,7 +202749,7 @@
}
},
{
- "id": 17097,
+ "id": 17566,
"properties": {
"east": "none",
"north": "none",
@@ -196561,7 +202760,7 @@
}
},
{
- "id": 17098,
+ "id": 17567,
"properties": {
"east": "none",
"north": "none",
@@ -196572,7 +202771,7 @@
}
},
{
- "id": 17099,
+ "id": 17568,
"properties": {
"east": "none",
"north": "none",
@@ -196583,7 +202782,7 @@
}
},
{
- "id": 17100,
+ "id": 17569,
"properties": {
"east": "none",
"north": "none",
@@ -196594,7 +202793,7 @@
}
},
{
- "id": 17101,
+ "id": 17570,
"properties": {
"east": "none",
"north": "none",
@@ -196605,7 +202804,7 @@
}
},
{
- "id": 17102,
+ "id": 17571,
"properties": {
"east": "none",
"north": "none",
@@ -196616,7 +202815,7 @@
}
},
{
- "id": 17103,
+ "id": 17572,
"properties": {
"east": "none",
"north": "none",
@@ -196627,7 +202826,7 @@
}
},
{
- "id": 17104,
+ "id": 17573,
"properties": {
"east": "none",
"north": "none",
@@ -196638,7 +202837,7 @@
}
},
{
- "id": 17105,
+ "id": 17574,
"properties": {
"east": "none",
"north": "none",
@@ -196649,7 +202848,7 @@
}
},
{
- "id": 17106,
+ "id": 17575,
"properties": {
"east": "none",
"north": "none",
@@ -196660,7 +202859,7 @@
}
},
{
- "id": 17107,
+ "id": 17576,
"properties": {
"east": "none",
"north": "none",
@@ -196671,7 +202870,7 @@
}
},
{
- "id": 17108,
+ "id": 17577,
"properties": {
"east": "none",
"north": "none",
@@ -196682,7 +202881,7 @@
}
},
{
- "id": 17109,
+ "id": 17578,
"properties": {
"east": "none",
"north": "none",
@@ -196693,7 +202892,7 @@
}
},
{
- "id": 17110,
+ "id": 17579,
"properties": {
"east": "none",
"north": "none",
@@ -196704,7 +202903,7 @@
}
},
{
- "id": 17111,
+ "id": 17580,
"properties": {
"east": "none",
"north": "none",
@@ -196715,7 +202914,7 @@
}
},
{
- "id": 17112,
+ "id": 17581,
"properties": {
"east": "none",
"north": "low",
@@ -196726,7 +202925,7 @@
}
},
{
- "id": 17113,
+ "id": 17582,
"properties": {
"east": "none",
"north": "low",
@@ -196737,7 +202936,7 @@
}
},
{
- "id": 17114,
+ "id": 17583,
"properties": {
"east": "none",
"north": "low",
@@ -196748,7 +202947,7 @@
}
},
{
- "id": 17115,
+ "id": 17584,
"properties": {
"east": "none",
"north": "low",
@@ -196759,7 +202958,7 @@
}
},
{
- "id": 17116,
+ "id": 17585,
"properties": {
"east": "none",
"north": "low",
@@ -196770,7 +202969,7 @@
}
},
{
- "id": 17117,
+ "id": 17586,
"properties": {
"east": "none",
"north": "low",
@@ -196781,7 +202980,7 @@
}
},
{
- "id": 17118,
+ "id": 17587,
"properties": {
"east": "none",
"north": "low",
@@ -196792,7 +202991,7 @@
}
},
{
- "id": 17119,
+ "id": 17588,
"properties": {
"east": "none",
"north": "low",
@@ -196803,7 +203002,7 @@
}
},
{
- "id": 17120,
+ "id": 17589,
"properties": {
"east": "none",
"north": "low",
@@ -196814,7 +203013,7 @@
}
},
{
- "id": 17121,
+ "id": 17590,
"properties": {
"east": "none",
"north": "low",
@@ -196825,7 +203024,7 @@
}
},
{
- "id": 17122,
+ "id": 17591,
"properties": {
"east": "none",
"north": "low",
@@ -196836,7 +203035,7 @@
}
},
{
- "id": 17123,
+ "id": 17592,
"properties": {
"east": "none",
"north": "low",
@@ -196847,7 +203046,7 @@
}
},
{
- "id": 17124,
+ "id": 17593,
"properties": {
"east": "none",
"north": "low",
@@ -196858,7 +203057,7 @@
}
},
{
- "id": 17125,
+ "id": 17594,
"properties": {
"east": "none",
"north": "low",
@@ -196869,7 +203068,7 @@
}
},
{
- "id": 17126,
+ "id": 17595,
"properties": {
"east": "none",
"north": "low",
@@ -196880,7 +203079,7 @@
}
},
{
- "id": 17127,
+ "id": 17596,
"properties": {
"east": "none",
"north": "low",
@@ -196891,7 +203090,7 @@
}
},
{
- "id": 17128,
+ "id": 17597,
"properties": {
"east": "none",
"north": "low",
@@ -196902,7 +203101,7 @@
}
},
{
- "id": 17129,
+ "id": 17598,
"properties": {
"east": "none",
"north": "low",
@@ -196913,7 +203112,7 @@
}
},
{
- "id": 17130,
+ "id": 17599,
"properties": {
"east": "none",
"north": "low",
@@ -196924,7 +203123,7 @@
}
},
{
- "id": 17131,
+ "id": 17600,
"properties": {
"east": "none",
"north": "low",
@@ -196935,7 +203134,7 @@
}
},
{
- "id": 17132,
+ "id": 17601,
"properties": {
"east": "none",
"north": "low",
@@ -196946,7 +203145,7 @@
}
},
{
- "id": 17133,
+ "id": 17602,
"properties": {
"east": "none",
"north": "low",
@@ -196957,7 +203156,7 @@
}
},
{
- "id": 17134,
+ "id": 17603,
"properties": {
"east": "none",
"north": "low",
@@ -196968,7 +203167,7 @@
}
},
{
- "id": 17135,
+ "id": 17604,
"properties": {
"east": "none",
"north": "low",
@@ -196979,7 +203178,7 @@
}
},
{
- "id": 17136,
+ "id": 17605,
"properties": {
"east": "none",
"north": "low",
@@ -196990,7 +203189,7 @@
}
},
{
- "id": 17137,
+ "id": 17606,
"properties": {
"east": "none",
"north": "low",
@@ -197001,7 +203200,7 @@
}
},
{
- "id": 17138,
+ "id": 17607,
"properties": {
"east": "none",
"north": "low",
@@ -197012,7 +203211,7 @@
}
},
{
- "id": 17139,
+ "id": 17608,
"properties": {
"east": "none",
"north": "low",
@@ -197023,7 +203222,7 @@
}
},
{
- "id": 17140,
+ "id": 17609,
"properties": {
"east": "none",
"north": "low",
@@ -197034,7 +203233,7 @@
}
},
{
- "id": 17141,
+ "id": 17610,
"properties": {
"east": "none",
"north": "low",
@@ -197045,7 +203244,7 @@
}
},
{
- "id": 17142,
+ "id": 17611,
"properties": {
"east": "none",
"north": "low",
@@ -197056,7 +203255,7 @@
}
},
{
- "id": 17143,
+ "id": 17612,
"properties": {
"east": "none",
"north": "low",
@@ -197067,7 +203266,7 @@
}
},
{
- "id": 17144,
+ "id": 17613,
"properties": {
"east": "none",
"north": "low",
@@ -197078,7 +203277,7 @@
}
},
{
- "id": 17145,
+ "id": 17614,
"properties": {
"east": "none",
"north": "low",
@@ -197089,7 +203288,7 @@
}
},
{
- "id": 17146,
+ "id": 17615,
"properties": {
"east": "none",
"north": "low",
@@ -197100,7 +203299,7 @@
}
},
{
- "id": 17147,
+ "id": 17616,
"properties": {
"east": "none",
"north": "low",
@@ -197111,7 +203310,7 @@
}
},
{
- "id": 17148,
+ "id": 17617,
"properties": {
"east": "none",
"north": "tall",
@@ -197122,7 +203321,7 @@
}
},
{
- "id": 17149,
+ "id": 17618,
"properties": {
"east": "none",
"north": "tall",
@@ -197133,7 +203332,7 @@
}
},
{
- "id": 17150,
+ "id": 17619,
"properties": {
"east": "none",
"north": "tall",
@@ -197144,7 +203343,7 @@
}
},
{
- "id": 17151,
+ "id": 17620,
"properties": {
"east": "none",
"north": "tall",
@@ -197155,7 +203354,7 @@
}
},
{
- "id": 17152,
+ "id": 17621,
"properties": {
"east": "none",
"north": "tall",
@@ -197166,7 +203365,7 @@
}
},
{
- "id": 17153,
+ "id": 17622,
"properties": {
"east": "none",
"north": "tall",
@@ -197177,7 +203376,7 @@
}
},
{
- "id": 17154,
+ "id": 17623,
"properties": {
"east": "none",
"north": "tall",
@@ -197188,7 +203387,7 @@
}
},
{
- "id": 17155,
+ "id": 17624,
"properties": {
"east": "none",
"north": "tall",
@@ -197199,7 +203398,7 @@
}
},
{
- "id": 17156,
+ "id": 17625,
"properties": {
"east": "none",
"north": "tall",
@@ -197210,7 +203409,7 @@
}
},
{
- "id": 17157,
+ "id": 17626,
"properties": {
"east": "none",
"north": "tall",
@@ -197221,7 +203420,7 @@
}
},
{
- "id": 17158,
+ "id": 17627,
"properties": {
"east": "none",
"north": "tall",
@@ -197232,7 +203431,7 @@
}
},
{
- "id": 17159,
+ "id": 17628,
"properties": {
"east": "none",
"north": "tall",
@@ -197243,7 +203442,7 @@
}
},
{
- "id": 17160,
+ "id": 17629,
"properties": {
"east": "none",
"north": "tall",
@@ -197254,7 +203453,7 @@
}
},
{
- "id": 17161,
+ "id": 17630,
"properties": {
"east": "none",
"north": "tall",
@@ -197265,7 +203464,7 @@
}
},
{
- "id": 17162,
+ "id": 17631,
"properties": {
"east": "none",
"north": "tall",
@@ -197276,7 +203475,7 @@
}
},
{
- "id": 17163,
+ "id": 17632,
"properties": {
"east": "none",
"north": "tall",
@@ -197287,7 +203486,7 @@
}
},
{
- "id": 17164,
+ "id": 17633,
"properties": {
"east": "none",
"north": "tall",
@@ -197298,7 +203497,7 @@
}
},
{
- "id": 17165,
+ "id": 17634,
"properties": {
"east": "none",
"north": "tall",
@@ -197309,7 +203508,7 @@
}
},
{
- "id": 17166,
+ "id": 17635,
"properties": {
"east": "none",
"north": "tall",
@@ -197320,7 +203519,7 @@
}
},
{
- "id": 17167,
+ "id": 17636,
"properties": {
"east": "none",
"north": "tall",
@@ -197331,7 +203530,7 @@
}
},
{
- "id": 17168,
+ "id": 17637,
"properties": {
"east": "none",
"north": "tall",
@@ -197342,7 +203541,7 @@
}
},
{
- "id": 17169,
+ "id": 17638,
"properties": {
"east": "none",
"north": "tall",
@@ -197353,7 +203552,7 @@
}
},
{
- "id": 17170,
+ "id": 17639,
"properties": {
"east": "none",
"north": "tall",
@@ -197364,7 +203563,7 @@
}
},
{
- "id": 17171,
+ "id": 17640,
"properties": {
"east": "none",
"north": "tall",
@@ -197375,7 +203574,7 @@
}
},
{
- "id": 17172,
+ "id": 17641,
"properties": {
"east": "none",
"north": "tall",
@@ -197386,7 +203585,7 @@
}
},
{
- "id": 17173,
+ "id": 17642,
"properties": {
"east": "none",
"north": "tall",
@@ -197397,7 +203596,7 @@
}
},
{
- "id": 17174,
+ "id": 17643,
"properties": {
"east": "none",
"north": "tall",
@@ -197408,7 +203607,7 @@
}
},
{
- "id": 17175,
+ "id": 17644,
"properties": {
"east": "none",
"north": "tall",
@@ -197419,7 +203618,7 @@
}
},
{
- "id": 17176,
+ "id": 17645,
"properties": {
"east": "none",
"north": "tall",
@@ -197430,7 +203629,7 @@
}
},
{
- "id": 17177,
+ "id": 17646,
"properties": {
"east": "none",
"north": "tall",
@@ -197441,7 +203640,7 @@
}
},
{
- "id": 17178,
+ "id": 17647,
"properties": {
"east": "none",
"north": "tall",
@@ -197452,7 +203651,7 @@
}
},
{
- "id": 17179,
+ "id": 17648,
"properties": {
"east": "none",
"north": "tall",
@@ -197463,7 +203662,7 @@
}
},
{
- "id": 17180,
+ "id": 17649,
"properties": {
"east": "none",
"north": "tall",
@@ -197474,7 +203673,7 @@
}
},
{
- "id": 17181,
+ "id": 17650,
"properties": {
"east": "none",
"north": "tall",
@@ -197485,7 +203684,7 @@
}
},
{
- "id": 17182,
+ "id": 17651,
"properties": {
"east": "none",
"north": "tall",
@@ -197496,7 +203695,7 @@
}
},
{
- "id": 17183,
+ "id": 17652,
"properties": {
"east": "none",
"north": "tall",
@@ -197507,7 +203706,7 @@
}
},
{
- "id": 17184,
+ "id": 17653,
"properties": {
"east": "low",
"north": "none",
@@ -197518,7 +203717,7 @@
}
},
{
- "id": 17185,
+ "id": 17654,
"properties": {
"east": "low",
"north": "none",
@@ -197529,7 +203728,7 @@
}
},
{
- "id": 17186,
+ "id": 17655,
"properties": {
"east": "low",
"north": "none",
@@ -197540,7 +203739,7 @@
}
},
{
- "id": 17187,
+ "id": 17656,
"properties": {
"east": "low",
"north": "none",
@@ -197551,7 +203750,7 @@
}
},
{
- "id": 17188,
+ "id": 17657,
"properties": {
"east": "low",
"north": "none",
@@ -197562,7 +203761,7 @@
}
},
{
- "id": 17189,
+ "id": 17658,
"properties": {
"east": "low",
"north": "none",
@@ -197573,7 +203772,7 @@
}
},
{
- "id": 17190,
+ "id": 17659,
"properties": {
"east": "low",
"north": "none",
@@ -197584,7 +203783,7 @@
}
},
{
- "id": 17191,
+ "id": 17660,
"properties": {
"east": "low",
"north": "none",
@@ -197595,7 +203794,7 @@
}
},
{
- "id": 17192,
+ "id": 17661,
"properties": {
"east": "low",
"north": "none",
@@ -197606,7 +203805,7 @@
}
},
{
- "id": 17193,
+ "id": 17662,
"properties": {
"east": "low",
"north": "none",
@@ -197617,7 +203816,7 @@
}
},
{
- "id": 17194,
+ "id": 17663,
"properties": {
"east": "low",
"north": "none",
@@ -197628,7 +203827,7 @@
}
},
{
- "id": 17195,
+ "id": 17664,
"properties": {
"east": "low",
"north": "none",
@@ -197639,7 +203838,7 @@
}
},
{
- "id": 17196,
+ "id": 17665,
"properties": {
"east": "low",
"north": "none",
@@ -197650,7 +203849,7 @@
}
},
{
- "id": 17197,
+ "id": 17666,
"properties": {
"east": "low",
"north": "none",
@@ -197661,7 +203860,7 @@
}
},
{
- "id": 17198,
+ "id": 17667,
"properties": {
"east": "low",
"north": "none",
@@ -197672,7 +203871,7 @@
}
},
{
- "id": 17199,
+ "id": 17668,
"properties": {
"east": "low",
"north": "none",
@@ -197683,7 +203882,7 @@
}
},
{
- "id": 17200,
+ "id": 17669,
"properties": {
"east": "low",
"north": "none",
@@ -197694,7 +203893,7 @@
}
},
{
- "id": 17201,
+ "id": 17670,
"properties": {
"east": "low",
"north": "none",
@@ -197705,7 +203904,7 @@
}
},
{
- "id": 17202,
+ "id": 17671,
"properties": {
"east": "low",
"north": "none",
@@ -197716,7 +203915,7 @@
}
},
{
- "id": 17203,
+ "id": 17672,
"properties": {
"east": "low",
"north": "none",
@@ -197727,7 +203926,7 @@
}
},
{
- "id": 17204,
+ "id": 17673,
"properties": {
"east": "low",
"north": "none",
@@ -197738,7 +203937,7 @@
}
},
{
- "id": 17205,
+ "id": 17674,
"properties": {
"east": "low",
"north": "none",
@@ -197749,7 +203948,7 @@
}
},
{
- "id": 17206,
+ "id": 17675,
"properties": {
"east": "low",
"north": "none",
@@ -197760,7 +203959,7 @@
}
},
{
- "id": 17207,
+ "id": 17676,
"properties": {
"east": "low",
"north": "none",
@@ -197771,7 +203970,7 @@
}
},
{
- "id": 17208,
+ "id": 17677,
"properties": {
"east": "low",
"north": "none",
@@ -197782,7 +203981,7 @@
}
},
{
- "id": 17209,
+ "id": 17678,
"properties": {
"east": "low",
"north": "none",
@@ -197793,7 +203992,7 @@
}
},
{
- "id": 17210,
+ "id": 17679,
"properties": {
"east": "low",
"north": "none",
@@ -197804,7 +204003,7 @@
}
},
{
- "id": 17211,
+ "id": 17680,
"properties": {
"east": "low",
"north": "none",
@@ -197815,7 +204014,7 @@
}
},
{
- "id": 17212,
+ "id": 17681,
"properties": {
"east": "low",
"north": "none",
@@ -197826,7 +204025,7 @@
}
},
{
- "id": 17213,
+ "id": 17682,
"properties": {
"east": "low",
"north": "none",
@@ -197837,7 +204036,7 @@
}
},
{
- "id": 17214,
+ "id": 17683,
"properties": {
"east": "low",
"north": "none",
@@ -197848,7 +204047,7 @@
}
},
{
- "id": 17215,
+ "id": 17684,
"properties": {
"east": "low",
"north": "none",
@@ -197859,7 +204058,7 @@
}
},
{
- "id": 17216,
+ "id": 17685,
"properties": {
"east": "low",
"north": "none",
@@ -197870,7 +204069,7 @@
}
},
{
- "id": 17217,
+ "id": 17686,
"properties": {
"east": "low",
"north": "none",
@@ -197881,7 +204080,7 @@
}
},
{
- "id": 17218,
+ "id": 17687,
"properties": {
"east": "low",
"north": "none",
@@ -197892,7 +204091,7 @@
}
},
{
- "id": 17219,
+ "id": 17688,
"properties": {
"east": "low",
"north": "none",
@@ -197903,7 +204102,7 @@
}
},
{
- "id": 17220,
+ "id": 17689,
"properties": {
"east": "low",
"north": "low",
@@ -197914,7 +204113,7 @@
}
},
{
- "id": 17221,
+ "id": 17690,
"properties": {
"east": "low",
"north": "low",
@@ -197925,7 +204124,7 @@
}
},
{
- "id": 17222,
+ "id": 17691,
"properties": {
"east": "low",
"north": "low",
@@ -197936,7 +204135,7 @@
}
},
{
- "id": 17223,
+ "id": 17692,
"properties": {
"east": "low",
"north": "low",
@@ -197947,7 +204146,7 @@
}
},
{
- "id": 17224,
+ "id": 17693,
"properties": {
"east": "low",
"north": "low",
@@ -197958,7 +204157,7 @@
}
},
{
- "id": 17225,
+ "id": 17694,
"properties": {
"east": "low",
"north": "low",
@@ -197969,7 +204168,7 @@
}
},
{
- "id": 17226,
+ "id": 17695,
"properties": {
"east": "low",
"north": "low",
@@ -197980,7 +204179,7 @@
}
},
{
- "id": 17227,
+ "id": 17696,
"properties": {
"east": "low",
"north": "low",
@@ -197991,7 +204190,7 @@
}
},
{
- "id": 17228,
+ "id": 17697,
"properties": {
"east": "low",
"north": "low",
@@ -198002,7 +204201,7 @@
}
},
{
- "id": 17229,
+ "id": 17698,
"properties": {
"east": "low",
"north": "low",
@@ -198013,7 +204212,7 @@
}
},
{
- "id": 17230,
+ "id": 17699,
"properties": {
"east": "low",
"north": "low",
@@ -198024,7 +204223,7 @@
}
},
{
- "id": 17231,
+ "id": 17700,
"properties": {
"east": "low",
"north": "low",
@@ -198035,7 +204234,7 @@
}
},
{
- "id": 17232,
+ "id": 17701,
"properties": {
"east": "low",
"north": "low",
@@ -198046,7 +204245,7 @@
}
},
{
- "id": 17233,
+ "id": 17702,
"properties": {
"east": "low",
"north": "low",
@@ -198057,7 +204256,7 @@
}
},
{
- "id": 17234,
+ "id": 17703,
"properties": {
"east": "low",
"north": "low",
@@ -198068,7 +204267,7 @@
}
},
{
- "id": 17235,
+ "id": 17704,
"properties": {
"east": "low",
"north": "low",
@@ -198079,7 +204278,7 @@
}
},
{
- "id": 17236,
+ "id": 17705,
"properties": {
"east": "low",
"north": "low",
@@ -198090,7 +204289,7 @@
}
},
{
- "id": 17237,
+ "id": 17706,
"properties": {
"east": "low",
"north": "low",
@@ -198101,7 +204300,7 @@
}
},
{
- "id": 17238,
+ "id": 17707,
"properties": {
"east": "low",
"north": "low",
@@ -198112,7 +204311,7 @@
}
},
{
- "id": 17239,
+ "id": 17708,
"properties": {
"east": "low",
"north": "low",
@@ -198123,7 +204322,7 @@
}
},
{
- "id": 17240,
+ "id": 17709,
"properties": {
"east": "low",
"north": "low",
@@ -198134,7 +204333,7 @@
}
},
{
- "id": 17241,
+ "id": 17710,
"properties": {
"east": "low",
"north": "low",
@@ -198145,7 +204344,7 @@
}
},
{
- "id": 17242,
+ "id": 17711,
"properties": {
"east": "low",
"north": "low",
@@ -198156,7 +204355,7 @@
}
},
{
- "id": 17243,
+ "id": 17712,
"properties": {
"east": "low",
"north": "low",
@@ -198167,7 +204366,7 @@
}
},
{
- "id": 17244,
+ "id": 17713,
"properties": {
"east": "low",
"north": "low",
@@ -198178,7 +204377,7 @@
}
},
{
- "id": 17245,
+ "id": 17714,
"properties": {
"east": "low",
"north": "low",
@@ -198189,7 +204388,7 @@
}
},
{
- "id": 17246,
+ "id": 17715,
"properties": {
"east": "low",
"north": "low",
@@ -198200,7 +204399,7 @@
}
},
{
- "id": 17247,
+ "id": 17716,
"properties": {
"east": "low",
"north": "low",
@@ -198211,7 +204410,7 @@
}
},
{
- "id": 17248,
+ "id": 17717,
"properties": {
"east": "low",
"north": "low",
@@ -198222,7 +204421,7 @@
}
},
{
- "id": 17249,
+ "id": 17718,
"properties": {
"east": "low",
"north": "low",
@@ -198233,7 +204432,7 @@
}
},
{
- "id": 17250,
+ "id": 17719,
"properties": {
"east": "low",
"north": "low",
@@ -198244,7 +204443,7 @@
}
},
{
- "id": 17251,
+ "id": 17720,
"properties": {
"east": "low",
"north": "low",
@@ -198255,7 +204454,7 @@
}
},
{
- "id": 17252,
+ "id": 17721,
"properties": {
"east": "low",
"north": "low",
@@ -198266,7 +204465,7 @@
}
},
{
- "id": 17253,
+ "id": 17722,
"properties": {
"east": "low",
"north": "low",
@@ -198277,7 +204476,7 @@
}
},
{
- "id": 17254,
+ "id": 17723,
"properties": {
"east": "low",
"north": "low",
@@ -198288,7 +204487,7 @@
}
},
{
- "id": 17255,
+ "id": 17724,
"properties": {
"east": "low",
"north": "low",
@@ -198299,7 +204498,7 @@
}
},
{
- "id": 17256,
+ "id": 17725,
"properties": {
"east": "low",
"north": "tall",
@@ -198310,7 +204509,7 @@
}
},
{
- "id": 17257,
+ "id": 17726,
"properties": {
"east": "low",
"north": "tall",
@@ -198321,7 +204520,7 @@
}
},
{
- "id": 17258,
+ "id": 17727,
"properties": {
"east": "low",
"north": "tall",
@@ -198332,7 +204531,7 @@
}
},
{
- "id": 17259,
+ "id": 17728,
"properties": {
"east": "low",
"north": "tall",
@@ -198343,7 +204542,7 @@
}
},
{
- "id": 17260,
+ "id": 17729,
"properties": {
"east": "low",
"north": "tall",
@@ -198354,7 +204553,7 @@
}
},
{
- "id": 17261,
+ "id": 17730,
"properties": {
"east": "low",
"north": "tall",
@@ -198365,7 +204564,7 @@
}
},
{
- "id": 17262,
+ "id": 17731,
"properties": {
"east": "low",
"north": "tall",
@@ -198376,7 +204575,7 @@
}
},
{
- "id": 17263,
+ "id": 17732,
"properties": {
"east": "low",
"north": "tall",
@@ -198387,7 +204586,7 @@
}
},
{
- "id": 17264,
+ "id": 17733,
"properties": {
"east": "low",
"north": "tall",
@@ -198398,7 +204597,7 @@
}
},
{
- "id": 17265,
+ "id": 17734,
"properties": {
"east": "low",
"north": "tall",
@@ -198409,7 +204608,7 @@
}
},
{
- "id": 17266,
+ "id": 17735,
"properties": {
"east": "low",
"north": "tall",
@@ -198420,7 +204619,7 @@
}
},
{
- "id": 17267,
+ "id": 17736,
"properties": {
"east": "low",
"north": "tall",
@@ -198431,7 +204630,7 @@
}
},
{
- "id": 17268,
+ "id": 17737,
"properties": {
"east": "low",
"north": "tall",
@@ -198442,7 +204641,7 @@
}
},
{
- "id": 17269,
+ "id": 17738,
"properties": {
"east": "low",
"north": "tall",
@@ -198453,7 +204652,7 @@
}
},
{
- "id": 17270,
+ "id": 17739,
"properties": {
"east": "low",
"north": "tall",
@@ -198464,7 +204663,7 @@
}
},
{
- "id": 17271,
+ "id": 17740,
"properties": {
"east": "low",
"north": "tall",
@@ -198475,7 +204674,7 @@
}
},
{
- "id": 17272,
+ "id": 17741,
"properties": {
"east": "low",
"north": "tall",
@@ -198486,7 +204685,7 @@
}
},
{
- "id": 17273,
+ "id": 17742,
"properties": {
"east": "low",
"north": "tall",
@@ -198497,7 +204696,7 @@
}
},
{
- "id": 17274,
+ "id": 17743,
"properties": {
"east": "low",
"north": "tall",
@@ -198508,7 +204707,7 @@
}
},
{
- "id": 17275,
+ "id": 17744,
"properties": {
"east": "low",
"north": "tall",
@@ -198519,7 +204718,7 @@
}
},
{
- "id": 17276,
+ "id": 17745,
"properties": {
"east": "low",
"north": "tall",
@@ -198530,7 +204729,7 @@
}
},
{
- "id": 17277,
+ "id": 17746,
"properties": {
"east": "low",
"north": "tall",
@@ -198541,7 +204740,7 @@
}
},
{
- "id": 17278,
+ "id": 17747,
"properties": {
"east": "low",
"north": "tall",
@@ -198552,7 +204751,7 @@
}
},
{
- "id": 17279,
+ "id": 17748,
"properties": {
"east": "low",
"north": "tall",
@@ -198563,7 +204762,7 @@
}
},
{
- "id": 17280,
+ "id": 17749,
"properties": {
"east": "low",
"north": "tall",
@@ -198574,7 +204773,7 @@
}
},
{
- "id": 17281,
+ "id": 17750,
"properties": {
"east": "low",
"north": "tall",
@@ -198585,7 +204784,7 @@
}
},
{
- "id": 17282,
+ "id": 17751,
"properties": {
"east": "low",
"north": "tall",
@@ -198596,7 +204795,7 @@
}
},
{
- "id": 17283,
+ "id": 17752,
"properties": {
"east": "low",
"north": "tall",
@@ -198607,7 +204806,7 @@
}
},
{
- "id": 17284,
+ "id": 17753,
"properties": {
"east": "low",
"north": "tall",
@@ -198618,7 +204817,7 @@
}
},
{
- "id": 17285,
+ "id": 17754,
"properties": {
"east": "low",
"north": "tall",
@@ -198629,7 +204828,7 @@
}
},
{
- "id": 17286,
+ "id": 17755,
"properties": {
"east": "low",
"north": "tall",
@@ -198640,7 +204839,7 @@
}
},
{
- "id": 17287,
+ "id": 17756,
"properties": {
"east": "low",
"north": "tall",
@@ -198651,7 +204850,7 @@
}
},
{
- "id": 17288,
+ "id": 17757,
"properties": {
"east": "low",
"north": "tall",
@@ -198662,7 +204861,7 @@
}
},
{
- "id": 17289,
+ "id": 17758,
"properties": {
"east": "low",
"north": "tall",
@@ -198673,7 +204872,7 @@
}
},
{
- "id": 17290,
+ "id": 17759,
"properties": {
"east": "low",
"north": "tall",
@@ -198684,7 +204883,7 @@
}
},
{
- "id": 17291,
+ "id": 17760,
"properties": {
"east": "low",
"north": "tall",
@@ -198695,7 +204894,7 @@
}
},
{
- "id": 17292,
+ "id": 17761,
"properties": {
"east": "tall",
"north": "none",
@@ -198706,7 +204905,7 @@
}
},
{
- "id": 17293,
+ "id": 17762,
"properties": {
"east": "tall",
"north": "none",
@@ -198717,7 +204916,7 @@
}
},
{
- "id": 17294,
+ "id": 17763,
"properties": {
"east": "tall",
"north": "none",
@@ -198728,7 +204927,7 @@
}
},
{
- "id": 17295,
+ "id": 17764,
"properties": {
"east": "tall",
"north": "none",
@@ -198739,7 +204938,7 @@
}
},
{
- "id": 17296,
+ "id": 17765,
"properties": {
"east": "tall",
"north": "none",
@@ -198750,7 +204949,7 @@
}
},
{
- "id": 17297,
+ "id": 17766,
"properties": {
"east": "tall",
"north": "none",
@@ -198761,7 +204960,7 @@
}
},
{
- "id": 17298,
+ "id": 17767,
"properties": {
"east": "tall",
"north": "none",
@@ -198772,7 +204971,7 @@
}
},
{
- "id": 17299,
+ "id": 17768,
"properties": {
"east": "tall",
"north": "none",
@@ -198783,7 +204982,7 @@
}
},
{
- "id": 17300,
+ "id": 17769,
"properties": {
"east": "tall",
"north": "none",
@@ -198794,7 +204993,7 @@
}
},
{
- "id": 17301,
+ "id": 17770,
"properties": {
"east": "tall",
"north": "none",
@@ -198805,7 +205004,7 @@
}
},
{
- "id": 17302,
+ "id": 17771,
"properties": {
"east": "tall",
"north": "none",
@@ -198816,7 +205015,7 @@
}
},
{
- "id": 17303,
+ "id": 17772,
"properties": {
"east": "tall",
"north": "none",
@@ -198827,7 +205026,7 @@
}
},
{
- "id": 17304,
+ "id": 17773,
"properties": {
"east": "tall",
"north": "none",
@@ -198838,7 +205037,7 @@
}
},
{
- "id": 17305,
+ "id": 17774,
"properties": {
"east": "tall",
"north": "none",
@@ -198849,7 +205048,7 @@
}
},
{
- "id": 17306,
+ "id": 17775,
"properties": {
"east": "tall",
"north": "none",
@@ -198860,7 +205059,7 @@
}
},
{
- "id": 17307,
+ "id": 17776,
"properties": {
"east": "tall",
"north": "none",
@@ -198871,7 +205070,7 @@
}
},
{
- "id": 17308,
+ "id": 17777,
"properties": {
"east": "tall",
"north": "none",
@@ -198882,7 +205081,7 @@
}
},
{
- "id": 17309,
+ "id": 17778,
"properties": {
"east": "tall",
"north": "none",
@@ -198893,7 +205092,7 @@
}
},
{
- "id": 17310,
+ "id": 17779,
"properties": {
"east": "tall",
"north": "none",
@@ -198904,7 +205103,7 @@
}
},
{
- "id": 17311,
+ "id": 17780,
"properties": {
"east": "tall",
"north": "none",
@@ -198915,7 +205114,7 @@
}
},
{
- "id": 17312,
+ "id": 17781,
"properties": {
"east": "tall",
"north": "none",
@@ -198926,7 +205125,7 @@
}
},
{
- "id": 17313,
+ "id": 17782,
"properties": {
"east": "tall",
"north": "none",
@@ -198937,7 +205136,7 @@
}
},
{
- "id": 17314,
+ "id": 17783,
"properties": {
"east": "tall",
"north": "none",
@@ -198948,7 +205147,7 @@
}
},
{
- "id": 17315,
+ "id": 17784,
"properties": {
"east": "tall",
"north": "none",
@@ -198959,7 +205158,7 @@
}
},
{
- "id": 17316,
+ "id": 17785,
"properties": {
"east": "tall",
"north": "none",
@@ -198970,7 +205169,7 @@
}
},
{
- "id": 17317,
+ "id": 17786,
"properties": {
"east": "tall",
"north": "none",
@@ -198981,7 +205180,7 @@
}
},
{
- "id": 17318,
+ "id": 17787,
"properties": {
"east": "tall",
"north": "none",
@@ -198992,7 +205191,7 @@
}
},
{
- "id": 17319,
+ "id": 17788,
"properties": {
"east": "tall",
"north": "none",
@@ -199003,7 +205202,7 @@
}
},
{
- "id": 17320,
+ "id": 17789,
"properties": {
"east": "tall",
"north": "none",
@@ -199014,7 +205213,7 @@
}
},
{
- "id": 17321,
+ "id": 17790,
"properties": {
"east": "tall",
"north": "none",
@@ -199025,7 +205224,7 @@
}
},
{
- "id": 17322,
+ "id": 17791,
"properties": {
"east": "tall",
"north": "none",
@@ -199036,7 +205235,7 @@
}
},
{
- "id": 17323,
+ "id": 17792,
"properties": {
"east": "tall",
"north": "none",
@@ -199047,7 +205246,7 @@
}
},
{
- "id": 17324,
+ "id": 17793,
"properties": {
"east": "tall",
"north": "none",
@@ -199058,7 +205257,7 @@
}
},
{
- "id": 17325,
+ "id": 17794,
"properties": {
"east": "tall",
"north": "none",
@@ -199069,7 +205268,7 @@
}
},
{
- "id": 17326,
+ "id": 17795,
"properties": {
"east": "tall",
"north": "none",
@@ -199080,7 +205279,7 @@
}
},
{
- "id": 17327,
+ "id": 17796,
"properties": {
"east": "tall",
"north": "none",
@@ -199091,7 +205290,7 @@
}
},
{
- "id": 17328,
+ "id": 17797,
"properties": {
"east": "tall",
"north": "low",
@@ -199102,7 +205301,7 @@
}
},
{
- "id": 17329,
+ "id": 17798,
"properties": {
"east": "tall",
"north": "low",
@@ -199113,7 +205312,7 @@
}
},
{
- "id": 17330,
+ "id": 17799,
"properties": {
"east": "tall",
"north": "low",
@@ -199124,7 +205323,7 @@
}
},
{
- "id": 17331,
+ "id": 17800,
"properties": {
"east": "tall",
"north": "low",
@@ -199135,7 +205334,7 @@
}
},
{
- "id": 17332,
+ "id": 17801,
"properties": {
"east": "tall",
"north": "low",
@@ -199146,7 +205345,7 @@
}
},
{
- "id": 17333,
+ "id": 17802,
"properties": {
"east": "tall",
"north": "low",
@@ -199157,7 +205356,7 @@
}
},
{
- "id": 17334,
+ "id": 17803,
"properties": {
"east": "tall",
"north": "low",
@@ -199168,7 +205367,7 @@
}
},
{
- "id": 17335,
+ "id": 17804,
"properties": {
"east": "tall",
"north": "low",
@@ -199179,7 +205378,7 @@
}
},
{
- "id": 17336,
+ "id": 17805,
"properties": {
"east": "tall",
"north": "low",
@@ -199190,7 +205389,7 @@
}
},
{
- "id": 17337,
+ "id": 17806,
"properties": {
"east": "tall",
"north": "low",
@@ -199201,7 +205400,7 @@
}
},
{
- "id": 17338,
+ "id": 17807,
"properties": {
"east": "tall",
"north": "low",
@@ -199212,7 +205411,7 @@
}
},
{
- "id": 17339,
+ "id": 17808,
"properties": {
"east": "tall",
"north": "low",
@@ -199223,7 +205422,7 @@
}
},
{
- "id": 17340,
+ "id": 17809,
"properties": {
"east": "tall",
"north": "low",
@@ -199234,7 +205433,7 @@
}
},
{
- "id": 17341,
+ "id": 17810,
"properties": {
"east": "tall",
"north": "low",
@@ -199245,7 +205444,7 @@
}
},
{
- "id": 17342,
+ "id": 17811,
"properties": {
"east": "tall",
"north": "low",
@@ -199256,7 +205455,7 @@
}
},
{
- "id": 17343,
+ "id": 17812,
"properties": {
"east": "tall",
"north": "low",
@@ -199267,7 +205466,7 @@
}
},
{
- "id": 17344,
+ "id": 17813,
"properties": {
"east": "tall",
"north": "low",
@@ -199278,7 +205477,7 @@
}
},
{
- "id": 17345,
+ "id": 17814,
"properties": {
"east": "tall",
"north": "low",
@@ -199289,7 +205488,7 @@
}
},
{
- "id": 17346,
+ "id": 17815,
"properties": {
"east": "tall",
"north": "low",
@@ -199300,7 +205499,7 @@
}
},
{
- "id": 17347,
+ "id": 17816,
"properties": {
"east": "tall",
"north": "low",
@@ -199311,7 +205510,7 @@
}
},
{
- "id": 17348,
+ "id": 17817,
"properties": {
"east": "tall",
"north": "low",
@@ -199322,7 +205521,7 @@
}
},
{
- "id": 17349,
+ "id": 17818,
"properties": {
"east": "tall",
"north": "low",
@@ -199333,7 +205532,7 @@
}
},
{
- "id": 17350,
+ "id": 17819,
"properties": {
"east": "tall",
"north": "low",
@@ -199344,7 +205543,7 @@
}
},
{
- "id": 17351,
+ "id": 17820,
"properties": {
"east": "tall",
"north": "low",
@@ -199355,7 +205554,7 @@
}
},
{
- "id": 17352,
+ "id": 17821,
"properties": {
"east": "tall",
"north": "low",
@@ -199366,7 +205565,7 @@
}
},
{
- "id": 17353,
+ "id": 17822,
"properties": {
"east": "tall",
"north": "low",
@@ -199377,7 +205576,7 @@
}
},
{
- "id": 17354,
+ "id": 17823,
"properties": {
"east": "tall",
"north": "low",
@@ -199388,7 +205587,7 @@
}
},
{
- "id": 17355,
+ "id": 17824,
"properties": {
"east": "tall",
"north": "low",
@@ -199399,7 +205598,7 @@
}
},
{
- "id": 17356,
+ "id": 17825,
"properties": {
"east": "tall",
"north": "low",
@@ -199410,7 +205609,7 @@
}
},
{
- "id": 17357,
+ "id": 17826,
"properties": {
"east": "tall",
"north": "low",
@@ -199421,7 +205620,7 @@
}
},
{
- "id": 17358,
+ "id": 17827,
"properties": {
"east": "tall",
"north": "low",
@@ -199432,7 +205631,7 @@
}
},
{
- "id": 17359,
+ "id": 17828,
"properties": {
"east": "tall",
"north": "low",
@@ -199443,7 +205642,7 @@
}
},
{
- "id": 17360,
+ "id": 17829,
"properties": {
"east": "tall",
"north": "low",
@@ -199454,7 +205653,7 @@
}
},
{
- "id": 17361,
+ "id": 17830,
"properties": {
"east": "tall",
"north": "low",
@@ -199465,7 +205664,7 @@
}
},
{
- "id": 17362,
+ "id": 17831,
"properties": {
"east": "tall",
"north": "low",
@@ -199476,7 +205675,7 @@
}
},
{
- "id": 17363,
+ "id": 17832,
"properties": {
"east": "tall",
"north": "low",
@@ -199487,7 +205686,7 @@
}
},
{
- "id": 17364,
+ "id": 17833,
"properties": {
"east": "tall",
"north": "tall",
@@ -199498,7 +205697,7 @@
}
},
{
- "id": 17365,
+ "id": 17834,
"properties": {
"east": "tall",
"north": "tall",
@@ -199509,7 +205708,7 @@
}
},
{
- "id": 17366,
+ "id": 17835,
"properties": {
"east": "tall",
"north": "tall",
@@ -199520,7 +205719,7 @@
}
},
{
- "id": 17367,
+ "id": 17836,
"properties": {
"east": "tall",
"north": "tall",
@@ -199531,7 +205730,7 @@
}
},
{
- "id": 17368,
+ "id": 17837,
"properties": {
"east": "tall",
"north": "tall",
@@ -199542,7 +205741,7 @@
}
},
{
- "id": 17369,
+ "id": 17838,
"properties": {
"east": "tall",
"north": "tall",
@@ -199553,7 +205752,7 @@
}
},
{
- "id": 17370,
+ "id": 17839,
"properties": {
"east": "tall",
"north": "tall",
@@ -199564,7 +205763,7 @@
}
},
{
- "id": 17371,
+ "id": 17840,
"properties": {
"east": "tall",
"north": "tall",
@@ -199575,7 +205774,7 @@
}
},
{
- "id": 17372,
+ "id": 17841,
"properties": {
"east": "tall",
"north": "tall",
@@ -199586,7 +205785,7 @@
}
},
{
- "id": 17373,
+ "id": 17842,
"properties": {
"east": "tall",
"north": "tall",
@@ -199597,7 +205796,7 @@
}
},
{
- "id": 17374,
+ "id": 17843,
"properties": {
"east": "tall",
"north": "tall",
@@ -199608,7 +205807,7 @@
}
},
{
- "id": 17375,
+ "id": 17844,
"properties": {
"east": "tall",
"north": "tall",
@@ -199619,7 +205818,7 @@
}
},
{
- "id": 17376,
+ "id": 17845,
"properties": {
"east": "tall",
"north": "tall",
@@ -199630,7 +205829,7 @@
}
},
{
- "id": 17377,
+ "id": 17846,
"properties": {
"east": "tall",
"north": "tall",
@@ -199641,7 +205840,7 @@
}
},
{
- "id": 17378,
+ "id": 17847,
"properties": {
"east": "tall",
"north": "tall",
@@ -199652,7 +205851,7 @@
}
},
{
- "id": 17379,
+ "id": 17848,
"properties": {
"east": "tall",
"north": "tall",
@@ -199663,7 +205862,7 @@
}
},
{
- "id": 17380,
+ "id": 17849,
"properties": {
"east": "tall",
"north": "tall",
@@ -199674,7 +205873,7 @@
}
},
{
- "id": 17381,
+ "id": 17850,
"properties": {
"east": "tall",
"north": "tall",
@@ -199685,7 +205884,7 @@
}
},
{
- "id": 17382,
+ "id": 17851,
"properties": {
"east": "tall",
"north": "tall",
@@ -199696,7 +205895,7 @@
}
},
{
- "id": 17383,
+ "id": 17852,
"properties": {
"east": "tall",
"north": "tall",
@@ -199707,7 +205906,7 @@
}
},
{
- "id": 17384,
+ "id": 17853,
"properties": {
"east": "tall",
"north": "tall",
@@ -199718,7 +205917,7 @@
}
},
{
- "id": 17385,
+ "id": 17854,
"properties": {
"east": "tall",
"north": "tall",
@@ -199729,7 +205928,7 @@
}
},
{
- "id": 17386,
+ "id": 17855,
"properties": {
"east": "tall",
"north": "tall",
@@ -199740,7 +205939,7 @@
}
},
{
- "id": 17387,
+ "id": 17856,
"properties": {
"east": "tall",
"north": "tall",
@@ -199751,7 +205950,7 @@
}
},
{
- "id": 17388,
+ "id": 17857,
"properties": {
"east": "tall",
"north": "tall",
@@ -199762,7 +205961,7 @@
}
},
{
- "id": 17389,
+ "id": 17858,
"properties": {
"east": "tall",
"north": "tall",
@@ -199773,7 +205972,7 @@
}
},
{
- "id": 17390,
+ "id": 17859,
"properties": {
"east": "tall",
"north": "tall",
@@ -199784,7 +205983,7 @@
}
},
{
- "id": 17391,
+ "id": 17860,
"properties": {
"east": "tall",
"north": "tall",
@@ -199795,7 +205994,7 @@
}
},
{
- "id": 17392,
+ "id": 17861,
"properties": {
"east": "tall",
"north": "tall",
@@ -199806,7 +206005,7 @@
}
},
{
- "id": 17393,
+ "id": 17862,
"properties": {
"east": "tall",
"north": "tall",
@@ -199817,7 +206016,7 @@
}
},
{
- "id": 17394,
+ "id": 17863,
"properties": {
"east": "tall",
"north": "tall",
@@ -199828,7 +206027,7 @@
}
},
{
- "id": 17395,
+ "id": 17864,
"properties": {
"east": "tall",
"north": "tall",
@@ -199839,7 +206038,7 @@
}
},
{
- "id": 17396,
+ "id": 17865,
"properties": {
"east": "tall",
"north": "tall",
@@ -199850,7 +206049,7 @@
}
},
{
- "id": 17397,
+ "id": 17866,
"properties": {
"east": "tall",
"north": "tall",
@@ -199861,7 +206060,7 @@
}
},
{
- "id": 17398,
+ "id": 17867,
"properties": {
"east": "tall",
"north": "tall",
@@ -199872,7 +206071,7 @@
}
},
{
- "id": 17399,
+ "id": 17868,
"properties": {
"east": "tall",
"north": "tall",
@@ -199892,7 +206091,7 @@
"states": [
{
"default": true,
- "id": 12545
+ "id": 13014
}
]
},
@@ -199905,7 +206104,7 @@
"states": [
{
"default": true,
- "id": 117
+ "id": 123
}
]
},
@@ -199917,7 +206116,7 @@
"states": [
{
"default": true,
- "id": 11079
+ "id": 11414
}
]
},
@@ -199939,21 +206138,21 @@
},
"states": [
{
- "id": 11288,
+ "id": 11629,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11289,
+ "id": 11630,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11290,
+ "id": 11631,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -199961,21 +206160,21 @@
},
{
"default": true,
- "id": 11291,
+ "id": 11632,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11292,
+ "id": 11633,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11293,
+ "id": 11634,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -200016,7 +206215,7 @@
},
"states": [
{
- "id": 11082,
+ "id": 11417,
"properties": {
"facing": "north",
"half": "top",
@@ -200025,7 +206224,7 @@
}
},
{
- "id": 11083,
+ "id": 11418,
"properties": {
"facing": "north",
"half": "top",
@@ -200034,7 +206233,7 @@
}
},
{
- "id": 11084,
+ "id": 11419,
"properties": {
"facing": "north",
"half": "top",
@@ -200043,7 +206242,7 @@
}
},
{
- "id": 11085,
+ "id": 11420,
"properties": {
"facing": "north",
"half": "top",
@@ -200052,7 +206251,7 @@
}
},
{
- "id": 11086,
+ "id": 11421,
"properties": {
"facing": "north",
"half": "top",
@@ -200061,7 +206260,7 @@
}
},
{
- "id": 11087,
+ "id": 11422,
"properties": {
"facing": "north",
"half": "top",
@@ -200070,7 +206269,7 @@
}
},
{
- "id": 11088,
+ "id": 11423,
"properties": {
"facing": "north",
"half": "top",
@@ -200079,7 +206278,7 @@
}
},
{
- "id": 11089,
+ "id": 11424,
"properties": {
"facing": "north",
"half": "top",
@@ -200088,7 +206287,7 @@
}
},
{
- "id": 11090,
+ "id": 11425,
"properties": {
"facing": "north",
"half": "top",
@@ -200097,7 +206296,7 @@
}
},
{
- "id": 11091,
+ "id": 11426,
"properties": {
"facing": "north",
"half": "top",
@@ -200106,7 +206305,7 @@
}
},
{
- "id": 11092,
+ "id": 11427,
"properties": {
"facing": "north",
"half": "bottom",
@@ -200116,7 +206315,7 @@
},
{
"default": true,
- "id": 11093,
+ "id": 11428,
"properties": {
"facing": "north",
"half": "bottom",
@@ -200125,7 +206324,7 @@
}
},
{
- "id": 11094,
+ "id": 11429,
"properties": {
"facing": "north",
"half": "bottom",
@@ -200134,7 +206333,7 @@
}
},
{
- "id": 11095,
+ "id": 11430,
"properties": {
"facing": "north",
"half": "bottom",
@@ -200143,7 +206342,7 @@
}
},
{
- "id": 11096,
+ "id": 11431,
"properties": {
"facing": "north",
"half": "bottom",
@@ -200152,7 +206351,7 @@
}
},
{
- "id": 11097,
+ "id": 11432,
"properties": {
"facing": "north",
"half": "bottom",
@@ -200161,7 +206360,7 @@
}
},
{
- "id": 11098,
+ "id": 11433,
"properties": {
"facing": "north",
"half": "bottom",
@@ -200170,7 +206369,7 @@
}
},
{
- "id": 11099,
+ "id": 11434,
"properties": {
"facing": "north",
"half": "bottom",
@@ -200179,7 +206378,7 @@
}
},
{
- "id": 11100,
+ "id": 11435,
"properties": {
"facing": "north",
"half": "bottom",
@@ -200188,7 +206387,7 @@
}
},
{
- "id": 11101,
+ "id": 11436,
"properties": {
"facing": "north",
"half": "bottom",
@@ -200197,7 +206396,7 @@
}
},
{
- "id": 11102,
+ "id": 11437,
"properties": {
"facing": "south",
"half": "top",
@@ -200206,7 +206405,7 @@
}
},
{
- "id": 11103,
+ "id": 11438,
"properties": {
"facing": "south",
"half": "top",
@@ -200215,7 +206414,7 @@
}
},
{
- "id": 11104,
+ "id": 11439,
"properties": {
"facing": "south",
"half": "top",
@@ -200224,7 +206423,7 @@
}
},
{
- "id": 11105,
+ "id": 11440,
"properties": {
"facing": "south",
"half": "top",
@@ -200233,7 +206432,7 @@
}
},
{
- "id": 11106,
+ "id": 11441,
"properties": {
"facing": "south",
"half": "top",
@@ -200242,7 +206441,7 @@
}
},
{
- "id": 11107,
+ "id": 11442,
"properties": {
"facing": "south",
"half": "top",
@@ -200251,7 +206450,7 @@
}
},
{
- "id": 11108,
+ "id": 11443,
"properties": {
"facing": "south",
"half": "top",
@@ -200260,7 +206459,7 @@
}
},
{
- "id": 11109,
+ "id": 11444,
"properties": {
"facing": "south",
"half": "top",
@@ -200269,7 +206468,7 @@
}
},
{
- "id": 11110,
+ "id": 11445,
"properties": {
"facing": "south",
"half": "top",
@@ -200278,7 +206477,7 @@
}
},
{
- "id": 11111,
+ "id": 11446,
"properties": {
"facing": "south",
"half": "top",
@@ -200287,7 +206486,7 @@
}
},
{
- "id": 11112,
+ "id": 11447,
"properties": {
"facing": "south",
"half": "bottom",
@@ -200296,7 +206495,7 @@
}
},
{
- "id": 11113,
+ "id": 11448,
"properties": {
"facing": "south",
"half": "bottom",
@@ -200305,7 +206504,7 @@
}
},
{
- "id": 11114,
+ "id": 11449,
"properties": {
"facing": "south",
"half": "bottom",
@@ -200314,7 +206513,7 @@
}
},
{
- "id": 11115,
+ "id": 11450,
"properties": {
"facing": "south",
"half": "bottom",
@@ -200323,7 +206522,7 @@
}
},
{
- "id": 11116,
+ "id": 11451,
"properties": {
"facing": "south",
"half": "bottom",
@@ -200332,7 +206531,7 @@
}
},
{
- "id": 11117,
+ "id": 11452,
"properties": {
"facing": "south",
"half": "bottom",
@@ -200341,7 +206540,7 @@
}
},
{
- "id": 11118,
+ "id": 11453,
"properties": {
"facing": "south",
"half": "bottom",
@@ -200350,7 +206549,7 @@
}
},
{
- "id": 11119,
+ "id": 11454,
"properties": {
"facing": "south",
"half": "bottom",
@@ -200359,7 +206558,7 @@
}
},
{
- "id": 11120,
+ "id": 11455,
"properties": {
"facing": "south",
"half": "bottom",
@@ -200368,7 +206567,7 @@
}
},
{
- "id": 11121,
+ "id": 11456,
"properties": {
"facing": "south",
"half": "bottom",
@@ -200377,7 +206576,7 @@
}
},
{
- "id": 11122,
+ "id": 11457,
"properties": {
"facing": "west",
"half": "top",
@@ -200386,7 +206585,7 @@
}
},
{
- "id": 11123,
+ "id": 11458,
"properties": {
"facing": "west",
"half": "top",
@@ -200395,7 +206594,7 @@
}
},
{
- "id": 11124,
+ "id": 11459,
"properties": {
"facing": "west",
"half": "top",
@@ -200404,7 +206603,7 @@
}
},
{
- "id": 11125,
+ "id": 11460,
"properties": {
"facing": "west",
"half": "top",
@@ -200413,7 +206612,7 @@
}
},
{
- "id": 11126,
+ "id": 11461,
"properties": {
"facing": "west",
"half": "top",
@@ -200422,7 +206621,7 @@
}
},
{
- "id": 11127,
+ "id": 11462,
"properties": {
"facing": "west",
"half": "top",
@@ -200431,7 +206630,7 @@
}
},
{
- "id": 11128,
+ "id": 11463,
"properties": {
"facing": "west",
"half": "top",
@@ -200440,7 +206639,7 @@
}
},
{
- "id": 11129,
+ "id": 11464,
"properties": {
"facing": "west",
"half": "top",
@@ -200449,7 +206648,7 @@
}
},
{
- "id": 11130,
+ "id": 11465,
"properties": {
"facing": "west",
"half": "top",
@@ -200458,7 +206657,7 @@
}
},
{
- "id": 11131,
+ "id": 11466,
"properties": {
"facing": "west",
"half": "top",
@@ -200467,7 +206666,7 @@
}
},
{
- "id": 11132,
+ "id": 11467,
"properties": {
"facing": "west",
"half": "bottom",
@@ -200476,7 +206675,7 @@
}
},
{
- "id": 11133,
+ "id": 11468,
"properties": {
"facing": "west",
"half": "bottom",
@@ -200485,7 +206684,7 @@
}
},
{
- "id": 11134,
+ "id": 11469,
"properties": {
"facing": "west",
"half": "bottom",
@@ -200494,7 +206693,7 @@
}
},
{
- "id": 11135,
+ "id": 11470,
"properties": {
"facing": "west",
"half": "bottom",
@@ -200503,7 +206702,7 @@
}
},
{
- "id": 11136,
+ "id": 11471,
"properties": {
"facing": "west",
"half": "bottom",
@@ -200512,7 +206711,7 @@
}
},
{
- "id": 11137,
+ "id": 11472,
"properties": {
"facing": "west",
"half": "bottom",
@@ -200521,7 +206720,7 @@
}
},
{
- "id": 11138,
+ "id": 11473,
"properties": {
"facing": "west",
"half": "bottom",
@@ -200530,7 +206729,7 @@
}
},
{
- "id": 11139,
+ "id": 11474,
"properties": {
"facing": "west",
"half": "bottom",
@@ -200539,7 +206738,7 @@
}
},
{
- "id": 11140,
+ "id": 11475,
"properties": {
"facing": "west",
"half": "bottom",
@@ -200548,7 +206747,7 @@
}
},
{
- "id": 11141,
+ "id": 11476,
"properties": {
"facing": "west",
"half": "bottom",
@@ -200557,7 +206756,7 @@
}
},
{
- "id": 11142,
+ "id": 11477,
"properties": {
"facing": "east",
"half": "top",
@@ -200566,7 +206765,7 @@
}
},
{
- "id": 11143,
+ "id": 11478,
"properties": {
"facing": "east",
"half": "top",
@@ -200575,7 +206774,7 @@
}
},
{
- "id": 11144,
+ "id": 11479,
"properties": {
"facing": "east",
"half": "top",
@@ -200584,7 +206783,7 @@
}
},
{
- "id": 11145,
+ "id": 11480,
"properties": {
"facing": "east",
"half": "top",
@@ -200593,7 +206792,7 @@
}
},
{
- "id": 11146,
+ "id": 11481,
"properties": {
"facing": "east",
"half": "top",
@@ -200602,7 +206801,7 @@
}
},
{
- "id": 11147,
+ "id": 11482,
"properties": {
"facing": "east",
"half": "top",
@@ -200611,7 +206810,7 @@
}
},
{
- "id": 11148,
+ "id": 11483,
"properties": {
"facing": "east",
"half": "top",
@@ -200620,7 +206819,7 @@
}
},
{
- "id": 11149,
+ "id": 11484,
"properties": {
"facing": "east",
"half": "top",
@@ -200629,7 +206828,7 @@
}
},
{
- "id": 11150,
+ "id": 11485,
"properties": {
"facing": "east",
"half": "top",
@@ -200638,7 +206837,7 @@
}
},
{
- "id": 11151,
+ "id": 11486,
"properties": {
"facing": "east",
"half": "top",
@@ -200647,7 +206846,7 @@
}
},
{
- "id": 11152,
+ "id": 11487,
"properties": {
"facing": "east",
"half": "bottom",
@@ -200656,7 +206855,7 @@
}
},
{
- "id": 11153,
+ "id": 11488,
"properties": {
"facing": "east",
"half": "bottom",
@@ -200665,7 +206864,7 @@
}
},
{
- "id": 11154,
+ "id": 11489,
"properties": {
"facing": "east",
"half": "bottom",
@@ -200674,7 +206873,7 @@
}
},
{
- "id": 11155,
+ "id": 11490,
"properties": {
"facing": "east",
"half": "bottom",
@@ -200683,7 +206882,7 @@
}
},
{
- "id": 11156,
+ "id": 11491,
"properties": {
"facing": "east",
"half": "bottom",
@@ -200692,7 +206891,7 @@
}
},
{
- "id": 11157,
+ "id": 11492,
"properties": {
"facing": "east",
"half": "bottom",
@@ -200701,7 +206900,7 @@
}
},
{
- "id": 11158,
+ "id": 11493,
"properties": {
"facing": "east",
"half": "bottom",
@@ -200710,7 +206909,7 @@
}
},
{
- "id": 11159,
+ "id": 11494,
"properties": {
"facing": "east",
"half": "bottom",
@@ -200719,7 +206918,7 @@
}
},
{
- "id": 11160,
+ "id": 11495,
"properties": {
"facing": "east",
"half": "bottom",
@@ -200728,7 +206927,7 @@
}
},
{
- "id": 11161,
+ "id": 11496,
"properties": {
"facing": "east",
"half": "bottom",
@@ -200775,7 +206974,7 @@
},
"states": [
{
- "id": 14808,
+ "id": 15277,
"properties": {
"east": "none",
"north": "none",
@@ -200786,7 +206985,7 @@
}
},
{
- "id": 14809,
+ "id": 15278,
"properties": {
"east": "none",
"north": "none",
@@ -200797,7 +206996,7 @@
}
},
{
- "id": 14810,
+ "id": 15279,
"properties": {
"east": "none",
"north": "none",
@@ -200809,7 +207008,7 @@
},
{
"default": true,
- "id": 14811,
+ "id": 15280,
"properties": {
"east": "none",
"north": "none",
@@ -200820,7 +207019,7 @@
}
},
{
- "id": 14812,
+ "id": 15281,
"properties": {
"east": "none",
"north": "none",
@@ -200831,7 +207030,7 @@
}
},
{
- "id": 14813,
+ "id": 15282,
"properties": {
"east": "none",
"north": "none",
@@ -200842,7 +207041,7 @@
}
},
{
- "id": 14814,
+ "id": 15283,
"properties": {
"east": "none",
"north": "none",
@@ -200853,7 +207052,7 @@
}
},
{
- "id": 14815,
+ "id": 15284,
"properties": {
"east": "none",
"north": "none",
@@ -200864,7 +207063,7 @@
}
},
{
- "id": 14816,
+ "id": 15285,
"properties": {
"east": "none",
"north": "none",
@@ -200875,7 +207074,7 @@
}
},
{
- "id": 14817,
+ "id": 15286,
"properties": {
"east": "none",
"north": "none",
@@ -200886,7 +207085,7 @@
}
},
{
- "id": 14818,
+ "id": 15287,
"properties": {
"east": "none",
"north": "none",
@@ -200897,7 +207096,7 @@
}
},
{
- "id": 14819,
+ "id": 15288,
"properties": {
"east": "none",
"north": "none",
@@ -200908,7 +207107,7 @@
}
},
{
- "id": 14820,
+ "id": 15289,
"properties": {
"east": "none",
"north": "none",
@@ -200919,7 +207118,7 @@
}
},
{
- "id": 14821,
+ "id": 15290,
"properties": {
"east": "none",
"north": "none",
@@ -200930,7 +207129,7 @@
}
},
{
- "id": 14822,
+ "id": 15291,
"properties": {
"east": "none",
"north": "none",
@@ -200941,7 +207140,7 @@
}
},
{
- "id": 14823,
+ "id": 15292,
"properties": {
"east": "none",
"north": "none",
@@ -200952,7 +207151,7 @@
}
},
{
- "id": 14824,
+ "id": 15293,
"properties": {
"east": "none",
"north": "none",
@@ -200963,7 +207162,7 @@
}
},
{
- "id": 14825,
+ "id": 15294,
"properties": {
"east": "none",
"north": "none",
@@ -200974,7 +207173,7 @@
}
},
{
- "id": 14826,
+ "id": 15295,
"properties": {
"east": "none",
"north": "none",
@@ -200985,7 +207184,7 @@
}
},
{
- "id": 14827,
+ "id": 15296,
"properties": {
"east": "none",
"north": "none",
@@ -200996,7 +207195,7 @@
}
},
{
- "id": 14828,
+ "id": 15297,
"properties": {
"east": "none",
"north": "none",
@@ -201007,7 +207206,7 @@
}
},
{
- "id": 14829,
+ "id": 15298,
"properties": {
"east": "none",
"north": "none",
@@ -201018,7 +207217,7 @@
}
},
{
- "id": 14830,
+ "id": 15299,
"properties": {
"east": "none",
"north": "none",
@@ -201029,7 +207228,7 @@
}
},
{
- "id": 14831,
+ "id": 15300,
"properties": {
"east": "none",
"north": "none",
@@ -201040,7 +207239,7 @@
}
},
{
- "id": 14832,
+ "id": 15301,
"properties": {
"east": "none",
"north": "none",
@@ -201051,7 +207250,7 @@
}
},
{
- "id": 14833,
+ "id": 15302,
"properties": {
"east": "none",
"north": "none",
@@ -201062,7 +207261,7 @@
}
},
{
- "id": 14834,
+ "id": 15303,
"properties": {
"east": "none",
"north": "none",
@@ -201073,7 +207272,7 @@
}
},
{
- "id": 14835,
+ "id": 15304,
"properties": {
"east": "none",
"north": "none",
@@ -201084,7 +207283,7 @@
}
},
{
- "id": 14836,
+ "id": 15305,
"properties": {
"east": "none",
"north": "none",
@@ -201095,7 +207294,7 @@
}
},
{
- "id": 14837,
+ "id": 15306,
"properties": {
"east": "none",
"north": "none",
@@ -201106,7 +207305,7 @@
}
},
{
- "id": 14838,
+ "id": 15307,
"properties": {
"east": "none",
"north": "none",
@@ -201117,7 +207316,7 @@
}
},
{
- "id": 14839,
+ "id": 15308,
"properties": {
"east": "none",
"north": "none",
@@ -201128,7 +207327,7 @@
}
},
{
- "id": 14840,
+ "id": 15309,
"properties": {
"east": "none",
"north": "none",
@@ -201139,7 +207338,7 @@
}
},
{
- "id": 14841,
+ "id": 15310,
"properties": {
"east": "none",
"north": "none",
@@ -201150,7 +207349,7 @@
}
},
{
- "id": 14842,
+ "id": 15311,
"properties": {
"east": "none",
"north": "none",
@@ -201161,7 +207360,7 @@
}
},
{
- "id": 14843,
+ "id": 15312,
"properties": {
"east": "none",
"north": "none",
@@ -201172,7 +207371,7 @@
}
},
{
- "id": 14844,
+ "id": 15313,
"properties": {
"east": "none",
"north": "low",
@@ -201183,7 +207382,7 @@
}
},
{
- "id": 14845,
+ "id": 15314,
"properties": {
"east": "none",
"north": "low",
@@ -201194,7 +207393,7 @@
}
},
{
- "id": 14846,
+ "id": 15315,
"properties": {
"east": "none",
"north": "low",
@@ -201205,7 +207404,7 @@
}
},
{
- "id": 14847,
+ "id": 15316,
"properties": {
"east": "none",
"north": "low",
@@ -201216,7 +207415,7 @@
}
},
{
- "id": 14848,
+ "id": 15317,
"properties": {
"east": "none",
"north": "low",
@@ -201227,7 +207426,7 @@
}
},
{
- "id": 14849,
+ "id": 15318,
"properties": {
"east": "none",
"north": "low",
@@ -201238,7 +207437,7 @@
}
},
{
- "id": 14850,
+ "id": 15319,
"properties": {
"east": "none",
"north": "low",
@@ -201249,7 +207448,7 @@
}
},
{
- "id": 14851,
+ "id": 15320,
"properties": {
"east": "none",
"north": "low",
@@ -201260,7 +207459,7 @@
}
},
{
- "id": 14852,
+ "id": 15321,
"properties": {
"east": "none",
"north": "low",
@@ -201271,7 +207470,7 @@
}
},
{
- "id": 14853,
+ "id": 15322,
"properties": {
"east": "none",
"north": "low",
@@ -201282,7 +207481,7 @@
}
},
{
- "id": 14854,
+ "id": 15323,
"properties": {
"east": "none",
"north": "low",
@@ -201293,7 +207492,7 @@
}
},
{
- "id": 14855,
+ "id": 15324,
"properties": {
"east": "none",
"north": "low",
@@ -201304,7 +207503,7 @@
}
},
{
- "id": 14856,
+ "id": 15325,
"properties": {
"east": "none",
"north": "low",
@@ -201315,7 +207514,7 @@
}
},
{
- "id": 14857,
+ "id": 15326,
"properties": {
"east": "none",
"north": "low",
@@ -201326,7 +207525,7 @@
}
},
{
- "id": 14858,
+ "id": 15327,
"properties": {
"east": "none",
"north": "low",
@@ -201337,7 +207536,7 @@
}
},
{
- "id": 14859,
+ "id": 15328,
"properties": {
"east": "none",
"north": "low",
@@ -201348,7 +207547,7 @@
}
},
{
- "id": 14860,
+ "id": 15329,
"properties": {
"east": "none",
"north": "low",
@@ -201359,7 +207558,7 @@
}
},
{
- "id": 14861,
+ "id": 15330,
"properties": {
"east": "none",
"north": "low",
@@ -201370,7 +207569,7 @@
}
},
{
- "id": 14862,
+ "id": 15331,
"properties": {
"east": "none",
"north": "low",
@@ -201381,7 +207580,7 @@
}
},
{
- "id": 14863,
+ "id": 15332,
"properties": {
"east": "none",
"north": "low",
@@ -201392,7 +207591,7 @@
}
},
{
- "id": 14864,
+ "id": 15333,
"properties": {
"east": "none",
"north": "low",
@@ -201403,7 +207602,7 @@
}
},
{
- "id": 14865,
+ "id": 15334,
"properties": {
"east": "none",
"north": "low",
@@ -201414,7 +207613,7 @@
}
},
{
- "id": 14866,
+ "id": 15335,
"properties": {
"east": "none",
"north": "low",
@@ -201425,7 +207624,7 @@
}
},
{
- "id": 14867,
+ "id": 15336,
"properties": {
"east": "none",
"north": "low",
@@ -201436,7 +207635,7 @@
}
},
{
- "id": 14868,
+ "id": 15337,
"properties": {
"east": "none",
"north": "low",
@@ -201447,7 +207646,7 @@
}
},
{
- "id": 14869,
+ "id": 15338,
"properties": {
"east": "none",
"north": "low",
@@ -201458,7 +207657,7 @@
}
},
{
- "id": 14870,
+ "id": 15339,
"properties": {
"east": "none",
"north": "low",
@@ -201469,7 +207668,7 @@
}
},
{
- "id": 14871,
+ "id": 15340,
"properties": {
"east": "none",
"north": "low",
@@ -201480,7 +207679,7 @@
}
},
{
- "id": 14872,
+ "id": 15341,
"properties": {
"east": "none",
"north": "low",
@@ -201491,7 +207690,7 @@
}
},
{
- "id": 14873,
+ "id": 15342,
"properties": {
"east": "none",
"north": "low",
@@ -201502,7 +207701,7 @@
}
},
{
- "id": 14874,
+ "id": 15343,
"properties": {
"east": "none",
"north": "low",
@@ -201513,7 +207712,7 @@
}
},
{
- "id": 14875,
+ "id": 15344,
"properties": {
"east": "none",
"north": "low",
@@ -201524,7 +207723,7 @@
}
},
{
- "id": 14876,
+ "id": 15345,
"properties": {
"east": "none",
"north": "low",
@@ -201535,7 +207734,7 @@
}
},
{
- "id": 14877,
+ "id": 15346,
"properties": {
"east": "none",
"north": "low",
@@ -201546,7 +207745,7 @@
}
},
{
- "id": 14878,
+ "id": 15347,
"properties": {
"east": "none",
"north": "low",
@@ -201557,7 +207756,7 @@
}
},
{
- "id": 14879,
+ "id": 15348,
"properties": {
"east": "none",
"north": "low",
@@ -201568,7 +207767,7 @@
}
},
{
- "id": 14880,
+ "id": 15349,
"properties": {
"east": "none",
"north": "tall",
@@ -201579,7 +207778,7 @@
}
},
{
- "id": 14881,
+ "id": 15350,
"properties": {
"east": "none",
"north": "tall",
@@ -201590,7 +207789,7 @@
}
},
{
- "id": 14882,
+ "id": 15351,
"properties": {
"east": "none",
"north": "tall",
@@ -201601,7 +207800,7 @@
}
},
{
- "id": 14883,
+ "id": 15352,
"properties": {
"east": "none",
"north": "tall",
@@ -201612,7 +207811,7 @@
}
},
{
- "id": 14884,
+ "id": 15353,
"properties": {
"east": "none",
"north": "tall",
@@ -201623,7 +207822,7 @@
}
},
{
- "id": 14885,
+ "id": 15354,
"properties": {
"east": "none",
"north": "tall",
@@ -201634,7 +207833,7 @@
}
},
{
- "id": 14886,
+ "id": 15355,
"properties": {
"east": "none",
"north": "tall",
@@ -201645,7 +207844,7 @@
}
},
{
- "id": 14887,
+ "id": 15356,
"properties": {
"east": "none",
"north": "tall",
@@ -201656,7 +207855,7 @@
}
},
{
- "id": 14888,
+ "id": 15357,
"properties": {
"east": "none",
"north": "tall",
@@ -201667,7 +207866,7 @@
}
},
{
- "id": 14889,
+ "id": 15358,
"properties": {
"east": "none",
"north": "tall",
@@ -201678,7 +207877,7 @@
}
},
{
- "id": 14890,
+ "id": 15359,
"properties": {
"east": "none",
"north": "tall",
@@ -201689,7 +207888,7 @@
}
},
{
- "id": 14891,
+ "id": 15360,
"properties": {
"east": "none",
"north": "tall",
@@ -201700,7 +207899,7 @@
}
},
{
- "id": 14892,
+ "id": 15361,
"properties": {
"east": "none",
"north": "tall",
@@ -201711,7 +207910,7 @@
}
},
{
- "id": 14893,
+ "id": 15362,
"properties": {
"east": "none",
"north": "tall",
@@ -201722,7 +207921,7 @@
}
},
{
- "id": 14894,
+ "id": 15363,
"properties": {
"east": "none",
"north": "tall",
@@ -201733,7 +207932,7 @@
}
},
{
- "id": 14895,
+ "id": 15364,
"properties": {
"east": "none",
"north": "tall",
@@ -201744,7 +207943,7 @@
}
},
{
- "id": 14896,
+ "id": 15365,
"properties": {
"east": "none",
"north": "tall",
@@ -201755,7 +207954,7 @@
}
},
{
- "id": 14897,
+ "id": 15366,
"properties": {
"east": "none",
"north": "tall",
@@ -201766,7 +207965,7 @@
}
},
{
- "id": 14898,
+ "id": 15367,
"properties": {
"east": "none",
"north": "tall",
@@ -201777,7 +207976,7 @@
}
},
{
- "id": 14899,
+ "id": 15368,
"properties": {
"east": "none",
"north": "tall",
@@ -201788,7 +207987,7 @@
}
},
{
- "id": 14900,
+ "id": 15369,
"properties": {
"east": "none",
"north": "tall",
@@ -201799,7 +207998,7 @@
}
},
{
- "id": 14901,
+ "id": 15370,
"properties": {
"east": "none",
"north": "tall",
@@ -201810,7 +208009,7 @@
}
},
{
- "id": 14902,
+ "id": 15371,
"properties": {
"east": "none",
"north": "tall",
@@ -201821,7 +208020,7 @@
}
},
{
- "id": 14903,
+ "id": 15372,
"properties": {
"east": "none",
"north": "tall",
@@ -201832,7 +208031,7 @@
}
},
{
- "id": 14904,
+ "id": 15373,
"properties": {
"east": "none",
"north": "tall",
@@ -201843,7 +208042,7 @@
}
},
{
- "id": 14905,
+ "id": 15374,
"properties": {
"east": "none",
"north": "tall",
@@ -201854,7 +208053,7 @@
}
},
{
- "id": 14906,
+ "id": 15375,
"properties": {
"east": "none",
"north": "tall",
@@ -201865,7 +208064,7 @@
}
},
{
- "id": 14907,
+ "id": 15376,
"properties": {
"east": "none",
"north": "tall",
@@ -201876,7 +208075,7 @@
}
},
{
- "id": 14908,
+ "id": 15377,
"properties": {
"east": "none",
"north": "tall",
@@ -201887,7 +208086,7 @@
}
},
{
- "id": 14909,
+ "id": 15378,
"properties": {
"east": "none",
"north": "tall",
@@ -201898,7 +208097,7 @@
}
},
{
- "id": 14910,
+ "id": 15379,
"properties": {
"east": "none",
"north": "tall",
@@ -201909,7 +208108,7 @@
}
},
{
- "id": 14911,
+ "id": 15380,
"properties": {
"east": "none",
"north": "tall",
@@ -201920,7 +208119,7 @@
}
},
{
- "id": 14912,
+ "id": 15381,
"properties": {
"east": "none",
"north": "tall",
@@ -201931,7 +208130,7 @@
}
},
{
- "id": 14913,
+ "id": 15382,
"properties": {
"east": "none",
"north": "tall",
@@ -201942,7 +208141,7 @@
}
},
{
- "id": 14914,
+ "id": 15383,
"properties": {
"east": "none",
"north": "tall",
@@ -201953,7 +208152,7 @@
}
},
{
- "id": 14915,
+ "id": 15384,
"properties": {
"east": "none",
"north": "tall",
@@ -201964,7 +208163,7 @@
}
},
{
- "id": 14916,
+ "id": 15385,
"properties": {
"east": "low",
"north": "none",
@@ -201975,7 +208174,7 @@
}
},
{
- "id": 14917,
+ "id": 15386,
"properties": {
"east": "low",
"north": "none",
@@ -201986,7 +208185,7 @@
}
},
{
- "id": 14918,
+ "id": 15387,
"properties": {
"east": "low",
"north": "none",
@@ -201997,7 +208196,7 @@
}
},
{
- "id": 14919,
+ "id": 15388,
"properties": {
"east": "low",
"north": "none",
@@ -202008,7 +208207,7 @@
}
},
{
- "id": 14920,
+ "id": 15389,
"properties": {
"east": "low",
"north": "none",
@@ -202019,7 +208218,7 @@
}
},
{
- "id": 14921,
+ "id": 15390,
"properties": {
"east": "low",
"north": "none",
@@ -202030,7 +208229,7 @@
}
},
{
- "id": 14922,
+ "id": 15391,
"properties": {
"east": "low",
"north": "none",
@@ -202041,7 +208240,7 @@
}
},
{
- "id": 14923,
+ "id": 15392,
"properties": {
"east": "low",
"north": "none",
@@ -202052,7 +208251,7 @@
}
},
{
- "id": 14924,
+ "id": 15393,
"properties": {
"east": "low",
"north": "none",
@@ -202063,7 +208262,7 @@
}
},
{
- "id": 14925,
+ "id": 15394,
"properties": {
"east": "low",
"north": "none",
@@ -202074,7 +208273,7 @@
}
},
{
- "id": 14926,
+ "id": 15395,
"properties": {
"east": "low",
"north": "none",
@@ -202085,7 +208284,7 @@
}
},
{
- "id": 14927,
+ "id": 15396,
"properties": {
"east": "low",
"north": "none",
@@ -202096,7 +208295,7 @@
}
},
{
- "id": 14928,
+ "id": 15397,
"properties": {
"east": "low",
"north": "none",
@@ -202107,7 +208306,7 @@
}
},
{
- "id": 14929,
+ "id": 15398,
"properties": {
"east": "low",
"north": "none",
@@ -202118,7 +208317,7 @@
}
},
{
- "id": 14930,
+ "id": 15399,
"properties": {
"east": "low",
"north": "none",
@@ -202129,7 +208328,7 @@
}
},
{
- "id": 14931,
+ "id": 15400,
"properties": {
"east": "low",
"north": "none",
@@ -202140,7 +208339,7 @@
}
},
{
- "id": 14932,
+ "id": 15401,
"properties": {
"east": "low",
"north": "none",
@@ -202151,7 +208350,7 @@
}
},
{
- "id": 14933,
+ "id": 15402,
"properties": {
"east": "low",
"north": "none",
@@ -202162,7 +208361,7 @@
}
},
{
- "id": 14934,
+ "id": 15403,
"properties": {
"east": "low",
"north": "none",
@@ -202173,7 +208372,7 @@
}
},
{
- "id": 14935,
+ "id": 15404,
"properties": {
"east": "low",
"north": "none",
@@ -202184,7 +208383,7 @@
}
},
{
- "id": 14936,
+ "id": 15405,
"properties": {
"east": "low",
"north": "none",
@@ -202195,7 +208394,7 @@
}
},
{
- "id": 14937,
+ "id": 15406,
"properties": {
"east": "low",
"north": "none",
@@ -202206,7 +208405,7 @@
}
},
{
- "id": 14938,
+ "id": 15407,
"properties": {
"east": "low",
"north": "none",
@@ -202217,7 +208416,7 @@
}
},
{
- "id": 14939,
+ "id": 15408,
"properties": {
"east": "low",
"north": "none",
@@ -202228,7 +208427,7 @@
}
},
{
- "id": 14940,
+ "id": 15409,
"properties": {
"east": "low",
"north": "none",
@@ -202239,7 +208438,7 @@
}
},
{
- "id": 14941,
+ "id": 15410,
"properties": {
"east": "low",
"north": "none",
@@ -202250,7 +208449,7 @@
}
},
{
- "id": 14942,
+ "id": 15411,
"properties": {
"east": "low",
"north": "none",
@@ -202261,7 +208460,7 @@
}
},
{
- "id": 14943,
+ "id": 15412,
"properties": {
"east": "low",
"north": "none",
@@ -202272,7 +208471,7 @@
}
},
{
- "id": 14944,
+ "id": 15413,
"properties": {
"east": "low",
"north": "none",
@@ -202283,7 +208482,7 @@
}
},
{
- "id": 14945,
+ "id": 15414,
"properties": {
"east": "low",
"north": "none",
@@ -202294,7 +208493,7 @@
}
},
{
- "id": 14946,
+ "id": 15415,
"properties": {
"east": "low",
"north": "none",
@@ -202305,7 +208504,7 @@
}
},
{
- "id": 14947,
+ "id": 15416,
"properties": {
"east": "low",
"north": "none",
@@ -202316,7 +208515,7 @@
}
},
{
- "id": 14948,
+ "id": 15417,
"properties": {
"east": "low",
"north": "none",
@@ -202327,7 +208526,7 @@
}
},
{
- "id": 14949,
+ "id": 15418,
"properties": {
"east": "low",
"north": "none",
@@ -202338,7 +208537,7 @@
}
},
{
- "id": 14950,
+ "id": 15419,
"properties": {
"east": "low",
"north": "none",
@@ -202349,7 +208548,7 @@
}
},
{
- "id": 14951,
+ "id": 15420,
"properties": {
"east": "low",
"north": "none",
@@ -202360,7 +208559,7 @@
}
},
{
- "id": 14952,
+ "id": 15421,
"properties": {
"east": "low",
"north": "low",
@@ -202371,7 +208570,7 @@
}
},
{
- "id": 14953,
+ "id": 15422,
"properties": {
"east": "low",
"north": "low",
@@ -202382,7 +208581,7 @@
}
},
{
- "id": 14954,
+ "id": 15423,
"properties": {
"east": "low",
"north": "low",
@@ -202393,7 +208592,7 @@
}
},
{
- "id": 14955,
+ "id": 15424,
"properties": {
"east": "low",
"north": "low",
@@ -202404,7 +208603,7 @@
}
},
{
- "id": 14956,
+ "id": 15425,
"properties": {
"east": "low",
"north": "low",
@@ -202415,7 +208614,7 @@
}
},
{
- "id": 14957,
+ "id": 15426,
"properties": {
"east": "low",
"north": "low",
@@ -202426,7 +208625,7 @@
}
},
{
- "id": 14958,
+ "id": 15427,
"properties": {
"east": "low",
"north": "low",
@@ -202437,7 +208636,7 @@
}
},
{
- "id": 14959,
+ "id": 15428,
"properties": {
"east": "low",
"north": "low",
@@ -202448,7 +208647,7 @@
}
},
{
- "id": 14960,
+ "id": 15429,
"properties": {
"east": "low",
"north": "low",
@@ -202459,7 +208658,7 @@
}
},
{
- "id": 14961,
+ "id": 15430,
"properties": {
"east": "low",
"north": "low",
@@ -202470,7 +208669,7 @@
}
},
{
- "id": 14962,
+ "id": 15431,
"properties": {
"east": "low",
"north": "low",
@@ -202481,7 +208680,7 @@
}
},
{
- "id": 14963,
+ "id": 15432,
"properties": {
"east": "low",
"north": "low",
@@ -202492,7 +208691,7 @@
}
},
{
- "id": 14964,
+ "id": 15433,
"properties": {
"east": "low",
"north": "low",
@@ -202503,7 +208702,7 @@
}
},
{
- "id": 14965,
+ "id": 15434,
"properties": {
"east": "low",
"north": "low",
@@ -202514,7 +208713,7 @@
}
},
{
- "id": 14966,
+ "id": 15435,
"properties": {
"east": "low",
"north": "low",
@@ -202525,7 +208724,7 @@
}
},
{
- "id": 14967,
+ "id": 15436,
"properties": {
"east": "low",
"north": "low",
@@ -202536,7 +208735,7 @@
}
},
{
- "id": 14968,
+ "id": 15437,
"properties": {
"east": "low",
"north": "low",
@@ -202547,7 +208746,7 @@
}
},
{
- "id": 14969,
+ "id": 15438,
"properties": {
"east": "low",
"north": "low",
@@ -202558,7 +208757,7 @@
}
},
{
- "id": 14970,
+ "id": 15439,
"properties": {
"east": "low",
"north": "low",
@@ -202569,7 +208768,7 @@
}
},
{
- "id": 14971,
+ "id": 15440,
"properties": {
"east": "low",
"north": "low",
@@ -202580,7 +208779,7 @@
}
},
{
- "id": 14972,
+ "id": 15441,
"properties": {
"east": "low",
"north": "low",
@@ -202591,7 +208790,7 @@
}
},
{
- "id": 14973,
+ "id": 15442,
"properties": {
"east": "low",
"north": "low",
@@ -202602,7 +208801,7 @@
}
},
{
- "id": 14974,
+ "id": 15443,
"properties": {
"east": "low",
"north": "low",
@@ -202613,7 +208812,7 @@
}
},
{
- "id": 14975,
+ "id": 15444,
"properties": {
"east": "low",
"north": "low",
@@ -202624,7 +208823,7 @@
}
},
{
- "id": 14976,
+ "id": 15445,
"properties": {
"east": "low",
"north": "low",
@@ -202635,7 +208834,7 @@
}
},
{
- "id": 14977,
+ "id": 15446,
"properties": {
"east": "low",
"north": "low",
@@ -202646,7 +208845,7 @@
}
},
{
- "id": 14978,
+ "id": 15447,
"properties": {
"east": "low",
"north": "low",
@@ -202657,7 +208856,7 @@
}
},
{
- "id": 14979,
+ "id": 15448,
"properties": {
"east": "low",
"north": "low",
@@ -202668,7 +208867,7 @@
}
},
{
- "id": 14980,
+ "id": 15449,
"properties": {
"east": "low",
"north": "low",
@@ -202679,7 +208878,7 @@
}
},
{
- "id": 14981,
+ "id": 15450,
"properties": {
"east": "low",
"north": "low",
@@ -202690,7 +208889,7 @@
}
},
{
- "id": 14982,
+ "id": 15451,
"properties": {
"east": "low",
"north": "low",
@@ -202701,7 +208900,7 @@
}
},
{
- "id": 14983,
+ "id": 15452,
"properties": {
"east": "low",
"north": "low",
@@ -202712,7 +208911,7 @@
}
},
{
- "id": 14984,
+ "id": 15453,
"properties": {
"east": "low",
"north": "low",
@@ -202723,7 +208922,7 @@
}
},
{
- "id": 14985,
+ "id": 15454,
"properties": {
"east": "low",
"north": "low",
@@ -202734,7 +208933,7 @@
}
},
{
- "id": 14986,
+ "id": 15455,
"properties": {
"east": "low",
"north": "low",
@@ -202745,7 +208944,7 @@
}
},
{
- "id": 14987,
+ "id": 15456,
"properties": {
"east": "low",
"north": "low",
@@ -202756,7 +208955,7 @@
}
},
{
- "id": 14988,
+ "id": 15457,
"properties": {
"east": "low",
"north": "tall",
@@ -202767,7 +208966,7 @@
}
},
{
- "id": 14989,
+ "id": 15458,
"properties": {
"east": "low",
"north": "tall",
@@ -202778,7 +208977,7 @@
}
},
{
- "id": 14990,
+ "id": 15459,
"properties": {
"east": "low",
"north": "tall",
@@ -202789,7 +208988,7 @@
}
},
{
- "id": 14991,
+ "id": 15460,
"properties": {
"east": "low",
"north": "tall",
@@ -202800,7 +208999,7 @@
}
},
{
- "id": 14992,
+ "id": 15461,
"properties": {
"east": "low",
"north": "tall",
@@ -202811,7 +209010,7 @@
}
},
{
- "id": 14993,
+ "id": 15462,
"properties": {
"east": "low",
"north": "tall",
@@ -202822,7 +209021,7 @@
}
},
{
- "id": 14994,
+ "id": 15463,
"properties": {
"east": "low",
"north": "tall",
@@ -202833,7 +209032,7 @@
}
},
{
- "id": 14995,
+ "id": 15464,
"properties": {
"east": "low",
"north": "tall",
@@ -202844,7 +209043,7 @@
}
},
{
- "id": 14996,
+ "id": 15465,
"properties": {
"east": "low",
"north": "tall",
@@ -202855,7 +209054,7 @@
}
},
{
- "id": 14997,
+ "id": 15466,
"properties": {
"east": "low",
"north": "tall",
@@ -202866,7 +209065,7 @@
}
},
{
- "id": 14998,
+ "id": 15467,
"properties": {
"east": "low",
"north": "tall",
@@ -202877,7 +209076,7 @@
}
},
{
- "id": 14999,
+ "id": 15468,
"properties": {
"east": "low",
"north": "tall",
@@ -202888,7 +209087,7 @@
}
},
{
- "id": 15000,
+ "id": 15469,
"properties": {
"east": "low",
"north": "tall",
@@ -202899,7 +209098,7 @@
}
},
{
- "id": 15001,
+ "id": 15470,
"properties": {
"east": "low",
"north": "tall",
@@ -202910,7 +209109,7 @@
}
},
{
- "id": 15002,
+ "id": 15471,
"properties": {
"east": "low",
"north": "tall",
@@ -202921,7 +209120,7 @@
}
},
{
- "id": 15003,
+ "id": 15472,
"properties": {
"east": "low",
"north": "tall",
@@ -202932,7 +209131,7 @@
}
},
{
- "id": 15004,
+ "id": 15473,
"properties": {
"east": "low",
"north": "tall",
@@ -202943,7 +209142,7 @@
}
},
{
- "id": 15005,
+ "id": 15474,
"properties": {
"east": "low",
"north": "tall",
@@ -202954,7 +209153,7 @@
}
},
{
- "id": 15006,
+ "id": 15475,
"properties": {
"east": "low",
"north": "tall",
@@ -202965,7 +209164,7 @@
}
},
{
- "id": 15007,
+ "id": 15476,
"properties": {
"east": "low",
"north": "tall",
@@ -202976,7 +209175,7 @@
}
},
{
- "id": 15008,
+ "id": 15477,
"properties": {
"east": "low",
"north": "tall",
@@ -202987,7 +209186,7 @@
}
},
{
- "id": 15009,
+ "id": 15478,
"properties": {
"east": "low",
"north": "tall",
@@ -202998,7 +209197,7 @@
}
},
{
- "id": 15010,
+ "id": 15479,
"properties": {
"east": "low",
"north": "tall",
@@ -203009,7 +209208,7 @@
}
},
{
- "id": 15011,
+ "id": 15480,
"properties": {
"east": "low",
"north": "tall",
@@ -203020,7 +209219,7 @@
}
},
{
- "id": 15012,
+ "id": 15481,
"properties": {
"east": "low",
"north": "tall",
@@ -203031,7 +209230,7 @@
}
},
{
- "id": 15013,
+ "id": 15482,
"properties": {
"east": "low",
"north": "tall",
@@ -203042,7 +209241,7 @@
}
},
{
- "id": 15014,
+ "id": 15483,
"properties": {
"east": "low",
"north": "tall",
@@ -203053,7 +209252,7 @@
}
},
{
- "id": 15015,
+ "id": 15484,
"properties": {
"east": "low",
"north": "tall",
@@ -203064,7 +209263,7 @@
}
},
{
- "id": 15016,
+ "id": 15485,
"properties": {
"east": "low",
"north": "tall",
@@ -203075,7 +209274,7 @@
}
},
{
- "id": 15017,
+ "id": 15486,
"properties": {
"east": "low",
"north": "tall",
@@ -203086,7 +209285,7 @@
}
},
{
- "id": 15018,
+ "id": 15487,
"properties": {
"east": "low",
"north": "tall",
@@ -203097,7 +209296,7 @@
}
},
{
- "id": 15019,
+ "id": 15488,
"properties": {
"east": "low",
"north": "tall",
@@ -203108,7 +209307,7 @@
}
},
{
- "id": 15020,
+ "id": 15489,
"properties": {
"east": "low",
"north": "tall",
@@ -203119,7 +209318,7 @@
}
},
{
- "id": 15021,
+ "id": 15490,
"properties": {
"east": "low",
"north": "tall",
@@ -203130,7 +209329,7 @@
}
},
{
- "id": 15022,
+ "id": 15491,
"properties": {
"east": "low",
"north": "tall",
@@ -203141,7 +209340,7 @@
}
},
{
- "id": 15023,
+ "id": 15492,
"properties": {
"east": "low",
"north": "tall",
@@ -203152,7 +209351,7 @@
}
},
{
- "id": 15024,
+ "id": 15493,
"properties": {
"east": "tall",
"north": "none",
@@ -203163,7 +209362,7 @@
}
},
{
- "id": 15025,
+ "id": 15494,
"properties": {
"east": "tall",
"north": "none",
@@ -203174,7 +209373,7 @@
}
},
{
- "id": 15026,
+ "id": 15495,
"properties": {
"east": "tall",
"north": "none",
@@ -203185,7 +209384,7 @@
}
},
{
- "id": 15027,
+ "id": 15496,
"properties": {
"east": "tall",
"north": "none",
@@ -203196,7 +209395,7 @@
}
},
{
- "id": 15028,
+ "id": 15497,
"properties": {
"east": "tall",
"north": "none",
@@ -203207,7 +209406,7 @@
}
},
{
- "id": 15029,
+ "id": 15498,
"properties": {
"east": "tall",
"north": "none",
@@ -203218,7 +209417,7 @@
}
},
{
- "id": 15030,
+ "id": 15499,
"properties": {
"east": "tall",
"north": "none",
@@ -203229,7 +209428,7 @@
}
},
{
- "id": 15031,
+ "id": 15500,
"properties": {
"east": "tall",
"north": "none",
@@ -203240,7 +209439,7 @@
}
},
{
- "id": 15032,
+ "id": 15501,
"properties": {
"east": "tall",
"north": "none",
@@ -203251,7 +209450,7 @@
}
},
{
- "id": 15033,
+ "id": 15502,
"properties": {
"east": "tall",
"north": "none",
@@ -203262,7 +209461,7 @@
}
},
{
- "id": 15034,
+ "id": 15503,
"properties": {
"east": "tall",
"north": "none",
@@ -203273,7 +209472,7 @@
}
},
{
- "id": 15035,
+ "id": 15504,
"properties": {
"east": "tall",
"north": "none",
@@ -203284,7 +209483,7 @@
}
},
{
- "id": 15036,
+ "id": 15505,
"properties": {
"east": "tall",
"north": "none",
@@ -203295,7 +209494,7 @@
}
},
{
- "id": 15037,
+ "id": 15506,
"properties": {
"east": "tall",
"north": "none",
@@ -203306,7 +209505,7 @@
}
},
{
- "id": 15038,
+ "id": 15507,
"properties": {
"east": "tall",
"north": "none",
@@ -203317,7 +209516,7 @@
}
},
{
- "id": 15039,
+ "id": 15508,
"properties": {
"east": "tall",
"north": "none",
@@ -203328,7 +209527,7 @@
}
},
{
- "id": 15040,
+ "id": 15509,
"properties": {
"east": "tall",
"north": "none",
@@ -203339,7 +209538,7 @@
}
},
{
- "id": 15041,
+ "id": 15510,
"properties": {
"east": "tall",
"north": "none",
@@ -203350,7 +209549,7 @@
}
},
{
- "id": 15042,
+ "id": 15511,
"properties": {
"east": "tall",
"north": "none",
@@ -203361,7 +209560,7 @@
}
},
{
- "id": 15043,
+ "id": 15512,
"properties": {
"east": "tall",
"north": "none",
@@ -203372,7 +209571,7 @@
}
},
{
- "id": 15044,
+ "id": 15513,
"properties": {
"east": "tall",
"north": "none",
@@ -203383,7 +209582,7 @@
}
},
{
- "id": 15045,
+ "id": 15514,
"properties": {
"east": "tall",
"north": "none",
@@ -203394,7 +209593,7 @@
}
},
{
- "id": 15046,
+ "id": 15515,
"properties": {
"east": "tall",
"north": "none",
@@ -203405,7 +209604,7 @@
}
},
{
- "id": 15047,
+ "id": 15516,
"properties": {
"east": "tall",
"north": "none",
@@ -203416,7 +209615,7 @@
}
},
{
- "id": 15048,
+ "id": 15517,
"properties": {
"east": "tall",
"north": "none",
@@ -203427,7 +209626,7 @@
}
},
{
- "id": 15049,
+ "id": 15518,
"properties": {
"east": "tall",
"north": "none",
@@ -203438,7 +209637,7 @@
}
},
{
- "id": 15050,
+ "id": 15519,
"properties": {
"east": "tall",
"north": "none",
@@ -203449,7 +209648,7 @@
}
},
{
- "id": 15051,
+ "id": 15520,
"properties": {
"east": "tall",
"north": "none",
@@ -203460,7 +209659,7 @@
}
},
{
- "id": 15052,
+ "id": 15521,
"properties": {
"east": "tall",
"north": "none",
@@ -203471,7 +209670,7 @@
}
},
{
- "id": 15053,
+ "id": 15522,
"properties": {
"east": "tall",
"north": "none",
@@ -203482,7 +209681,7 @@
}
},
{
- "id": 15054,
+ "id": 15523,
"properties": {
"east": "tall",
"north": "none",
@@ -203493,7 +209692,7 @@
}
},
{
- "id": 15055,
+ "id": 15524,
"properties": {
"east": "tall",
"north": "none",
@@ -203504,7 +209703,7 @@
}
},
{
- "id": 15056,
+ "id": 15525,
"properties": {
"east": "tall",
"north": "none",
@@ -203515,7 +209714,7 @@
}
},
{
- "id": 15057,
+ "id": 15526,
"properties": {
"east": "tall",
"north": "none",
@@ -203526,7 +209725,7 @@
}
},
{
- "id": 15058,
+ "id": 15527,
"properties": {
"east": "tall",
"north": "none",
@@ -203537,7 +209736,7 @@
}
},
{
- "id": 15059,
+ "id": 15528,
"properties": {
"east": "tall",
"north": "none",
@@ -203548,7 +209747,7 @@
}
},
{
- "id": 15060,
+ "id": 15529,
"properties": {
"east": "tall",
"north": "low",
@@ -203559,7 +209758,7 @@
}
},
{
- "id": 15061,
+ "id": 15530,
"properties": {
"east": "tall",
"north": "low",
@@ -203570,7 +209769,7 @@
}
},
{
- "id": 15062,
+ "id": 15531,
"properties": {
"east": "tall",
"north": "low",
@@ -203581,7 +209780,7 @@
}
},
{
- "id": 15063,
+ "id": 15532,
"properties": {
"east": "tall",
"north": "low",
@@ -203592,7 +209791,7 @@
}
},
{
- "id": 15064,
+ "id": 15533,
"properties": {
"east": "tall",
"north": "low",
@@ -203603,7 +209802,7 @@
}
},
{
- "id": 15065,
+ "id": 15534,
"properties": {
"east": "tall",
"north": "low",
@@ -203614,7 +209813,7 @@
}
},
{
- "id": 15066,
+ "id": 15535,
"properties": {
"east": "tall",
"north": "low",
@@ -203625,7 +209824,7 @@
}
},
{
- "id": 15067,
+ "id": 15536,
"properties": {
"east": "tall",
"north": "low",
@@ -203636,7 +209835,7 @@
}
},
{
- "id": 15068,
+ "id": 15537,
"properties": {
"east": "tall",
"north": "low",
@@ -203647,7 +209846,7 @@
}
},
{
- "id": 15069,
+ "id": 15538,
"properties": {
"east": "tall",
"north": "low",
@@ -203658,7 +209857,7 @@
}
},
{
- "id": 15070,
+ "id": 15539,
"properties": {
"east": "tall",
"north": "low",
@@ -203669,7 +209868,7 @@
}
},
{
- "id": 15071,
+ "id": 15540,
"properties": {
"east": "tall",
"north": "low",
@@ -203680,7 +209879,7 @@
}
},
{
- "id": 15072,
+ "id": 15541,
"properties": {
"east": "tall",
"north": "low",
@@ -203691,7 +209890,7 @@
}
},
{
- "id": 15073,
+ "id": 15542,
"properties": {
"east": "tall",
"north": "low",
@@ -203702,7 +209901,7 @@
}
},
{
- "id": 15074,
+ "id": 15543,
"properties": {
"east": "tall",
"north": "low",
@@ -203713,7 +209912,7 @@
}
},
{
- "id": 15075,
+ "id": 15544,
"properties": {
"east": "tall",
"north": "low",
@@ -203724,7 +209923,7 @@
}
},
{
- "id": 15076,
+ "id": 15545,
"properties": {
"east": "tall",
"north": "low",
@@ -203735,7 +209934,7 @@
}
},
{
- "id": 15077,
+ "id": 15546,
"properties": {
"east": "tall",
"north": "low",
@@ -203746,7 +209945,7 @@
}
},
{
- "id": 15078,
+ "id": 15547,
"properties": {
"east": "tall",
"north": "low",
@@ -203757,7 +209956,7 @@
}
},
{
- "id": 15079,
+ "id": 15548,
"properties": {
"east": "tall",
"north": "low",
@@ -203768,7 +209967,7 @@
}
},
{
- "id": 15080,
+ "id": 15549,
"properties": {
"east": "tall",
"north": "low",
@@ -203779,7 +209978,7 @@
}
},
{
- "id": 15081,
+ "id": 15550,
"properties": {
"east": "tall",
"north": "low",
@@ -203790,7 +209989,7 @@
}
},
{
- "id": 15082,
+ "id": 15551,
"properties": {
"east": "tall",
"north": "low",
@@ -203801,7 +210000,7 @@
}
},
{
- "id": 15083,
+ "id": 15552,
"properties": {
"east": "tall",
"north": "low",
@@ -203812,7 +210011,7 @@
}
},
{
- "id": 15084,
+ "id": 15553,
"properties": {
"east": "tall",
"north": "low",
@@ -203823,7 +210022,7 @@
}
},
{
- "id": 15085,
+ "id": 15554,
"properties": {
"east": "tall",
"north": "low",
@@ -203834,7 +210033,7 @@
}
},
{
- "id": 15086,
+ "id": 15555,
"properties": {
"east": "tall",
"north": "low",
@@ -203845,7 +210044,7 @@
}
},
{
- "id": 15087,
+ "id": 15556,
"properties": {
"east": "tall",
"north": "low",
@@ -203856,7 +210055,7 @@
}
},
{
- "id": 15088,
+ "id": 15557,
"properties": {
"east": "tall",
"north": "low",
@@ -203867,7 +210066,7 @@
}
},
{
- "id": 15089,
+ "id": 15558,
"properties": {
"east": "tall",
"north": "low",
@@ -203878,7 +210077,7 @@
}
},
{
- "id": 15090,
+ "id": 15559,
"properties": {
"east": "tall",
"north": "low",
@@ -203889,7 +210088,7 @@
}
},
{
- "id": 15091,
+ "id": 15560,
"properties": {
"east": "tall",
"north": "low",
@@ -203900,7 +210099,7 @@
}
},
{
- "id": 15092,
+ "id": 15561,
"properties": {
"east": "tall",
"north": "low",
@@ -203911,7 +210110,7 @@
}
},
{
- "id": 15093,
+ "id": 15562,
"properties": {
"east": "tall",
"north": "low",
@@ -203922,7 +210121,7 @@
}
},
{
- "id": 15094,
+ "id": 15563,
"properties": {
"east": "tall",
"north": "low",
@@ -203933,7 +210132,7 @@
}
},
{
- "id": 15095,
+ "id": 15564,
"properties": {
"east": "tall",
"north": "low",
@@ -203944,7 +210143,7 @@
}
},
{
- "id": 15096,
+ "id": 15565,
"properties": {
"east": "tall",
"north": "tall",
@@ -203955,7 +210154,7 @@
}
},
{
- "id": 15097,
+ "id": 15566,
"properties": {
"east": "tall",
"north": "tall",
@@ -203966,7 +210165,7 @@
}
},
{
- "id": 15098,
+ "id": 15567,
"properties": {
"east": "tall",
"north": "tall",
@@ -203977,7 +210176,7 @@
}
},
{
- "id": 15099,
+ "id": 15568,
"properties": {
"east": "tall",
"north": "tall",
@@ -203988,7 +210187,7 @@
}
},
{
- "id": 15100,
+ "id": 15569,
"properties": {
"east": "tall",
"north": "tall",
@@ -203999,7 +210198,7 @@
}
},
{
- "id": 15101,
+ "id": 15570,
"properties": {
"east": "tall",
"north": "tall",
@@ -204010,7 +210209,7 @@
}
},
{
- "id": 15102,
+ "id": 15571,
"properties": {
"east": "tall",
"north": "tall",
@@ -204021,7 +210220,7 @@
}
},
{
- "id": 15103,
+ "id": 15572,
"properties": {
"east": "tall",
"north": "tall",
@@ -204032,7 +210231,7 @@
}
},
{
- "id": 15104,
+ "id": 15573,
"properties": {
"east": "tall",
"north": "tall",
@@ -204043,7 +210242,7 @@
}
},
{
- "id": 15105,
+ "id": 15574,
"properties": {
"east": "tall",
"north": "tall",
@@ -204054,7 +210253,7 @@
}
},
{
- "id": 15106,
+ "id": 15575,
"properties": {
"east": "tall",
"north": "tall",
@@ -204065,7 +210264,7 @@
}
},
{
- "id": 15107,
+ "id": 15576,
"properties": {
"east": "tall",
"north": "tall",
@@ -204076,7 +210275,7 @@
}
},
{
- "id": 15108,
+ "id": 15577,
"properties": {
"east": "tall",
"north": "tall",
@@ -204087,7 +210286,7 @@
}
},
{
- "id": 15109,
+ "id": 15578,
"properties": {
"east": "tall",
"north": "tall",
@@ -204098,7 +210297,7 @@
}
},
{
- "id": 15110,
+ "id": 15579,
"properties": {
"east": "tall",
"north": "tall",
@@ -204109,7 +210308,7 @@
}
},
{
- "id": 15111,
+ "id": 15580,
"properties": {
"east": "tall",
"north": "tall",
@@ -204120,7 +210319,7 @@
}
},
{
- "id": 15112,
+ "id": 15581,
"properties": {
"east": "tall",
"north": "tall",
@@ -204131,7 +210330,7 @@
}
},
{
- "id": 15113,
+ "id": 15582,
"properties": {
"east": "tall",
"north": "tall",
@@ -204142,7 +210341,7 @@
}
},
{
- "id": 15114,
+ "id": 15583,
"properties": {
"east": "tall",
"north": "tall",
@@ -204153,7 +210352,7 @@
}
},
{
- "id": 15115,
+ "id": 15584,
"properties": {
"east": "tall",
"north": "tall",
@@ -204164,7 +210363,7 @@
}
},
{
- "id": 15116,
+ "id": 15585,
"properties": {
"east": "tall",
"north": "tall",
@@ -204175,7 +210374,7 @@
}
},
{
- "id": 15117,
+ "id": 15586,
"properties": {
"east": "tall",
"north": "tall",
@@ -204186,7 +210385,7 @@
}
},
{
- "id": 15118,
+ "id": 15587,
"properties": {
"east": "tall",
"north": "tall",
@@ -204197,7 +210396,7 @@
}
},
{
- "id": 15119,
+ "id": 15588,
"properties": {
"east": "tall",
"north": "tall",
@@ -204208,7 +210407,7 @@
}
},
{
- "id": 15120,
+ "id": 15589,
"properties": {
"east": "tall",
"north": "tall",
@@ -204219,7 +210418,7 @@
}
},
{
- "id": 15121,
+ "id": 15590,
"properties": {
"east": "tall",
"north": "tall",
@@ -204230,7 +210429,7 @@
}
},
{
- "id": 15122,
+ "id": 15591,
"properties": {
"east": "tall",
"north": "tall",
@@ -204241,7 +210440,7 @@
}
},
{
- "id": 15123,
+ "id": 15592,
"properties": {
"east": "tall",
"north": "tall",
@@ -204252,7 +210451,7 @@
}
},
{
- "id": 15124,
+ "id": 15593,
"properties": {
"east": "tall",
"north": "tall",
@@ -204263,7 +210462,7 @@
}
},
{
- "id": 15125,
+ "id": 15594,
"properties": {
"east": "tall",
"north": "tall",
@@ -204274,7 +210473,7 @@
}
},
{
- "id": 15126,
+ "id": 15595,
"properties": {
"east": "tall",
"north": "tall",
@@ -204285,7 +210484,7 @@
}
},
{
- "id": 15127,
+ "id": 15596,
"properties": {
"east": "tall",
"north": "tall",
@@ -204296,7 +210495,7 @@
}
},
{
- "id": 15128,
+ "id": 15597,
"properties": {
"east": "tall",
"north": "tall",
@@ -204307,7 +210506,7 @@
}
},
{
- "id": 15129,
+ "id": 15598,
"properties": {
"east": "tall",
"north": "tall",
@@ -204318,7 +210517,7 @@
}
},
{
- "id": 15130,
+ "id": 15599,
"properties": {
"east": "tall",
"north": "tall",
@@ -204329,7 +210528,7 @@
}
},
{
- "id": 15131,
+ "id": 15600,
"properties": {
"east": "tall",
"north": "tall",
@@ -204359,38 +210558,38 @@
},
"states": [
{
- "id": 12652,
+ "id": 13121,
"properties": {
"facing": "north"
}
},
{
- "id": 12653,
+ "id": 13122,
"properties": {
"facing": "east"
}
},
{
- "id": 12654,
+ "id": 13123,
"properties": {
"facing": "south"
}
},
{
- "id": 12655,
+ "id": 13124,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12656,
+ "id": 13125,
"properties": {
"facing": "up"
}
},
{
- "id": 12657,
+ "id": 13126,
"properties": {
"facing": "down"
}
@@ -204406,7 +210605,7 @@
"states": [
{
"default": true,
- "id": 5959
+ "id": 6125
}
]
},
@@ -204440,7 +210639,7 @@
},
"states": [
{
- "id": 9820,
+ "id": 10075,
"properties": {
"east": "true",
"north": "true",
@@ -204450,7 +210649,7 @@
}
},
{
- "id": 9821,
+ "id": 10076,
"properties": {
"east": "true",
"north": "true",
@@ -204460,7 +210659,7 @@
}
},
{
- "id": 9822,
+ "id": 10077,
"properties": {
"east": "true",
"north": "true",
@@ -204470,7 +210669,7 @@
}
},
{
- "id": 9823,
+ "id": 10078,
"properties": {
"east": "true",
"north": "true",
@@ -204480,7 +210679,7 @@
}
},
{
- "id": 9824,
+ "id": 10079,
"properties": {
"east": "true",
"north": "true",
@@ -204490,7 +210689,7 @@
}
},
{
- "id": 9825,
+ "id": 10080,
"properties": {
"east": "true",
"north": "true",
@@ -204500,7 +210699,7 @@
}
},
{
- "id": 9826,
+ "id": 10081,
"properties": {
"east": "true",
"north": "true",
@@ -204510,7 +210709,7 @@
}
},
{
- "id": 9827,
+ "id": 10082,
"properties": {
"east": "true",
"north": "true",
@@ -204520,7 +210719,7 @@
}
},
{
- "id": 9828,
+ "id": 10083,
"properties": {
"east": "true",
"north": "false",
@@ -204530,7 +210729,7 @@
}
},
{
- "id": 9829,
+ "id": 10084,
"properties": {
"east": "true",
"north": "false",
@@ -204540,7 +210739,7 @@
}
},
{
- "id": 9830,
+ "id": 10085,
"properties": {
"east": "true",
"north": "false",
@@ -204550,7 +210749,7 @@
}
},
{
- "id": 9831,
+ "id": 10086,
"properties": {
"east": "true",
"north": "false",
@@ -204560,7 +210759,7 @@
}
},
{
- "id": 9832,
+ "id": 10087,
"properties": {
"east": "true",
"north": "false",
@@ -204570,7 +210769,7 @@
}
},
{
- "id": 9833,
+ "id": 10088,
"properties": {
"east": "true",
"north": "false",
@@ -204580,7 +210779,7 @@
}
},
{
- "id": 9834,
+ "id": 10089,
"properties": {
"east": "true",
"north": "false",
@@ -204590,7 +210789,7 @@
}
},
{
- "id": 9835,
+ "id": 10090,
"properties": {
"east": "true",
"north": "false",
@@ -204600,7 +210799,7 @@
}
},
{
- "id": 9836,
+ "id": 10091,
"properties": {
"east": "false",
"north": "true",
@@ -204610,7 +210809,7 @@
}
},
{
- "id": 9837,
+ "id": 10092,
"properties": {
"east": "false",
"north": "true",
@@ -204620,7 +210819,7 @@
}
},
{
- "id": 9838,
+ "id": 10093,
"properties": {
"east": "false",
"north": "true",
@@ -204630,7 +210829,7 @@
}
},
{
- "id": 9839,
+ "id": 10094,
"properties": {
"east": "false",
"north": "true",
@@ -204640,7 +210839,7 @@
}
},
{
- "id": 9840,
+ "id": 10095,
"properties": {
"east": "false",
"north": "true",
@@ -204650,7 +210849,7 @@
}
},
{
- "id": 9841,
+ "id": 10096,
"properties": {
"east": "false",
"north": "true",
@@ -204660,7 +210859,7 @@
}
},
{
- "id": 9842,
+ "id": 10097,
"properties": {
"east": "false",
"north": "true",
@@ -204670,7 +210869,7 @@
}
},
{
- "id": 9843,
+ "id": 10098,
"properties": {
"east": "false",
"north": "true",
@@ -204680,7 +210879,7 @@
}
},
{
- "id": 9844,
+ "id": 10099,
"properties": {
"east": "false",
"north": "false",
@@ -204690,7 +210889,7 @@
}
},
{
- "id": 9845,
+ "id": 10100,
"properties": {
"east": "false",
"north": "false",
@@ -204700,7 +210899,7 @@
}
},
{
- "id": 9846,
+ "id": 10101,
"properties": {
"east": "false",
"north": "false",
@@ -204710,7 +210909,7 @@
}
},
{
- "id": 9847,
+ "id": 10102,
"properties": {
"east": "false",
"north": "false",
@@ -204720,7 +210919,7 @@
}
},
{
- "id": 9848,
+ "id": 10103,
"properties": {
"east": "false",
"north": "false",
@@ -204730,7 +210929,7 @@
}
},
{
- "id": 9849,
+ "id": 10104,
"properties": {
"east": "false",
"north": "false",
@@ -204740,7 +210939,7 @@
}
},
{
- "id": 9850,
+ "id": 10105,
"properties": {
"east": "false",
"north": "false",
@@ -204751,7 +210950,7 @@
},
{
"default": true,
- "id": 9851,
+ "id": 10106,
"properties": {
"east": "false",
"north": "false",
@@ -204770,7 +210969,7 @@
"states": [
{
"default": true,
- "id": 9370
+ "id": 9625
}
]
},
@@ -204788,7 +210987,7 @@
"states": [
{
"default": true,
- "id": 2081
+ "id": 2124
}
]
},
@@ -204809,25 +211008,25 @@
"states": [
{
"default": true,
- "id": 11071,
+ "id": 11406,
"properties": {
"facing": "north"
}
},
{
- "id": 11072,
+ "id": 11407,
"properties": {
"facing": "south"
}
},
{
- "id": 11073,
+ "id": 11408,
"properties": {
"facing": "west"
}
},
{
- "id": 11074,
+ "id": 11409,
"properties": {
"facing": "east"
}
@@ -204842,7 +211041,7 @@
"states": [
{
"default": true,
- "id": 2061
+ "id": 2104
}
]
},
@@ -204854,7 +211053,7 @@
"states": [
{
"default": true,
- "id": 9223
+ "id": 9478
}
]
},
@@ -204871,14 +211070,14 @@
},
"states": [
{
- "id": 7417,
+ "id": 7647,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 7418,
+ "id": 7648,
"properties": {
"lit": "false"
}
@@ -204898,14 +211097,14 @@
},
"states": [
{
- "id": 5734,
+ "id": 5900,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 5735,
+ "id": 5901,
"properties": {
"lit": "false"
}
@@ -204926,13 +211125,13 @@
"states": [
{
"default": true,
- "id": 5738,
+ "id": 5904,
"properties": {
"lit": "true"
}
},
{
- "id": 5739,
+ "id": 5905,
"properties": {
"lit": "false"
}
@@ -204959,56 +211158,56 @@
"states": [
{
"default": true,
- "id": 5740,
+ "id": 5906,
"properties": {
"facing": "north",
"lit": "true"
}
},
{
- "id": 5741,
+ "id": 5907,
"properties": {
"facing": "north",
"lit": "false"
}
},
{
- "id": 5742,
+ "id": 5908,
"properties": {
"facing": "south",
"lit": "true"
}
},
{
- "id": 5743,
+ "id": 5909,
"properties": {
"facing": "south",
"lit": "false"
}
},
{
- "id": 5744,
+ "id": 5910,
"properties": {
"facing": "west",
"lit": "true"
}
},
{
- "id": 5745,
+ "id": 5911,
"properties": {
"facing": "west",
"lit": "false"
}
},
{
- "id": 5746,
+ "id": 5912,
"properties": {
"facing": "east",
"lit": "true"
}
},
{
- "id": 5747,
+ "id": 5913,
"properties": {
"facing": "east",
"lit": "false"
@@ -205062,534 +211261,14 @@
]
},
"states": [
- {
- "id": 2978,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "0",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 2979,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "0",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 2980,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "0",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 2981,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "0",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 2982,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "0",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 2983,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "0",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 2984,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "0",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 2985,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "0",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 2986,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "0",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 2987,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "1",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 2988,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "1",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 2989,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "1",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 2990,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "1",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 2991,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "1",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 2992,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "1",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 2993,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "1",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 2994,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "1",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 2995,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "1",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 2996,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "2",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 2997,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "2",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 2998,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "2",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 2999,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "2",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3000,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "2",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3001,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "2",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3002,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "2",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3003,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "2",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3004,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "2",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3005,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "3",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3006,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "3",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3007,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "3",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3008,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "3",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3009,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "3",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3010,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "3",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3011,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "3",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3012,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "3",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3013,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "3",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3014,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "4",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3015,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "4",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3016,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "4",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3017,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "4",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3018,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "4",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3019,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "4",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3020,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "4",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3021,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "4",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3022,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "4",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3023,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "5",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3024,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "5",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3025,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "5",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3026,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "5",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3027,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "5",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3028,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "5",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3029,
- "properties": {
- "east": "up",
- "north": "up",
- "power": "5",
- "south": "none",
- "west": "up"
- }
- },
{
"id": 3030,
"properties": {
"east": "up",
"north": "up",
- "power": "5",
- "south": "none",
- "west": "side"
+ "power": "0",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -205597,9 +211276,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "5",
- "south": "none",
- "west": "none"
+ "power": "0",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -205607,9 +211286,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "6",
+ "power": "0",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -205617,9 +211296,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "6",
- "south": "up",
- "west": "side"
+ "power": "0",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -205627,9 +211306,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "6",
- "south": "up",
- "west": "none"
+ "power": "0",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -205637,9 +211316,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "6",
+ "power": "0",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -205647,9 +211326,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "6",
- "south": "side",
- "west": "side"
+ "power": "0",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -205657,9 +211336,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "6",
- "south": "side",
- "west": "none"
+ "power": "0",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -205667,9 +211346,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "6",
+ "power": "0",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -205677,9 +211356,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "6",
- "south": "none",
- "west": "side"
+ "power": "1",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -205687,9 +211366,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "6",
- "south": "none",
- "west": "none"
+ "power": "1",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -205697,9 +211376,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "7",
+ "power": "1",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -205707,9 +211386,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "7",
- "south": "up",
- "west": "side"
+ "power": "1",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -205717,9 +211396,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "7",
- "south": "up",
- "west": "none"
+ "power": "1",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -205727,9 +211406,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "7",
+ "power": "1",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -205737,9 +211416,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "7",
- "south": "side",
- "west": "side"
+ "power": "1",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -205747,9 +211426,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "7",
- "south": "side",
- "west": "none"
+ "power": "1",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -205757,9 +211436,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "7",
+ "power": "1",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -205767,9 +211446,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "7",
- "south": "none",
- "west": "side"
+ "power": "2",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -205777,9 +211456,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "7",
- "south": "none",
- "west": "none"
+ "power": "2",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -205787,9 +211466,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "8",
+ "power": "2",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -205797,9 +211476,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "8",
- "south": "up",
- "west": "side"
+ "power": "2",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -205807,9 +211486,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "8",
- "south": "up",
- "west": "none"
+ "power": "2",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -205817,9 +211496,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "8",
+ "power": "2",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -205827,9 +211506,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "8",
- "south": "side",
- "west": "side"
+ "power": "2",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -205837,9 +211516,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "8",
- "south": "side",
- "west": "none"
+ "power": "2",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -205847,9 +211526,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "8",
+ "power": "2",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -205857,9 +211536,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "8",
- "south": "none",
- "west": "side"
+ "power": "3",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -205867,9 +211546,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "8",
- "south": "none",
- "west": "none"
+ "power": "3",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -205877,9 +211556,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "9",
+ "power": "3",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -205887,9 +211566,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "9",
- "south": "up",
- "west": "side"
+ "power": "3",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -205897,9 +211576,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "9",
- "south": "up",
- "west": "none"
+ "power": "3",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -205907,9 +211586,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "9",
+ "power": "3",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -205917,9 +211596,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "9",
- "south": "side",
- "west": "side"
+ "power": "3",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -205927,9 +211606,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "9",
- "south": "side",
- "west": "none"
+ "power": "3",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -205937,9 +211616,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "9",
+ "power": "3",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -205947,9 +211626,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "9",
- "south": "none",
- "west": "side"
+ "power": "4",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -205957,9 +211636,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "9",
- "south": "none",
- "west": "none"
+ "power": "4",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -205967,9 +211646,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "10",
+ "power": "4",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -205977,9 +211656,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "10",
- "south": "up",
- "west": "side"
+ "power": "4",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -205987,9 +211666,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "10",
- "south": "up",
- "west": "none"
+ "power": "4",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -205997,9 +211676,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "10",
+ "power": "4",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -206007,9 +211686,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "10",
- "south": "side",
- "west": "side"
+ "power": "4",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -206017,9 +211696,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "10",
- "south": "side",
- "west": "none"
+ "power": "4",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -206027,9 +211706,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "10",
+ "power": "4",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -206037,9 +211716,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "10",
- "south": "none",
- "west": "side"
+ "power": "5",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -206047,9 +211726,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "10",
- "south": "none",
- "west": "none"
+ "power": "5",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -206057,9 +211736,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "11",
+ "power": "5",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -206067,9 +211746,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "11",
- "south": "up",
- "west": "side"
+ "power": "5",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -206077,9 +211756,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "11",
- "south": "up",
- "west": "none"
+ "power": "5",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -206087,9 +211766,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "11",
+ "power": "5",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -206097,9 +211776,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "11",
- "south": "side",
- "west": "side"
+ "power": "5",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -206107,9 +211786,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "11",
- "south": "side",
- "west": "none"
+ "power": "5",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -206117,9 +211796,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "11",
+ "power": "5",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -206127,9 +211806,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "11",
- "south": "none",
- "west": "side"
+ "power": "6",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -206137,9 +211816,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "11",
- "south": "none",
- "west": "none"
+ "power": "6",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -206147,9 +211826,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "12",
+ "power": "6",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -206157,9 +211836,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "12",
- "south": "up",
- "west": "side"
+ "power": "6",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -206167,9 +211846,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "12",
- "south": "up",
- "west": "none"
+ "power": "6",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -206177,9 +211856,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "12",
+ "power": "6",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -206187,9 +211866,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "12",
- "south": "side",
- "west": "side"
+ "power": "6",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -206197,9 +211876,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "12",
- "south": "side",
- "west": "none"
+ "power": "6",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -206207,9 +211886,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "12",
+ "power": "6",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -206217,9 +211896,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "12",
- "south": "none",
- "west": "side"
+ "power": "7",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -206227,9 +211906,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "12",
- "south": "none",
- "west": "none"
+ "power": "7",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -206237,9 +211916,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "13",
+ "power": "7",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -206247,9 +211926,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "13",
- "south": "up",
- "west": "side"
+ "power": "7",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -206257,9 +211936,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "13",
- "south": "up",
- "west": "none"
+ "power": "7",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -206267,9 +211946,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "13",
+ "power": "7",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -206277,9 +211956,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "13",
- "south": "side",
- "west": "side"
+ "power": "7",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -206287,9 +211966,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "13",
- "south": "side",
- "west": "none"
+ "power": "7",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -206297,9 +211976,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "13",
+ "power": "7",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -206307,9 +211986,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "13",
- "south": "none",
- "west": "side"
+ "power": "8",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -206317,9 +211996,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "13",
- "south": "none",
- "west": "none"
+ "power": "8",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -206327,9 +212006,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "14",
+ "power": "8",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -206337,9 +212016,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "14",
- "south": "up",
- "west": "side"
+ "power": "8",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -206347,9 +212026,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "14",
- "south": "up",
- "west": "none"
+ "power": "8",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -206357,9 +212036,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "14",
+ "power": "8",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -206367,9 +212046,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "14",
- "south": "side",
- "west": "side"
+ "power": "8",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -206377,9 +212056,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "14",
- "south": "side",
- "west": "none"
+ "power": "8",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -206387,9 +212066,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "14",
+ "power": "8",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -206397,9 +212076,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "14",
- "south": "none",
- "west": "side"
+ "power": "9",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -206407,9 +212086,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "14",
- "south": "none",
- "west": "none"
+ "power": "9",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -206417,9 +212096,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "15",
+ "power": "9",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -206427,9 +212106,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "15",
- "south": "up",
- "west": "side"
+ "power": "9",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -206437,9 +212116,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "15",
- "south": "up",
- "west": "none"
+ "power": "9",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -206447,9 +212126,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "15",
+ "power": "9",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -206457,9 +212136,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "15",
- "south": "side",
- "west": "side"
+ "power": "9",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -206467,9 +212146,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "15",
- "south": "side",
- "west": "none"
+ "power": "9",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -206477,9 +212156,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "15",
+ "power": "9",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -206487,9 +212166,9 @@
"properties": {
"east": "up",
"north": "up",
- "power": "15",
- "south": "none",
- "west": "side"
+ "power": "10",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -206497,529 +212176,529 @@
"properties": {
"east": "up",
"north": "up",
- "power": "15",
- "south": "none",
- "west": "none"
+ "power": "10",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3122,
"properties": {
"east": "up",
- "north": "side",
- "power": "0",
+ "north": "up",
+ "power": "10",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3123,
"properties": {
"east": "up",
- "north": "side",
- "power": "0",
- "south": "up",
- "west": "side"
+ "north": "up",
+ "power": "10",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3124,
"properties": {
"east": "up",
- "north": "side",
- "power": "0",
- "south": "up",
- "west": "none"
+ "north": "up",
+ "power": "10",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3125,
"properties": {
"east": "up",
- "north": "side",
- "power": "0",
+ "north": "up",
+ "power": "10",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3126,
"properties": {
"east": "up",
- "north": "side",
- "power": "0",
- "south": "side",
- "west": "side"
+ "north": "up",
+ "power": "10",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3127,
"properties": {
"east": "up",
- "north": "side",
- "power": "0",
- "south": "side",
- "west": "none"
+ "north": "up",
+ "power": "10",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3128,
"properties": {
"east": "up",
- "north": "side",
- "power": "0",
+ "north": "up",
+ "power": "10",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3129,
"properties": {
"east": "up",
- "north": "side",
- "power": "0",
- "south": "none",
- "west": "side"
+ "north": "up",
+ "power": "11",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3130,
"properties": {
"east": "up",
- "north": "side",
- "power": "0",
- "south": "none",
- "west": "none"
+ "north": "up",
+ "power": "11",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3131,
"properties": {
"east": "up",
- "north": "side",
- "power": "1",
+ "north": "up",
+ "power": "11",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3132,
"properties": {
"east": "up",
- "north": "side",
- "power": "1",
- "south": "up",
- "west": "side"
+ "north": "up",
+ "power": "11",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3133,
"properties": {
"east": "up",
- "north": "side",
- "power": "1",
- "south": "up",
- "west": "none"
+ "north": "up",
+ "power": "11",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3134,
"properties": {
"east": "up",
- "north": "side",
- "power": "1",
+ "north": "up",
+ "power": "11",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3135,
"properties": {
"east": "up",
- "north": "side",
- "power": "1",
- "south": "side",
- "west": "side"
+ "north": "up",
+ "power": "11",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3136,
"properties": {
"east": "up",
- "north": "side",
- "power": "1",
- "south": "side",
- "west": "none"
+ "north": "up",
+ "power": "11",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3137,
"properties": {
"east": "up",
- "north": "side",
- "power": "1",
+ "north": "up",
+ "power": "11",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3138,
"properties": {
"east": "up",
- "north": "side",
- "power": "1",
- "south": "none",
- "west": "side"
+ "north": "up",
+ "power": "12",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3139,
"properties": {
"east": "up",
- "north": "side",
- "power": "1",
- "south": "none",
- "west": "none"
+ "north": "up",
+ "power": "12",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3140,
"properties": {
"east": "up",
- "north": "side",
- "power": "2",
+ "north": "up",
+ "power": "12",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3141,
"properties": {
"east": "up",
- "north": "side",
- "power": "2",
- "south": "up",
- "west": "side"
+ "north": "up",
+ "power": "12",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3142,
"properties": {
"east": "up",
- "north": "side",
- "power": "2",
- "south": "up",
- "west": "none"
+ "north": "up",
+ "power": "12",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3143,
"properties": {
"east": "up",
- "north": "side",
- "power": "2",
+ "north": "up",
+ "power": "12",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3144,
"properties": {
"east": "up",
- "north": "side",
- "power": "2",
- "south": "side",
- "west": "side"
+ "north": "up",
+ "power": "12",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3145,
"properties": {
"east": "up",
- "north": "side",
- "power": "2",
- "south": "side",
- "west": "none"
+ "north": "up",
+ "power": "12",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3146,
"properties": {
"east": "up",
- "north": "side",
- "power": "2",
+ "north": "up",
+ "power": "12",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3147,
"properties": {
"east": "up",
- "north": "side",
- "power": "2",
- "south": "none",
- "west": "side"
+ "north": "up",
+ "power": "13",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3148,
"properties": {
"east": "up",
- "north": "side",
- "power": "2",
- "south": "none",
- "west": "none"
+ "north": "up",
+ "power": "13",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3149,
"properties": {
"east": "up",
- "north": "side",
- "power": "3",
+ "north": "up",
+ "power": "13",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3150,
"properties": {
"east": "up",
- "north": "side",
- "power": "3",
- "south": "up",
- "west": "side"
+ "north": "up",
+ "power": "13",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3151,
"properties": {
"east": "up",
- "north": "side",
- "power": "3",
- "south": "up",
- "west": "none"
+ "north": "up",
+ "power": "13",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3152,
"properties": {
"east": "up",
- "north": "side",
- "power": "3",
+ "north": "up",
+ "power": "13",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3153,
"properties": {
"east": "up",
- "north": "side",
- "power": "3",
- "south": "side",
- "west": "side"
+ "north": "up",
+ "power": "13",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3154,
"properties": {
"east": "up",
- "north": "side",
- "power": "3",
- "south": "side",
- "west": "none"
+ "north": "up",
+ "power": "13",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3155,
"properties": {
"east": "up",
- "north": "side",
- "power": "3",
+ "north": "up",
+ "power": "13",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3156,
"properties": {
"east": "up",
- "north": "side",
- "power": "3",
- "south": "none",
- "west": "side"
+ "north": "up",
+ "power": "14",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3157,
"properties": {
"east": "up",
- "north": "side",
- "power": "3",
- "south": "none",
- "west": "none"
+ "north": "up",
+ "power": "14",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3158,
"properties": {
"east": "up",
- "north": "side",
- "power": "4",
+ "north": "up",
+ "power": "14",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3159,
"properties": {
"east": "up",
- "north": "side",
- "power": "4",
- "south": "up",
- "west": "side"
+ "north": "up",
+ "power": "14",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3160,
"properties": {
"east": "up",
- "north": "side",
- "power": "4",
- "south": "up",
- "west": "none"
+ "north": "up",
+ "power": "14",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3161,
"properties": {
"east": "up",
- "north": "side",
- "power": "4",
+ "north": "up",
+ "power": "14",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3162,
"properties": {
"east": "up",
- "north": "side",
- "power": "4",
- "south": "side",
- "west": "side"
+ "north": "up",
+ "power": "14",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3163,
"properties": {
"east": "up",
- "north": "side",
- "power": "4",
- "south": "side",
- "west": "none"
+ "north": "up",
+ "power": "14",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3164,
"properties": {
"east": "up",
- "north": "side",
- "power": "4",
+ "north": "up",
+ "power": "14",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3165,
"properties": {
"east": "up",
- "north": "side",
- "power": "4",
- "south": "none",
- "west": "side"
+ "north": "up",
+ "power": "15",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3166,
"properties": {
"east": "up",
- "north": "side",
- "power": "4",
- "south": "none",
- "west": "none"
+ "north": "up",
+ "power": "15",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3167,
"properties": {
"east": "up",
- "north": "side",
- "power": "5",
+ "north": "up",
+ "power": "15",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3168,
"properties": {
"east": "up",
- "north": "side",
- "power": "5",
- "south": "up",
- "west": "side"
+ "north": "up",
+ "power": "15",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3169,
"properties": {
"east": "up",
- "north": "side",
- "power": "5",
- "south": "up",
- "west": "none"
+ "north": "up",
+ "power": "15",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3170,
"properties": {
"east": "up",
- "north": "side",
- "power": "5",
+ "north": "up",
+ "power": "15",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3171,
"properties": {
"east": "up",
- "north": "side",
- "power": "5",
- "south": "side",
- "west": "side"
+ "north": "up",
+ "power": "15",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3172,
"properties": {
"east": "up",
- "north": "side",
- "power": "5",
- "south": "side",
- "west": "none"
+ "north": "up",
+ "power": "15",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3173,
"properties": {
"east": "up",
- "north": "side",
- "power": "5",
+ "north": "up",
+ "power": "15",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207027,9 +212706,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "5",
- "south": "none",
- "west": "side"
+ "power": "0",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -207037,9 +212716,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "5",
- "south": "none",
- "west": "none"
+ "power": "0",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -207047,9 +212726,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "6",
+ "power": "0",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207057,9 +212736,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "6",
- "south": "up",
- "west": "side"
+ "power": "0",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -207067,9 +212746,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "6",
- "south": "up",
- "west": "none"
+ "power": "0",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -207077,9 +212756,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "6",
+ "power": "0",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207087,9 +212766,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "6",
- "south": "side",
- "west": "side"
+ "power": "0",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -207097,9 +212776,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "6",
- "south": "side",
- "west": "none"
+ "power": "0",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -207107,9 +212786,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "6",
+ "power": "0",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207117,9 +212796,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "6",
- "south": "none",
- "west": "side"
+ "power": "1",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -207127,9 +212806,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "6",
- "south": "none",
- "west": "none"
+ "power": "1",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -207137,9 +212816,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "7",
+ "power": "1",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207147,9 +212826,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "7",
- "south": "up",
- "west": "side"
+ "power": "1",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -207157,9 +212836,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "7",
- "south": "up",
- "west": "none"
+ "power": "1",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -207167,9 +212846,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "7",
+ "power": "1",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207177,9 +212856,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "7",
- "south": "side",
- "west": "side"
+ "power": "1",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -207187,9 +212866,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "7",
- "south": "side",
- "west": "none"
+ "power": "1",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -207197,9 +212876,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "7",
+ "power": "1",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207207,9 +212886,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "7",
- "south": "none",
- "west": "side"
+ "power": "2",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -207217,9 +212896,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "7",
- "south": "none",
- "west": "none"
+ "power": "2",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -207227,9 +212906,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "8",
+ "power": "2",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207237,9 +212916,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "8",
- "south": "up",
- "west": "side"
+ "power": "2",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -207247,9 +212926,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "8",
- "south": "up",
- "west": "none"
+ "power": "2",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -207257,9 +212936,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "8",
+ "power": "2",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207267,9 +212946,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "8",
- "south": "side",
- "west": "side"
+ "power": "2",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -207277,9 +212956,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "8",
- "south": "side",
- "west": "none"
+ "power": "2",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -207287,9 +212966,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "8",
+ "power": "2",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207297,9 +212976,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "8",
- "south": "none",
- "west": "side"
+ "power": "3",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -207307,9 +212986,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "8",
- "south": "none",
- "west": "none"
+ "power": "3",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -207317,9 +212996,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "9",
+ "power": "3",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207327,9 +213006,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "9",
- "south": "up",
- "west": "side"
+ "power": "3",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -207337,9 +213016,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "9",
- "south": "up",
- "west": "none"
+ "power": "3",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -207347,9 +213026,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "9",
+ "power": "3",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207357,9 +213036,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "9",
- "south": "side",
- "west": "side"
+ "power": "3",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -207367,9 +213046,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "9",
- "south": "side",
- "west": "none"
+ "power": "3",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -207377,9 +213056,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "9",
+ "power": "3",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207387,9 +213066,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "9",
- "south": "none",
- "west": "side"
+ "power": "4",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -207397,9 +213076,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "9",
- "south": "none",
- "west": "none"
+ "power": "4",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -207407,9 +213086,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "10",
+ "power": "4",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207417,9 +213096,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "10",
- "south": "up",
- "west": "side"
+ "power": "4",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -207427,9 +213106,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "10",
- "south": "up",
- "west": "none"
+ "power": "4",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -207437,9 +213116,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "10",
+ "power": "4",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207447,9 +213126,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "10",
- "south": "side",
- "west": "side"
+ "power": "4",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -207457,9 +213136,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "10",
- "south": "side",
- "west": "none"
+ "power": "4",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -207467,9 +213146,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "10",
+ "power": "4",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207477,9 +213156,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "10",
- "south": "none",
- "west": "side"
+ "power": "5",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -207487,9 +213166,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "10",
- "south": "none",
- "west": "none"
+ "power": "5",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -207497,9 +213176,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "11",
+ "power": "5",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207507,9 +213186,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "11",
- "south": "up",
- "west": "side"
+ "power": "5",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -207517,9 +213196,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "11",
- "south": "up",
- "west": "none"
+ "power": "5",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -207527,9 +213206,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "11",
+ "power": "5",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207537,9 +213216,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "11",
- "south": "side",
- "west": "side"
+ "power": "5",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -207547,9 +213226,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "11",
- "south": "side",
- "west": "none"
+ "power": "5",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -207557,9 +213236,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "11",
+ "power": "5",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207567,9 +213246,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "11",
- "south": "none",
- "west": "side"
+ "power": "6",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -207577,9 +213256,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "11",
- "south": "none",
- "west": "none"
+ "power": "6",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -207587,9 +213266,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "12",
+ "power": "6",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207597,9 +213276,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "12",
- "south": "up",
- "west": "side"
+ "power": "6",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -207607,9 +213286,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "12",
- "south": "up",
- "west": "none"
+ "power": "6",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -207617,9 +213296,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "12",
+ "power": "6",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207627,9 +213306,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "12",
- "south": "side",
- "west": "side"
+ "power": "6",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -207637,9 +213316,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "12",
- "south": "side",
- "west": "none"
+ "power": "6",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -207647,9 +213326,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "12",
+ "power": "6",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207657,9 +213336,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "12",
- "south": "none",
- "west": "side"
+ "power": "7",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -207667,9 +213346,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "12",
- "south": "none",
- "west": "none"
+ "power": "7",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -207677,9 +213356,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "13",
+ "power": "7",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207687,9 +213366,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "13",
- "south": "up",
- "west": "side"
+ "power": "7",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -207697,9 +213376,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "13",
- "south": "up",
- "west": "none"
+ "power": "7",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -207707,9 +213386,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "13",
+ "power": "7",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207717,9 +213396,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "13",
- "south": "side",
- "west": "side"
+ "power": "7",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -207727,9 +213406,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "13",
- "south": "side",
- "west": "none"
+ "power": "7",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -207737,9 +213416,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "13",
+ "power": "7",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207747,9 +213426,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "13",
- "south": "none",
- "west": "side"
+ "power": "8",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -207757,9 +213436,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "13",
- "south": "none",
- "west": "none"
+ "power": "8",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -207767,9 +213446,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "14",
+ "power": "8",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207777,9 +213456,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "14",
- "south": "up",
- "west": "side"
+ "power": "8",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -207787,9 +213466,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "14",
- "south": "up",
- "west": "none"
+ "power": "8",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -207797,9 +213476,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "14",
+ "power": "8",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207807,9 +213486,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "14",
- "south": "side",
- "west": "side"
+ "power": "8",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -207817,9 +213496,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "14",
- "south": "side",
- "west": "none"
+ "power": "8",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -207827,9 +213506,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "14",
+ "power": "8",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207837,9 +213516,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "14",
- "south": "none",
- "west": "side"
+ "power": "9",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -207847,9 +213526,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "14",
- "south": "none",
- "west": "none"
+ "power": "9",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -207857,9 +213536,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "15",
+ "power": "9",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207867,9 +213546,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "15",
- "south": "up",
- "west": "side"
+ "power": "9",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -207877,9 +213556,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "15",
- "south": "up",
- "west": "none"
+ "power": "9",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -207887,9 +213566,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "15",
+ "power": "9",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207897,9 +213576,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "15",
- "south": "side",
- "west": "side"
+ "power": "9",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -207907,9 +213586,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "15",
- "south": "side",
- "west": "none"
+ "power": "9",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -207917,9 +213596,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "15",
+ "power": "9",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -207927,9 +213606,9 @@
"properties": {
"east": "up",
"north": "side",
- "power": "15",
- "south": "none",
- "west": "side"
+ "power": "10",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -207937,529 +213616,529 @@
"properties": {
"east": "up",
"north": "side",
- "power": "15",
- "south": "none",
- "west": "none"
+ "power": "10",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3266,
"properties": {
"east": "up",
- "north": "none",
- "power": "0",
+ "north": "side",
+ "power": "10",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3267,
"properties": {
"east": "up",
- "north": "none",
- "power": "0",
- "south": "up",
- "west": "side"
+ "north": "side",
+ "power": "10",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3268,
"properties": {
"east": "up",
- "north": "none",
- "power": "0",
- "south": "up",
- "west": "none"
+ "north": "side",
+ "power": "10",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3269,
"properties": {
"east": "up",
- "north": "none",
- "power": "0",
+ "north": "side",
+ "power": "10",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3270,
"properties": {
"east": "up",
- "north": "none",
- "power": "0",
- "south": "side",
- "west": "side"
+ "north": "side",
+ "power": "10",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3271,
"properties": {
"east": "up",
- "north": "none",
- "power": "0",
- "south": "side",
- "west": "none"
+ "north": "side",
+ "power": "10",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3272,
"properties": {
"east": "up",
- "north": "none",
- "power": "0",
+ "north": "side",
+ "power": "10",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3273,
"properties": {
"east": "up",
- "north": "none",
- "power": "0",
- "south": "none",
- "west": "side"
+ "north": "side",
+ "power": "11",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3274,
"properties": {
"east": "up",
- "north": "none",
- "power": "0",
- "south": "none",
- "west": "none"
+ "north": "side",
+ "power": "11",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3275,
"properties": {
"east": "up",
- "north": "none",
- "power": "1",
+ "north": "side",
+ "power": "11",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3276,
"properties": {
"east": "up",
- "north": "none",
- "power": "1",
- "south": "up",
- "west": "side"
+ "north": "side",
+ "power": "11",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3277,
"properties": {
"east": "up",
- "north": "none",
- "power": "1",
- "south": "up",
- "west": "none"
+ "north": "side",
+ "power": "11",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3278,
"properties": {
"east": "up",
- "north": "none",
- "power": "1",
+ "north": "side",
+ "power": "11",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3279,
"properties": {
"east": "up",
- "north": "none",
- "power": "1",
- "south": "side",
- "west": "side"
+ "north": "side",
+ "power": "11",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3280,
"properties": {
"east": "up",
- "north": "none",
- "power": "1",
- "south": "side",
- "west": "none"
+ "north": "side",
+ "power": "11",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3281,
"properties": {
"east": "up",
- "north": "none",
- "power": "1",
+ "north": "side",
+ "power": "11",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3282,
"properties": {
"east": "up",
- "north": "none",
- "power": "1",
- "south": "none",
- "west": "side"
+ "north": "side",
+ "power": "12",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3283,
"properties": {
"east": "up",
- "north": "none",
- "power": "1",
- "south": "none",
- "west": "none"
+ "north": "side",
+ "power": "12",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3284,
"properties": {
"east": "up",
- "north": "none",
- "power": "2",
+ "north": "side",
+ "power": "12",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3285,
"properties": {
"east": "up",
- "north": "none",
- "power": "2",
- "south": "up",
- "west": "side"
+ "north": "side",
+ "power": "12",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3286,
"properties": {
"east": "up",
- "north": "none",
- "power": "2",
- "south": "up",
- "west": "none"
+ "north": "side",
+ "power": "12",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3287,
"properties": {
"east": "up",
- "north": "none",
- "power": "2",
+ "north": "side",
+ "power": "12",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3288,
"properties": {
"east": "up",
- "north": "none",
- "power": "2",
- "south": "side",
- "west": "side"
+ "north": "side",
+ "power": "12",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3289,
"properties": {
"east": "up",
- "north": "none",
- "power": "2",
- "south": "side",
- "west": "none"
+ "north": "side",
+ "power": "12",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3290,
"properties": {
"east": "up",
- "north": "none",
- "power": "2",
+ "north": "side",
+ "power": "12",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3291,
"properties": {
"east": "up",
- "north": "none",
- "power": "2",
- "south": "none",
- "west": "side"
+ "north": "side",
+ "power": "13",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3292,
"properties": {
"east": "up",
- "north": "none",
- "power": "2",
- "south": "none",
- "west": "none"
+ "north": "side",
+ "power": "13",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3293,
"properties": {
"east": "up",
- "north": "none",
- "power": "3",
+ "north": "side",
+ "power": "13",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3294,
"properties": {
"east": "up",
- "north": "none",
- "power": "3",
- "south": "up",
- "west": "side"
+ "north": "side",
+ "power": "13",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3295,
"properties": {
"east": "up",
- "north": "none",
- "power": "3",
- "south": "up",
- "west": "none"
+ "north": "side",
+ "power": "13",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3296,
"properties": {
"east": "up",
- "north": "none",
- "power": "3",
+ "north": "side",
+ "power": "13",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3297,
"properties": {
"east": "up",
- "north": "none",
- "power": "3",
- "south": "side",
- "west": "side"
+ "north": "side",
+ "power": "13",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3298,
"properties": {
"east": "up",
- "north": "none",
- "power": "3",
- "south": "side",
- "west": "none"
+ "north": "side",
+ "power": "13",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3299,
"properties": {
"east": "up",
- "north": "none",
- "power": "3",
+ "north": "side",
+ "power": "13",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3300,
"properties": {
"east": "up",
- "north": "none",
- "power": "3",
- "south": "none",
- "west": "side"
+ "north": "side",
+ "power": "14",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3301,
"properties": {
"east": "up",
- "north": "none",
- "power": "3",
- "south": "none",
- "west": "none"
+ "north": "side",
+ "power": "14",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3302,
"properties": {
"east": "up",
- "north": "none",
- "power": "4",
+ "north": "side",
+ "power": "14",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3303,
"properties": {
"east": "up",
- "north": "none",
- "power": "4",
- "south": "up",
- "west": "side"
+ "north": "side",
+ "power": "14",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3304,
"properties": {
"east": "up",
- "north": "none",
- "power": "4",
- "south": "up",
- "west": "none"
+ "north": "side",
+ "power": "14",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3305,
"properties": {
"east": "up",
- "north": "none",
- "power": "4",
+ "north": "side",
+ "power": "14",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3306,
"properties": {
"east": "up",
- "north": "none",
- "power": "4",
- "south": "side",
- "west": "side"
+ "north": "side",
+ "power": "14",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3307,
"properties": {
"east": "up",
- "north": "none",
- "power": "4",
- "south": "side",
- "west": "none"
+ "north": "side",
+ "power": "14",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3308,
"properties": {
"east": "up",
- "north": "none",
- "power": "4",
+ "north": "side",
+ "power": "14",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3309,
"properties": {
"east": "up",
- "north": "none",
- "power": "4",
- "south": "none",
- "west": "side"
+ "north": "side",
+ "power": "15",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3310,
"properties": {
"east": "up",
- "north": "none",
- "power": "4",
- "south": "none",
- "west": "none"
+ "north": "side",
+ "power": "15",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3311,
"properties": {
"east": "up",
- "north": "none",
- "power": "5",
+ "north": "side",
+ "power": "15",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3312,
"properties": {
"east": "up",
- "north": "none",
- "power": "5",
- "south": "up",
- "west": "side"
+ "north": "side",
+ "power": "15",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3313,
"properties": {
"east": "up",
- "north": "none",
- "power": "5",
- "south": "up",
- "west": "none"
+ "north": "side",
+ "power": "15",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3314,
"properties": {
"east": "up",
- "north": "none",
- "power": "5",
+ "north": "side",
+ "power": "15",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3315,
"properties": {
"east": "up",
- "north": "none",
- "power": "5",
- "south": "side",
- "west": "side"
+ "north": "side",
+ "power": "15",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3316,
"properties": {
"east": "up",
- "north": "none",
- "power": "5",
- "south": "side",
- "west": "none"
+ "north": "side",
+ "power": "15",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3317,
"properties": {
"east": "up",
- "north": "none",
- "power": "5",
+ "north": "side",
+ "power": "15",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -208467,9 +214146,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "5",
- "south": "none",
- "west": "side"
+ "power": "0",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -208477,9 +214156,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "5",
- "south": "none",
- "west": "none"
+ "power": "0",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -208487,9 +214166,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "6",
+ "power": "0",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -208497,9 +214176,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "6",
- "south": "up",
- "west": "side"
+ "power": "0",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -208507,9 +214186,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "6",
- "south": "up",
- "west": "none"
+ "power": "0",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -208517,9 +214196,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "6",
+ "power": "0",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -208527,9 +214206,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "6",
- "south": "side",
- "west": "side"
+ "power": "0",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -208537,9 +214216,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "6",
- "south": "side",
- "west": "none"
+ "power": "0",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -208547,9 +214226,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "6",
+ "power": "0",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -208557,9 +214236,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "6",
- "south": "none",
- "west": "side"
+ "power": "1",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -208567,9 +214246,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "6",
- "south": "none",
- "west": "none"
+ "power": "1",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -208577,9 +214256,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "7",
+ "power": "1",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -208587,9 +214266,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "7",
- "south": "up",
- "west": "side"
+ "power": "1",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -208597,9 +214276,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "7",
- "south": "up",
- "west": "none"
+ "power": "1",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -208607,9 +214286,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "7",
+ "power": "1",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -208617,9 +214296,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "7",
- "south": "side",
- "west": "side"
+ "power": "1",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -208627,9 +214306,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "7",
- "south": "side",
- "west": "none"
+ "power": "1",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -208637,9 +214316,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "7",
+ "power": "1",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -208647,9 +214326,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "7",
- "south": "none",
- "west": "side"
+ "power": "2",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -208657,9 +214336,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "7",
- "south": "none",
- "west": "none"
+ "power": "2",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -208667,9 +214346,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "8",
+ "power": "2",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -208677,9 +214356,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "8",
- "south": "up",
- "west": "side"
+ "power": "2",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -208687,9 +214366,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "8",
- "south": "up",
- "west": "none"
+ "power": "2",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -208697,9 +214376,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "8",
+ "power": "2",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -208707,9 +214386,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "8",
- "south": "side",
- "west": "side"
+ "power": "2",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -208717,9 +214396,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "8",
- "south": "side",
- "west": "none"
+ "power": "2",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -208727,9 +214406,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "8",
+ "power": "2",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -208737,9 +214416,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "8",
- "south": "none",
- "west": "side"
+ "power": "3",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -208747,9 +214426,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "8",
- "south": "none",
- "west": "none"
+ "power": "3",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -208757,9 +214436,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "9",
+ "power": "3",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -208767,9 +214446,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "9",
- "south": "up",
- "west": "side"
+ "power": "3",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -208777,9 +214456,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "9",
- "south": "up",
- "west": "none"
+ "power": "3",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -208787,9 +214466,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "9",
+ "power": "3",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -208797,9 +214476,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "9",
- "south": "side",
- "west": "side"
+ "power": "3",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -208807,9 +214486,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "9",
- "south": "side",
- "west": "none"
+ "power": "3",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -208817,9 +214496,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "9",
+ "power": "3",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -208827,9 +214506,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "9",
- "south": "none",
- "west": "side"
+ "power": "4",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -208837,9 +214516,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "9",
- "south": "none",
- "west": "none"
+ "power": "4",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -208847,9 +214526,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "10",
+ "power": "4",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -208857,9 +214536,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "10",
- "south": "up",
- "west": "side"
+ "power": "4",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -208867,9 +214546,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "10",
- "south": "up",
- "west": "none"
+ "power": "4",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -208877,9 +214556,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "10",
+ "power": "4",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -208887,9 +214566,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "10",
- "south": "side",
- "west": "side"
+ "power": "4",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -208897,9 +214576,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "10",
- "south": "side",
- "west": "none"
+ "power": "4",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -208907,9 +214586,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "10",
+ "power": "4",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -208917,9 +214596,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "10",
- "south": "none",
- "west": "side"
+ "power": "5",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -208927,9 +214606,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "10",
- "south": "none",
- "west": "none"
+ "power": "5",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -208937,9 +214616,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "11",
+ "power": "5",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -208947,9 +214626,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "11",
- "south": "up",
- "west": "side"
+ "power": "5",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -208957,9 +214636,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "11",
- "south": "up",
- "west": "none"
+ "power": "5",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -208967,9 +214646,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "11",
+ "power": "5",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -208977,9 +214656,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "11",
- "south": "side",
- "west": "side"
+ "power": "5",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -208987,9 +214666,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "11",
- "south": "side",
- "west": "none"
+ "power": "5",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -208997,9 +214676,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "11",
+ "power": "5",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -209007,9 +214686,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "11",
- "south": "none",
- "west": "side"
+ "power": "6",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -209017,9 +214696,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "11",
- "south": "none",
- "west": "none"
+ "power": "6",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -209027,9 +214706,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "12",
+ "power": "6",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -209037,9 +214716,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "12",
- "south": "up",
- "west": "side"
+ "power": "6",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -209047,9 +214726,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "12",
- "south": "up",
- "west": "none"
+ "power": "6",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -209057,9 +214736,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "12",
+ "power": "6",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -209067,9 +214746,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "12",
- "south": "side",
- "west": "side"
+ "power": "6",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -209077,9 +214756,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "12",
- "south": "side",
- "west": "none"
+ "power": "6",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -209087,9 +214766,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "12",
+ "power": "6",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -209097,9 +214776,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "12",
- "south": "none",
- "west": "side"
+ "power": "7",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -209107,9 +214786,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "12",
- "south": "none",
- "west": "none"
+ "power": "7",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -209117,9 +214796,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "13",
+ "power": "7",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -209127,9 +214806,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "13",
- "south": "up",
- "west": "side"
+ "power": "7",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -209137,9 +214816,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "13",
- "south": "up",
- "west": "none"
+ "power": "7",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -209147,9 +214826,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "13",
+ "power": "7",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -209157,9 +214836,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "13",
- "south": "side",
- "west": "side"
+ "power": "7",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -209167,9 +214846,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "13",
- "south": "side",
- "west": "none"
+ "power": "7",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -209177,9 +214856,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "13",
+ "power": "7",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -209187,9 +214866,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "13",
- "south": "none",
- "west": "side"
+ "power": "8",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -209197,9 +214876,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "13",
- "south": "none",
- "west": "none"
+ "power": "8",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -209207,9 +214886,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "14",
+ "power": "8",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -209217,9 +214896,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "14",
- "south": "up",
- "west": "side"
+ "power": "8",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -209227,9 +214906,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "14",
- "south": "up",
- "west": "none"
+ "power": "8",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -209237,9 +214916,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "14",
+ "power": "8",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -209247,9 +214926,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "14",
- "south": "side",
- "west": "side"
+ "power": "8",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -209257,9 +214936,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "14",
- "south": "side",
- "west": "none"
+ "power": "8",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -209267,9 +214946,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "14",
+ "power": "8",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -209277,9 +214956,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "14",
- "south": "none",
- "west": "side"
+ "power": "9",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -209287,9 +214966,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "14",
- "south": "none",
- "west": "none"
+ "power": "9",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -209297,9 +214976,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "15",
+ "power": "9",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -209307,9 +214986,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "15",
- "south": "up",
- "west": "side"
+ "power": "9",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -209317,9 +214996,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "15",
- "south": "up",
- "west": "none"
+ "power": "9",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -209327,9 +215006,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "15",
+ "power": "9",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -209337,9 +215016,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "15",
- "south": "side",
- "west": "side"
+ "power": "9",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -209347,9 +215026,9 @@
"properties": {
"east": "up",
"north": "none",
- "power": "15",
- "south": "side",
- "west": "none"
+ "power": "9",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -209357,13 +215036,533 @@
"properties": {
"east": "up",
"north": "none",
- "power": "15",
+ "power": "9",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3408,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "10",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3409,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "10",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3410,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "10",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3411,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "10",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3412,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "10",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3413,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "10",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3414,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "10",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3415,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "10",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3416,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "10",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3417,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "11",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3418,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "11",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3419,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "11",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3420,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "11",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3421,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "11",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3422,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "11",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3423,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "11",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3424,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "11",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3425,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "11",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3426,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "12",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3427,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "12",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3428,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "12",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3429,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "12",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3430,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "12",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3431,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "12",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3432,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "12",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3433,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "12",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3434,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "12",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3435,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "13",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3436,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "13",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3437,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "13",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3438,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "13",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3439,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "13",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3440,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "13",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3441,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "13",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3442,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "13",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3443,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "13",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3444,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "14",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3445,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "14",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3446,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "14",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3447,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "14",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3448,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "14",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3449,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "14",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3450,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "14",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3451,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "14",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3452,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "14",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3453,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "15",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3454,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "15",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3455,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "15",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3456,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "15",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3457,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "15",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3458,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "15",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3459,
+ "properties": {
+ "east": "up",
+ "north": "none",
+ "power": "15",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3460,
"properties": {
"east": "up",
"north": "none",
@@ -209373,7 +215572,7 @@
}
},
{
- "id": 3409,
+ "id": 3461,
"properties": {
"east": "up",
"north": "none",
@@ -209382,534 +215581,14 @@
"west": "none"
}
},
- {
- "id": 3410,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "0",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3411,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "0",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3412,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "0",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3413,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "0",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3414,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "0",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3415,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "0",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3416,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "0",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3417,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "0",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3418,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "0",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3419,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "1",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3420,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "1",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3421,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "1",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3422,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "1",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3423,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "1",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3424,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "1",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3425,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "1",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3426,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "1",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3427,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "1",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3428,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "2",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3429,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "2",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3430,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "2",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3431,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "2",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3432,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "2",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3433,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "2",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3434,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "2",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3435,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "2",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3436,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "2",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3437,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "3",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3438,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "3",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3439,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "3",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3440,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "3",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3441,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "3",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3442,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "3",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3443,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "3",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3444,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "3",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3445,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "3",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3446,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "4",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3447,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "4",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3448,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "4",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3449,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "4",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3450,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "4",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3451,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "4",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3452,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "4",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3453,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "4",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3454,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "4",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3455,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "5",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3456,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "5",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3457,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "5",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3458,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "5",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3459,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "5",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3460,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "5",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3461,
- "properties": {
- "east": "side",
- "north": "up",
- "power": "5",
- "south": "none",
- "west": "up"
- }
- },
{
"id": 3462,
"properties": {
"east": "side",
"north": "up",
- "power": "5",
- "south": "none",
- "west": "side"
+ "power": "0",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -209917,9 +215596,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "5",
- "south": "none",
- "west": "none"
+ "power": "0",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -209927,9 +215606,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "6",
+ "power": "0",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -209937,9 +215616,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "6",
- "south": "up",
- "west": "side"
+ "power": "0",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -209947,9 +215626,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "6",
- "south": "up",
- "west": "none"
+ "power": "0",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -209957,9 +215636,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "6",
+ "power": "0",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -209967,9 +215646,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "6",
- "south": "side",
- "west": "side"
+ "power": "0",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -209977,9 +215656,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "6",
- "south": "side",
- "west": "none"
+ "power": "0",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -209987,9 +215666,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "6",
+ "power": "0",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -209997,9 +215676,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "6",
- "south": "none",
- "west": "side"
+ "power": "1",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -210007,9 +215686,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "6",
- "south": "none",
- "west": "none"
+ "power": "1",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -210017,9 +215696,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "7",
+ "power": "1",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210027,9 +215706,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "7",
- "south": "up",
- "west": "side"
+ "power": "1",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -210037,9 +215716,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "7",
- "south": "up",
- "west": "none"
+ "power": "1",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -210047,9 +215726,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "7",
+ "power": "1",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210057,9 +215736,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "7",
- "south": "side",
- "west": "side"
+ "power": "1",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -210067,9 +215746,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "7",
- "south": "side",
- "west": "none"
+ "power": "1",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -210077,9 +215756,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "7",
+ "power": "1",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210087,9 +215766,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "7",
- "south": "none",
- "west": "side"
+ "power": "2",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -210097,9 +215776,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "7",
- "south": "none",
- "west": "none"
+ "power": "2",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -210107,9 +215786,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "8",
+ "power": "2",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210117,9 +215796,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "8",
- "south": "up",
- "west": "side"
+ "power": "2",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -210127,9 +215806,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "8",
- "south": "up",
- "west": "none"
+ "power": "2",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -210137,9 +215816,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "8",
+ "power": "2",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210147,9 +215826,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "8",
- "south": "side",
- "west": "side"
+ "power": "2",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -210157,9 +215836,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "8",
- "south": "side",
- "west": "none"
+ "power": "2",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -210167,9 +215846,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "8",
+ "power": "2",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210177,9 +215856,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "8",
- "south": "none",
- "west": "side"
+ "power": "3",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -210187,9 +215866,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "8",
- "south": "none",
- "west": "none"
+ "power": "3",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -210197,9 +215876,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "9",
+ "power": "3",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210207,9 +215886,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "9",
- "south": "up",
- "west": "side"
+ "power": "3",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -210217,9 +215896,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "9",
- "south": "up",
- "west": "none"
+ "power": "3",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -210227,9 +215906,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "9",
+ "power": "3",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210237,9 +215916,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "9",
- "south": "side",
- "west": "side"
+ "power": "3",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -210247,9 +215926,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "9",
- "south": "side",
- "west": "none"
+ "power": "3",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -210257,9 +215936,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "9",
+ "power": "3",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210267,9 +215946,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "9",
- "south": "none",
- "west": "side"
+ "power": "4",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -210277,9 +215956,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "9",
- "south": "none",
- "west": "none"
+ "power": "4",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -210287,9 +215966,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "10",
+ "power": "4",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210297,9 +215976,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "10",
- "south": "up",
- "west": "side"
+ "power": "4",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -210307,9 +215986,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "10",
- "south": "up",
- "west": "none"
+ "power": "4",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -210317,9 +215996,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "10",
+ "power": "4",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210327,9 +216006,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "10",
- "south": "side",
- "west": "side"
+ "power": "4",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -210337,9 +216016,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "10",
- "south": "side",
- "west": "none"
+ "power": "4",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -210347,9 +216026,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "10",
+ "power": "4",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210357,9 +216036,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "10",
- "south": "none",
- "west": "side"
+ "power": "5",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -210367,9 +216046,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "10",
- "south": "none",
- "west": "none"
+ "power": "5",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -210377,9 +216056,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "11",
+ "power": "5",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210387,9 +216066,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "11",
- "south": "up",
- "west": "side"
+ "power": "5",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -210397,9 +216076,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "11",
- "south": "up",
- "west": "none"
+ "power": "5",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -210407,9 +216086,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "11",
+ "power": "5",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210417,9 +216096,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "11",
- "south": "side",
- "west": "side"
+ "power": "5",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -210427,9 +216106,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "11",
- "south": "side",
- "west": "none"
+ "power": "5",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -210437,9 +216116,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "11",
+ "power": "5",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210447,9 +216126,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "11",
- "south": "none",
- "west": "side"
+ "power": "6",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -210457,9 +216136,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "11",
- "south": "none",
- "west": "none"
+ "power": "6",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -210467,9 +216146,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "12",
+ "power": "6",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210477,9 +216156,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "12",
- "south": "up",
- "west": "side"
+ "power": "6",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -210487,9 +216166,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "12",
- "south": "up",
- "west": "none"
+ "power": "6",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -210497,9 +216176,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "12",
+ "power": "6",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210507,9 +216186,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "12",
- "south": "side",
- "west": "side"
+ "power": "6",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -210517,9 +216196,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "12",
- "south": "side",
- "west": "none"
+ "power": "6",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -210527,9 +216206,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "12",
+ "power": "6",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210537,9 +216216,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "12",
- "south": "none",
- "west": "side"
+ "power": "7",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -210547,9 +216226,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "12",
- "south": "none",
- "west": "none"
+ "power": "7",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -210557,9 +216236,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "13",
+ "power": "7",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210567,9 +216246,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "13",
- "south": "up",
- "west": "side"
+ "power": "7",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -210577,9 +216256,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "13",
- "south": "up",
- "west": "none"
+ "power": "7",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -210587,9 +216266,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "13",
+ "power": "7",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210597,9 +216276,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "13",
- "south": "side",
- "west": "side"
+ "power": "7",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -210607,9 +216286,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "13",
- "south": "side",
- "west": "none"
+ "power": "7",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -210617,9 +216296,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "13",
+ "power": "7",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210627,9 +216306,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "13",
- "south": "none",
- "west": "side"
+ "power": "8",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -210637,9 +216316,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "13",
- "south": "none",
- "west": "none"
+ "power": "8",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -210647,9 +216326,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "14",
+ "power": "8",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210657,9 +216336,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "14",
- "south": "up",
- "west": "side"
+ "power": "8",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -210667,9 +216346,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "14",
- "south": "up",
- "west": "none"
+ "power": "8",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -210677,9 +216356,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "14",
+ "power": "8",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210687,9 +216366,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "14",
- "south": "side",
- "west": "side"
+ "power": "8",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -210697,9 +216376,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "14",
- "south": "side",
- "west": "none"
+ "power": "8",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -210707,9 +216386,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "14",
+ "power": "8",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210717,9 +216396,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "14",
- "south": "none",
- "west": "side"
+ "power": "9",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -210727,9 +216406,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "14",
- "south": "none",
- "west": "none"
+ "power": "9",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -210737,9 +216416,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "15",
+ "power": "9",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210747,9 +216426,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "15",
- "south": "up",
- "west": "side"
+ "power": "9",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -210757,9 +216436,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "15",
- "south": "up",
- "west": "none"
+ "power": "9",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -210767,9 +216446,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "15",
+ "power": "9",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210777,9 +216456,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "15",
- "south": "side",
- "west": "side"
+ "power": "9",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -210787,9 +216466,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "15",
- "south": "side",
- "west": "none"
+ "power": "9",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -210797,9 +216476,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "15",
+ "power": "9",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -210807,9 +216486,9 @@
"properties": {
"east": "side",
"north": "up",
- "power": "15",
- "south": "none",
- "west": "side"
+ "power": "10",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -210817,529 +216496,529 @@
"properties": {
"east": "side",
"north": "up",
- "power": "15",
- "south": "none",
- "west": "none"
+ "power": "10",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3554,
"properties": {
"east": "side",
- "north": "side",
- "power": "0",
+ "north": "up",
+ "power": "10",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3555,
"properties": {
"east": "side",
- "north": "side",
- "power": "0",
- "south": "up",
- "west": "side"
+ "north": "up",
+ "power": "10",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3556,
"properties": {
"east": "side",
- "north": "side",
- "power": "0",
- "south": "up",
- "west": "none"
+ "north": "up",
+ "power": "10",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3557,
"properties": {
"east": "side",
- "north": "side",
- "power": "0",
+ "north": "up",
+ "power": "10",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3558,
"properties": {
"east": "side",
- "north": "side",
- "power": "0",
- "south": "side",
- "west": "side"
+ "north": "up",
+ "power": "10",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3559,
"properties": {
"east": "side",
- "north": "side",
- "power": "0",
- "south": "side",
- "west": "none"
+ "north": "up",
+ "power": "10",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3560,
"properties": {
"east": "side",
- "north": "side",
- "power": "0",
+ "north": "up",
+ "power": "10",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3561,
"properties": {
"east": "side",
- "north": "side",
- "power": "0",
- "south": "none",
- "west": "side"
+ "north": "up",
+ "power": "11",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3562,
"properties": {
"east": "side",
- "north": "side",
- "power": "0",
- "south": "none",
- "west": "none"
+ "north": "up",
+ "power": "11",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3563,
"properties": {
"east": "side",
- "north": "side",
- "power": "1",
+ "north": "up",
+ "power": "11",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3564,
"properties": {
"east": "side",
- "north": "side",
- "power": "1",
- "south": "up",
- "west": "side"
+ "north": "up",
+ "power": "11",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3565,
"properties": {
"east": "side",
- "north": "side",
- "power": "1",
- "south": "up",
- "west": "none"
+ "north": "up",
+ "power": "11",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3566,
"properties": {
"east": "side",
- "north": "side",
- "power": "1",
+ "north": "up",
+ "power": "11",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3567,
"properties": {
"east": "side",
- "north": "side",
- "power": "1",
- "south": "side",
- "west": "side"
+ "north": "up",
+ "power": "11",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3568,
"properties": {
"east": "side",
- "north": "side",
- "power": "1",
- "south": "side",
- "west": "none"
+ "north": "up",
+ "power": "11",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3569,
"properties": {
"east": "side",
- "north": "side",
- "power": "1",
+ "north": "up",
+ "power": "11",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3570,
"properties": {
"east": "side",
- "north": "side",
- "power": "1",
- "south": "none",
- "west": "side"
+ "north": "up",
+ "power": "12",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3571,
"properties": {
"east": "side",
- "north": "side",
- "power": "1",
- "south": "none",
- "west": "none"
+ "north": "up",
+ "power": "12",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3572,
"properties": {
"east": "side",
- "north": "side",
- "power": "2",
+ "north": "up",
+ "power": "12",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3573,
"properties": {
"east": "side",
- "north": "side",
- "power": "2",
- "south": "up",
- "west": "side"
+ "north": "up",
+ "power": "12",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3574,
"properties": {
"east": "side",
- "north": "side",
- "power": "2",
- "south": "up",
- "west": "none"
+ "north": "up",
+ "power": "12",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3575,
"properties": {
"east": "side",
- "north": "side",
- "power": "2",
+ "north": "up",
+ "power": "12",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3576,
"properties": {
"east": "side",
- "north": "side",
- "power": "2",
- "south": "side",
- "west": "side"
+ "north": "up",
+ "power": "12",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3577,
"properties": {
"east": "side",
- "north": "side",
- "power": "2",
- "south": "side",
- "west": "none"
+ "north": "up",
+ "power": "12",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3578,
"properties": {
"east": "side",
- "north": "side",
- "power": "2",
+ "north": "up",
+ "power": "12",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3579,
"properties": {
"east": "side",
- "north": "side",
- "power": "2",
- "south": "none",
- "west": "side"
+ "north": "up",
+ "power": "13",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3580,
"properties": {
"east": "side",
- "north": "side",
- "power": "2",
- "south": "none",
- "west": "none"
+ "north": "up",
+ "power": "13",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3581,
"properties": {
"east": "side",
- "north": "side",
- "power": "3",
+ "north": "up",
+ "power": "13",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3582,
"properties": {
"east": "side",
- "north": "side",
- "power": "3",
- "south": "up",
- "west": "side"
+ "north": "up",
+ "power": "13",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3583,
"properties": {
"east": "side",
- "north": "side",
- "power": "3",
- "south": "up",
- "west": "none"
+ "north": "up",
+ "power": "13",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3584,
"properties": {
"east": "side",
- "north": "side",
- "power": "3",
+ "north": "up",
+ "power": "13",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3585,
"properties": {
"east": "side",
- "north": "side",
- "power": "3",
- "south": "side",
- "west": "side"
+ "north": "up",
+ "power": "13",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3586,
"properties": {
"east": "side",
- "north": "side",
- "power": "3",
- "south": "side",
- "west": "none"
+ "north": "up",
+ "power": "13",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3587,
"properties": {
"east": "side",
- "north": "side",
- "power": "3",
+ "north": "up",
+ "power": "13",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3588,
"properties": {
"east": "side",
- "north": "side",
- "power": "3",
- "south": "none",
- "west": "side"
+ "north": "up",
+ "power": "14",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3589,
"properties": {
"east": "side",
- "north": "side",
- "power": "3",
- "south": "none",
- "west": "none"
+ "north": "up",
+ "power": "14",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3590,
"properties": {
"east": "side",
- "north": "side",
- "power": "4",
+ "north": "up",
+ "power": "14",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3591,
"properties": {
"east": "side",
- "north": "side",
- "power": "4",
- "south": "up",
- "west": "side"
+ "north": "up",
+ "power": "14",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3592,
"properties": {
"east": "side",
- "north": "side",
- "power": "4",
- "south": "up",
- "west": "none"
+ "north": "up",
+ "power": "14",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3593,
"properties": {
"east": "side",
- "north": "side",
- "power": "4",
+ "north": "up",
+ "power": "14",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3594,
"properties": {
"east": "side",
- "north": "side",
- "power": "4",
- "south": "side",
- "west": "side"
+ "north": "up",
+ "power": "14",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3595,
"properties": {
"east": "side",
- "north": "side",
- "power": "4",
- "south": "side",
- "west": "none"
+ "north": "up",
+ "power": "14",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3596,
"properties": {
"east": "side",
- "north": "side",
- "power": "4",
+ "north": "up",
+ "power": "14",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3597,
"properties": {
"east": "side",
- "north": "side",
- "power": "4",
- "south": "none",
- "west": "side"
+ "north": "up",
+ "power": "15",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3598,
"properties": {
"east": "side",
- "north": "side",
- "power": "4",
- "south": "none",
- "west": "none"
+ "north": "up",
+ "power": "15",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3599,
"properties": {
"east": "side",
- "north": "side",
- "power": "5",
+ "north": "up",
+ "power": "15",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3600,
"properties": {
"east": "side",
- "north": "side",
- "power": "5",
- "south": "up",
- "west": "side"
+ "north": "up",
+ "power": "15",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3601,
"properties": {
"east": "side",
- "north": "side",
- "power": "5",
- "south": "up",
- "west": "none"
+ "north": "up",
+ "power": "15",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3602,
"properties": {
"east": "side",
- "north": "side",
- "power": "5",
+ "north": "up",
+ "power": "15",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3603,
"properties": {
"east": "side",
- "north": "side",
- "power": "5",
- "south": "side",
- "west": "side"
+ "north": "up",
+ "power": "15",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3604,
"properties": {
"east": "side",
- "north": "side",
- "power": "5",
- "south": "side",
- "west": "none"
+ "north": "up",
+ "power": "15",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3605,
"properties": {
"east": "side",
- "north": "side",
- "power": "5",
+ "north": "up",
+ "power": "15",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211347,9 +217026,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "5",
- "south": "none",
- "west": "side"
+ "power": "0",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -211357,9 +217036,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "5",
- "south": "none",
- "west": "none"
+ "power": "0",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -211367,9 +217046,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "6",
+ "power": "0",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211377,9 +217056,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "6",
- "south": "up",
- "west": "side"
+ "power": "0",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -211387,9 +217066,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "6",
- "south": "up",
- "west": "none"
+ "power": "0",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -211397,9 +217076,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "6",
+ "power": "0",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211407,9 +217086,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "6",
- "south": "side",
- "west": "side"
+ "power": "0",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -211417,9 +217096,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "6",
- "south": "side",
- "west": "none"
+ "power": "0",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -211427,9 +217106,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "6",
+ "power": "0",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211437,9 +217116,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "6",
- "south": "none",
- "west": "side"
+ "power": "1",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -211447,9 +217126,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "6",
- "south": "none",
- "west": "none"
+ "power": "1",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -211457,9 +217136,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "7",
+ "power": "1",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211467,9 +217146,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "7",
- "south": "up",
- "west": "side"
+ "power": "1",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -211477,9 +217156,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "7",
- "south": "up",
- "west": "none"
+ "power": "1",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -211487,9 +217166,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "7",
+ "power": "1",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211497,9 +217176,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "7",
- "south": "side",
- "west": "side"
+ "power": "1",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -211507,9 +217186,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "7",
- "south": "side",
- "west": "none"
+ "power": "1",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -211517,9 +217196,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "7",
+ "power": "1",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211527,9 +217206,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "7",
- "south": "none",
- "west": "side"
+ "power": "2",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -211537,9 +217216,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "7",
- "south": "none",
- "west": "none"
+ "power": "2",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -211547,9 +217226,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "8",
+ "power": "2",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211557,9 +217236,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "8",
- "south": "up",
- "west": "side"
+ "power": "2",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -211567,9 +217246,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "8",
- "south": "up",
- "west": "none"
+ "power": "2",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -211577,9 +217256,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "8",
+ "power": "2",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211587,9 +217266,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "8",
- "south": "side",
- "west": "side"
+ "power": "2",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -211597,9 +217276,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "8",
- "south": "side",
- "west": "none"
+ "power": "2",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -211607,9 +217286,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "8",
+ "power": "2",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211617,9 +217296,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "8",
- "south": "none",
- "west": "side"
+ "power": "3",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -211627,9 +217306,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "8",
- "south": "none",
- "west": "none"
+ "power": "3",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -211637,9 +217316,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "9",
+ "power": "3",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211647,9 +217326,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "9",
- "south": "up",
- "west": "side"
+ "power": "3",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -211657,9 +217336,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "9",
- "south": "up",
- "west": "none"
+ "power": "3",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -211667,9 +217346,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "9",
+ "power": "3",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211677,9 +217356,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "9",
- "south": "side",
- "west": "side"
+ "power": "3",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -211687,9 +217366,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "9",
- "south": "side",
- "west": "none"
+ "power": "3",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -211697,9 +217376,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "9",
+ "power": "3",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211707,9 +217386,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "9",
- "south": "none",
- "west": "side"
+ "power": "4",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -211717,9 +217396,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "9",
- "south": "none",
- "west": "none"
+ "power": "4",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -211727,9 +217406,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "10",
+ "power": "4",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211737,9 +217416,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "10",
- "south": "up",
- "west": "side"
+ "power": "4",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -211747,9 +217426,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "10",
- "south": "up",
- "west": "none"
+ "power": "4",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -211757,9 +217436,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "10",
+ "power": "4",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211767,9 +217446,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "10",
- "south": "side",
- "west": "side"
+ "power": "4",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -211777,9 +217456,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "10",
- "south": "side",
- "west": "none"
+ "power": "4",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -211787,9 +217466,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "10",
+ "power": "4",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211797,9 +217476,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "10",
- "south": "none",
- "west": "side"
+ "power": "5",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -211807,9 +217486,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "10",
- "south": "none",
- "west": "none"
+ "power": "5",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -211817,9 +217496,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "11",
+ "power": "5",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211827,9 +217506,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "11",
- "south": "up",
- "west": "side"
+ "power": "5",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -211837,9 +217516,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "11",
- "south": "up",
- "west": "none"
+ "power": "5",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -211847,9 +217526,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "11",
+ "power": "5",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211857,9 +217536,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "11",
- "south": "side",
- "west": "side"
+ "power": "5",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -211867,9 +217546,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "11",
- "south": "side",
- "west": "none"
+ "power": "5",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -211877,9 +217556,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "11",
+ "power": "5",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211887,9 +217566,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "11",
- "south": "none",
- "west": "side"
+ "power": "6",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -211897,9 +217576,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "11",
- "south": "none",
- "west": "none"
+ "power": "6",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -211907,9 +217586,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "12",
+ "power": "6",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211917,9 +217596,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "12",
- "south": "up",
- "west": "side"
+ "power": "6",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -211927,9 +217606,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "12",
- "south": "up",
- "west": "none"
+ "power": "6",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -211937,9 +217616,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "12",
+ "power": "6",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211947,9 +217626,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "12",
- "south": "side",
- "west": "side"
+ "power": "6",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -211957,9 +217636,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "12",
- "south": "side",
- "west": "none"
+ "power": "6",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -211967,9 +217646,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "12",
+ "power": "6",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -211977,9 +217656,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "12",
- "south": "none",
- "west": "side"
+ "power": "7",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -211987,9 +217666,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "12",
- "south": "none",
- "west": "none"
+ "power": "7",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -211997,9 +217676,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "13",
+ "power": "7",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -212007,9 +217686,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "13",
- "south": "up",
- "west": "side"
+ "power": "7",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -212017,9 +217696,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "13",
- "south": "up",
- "west": "none"
+ "power": "7",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -212027,9 +217706,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "13",
+ "power": "7",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -212037,9 +217716,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "13",
- "south": "side",
- "west": "side"
+ "power": "7",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -212047,9 +217726,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "13",
- "south": "side",
- "west": "none"
+ "power": "7",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -212057,9 +217736,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "13",
+ "power": "7",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -212067,9 +217746,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "13",
- "south": "none",
- "west": "side"
+ "power": "8",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -212077,9 +217756,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "13",
- "south": "none",
- "west": "none"
+ "power": "8",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -212087,9 +217766,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "14",
+ "power": "8",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -212097,9 +217776,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "14",
- "south": "up",
- "west": "side"
+ "power": "8",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -212107,9 +217786,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "14",
- "south": "up",
- "west": "none"
+ "power": "8",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -212117,9 +217796,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "14",
+ "power": "8",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -212127,9 +217806,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "14",
- "south": "side",
- "west": "side"
+ "power": "8",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -212137,9 +217816,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "14",
- "south": "side",
- "west": "none"
+ "power": "8",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -212147,9 +217826,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "14",
+ "power": "8",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -212157,9 +217836,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "14",
- "south": "none",
- "west": "side"
+ "power": "9",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -212167,9 +217846,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "14",
- "south": "none",
- "west": "none"
+ "power": "9",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -212177,9 +217856,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "15",
+ "power": "9",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -212187,9 +217866,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "15",
- "south": "up",
- "west": "side"
+ "power": "9",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -212197,9 +217876,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "15",
- "south": "up",
- "west": "none"
+ "power": "9",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -212207,9 +217886,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "15",
+ "power": "9",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -212217,9 +217896,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "15",
- "south": "side",
- "west": "side"
+ "power": "9",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -212227,9 +217906,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "15",
- "south": "side",
- "west": "none"
+ "power": "9",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -212237,9 +217916,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "15",
+ "power": "9",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -212247,9 +217926,9 @@
"properties": {
"east": "side",
"north": "side",
- "power": "15",
- "south": "none",
- "west": "side"
+ "power": "10",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -212257,529 +217936,529 @@
"properties": {
"east": "side",
"north": "side",
- "power": "15",
- "south": "none",
- "west": "none"
+ "power": "10",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3698,
"properties": {
"east": "side",
- "north": "none",
- "power": "0",
+ "north": "side",
+ "power": "10",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3699,
"properties": {
"east": "side",
- "north": "none",
- "power": "0",
- "south": "up",
- "west": "side"
+ "north": "side",
+ "power": "10",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3700,
"properties": {
"east": "side",
- "north": "none",
- "power": "0",
- "south": "up",
- "west": "none"
+ "north": "side",
+ "power": "10",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3701,
"properties": {
"east": "side",
- "north": "none",
- "power": "0",
+ "north": "side",
+ "power": "10",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3702,
"properties": {
"east": "side",
- "north": "none",
- "power": "0",
- "south": "side",
- "west": "side"
+ "north": "side",
+ "power": "10",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3703,
"properties": {
"east": "side",
- "north": "none",
- "power": "0",
- "south": "side",
- "west": "none"
+ "north": "side",
+ "power": "10",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3704,
"properties": {
"east": "side",
- "north": "none",
- "power": "0",
+ "north": "side",
+ "power": "10",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3705,
"properties": {
"east": "side",
- "north": "none",
- "power": "0",
- "south": "none",
- "west": "side"
+ "north": "side",
+ "power": "11",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3706,
"properties": {
"east": "side",
- "north": "none",
- "power": "0",
- "south": "none",
- "west": "none"
+ "north": "side",
+ "power": "11",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3707,
"properties": {
"east": "side",
- "north": "none",
- "power": "1",
+ "north": "side",
+ "power": "11",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3708,
"properties": {
"east": "side",
- "north": "none",
- "power": "1",
- "south": "up",
- "west": "side"
+ "north": "side",
+ "power": "11",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3709,
"properties": {
"east": "side",
- "north": "none",
- "power": "1",
- "south": "up",
- "west": "none"
+ "north": "side",
+ "power": "11",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3710,
"properties": {
"east": "side",
- "north": "none",
- "power": "1",
+ "north": "side",
+ "power": "11",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3711,
"properties": {
"east": "side",
- "north": "none",
- "power": "1",
- "south": "side",
- "west": "side"
+ "north": "side",
+ "power": "11",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3712,
"properties": {
"east": "side",
- "north": "none",
- "power": "1",
- "south": "side",
- "west": "none"
+ "north": "side",
+ "power": "11",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3713,
"properties": {
"east": "side",
- "north": "none",
- "power": "1",
+ "north": "side",
+ "power": "11",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3714,
"properties": {
"east": "side",
- "north": "none",
- "power": "1",
- "south": "none",
- "west": "side"
+ "north": "side",
+ "power": "12",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3715,
"properties": {
"east": "side",
- "north": "none",
- "power": "1",
- "south": "none",
- "west": "none"
+ "north": "side",
+ "power": "12",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3716,
"properties": {
"east": "side",
- "north": "none",
- "power": "2",
+ "north": "side",
+ "power": "12",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3717,
"properties": {
"east": "side",
- "north": "none",
- "power": "2",
- "south": "up",
- "west": "side"
+ "north": "side",
+ "power": "12",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3718,
"properties": {
"east": "side",
- "north": "none",
- "power": "2",
- "south": "up",
- "west": "none"
+ "north": "side",
+ "power": "12",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3719,
"properties": {
"east": "side",
- "north": "none",
- "power": "2",
+ "north": "side",
+ "power": "12",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3720,
"properties": {
"east": "side",
- "north": "none",
- "power": "2",
- "south": "side",
- "west": "side"
+ "north": "side",
+ "power": "12",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3721,
"properties": {
"east": "side",
- "north": "none",
- "power": "2",
- "south": "side",
- "west": "none"
+ "north": "side",
+ "power": "12",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3722,
"properties": {
"east": "side",
- "north": "none",
- "power": "2",
+ "north": "side",
+ "power": "12",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3723,
"properties": {
"east": "side",
- "north": "none",
- "power": "2",
- "south": "none",
- "west": "side"
+ "north": "side",
+ "power": "13",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3724,
"properties": {
"east": "side",
- "north": "none",
- "power": "2",
- "south": "none",
- "west": "none"
+ "north": "side",
+ "power": "13",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3725,
"properties": {
"east": "side",
- "north": "none",
- "power": "3",
+ "north": "side",
+ "power": "13",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3726,
"properties": {
"east": "side",
- "north": "none",
- "power": "3",
- "south": "up",
- "west": "side"
+ "north": "side",
+ "power": "13",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3727,
"properties": {
"east": "side",
- "north": "none",
- "power": "3",
- "south": "up",
- "west": "none"
+ "north": "side",
+ "power": "13",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3728,
"properties": {
"east": "side",
- "north": "none",
- "power": "3",
+ "north": "side",
+ "power": "13",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3729,
"properties": {
"east": "side",
- "north": "none",
- "power": "3",
- "south": "side",
- "west": "side"
+ "north": "side",
+ "power": "13",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3730,
"properties": {
"east": "side",
- "north": "none",
- "power": "3",
- "south": "side",
- "west": "none"
+ "north": "side",
+ "power": "13",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3731,
"properties": {
"east": "side",
- "north": "none",
- "power": "3",
+ "north": "side",
+ "power": "13",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3732,
"properties": {
"east": "side",
- "north": "none",
- "power": "3",
- "south": "none",
- "west": "side"
+ "north": "side",
+ "power": "14",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3733,
"properties": {
"east": "side",
- "north": "none",
- "power": "3",
- "south": "none",
- "west": "none"
+ "north": "side",
+ "power": "14",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3734,
"properties": {
"east": "side",
- "north": "none",
- "power": "4",
+ "north": "side",
+ "power": "14",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3735,
"properties": {
"east": "side",
- "north": "none",
- "power": "4",
- "south": "up",
- "west": "side"
+ "north": "side",
+ "power": "14",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3736,
"properties": {
"east": "side",
- "north": "none",
- "power": "4",
- "south": "up",
- "west": "none"
+ "north": "side",
+ "power": "14",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3737,
"properties": {
"east": "side",
- "north": "none",
- "power": "4",
+ "north": "side",
+ "power": "14",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3738,
"properties": {
"east": "side",
- "north": "none",
- "power": "4",
- "south": "side",
- "west": "side"
+ "north": "side",
+ "power": "14",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3739,
"properties": {
"east": "side",
- "north": "none",
- "power": "4",
- "south": "side",
- "west": "none"
+ "north": "side",
+ "power": "14",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3740,
"properties": {
"east": "side",
- "north": "none",
- "power": "4",
+ "north": "side",
+ "power": "14",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3741,
"properties": {
"east": "side",
- "north": "none",
- "power": "4",
- "south": "none",
- "west": "side"
+ "north": "side",
+ "power": "15",
+ "south": "up",
+ "west": "up"
}
},
{
"id": 3742,
"properties": {
"east": "side",
- "north": "none",
- "power": "4",
- "south": "none",
- "west": "none"
+ "north": "side",
+ "power": "15",
+ "south": "up",
+ "west": "side"
}
},
{
"id": 3743,
"properties": {
"east": "side",
- "north": "none",
- "power": "5",
+ "north": "side",
+ "power": "15",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3744,
"properties": {
"east": "side",
- "north": "none",
- "power": "5",
- "south": "up",
- "west": "side"
+ "north": "side",
+ "power": "15",
+ "south": "side",
+ "west": "up"
}
},
{
"id": 3745,
"properties": {
"east": "side",
- "north": "none",
- "power": "5",
- "south": "up",
- "west": "none"
+ "north": "side",
+ "power": "15",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 3746,
"properties": {
"east": "side",
- "north": "none",
- "power": "5",
+ "north": "side",
+ "power": "15",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3747,
"properties": {
"east": "side",
- "north": "none",
- "power": "5",
- "south": "side",
- "west": "side"
+ "north": "side",
+ "power": "15",
+ "south": "none",
+ "west": "up"
}
},
{
"id": 3748,
"properties": {
"east": "side",
- "north": "none",
- "power": "5",
- "south": "side",
- "west": "none"
+ "north": "side",
+ "power": "15",
+ "south": "none",
+ "west": "side"
}
},
{
"id": 3749,
"properties": {
"east": "side",
- "north": "none",
- "power": "5",
+ "north": "side",
+ "power": "15",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -212787,9 +218466,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "5",
- "south": "none",
- "west": "side"
+ "power": "0",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -212797,9 +218476,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "5",
- "south": "none",
- "west": "none"
+ "power": "0",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -212807,9 +218486,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "6",
+ "power": "0",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -212817,9 +218496,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "6",
- "south": "up",
- "west": "side"
+ "power": "0",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -212827,9 +218506,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "6",
- "south": "up",
- "west": "none"
+ "power": "0",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -212837,9 +218516,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "6",
+ "power": "0",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -212847,9 +218526,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "6",
- "south": "side",
- "west": "side"
+ "power": "0",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -212857,9 +218536,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "6",
- "south": "side",
- "west": "none"
+ "power": "0",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -212867,9 +218546,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "6",
+ "power": "0",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -212877,9 +218556,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "6",
- "south": "none",
- "west": "side"
+ "power": "1",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -212887,9 +218566,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "6",
- "south": "none",
- "west": "none"
+ "power": "1",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -212897,9 +218576,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "7",
+ "power": "1",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -212907,9 +218586,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "7",
- "south": "up",
- "west": "side"
+ "power": "1",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -212917,9 +218596,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "7",
- "south": "up",
- "west": "none"
+ "power": "1",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -212927,9 +218606,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "7",
+ "power": "1",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -212937,9 +218616,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "7",
- "south": "side",
- "west": "side"
+ "power": "1",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -212947,9 +218626,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "7",
- "south": "side",
- "west": "none"
+ "power": "1",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -212957,9 +218636,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "7",
+ "power": "1",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -212967,9 +218646,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "7",
- "south": "none",
- "west": "side"
+ "power": "2",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -212977,9 +218656,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "7",
- "south": "none",
- "west": "none"
+ "power": "2",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -212987,9 +218666,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "8",
+ "power": "2",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -212997,9 +218676,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "8",
- "south": "up",
- "west": "side"
+ "power": "2",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -213007,9 +218686,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "8",
- "south": "up",
- "west": "none"
+ "power": "2",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -213017,9 +218696,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "8",
+ "power": "2",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213027,9 +218706,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "8",
- "south": "side",
- "west": "side"
+ "power": "2",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -213037,9 +218716,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "8",
- "south": "side",
- "west": "none"
+ "power": "2",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -213047,9 +218726,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "8",
+ "power": "2",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213057,9 +218736,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "8",
- "south": "none",
- "west": "side"
+ "power": "3",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -213067,9 +218746,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "8",
- "south": "none",
- "west": "none"
+ "power": "3",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -213077,9 +218756,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "9",
+ "power": "3",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213087,9 +218766,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "9",
- "south": "up",
- "west": "side"
+ "power": "3",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -213097,9 +218776,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "9",
- "south": "up",
- "west": "none"
+ "power": "3",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -213107,9 +218786,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "9",
+ "power": "3",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213117,9 +218796,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "9",
- "south": "side",
- "west": "side"
+ "power": "3",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -213127,9 +218806,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "9",
- "south": "side",
- "west": "none"
+ "power": "3",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -213137,9 +218816,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "9",
+ "power": "3",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213147,9 +218826,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "9",
- "south": "none",
- "west": "side"
+ "power": "4",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -213157,9 +218836,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "9",
- "south": "none",
- "west": "none"
+ "power": "4",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -213167,9 +218846,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "10",
+ "power": "4",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213177,9 +218856,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "10",
- "south": "up",
- "west": "side"
+ "power": "4",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -213187,9 +218866,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "10",
- "south": "up",
- "west": "none"
+ "power": "4",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -213197,9 +218876,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "10",
+ "power": "4",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213207,9 +218886,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "10",
- "south": "side",
- "west": "side"
+ "power": "4",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -213217,9 +218896,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "10",
- "south": "side",
- "west": "none"
+ "power": "4",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -213227,9 +218906,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "10",
+ "power": "4",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213237,9 +218916,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "10",
- "south": "none",
- "west": "side"
+ "power": "5",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -213247,9 +218926,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "10",
- "south": "none",
- "west": "none"
+ "power": "5",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -213257,9 +218936,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "11",
+ "power": "5",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213267,9 +218946,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "11",
- "south": "up",
- "west": "side"
+ "power": "5",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -213277,9 +218956,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "11",
- "south": "up",
- "west": "none"
+ "power": "5",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -213287,9 +218966,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "11",
+ "power": "5",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213297,9 +218976,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "11",
- "south": "side",
- "west": "side"
+ "power": "5",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -213307,9 +218986,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "11",
- "south": "side",
- "west": "none"
+ "power": "5",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -213317,9 +218996,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "11",
+ "power": "5",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213327,9 +219006,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "11",
- "south": "none",
- "west": "side"
+ "power": "6",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -213337,9 +219016,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "11",
- "south": "none",
- "west": "none"
+ "power": "6",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -213347,9 +219026,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "12",
+ "power": "6",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213357,9 +219036,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "12",
- "south": "up",
- "west": "side"
+ "power": "6",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -213367,9 +219046,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "12",
- "south": "up",
- "west": "none"
+ "power": "6",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -213377,9 +219056,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "12",
+ "power": "6",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213387,9 +219066,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "12",
- "south": "side",
- "west": "side"
+ "power": "6",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -213397,9 +219076,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "12",
- "south": "side",
- "west": "none"
+ "power": "6",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -213407,9 +219086,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "12",
+ "power": "6",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213417,9 +219096,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "12",
- "south": "none",
- "west": "side"
+ "power": "7",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -213427,9 +219106,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "12",
- "south": "none",
- "west": "none"
+ "power": "7",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -213437,9 +219116,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "13",
+ "power": "7",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213447,9 +219126,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "13",
- "south": "up",
- "west": "side"
+ "power": "7",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -213457,9 +219136,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "13",
- "south": "up",
- "west": "none"
+ "power": "7",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -213467,9 +219146,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "13",
+ "power": "7",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213477,9 +219156,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "13",
- "south": "side",
- "west": "side"
+ "power": "7",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -213487,9 +219166,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "13",
- "south": "side",
- "west": "none"
+ "power": "7",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -213497,9 +219176,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "13",
+ "power": "7",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213507,9 +219186,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "13",
- "south": "none",
- "west": "side"
+ "power": "8",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -213517,9 +219196,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "13",
- "south": "none",
- "west": "none"
+ "power": "8",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -213527,9 +219206,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "14",
+ "power": "8",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213537,9 +219216,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "14",
- "south": "up",
- "west": "side"
+ "power": "8",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -213547,9 +219226,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "14",
- "south": "up",
- "west": "none"
+ "power": "8",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -213557,9 +219236,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "14",
+ "power": "8",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213567,9 +219246,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "14",
- "south": "side",
- "west": "side"
+ "power": "8",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -213577,9 +219256,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "14",
- "south": "side",
- "west": "none"
+ "power": "8",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -213587,9 +219266,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "14",
+ "power": "8",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213597,9 +219276,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "14",
- "south": "none",
- "west": "side"
+ "power": "9",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -213607,9 +219286,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "14",
- "south": "none",
- "west": "none"
+ "power": "9",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -213617,9 +219296,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "15",
+ "power": "9",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213627,9 +219306,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "15",
- "south": "up",
- "west": "side"
+ "power": "9",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -213637,9 +219316,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "15",
- "south": "up",
- "west": "none"
+ "power": "9",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -213647,9 +219326,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "15",
+ "power": "9",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -213657,9 +219336,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "15",
- "south": "side",
- "west": "side"
+ "power": "9",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -213667,9 +219346,9 @@
"properties": {
"east": "side",
"north": "none",
- "power": "15",
- "south": "side",
- "west": "none"
+ "power": "9",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -213677,13 +219356,533 @@
"properties": {
"east": "side",
"north": "none",
- "power": "15",
+ "power": "9",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3840,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "10",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3841,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "10",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3842,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "10",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3843,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "10",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3844,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "10",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3845,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "10",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3846,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "10",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3847,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "10",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3848,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "10",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3849,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "11",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3850,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "11",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3851,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "11",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3852,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "11",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3853,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "11",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3854,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "11",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3855,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "11",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3856,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "11",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3857,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "11",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3858,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "12",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3859,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "12",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3860,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "12",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3861,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "12",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3862,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "12",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3863,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "12",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3864,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "12",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3865,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "12",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3866,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "12",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3867,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "13",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3868,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "13",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3869,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "13",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3870,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "13",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3871,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "13",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3872,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "13",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3873,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "13",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3874,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "13",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3875,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "13",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3876,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "14",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3877,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "14",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3878,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "14",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3879,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "14",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3880,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "14",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3881,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "14",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3882,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "14",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3883,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "14",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3884,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "14",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3885,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "15",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3886,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "15",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3887,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "15",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3888,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "15",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3889,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "15",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3890,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "15",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3891,
+ "properties": {
+ "east": "side",
+ "north": "none",
+ "power": "15",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3892,
"properties": {
"east": "side",
"north": "none",
@@ -213693,7 +219892,7 @@
}
},
{
- "id": 3841,
+ "id": 3893,
"properties": {
"east": "side",
"north": "none",
@@ -213702,534 +219901,14 @@
"west": "none"
}
},
- {
- "id": 3842,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "0",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3843,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "0",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3844,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "0",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3845,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "0",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3846,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "0",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3847,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "0",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3848,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "0",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3849,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "0",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3850,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "0",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3851,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "1",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3852,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "1",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3853,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "1",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3854,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "1",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3855,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "1",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3856,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "1",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3857,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "1",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3858,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "1",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3859,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "1",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3860,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "2",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3861,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "2",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3862,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "2",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3863,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "2",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3864,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "2",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3865,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "2",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3866,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "2",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3867,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "2",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3868,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "2",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3869,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "3",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3870,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "3",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3871,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "3",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3872,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "3",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3873,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "3",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3874,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "3",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3875,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "3",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3876,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "3",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3877,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "3",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3878,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "4",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3879,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "4",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3880,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "4",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3881,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "4",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3882,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "4",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3883,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "4",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3884,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "4",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3885,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "4",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3886,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "4",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3887,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "5",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3888,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "5",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3889,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "5",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3890,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "5",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3891,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "5",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3892,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "5",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3893,
- "properties": {
- "east": "none",
- "north": "up",
- "power": "5",
- "south": "none",
- "west": "up"
- }
- },
{
"id": 3894,
"properties": {
"east": "none",
"north": "up",
- "power": "5",
- "south": "none",
- "west": "side"
+ "power": "0",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -214237,9 +219916,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "5",
- "south": "none",
- "west": "none"
+ "power": "0",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -214247,9 +219926,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "6",
+ "power": "0",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214257,9 +219936,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "6",
- "south": "up",
- "west": "side"
+ "power": "0",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -214267,9 +219946,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "6",
- "south": "up",
- "west": "none"
+ "power": "0",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -214277,9 +219956,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "6",
+ "power": "0",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214287,9 +219966,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "6",
- "south": "side",
- "west": "side"
+ "power": "0",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -214297,9 +219976,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "6",
- "south": "side",
- "west": "none"
+ "power": "0",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -214307,9 +219986,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "6",
+ "power": "0",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214317,9 +219996,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "6",
- "south": "none",
- "west": "side"
+ "power": "1",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -214327,9 +220006,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "6",
- "south": "none",
- "west": "none"
+ "power": "1",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -214337,9 +220016,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "7",
+ "power": "1",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214347,9 +220026,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "7",
- "south": "up",
- "west": "side"
+ "power": "1",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -214357,9 +220036,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "7",
- "south": "up",
- "west": "none"
+ "power": "1",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -214367,9 +220046,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "7",
+ "power": "1",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214377,9 +220056,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "7",
- "south": "side",
- "west": "side"
+ "power": "1",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -214387,9 +220066,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "7",
- "south": "side",
- "west": "none"
+ "power": "1",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -214397,9 +220076,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "7",
+ "power": "1",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214407,9 +220086,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "7",
- "south": "none",
- "west": "side"
+ "power": "2",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -214417,9 +220096,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "7",
- "south": "none",
- "west": "none"
+ "power": "2",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -214427,9 +220106,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "8",
+ "power": "2",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214437,9 +220116,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "8",
- "south": "up",
- "west": "side"
+ "power": "2",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -214447,9 +220126,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "8",
- "south": "up",
- "west": "none"
+ "power": "2",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -214457,9 +220136,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "8",
+ "power": "2",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214467,9 +220146,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "8",
- "south": "side",
- "west": "side"
+ "power": "2",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -214477,9 +220156,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "8",
- "south": "side",
- "west": "none"
+ "power": "2",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -214487,9 +220166,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "8",
+ "power": "2",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214497,9 +220176,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "8",
- "south": "none",
- "west": "side"
+ "power": "3",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -214507,9 +220186,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "8",
- "south": "none",
- "west": "none"
+ "power": "3",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -214517,9 +220196,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "9",
+ "power": "3",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214527,9 +220206,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "9",
- "south": "up",
- "west": "side"
+ "power": "3",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -214537,9 +220216,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "9",
- "south": "up",
- "west": "none"
+ "power": "3",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -214547,9 +220226,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "9",
+ "power": "3",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214557,9 +220236,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "9",
- "south": "side",
- "west": "side"
+ "power": "3",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -214567,9 +220246,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "9",
- "south": "side",
- "west": "none"
+ "power": "3",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -214577,9 +220256,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "9",
+ "power": "3",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214587,9 +220266,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "9",
- "south": "none",
- "west": "side"
+ "power": "4",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -214597,9 +220276,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "9",
- "south": "none",
- "west": "none"
+ "power": "4",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -214607,9 +220286,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "10",
+ "power": "4",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214617,9 +220296,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "10",
- "south": "up",
- "west": "side"
+ "power": "4",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -214627,9 +220306,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "10",
- "south": "up",
- "west": "none"
+ "power": "4",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -214637,9 +220316,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "10",
+ "power": "4",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214647,9 +220326,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "10",
- "south": "side",
- "west": "side"
+ "power": "4",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -214657,9 +220336,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "10",
- "south": "side",
- "west": "none"
+ "power": "4",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -214667,9 +220346,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "10",
+ "power": "4",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214677,9 +220356,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "10",
- "south": "none",
- "west": "side"
+ "power": "5",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -214687,9 +220366,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "10",
- "south": "none",
- "west": "none"
+ "power": "5",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -214697,9 +220376,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "11",
+ "power": "5",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214707,9 +220386,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "11",
- "south": "up",
- "west": "side"
+ "power": "5",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -214717,9 +220396,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "11",
- "south": "up",
- "west": "none"
+ "power": "5",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -214727,9 +220406,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "11",
+ "power": "5",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214737,9 +220416,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "11",
- "south": "side",
- "west": "side"
+ "power": "5",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -214747,9 +220426,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "11",
- "south": "side",
- "west": "none"
+ "power": "5",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -214757,9 +220436,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "11",
+ "power": "5",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214767,9 +220446,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "11",
- "south": "none",
- "west": "side"
+ "power": "6",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -214777,9 +220456,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "11",
- "south": "none",
- "west": "none"
+ "power": "6",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -214787,9 +220466,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "12",
+ "power": "6",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214797,9 +220476,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "12",
- "south": "up",
- "west": "side"
+ "power": "6",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -214807,9 +220486,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "12",
- "south": "up",
- "west": "none"
+ "power": "6",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -214817,9 +220496,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "12",
+ "power": "6",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214827,9 +220506,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "12",
- "south": "side",
- "west": "side"
+ "power": "6",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -214837,9 +220516,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "12",
- "south": "side",
- "west": "none"
+ "power": "6",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -214847,9 +220526,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "12",
+ "power": "6",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214857,9 +220536,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "12",
- "south": "none",
- "west": "side"
+ "power": "7",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -214867,9 +220546,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "12",
- "south": "none",
- "west": "none"
+ "power": "7",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -214877,9 +220556,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "13",
+ "power": "7",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214887,9 +220566,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "13",
- "south": "up",
- "west": "side"
+ "power": "7",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -214897,9 +220576,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "13",
- "south": "up",
- "west": "none"
+ "power": "7",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -214907,9 +220586,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "13",
+ "power": "7",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214917,9 +220596,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "13",
- "south": "side",
- "west": "side"
+ "power": "7",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -214927,9 +220606,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "13",
- "south": "side",
- "west": "none"
+ "power": "7",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -214937,9 +220616,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "13",
+ "power": "7",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214947,9 +220626,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "13",
- "south": "none",
- "west": "side"
+ "power": "8",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -214957,9 +220636,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "13",
- "south": "none",
- "west": "none"
+ "power": "8",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -214967,9 +220646,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "14",
+ "power": "8",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -214977,9 +220656,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "14",
- "south": "up",
- "west": "side"
+ "power": "8",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -214987,9 +220666,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "14",
- "south": "up",
- "west": "none"
+ "power": "8",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -214997,9 +220676,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "14",
+ "power": "8",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -215007,9 +220686,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "14",
- "south": "side",
- "west": "side"
+ "power": "8",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -215017,9 +220696,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "14",
- "south": "side",
- "west": "none"
+ "power": "8",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -215027,9 +220706,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "14",
+ "power": "8",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -215037,9 +220716,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "14",
- "south": "none",
- "west": "side"
+ "power": "9",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -215047,9 +220726,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "14",
- "south": "none",
- "west": "none"
+ "power": "9",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -215057,9 +220736,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "15",
+ "power": "9",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -215067,9 +220746,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "15",
- "south": "up",
- "west": "side"
+ "power": "9",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -215077,9 +220756,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "15",
- "south": "up",
- "west": "none"
+ "power": "9",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -215087,9 +220766,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "15",
+ "power": "9",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -215097,9 +220776,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "15",
- "south": "side",
- "west": "side"
+ "power": "9",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -215107,9 +220786,9 @@
"properties": {
"east": "none",
"north": "up",
- "power": "15",
- "south": "side",
- "west": "none"
+ "power": "9",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -215117,13 +220796,533 @@
"properties": {
"east": "none",
"north": "up",
- "power": "15",
+ "power": "9",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 3984,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "10",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3985,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "10",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3986,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "10",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3987,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "10",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3988,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "10",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3989,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "10",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3990,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "10",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3991,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "10",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3992,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "10",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3993,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "11",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3994,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "11",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3995,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "11",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3996,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "11",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 3997,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "11",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 3998,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "11",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 3999,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "11",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4000,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "11",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4001,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "11",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4002,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "12",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4003,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "12",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4004,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "12",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4005,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "12",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4006,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "12",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4007,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "12",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4008,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "12",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4009,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "12",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4010,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "12",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4011,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "13",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4012,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "13",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4013,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "13",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4014,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "13",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4015,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "13",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4016,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "13",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4017,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "13",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4018,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "13",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4019,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "13",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4020,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "14",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4021,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "14",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4022,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "14",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4023,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "14",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4024,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "14",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4025,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "14",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4026,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "14",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4027,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "14",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4028,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "14",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4029,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "15",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4030,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "15",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4031,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "15",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4032,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "15",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4033,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "15",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4034,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "15",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4035,
+ "properties": {
+ "east": "none",
+ "north": "up",
+ "power": "15",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4036,
"properties": {
"east": "none",
"north": "up",
@@ -215133,7 +221332,7 @@
}
},
{
- "id": 3985,
+ "id": 4037,
"properties": {
"east": "none",
"north": "up",
@@ -215142,534 +221341,14 @@
"west": "none"
}
},
- {
- "id": 3986,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "0",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3987,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "0",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3988,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "0",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3989,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "0",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3990,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "0",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 3991,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "0",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 3992,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "0",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 3993,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "0",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 3994,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "0",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 3995,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "1",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 3996,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "1",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 3997,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "1",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 3998,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "1",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 3999,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "1",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 4000,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "1",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 4001,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "1",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 4002,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "1",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 4003,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "1",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 4004,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "2",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 4005,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "2",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 4006,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "2",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 4007,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "2",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 4008,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "2",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 4009,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "2",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 4010,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "2",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 4011,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "2",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 4012,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "2",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 4013,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "3",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 4014,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "3",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 4015,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "3",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 4016,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "3",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 4017,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "3",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 4018,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "3",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 4019,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "3",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 4020,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "3",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 4021,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "3",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 4022,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "4",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 4023,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "4",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 4024,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "4",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 4025,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "4",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 4026,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "4",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 4027,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "4",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 4028,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "4",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 4029,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "4",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 4030,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "4",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 4031,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "5",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 4032,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "5",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 4033,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "5",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 4034,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "5",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 4035,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "5",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 4036,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "5",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 4037,
- "properties": {
- "east": "none",
- "north": "side",
- "power": "5",
- "south": "none",
- "west": "up"
- }
- },
{
"id": 4038,
"properties": {
"east": "none",
"north": "side",
- "power": "5",
- "south": "none",
- "west": "side"
+ "power": "0",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -215677,9 +221356,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "5",
- "south": "none",
- "west": "none"
+ "power": "0",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -215687,9 +221366,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "6",
+ "power": "0",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -215697,9 +221376,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "6",
- "south": "up",
- "west": "side"
+ "power": "0",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -215707,9 +221386,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "6",
- "south": "up",
- "west": "none"
+ "power": "0",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -215717,9 +221396,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "6",
+ "power": "0",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -215727,9 +221406,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "6",
- "south": "side",
- "west": "side"
+ "power": "0",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -215737,9 +221416,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "6",
- "south": "side",
- "west": "none"
+ "power": "0",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -215747,9 +221426,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "6",
+ "power": "0",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -215757,9 +221436,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "6",
- "south": "none",
- "west": "side"
+ "power": "1",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -215767,9 +221446,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "6",
- "south": "none",
- "west": "none"
+ "power": "1",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -215777,9 +221456,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "7",
+ "power": "1",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -215787,9 +221466,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "7",
- "south": "up",
- "west": "side"
+ "power": "1",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -215797,9 +221476,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "7",
- "south": "up",
- "west": "none"
+ "power": "1",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -215807,9 +221486,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "7",
+ "power": "1",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -215817,9 +221496,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "7",
- "south": "side",
- "west": "side"
+ "power": "1",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -215827,9 +221506,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "7",
- "south": "side",
- "west": "none"
+ "power": "1",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -215837,9 +221516,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "7",
+ "power": "1",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -215847,9 +221526,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "7",
- "south": "none",
- "west": "side"
+ "power": "2",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -215857,9 +221536,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "7",
- "south": "none",
- "west": "none"
+ "power": "2",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -215867,9 +221546,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "8",
+ "power": "2",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -215877,9 +221556,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "8",
- "south": "up",
- "west": "side"
+ "power": "2",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -215887,9 +221566,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "8",
- "south": "up",
- "west": "none"
+ "power": "2",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -215897,9 +221576,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "8",
+ "power": "2",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -215907,9 +221586,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "8",
- "south": "side",
- "west": "side"
+ "power": "2",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -215917,9 +221596,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "8",
- "south": "side",
- "west": "none"
+ "power": "2",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -215927,9 +221606,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "8",
+ "power": "2",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -215937,9 +221616,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "8",
- "south": "none",
- "west": "side"
+ "power": "3",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -215947,9 +221626,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "8",
- "south": "none",
- "west": "none"
+ "power": "3",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -215957,9 +221636,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "9",
+ "power": "3",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -215967,9 +221646,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "9",
- "south": "up",
- "west": "side"
+ "power": "3",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -215977,9 +221656,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "9",
- "south": "up",
- "west": "none"
+ "power": "3",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -215987,9 +221666,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "9",
+ "power": "3",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -215997,9 +221676,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "9",
- "south": "side",
- "west": "side"
+ "power": "3",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -216007,9 +221686,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "9",
- "south": "side",
- "west": "none"
+ "power": "3",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -216017,9 +221696,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "9",
+ "power": "3",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -216027,9 +221706,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "9",
- "south": "none",
- "west": "side"
+ "power": "4",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -216037,9 +221716,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "9",
- "south": "none",
- "west": "none"
+ "power": "4",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -216047,9 +221726,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "10",
+ "power": "4",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -216057,9 +221736,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "10",
- "south": "up",
- "west": "side"
+ "power": "4",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -216067,9 +221746,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "10",
- "south": "up",
- "west": "none"
+ "power": "4",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -216077,9 +221756,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "10",
+ "power": "4",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -216087,9 +221766,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "10",
- "south": "side",
- "west": "side"
+ "power": "4",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -216097,9 +221776,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "10",
- "south": "side",
- "west": "none"
+ "power": "4",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -216107,9 +221786,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "10",
+ "power": "4",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -216117,9 +221796,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "10",
- "south": "none",
- "west": "side"
+ "power": "5",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -216127,9 +221806,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "10",
- "south": "none",
- "west": "none"
+ "power": "5",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -216137,9 +221816,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "11",
+ "power": "5",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -216147,9 +221826,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "11",
- "south": "up",
- "west": "side"
+ "power": "5",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -216157,9 +221836,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "11",
- "south": "up",
- "west": "none"
+ "power": "5",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -216167,9 +221846,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "11",
+ "power": "5",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -216177,9 +221856,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "11",
- "south": "side",
- "west": "side"
+ "power": "5",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -216187,9 +221866,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "11",
- "south": "side",
- "west": "none"
+ "power": "5",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -216197,9 +221876,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "11",
+ "power": "5",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -216207,9 +221886,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "11",
- "south": "none",
- "west": "side"
+ "power": "6",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -216217,9 +221896,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "11",
- "south": "none",
- "west": "none"
+ "power": "6",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -216227,9 +221906,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "12",
+ "power": "6",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -216237,9 +221916,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "12",
- "south": "up",
- "west": "side"
+ "power": "6",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -216247,9 +221926,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "12",
- "south": "up",
- "west": "none"
+ "power": "6",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -216257,9 +221936,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "12",
+ "power": "6",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -216267,9 +221946,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "12",
- "south": "side",
- "west": "side"
+ "power": "6",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -216277,9 +221956,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "12",
- "south": "side",
- "west": "none"
+ "power": "6",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -216287,9 +221966,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "12",
+ "power": "6",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -216297,9 +221976,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "12",
- "south": "none",
- "west": "side"
+ "power": "7",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -216307,9 +221986,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "12",
- "south": "none",
- "west": "none"
+ "power": "7",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -216317,9 +221996,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "13",
+ "power": "7",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -216327,9 +222006,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "13",
- "south": "up",
- "west": "side"
+ "power": "7",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -216337,9 +222016,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "13",
- "south": "up",
- "west": "none"
+ "power": "7",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -216347,9 +222026,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "13",
+ "power": "7",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -216357,9 +222036,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "13",
- "south": "side",
- "west": "side"
+ "power": "7",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -216367,9 +222046,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "13",
- "south": "side",
- "west": "none"
+ "power": "7",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -216377,9 +222056,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "13",
+ "power": "7",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -216387,9 +222066,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "13",
- "south": "none",
- "west": "side"
+ "power": "8",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -216397,9 +222076,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "13",
- "south": "none",
- "west": "none"
+ "power": "8",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -216407,9 +222086,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "14",
+ "power": "8",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -216417,9 +222096,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "14",
- "south": "up",
- "west": "side"
+ "power": "8",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -216427,9 +222106,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "14",
- "south": "up",
- "west": "none"
+ "power": "8",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -216437,9 +222116,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "14",
+ "power": "8",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -216447,9 +222126,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "14",
- "south": "side",
- "west": "side"
+ "power": "8",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -216457,9 +222136,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "14",
- "south": "side",
- "west": "none"
+ "power": "8",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -216467,9 +222146,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "14",
+ "power": "8",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -216477,9 +222156,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "14",
- "south": "none",
- "west": "side"
+ "power": "9",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -216487,9 +222166,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "14",
- "south": "none",
- "west": "none"
+ "power": "9",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -216497,9 +222176,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "15",
+ "power": "9",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -216507,9 +222186,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "15",
- "south": "up",
- "west": "side"
+ "power": "9",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -216517,9 +222196,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "15",
- "south": "up",
- "west": "none"
+ "power": "9",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -216527,9 +222206,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "15",
+ "power": "9",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -216537,9 +222216,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "15",
- "south": "side",
- "west": "side"
+ "power": "9",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -216547,9 +222226,9 @@
"properties": {
"east": "none",
"north": "side",
- "power": "15",
- "south": "side",
- "west": "none"
+ "power": "9",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -216557,13 +222236,533 @@
"properties": {
"east": "none",
"north": "side",
- "power": "15",
+ "power": "9",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
"id": 4128,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "10",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4129,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "10",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4130,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "10",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4131,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "10",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4132,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "10",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4133,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "10",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4134,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "10",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4135,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "10",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4136,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "10",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4137,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "11",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4138,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "11",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4139,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "11",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4140,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "11",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4141,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "11",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4142,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "11",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4143,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "11",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4144,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "11",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4145,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "11",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4146,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "12",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4147,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "12",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4148,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "12",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4149,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "12",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4150,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "12",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4151,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "12",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4152,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "12",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4153,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "12",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4154,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "12",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4155,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "13",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4156,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "13",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4157,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "13",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4158,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "13",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4159,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "13",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4160,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "13",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4161,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "13",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4162,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "13",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4163,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "13",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4164,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "14",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4165,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "14",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4166,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "14",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4167,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "14",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4168,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "14",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4169,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "14",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4170,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "14",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4171,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "14",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4172,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "14",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4173,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "15",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4174,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "15",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4175,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "15",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4176,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "15",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4177,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "15",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4178,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "15",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4179,
+ "properties": {
+ "east": "none",
+ "north": "side",
+ "power": "15",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4180,
"properties": {
"east": "none",
"north": "side",
@@ -216573,7 +222772,7 @@
}
},
{
- "id": 4129,
+ "id": 4181,
"properties": {
"east": "none",
"north": "side",
@@ -216583,7 +222782,7 @@
}
},
{
- "id": 4130,
+ "id": 4182,
"properties": {
"east": "none",
"north": "none",
@@ -216593,7 +222792,7 @@
}
},
{
- "id": 4131,
+ "id": 4183,
"properties": {
"east": "none",
"north": "none",
@@ -216603,7 +222802,7 @@
}
},
{
- "id": 4132,
+ "id": 4184,
"properties": {
"east": "none",
"north": "none",
@@ -216613,7 +222812,7 @@
}
},
{
- "id": 4133,
+ "id": 4185,
"properties": {
"east": "none",
"north": "none",
@@ -216623,7 +222822,7 @@
}
},
{
- "id": 4134,
+ "id": 4186,
"properties": {
"east": "none",
"north": "none",
@@ -216633,7 +222832,7 @@
}
},
{
- "id": 4135,
+ "id": 4187,
"properties": {
"east": "none",
"north": "none",
@@ -216643,7 +222842,7 @@
}
},
{
- "id": 4136,
+ "id": 4188,
"properties": {
"east": "none",
"north": "none",
@@ -216653,7 +222852,7 @@
}
},
{
- "id": 4137,
+ "id": 4189,
"properties": {
"east": "none",
"north": "none",
@@ -216664,7 +222863,7 @@
},
{
"default": true,
- "id": 4138,
+ "id": 4190,
"properties": {
"east": "none",
"north": "none",
@@ -216673,534 +222872,14 @@
"west": "none"
}
},
- {
- "id": 4139,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "1",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 4140,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "1",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 4141,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "1",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 4142,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "1",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 4143,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "1",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 4144,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "1",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 4145,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "1",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 4146,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "1",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 4147,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "1",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 4148,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "2",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 4149,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "2",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 4150,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "2",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 4151,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "2",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 4152,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "2",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 4153,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "2",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 4154,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "2",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 4155,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "2",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 4156,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "2",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 4157,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "3",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 4158,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "3",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 4159,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "3",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 4160,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "3",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 4161,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "3",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 4162,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "3",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 4163,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "3",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 4164,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "3",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 4165,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "3",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 4166,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "4",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 4167,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "4",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 4168,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "4",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 4169,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "4",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 4170,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "4",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 4171,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "4",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 4172,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "4",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 4173,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "4",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 4174,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "4",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 4175,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "5",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 4176,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "5",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 4177,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "5",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 4178,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "5",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 4179,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "5",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 4180,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "5",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 4181,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "5",
- "south": "none",
- "west": "up"
- }
- },
- {
- "id": 4182,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "5",
- "south": "none",
- "west": "side"
- }
- },
- {
- "id": 4183,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "5",
- "south": "none",
- "west": "none"
- }
- },
- {
- "id": 4184,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "6",
- "south": "up",
- "west": "up"
- }
- },
- {
- "id": 4185,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "6",
- "south": "up",
- "west": "side"
- }
- },
- {
- "id": 4186,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "6",
- "south": "up",
- "west": "none"
- }
- },
- {
- "id": 4187,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "6",
- "south": "side",
- "west": "up"
- }
- },
- {
- "id": 4188,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "6",
- "south": "side",
- "west": "side"
- }
- },
- {
- "id": 4189,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "6",
- "south": "side",
- "west": "none"
- }
- },
- {
- "id": 4190,
- "properties": {
- "east": "none",
- "north": "none",
- "power": "6",
- "south": "none",
- "west": "up"
- }
- },
{
"id": 4191,
"properties": {
"east": "none",
"north": "none",
- "power": "6",
- "south": "none",
- "west": "side"
+ "power": "1",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -217208,9 +222887,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "6",
- "south": "none",
- "west": "none"
+ "power": "1",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -217218,9 +222897,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "7",
+ "power": "1",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217228,9 +222907,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "7",
- "south": "up",
- "west": "side"
+ "power": "1",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -217238,9 +222917,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "7",
- "south": "up",
- "west": "none"
+ "power": "1",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -217248,9 +222927,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "7",
+ "power": "1",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217258,9 +222937,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "7",
- "south": "side",
- "west": "side"
+ "power": "1",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -217268,9 +222947,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "7",
- "south": "side",
- "west": "none"
+ "power": "1",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -217278,9 +222957,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "7",
+ "power": "1",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217288,9 +222967,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "7",
- "south": "none",
- "west": "side"
+ "power": "2",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -217298,9 +222977,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "7",
- "south": "none",
- "west": "none"
+ "power": "2",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -217308,9 +222987,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "8",
+ "power": "2",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217318,9 +222997,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "8",
- "south": "up",
- "west": "side"
+ "power": "2",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -217328,9 +223007,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "8",
- "south": "up",
- "west": "none"
+ "power": "2",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -217338,9 +223017,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "8",
+ "power": "2",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217348,9 +223027,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "8",
- "south": "side",
- "west": "side"
+ "power": "2",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -217358,9 +223037,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "8",
- "south": "side",
- "west": "none"
+ "power": "2",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -217368,9 +223047,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "8",
+ "power": "2",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217378,9 +223057,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "8",
- "south": "none",
- "west": "side"
+ "power": "3",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -217388,9 +223067,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "8",
- "south": "none",
- "west": "none"
+ "power": "3",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -217398,9 +223077,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "9",
+ "power": "3",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217408,9 +223087,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "9",
- "south": "up",
- "west": "side"
+ "power": "3",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -217418,9 +223097,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "9",
- "south": "up",
- "west": "none"
+ "power": "3",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -217428,9 +223107,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "9",
+ "power": "3",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217438,9 +223117,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "9",
- "south": "side",
- "west": "side"
+ "power": "3",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -217448,9 +223127,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "9",
- "south": "side",
- "west": "none"
+ "power": "3",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -217458,9 +223137,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "9",
+ "power": "3",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217468,9 +223147,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "9",
- "south": "none",
- "west": "side"
+ "power": "4",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -217478,9 +223157,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "9",
- "south": "none",
- "west": "none"
+ "power": "4",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -217488,9 +223167,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "10",
+ "power": "4",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217498,9 +223177,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "10",
- "south": "up",
- "west": "side"
+ "power": "4",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -217508,9 +223187,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "10",
- "south": "up",
- "west": "none"
+ "power": "4",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -217518,9 +223197,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "10",
+ "power": "4",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217528,9 +223207,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "10",
- "south": "side",
- "west": "side"
+ "power": "4",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -217538,9 +223217,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "10",
- "south": "side",
- "west": "none"
+ "power": "4",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -217548,9 +223227,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "10",
+ "power": "4",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217558,9 +223237,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "10",
- "south": "none",
- "west": "side"
+ "power": "5",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -217568,9 +223247,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "10",
- "south": "none",
- "west": "none"
+ "power": "5",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -217578,9 +223257,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "11",
+ "power": "5",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217588,9 +223267,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "11",
- "south": "up",
- "west": "side"
+ "power": "5",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -217598,9 +223277,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "11",
- "south": "up",
- "west": "none"
+ "power": "5",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -217608,9 +223287,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "11",
+ "power": "5",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217618,9 +223297,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "11",
- "south": "side",
- "west": "side"
+ "power": "5",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -217628,9 +223307,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "11",
- "south": "side",
- "west": "none"
+ "power": "5",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -217638,9 +223317,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "11",
+ "power": "5",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217648,9 +223327,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "11",
- "south": "none",
- "west": "side"
+ "power": "6",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -217658,9 +223337,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "11",
- "south": "none",
- "west": "none"
+ "power": "6",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -217668,9 +223347,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "12",
+ "power": "6",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217678,9 +223357,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "12",
- "south": "up",
- "west": "side"
+ "power": "6",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -217688,9 +223367,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "12",
- "south": "up",
- "west": "none"
+ "power": "6",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -217698,9 +223377,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "12",
+ "power": "6",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217708,9 +223387,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "12",
- "south": "side",
- "west": "side"
+ "power": "6",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -217718,9 +223397,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "12",
- "south": "side",
- "west": "none"
+ "power": "6",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -217728,9 +223407,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "12",
+ "power": "6",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217738,9 +223417,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "12",
- "south": "none",
- "west": "side"
+ "power": "7",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -217748,9 +223427,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "12",
- "south": "none",
- "west": "none"
+ "power": "7",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -217758,9 +223437,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "13",
+ "power": "7",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217768,9 +223447,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "13",
- "south": "up",
- "west": "side"
+ "power": "7",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -217778,9 +223457,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "13",
- "south": "up",
- "west": "none"
+ "power": "7",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -217788,9 +223467,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "13",
+ "power": "7",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217798,9 +223477,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "13",
- "south": "side",
- "west": "side"
+ "power": "7",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -217808,9 +223487,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "13",
- "south": "side",
- "west": "none"
+ "power": "7",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -217818,9 +223497,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "13",
+ "power": "7",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217828,9 +223507,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "13",
- "south": "none",
- "west": "side"
+ "power": "8",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -217838,9 +223517,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "13",
- "south": "none",
- "west": "none"
+ "power": "8",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -217848,9 +223527,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "14",
+ "power": "8",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217858,9 +223537,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "14",
- "south": "up",
- "west": "side"
+ "power": "8",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -217868,9 +223547,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "14",
- "south": "up",
- "west": "none"
+ "power": "8",
+ "south": "side",
+ "west": "side"
}
},
{
@@ -217878,9 +223557,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "14",
+ "power": "8",
"south": "side",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217888,9 +223567,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "14",
- "south": "side",
- "west": "side"
+ "power": "8",
+ "south": "none",
+ "west": "up"
}
},
{
@@ -217898,9 +223577,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "14",
- "south": "side",
- "west": "none"
+ "power": "8",
+ "south": "none",
+ "west": "side"
}
},
{
@@ -217908,9 +223587,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "14",
+ "power": "8",
"south": "none",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217918,9 +223597,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "14",
- "south": "none",
- "west": "side"
+ "power": "9",
+ "south": "up",
+ "west": "up"
}
},
{
@@ -217928,9 +223607,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "14",
- "south": "none",
- "west": "none"
+ "power": "9",
+ "south": "up",
+ "west": "side"
}
},
{
@@ -217938,9 +223617,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "15",
+ "power": "9",
"south": "up",
- "west": "up"
+ "west": "none"
}
},
{
@@ -217948,9 +223627,9 @@
"properties": {
"east": "none",
"north": "none",
- "power": "15",
- "south": "up",
- "west": "side"
+ "power": "9",
+ "south": "side",
+ "west": "up"
}
},
{
@@ -217958,13 +223637,533 @@
"properties": {
"east": "none",
"north": "none",
- "power": "15",
- "south": "up",
- "west": "none"
+ "power": "9",
+ "south": "side",
+ "west": "side"
}
},
{
"id": 4268,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "9",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4269,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "9",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4270,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "9",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4271,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "9",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4272,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "10",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4273,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "10",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4274,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "10",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4275,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "10",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4276,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "10",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4277,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "10",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4278,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "10",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4279,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "10",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4280,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "10",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4281,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "11",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4282,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "11",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4283,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "11",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4284,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "11",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4285,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "11",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4286,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "11",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4287,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "11",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4288,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "11",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4289,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "11",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4290,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "12",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4291,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "12",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4292,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "12",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4293,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "12",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4294,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "12",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4295,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "12",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4296,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "12",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4297,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "12",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4298,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "12",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4299,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "13",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4300,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "13",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4301,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "13",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4302,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "13",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4303,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "13",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4304,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "13",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4305,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "13",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4306,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "13",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4307,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "13",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4308,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "14",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4309,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "14",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4310,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "14",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4311,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "14",
+ "south": "side",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4312,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "14",
+ "south": "side",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4313,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "14",
+ "south": "side",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4314,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "14",
+ "south": "none",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4315,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "14",
+ "south": "none",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4316,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "14",
+ "south": "none",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4317,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "15",
+ "south": "up",
+ "west": "up"
+ }
+ },
+ {
+ "id": 4318,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "15",
+ "south": "up",
+ "west": "side"
+ }
+ },
+ {
+ "id": 4319,
+ "properties": {
+ "east": "none",
+ "north": "none",
+ "power": "15",
+ "south": "up",
+ "west": "none"
+ }
+ },
+ {
+ "id": 4320,
"properties": {
"east": "none",
"north": "none",
@@ -217974,7 +224173,7 @@
}
},
{
- "id": 4269,
+ "id": 4321,
"properties": {
"east": "none",
"north": "none",
@@ -217984,7 +224183,7 @@
}
},
{
- "id": 4270,
+ "id": 4322,
"properties": {
"east": "none",
"north": "none",
@@ -217994,7 +224193,7 @@
}
},
{
- "id": 4271,
+ "id": 4323,
"properties": {
"east": "none",
"north": "none",
@@ -218004,7 +224203,7 @@
}
},
{
- "id": 4272,
+ "id": 4324,
"properties": {
"east": "none",
"north": "none",
@@ -218014,7 +224213,7 @@
}
},
{
- "id": 4273,
+ "id": 4325,
"properties": {
"east": "none",
"north": "none",
@@ -218033,7 +224232,7 @@
"states": [
{
"default": true,
- "id": 26573
+ "id": 27042
}
]
},
@@ -218066,7 +224265,7 @@
},
"states": [
{
- "id": 5881,
+ "id": 6047,
"properties": {
"delay": "1",
"facing": "north",
@@ -218075,7 +224274,7 @@
}
},
{
- "id": 5882,
+ "id": 6048,
"properties": {
"delay": "1",
"facing": "north",
@@ -218084,7 +224283,7 @@
}
},
{
- "id": 5883,
+ "id": 6049,
"properties": {
"delay": "1",
"facing": "north",
@@ -218094,7 +224293,7 @@
},
{
"default": true,
- "id": 5884,
+ "id": 6050,
"properties": {
"delay": "1",
"facing": "north",
@@ -218103,7 +224302,7 @@
}
},
{
- "id": 5885,
+ "id": 6051,
"properties": {
"delay": "1",
"facing": "south",
@@ -218112,7 +224311,7 @@
}
},
{
- "id": 5886,
+ "id": 6052,
"properties": {
"delay": "1",
"facing": "south",
@@ -218121,7 +224320,7 @@
}
},
{
- "id": 5887,
+ "id": 6053,
"properties": {
"delay": "1",
"facing": "south",
@@ -218130,7 +224329,7 @@
}
},
{
- "id": 5888,
+ "id": 6054,
"properties": {
"delay": "1",
"facing": "south",
@@ -218139,7 +224338,7 @@
}
},
{
- "id": 5889,
+ "id": 6055,
"properties": {
"delay": "1",
"facing": "west",
@@ -218148,7 +224347,7 @@
}
},
{
- "id": 5890,
+ "id": 6056,
"properties": {
"delay": "1",
"facing": "west",
@@ -218157,7 +224356,7 @@
}
},
{
- "id": 5891,
+ "id": 6057,
"properties": {
"delay": "1",
"facing": "west",
@@ -218166,7 +224365,7 @@
}
},
{
- "id": 5892,
+ "id": 6058,
"properties": {
"delay": "1",
"facing": "west",
@@ -218175,7 +224374,7 @@
}
},
{
- "id": 5893,
+ "id": 6059,
"properties": {
"delay": "1",
"facing": "east",
@@ -218184,7 +224383,7 @@
}
},
{
- "id": 5894,
+ "id": 6060,
"properties": {
"delay": "1",
"facing": "east",
@@ -218193,7 +224392,7 @@
}
},
{
- "id": 5895,
+ "id": 6061,
"properties": {
"delay": "1",
"facing": "east",
@@ -218202,7 +224401,7 @@
}
},
{
- "id": 5896,
+ "id": 6062,
"properties": {
"delay": "1",
"facing": "east",
@@ -218211,7 +224410,7 @@
}
},
{
- "id": 5897,
+ "id": 6063,
"properties": {
"delay": "2",
"facing": "north",
@@ -218220,7 +224419,7 @@
}
},
{
- "id": 5898,
+ "id": 6064,
"properties": {
"delay": "2",
"facing": "north",
@@ -218229,7 +224428,7 @@
}
},
{
- "id": 5899,
+ "id": 6065,
"properties": {
"delay": "2",
"facing": "north",
@@ -218238,7 +224437,7 @@
}
},
{
- "id": 5900,
+ "id": 6066,
"properties": {
"delay": "2",
"facing": "north",
@@ -218247,7 +224446,7 @@
}
},
{
- "id": 5901,
+ "id": 6067,
"properties": {
"delay": "2",
"facing": "south",
@@ -218256,7 +224455,7 @@
}
},
{
- "id": 5902,
+ "id": 6068,
"properties": {
"delay": "2",
"facing": "south",
@@ -218265,7 +224464,7 @@
}
},
{
- "id": 5903,
+ "id": 6069,
"properties": {
"delay": "2",
"facing": "south",
@@ -218274,7 +224473,7 @@
}
},
{
- "id": 5904,
+ "id": 6070,
"properties": {
"delay": "2",
"facing": "south",
@@ -218283,7 +224482,7 @@
}
},
{
- "id": 5905,
+ "id": 6071,
"properties": {
"delay": "2",
"facing": "west",
@@ -218292,7 +224491,7 @@
}
},
{
- "id": 5906,
+ "id": 6072,
"properties": {
"delay": "2",
"facing": "west",
@@ -218301,7 +224500,7 @@
}
},
{
- "id": 5907,
+ "id": 6073,
"properties": {
"delay": "2",
"facing": "west",
@@ -218310,7 +224509,7 @@
}
},
{
- "id": 5908,
+ "id": 6074,
"properties": {
"delay": "2",
"facing": "west",
@@ -218319,7 +224518,7 @@
}
},
{
- "id": 5909,
+ "id": 6075,
"properties": {
"delay": "2",
"facing": "east",
@@ -218328,7 +224527,7 @@
}
},
{
- "id": 5910,
+ "id": 6076,
"properties": {
"delay": "2",
"facing": "east",
@@ -218337,7 +224536,7 @@
}
},
{
- "id": 5911,
+ "id": 6077,
"properties": {
"delay": "2",
"facing": "east",
@@ -218346,7 +224545,7 @@
}
},
{
- "id": 5912,
+ "id": 6078,
"properties": {
"delay": "2",
"facing": "east",
@@ -218355,7 +224554,7 @@
}
},
{
- "id": 5913,
+ "id": 6079,
"properties": {
"delay": "3",
"facing": "north",
@@ -218364,7 +224563,7 @@
}
},
{
- "id": 5914,
+ "id": 6080,
"properties": {
"delay": "3",
"facing": "north",
@@ -218373,7 +224572,7 @@
}
},
{
- "id": 5915,
+ "id": 6081,
"properties": {
"delay": "3",
"facing": "north",
@@ -218382,7 +224581,7 @@
}
},
{
- "id": 5916,
+ "id": 6082,
"properties": {
"delay": "3",
"facing": "north",
@@ -218391,7 +224590,7 @@
}
},
{
- "id": 5917,
+ "id": 6083,
"properties": {
"delay": "3",
"facing": "south",
@@ -218400,7 +224599,7 @@
}
},
{
- "id": 5918,
+ "id": 6084,
"properties": {
"delay": "3",
"facing": "south",
@@ -218409,7 +224608,7 @@
}
},
{
- "id": 5919,
+ "id": 6085,
"properties": {
"delay": "3",
"facing": "south",
@@ -218418,7 +224617,7 @@
}
},
{
- "id": 5920,
+ "id": 6086,
"properties": {
"delay": "3",
"facing": "south",
@@ -218427,7 +224626,7 @@
}
},
{
- "id": 5921,
+ "id": 6087,
"properties": {
"delay": "3",
"facing": "west",
@@ -218436,7 +224635,7 @@
}
},
{
- "id": 5922,
+ "id": 6088,
"properties": {
"delay": "3",
"facing": "west",
@@ -218445,7 +224644,7 @@
}
},
{
- "id": 5923,
+ "id": 6089,
"properties": {
"delay": "3",
"facing": "west",
@@ -218454,7 +224653,7 @@
}
},
{
- "id": 5924,
+ "id": 6090,
"properties": {
"delay": "3",
"facing": "west",
@@ -218463,7 +224662,7 @@
}
},
{
- "id": 5925,
+ "id": 6091,
"properties": {
"delay": "3",
"facing": "east",
@@ -218472,7 +224671,7 @@
}
},
{
- "id": 5926,
+ "id": 6092,
"properties": {
"delay": "3",
"facing": "east",
@@ -218481,7 +224680,7 @@
}
},
{
- "id": 5927,
+ "id": 6093,
"properties": {
"delay": "3",
"facing": "east",
@@ -218490,7 +224689,7 @@
}
},
{
- "id": 5928,
+ "id": 6094,
"properties": {
"delay": "3",
"facing": "east",
@@ -218499,7 +224698,7 @@
}
},
{
- "id": 5929,
+ "id": 6095,
"properties": {
"delay": "4",
"facing": "north",
@@ -218508,7 +224707,7 @@
}
},
{
- "id": 5930,
+ "id": 6096,
"properties": {
"delay": "4",
"facing": "north",
@@ -218517,7 +224716,7 @@
}
},
{
- "id": 5931,
+ "id": 6097,
"properties": {
"delay": "4",
"facing": "north",
@@ -218526,7 +224725,7 @@
}
},
{
- "id": 5932,
+ "id": 6098,
"properties": {
"delay": "4",
"facing": "north",
@@ -218535,7 +224734,7 @@
}
},
{
- "id": 5933,
+ "id": 6099,
"properties": {
"delay": "4",
"facing": "south",
@@ -218544,7 +224743,7 @@
}
},
{
- "id": 5934,
+ "id": 6100,
"properties": {
"delay": "4",
"facing": "south",
@@ -218553,7 +224752,7 @@
}
},
{
- "id": 5935,
+ "id": 6101,
"properties": {
"delay": "4",
"facing": "south",
@@ -218562,7 +224761,7 @@
}
},
{
- "id": 5936,
+ "id": 6102,
"properties": {
"delay": "4",
"facing": "south",
@@ -218571,7 +224770,7 @@
}
},
{
- "id": 5937,
+ "id": 6103,
"properties": {
"delay": "4",
"facing": "west",
@@ -218580,7 +224779,7 @@
}
},
{
- "id": 5938,
+ "id": 6104,
"properties": {
"delay": "4",
"facing": "west",
@@ -218589,7 +224788,7 @@
}
},
{
- "id": 5939,
+ "id": 6105,
"properties": {
"delay": "4",
"facing": "west",
@@ -218598,7 +224797,7 @@
}
},
{
- "id": 5940,
+ "id": 6106,
"properties": {
"delay": "4",
"facing": "west",
@@ -218607,7 +224806,7 @@
}
},
{
- "id": 5941,
+ "id": 6107,
"properties": {
"delay": "4",
"facing": "east",
@@ -218616,7 +224815,7 @@
}
},
{
- "id": 5942,
+ "id": 6108,
"properties": {
"delay": "4",
"facing": "east",
@@ -218625,7 +224824,7 @@
}
},
{
- "id": 5943,
+ "id": 6109,
"properties": {
"delay": "4",
"facing": "east",
@@ -218634,7 +224833,7 @@
}
},
{
- "id": 5944,
+ "id": 6110,
"properties": {
"delay": "4",
"facing": "east",
@@ -218666,42 +224865,42 @@
},
"states": [
{
- "id": 12515,
+ "id": 12984,
"properties": {
"conditional": "true",
"facing": "north"
}
},
{
- "id": 12516,
+ "id": 12985,
"properties": {
"conditional": "true",
"facing": "east"
}
},
{
- "id": 12517,
+ "id": 12986,
"properties": {
"conditional": "true",
"facing": "south"
}
},
{
- "id": 12518,
+ "id": 12987,
"properties": {
"conditional": "true",
"facing": "west"
}
},
{
- "id": 12519,
+ "id": 12988,
"properties": {
"conditional": "true",
"facing": "up"
}
},
{
- "id": 12520,
+ "id": 12989,
"properties": {
"conditional": "true",
"facing": "down"
@@ -218709,42 +224908,42 @@
},
{
"default": true,
- "id": 12521,
+ "id": 12990,
"properties": {
"conditional": "false",
"facing": "north"
}
},
{
- "id": 12522,
+ "id": 12991,
"properties": {
"conditional": "false",
"facing": "east"
}
},
{
- "id": 12523,
+ "id": 12992,
"properties": {
"conditional": "false",
"facing": "south"
}
},
{
- "id": 12524,
+ "id": 12993,
"properties": {
"conditional": "false",
"facing": "west"
}
},
{
- "id": 12525,
+ "id": 12994,
"properties": {
"conditional": "false",
"facing": "up"
}
},
{
- "id": 12526,
+ "id": 12995,
"properties": {
"conditional": "false",
"facing": "down"
@@ -218769,31 +224968,31 @@
"states": [
{
"default": true,
- "id": 19450,
+ "id": 19919,
"properties": {
"charges": "0"
}
},
{
- "id": 19451,
+ "id": 19920,
"properties": {
"charges": "1"
}
},
{
- "id": 19452,
+ "id": 19921,
"properties": {
"charges": "2"
}
},
{
- "id": 19453,
+ "id": 19922,
"properties": {
"charges": "3"
}
},
{
- "id": 19454,
+ "id": 19923,
"properties": {
"charges": "4"
}
@@ -218808,7 +225007,7 @@
"states": [
{
"default": true,
- "id": 24902
+ "id": 25371
}
]
},
@@ -218825,14 +225024,14 @@
},
"states": [
{
- "id": 10751,
+ "id": 11086,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 10752,
+ "id": 11087,
"properties": {
"half": "lower"
}
@@ -218848,7 +225047,7 @@
"states": [
{
"default": true,
- "id": 112
+ "id": 118
}
]
},
@@ -218860,7 +225059,7 @@
"states": [
{
"default": true,
- "id": 535
+ "id": 578
}
]
},
@@ -218882,21 +225081,21 @@
},
"states": [
{
- "id": 11234,
+ "id": 11575,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11235,
+ "id": 11576,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11236,
+ "id": 11577,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -218904,21 +225103,21 @@
},
{
"default": true,
- "id": 11237,
+ "id": 11578,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11238,
+ "id": 11579,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11239,
+ "id": 11580,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -218959,7 +225158,7 @@
},
"states": [
{
- "id": 7431,
+ "id": 7661,
"properties": {
"facing": "north",
"half": "top",
@@ -218968,7 +225167,7 @@
}
},
{
- "id": 7432,
+ "id": 7662,
"properties": {
"facing": "north",
"half": "top",
@@ -218977,7 +225176,7 @@
}
},
{
- "id": 7433,
+ "id": 7663,
"properties": {
"facing": "north",
"half": "top",
@@ -218986,7 +225185,7 @@
}
},
{
- "id": 7434,
+ "id": 7664,
"properties": {
"facing": "north",
"half": "top",
@@ -218995,7 +225194,7 @@
}
},
{
- "id": 7435,
+ "id": 7665,
"properties": {
"facing": "north",
"half": "top",
@@ -219004,7 +225203,7 @@
}
},
{
- "id": 7436,
+ "id": 7666,
"properties": {
"facing": "north",
"half": "top",
@@ -219013,7 +225212,7 @@
}
},
{
- "id": 7437,
+ "id": 7667,
"properties": {
"facing": "north",
"half": "top",
@@ -219022,7 +225221,7 @@
}
},
{
- "id": 7438,
+ "id": 7668,
"properties": {
"facing": "north",
"half": "top",
@@ -219031,7 +225230,7 @@
}
},
{
- "id": 7439,
+ "id": 7669,
"properties": {
"facing": "north",
"half": "top",
@@ -219040,7 +225239,7 @@
}
},
{
- "id": 7440,
+ "id": 7670,
"properties": {
"facing": "north",
"half": "top",
@@ -219049,7 +225248,7 @@
}
},
{
- "id": 7441,
+ "id": 7671,
"properties": {
"facing": "north",
"half": "bottom",
@@ -219059,7 +225258,7 @@
},
{
"default": true,
- "id": 7442,
+ "id": 7672,
"properties": {
"facing": "north",
"half": "bottom",
@@ -219068,7 +225267,7 @@
}
},
{
- "id": 7443,
+ "id": 7673,
"properties": {
"facing": "north",
"half": "bottom",
@@ -219077,7 +225276,7 @@
}
},
{
- "id": 7444,
+ "id": 7674,
"properties": {
"facing": "north",
"half": "bottom",
@@ -219086,7 +225285,7 @@
}
},
{
- "id": 7445,
+ "id": 7675,
"properties": {
"facing": "north",
"half": "bottom",
@@ -219095,7 +225294,7 @@
}
},
{
- "id": 7446,
+ "id": 7676,
"properties": {
"facing": "north",
"half": "bottom",
@@ -219104,7 +225303,7 @@
}
},
{
- "id": 7447,
+ "id": 7677,
"properties": {
"facing": "north",
"half": "bottom",
@@ -219113,7 +225312,7 @@
}
},
{
- "id": 7448,
+ "id": 7678,
"properties": {
"facing": "north",
"half": "bottom",
@@ -219122,7 +225321,7 @@
}
},
{
- "id": 7449,
+ "id": 7679,
"properties": {
"facing": "north",
"half": "bottom",
@@ -219131,7 +225330,7 @@
}
},
{
- "id": 7450,
+ "id": 7680,
"properties": {
"facing": "north",
"half": "bottom",
@@ -219140,7 +225339,7 @@
}
},
{
- "id": 7451,
+ "id": 7681,
"properties": {
"facing": "south",
"half": "top",
@@ -219149,7 +225348,7 @@
}
},
{
- "id": 7452,
+ "id": 7682,
"properties": {
"facing": "south",
"half": "top",
@@ -219158,7 +225357,7 @@
}
},
{
- "id": 7453,
+ "id": 7683,
"properties": {
"facing": "south",
"half": "top",
@@ -219167,7 +225366,7 @@
}
},
{
- "id": 7454,
+ "id": 7684,
"properties": {
"facing": "south",
"half": "top",
@@ -219176,7 +225375,7 @@
}
},
{
- "id": 7455,
+ "id": 7685,
"properties": {
"facing": "south",
"half": "top",
@@ -219185,7 +225384,7 @@
}
},
{
- "id": 7456,
+ "id": 7686,
"properties": {
"facing": "south",
"half": "top",
@@ -219194,7 +225393,7 @@
}
},
{
- "id": 7457,
+ "id": 7687,
"properties": {
"facing": "south",
"half": "top",
@@ -219203,7 +225402,7 @@
}
},
{
- "id": 7458,
+ "id": 7688,
"properties": {
"facing": "south",
"half": "top",
@@ -219212,7 +225411,7 @@
}
},
{
- "id": 7459,
+ "id": 7689,
"properties": {
"facing": "south",
"half": "top",
@@ -219221,7 +225420,7 @@
}
},
{
- "id": 7460,
+ "id": 7690,
"properties": {
"facing": "south",
"half": "top",
@@ -219230,7 +225429,7 @@
}
},
{
- "id": 7461,
+ "id": 7691,
"properties": {
"facing": "south",
"half": "bottom",
@@ -219239,7 +225438,7 @@
}
},
{
- "id": 7462,
+ "id": 7692,
"properties": {
"facing": "south",
"half": "bottom",
@@ -219248,7 +225447,7 @@
}
},
{
- "id": 7463,
+ "id": 7693,
"properties": {
"facing": "south",
"half": "bottom",
@@ -219257,7 +225456,7 @@
}
},
{
- "id": 7464,
+ "id": 7694,
"properties": {
"facing": "south",
"half": "bottom",
@@ -219266,7 +225465,7 @@
}
},
{
- "id": 7465,
+ "id": 7695,
"properties": {
"facing": "south",
"half": "bottom",
@@ -219275,7 +225474,7 @@
}
},
{
- "id": 7466,
+ "id": 7696,
"properties": {
"facing": "south",
"half": "bottom",
@@ -219284,7 +225483,7 @@
}
},
{
- "id": 7467,
+ "id": 7697,
"properties": {
"facing": "south",
"half": "bottom",
@@ -219293,7 +225492,7 @@
}
},
{
- "id": 7468,
+ "id": 7698,
"properties": {
"facing": "south",
"half": "bottom",
@@ -219302,7 +225501,7 @@
}
},
{
- "id": 7469,
+ "id": 7699,
"properties": {
"facing": "south",
"half": "bottom",
@@ -219311,7 +225510,7 @@
}
},
{
- "id": 7470,
+ "id": 7700,
"properties": {
"facing": "south",
"half": "bottom",
@@ -219320,7 +225519,7 @@
}
},
{
- "id": 7471,
+ "id": 7701,
"properties": {
"facing": "west",
"half": "top",
@@ -219329,7 +225528,7 @@
}
},
{
- "id": 7472,
+ "id": 7702,
"properties": {
"facing": "west",
"half": "top",
@@ -219338,7 +225537,7 @@
}
},
{
- "id": 7473,
+ "id": 7703,
"properties": {
"facing": "west",
"half": "top",
@@ -219347,7 +225546,7 @@
}
},
{
- "id": 7474,
+ "id": 7704,
"properties": {
"facing": "west",
"half": "top",
@@ -219356,7 +225555,7 @@
}
},
{
- "id": 7475,
+ "id": 7705,
"properties": {
"facing": "west",
"half": "top",
@@ -219365,7 +225564,7 @@
}
},
{
- "id": 7476,
+ "id": 7706,
"properties": {
"facing": "west",
"half": "top",
@@ -219374,7 +225573,7 @@
}
},
{
- "id": 7477,
+ "id": 7707,
"properties": {
"facing": "west",
"half": "top",
@@ -219383,7 +225582,7 @@
}
},
{
- "id": 7478,
+ "id": 7708,
"properties": {
"facing": "west",
"half": "top",
@@ -219392,7 +225591,7 @@
}
},
{
- "id": 7479,
+ "id": 7709,
"properties": {
"facing": "west",
"half": "top",
@@ -219401,7 +225600,7 @@
}
},
{
- "id": 7480,
+ "id": 7710,
"properties": {
"facing": "west",
"half": "top",
@@ -219410,7 +225609,7 @@
}
},
{
- "id": 7481,
+ "id": 7711,
"properties": {
"facing": "west",
"half": "bottom",
@@ -219419,7 +225618,7 @@
}
},
{
- "id": 7482,
+ "id": 7712,
"properties": {
"facing": "west",
"half": "bottom",
@@ -219428,7 +225627,7 @@
}
},
{
- "id": 7483,
+ "id": 7713,
"properties": {
"facing": "west",
"half": "bottom",
@@ -219437,7 +225636,7 @@
}
},
{
- "id": 7484,
+ "id": 7714,
"properties": {
"facing": "west",
"half": "bottom",
@@ -219446,7 +225645,7 @@
}
},
{
- "id": 7485,
+ "id": 7715,
"properties": {
"facing": "west",
"half": "bottom",
@@ -219455,7 +225654,7 @@
}
},
{
- "id": 7486,
+ "id": 7716,
"properties": {
"facing": "west",
"half": "bottom",
@@ -219464,7 +225663,7 @@
}
},
{
- "id": 7487,
+ "id": 7717,
"properties": {
"facing": "west",
"half": "bottom",
@@ -219473,7 +225672,7 @@
}
},
{
- "id": 7488,
+ "id": 7718,
"properties": {
"facing": "west",
"half": "bottom",
@@ -219482,7 +225681,7 @@
}
},
{
- "id": 7489,
+ "id": 7719,
"properties": {
"facing": "west",
"half": "bottom",
@@ -219491,7 +225690,7 @@
}
},
{
- "id": 7490,
+ "id": 7720,
"properties": {
"facing": "west",
"half": "bottom",
@@ -219500,7 +225699,7 @@
}
},
{
- "id": 7491,
+ "id": 7721,
"properties": {
"facing": "east",
"half": "top",
@@ -219509,7 +225708,7 @@
}
},
{
- "id": 7492,
+ "id": 7722,
"properties": {
"facing": "east",
"half": "top",
@@ -219518,7 +225717,7 @@
}
},
{
- "id": 7493,
+ "id": 7723,
"properties": {
"facing": "east",
"half": "top",
@@ -219527,7 +225726,7 @@
}
},
{
- "id": 7494,
+ "id": 7724,
"properties": {
"facing": "east",
"half": "top",
@@ -219536,7 +225735,7 @@
}
},
{
- "id": 7495,
+ "id": 7725,
"properties": {
"facing": "east",
"half": "top",
@@ -219545,7 +225744,7 @@
}
},
{
- "id": 7496,
+ "id": 7726,
"properties": {
"facing": "east",
"half": "top",
@@ -219554,7 +225753,7 @@
}
},
{
- "id": 7497,
+ "id": 7727,
"properties": {
"facing": "east",
"half": "top",
@@ -219563,7 +225762,7 @@
}
},
{
- "id": 7498,
+ "id": 7728,
"properties": {
"facing": "east",
"half": "top",
@@ -219572,7 +225771,7 @@
}
},
{
- "id": 7499,
+ "id": 7729,
"properties": {
"facing": "east",
"half": "top",
@@ -219581,7 +225780,7 @@
}
},
{
- "id": 7500,
+ "id": 7730,
"properties": {
"facing": "east",
"half": "top",
@@ -219590,7 +225789,7 @@
}
},
{
- "id": 7501,
+ "id": 7731,
"properties": {
"facing": "east",
"half": "bottom",
@@ -219599,7 +225798,7 @@
}
},
{
- "id": 7502,
+ "id": 7732,
"properties": {
"facing": "east",
"half": "bottom",
@@ -219608,7 +225807,7 @@
}
},
{
- "id": 7503,
+ "id": 7733,
"properties": {
"facing": "east",
"half": "bottom",
@@ -219617,7 +225816,7 @@
}
},
{
- "id": 7504,
+ "id": 7734,
"properties": {
"facing": "east",
"half": "bottom",
@@ -219626,7 +225825,7 @@
}
},
{
- "id": 7505,
+ "id": 7735,
"properties": {
"facing": "east",
"half": "bottom",
@@ -219635,7 +225834,7 @@
}
},
{
- "id": 7506,
+ "id": 7736,
"properties": {
"facing": "east",
"half": "bottom",
@@ -219644,7 +225843,7 @@
}
},
{
- "id": 7507,
+ "id": 7737,
"properties": {
"facing": "east",
"half": "bottom",
@@ -219653,7 +225852,7 @@
}
},
{
- "id": 7508,
+ "id": 7738,
"properties": {
"facing": "east",
"half": "bottom",
@@ -219662,7 +225861,7 @@
}
},
{
- "id": 7509,
+ "id": 7739,
"properties": {
"facing": "east",
"half": "bottom",
@@ -219671,7 +225870,7 @@
}
},
{
- "id": 7510,
+ "id": 7740,
"properties": {
"facing": "east",
"half": "bottom",
@@ -219718,7 +225917,7 @@
},
"states": [
{
- "id": 17400,
+ "id": 17869,
"properties": {
"east": "none",
"north": "none",
@@ -219729,7 +225928,7 @@
}
},
{
- "id": 17401,
+ "id": 17870,
"properties": {
"east": "none",
"north": "none",
@@ -219740,7 +225939,7 @@
}
},
{
- "id": 17402,
+ "id": 17871,
"properties": {
"east": "none",
"north": "none",
@@ -219752,7 +225951,7 @@
},
{
"default": true,
- "id": 17403,
+ "id": 17872,
"properties": {
"east": "none",
"north": "none",
@@ -219763,7 +225962,7 @@
}
},
{
- "id": 17404,
+ "id": 17873,
"properties": {
"east": "none",
"north": "none",
@@ -219774,7 +225973,7 @@
}
},
{
- "id": 17405,
+ "id": 17874,
"properties": {
"east": "none",
"north": "none",
@@ -219785,7 +225984,7 @@
}
},
{
- "id": 17406,
+ "id": 17875,
"properties": {
"east": "none",
"north": "none",
@@ -219796,7 +225995,7 @@
}
},
{
- "id": 17407,
+ "id": 17876,
"properties": {
"east": "none",
"north": "none",
@@ -219807,7 +226006,7 @@
}
},
{
- "id": 17408,
+ "id": 17877,
"properties": {
"east": "none",
"north": "none",
@@ -219818,7 +226017,7 @@
}
},
{
- "id": 17409,
+ "id": 17878,
"properties": {
"east": "none",
"north": "none",
@@ -219829,7 +226028,7 @@
}
},
{
- "id": 17410,
+ "id": 17879,
"properties": {
"east": "none",
"north": "none",
@@ -219840,7 +226039,7 @@
}
},
{
- "id": 17411,
+ "id": 17880,
"properties": {
"east": "none",
"north": "none",
@@ -219851,7 +226050,7 @@
}
},
{
- "id": 17412,
+ "id": 17881,
"properties": {
"east": "none",
"north": "none",
@@ -219862,7 +226061,7 @@
}
},
{
- "id": 17413,
+ "id": 17882,
"properties": {
"east": "none",
"north": "none",
@@ -219873,7 +226072,7 @@
}
},
{
- "id": 17414,
+ "id": 17883,
"properties": {
"east": "none",
"north": "none",
@@ -219884,7 +226083,7 @@
}
},
{
- "id": 17415,
+ "id": 17884,
"properties": {
"east": "none",
"north": "none",
@@ -219895,7 +226094,7 @@
}
},
{
- "id": 17416,
+ "id": 17885,
"properties": {
"east": "none",
"north": "none",
@@ -219906,7 +226105,7 @@
}
},
{
- "id": 17417,
+ "id": 17886,
"properties": {
"east": "none",
"north": "none",
@@ -219917,7 +226116,7 @@
}
},
{
- "id": 17418,
+ "id": 17887,
"properties": {
"east": "none",
"north": "none",
@@ -219928,7 +226127,7 @@
}
},
{
- "id": 17419,
+ "id": 17888,
"properties": {
"east": "none",
"north": "none",
@@ -219939,7 +226138,7 @@
}
},
{
- "id": 17420,
+ "id": 17889,
"properties": {
"east": "none",
"north": "none",
@@ -219950,7 +226149,7 @@
}
},
{
- "id": 17421,
+ "id": 17890,
"properties": {
"east": "none",
"north": "none",
@@ -219961,7 +226160,7 @@
}
},
{
- "id": 17422,
+ "id": 17891,
"properties": {
"east": "none",
"north": "none",
@@ -219972,7 +226171,7 @@
}
},
{
- "id": 17423,
+ "id": 17892,
"properties": {
"east": "none",
"north": "none",
@@ -219983,7 +226182,7 @@
}
},
{
- "id": 17424,
+ "id": 17893,
"properties": {
"east": "none",
"north": "none",
@@ -219994,7 +226193,7 @@
}
},
{
- "id": 17425,
+ "id": 17894,
"properties": {
"east": "none",
"north": "none",
@@ -220005,7 +226204,7 @@
}
},
{
- "id": 17426,
+ "id": 17895,
"properties": {
"east": "none",
"north": "none",
@@ -220016,7 +226215,7 @@
}
},
{
- "id": 17427,
+ "id": 17896,
"properties": {
"east": "none",
"north": "none",
@@ -220027,7 +226226,7 @@
}
},
{
- "id": 17428,
+ "id": 17897,
"properties": {
"east": "none",
"north": "none",
@@ -220038,7 +226237,7 @@
}
},
{
- "id": 17429,
+ "id": 17898,
"properties": {
"east": "none",
"north": "none",
@@ -220049,7 +226248,7 @@
}
},
{
- "id": 17430,
+ "id": 17899,
"properties": {
"east": "none",
"north": "none",
@@ -220060,7 +226259,7 @@
}
},
{
- "id": 17431,
+ "id": 17900,
"properties": {
"east": "none",
"north": "none",
@@ -220071,7 +226270,7 @@
}
},
{
- "id": 17432,
+ "id": 17901,
"properties": {
"east": "none",
"north": "none",
@@ -220082,7 +226281,7 @@
}
},
{
- "id": 17433,
+ "id": 17902,
"properties": {
"east": "none",
"north": "none",
@@ -220093,7 +226292,7 @@
}
},
{
- "id": 17434,
+ "id": 17903,
"properties": {
"east": "none",
"north": "none",
@@ -220104,7 +226303,7 @@
}
},
{
- "id": 17435,
+ "id": 17904,
"properties": {
"east": "none",
"north": "none",
@@ -220115,7 +226314,7 @@
}
},
{
- "id": 17436,
+ "id": 17905,
"properties": {
"east": "none",
"north": "low",
@@ -220126,7 +226325,7 @@
}
},
{
- "id": 17437,
+ "id": 17906,
"properties": {
"east": "none",
"north": "low",
@@ -220137,7 +226336,7 @@
}
},
{
- "id": 17438,
+ "id": 17907,
"properties": {
"east": "none",
"north": "low",
@@ -220148,7 +226347,7 @@
}
},
{
- "id": 17439,
+ "id": 17908,
"properties": {
"east": "none",
"north": "low",
@@ -220159,7 +226358,7 @@
}
},
{
- "id": 17440,
+ "id": 17909,
"properties": {
"east": "none",
"north": "low",
@@ -220170,7 +226369,7 @@
}
},
{
- "id": 17441,
+ "id": 17910,
"properties": {
"east": "none",
"north": "low",
@@ -220181,7 +226380,7 @@
}
},
{
- "id": 17442,
+ "id": 17911,
"properties": {
"east": "none",
"north": "low",
@@ -220192,7 +226391,7 @@
}
},
{
- "id": 17443,
+ "id": 17912,
"properties": {
"east": "none",
"north": "low",
@@ -220203,7 +226402,7 @@
}
},
{
- "id": 17444,
+ "id": 17913,
"properties": {
"east": "none",
"north": "low",
@@ -220214,7 +226413,7 @@
}
},
{
- "id": 17445,
+ "id": 17914,
"properties": {
"east": "none",
"north": "low",
@@ -220225,7 +226424,7 @@
}
},
{
- "id": 17446,
+ "id": 17915,
"properties": {
"east": "none",
"north": "low",
@@ -220236,7 +226435,7 @@
}
},
{
- "id": 17447,
+ "id": 17916,
"properties": {
"east": "none",
"north": "low",
@@ -220247,7 +226446,7 @@
}
},
{
- "id": 17448,
+ "id": 17917,
"properties": {
"east": "none",
"north": "low",
@@ -220258,7 +226457,7 @@
}
},
{
- "id": 17449,
+ "id": 17918,
"properties": {
"east": "none",
"north": "low",
@@ -220269,7 +226468,7 @@
}
},
{
- "id": 17450,
+ "id": 17919,
"properties": {
"east": "none",
"north": "low",
@@ -220280,7 +226479,7 @@
}
},
{
- "id": 17451,
+ "id": 17920,
"properties": {
"east": "none",
"north": "low",
@@ -220291,7 +226490,7 @@
}
},
{
- "id": 17452,
+ "id": 17921,
"properties": {
"east": "none",
"north": "low",
@@ -220302,7 +226501,7 @@
}
},
{
- "id": 17453,
+ "id": 17922,
"properties": {
"east": "none",
"north": "low",
@@ -220313,7 +226512,7 @@
}
},
{
- "id": 17454,
+ "id": 17923,
"properties": {
"east": "none",
"north": "low",
@@ -220324,7 +226523,7 @@
}
},
{
- "id": 17455,
+ "id": 17924,
"properties": {
"east": "none",
"north": "low",
@@ -220335,7 +226534,7 @@
}
},
{
- "id": 17456,
+ "id": 17925,
"properties": {
"east": "none",
"north": "low",
@@ -220346,7 +226545,7 @@
}
},
{
- "id": 17457,
+ "id": 17926,
"properties": {
"east": "none",
"north": "low",
@@ -220357,7 +226556,7 @@
}
},
{
- "id": 17458,
+ "id": 17927,
"properties": {
"east": "none",
"north": "low",
@@ -220368,7 +226567,7 @@
}
},
{
- "id": 17459,
+ "id": 17928,
"properties": {
"east": "none",
"north": "low",
@@ -220379,7 +226578,7 @@
}
},
{
- "id": 17460,
+ "id": 17929,
"properties": {
"east": "none",
"north": "low",
@@ -220390,7 +226589,7 @@
}
},
{
- "id": 17461,
+ "id": 17930,
"properties": {
"east": "none",
"north": "low",
@@ -220401,7 +226600,7 @@
}
},
{
- "id": 17462,
+ "id": 17931,
"properties": {
"east": "none",
"north": "low",
@@ -220412,7 +226611,7 @@
}
},
{
- "id": 17463,
+ "id": 17932,
"properties": {
"east": "none",
"north": "low",
@@ -220423,7 +226622,7 @@
}
},
{
- "id": 17464,
+ "id": 17933,
"properties": {
"east": "none",
"north": "low",
@@ -220434,7 +226633,7 @@
}
},
{
- "id": 17465,
+ "id": 17934,
"properties": {
"east": "none",
"north": "low",
@@ -220445,7 +226644,7 @@
}
},
{
- "id": 17466,
+ "id": 17935,
"properties": {
"east": "none",
"north": "low",
@@ -220456,7 +226655,7 @@
}
},
{
- "id": 17467,
+ "id": 17936,
"properties": {
"east": "none",
"north": "low",
@@ -220467,7 +226666,7 @@
}
},
{
- "id": 17468,
+ "id": 17937,
"properties": {
"east": "none",
"north": "low",
@@ -220478,7 +226677,7 @@
}
},
{
- "id": 17469,
+ "id": 17938,
"properties": {
"east": "none",
"north": "low",
@@ -220489,7 +226688,7 @@
}
},
{
- "id": 17470,
+ "id": 17939,
"properties": {
"east": "none",
"north": "low",
@@ -220500,7 +226699,7 @@
}
},
{
- "id": 17471,
+ "id": 17940,
"properties": {
"east": "none",
"north": "low",
@@ -220511,7 +226710,7 @@
}
},
{
- "id": 17472,
+ "id": 17941,
"properties": {
"east": "none",
"north": "tall",
@@ -220522,7 +226721,7 @@
}
},
{
- "id": 17473,
+ "id": 17942,
"properties": {
"east": "none",
"north": "tall",
@@ -220533,7 +226732,7 @@
}
},
{
- "id": 17474,
+ "id": 17943,
"properties": {
"east": "none",
"north": "tall",
@@ -220544,7 +226743,7 @@
}
},
{
- "id": 17475,
+ "id": 17944,
"properties": {
"east": "none",
"north": "tall",
@@ -220555,7 +226754,7 @@
}
},
{
- "id": 17476,
+ "id": 17945,
"properties": {
"east": "none",
"north": "tall",
@@ -220566,7 +226765,7 @@
}
},
{
- "id": 17477,
+ "id": 17946,
"properties": {
"east": "none",
"north": "tall",
@@ -220577,7 +226776,7 @@
}
},
{
- "id": 17478,
+ "id": 17947,
"properties": {
"east": "none",
"north": "tall",
@@ -220588,7 +226787,7 @@
}
},
{
- "id": 17479,
+ "id": 17948,
"properties": {
"east": "none",
"north": "tall",
@@ -220599,7 +226798,7 @@
}
},
{
- "id": 17480,
+ "id": 17949,
"properties": {
"east": "none",
"north": "tall",
@@ -220610,7 +226809,7 @@
}
},
{
- "id": 17481,
+ "id": 17950,
"properties": {
"east": "none",
"north": "tall",
@@ -220621,7 +226820,7 @@
}
},
{
- "id": 17482,
+ "id": 17951,
"properties": {
"east": "none",
"north": "tall",
@@ -220632,7 +226831,7 @@
}
},
{
- "id": 17483,
+ "id": 17952,
"properties": {
"east": "none",
"north": "tall",
@@ -220643,7 +226842,7 @@
}
},
{
- "id": 17484,
+ "id": 17953,
"properties": {
"east": "none",
"north": "tall",
@@ -220654,7 +226853,7 @@
}
},
{
- "id": 17485,
+ "id": 17954,
"properties": {
"east": "none",
"north": "tall",
@@ -220665,7 +226864,7 @@
}
},
{
- "id": 17486,
+ "id": 17955,
"properties": {
"east": "none",
"north": "tall",
@@ -220676,7 +226875,7 @@
}
},
{
- "id": 17487,
+ "id": 17956,
"properties": {
"east": "none",
"north": "tall",
@@ -220687,7 +226886,7 @@
}
},
{
- "id": 17488,
+ "id": 17957,
"properties": {
"east": "none",
"north": "tall",
@@ -220698,7 +226897,7 @@
}
},
{
- "id": 17489,
+ "id": 17958,
"properties": {
"east": "none",
"north": "tall",
@@ -220709,7 +226908,7 @@
}
},
{
- "id": 17490,
+ "id": 17959,
"properties": {
"east": "none",
"north": "tall",
@@ -220720,7 +226919,7 @@
}
},
{
- "id": 17491,
+ "id": 17960,
"properties": {
"east": "none",
"north": "tall",
@@ -220731,7 +226930,7 @@
}
},
{
- "id": 17492,
+ "id": 17961,
"properties": {
"east": "none",
"north": "tall",
@@ -220742,7 +226941,7 @@
}
},
{
- "id": 17493,
+ "id": 17962,
"properties": {
"east": "none",
"north": "tall",
@@ -220753,7 +226952,7 @@
}
},
{
- "id": 17494,
+ "id": 17963,
"properties": {
"east": "none",
"north": "tall",
@@ -220764,7 +226963,7 @@
}
},
{
- "id": 17495,
+ "id": 17964,
"properties": {
"east": "none",
"north": "tall",
@@ -220775,7 +226974,7 @@
}
},
{
- "id": 17496,
+ "id": 17965,
"properties": {
"east": "none",
"north": "tall",
@@ -220786,7 +226985,7 @@
}
},
{
- "id": 17497,
+ "id": 17966,
"properties": {
"east": "none",
"north": "tall",
@@ -220797,7 +226996,7 @@
}
},
{
- "id": 17498,
+ "id": 17967,
"properties": {
"east": "none",
"north": "tall",
@@ -220808,7 +227007,7 @@
}
},
{
- "id": 17499,
+ "id": 17968,
"properties": {
"east": "none",
"north": "tall",
@@ -220819,7 +227018,7 @@
}
},
{
- "id": 17500,
+ "id": 17969,
"properties": {
"east": "none",
"north": "tall",
@@ -220830,7 +227029,7 @@
}
},
{
- "id": 17501,
+ "id": 17970,
"properties": {
"east": "none",
"north": "tall",
@@ -220841,7 +227040,7 @@
}
},
{
- "id": 17502,
+ "id": 17971,
"properties": {
"east": "none",
"north": "tall",
@@ -220852,7 +227051,7 @@
}
},
{
- "id": 17503,
+ "id": 17972,
"properties": {
"east": "none",
"north": "tall",
@@ -220863,7 +227062,7 @@
}
},
{
- "id": 17504,
+ "id": 17973,
"properties": {
"east": "none",
"north": "tall",
@@ -220874,7 +227073,7 @@
}
},
{
- "id": 17505,
+ "id": 17974,
"properties": {
"east": "none",
"north": "tall",
@@ -220885,7 +227084,7 @@
}
},
{
- "id": 17506,
+ "id": 17975,
"properties": {
"east": "none",
"north": "tall",
@@ -220896,7 +227095,7 @@
}
},
{
- "id": 17507,
+ "id": 17976,
"properties": {
"east": "none",
"north": "tall",
@@ -220907,7 +227106,7 @@
}
},
{
- "id": 17508,
+ "id": 17977,
"properties": {
"east": "low",
"north": "none",
@@ -220918,7 +227117,7 @@
}
},
{
- "id": 17509,
+ "id": 17978,
"properties": {
"east": "low",
"north": "none",
@@ -220929,7 +227128,7 @@
}
},
{
- "id": 17510,
+ "id": 17979,
"properties": {
"east": "low",
"north": "none",
@@ -220940,7 +227139,7 @@
}
},
{
- "id": 17511,
+ "id": 17980,
"properties": {
"east": "low",
"north": "none",
@@ -220951,7 +227150,7 @@
}
},
{
- "id": 17512,
+ "id": 17981,
"properties": {
"east": "low",
"north": "none",
@@ -220962,7 +227161,7 @@
}
},
{
- "id": 17513,
+ "id": 17982,
"properties": {
"east": "low",
"north": "none",
@@ -220973,7 +227172,7 @@
}
},
{
- "id": 17514,
+ "id": 17983,
"properties": {
"east": "low",
"north": "none",
@@ -220984,7 +227183,7 @@
}
},
{
- "id": 17515,
+ "id": 17984,
"properties": {
"east": "low",
"north": "none",
@@ -220995,7 +227194,7 @@
}
},
{
- "id": 17516,
+ "id": 17985,
"properties": {
"east": "low",
"north": "none",
@@ -221006,7 +227205,7 @@
}
},
{
- "id": 17517,
+ "id": 17986,
"properties": {
"east": "low",
"north": "none",
@@ -221017,7 +227216,7 @@
}
},
{
- "id": 17518,
+ "id": 17987,
"properties": {
"east": "low",
"north": "none",
@@ -221028,7 +227227,7 @@
}
},
{
- "id": 17519,
+ "id": 17988,
"properties": {
"east": "low",
"north": "none",
@@ -221039,7 +227238,7 @@
}
},
{
- "id": 17520,
+ "id": 17989,
"properties": {
"east": "low",
"north": "none",
@@ -221050,7 +227249,7 @@
}
},
{
- "id": 17521,
+ "id": 17990,
"properties": {
"east": "low",
"north": "none",
@@ -221061,7 +227260,7 @@
}
},
{
- "id": 17522,
+ "id": 17991,
"properties": {
"east": "low",
"north": "none",
@@ -221072,7 +227271,7 @@
}
},
{
- "id": 17523,
+ "id": 17992,
"properties": {
"east": "low",
"north": "none",
@@ -221083,7 +227282,7 @@
}
},
{
- "id": 17524,
+ "id": 17993,
"properties": {
"east": "low",
"north": "none",
@@ -221094,7 +227293,7 @@
}
},
{
- "id": 17525,
+ "id": 17994,
"properties": {
"east": "low",
"north": "none",
@@ -221105,7 +227304,7 @@
}
},
{
- "id": 17526,
+ "id": 17995,
"properties": {
"east": "low",
"north": "none",
@@ -221116,7 +227315,7 @@
}
},
{
- "id": 17527,
+ "id": 17996,
"properties": {
"east": "low",
"north": "none",
@@ -221127,7 +227326,7 @@
}
},
{
- "id": 17528,
+ "id": 17997,
"properties": {
"east": "low",
"north": "none",
@@ -221138,7 +227337,7 @@
}
},
{
- "id": 17529,
+ "id": 17998,
"properties": {
"east": "low",
"north": "none",
@@ -221149,7 +227348,7 @@
}
},
{
- "id": 17530,
+ "id": 17999,
"properties": {
"east": "low",
"north": "none",
@@ -221160,7 +227359,7 @@
}
},
{
- "id": 17531,
+ "id": 18000,
"properties": {
"east": "low",
"north": "none",
@@ -221171,7 +227370,7 @@
}
},
{
- "id": 17532,
+ "id": 18001,
"properties": {
"east": "low",
"north": "none",
@@ -221182,7 +227381,7 @@
}
},
{
- "id": 17533,
+ "id": 18002,
"properties": {
"east": "low",
"north": "none",
@@ -221193,7 +227392,7 @@
}
},
{
- "id": 17534,
+ "id": 18003,
"properties": {
"east": "low",
"north": "none",
@@ -221204,7 +227403,7 @@
}
},
{
- "id": 17535,
+ "id": 18004,
"properties": {
"east": "low",
"north": "none",
@@ -221215,7 +227414,7 @@
}
},
{
- "id": 17536,
+ "id": 18005,
"properties": {
"east": "low",
"north": "none",
@@ -221226,7 +227425,7 @@
}
},
{
- "id": 17537,
+ "id": 18006,
"properties": {
"east": "low",
"north": "none",
@@ -221237,7 +227436,7 @@
}
},
{
- "id": 17538,
+ "id": 18007,
"properties": {
"east": "low",
"north": "none",
@@ -221248,7 +227447,7 @@
}
},
{
- "id": 17539,
+ "id": 18008,
"properties": {
"east": "low",
"north": "none",
@@ -221259,7 +227458,7 @@
}
},
{
- "id": 17540,
+ "id": 18009,
"properties": {
"east": "low",
"north": "none",
@@ -221270,7 +227469,7 @@
}
},
{
- "id": 17541,
+ "id": 18010,
"properties": {
"east": "low",
"north": "none",
@@ -221281,7 +227480,7 @@
}
},
{
- "id": 17542,
+ "id": 18011,
"properties": {
"east": "low",
"north": "none",
@@ -221292,7 +227491,7 @@
}
},
{
- "id": 17543,
+ "id": 18012,
"properties": {
"east": "low",
"north": "none",
@@ -221303,7 +227502,7 @@
}
},
{
- "id": 17544,
+ "id": 18013,
"properties": {
"east": "low",
"north": "low",
@@ -221314,7 +227513,7 @@
}
},
{
- "id": 17545,
+ "id": 18014,
"properties": {
"east": "low",
"north": "low",
@@ -221325,7 +227524,7 @@
}
},
{
- "id": 17546,
+ "id": 18015,
"properties": {
"east": "low",
"north": "low",
@@ -221336,7 +227535,7 @@
}
},
{
- "id": 17547,
+ "id": 18016,
"properties": {
"east": "low",
"north": "low",
@@ -221347,7 +227546,7 @@
}
},
{
- "id": 17548,
+ "id": 18017,
"properties": {
"east": "low",
"north": "low",
@@ -221358,7 +227557,7 @@
}
},
{
- "id": 17549,
+ "id": 18018,
"properties": {
"east": "low",
"north": "low",
@@ -221369,7 +227568,7 @@
}
},
{
- "id": 17550,
+ "id": 18019,
"properties": {
"east": "low",
"north": "low",
@@ -221380,7 +227579,7 @@
}
},
{
- "id": 17551,
+ "id": 18020,
"properties": {
"east": "low",
"north": "low",
@@ -221391,7 +227590,7 @@
}
},
{
- "id": 17552,
+ "id": 18021,
"properties": {
"east": "low",
"north": "low",
@@ -221402,7 +227601,7 @@
}
},
{
- "id": 17553,
+ "id": 18022,
"properties": {
"east": "low",
"north": "low",
@@ -221413,7 +227612,7 @@
}
},
{
- "id": 17554,
+ "id": 18023,
"properties": {
"east": "low",
"north": "low",
@@ -221424,7 +227623,7 @@
}
},
{
- "id": 17555,
+ "id": 18024,
"properties": {
"east": "low",
"north": "low",
@@ -221435,7 +227634,7 @@
}
},
{
- "id": 17556,
+ "id": 18025,
"properties": {
"east": "low",
"north": "low",
@@ -221446,7 +227645,7 @@
}
},
{
- "id": 17557,
+ "id": 18026,
"properties": {
"east": "low",
"north": "low",
@@ -221457,7 +227656,7 @@
}
},
{
- "id": 17558,
+ "id": 18027,
"properties": {
"east": "low",
"north": "low",
@@ -221468,7 +227667,7 @@
}
},
{
- "id": 17559,
+ "id": 18028,
"properties": {
"east": "low",
"north": "low",
@@ -221479,7 +227678,7 @@
}
},
{
- "id": 17560,
+ "id": 18029,
"properties": {
"east": "low",
"north": "low",
@@ -221490,7 +227689,7 @@
}
},
{
- "id": 17561,
+ "id": 18030,
"properties": {
"east": "low",
"north": "low",
@@ -221501,7 +227700,7 @@
}
},
{
- "id": 17562,
+ "id": 18031,
"properties": {
"east": "low",
"north": "low",
@@ -221512,7 +227711,7 @@
}
},
{
- "id": 17563,
+ "id": 18032,
"properties": {
"east": "low",
"north": "low",
@@ -221523,7 +227722,7 @@
}
},
{
- "id": 17564,
+ "id": 18033,
"properties": {
"east": "low",
"north": "low",
@@ -221534,7 +227733,7 @@
}
},
{
- "id": 17565,
+ "id": 18034,
"properties": {
"east": "low",
"north": "low",
@@ -221545,7 +227744,7 @@
}
},
{
- "id": 17566,
+ "id": 18035,
"properties": {
"east": "low",
"north": "low",
@@ -221556,7 +227755,7 @@
}
},
{
- "id": 17567,
+ "id": 18036,
"properties": {
"east": "low",
"north": "low",
@@ -221567,7 +227766,7 @@
}
},
{
- "id": 17568,
+ "id": 18037,
"properties": {
"east": "low",
"north": "low",
@@ -221578,7 +227777,7 @@
}
},
{
- "id": 17569,
+ "id": 18038,
"properties": {
"east": "low",
"north": "low",
@@ -221589,7 +227788,7 @@
}
},
{
- "id": 17570,
+ "id": 18039,
"properties": {
"east": "low",
"north": "low",
@@ -221600,7 +227799,7 @@
}
},
{
- "id": 17571,
+ "id": 18040,
"properties": {
"east": "low",
"north": "low",
@@ -221611,7 +227810,7 @@
}
},
{
- "id": 17572,
+ "id": 18041,
"properties": {
"east": "low",
"north": "low",
@@ -221622,7 +227821,7 @@
}
},
{
- "id": 17573,
+ "id": 18042,
"properties": {
"east": "low",
"north": "low",
@@ -221633,7 +227832,7 @@
}
},
{
- "id": 17574,
+ "id": 18043,
"properties": {
"east": "low",
"north": "low",
@@ -221644,7 +227843,7 @@
}
},
{
- "id": 17575,
+ "id": 18044,
"properties": {
"east": "low",
"north": "low",
@@ -221655,7 +227854,7 @@
}
},
{
- "id": 17576,
+ "id": 18045,
"properties": {
"east": "low",
"north": "low",
@@ -221666,7 +227865,7 @@
}
},
{
- "id": 17577,
+ "id": 18046,
"properties": {
"east": "low",
"north": "low",
@@ -221677,7 +227876,7 @@
}
},
{
- "id": 17578,
+ "id": 18047,
"properties": {
"east": "low",
"north": "low",
@@ -221688,7 +227887,7 @@
}
},
{
- "id": 17579,
+ "id": 18048,
"properties": {
"east": "low",
"north": "low",
@@ -221699,7 +227898,7 @@
}
},
{
- "id": 17580,
+ "id": 18049,
"properties": {
"east": "low",
"north": "tall",
@@ -221710,7 +227909,7 @@
}
},
{
- "id": 17581,
+ "id": 18050,
"properties": {
"east": "low",
"north": "tall",
@@ -221721,7 +227920,7 @@
}
},
{
- "id": 17582,
+ "id": 18051,
"properties": {
"east": "low",
"north": "tall",
@@ -221732,7 +227931,7 @@
}
},
{
- "id": 17583,
+ "id": 18052,
"properties": {
"east": "low",
"north": "tall",
@@ -221743,7 +227942,7 @@
}
},
{
- "id": 17584,
+ "id": 18053,
"properties": {
"east": "low",
"north": "tall",
@@ -221754,7 +227953,7 @@
}
},
{
- "id": 17585,
+ "id": 18054,
"properties": {
"east": "low",
"north": "tall",
@@ -221765,7 +227964,7 @@
}
},
{
- "id": 17586,
+ "id": 18055,
"properties": {
"east": "low",
"north": "tall",
@@ -221776,7 +227975,7 @@
}
},
{
- "id": 17587,
+ "id": 18056,
"properties": {
"east": "low",
"north": "tall",
@@ -221787,7 +227986,7 @@
}
},
{
- "id": 17588,
+ "id": 18057,
"properties": {
"east": "low",
"north": "tall",
@@ -221798,7 +227997,7 @@
}
},
{
- "id": 17589,
+ "id": 18058,
"properties": {
"east": "low",
"north": "tall",
@@ -221809,7 +228008,7 @@
}
},
{
- "id": 17590,
+ "id": 18059,
"properties": {
"east": "low",
"north": "tall",
@@ -221820,7 +228019,7 @@
}
},
{
- "id": 17591,
+ "id": 18060,
"properties": {
"east": "low",
"north": "tall",
@@ -221831,7 +228030,7 @@
}
},
{
- "id": 17592,
+ "id": 18061,
"properties": {
"east": "low",
"north": "tall",
@@ -221842,7 +228041,7 @@
}
},
{
- "id": 17593,
+ "id": 18062,
"properties": {
"east": "low",
"north": "tall",
@@ -221853,7 +228052,7 @@
}
},
{
- "id": 17594,
+ "id": 18063,
"properties": {
"east": "low",
"north": "tall",
@@ -221864,7 +228063,7 @@
}
},
{
- "id": 17595,
+ "id": 18064,
"properties": {
"east": "low",
"north": "tall",
@@ -221875,7 +228074,7 @@
}
},
{
- "id": 17596,
+ "id": 18065,
"properties": {
"east": "low",
"north": "tall",
@@ -221886,7 +228085,7 @@
}
},
{
- "id": 17597,
+ "id": 18066,
"properties": {
"east": "low",
"north": "tall",
@@ -221897,7 +228096,7 @@
}
},
{
- "id": 17598,
+ "id": 18067,
"properties": {
"east": "low",
"north": "tall",
@@ -221908,7 +228107,7 @@
}
},
{
- "id": 17599,
+ "id": 18068,
"properties": {
"east": "low",
"north": "tall",
@@ -221919,7 +228118,7 @@
}
},
{
- "id": 17600,
+ "id": 18069,
"properties": {
"east": "low",
"north": "tall",
@@ -221930,7 +228129,7 @@
}
},
{
- "id": 17601,
+ "id": 18070,
"properties": {
"east": "low",
"north": "tall",
@@ -221941,7 +228140,7 @@
}
},
{
- "id": 17602,
+ "id": 18071,
"properties": {
"east": "low",
"north": "tall",
@@ -221952,7 +228151,7 @@
}
},
{
- "id": 17603,
+ "id": 18072,
"properties": {
"east": "low",
"north": "tall",
@@ -221963,7 +228162,7 @@
}
},
{
- "id": 17604,
+ "id": 18073,
"properties": {
"east": "low",
"north": "tall",
@@ -221974,7 +228173,7 @@
}
},
{
- "id": 17605,
+ "id": 18074,
"properties": {
"east": "low",
"north": "tall",
@@ -221985,7 +228184,7 @@
}
},
{
- "id": 17606,
+ "id": 18075,
"properties": {
"east": "low",
"north": "tall",
@@ -221996,7 +228195,7 @@
}
},
{
- "id": 17607,
+ "id": 18076,
"properties": {
"east": "low",
"north": "tall",
@@ -222007,7 +228206,7 @@
}
},
{
- "id": 17608,
+ "id": 18077,
"properties": {
"east": "low",
"north": "tall",
@@ -222018,7 +228217,7 @@
}
},
{
- "id": 17609,
+ "id": 18078,
"properties": {
"east": "low",
"north": "tall",
@@ -222029,7 +228228,7 @@
}
},
{
- "id": 17610,
+ "id": 18079,
"properties": {
"east": "low",
"north": "tall",
@@ -222040,7 +228239,7 @@
}
},
{
- "id": 17611,
+ "id": 18080,
"properties": {
"east": "low",
"north": "tall",
@@ -222051,7 +228250,7 @@
}
},
{
- "id": 17612,
+ "id": 18081,
"properties": {
"east": "low",
"north": "tall",
@@ -222062,7 +228261,7 @@
}
},
{
- "id": 17613,
+ "id": 18082,
"properties": {
"east": "low",
"north": "tall",
@@ -222073,7 +228272,7 @@
}
},
{
- "id": 17614,
+ "id": 18083,
"properties": {
"east": "low",
"north": "tall",
@@ -222084,7 +228283,7 @@
}
},
{
- "id": 17615,
+ "id": 18084,
"properties": {
"east": "low",
"north": "tall",
@@ -222095,7 +228294,7 @@
}
},
{
- "id": 17616,
+ "id": 18085,
"properties": {
"east": "tall",
"north": "none",
@@ -222106,7 +228305,7 @@
}
},
{
- "id": 17617,
+ "id": 18086,
"properties": {
"east": "tall",
"north": "none",
@@ -222117,7 +228316,7 @@
}
},
{
- "id": 17618,
+ "id": 18087,
"properties": {
"east": "tall",
"north": "none",
@@ -222128,7 +228327,7 @@
}
},
{
- "id": 17619,
+ "id": 18088,
"properties": {
"east": "tall",
"north": "none",
@@ -222139,7 +228338,7 @@
}
},
{
- "id": 17620,
+ "id": 18089,
"properties": {
"east": "tall",
"north": "none",
@@ -222150,7 +228349,7 @@
}
},
{
- "id": 17621,
+ "id": 18090,
"properties": {
"east": "tall",
"north": "none",
@@ -222161,7 +228360,7 @@
}
},
{
- "id": 17622,
+ "id": 18091,
"properties": {
"east": "tall",
"north": "none",
@@ -222172,7 +228371,7 @@
}
},
{
- "id": 17623,
+ "id": 18092,
"properties": {
"east": "tall",
"north": "none",
@@ -222183,7 +228382,7 @@
}
},
{
- "id": 17624,
+ "id": 18093,
"properties": {
"east": "tall",
"north": "none",
@@ -222194,7 +228393,7 @@
}
},
{
- "id": 17625,
+ "id": 18094,
"properties": {
"east": "tall",
"north": "none",
@@ -222205,7 +228404,7 @@
}
},
{
- "id": 17626,
+ "id": 18095,
"properties": {
"east": "tall",
"north": "none",
@@ -222216,7 +228415,7 @@
}
},
{
- "id": 17627,
+ "id": 18096,
"properties": {
"east": "tall",
"north": "none",
@@ -222227,7 +228426,7 @@
}
},
{
- "id": 17628,
+ "id": 18097,
"properties": {
"east": "tall",
"north": "none",
@@ -222238,7 +228437,7 @@
}
},
{
- "id": 17629,
+ "id": 18098,
"properties": {
"east": "tall",
"north": "none",
@@ -222249,7 +228448,7 @@
}
},
{
- "id": 17630,
+ "id": 18099,
"properties": {
"east": "tall",
"north": "none",
@@ -222260,7 +228459,7 @@
}
},
{
- "id": 17631,
+ "id": 18100,
"properties": {
"east": "tall",
"north": "none",
@@ -222271,7 +228470,7 @@
}
},
{
- "id": 17632,
+ "id": 18101,
"properties": {
"east": "tall",
"north": "none",
@@ -222282,7 +228481,7 @@
}
},
{
- "id": 17633,
+ "id": 18102,
"properties": {
"east": "tall",
"north": "none",
@@ -222293,7 +228492,7 @@
}
},
{
- "id": 17634,
+ "id": 18103,
"properties": {
"east": "tall",
"north": "none",
@@ -222304,7 +228503,7 @@
}
},
{
- "id": 17635,
+ "id": 18104,
"properties": {
"east": "tall",
"north": "none",
@@ -222315,7 +228514,7 @@
}
},
{
- "id": 17636,
+ "id": 18105,
"properties": {
"east": "tall",
"north": "none",
@@ -222326,7 +228525,7 @@
}
},
{
- "id": 17637,
+ "id": 18106,
"properties": {
"east": "tall",
"north": "none",
@@ -222337,7 +228536,7 @@
}
},
{
- "id": 17638,
+ "id": 18107,
"properties": {
"east": "tall",
"north": "none",
@@ -222348,7 +228547,7 @@
}
},
{
- "id": 17639,
+ "id": 18108,
"properties": {
"east": "tall",
"north": "none",
@@ -222359,7 +228558,7 @@
}
},
{
- "id": 17640,
+ "id": 18109,
"properties": {
"east": "tall",
"north": "none",
@@ -222370,7 +228569,7 @@
}
},
{
- "id": 17641,
+ "id": 18110,
"properties": {
"east": "tall",
"north": "none",
@@ -222381,7 +228580,7 @@
}
},
{
- "id": 17642,
+ "id": 18111,
"properties": {
"east": "tall",
"north": "none",
@@ -222392,7 +228591,7 @@
}
},
{
- "id": 17643,
+ "id": 18112,
"properties": {
"east": "tall",
"north": "none",
@@ -222403,7 +228602,7 @@
}
},
{
- "id": 17644,
+ "id": 18113,
"properties": {
"east": "tall",
"north": "none",
@@ -222414,7 +228613,7 @@
}
},
{
- "id": 17645,
+ "id": 18114,
"properties": {
"east": "tall",
"north": "none",
@@ -222425,7 +228624,7 @@
}
},
{
- "id": 17646,
+ "id": 18115,
"properties": {
"east": "tall",
"north": "none",
@@ -222436,7 +228635,7 @@
}
},
{
- "id": 17647,
+ "id": 18116,
"properties": {
"east": "tall",
"north": "none",
@@ -222447,7 +228646,7 @@
}
},
{
- "id": 17648,
+ "id": 18117,
"properties": {
"east": "tall",
"north": "none",
@@ -222458,7 +228657,7 @@
}
},
{
- "id": 17649,
+ "id": 18118,
"properties": {
"east": "tall",
"north": "none",
@@ -222469,7 +228668,7 @@
}
},
{
- "id": 17650,
+ "id": 18119,
"properties": {
"east": "tall",
"north": "none",
@@ -222480,7 +228679,7 @@
}
},
{
- "id": 17651,
+ "id": 18120,
"properties": {
"east": "tall",
"north": "none",
@@ -222491,7 +228690,7 @@
}
},
{
- "id": 17652,
+ "id": 18121,
"properties": {
"east": "tall",
"north": "low",
@@ -222502,7 +228701,7 @@
}
},
{
- "id": 17653,
+ "id": 18122,
"properties": {
"east": "tall",
"north": "low",
@@ -222513,7 +228712,7 @@
}
},
{
- "id": 17654,
+ "id": 18123,
"properties": {
"east": "tall",
"north": "low",
@@ -222524,7 +228723,7 @@
}
},
{
- "id": 17655,
+ "id": 18124,
"properties": {
"east": "tall",
"north": "low",
@@ -222535,7 +228734,7 @@
}
},
{
- "id": 17656,
+ "id": 18125,
"properties": {
"east": "tall",
"north": "low",
@@ -222546,7 +228745,7 @@
}
},
{
- "id": 17657,
+ "id": 18126,
"properties": {
"east": "tall",
"north": "low",
@@ -222557,7 +228756,7 @@
}
},
{
- "id": 17658,
+ "id": 18127,
"properties": {
"east": "tall",
"north": "low",
@@ -222568,7 +228767,7 @@
}
},
{
- "id": 17659,
+ "id": 18128,
"properties": {
"east": "tall",
"north": "low",
@@ -222579,7 +228778,7 @@
}
},
{
- "id": 17660,
+ "id": 18129,
"properties": {
"east": "tall",
"north": "low",
@@ -222590,7 +228789,7 @@
}
},
{
- "id": 17661,
+ "id": 18130,
"properties": {
"east": "tall",
"north": "low",
@@ -222601,7 +228800,7 @@
}
},
{
- "id": 17662,
+ "id": 18131,
"properties": {
"east": "tall",
"north": "low",
@@ -222612,7 +228811,7 @@
}
},
{
- "id": 17663,
+ "id": 18132,
"properties": {
"east": "tall",
"north": "low",
@@ -222623,7 +228822,7 @@
}
},
{
- "id": 17664,
+ "id": 18133,
"properties": {
"east": "tall",
"north": "low",
@@ -222634,7 +228833,7 @@
}
},
{
- "id": 17665,
+ "id": 18134,
"properties": {
"east": "tall",
"north": "low",
@@ -222645,7 +228844,7 @@
}
},
{
- "id": 17666,
+ "id": 18135,
"properties": {
"east": "tall",
"north": "low",
@@ -222656,7 +228855,7 @@
}
},
{
- "id": 17667,
+ "id": 18136,
"properties": {
"east": "tall",
"north": "low",
@@ -222667,7 +228866,7 @@
}
},
{
- "id": 17668,
+ "id": 18137,
"properties": {
"east": "tall",
"north": "low",
@@ -222678,7 +228877,7 @@
}
},
{
- "id": 17669,
+ "id": 18138,
"properties": {
"east": "tall",
"north": "low",
@@ -222689,7 +228888,7 @@
}
},
{
- "id": 17670,
+ "id": 18139,
"properties": {
"east": "tall",
"north": "low",
@@ -222700,7 +228899,7 @@
}
},
{
- "id": 17671,
+ "id": 18140,
"properties": {
"east": "tall",
"north": "low",
@@ -222711,7 +228910,7 @@
}
},
{
- "id": 17672,
+ "id": 18141,
"properties": {
"east": "tall",
"north": "low",
@@ -222722,7 +228921,7 @@
}
},
{
- "id": 17673,
+ "id": 18142,
"properties": {
"east": "tall",
"north": "low",
@@ -222733,7 +228932,7 @@
}
},
{
- "id": 17674,
+ "id": 18143,
"properties": {
"east": "tall",
"north": "low",
@@ -222744,7 +228943,7 @@
}
},
{
- "id": 17675,
+ "id": 18144,
"properties": {
"east": "tall",
"north": "low",
@@ -222755,7 +228954,7 @@
}
},
{
- "id": 17676,
+ "id": 18145,
"properties": {
"east": "tall",
"north": "low",
@@ -222766,7 +228965,7 @@
}
},
{
- "id": 17677,
+ "id": 18146,
"properties": {
"east": "tall",
"north": "low",
@@ -222777,7 +228976,7 @@
}
},
{
- "id": 17678,
+ "id": 18147,
"properties": {
"east": "tall",
"north": "low",
@@ -222788,7 +228987,7 @@
}
},
{
- "id": 17679,
+ "id": 18148,
"properties": {
"east": "tall",
"north": "low",
@@ -222799,7 +228998,7 @@
}
},
{
- "id": 17680,
+ "id": 18149,
"properties": {
"east": "tall",
"north": "low",
@@ -222810,7 +229009,7 @@
}
},
{
- "id": 17681,
+ "id": 18150,
"properties": {
"east": "tall",
"north": "low",
@@ -222821,7 +229020,7 @@
}
},
{
- "id": 17682,
+ "id": 18151,
"properties": {
"east": "tall",
"north": "low",
@@ -222832,7 +229031,7 @@
}
},
{
- "id": 17683,
+ "id": 18152,
"properties": {
"east": "tall",
"north": "low",
@@ -222843,7 +229042,7 @@
}
},
{
- "id": 17684,
+ "id": 18153,
"properties": {
"east": "tall",
"north": "low",
@@ -222854,7 +229053,7 @@
}
},
{
- "id": 17685,
+ "id": 18154,
"properties": {
"east": "tall",
"north": "low",
@@ -222865,7 +229064,7 @@
}
},
{
- "id": 17686,
+ "id": 18155,
"properties": {
"east": "tall",
"north": "low",
@@ -222876,7 +229075,7 @@
}
},
{
- "id": 17687,
+ "id": 18156,
"properties": {
"east": "tall",
"north": "low",
@@ -222887,7 +229086,7 @@
}
},
{
- "id": 17688,
+ "id": 18157,
"properties": {
"east": "tall",
"north": "tall",
@@ -222898,7 +229097,7 @@
}
},
{
- "id": 17689,
+ "id": 18158,
"properties": {
"east": "tall",
"north": "tall",
@@ -222909,7 +229108,7 @@
}
},
{
- "id": 17690,
+ "id": 18159,
"properties": {
"east": "tall",
"north": "tall",
@@ -222920,7 +229119,7 @@
}
},
{
- "id": 17691,
+ "id": 18160,
"properties": {
"east": "tall",
"north": "tall",
@@ -222931,7 +229130,7 @@
}
},
{
- "id": 17692,
+ "id": 18161,
"properties": {
"east": "tall",
"north": "tall",
@@ -222942,7 +229141,7 @@
}
},
{
- "id": 17693,
+ "id": 18162,
"properties": {
"east": "tall",
"north": "tall",
@@ -222953,7 +229152,7 @@
}
},
{
- "id": 17694,
+ "id": 18163,
"properties": {
"east": "tall",
"north": "tall",
@@ -222964,7 +229163,7 @@
}
},
{
- "id": 17695,
+ "id": 18164,
"properties": {
"east": "tall",
"north": "tall",
@@ -222975,7 +229174,7 @@
}
},
{
- "id": 17696,
+ "id": 18165,
"properties": {
"east": "tall",
"north": "tall",
@@ -222986,7 +229185,7 @@
}
},
{
- "id": 17697,
+ "id": 18166,
"properties": {
"east": "tall",
"north": "tall",
@@ -222997,7 +229196,7 @@
}
},
{
- "id": 17698,
+ "id": 18167,
"properties": {
"east": "tall",
"north": "tall",
@@ -223008,7 +229207,7 @@
}
},
{
- "id": 17699,
+ "id": 18168,
"properties": {
"east": "tall",
"north": "tall",
@@ -223019,7 +229218,7 @@
}
},
{
- "id": 17700,
+ "id": 18169,
"properties": {
"east": "tall",
"north": "tall",
@@ -223030,7 +229229,7 @@
}
},
{
- "id": 17701,
+ "id": 18170,
"properties": {
"east": "tall",
"north": "tall",
@@ -223041,7 +229240,7 @@
}
},
{
- "id": 17702,
+ "id": 18171,
"properties": {
"east": "tall",
"north": "tall",
@@ -223052,7 +229251,7 @@
}
},
{
- "id": 17703,
+ "id": 18172,
"properties": {
"east": "tall",
"north": "tall",
@@ -223063,7 +229262,7 @@
}
},
{
- "id": 17704,
+ "id": 18173,
"properties": {
"east": "tall",
"north": "tall",
@@ -223074,7 +229273,7 @@
}
},
{
- "id": 17705,
+ "id": 18174,
"properties": {
"east": "tall",
"north": "tall",
@@ -223085,7 +229284,7 @@
}
},
{
- "id": 17706,
+ "id": 18175,
"properties": {
"east": "tall",
"north": "tall",
@@ -223096,7 +229295,7 @@
}
},
{
- "id": 17707,
+ "id": 18176,
"properties": {
"east": "tall",
"north": "tall",
@@ -223107,7 +229306,7 @@
}
},
{
- "id": 17708,
+ "id": 18177,
"properties": {
"east": "tall",
"north": "tall",
@@ -223118,7 +229317,7 @@
}
},
{
- "id": 17709,
+ "id": 18178,
"properties": {
"east": "tall",
"north": "tall",
@@ -223129,7 +229328,7 @@
}
},
{
- "id": 17710,
+ "id": 18179,
"properties": {
"east": "tall",
"north": "tall",
@@ -223140,7 +229339,7 @@
}
},
{
- "id": 17711,
+ "id": 18180,
"properties": {
"east": "tall",
"north": "tall",
@@ -223151,7 +229350,7 @@
}
},
{
- "id": 17712,
+ "id": 18181,
"properties": {
"east": "tall",
"north": "tall",
@@ -223162,7 +229361,7 @@
}
},
{
- "id": 17713,
+ "id": 18182,
"properties": {
"east": "tall",
"north": "tall",
@@ -223173,7 +229372,7 @@
}
},
{
- "id": 17714,
+ "id": 18183,
"properties": {
"east": "tall",
"north": "tall",
@@ -223184,7 +229383,7 @@
}
},
{
- "id": 17715,
+ "id": 18184,
"properties": {
"east": "tall",
"north": "tall",
@@ -223195,7 +229394,7 @@
}
},
{
- "id": 17716,
+ "id": 18185,
"properties": {
"east": "tall",
"north": "tall",
@@ -223206,7 +229405,7 @@
}
},
{
- "id": 17717,
+ "id": 18186,
"properties": {
"east": "tall",
"north": "tall",
@@ -223217,7 +229416,7 @@
}
},
{
- "id": 17718,
+ "id": 18187,
"properties": {
"east": "tall",
"north": "tall",
@@ -223228,7 +229427,7 @@
}
},
{
- "id": 17719,
+ "id": 18188,
"properties": {
"east": "tall",
"north": "tall",
@@ -223239,7 +229438,7 @@
}
},
{
- "id": 17720,
+ "id": 18189,
"properties": {
"east": "tall",
"north": "tall",
@@ -223250,7 +229449,7 @@
}
},
{
- "id": 17721,
+ "id": 18190,
"properties": {
"east": "tall",
"north": "tall",
@@ -223261,7 +229460,7 @@
}
},
{
- "id": 17722,
+ "id": 18191,
"properties": {
"east": "tall",
"north": "tall",
@@ -223272,7 +229471,7 @@
}
},
{
- "id": 17723,
+ "id": 18192,
"properties": {
"east": "tall",
"north": "tall",
@@ -223311,7 +229510,7 @@
},
"states": [
{
- "id": 18372,
+ "id": 18841,
"properties": {
"bottom": "true",
"distance": "0",
@@ -223319,7 +229518,7 @@
}
},
{
- "id": 18373,
+ "id": 18842,
"properties": {
"bottom": "true",
"distance": "0",
@@ -223327,7 +229526,7 @@
}
},
{
- "id": 18374,
+ "id": 18843,
"properties": {
"bottom": "true",
"distance": "1",
@@ -223335,7 +229534,7 @@
}
},
{
- "id": 18375,
+ "id": 18844,
"properties": {
"bottom": "true",
"distance": "1",
@@ -223343,7 +229542,7 @@
}
},
{
- "id": 18376,
+ "id": 18845,
"properties": {
"bottom": "true",
"distance": "2",
@@ -223351,7 +229550,7 @@
}
},
{
- "id": 18377,
+ "id": 18846,
"properties": {
"bottom": "true",
"distance": "2",
@@ -223359,7 +229558,7 @@
}
},
{
- "id": 18378,
+ "id": 18847,
"properties": {
"bottom": "true",
"distance": "3",
@@ -223367,7 +229566,7 @@
}
},
{
- "id": 18379,
+ "id": 18848,
"properties": {
"bottom": "true",
"distance": "3",
@@ -223375,7 +229574,7 @@
}
},
{
- "id": 18380,
+ "id": 18849,
"properties": {
"bottom": "true",
"distance": "4",
@@ -223383,7 +229582,7 @@
}
},
{
- "id": 18381,
+ "id": 18850,
"properties": {
"bottom": "true",
"distance": "4",
@@ -223391,7 +229590,7 @@
}
},
{
- "id": 18382,
+ "id": 18851,
"properties": {
"bottom": "true",
"distance": "5",
@@ -223399,7 +229598,7 @@
}
},
{
- "id": 18383,
+ "id": 18852,
"properties": {
"bottom": "true",
"distance": "5",
@@ -223407,7 +229606,7 @@
}
},
{
- "id": 18384,
+ "id": 18853,
"properties": {
"bottom": "true",
"distance": "6",
@@ -223415,7 +229614,7 @@
}
},
{
- "id": 18385,
+ "id": 18854,
"properties": {
"bottom": "true",
"distance": "6",
@@ -223423,7 +229622,7 @@
}
},
{
- "id": 18386,
+ "id": 18855,
"properties": {
"bottom": "true",
"distance": "7",
@@ -223431,7 +229630,7 @@
}
},
{
- "id": 18387,
+ "id": 18856,
"properties": {
"bottom": "true",
"distance": "7",
@@ -223439,7 +229638,7 @@
}
},
{
- "id": 18388,
+ "id": 18857,
"properties": {
"bottom": "false",
"distance": "0",
@@ -223447,7 +229646,7 @@
}
},
{
- "id": 18389,
+ "id": 18858,
"properties": {
"bottom": "false",
"distance": "0",
@@ -223455,7 +229654,7 @@
}
},
{
- "id": 18390,
+ "id": 18859,
"properties": {
"bottom": "false",
"distance": "1",
@@ -223463,7 +229662,7 @@
}
},
{
- "id": 18391,
+ "id": 18860,
"properties": {
"bottom": "false",
"distance": "1",
@@ -223471,7 +229670,7 @@
}
},
{
- "id": 18392,
+ "id": 18861,
"properties": {
"bottom": "false",
"distance": "2",
@@ -223479,7 +229678,7 @@
}
},
{
- "id": 18393,
+ "id": 18862,
"properties": {
"bottom": "false",
"distance": "2",
@@ -223487,7 +229686,7 @@
}
},
{
- "id": 18394,
+ "id": 18863,
"properties": {
"bottom": "false",
"distance": "3",
@@ -223495,7 +229694,7 @@
}
},
{
- "id": 18395,
+ "id": 18864,
"properties": {
"bottom": "false",
"distance": "3",
@@ -223503,7 +229702,7 @@
}
},
{
- "id": 18396,
+ "id": 18865,
"properties": {
"bottom": "false",
"distance": "4",
@@ -223511,7 +229710,7 @@
}
},
{
- "id": 18397,
+ "id": 18866,
"properties": {
"bottom": "false",
"distance": "4",
@@ -223519,7 +229718,7 @@
}
},
{
- "id": 18398,
+ "id": 18867,
"properties": {
"bottom": "false",
"distance": "5",
@@ -223527,7 +229726,7 @@
}
},
{
- "id": 18399,
+ "id": 18868,
"properties": {
"bottom": "false",
"distance": "5",
@@ -223535,7 +229734,7 @@
}
},
{
- "id": 18400,
+ "id": 18869,
"properties": {
"bottom": "false",
"distance": "6",
@@ -223543,7 +229742,7 @@
}
},
{
- "id": 18401,
+ "id": 18870,
"properties": {
"bottom": "false",
"distance": "6",
@@ -223551,7 +229750,7 @@
}
},
{
- "id": 18402,
+ "id": 18871,
"properties": {
"bottom": "false",
"distance": "7",
@@ -223560,7 +229759,7 @@
},
{
"default": true,
- "id": 18403,
+ "id": 18872,
"properties": {
"bottom": "false",
"distance": "7",
@@ -223577,7 +229776,7 @@
"states": [
{
"default": true,
- "id": 22799
+ "id": 23268
}
]
},
@@ -223594,14 +229793,14 @@
},
"states": [
{
- "id": 22928,
+ "id": 23397,
"properties": {
"bloom": "true"
}
},
{
"default": true,
- "id": 22929,
+ "id": 23398,
"properties": {
"bloom": "false"
}
@@ -223644,7 +229843,7 @@
},
"states": [
{
- "id": 22319,
+ "id": 22788,
"properties": {
"power": "0",
"sculk_sensor_phase": "inactive",
@@ -223653,7 +229852,7 @@
},
{
"default": true,
- "id": 22320,
+ "id": 22789,
"properties": {
"power": "0",
"sculk_sensor_phase": "inactive",
@@ -223661,7 +229860,7 @@
}
},
{
- "id": 22321,
+ "id": 22790,
"properties": {
"power": "0",
"sculk_sensor_phase": "active",
@@ -223669,7 +229868,7 @@
}
},
{
- "id": 22322,
+ "id": 22791,
"properties": {
"power": "0",
"sculk_sensor_phase": "active",
@@ -223677,7 +229876,7 @@
}
},
{
- "id": 22323,
+ "id": 22792,
"properties": {
"power": "0",
"sculk_sensor_phase": "cooldown",
@@ -223685,7 +229884,7 @@
}
},
{
- "id": 22324,
+ "id": 22793,
"properties": {
"power": "0",
"sculk_sensor_phase": "cooldown",
@@ -223693,7 +229892,7 @@
}
},
{
- "id": 22325,
+ "id": 22794,
"properties": {
"power": "1",
"sculk_sensor_phase": "inactive",
@@ -223701,7 +229900,7 @@
}
},
{
- "id": 22326,
+ "id": 22795,
"properties": {
"power": "1",
"sculk_sensor_phase": "inactive",
@@ -223709,7 +229908,7 @@
}
},
{
- "id": 22327,
+ "id": 22796,
"properties": {
"power": "1",
"sculk_sensor_phase": "active",
@@ -223717,7 +229916,7 @@
}
},
{
- "id": 22328,
+ "id": 22797,
"properties": {
"power": "1",
"sculk_sensor_phase": "active",
@@ -223725,7 +229924,7 @@
}
},
{
- "id": 22329,
+ "id": 22798,
"properties": {
"power": "1",
"sculk_sensor_phase": "cooldown",
@@ -223733,7 +229932,7 @@
}
},
{
- "id": 22330,
+ "id": 22799,
"properties": {
"power": "1",
"sculk_sensor_phase": "cooldown",
@@ -223741,7 +229940,7 @@
}
},
{
- "id": 22331,
+ "id": 22800,
"properties": {
"power": "2",
"sculk_sensor_phase": "inactive",
@@ -223749,7 +229948,7 @@
}
},
{
- "id": 22332,
+ "id": 22801,
"properties": {
"power": "2",
"sculk_sensor_phase": "inactive",
@@ -223757,7 +229956,7 @@
}
},
{
- "id": 22333,
+ "id": 22802,
"properties": {
"power": "2",
"sculk_sensor_phase": "active",
@@ -223765,7 +229964,7 @@
}
},
{
- "id": 22334,
+ "id": 22803,
"properties": {
"power": "2",
"sculk_sensor_phase": "active",
@@ -223773,7 +229972,7 @@
}
},
{
- "id": 22335,
+ "id": 22804,
"properties": {
"power": "2",
"sculk_sensor_phase": "cooldown",
@@ -223781,7 +229980,7 @@
}
},
{
- "id": 22336,
+ "id": 22805,
"properties": {
"power": "2",
"sculk_sensor_phase": "cooldown",
@@ -223789,7 +229988,7 @@
}
},
{
- "id": 22337,
+ "id": 22806,
"properties": {
"power": "3",
"sculk_sensor_phase": "inactive",
@@ -223797,7 +229996,7 @@
}
},
{
- "id": 22338,
+ "id": 22807,
"properties": {
"power": "3",
"sculk_sensor_phase": "inactive",
@@ -223805,7 +230004,7 @@
}
},
{
- "id": 22339,
+ "id": 22808,
"properties": {
"power": "3",
"sculk_sensor_phase": "active",
@@ -223813,7 +230012,7 @@
}
},
{
- "id": 22340,
+ "id": 22809,
"properties": {
"power": "3",
"sculk_sensor_phase": "active",
@@ -223821,7 +230020,7 @@
}
},
{
- "id": 22341,
+ "id": 22810,
"properties": {
"power": "3",
"sculk_sensor_phase": "cooldown",
@@ -223829,7 +230028,7 @@
}
},
{
- "id": 22342,
+ "id": 22811,
"properties": {
"power": "3",
"sculk_sensor_phase": "cooldown",
@@ -223837,7 +230036,7 @@
}
},
{
- "id": 22343,
+ "id": 22812,
"properties": {
"power": "4",
"sculk_sensor_phase": "inactive",
@@ -223845,7 +230044,7 @@
}
},
{
- "id": 22344,
+ "id": 22813,
"properties": {
"power": "4",
"sculk_sensor_phase": "inactive",
@@ -223853,7 +230052,7 @@
}
},
{
- "id": 22345,
+ "id": 22814,
"properties": {
"power": "4",
"sculk_sensor_phase": "active",
@@ -223861,7 +230060,7 @@
}
},
{
- "id": 22346,
+ "id": 22815,
"properties": {
"power": "4",
"sculk_sensor_phase": "active",
@@ -223869,7 +230068,7 @@
}
},
{
- "id": 22347,
+ "id": 22816,
"properties": {
"power": "4",
"sculk_sensor_phase": "cooldown",
@@ -223877,7 +230076,7 @@
}
},
{
- "id": 22348,
+ "id": 22817,
"properties": {
"power": "4",
"sculk_sensor_phase": "cooldown",
@@ -223885,7 +230084,7 @@
}
},
{
- "id": 22349,
+ "id": 22818,
"properties": {
"power": "5",
"sculk_sensor_phase": "inactive",
@@ -223893,7 +230092,7 @@
}
},
{
- "id": 22350,
+ "id": 22819,
"properties": {
"power": "5",
"sculk_sensor_phase": "inactive",
@@ -223901,7 +230100,7 @@
}
},
{
- "id": 22351,
+ "id": 22820,
"properties": {
"power": "5",
"sculk_sensor_phase": "active",
@@ -223909,7 +230108,7 @@
}
},
{
- "id": 22352,
+ "id": 22821,
"properties": {
"power": "5",
"sculk_sensor_phase": "active",
@@ -223917,7 +230116,7 @@
}
},
{
- "id": 22353,
+ "id": 22822,
"properties": {
"power": "5",
"sculk_sensor_phase": "cooldown",
@@ -223925,7 +230124,7 @@
}
},
{
- "id": 22354,
+ "id": 22823,
"properties": {
"power": "5",
"sculk_sensor_phase": "cooldown",
@@ -223933,7 +230132,7 @@
}
},
{
- "id": 22355,
+ "id": 22824,
"properties": {
"power": "6",
"sculk_sensor_phase": "inactive",
@@ -223941,7 +230140,7 @@
}
},
{
- "id": 22356,
+ "id": 22825,
"properties": {
"power": "6",
"sculk_sensor_phase": "inactive",
@@ -223949,7 +230148,7 @@
}
},
{
- "id": 22357,
+ "id": 22826,
"properties": {
"power": "6",
"sculk_sensor_phase": "active",
@@ -223957,7 +230156,7 @@
}
},
{
- "id": 22358,
+ "id": 22827,
"properties": {
"power": "6",
"sculk_sensor_phase": "active",
@@ -223965,7 +230164,7 @@
}
},
{
- "id": 22359,
+ "id": 22828,
"properties": {
"power": "6",
"sculk_sensor_phase": "cooldown",
@@ -223973,7 +230172,7 @@
}
},
{
- "id": 22360,
+ "id": 22829,
"properties": {
"power": "6",
"sculk_sensor_phase": "cooldown",
@@ -223981,7 +230180,7 @@
}
},
{
- "id": 22361,
+ "id": 22830,
"properties": {
"power": "7",
"sculk_sensor_phase": "inactive",
@@ -223989,7 +230188,7 @@
}
},
{
- "id": 22362,
+ "id": 22831,
"properties": {
"power": "7",
"sculk_sensor_phase": "inactive",
@@ -223997,7 +230196,7 @@
}
},
{
- "id": 22363,
+ "id": 22832,
"properties": {
"power": "7",
"sculk_sensor_phase": "active",
@@ -224005,7 +230204,7 @@
}
},
{
- "id": 22364,
+ "id": 22833,
"properties": {
"power": "7",
"sculk_sensor_phase": "active",
@@ -224013,7 +230212,7 @@
}
},
{
- "id": 22365,
+ "id": 22834,
"properties": {
"power": "7",
"sculk_sensor_phase": "cooldown",
@@ -224021,7 +230220,7 @@
}
},
{
- "id": 22366,
+ "id": 22835,
"properties": {
"power": "7",
"sculk_sensor_phase": "cooldown",
@@ -224029,7 +230228,7 @@
}
},
{
- "id": 22367,
+ "id": 22836,
"properties": {
"power": "8",
"sculk_sensor_phase": "inactive",
@@ -224037,7 +230236,7 @@
}
},
{
- "id": 22368,
+ "id": 22837,
"properties": {
"power": "8",
"sculk_sensor_phase": "inactive",
@@ -224045,7 +230244,7 @@
}
},
{
- "id": 22369,
+ "id": 22838,
"properties": {
"power": "8",
"sculk_sensor_phase": "active",
@@ -224053,7 +230252,7 @@
}
},
{
- "id": 22370,
+ "id": 22839,
"properties": {
"power": "8",
"sculk_sensor_phase": "active",
@@ -224061,7 +230260,7 @@
}
},
{
- "id": 22371,
+ "id": 22840,
"properties": {
"power": "8",
"sculk_sensor_phase": "cooldown",
@@ -224069,7 +230268,7 @@
}
},
{
- "id": 22372,
+ "id": 22841,
"properties": {
"power": "8",
"sculk_sensor_phase": "cooldown",
@@ -224077,7 +230276,7 @@
}
},
{
- "id": 22373,
+ "id": 22842,
"properties": {
"power": "9",
"sculk_sensor_phase": "inactive",
@@ -224085,7 +230284,7 @@
}
},
{
- "id": 22374,
+ "id": 22843,
"properties": {
"power": "9",
"sculk_sensor_phase": "inactive",
@@ -224093,7 +230292,7 @@
}
},
{
- "id": 22375,
+ "id": 22844,
"properties": {
"power": "9",
"sculk_sensor_phase": "active",
@@ -224101,7 +230300,7 @@
}
},
{
- "id": 22376,
+ "id": 22845,
"properties": {
"power": "9",
"sculk_sensor_phase": "active",
@@ -224109,7 +230308,7 @@
}
},
{
- "id": 22377,
+ "id": 22846,
"properties": {
"power": "9",
"sculk_sensor_phase": "cooldown",
@@ -224117,7 +230316,7 @@
}
},
{
- "id": 22378,
+ "id": 22847,
"properties": {
"power": "9",
"sculk_sensor_phase": "cooldown",
@@ -224125,7 +230324,7 @@
}
},
{
- "id": 22379,
+ "id": 22848,
"properties": {
"power": "10",
"sculk_sensor_phase": "inactive",
@@ -224133,7 +230332,7 @@
}
},
{
- "id": 22380,
+ "id": 22849,
"properties": {
"power": "10",
"sculk_sensor_phase": "inactive",
@@ -224141,7 +230340,7 @@
}
},
{
- "id": 22381,
+ "id": 22850,
"properties": {
"power": "10",
"sculk_sensor_phase": "active",
@@ -224149,7 +230348,7 @@
}
},
{
- "id": 22382,
+ "id": 22851,
"properties": {
"power": "10",
"sculk_sensor_phase": "active",
@@ -224157,7 +230356,7 @@
}
},
{
- "id": 22383,
+ "id": 22852,
"properties": {
"power": "10",
"sculk_sensor_phase": "cooldown",
@@ -224165,7 +230364,7 @@
}
},
{
- "id": 22384,
+ "id": 22853,
"properties": {
"power": "10",
"sculk_sensor_phase": "cooldown",
@@ -224173,7 +230372,7 @@
}
},
{
- "id": 22385,
+ "id": 22854,
"properties": {
"power": "11",
"sculk_sensor_phase": "inactive",
@@ -224181,7 +230380,7 @@
}
},
{
- "id": 22386,
+ "id": 22855,
"properties": {
"power": "11",
"sculk_sensor_phase": "inactive",
@@ -224189,7 +230388,7 @@
}
},
{
- "id": 22387,
+ "id": 22856,
"properties": {
"power": "11",
"sculk_sensor_phase": "active",
@@ -224197,7 +230396,7 @@
}
},
{
- "id": 22388,
+ "id": 22857,
"properties": {
"power": "11",
"sculk_sensor_phase": "active",
@@ -224205,7 +230404,7 @@
}
},
{
- "id": 22389,
+ "id": 22858,
"properties": {
"power": "11",
"sculk_sensor_phase": "cooldown",
@@ -224213,7 +230412,7 @@
}
},
{
- "id": 22390,
+ "id": 22859,
"properties": {
"power": "11",
"sculk_sensor_phase": "cooldown",
@@ -224221,7 +230420,7 @@
}
},
{
- "id": 22391,
+ "id": 22860,
"properties": {
"power": "12",
"sculk_sensor_phase": "inactive",
@@ -224229,7 +230428,7 @@
}
},
{
- "id": 22392,
+ "id": 22861,
"properties": {
"power": "12",
"sculk_sensor_phase": "inactive",
@@ -224237,7 +230436,7 @@
}
},
{
- "id": 22393,
+ "id": 22862,
"properties": {
"power": "12",
"sculk_sensor_phase": "active",
@@ -224245,7 +230444,7 @@
}
},
{
- "id": 22394,
+ "id": 22863,
"properties": {
"power": "12",
"sculk_sensor_phase": "active",
@@ -224253,7 +230452,7 @@
}
},
{
- "id": 22395,
+ "id": 22864,
"properties": {
"power": "12",
"sculk_sensor_phase": "cooldown",
@@ -224261,7 +230460,7 @@
}
},
{
- "id": 22396,
+ "id": 22865,
"properties": {
"power": "12",
"sculk_sensor_phase": "cooldown",
@@ -224269,7 +230468,7 @@
}
},
{
- "id": 22397,
+ "id": 22866,
"properties": {
"power": "13",
"sculk_sensor_phase": "inactive",
@@ -224277,7 +230476,7 @@
}
},
{
- "id": 22398,
+ "id": 22867,
"properties": {
"power": "13",
"sculk_sensor_phase": "inactive",
@@ -224285,7 +230484,7 @@
}
},
{
- "id": 22399,
+ "id": 22868,
"properties": {
"power": "13",
"sculk_sensor_phase": "active",
@@ -224293,7 +230492,7 @@
}
},
{
- "id": 22400,
+ "id": 22869,
"properties": {
"power": "13",
"sculk_sensor_phase": "active",
@@ -224301,7 +230500,7 @@
}
},
{
- "id": 22401,
+ "id": 22870,
"properties": {
"power": "13",
"sculk_sensor_phase": "cooldown",
@@ -224309,7 +230508,7 @@
}
},
{
- "id": 22402,
+ "id": 22871,
"properties": {
"power": "13",
"sculk_sensor_phase": "cooldown",
@@ -224317,7 +230516,7 @@
}
},
{
- "id": 22403,
+ "id": 22872,
"properties": {
"power": "14",
"sculk_sensor_phase": "inactive",
@@ -224325,7 +230524,7 @@
}
},
{
- "id": 22404,
+ "id": 22873,
"properties": {
"power": "14",
"sculk_sensor_phase": "inactive",
@@ -224333,7 +230532,7 @@
}
},
{
- "id": 22405,
+ "id": 22874,
"properties": {
"power": "14",
"sculk_sensor_phase": "active",
@@ -224341,7 +230540,7 @@
}
},
{
- "id": 22406,
+ "id": 22875,
"properties": {
"power": "14",
"sculk_sensor_phase": "active",
@@ -224349,7 +230548,7 @@
}
},
{
- "id": 22407,
+ "id": 22876,
"properties": {
"power": "14",
"sculk_sensor_phase": "cooldown",
@@ -224357,7 +230556,7 @@
}
},
{
- "id": 22408,
+ "id": 22877,
"properties": {
"power": "14",
"sculk_sensor_phase": "cooldown",
@@ -224365,7 +230564,7 @@
}
},
{
- "id": 22409,
+ "id": 22878,
"properties": {
"power": "15",
"sculk_sensor_phase": "inactive",
@@ -224373,7 +230572,7 @@
}
},
{
- "id": 22410,
+ "id": 22879,
"properties": {
"power": "15",
"sculk_sensor_phase": "inactive",
@@ -224381,7 +230580,7 @@
}
},
{
- "id": 22411,
+ "id": 22880,
"properties": {
"power": "15",
"sculk_sensor_phase": "active",
@@ -224389,7 +230588,7 @@
}
},
{
- "id": 22412,
+ "id": 22881,
"properties": {
"power": "15",
"sculk_sensor_phase": "active",
@@ -224397,7 +230596,7 @@
}
},
{
- "id": 22413,
+ "id": 22882,
"properties": {
"power": "15",
"sculk_sensor_phase": "cooldown",
@@ -224405,7 +230604,7 @@
}
},
{
- "id": 22414,
+ "id": 22883,
"properties": {
"power": "15",
"sculk_sensor_phase": "cooldown",
@@ -224435,7 +230634,7 @@
},
"states": [
{
- "id": 22930,
+ "id": 23399,
"properties": {
"can_summon": "true",
"shrieking": "true",
@@ -224443,7 +230642,7 @@
}
},
{
- "id": 22931,
+ "id": 23400,
"properties": {
"can_summon": "true",
"shrieking": "true",
@@ -224451,7 +230650,7 @@
}
},
{
- "id": 22932,
+ "id": 23401,
"properties": {
"can_summon": "true",
"shrieking": "false",
@@ -224459,7 +230658,7 @@
}
},
{
- "id": 22933,
+ "id": 23402,
"properties": {
"can_summon": "true",
"shrieking": "false",
@@ -224467,7 +230666,7 @@
}
},
{
- "id": 22934,
+ "id": 23403,
"properties": {
"can_summon": "false",
"shrieking": "true",
@@ -224475,7 +230674,7 @@
}
},
{
- "id": 22935,
+ "id": 23404,
"properties": {
"can_summon": "false",
"shrieking": "true",
@@ -224483,7 +230682,7 @@
}
},
{
- "id": 22936,
+ "id": 23405,
"properties": {
"can_summon": "false",
"shrieking": "false",
@@ -224492,7 +230691,7 @@
},
{
"default": true,
- "id": 22937,
+ "id": 23406,
"properties": {
"can_summon": "false",
"shrieking": "false",
@@ -224538,7 +230737,7 @@
},
"states": [
{
- "id": 22800,
+ "id": 23269,
"properties": {
"down": "true",
"east": "true",
@@ -224550,7 +230749,7 @@
}
},
{
- "id": 22801,
+ "id": 23270,
"properties": {
"down": "true",
"east": "true",
@@ -224562,7 +230761,7 @@
}
},
{
- "id": 22802,
+ "id": 23271,
"properties": {
"down": "true",
"east": "true",
@@ -224574,7 +230773,7 @@
}
},
{
- "id": 22803,
+ "id": 23272,
"properties": {
"down": "true",
"east": "true",
@@ -224586,7 +230785,7 @@
}
},
{
- "id": 22804,
+ "id": 23273,
"properties": {
"down": "true",
"east": "true",
@@ -224598,7 +230797,7 @@
}
},
{
- "id": 22805,
+ "id": 23274,
"properties": {
"down": "true",
"east": "true",
@@ -224610,7 +230809,7 @@
}
},
{
- "id": 22806,
+ "id": 23275,
"properties": {
"down": "true",
"east": "true",
@@ -224622,7 +230821,7 @@
}
},
{
- "id": 22807,
+ "id": 23276,
"properties": {
"down": "true",
"east": "true",
@@ -224634,7 +230833,7 @@
}
},
{
- "id": 22808,
+ "id": 23277,
"properties": {
"down": "true",
"east": "true",
@@ -224646,7 +230845,7 @@
}
},
{
- "id": 22809,
+ "id": 23278,
"properties": {
"down": "true",
"east": "true",
@@ -224658,7 +230857,7 @@
}
},
{
- "id": 22810,
+ "id": 23279,
"properties": {
"down": "true",
"east": "true",
@@ -224670,7 +230869,7 @@
}
},
{
- "id": 22811,
+ "id": 23280,
"properties": {
"down": "true",
"east": "true",
@@ -224682,7 +230881,7 @@
}
},
{
- "id": 22812,
+ "id": 23281,
"properties": {
"down": "true",
"east": "true",
@@ -224694,7 +230893,7 @@
}
},
{
- "id": 22813,
+ "id": 23282,
"properties": {
"down": "true",
"east": "true",
@@ -224706,7 +230905,7 @@
}
},
{
- "id": 22814,
+ "id": 23283,
"properties": {
"down": "true",
"east": "true",
@@ -224718,7 +230917,7 @@
}
},
{
- "id": 22815,
+ "id": 23284,
"properties": {
"down": "true",
"east": "true",
@@ -224730,7 +230929,7 @@
}
},
{
- "id": 22816,
+ "id": 23285,
"properties": {
"down": "true",
"east": "true",
@@ -224742,7 +230941,7 @@
}
},
{
- "id": 22817,
+ "id": 23286,
"properties": {
"down": "true",
"east": "true",
@@ -224754,7 +230953,7 @@
}
},
{
- "id": 22818,
+ "id": 23287,
"properties": {
"down": "true",
"east": "true",
@@ -224766,7 +230965,7 @@
}
},
{
- "id": 22819,
+ "id": 23288,
"properties": {
"down": "true",
"east": "true",
@@ -224778,7 +230977,7 @@
}
},
{
- "id": 22820,
+ "id": 23289,
"properties": {
"down": "true",
"east": "true",
@@ -224790,7 +230989,7 @@
}
},
{
- "id": 22821,
+ "id": 23290,
"properties": {
"down": "true",
"east": "true",
@@ -224802,7 +231001,7 @@
}
},
{
- "id": 22822,
+ "id": 23291,
"properties": {
"down": "true",
"east": "true",
@@ -224814,7 +231013,7 @@
}
},
{
- "id": 22823,
+ "id": 23292,
"properties": {
"down": "true",
"east": "true",
@@ -224826,7 +231025,7 @@
}
},
{
- "id": 22824,
+ "id": 23293,
"properties": {
"down": "true",
"east": "true",
@@ -224838,7 +231037,7 @@
}
},
{
- "id": 22825,
+ "id": 23294,
"properties": {
"down": "true",
"east": "true",
@@ -224850,7 +231049,7 @@
}
},
{
- "id": 22826,
+ "id": 23295,
"properties": {
"down": "true",
"east": "true",
@@ -224862,7 +231061,7 @@
}
},
{
- "id": 22827,
+ "id": 23296,
"properties": {
"down": "true",
"east": "true",
@@ -224874,7 +231073,7 @@
}
},
{
- "id": 22828,
+ "id": 23297,
"properties": {
"down": "true",
"east": "true",
@@ -224886,7 +231085,7 @@
}
},
{
- "id": 22829,
+ "id": 23298,
"properties": {
"down": "true",
"east": "true",
@@ -224898,7 +231097,7 @@
}
},
{
- "id": 22830,
+ "id": 23299,
"properties": {
"down": "true",
"east": "true",
@@ -224910,7 +231109,7 @@
}
},
{
- "id": 22831,
+ "id": 23300,
"properties": {
"down": "true",
"east": "true",
@@ -224922,7 +231121,7 @@
}
},
{
- "id": 22832,
+ "id": 23301,
"properties": {
"down": "true",
"east": "false",
@@ -224934,7 +231133,7 @@
}
},
{
- "id": 22833,
+ "id": 23302,
"properties": {
"down": "true",
"east": "false",
@@ -224946,7 +231145,7 @@
}
},
{
- "id": 22834,
+ "id": 23303,
"properties": {
"down": "true",
"east": "false",
@@ -224958,7 +231157,7 @@
}
},
{
- "id": 22835,
+ "id": 23304,
"properties": {
"down": "true",
"east": "false",
@@ -224970,7 +231169,7 @@
}
},
{
- "id": 22836,
+ "id": 23305,
"properties": {
"down": "true",
"east": "false",
@@ -224982,7 +231181,7 @@
}
},
{
- "id": 22837,
+ "id": 23306,
"properties": {
"down": "true",
"east": "false",
@@ -224994,7 +231193,7 @@
}
},
{
- "id": 22838,
+ "id": 23307,
"properties": {
"down": "true",
"east": "false",
@@ -225006,7 +231205,7 @@
}
},
{
- "id": 22839,
+ "id": 23308,
"properties": {
"down": "true",
"east": "false",
@@ -225018,7 +231217,7 @@
}
},
{
- "id": 22840,
+ "id": 23309,
"properties": {
"down": "true",
"east": "false",
@@ -225030,7 +231229,7 @@
}
},
{
- "id": 22841,
+ "id": 23310,
"properties": {
"down": "true",
"east": "false",
@@ -225042,7 +231241,7 @@
}
},
{
- "id": 22842,
+ "id": 23311,
"properties": {
"down": "true",
"east": "false",
@@ -225054,7 +231253,7 @@
}
},
{
- "id": 22843,
+ "id": 23312,
"properties": {
"down": "true",
"east": "false",
@@ -225066,7 +231265,7 @@
}
},
{
- "id": 22844,
+ "id": 23313,
"properties": {
"down": "true",
"east": "false",
@@ -225078,7 +231277,7 @@
}
},
{
- "id": 22845,
+ "id": 23314,
"properties": {
"down": "true",
"east": "false",
@@ -225090,7 +231289,7 @@
}
},
{
- "id": 22846,
+ "id": 23315,
"properties": {
"down": "true",
"east": "false",
@@ -225102,7 +231301,7 @@
}
},
{
- "id": 22847,
+ "id": 23316,
"properties": {
"down": "true",
"east": "false",
@@ -225114,7 +231313,7 @@
}
},
{
- "id": 22848,
+ "id": 23317,
"properties": {
"down": "true",
"east": "false",
@@ -225126,7 +231325,7 @@
}
},
{
- "id": 22849,
+ "id": 23318,
"properties": {
"down": "true",
"east": "false",
@@ -225138,7 +231337,7 @@
}
},
{
- "id": 22850,
+ "id": 23319,
"properties": {
"down": "true",
"east": "false",
@@ -225150,7 +231349,7 @@
}
},
{
- "id": 22851,
+ "id": 23320,
"properties": {
"down": "true",
"east": "false",
@@ -225162,7 +231361,7 @@
}
},
{
- "id": 22852,
+ "id": 23321,
"properties": {
"down": "true",
"east": "false",
@@ -225174,7 +231373,7 @@
}
},
{
- "id": 22853,
+ "id": 23322,
"properties": {
"down": "true",
"east": "false",
@@ -225186,7 +231385,7 @@
}
},
{
- "id": 22854,
+ "id": 23323,
"properties": {
"down": "true",
"east": "false",
@@ -225198,7 +231397,7 @@
}
},
{
- "id": 22855,
+ "id": 23324,
"properties": {
"down": "true",
"east": "false",
@@ -225210,7 +231409,7 @@
}
},
{
- "id": 22856,
+ "id": 23325,
"properties": {
"down": "true",
"east": "false",
@@ -225222,7 +231421,7 @@
}
},
{
- "id": 22857,
+ "id": 23326,
"properties": {
"down": "true",
"east": "false",
@@ -225234,7 +231433,7 @@
}
},
{
- "id": 22858,
+ "id": 23327,
"properties": {
"down": "true",
"east": "false",
@@ -225246,7 +231445,7 @@
}
},
{
- "id": 22859,
+ "id": 23328,
"properties": {
"down": "true",
"east": "false",
@@ -225258,7 +231457,7 @@
}
},
{
- "id": 22860,
+ "id": 23329,
"properties": {
"down": "true",
"east": "false",
@@ -225270,7 +231469,7 @@
}
},
{
- "id": 22861,
+ "id": 23330,
"properties": {
"down": "true",
"east": "false",
@@ -225282,7 +231481,7 @@
}
},
{
- "id": 22862,
+ "id": 23331,
"properties": {
"down": "true",
"east": "false",
@@ -225294,7 +231493,7 @@
}
},
{
- "id": 22863,
+ "id": 23332,
"properties": {
"down": "true",
"east": "false",
@@ -225306,7 +231505,7 @@
}
},
{
- "id": 22864,
+ "id": 23333,
"properties": {
"down": "false",
"east": "true",
@@ -225318,7 +231517,7 @@
}
},
{
- "id": 22865,
+ "id": 23334,
"properties": {
"down": "false",
"east": "true",
@@ -225330,7 +231529,7 @@
}
},
{
- "id": 22866,
+ "id": 23335,
"properties": {
"down": "false",
"east": "true",
@@ -225342,7 +231541,7 @@
}
},
{
- "id": 22867,
+ "id": 23336,
"properties": {
"down": "false",
"east": "true",
@@ -225354,7 +231553,7 @@
}
},
{
- "id": 22868,
+ "id": 23337,
"properties": {
"down": "false",
"east": "true",
@@ -225366,7 +231565,7 @@
}
},
{
- "id": 22869,
+ "id": 23338,
"properties": {
"down": "false",
"east": "true",
@@ -225378,7 +231577,7 @@
}
},
{
- "id": 22870,
+ "id": 23339,
"properties": {
"down": "false",
"east": "true",
@@ -225390,7 +231589,7 @@
}
},
{
- "id": 22871,
+ "id": 23340,
"properties": {
"down": "false",
"east": "true",
@@ -225402,7 +231601,7 @@
}
},
{
- "id": 22872,
+ "id": 23341,
"properties": {
"down": "false",
"east": "true",
@@ -225414,7 +231613,7 @@
}
},
{
- "id": 22873,
+ "id": 23342,
"properties": {
"down": "false",
"east": "true",
@@ -225426,7 +231625,7 @@
}
},
{
- "id": 22874,
+ "id": 23343,
"properties": {
"down": "false",
"east": "true",
@@ -225438,7 +231637,7 @@
}
},
{
- "id": 22875,
+ "id": 23344,
"properties": {
"down": "false",
"east": "true",
@@ -225450,7 +231649,7 @@
}
},
{
- "id": 22876,
+ "id": 23345,
"properties": {
"down": "false",
"east": "true",
@@ -225462,7 +231661,7 @@
}
},
{
- "id": 22877,
+ "id": 23346,
"properties": {
"down": "false",
"east": "true",
@@ -225474,7 +231673,7 @@
}
},
{
- "id": 22878,
+ "id": 23347,
"properties": {
"down": "false",
"east": "true",
@@ -225486,7 +231685,7 @@
}
},
{
- "id": 22879,
+ "id": 23348,
"properties": {
"down": "false",
"east": "true",
@@ -225498,7 +231697,7 @@
}
},
{
- "id": 22880,
+ "id": 23349,
"properties": {
"down": "false",
"east": "true",
@@ -225510,7 +231709,7 @@
}
},
{
- "id": 22881,
+ "id": 23350,
"properties": {
"down": "false",
"east": "true",
@@ -225522,7 +231721,7 @@
}
},
{
- "id": 22882,
+ "id": 23351,
"properties": {
"down": "false",
"east": "true",
@@ -225534,7 +231733,7 @@
}
},
{
- "id": 22883,
+ "id": 23352,
"properties": {
"down": "false",
"east": "true",
@@ -225546,7 +231745,7 @@
}
},
{
- "id": 22884,
+ "id": 23353,
"properties": {
"down": "false",
"east": "true",
@@ -225558,7 +231757,7 @@
}
},
{
- "id": 22885,
+ "id": 23354,
"properties": {
"down": "false",
"east": "true",
@@ -225570,7 +231769,7 @@
}
},
{
- "id": 22886,
+ "id": 23355,
"properties": {
"down": "false",
"east": "true",
@@ -225582,7 +231781,7 @@
}
},
{
- "id": 22887,
+ "id": 23356,
"properties": {
"down": "false",
"east": "true",
@@ -225594,7 +231793,7 @@
}
},
{
- "id": 22888,
+ "id": 23357,
"properties": {
"down": "false",
"east": "true",
@@ -225606,7 +231805,7 @@
}
},
{
- "id": 22889,
+ "id": 23358,
"properties": {
"down": "false",
"east": "true",
@@ -225618,7 +231817,7 @@
}
},
{
- "id": 22890,
+ "id": 23359,
"properties": {
"down": "false",
"east": "true",
@@ -225630,7 +231829,7 @@
}
},
{
- "id": 22891,
+ "id": 23360,
"properties": {
"down": "false",
"east": "true",
@@ -225642,7 +231841,7 @@
}
},
{
- "id": 22892,
+ "id": 23361,
"properties": {
"down": "false",
"east": "true",
@@ -225654,7 +231853,7 @@
}
},
{
- "id": 22893,
+ "id": 23362,
"properties": {
"down": "false",
"east": "true",
@@ -225666,7 +231865,7 @@
}
},
{
- "id": 22894,
+ "id": 23363,
"properties": {
"down": "false",
"east": "true",
@@ -225678,7 +231877,7 @@
}
},
{
- "id": 22895,
+ "id": 23364,
"properties": {
"down": "false",
"east": "true",
@@ -225690,7 +231889,7 @@
}
},
{
- "id": 22896,
+ "id": 23365,
"properties": {
"down": "false",
"east": "false",
@@ -225702,7 +231901,7 @@
}
},
{
- "id": 22897,
+ "id": 23366,
"properties": {
"down": "false",
"east": "false",
@@ -225714,7 +231913,7 @@
}
},
{
- "id": 22898,
+ "id": 23367,
"properties": {
"down": "false",
"east": "false",
@@ -225726,7 +231925,7 @@
}
},
{
- "id": 22899,
+ "id": 23368,
"properties": {
"down": "false",
"east": "false",
@@ -225738,7 +231937,7 @@
}
},
{
- "id": 22900,
+ "id": 23369,
"properties": {
"down": "false",
"east": "false",
@@ -225750,7 +231949,7 @@
}
},
{
- "id": 22901,
+ "id": 23370,
"properties": {
"down": "false",
"east": "false",
@@ -225762,7 +231961,7 @@
}
},
{
- "id": 22902,
+ "id": 23371,
"properties": {
"down": "false",
"east": "false",
@@ -225774,7 +231973,7 @@
}
},
{
- "id": 22903,
+ "id": 23372,
"properties": {
"down": "false",
"east": "false",
@@ -225786,7 +231985,7 @@
}
},
{
- "id": 22904,
+ "id": 23373,
"properties": {
"down": "false",
"east": "false",
@@ -225798,7 +231997,7 @@
}
},
{
- "id": 22905,
+ "id": 23374,
"properties": {
"down": "false",
"east": "false",
@@ -225810,7 +232009,7 @@
}
},
{
- "id": 22906,
+ "id": 23375,
"properties": {
"down": "false",
"east": "false",
@@ -225822,7 +232021,7 @@
}
},
{
- "id": 22907,
+ "id": 23376,
"properties": {
"down": "false",
"east": "false",
@@ -225834,7 +232033,7 @@
}
},
{
- "id": 22908,
+ "id": 23377,
"properties": {
"down": "false",
"east": "false",
@@ -225846,7 +232045,7 @@
}
},
{
- "id": 22909,
+ "id": 23378,
"properties": {
"down": "false",
"east": "false",
@@ -225858,7 +232057,7 @@
}
},
{
- "id": 22910,
+ "id": 23379,
"properties": {
"down": "false",
"east": "false",
@@ -225870,7 +232069,7 @@
}
},
{
- "id": 22911,
+ "id": 23380,
"properties": {
"down": "false",
"east": "false",
@@ -225882,7 +232081,7 @@
}
},
{
- "id": 22912,
+ "id": 23381,
"properties": {
"down": "false",
"east": "false",
@@ -225894,7 +232093,7 @@
}
},
{
- "id": 22913,
+ "id": 23382,
"properties": {
"down": "false",
"east": "false",
@@ -225906,7 +232105,7 @@
}
},
{
- "id": 22914,
+ "id": 23383,
"properties": {
"down": "false",
"east": "false",
@@ -225918,7 +232117,7 @@
}
},
{
- "id": 22915,
+ "id": 23384,
"properties": {
"down": "false",
"east": "false",
@@ -225930,7 +232129,7 @@
}
},
{
- "id": 22916,
+ "id": 23385,
"properties": {
"down": "false",
"east": "false",
@@ -225942,7 +232141,7 @@
}
},
{
- "id": 22917,
+ "id": 23386,
"properties": {
"down": "false",
"east": "false",
@@ -225954,7 +232153,7 @@
}
},
{
- "id": 22918,
+ "id": 23387,
"properties": {
"down": "false",
"east": "false",
@@ -225966,7 +232165,7 @@
}
},
{
- "id": 22919,
+ "id": 23388,
"properties": {
"down": "false",
"east": "false",
@@ -225978,7 +232177,7 @@
}
},
{
- "id": 22920,
+ "id": 23389,
"properties": {
"down": "false",
"east": "false",
@@ -225990,7 +232189,7 @@
}
},
{
- "id": 22921,
+ "id": 23390,
"properties": {
"down": "false",
"east": "false",
@@ -226002,7 +232201,7 @@
}
},
{
- "id": 22922,
+ "id": 23391,
"properties": {
"down": "false",
"east": "false",
@@ -226014,7 +232213,7 @@
}
},
{
- "id": 22923,
+ "id": 23392,
"properties": {
"down": "false",
"east": "false",
@@ -226026,7 +232225,7 @@
}
},
{
- "id": 22924,
+ "id": 23393,
"properties": {
"down": "false",
"east": "false",
@@ -226038,7 +232237,7 @@
}
},
{
- "id": 22925,
+ "id": 23394,
"properties": {
"down": "false",
"east": "false",
@@ -226050,7 +232249,7 @@
}
},
{
- "id": 22926,
+ "id": 23395,
"properties": {
"down": "false",
"east": "false",
@@ -226063,7 +232262,7 @@
},
{
"default": true,
- "id": 22927,
+ "id": 23396,
"properties": {
"down": "false",
"east": "false",
@@ -226084,7 +232283,7 @@
"states": [
{
"default": true,
- "id": 10724
+ "id": 11059
}
]
},
@@ -226108,56 +232307,56 @@
"states": [
{
"default": true,
- "id": 12933,
+ "id": 13402,
"properties": {
"pickles": "1",
"waterlogged": "true"
}
},
{
- "id": 12934,
+ "id": 13403,
"properties": {
"pickles": "1",
"waterlogged": "false"
}
},
{
- "id": 12935,
+ "id": 13404,
"properties": {
"pickles": "2",
"waterlogged": "true"
}
},
{
- "id": 12936,
+ "id": 13405,
"properties": {
"pickles": "2",
"waterlogged": "false"
}
},
{
- "id": 12937,
+ "id": 13406,
"properties": {
"pickles": "3",
"waterlogged": "true"
}
},
{
- "id": 12938,
+ "id": 13407,
"properties": {
"pickles": "3",
"waterlogged": "false"
}
},
{
- "id": 12939,
+ "id": 13408,
"properties": {
"pickles": "4",
"waterlogged": "true"
}
},
{
- "id": 12940,
+ "id": 13409,
"properties": {
"pickles": "4",
"waterlogged": "false"
@@ -226173,7 +232372,7 @@
"states": [
{
"default": true,
- "id": 2008
+ "id": 2051
}
]
},
@@ -226185,7 +232384,7 @@
"states": [
{
"default": true,
- "id": 2005
+ "id": 2048
}
]
},
@@ -226197,7 +232396,7 @@
"states": [
{
"default": true,
- "id": 18610
+ "id": 19079
}
]
},
@@ -226218,38 +232417,38 @@
},
"states": [
{
- "id": 12562,
+ "id": 13031,
"properties": {
"facing": "north"
}
},
{
- "id": 12563,
+ "id": 13032,
"properties": {
"facing": "east"
}
},
{
- "id": 12564,
+ "id": 13033,
"properties": {
"facing": "south"
}
},
{
- "id": 12565,
+ "id": 13034,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12566,
+ "id": 13035,
"properties": {
"facing": "up"
}
},
{
- "id": 12567,
+ "id": 13036,
"properties": {
"facing": "down"
}
@@ -226288,112 +232487,112 @@
},
"states": [
{
- "id": 8827,
+ "id": 9082,
"properties": {
"powered": "true",
"rotation": "0"
}
},
{
- "id": 8828,
+ "id": 9083,
"properties": {
"powered": "true",
"rotation": "1"
}
},
{
- "id": 8829,
+ "id": 9084,
"properties": {
"powered": "true",
"rotation": "2"
}
},
{
- "id": 8830,
+ "id": 9085,
"properties": {
"powered": "true",
"rotation": "3"
}
},
{
- "id": 8831,
+ "id": 9086,
"properties": {
"powered": "true",
"rotation": "4"
}
},
{
- "id": 8832,
+ "id": 9087,
"properties": {
"powered": "true",
"rotation": "5"
}
},
{
- "id": 8833,
+ "id": 9088,
"properties": {
"powered": "true",
"rotation": "6"
}
},
{
- "id": 8834,
+ "id": 9089,
"properties": {
"powered": "true",
"rotation": "7"
}
},
{
- "id": 8835,
+ "id": 9090,
"properties": {
"powered": "true",
"rotation": "8"
}
},
{
- "id": 8836,
+ "id": 9091,
"properties": {
"powered": "true",
"rotation": "9"
}
},
{
- "id": 8837,
+ "id": 9092,
"properties": {
"powered": "true",
"rotation": "10"
}
},
{
- "id": 8838,
+ "id": 9093,
"properties": {
"powered": "true",
"rotation": "11"
}
},
{
- "id": 8839,
+ "id": 9094,
"properties": {
"powered": "true",
"rotation": "12"
}
},
{
- "id": 8840,
+ "id": 9095,
"properties": {
"powered": "true",
"rotation": "13"
}
},
{
- "id": 8841,
+ "id": 9096,
"properties": {
"powered": "true",
"rotation": "14"
}
},
{
- "id": 8842,
+ "id": 9097,
"properties": {
"powered": "true",
"rotation": "15"
@@ -226401,112 +232600,112 @@
},
{
"default": true,
- "id": 8843,
+ "id": 9098,
"properties": {
"powered": "false",
"rotation": "0"
}
},
{
- "id": 8844,
+ "id": 9099,
"properties": {
"powered": "false",
"rotation": "1"
}
},
{
- "id": 8845,
+ "id": 9100,
"properties": {
"powered": "false",
"rotation": "2"
}
},
{
- "id": 8846,
+ "id": 9101,
"properties": {
"powered": "false",
"rotation": "3"
}
},
{
- "id": 8847,
+ "id": 9102,
"properties": {
"powered": "false",
"rotation": "4"
}
},
{
- "id": 8848,
+ "id": 9103,
"properties": {
"powered": "false",
"rotation": "5"
}
},
{
- "id": 8849,
+ "id": 9104,
"properties": {
"powered": "false",
"rotation": "6"
}
},
{
- "id": 8850,
+ "id": 9105,
"properties": {
"powered": "false",
"rotation": "7"
}
},
{
- "id": 8851,
+ "id": 9106,
"properties": {
"powered": "false",
"rotation": "8"
}
},
{
- "id": 8852,
+ "id": 9107,
"properties": {
"powered": "false",
"rotation": "9"
}
},
{
- "id": 8853,
+ "id": 9108,
"properties": {
"powered": "false",
"rotation": "10"
}
},
{
- "id": 8854,
+ "id": 9109,
"properties": {
"powered": "false",
"rotation": "11"
}
},
{
- "id": 8855,
+ "id": 9110,
"properties": {
"powered": "false",
"rotation": "12"
}
},
{
- "id": 8856,
+ "id": 9111,
"properties": {
"powered": "false",
"rotation": "13"
}
},
{
- "id": 8857,
+ "id": 9112,
"properties": {
"powered": "false",
"rotation": "14"
}
},
{
- "id": 8858,
+ "id": 9113,
"properties": {
"powered": "false",
"rotation": "15"
@@ -226534,7 +232733,7 @@
},
"states": [
{
- "id": 8859,
+ "id": 9114,
"properties": {
"facing": "north",
"powered": "true"
@@ -226542,49 +232741,49 @@
},
{
"default": true,
- "id": 8860,
+ "id": 9115,
"properties": {
"facing": "north",
"powered": "false"
}
},
{
- "id": 8861,
+ "id": 9116,
"properties": {
"facing": "south",
"powered": "true"
}
},
{
- "id": 8862,
+ "id": 9117,
"properties": {
"facing": "south",
"powered": "false"
}
},
{
- "id": 8863,
+ "id": 9118,
"properties": {
"facing": "west",
"powered": "true"
}
},
{
- "id": 8864,
+ "id": 9119,
"properties": {
"facing": "west",
"powered": "false"
}
},
{
- "id": 8865,
+ "id": 9120,
"properties": {
"facing": "east",
"powered": "true"
}
},
{
- "id": 8866,
+ "id": 9121,
"properties": {
"facing": "east",
"powered": "false"
@@ -226600,7 +232799,7 @@
"states": [
{
"default": true,
- "id": 10364
+ "id": 10699
}
]
},
@@ -226627,63 +232826,63 @@
},
"states": [
{
- "id": 21069,
+ "id": 21538,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 21070,
+ "id": 21539,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 21071,
+ "id": 21540,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 21072,
+ "id": 21541,
"properties": {
"facing": "east",
"waterlogged": "false"
}
},
{
- "id": 21073,
+ "id": 21542,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 21074,
+ "id": 21543,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 21075,
+ "id": 21544,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 21076,
+ "id": 21545,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 21077,
+ "id": 21546,
"properties": {
"facing": "up",
"waterlogged": "true"
@@ -226691,21 +232890,21 @@
},
{
"default": true,
- "id": 21078,
+ "id": 21547,
"properties": {
"facing": "up",
"waterlogged": "false"
}
},
{
- "id": 21079,
+ "id": 21548,
"properties": {
"facing": "down",
"waterlogged": "true"
}
},
{
- "id": 21080,
+ "id": 21549,
"properties": {
"facing": "down",
"waterlogged": "false"
@@ -226736,7 +232935,7 @@
},
"states": [
{
- "id": 24884,
+ "id": 25353,
"properties": {
"facing": "north",
"half": "upper",
@@ -226744,7 +232943,7 @@
}
},
{
- "id": 24885,
+ "id": 25354,
"properties": {
"facing": "north",
"half": "upper",
@@ -226752,7 +232951,7 @@
}
},
{
- "id": 24886,
+ "id": 25355,
"properties": {
"facing": "north",
"half": "lower",
@@ -226761,7 +232960,7 @@
},
{
"default": true,
- "id": 24887,
+ "id": 25356,
"properties": {
"facing": "north",
"half": "lower",
@@ -226769,7 +232968,7 @@
}
},
{
- "id": 24888,
+ "id": 25357,
"properties": {
"facing": "south",
"half": "upper",
@@ -226777,7 +232976,7 @@
}
},
{
- "id": 24889,
+ "id": 25358,
"properties": {
"facing": "south",
"half": "upper",
@@ -226785,7 +232984,7 @@
}
},
{
- "id": 24890,
+ "id": 25359,
"properties": {
"facing": "south",
"half": "lower",
@@ -226793,7 +232992,7 @@
}
},
{
- "id": 24891,
+ "id": 25360,
"properties": {
"facing": "south",
"half": "lower",
@@ -226801,7 +233000,7 @@
}
},
{
- "id": 24892,
+ "id": 25361,
"properties": {
"facing": "west",
"half": "upper",
@@ -226809,7 +233008,7 @@
}
},
{
- "id": 24893,
+ "id": 25362,
"properties": {
"facing": "west",
"half": "upper",
@@ -226817,7 +233016,7 @@
}
},
{
- "id": 24894,
+ "id": 25363,
"properties": {
"facing": "west",
"half": "lower",
@@ -226825,7 +233024,7 @@
}
},
{
- "id": 24895,
+ "id": 25364,
"properties": {
"facing": "west",
"half": "lower",
@@ -226833,7 +233032,7 @@
}
},
{
- "id": 24896,
+ "id": 25365,
"properties": {
"facing": "east",
"half": "upper",
@@ -226841,7 +233040,7 @@
}
},
{
- "id": 24897,
+ "id": 25366,
"properties": {
"facing": "east",
"half": "upper",
@@ -226849,7 +233048,7 @@
}
},
{
- "id": 24898,
+ "id": 25367,
"properties": {
"facing": "east",
"half": "lower",
@@ -226857,7 +233056,7 @@
}
},
{
- "id": 24899,
+ "id": 25368,
"properties": {
"facing": "east",
"half": "lower",
@@ -226874,7 +233073,7 @@
"states": [
{
"default": true,
- "id": 18466
+ "id": 18935
}
]
},
@@ -226897,7 +233096,7 @@
},
"states": [
{
- "id": 18420,
+ "id": 18889,
"properties": {
"facing": "north",
"lit": "true"
@@ -226905,49 +233104,49 @@
},
{
"default": true,
- "id": 18421,
+ "id": 18890,
"properties": {
"facing": "north",
"lit": "false"
}
},
{
- "id": 18422,
+ "id": 18891,
"properties": {
"facing": "south",
"lit": "true"
}
},
{
- "id": 18423,
+ "id": 18892,
"properties": {
"facing": "south",
"lit": "false"
}
},
{
- "id": 18424,
+ "id": 18893,
"properties": {
"facing": "west",
"lit": "true"
}
},
{
- "id": 18425,
+ "id": 18894,
"properties": {
"facing": "west",
"lit": "false"
}
},
{
- "id": 18426,
+ "id": 18895,
"properties": {
"facing": "east",
"lit": "true"
}
},
{
- "id": 18427,
+ "id": 18896,
"properties": {
"facing": "east",
"lit": "false"
@@ -226963,7 +233162,7 @@
"states": [
{
"default": true,
- "id": 26557
+ "id": 27026
}
]
},
@@ -226975,7 +233174,7 @@
"states": [
{
"default": true,
- "id": 11308
+ "id": 11649
}
]
},
@@ -226997,21 +233196,21 @@
},
"states": [
{
- "id": 14124,
+ "id": 14593,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 14125,
+ "id": 14594,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 14126,
+ "id": 14595,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -227019,21 +233218,21 @@
},
{
"default": true,
- "id": 14127,
+ "id": 14596,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 14128,
+ "id": 14597,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 14129,
+ "id": 14598,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -227074,7 +233273,7 @@
},
"states": [
{
- "id": 13602,
+ "id": 14071,
"properties": {
"facing": "north",
"half": "top",
@@ -227083,7 +233282,7 @@
}
},
{
- "id": 13603,
+ "id": 14072,
"properties": {
"facing": "north",
"half": "top",
@@ -227092,7 +233291,7 @@
}
},
{
- "id": 13604,
+ "id": 14073,
"properties": {
"facing": "north",
"half": "top",
@@ -227101,7 +233300,7 @@
}
},
{
- "id": 13605,
+ "id": 14074,
"properties": {
"facing": "north",
"half": "top",
@@ -227110,7 +233309,7 @@
}
},
{
- "id": 13606,
+ "id": 14075,
"properties": {
"facing": "north",
"half": "top",
@@ -227119,7 +233318,7 @@
}
},
{
- "id": 13607,
+ "id": 14076,
"properties": {
"facing": "north",
"half": "top",
@@ -227128,7 +233327,7 @@
}
},
{
- "id": 13608,
+ "id": 14077,
"properties": {
"facing": "north",
"half": "top",
@@ -227137,7 +233336,7 @@
}
},
{
- "id": 13609,
+ "id": 14078,
"properties": {
"facing": "north",
"half": "top",
@@ -227146,7 +233345,7 @@
}
},
{
- "id": 13610,
+ "id": 14079,
"properties": {
"facing": "north",
"half": "top",
@@ -227155,7 +233354,7 @@
}
},
{
- "id": 13611,
+ "id": 14080,
"properties": {
"facing": "north",
"half": "top",
@@ -227164,7 +233363,7 @@
}
},
{
- "id": 13612,
+ "id": 14081,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227174,7 +233373,7 @@
},
{
"default": true,
- "id": 13613,
+ "id": 14082,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227183,7 +233382,7 @@
}
},
{
- "id": 13614,
+ "id": 14083,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227192,7 +233391,7 @@
}
},
{
- "id": 13615,
+ "id": 14084,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227201,7 +233400,7 @@
}
},
{
- "id": 13616,
+ "id": 14085,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227210,7 +233409,7 @@
}
},
{
- "id": 13617,
+ "id": 14086,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227219,7 +233418,7 @@
}
},
{
- "id": 13618,
+ "id": 14087,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227228,7 +233427,7 @@
}
},
{
- "id": 13619,
+ "id": 14088,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227237,7 +233436,7 @@
}
},
{
- "id": 13620,
+ "id": 14089,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227246,7 +233445,7 @@
}
},
{
- "id": 13621,
+ "id": 14090,
"properties": {
"facing": "north",
"half": "bottom",
@@ -227255,7 +233454,7 @@
}
},
{
- "id": 13622,
+ "id": 14091,
"properties": {
"facing": "south",
"half": "top",
@@ -227264,7 +233463,7 @@
}
},
{
- "id": 13623,
+ "id": 14092,
"properties": {
"facing": "south",
"half": "top",
@@ -227273,7 +233472,7 @@
}
},
{
- "id": 13624,
+ "id": 14093,
"properties": {
"facing": "south",
"half": "top",
@@ -227282,7 +233481,7 @@
}
},
{
- "id": 13625,
+ "id": 14094,
"properties": {
"facing": "south",
"half": "top",
@@ -227291,7 +233490,7 @@
}
},
{
- "id": 13626,
+ "id": 14095,
"properties": {
"facing": "south",
"half": "top",
@@ -227300,7 +233499,7 @@
}
},
{
- "id": 13627,
+ "id": 14096,
"properties": {
"facing": "south",
"half": "top",
@@ -227309,7 +233508,7 @@
}
},
{
- "id": 13628,
+ "id": 14097,
"properties": {
"facing": "south",
"half": "top",
@@ -227318,7 +233517,7 @@
}
},
{
- "id": 13629,
+ "id": 14098,
"properties": {
"facing": "south",
"half": "top",
@@ -227327,7 +233526,7 @@
}
},
{
- "id": 13630,
+ "id": 14099,
"properties": {
"facing": "south",
"half": "top",
@@ -227336,7 +233535,7 @@
}
},
{
- "id": 13631,
+ "id": 14100,
"properties": {
"facing": "south",
"half": "top",
@@ -227345,7 +233544,7 @@
}
},
{
- "id": 13632,
+ "id": 14101,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227354,7 +233553,7 @@
}
},
{
- "id": 13633,
+ "id": 14102,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227363,7 +233562,7 @@
}
},
{
- "id": 13634,
+ "id": 14103,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227372,7 +233571,7 @@
}
},
{
- "id": 13635,
+ "id": 14104,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227381,7 +233580,7 @@
}
},
{
- "id": 13636,
+ "id": 14105,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227390,7 +233589,7 @@
}
},
{
- "id": 13637,
+ "id": 14106,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227399,7 +233598,7 @@
}
},
{
- "id": 13638,
+ "id": 14107,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227408,7 +233607,7 @@
}
},
{
- "id": 13639,
+ "id": 14108,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227417,7 +233616,7 @@
}
},
{
- "id": 13640,
+ "id": 14109,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227426,7 +233625,7 @@
}
},
{
- "id": 13641,
+ "id": 14110,
"properties": {
"facing": "south",
"half": "bottom",
@@ -227435,7 +233634,7 @@
}
},
{
- "id": 13642,
+ "id": 14111,
"properties": {
"facing": "west",
"half": "top",
@@ -227444,7 +233643,7 @@
}
},
{
- "id": 13643,
+ "id": 14112,
"properties": {
"facing": "west",
"half": "top",
@@ -227453,7 +233652,7 @@
}
},
{
- "id": 13644,
+ "id": 14113,
"properties": {
"facing": "west",
"half": "top",
@@ -227462,7 +233661,7 @@
}
},
{
- "id": 13645,
+ "id": 14114,
"properties": {
"facing": "west",
"half": "top",
@@ -227471,7 +233670,7 @@
}
},
{
- "id": 13646,
+ "id": 14115,
"properties": {
"facing": "west",
"half": "top",
@@ -227480,7 +233679,7 @@
}
},
{
- "id": 13647,
+ "id": 14116,
"properties": {
"facing": "west",
"half": "top",
@@ -227489,7 +233688,7 @@
}
},
{
- "id": 13648,
+ "id": 14117,
"properties": {
"facing": "west",
"half": "top",
@@ -227498,7 +233697,7 @@
}
},
{
- "id": 13649,
+ "id": 14118,
"properties": {
"facing": "west",
"half": "top",
@@ -227507,7 +233706,7 @@
}
},
{
- "id": 13650,
+ "id": 14119,
"properties": {
"facing": "west",
"half": "top",
@@ -227516,7 +233715,7 @@
}
},
{
- "id": 13651,
+ "id": 14120,
"properties": {
"facing": "west",
"half": "top",
@@ -227525,7 +233724,7 @@
}
},
{
- "id": 13652,
+ "id": 14121,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227534,7 +233733,7 @@
}
},
{
- "id": 13653,
+ "id": 14122,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227543,7 +233742,7 @@
}
},
{
- "id": 13654,
+ "id": 14123,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227552,7 +233751,7 @@
}
},
{
- "id": 13655,
+ "id": 14124,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227561,7 +233760,7 @@
}
},
{
- "id": 13656,
+ "id": 14125,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227570,7 +233769,7 @@
}
},
{
- "id": 13657,
+ "id": 14126,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227579,7 +233778,7 @@
}
},
{
- "id": 13658,
+ "id": 14127,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227588,7 +233787,7 @@
}
},
{
- "id": 13659,
+ "id": 14128,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227597,7 +233796,7 @@
}
},
{
- "id": 13660,
+ "id": 14129,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227606,7 +233805,7 @@
}
},
{
- "id": 13661,
+ "id": 14130,
"properties": {
"facing": "west",
"half": "bottom",
@@ -227615,7 +233814,7 @@
}
},
{
- "id": 13662,
+ "id": 14131,
"properties": {
"facing": "east",
"half": "top",
@@ -227624,7 +233823,7 @@
}
},
{
- "id": 13663,
+ "id": 14132,
"properties": {
"facing": "east",
"half": "top",
@@ -227633,7 +233832,7 @@
}
},
{
- "id": 13664,
+ "id": 14133,
"properties": {
"facing": "east",
"half": "top",
@@ -227642,7 +233841,7 @@
}
},
{
- "id": 13665,
+ "id": 14134,
"properties": {
"facing": "east",
"half": "top",
@@ -227651,7 +233850,7 @@
}
},
{
- "id": 13666,
+ "id": 14135,
"properties": {
"facing": "east",
"half": "top",
@@ -227660,7 +233859,7 @@
}
},
{
- "id": 13667,
+ "id": 14136,
"properties": {
"facing": "east",
"half": "top",
@@ -227669,7 +233868,7 @@
}
},
{
- "id": 13668,
+ "id": 14137,
"properties": {
"facing": "east",
"half": "top",
@@ -227678,7 +233877,7 @@
}
},
{
- "id": 13669,
+ "id": 14138,
"properties": {
"facing": "east",
"half": "top",
@@ -227687,7 +233886,7 @@
}
},
{
- "id": 13670,
+ "id": 14139,
"properties": {
"facing": "east",
"half": "top",
@@ -227696,7 +233895,7 @@
}
},
{
- "id": 13671,
+ "id": 14140,
"properties": {
"facing": "east",
"half": "top",
@@ -227705,7 +233904,7 @@
}
},
{
- "id": 13672,
+ "id": 14141,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227714,7 +233913,7 @@
}
},
{
- "id": 13673,
+ "id": 14142,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227723,7 +233922,7 @@
}
},
{
- "id": 13674,
+ "id": 14143,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227732,7 +233931,7 @@
}
},
{
- "id": 13675,
+ "id": 14144,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227741,7 +233940,7 @@
}
},
{
- "id": 13676,
+ "id": 14145,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227750,7 +233949,7 @@
}
},
{
- "id": 13677,
+ "id": 14146,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227759,7 +233958,7 @@
}
},
{
- "id": 13678,
+ "id": 14147,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227768,7 +233967,7 @@
}
},
{
- "id": 13679,
+ "id": 14148,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227777,7 +233976,7 @@
}
},
{
- "id": 13680,
+ "id": 14149,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227786,7 +233985,7 @@
}
},
{
- "id": 13681,
+ "id": 14150,
"properties": {
"facing": "east",
"half": "bottom",
@@ -227804,7 +234003,7 @@
"states": [
{
"default": true,
- "id": 11309
+ "id": 11650
}
]
},
@@ -227826,21 +234025,21 @@
},
"states": [
{
- "id": 14088,
+ "id": 14557,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 14089,
+ "id": 14558,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 14090,
+ "id": 14559,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -227848,21 +234047,21 @@
},
{
"default": true,
- "id": 14091,
+ "id": 14560,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 14092,
+ "id": 14561,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 14093,
+ "id": 14562,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -227903,7 +234102,7 @@
},
"states": [
{
- "id": 13042,
+ "id": 13511,
"properties": {
"facing": "north",
"half": "top",
@@ -227912,7 +234111,7 @@
}
},
{
- "id": 13043,
+ "id": 13512,
"properties": {
"facing": "north",
"half": "top",
@@ -227921,7 +234120,7 @@
}
},
{
- "id": 13044,
+ "id": 13513,
"properties": {
"facing": "north",
"half": "top",
@@ -227930,7 +234129,7 @@
}
},
{
- "id": 13045,
+ "id": 13514,
"properties": {
"facing": "north",
"half": "top",
@@ -227939,7 +234138,7 @@
}
},
{
- "id": 13046,
+ "id": 13515,
"properties": {
"facing": "north",
"half": "top",
@@ -227948,7 +234147,7 @@
}
},
{
- "id": 13047,
+ "id": 13516,
"properties": {
"facing": "north",
"half": "top",
@@ -227957,7 +234156,7 @@
}
},
{
- "id": 13048,
+ "id": 13517,
"properties": {
"facing": "north",
"half": "top",
@@ -227966,7 +234165,7 @@
}
},
{
- "id": 13049,
+ "id": 13518,
"properties": {
"facing": "north",
"half": "top",
@@ -227975,7 +234174,7 @@
}
},
{
- "id": 13050,
+ "id": 13519,
"properties": {
"facing": "north",
"half": "top",
@@ -227984,7 +234183,7 @@
}
},
{
- "id": 13051,
+ "id": 13520,
"properties": {
"facing": "north",
"half": "top",
@@ -227993,7 +234192,7 @@
}
},
{
- "id": 13052,
+ "id": 13521,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228003,7 +234202,7 @@
},
{
"default": true,
- "id": 13053,
+ "id": 13522,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228012,7 +234211,7 @@
}
},
{
- "id": 13054,
+ "id": 13523,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228021,7 +234220,7 @@
}
},
{
- "id": 13055,
+ "id": 13524,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228030,7 +234229,7 @@
}
},
{
- "id": 13056,
+ "id": 13525,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228039,7 +234238,7 @@
}
},
{
- "id": 13057,
+ "id": 13526,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228048,7 +234247,7 @@
}
},
{
- "id": 13058,
+ "id": 13527,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228057,7 +234256,7 @@
}
},
{
- "id": 13059,
+ "id": 13528,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228066,7 +234265,7 @@
}
},
{
- "id": 13060,
+ "id": 13529,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228075,7 +234274,7 @@
}
},
{
- "id": 13061,
+ "id": 13530,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228084,7 +234283,7 @@
}
},
{
- "id": 13062,
+ "id": 13531,
"properties": {
"facing": "south",
"half": "top",
@@ -228093,7 +234292,7 @@
}
},
{
- "id": 13063,
+ "id": 13532,
"properties": {
"facing": "south",
"half": "top",
@@ -228102,7 +234301,7 @@
}
},
{
- "id": 13064,
+ "id": 13533,
"properties": {
"facing": "south",
"half": "top",
@@ -228111,7 +234310,7 @@
}
},
{
- "id": 13065,
+ "id": 13534,
"properties": {
"facing": "south",
"half": "top",
@@ -228120,7 +234319,7 @@
}
},
{
- "id": 13066,
+ "id": 13535,
"properties": {
"facing": "south",
"half": "top",
@@ -228129,7 +234328,7 @@
}
},
{
- "id": 13067,
+ "id": 13536,
"properties": {
"facing": "south",
"half": "top",
@@ -228138,7 +234337,7 @@
}
},
{
- "id": 13068,
+ "id": 13537,
"properties": {
"facing": "south",
"half": "top",
@@ -228147,7 +234346,7 @@
}
},
{
- "id": 13069,
+ "id": 13538,
"properties": {
"facing": "south",
"half": "top",
@@ -228156,7 +234355,7 @@
}
},
{
- "id": 13070,
+ "id": 13539,
"properties": {
"facing": "south",
"half": "top",
@@ -228165,7 +234364,7 @@
}
},
{
- "id": 13071,
+ "id": 13540,
"properties": {
"facing": "south",
"half": "top",
@@ -228174,7 +234373,7 @@
}
},
{
- "id": 13072,
+ "id": 13541,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228183,7 +234382,7 @@
}
},
{
- "id": 13073,
+ "id": 13542,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228192,7 +234391,7 @@
}
},
{
- "id": 13074,
+ "id": 13543,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228201,7 +234400,7 @@
}
},
{
- "id": 13075,
+ "id": 13544,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228210,7 +234409,7 @@
}
},
{
- "id": 13076,
+ "id": 13545,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228219,7 +234418,7 @@
}
},
{
- "id": 13077,
+ "id": 13546,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228228,7 +234427,7 @@
}
},
{
- "id": 13078,
+ "id": 13547,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228237,7 +234436,7 @@
}
},
{
- "id": 13079,
+ "id": 13548,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228246,7 +234445,7 @@
}
},
{
- "id": 13080,
+ "id": 13549,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228255,7 +234454,7 @@
}
},
{
- "id": 13081,
+ "id": 13550,
"properties": {
"facing": "south",
"half": "bottom",
@@ -228264,7 +234463,7 @@
}
},
{
- "id": 13082,
+ "id": 13551,
"properties": {
"facing": "west",
"half": "top",
@@ -228273,7 +234472,7 @@
}
},
{
- "id": 13083,
+ "id": 13552,
"properties": {
"facing": "west",
"half": "top",
@@ -228282,7 +234481,7 @@
}
},
{
- "id": 13084,
+ "id": 13553,
"properties": {
"facing": "west",
"half": "top",
@@ -228291,7 +234490,7 @@
}
},
{
- "id": 13085,
+ "id": 13554,
"properties": {
"facing": "west",
"half": "top",
@@ -228300,7 +234499,7 @@
}
},
{
- "id": 13086,
+ "id": 13555,
"properties": {
"facing": "west",
"half": "top",
@@ -228309,7 +234508,7 @@
}
},
{
- "id": 13087,
+ "id": 13556,
"properties": {
"facing": "west",
"half": "top",
@@ -228318,7 +234517,7 @@
}
},
{
- "id": 13088,
+ "id": 13557,
"properties": {
"facing": "west",
"half": "top",
@@ -228327,7 +234526,7 @@
}
},
{
- "id": 13089,
+ "id": 13558,
"properties": {
"facing": "west",
"half": "top",
@@ -228336,7 +234535,7 @@
}
},
{
- "id": 13090,
+ "id": 13559,
"properties": {
"facing": "west",
"half": "top",
@@ -228345,7 +234544,7 @@
}
},
{
- "id": 13091,
+ "id": 13560,
"properties": {
"facing": "west",
"half": "top",
@@ -228354,7 +234553,7 @@
}
},
{
- "id": 13092,
+ "id": 13561,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228363,7 +234562,7 @@
}
},
{
- "id": 13093,
+ "id": 13562,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228372,7 +234571,7 @@
}
},
{
- "id": 13094,
+ "id": 13563,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228381,7 +234580,7 @@
}
},
{
- "id": 13095,
+ "id": 13564,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228390,7 +234589,7 @@
}
},
{
- "id": 13096,
+ "id": 13565,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228399,7 +234598,7 @@
}
},
{
- "id": 13097,
+ "id": 13566,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228408,7 +234607,7 @@
}
},
{
- "id": 13098,
+ "id": 13567,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228417,7 +234616,7 @@
}
},
{
- "id": 13099,
+ "id": 13568,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228426,7 +234625,7 @@
}
},
{
- "id": 13100,
+ "id": 13569,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228435,7 +234634,7 @@
}
},
{
- "id": 13101,
+ "id": 13570,
"properties": {
"facing": "west",
"half": "bottom",
@@ -228444,7 +234643,7 @@
}
},
{
- "id": 13102,
+ "id": 13571,
"properties": {
"facing": "east",
"half": "top",
@@ -228453,7 +234652,7 @@
}
},
{
- "id": 13103,
+ "id": 13572,
"properties": {
"facing": "east",
"half": "top",
@@ -228462,7 +234661,7 @@
}
},
{
- "id": 13104,
+ "id": 13573,
"properties": {
"facing": "east",
"half": "top",
@@ -228471,7 +234670,7 @@
}
},
{
- "id": 13105,
+ "id": 13574,
"properties": {
"facing": "east",
"half": "top",
@@ -228480,7 +234679,7 @@
}
},
{
- "id": 13106,
+ "id": 13575,
"properties": {
"facing": "east",
"half": "top",
@@ -228489,7 +234688,7 @@
}
},
{
- "id": 13107,
+ "id": 13576,
"properties": {
"facing": "east",
"half": "top",
@@ -228498,7 +234697,7 @@
}
},
{
- "id": 13108,
+ "id": 13577,
"properties": {
"facing": "east",
"half": "top",
@@ -228507,7 +234706,7 @@
}
},
{
- "id": 13109,
+ "id": 13578,
"properties": {
"facing": "east",
"half": "top",
@@ -228516,7 +234715,7 @@
}
},
{
- "id": 13110,
+ "id": 13579,
"properties": {
"facing": "east",
"half": "top",
@@ -228525,7 +234724,7 @@
}
},
{
- "id": 13111,
+ "id": 13580,
"properties": {
"facing": "east",
"half": "top",
@@ -228534,7 +234733,7 @@
}
},
{
- "id": 13112,
+ "id": 13581,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228543,7 +234742,7 @@
}
},
{
- "id": 13113,
+ "id": 13582,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228552,7 +234751,7 @@
}
},
{
- "id": 13114,
+ "id": 13583,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228561,7 +234760,7 @@
}
},
{
- "id": 13115,
+ "id": 13584,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228570,7 +234769,7 @@
}
},
{
- "id": 13116,
+ "id": 13585,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228579,7 +234778,7 @@
}
},
{
- "id": 13117,
+ "id": 13586,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228588,7 +234787,7 @@
}
},
{
- "id": 13118,
+ "id": 13587,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228597,7 +234796,7 @@
}
},
{
- "id": 13119,
+ "id": 13588,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228606,7 +234805,7 @@
}
},
{
- "id": 13120,
+ "id": 13589,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228615,7 +234814,7 @@
}
},
{
- "id": 13121,
+ "id": 13590,
"properties": {
"facing": "east",
"half": "bottom",
@@ -228633,7 +234832,7 @@
"states": [
{
"default": true,
- "id": 11307
+ "id": 11648
}
]
},
@@ -228655,21 +234854,21 @@
},
"states": [
{
- "id": 14118,
+ "id": 14587,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 14119,
+ "id": 14588,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 14120,
+ "id": 14589,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -228677,21 +234876,21 @@
},
{
"default": true,
- "id": 14121,
+ "id": 14590,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 14122,
+ "id": 14591,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 14123,
+ "id": 14592,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -228732,7 +234931,7 @@
},
"states": [
{
- "id": 13522,
+ "id": 13991,
"properties": {
"facing": "north",
"half": "top",
@@ -228741,7 +234940,7 @@
}
},
{
- "id": 13523,
+ "id": 13992,
"properties": {
"facing": "north",
"half": "top",
@@ -228750,7 +234949,7 @@
}
},
{
- "id": 13524,
+ "id": 13993,
"properties": {
"facing": "north",
"half": "top",
@@ -228759,7 +234958,7 @@
}
},
{
- "id": 13525,
+ "id": 13994,
"properties": {
"facing": "north",
"half": "top",
@@ -228768,7 +234967,7 @@
}
},
{
- "id": 13526,
+ "id": 13995,
"properties": {
"facing": "north",
"half": "top",
@@ -228777,7 +234976,7 @@
}
},
{
- "id": 13527,
+ "id": 13996,
"properties": {
"facing": "north",
"half": "top",
@@ -228786,7 +234985,7 @@
}
},
{
- "id": 13528,
+ "id": 13997,
"properties": {
"facing": "north",
"half": "top",
@@ -228795,7 +234994,7 @@
}
},
{
- "id": 13529,
+ "id": 13998,
"properties": {
"facing": "north",
"half": "top",
@@ -228804,7 +235003,7 @@
}
},
{
- "id": 13530,
+ "id": 13999,
"properties": {
"facing": "north",
"half": "top",
@@ -228813,7 +235012,7 @@
}
},
{
- "id": 13531,
+ "id": 14000,
"properties": {
"facing": "north",
"half": "top",
@@ -228822,7 +235021,7 @@
}
},
{
- "id": 13532,
+ "id": 14001,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228832,7 +235031,7 @@
},
{
"default": true,
- "id": 13533,
+ "id": 14002,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228841,7 +235040,7 @@
}
},
{
- "id": 13534,
+ "id": 14003,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228850,7 +235049,7 @@
}
},
{
- "id": 13535,
+ "id": 14004,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228859,7 +235058,7 @@
}
},
{
- "id": 13536,
+ "id": 14005,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228868,7 +235067,7 @@
}
},
{
- "id": 13537,
+ "id": 14006,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228877,7 +235076,7 @@
}
},
{
- "id": 13538,
+ "id": 14007,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228886,7 +235085,7 @@
}
},
{
- "id": 13539,
+ "id": 14008,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228895,7 +235094,7 @@
}
},
{
- "id": 13540,
+ "id": 14009,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228904,7 +235103,7 @@
}
},
{
- "id": 13541,
+ "id": 14010,
"properties": {
"facing": "north",
"half": "bottom",
@@ -228913,7 +235112,7 @@
}
},
{
- "id": 13542,
+ "id": 14011,
"properties": {
"facing": "south",
"half": "top",
@@ -228922,7 +235121,7 @@
}
},
{
- "id": 13543,
+ "id": 14012,
"properties": {
"facing": "south",
"half": "top",
@@ -228931,7 +235130,7 @@
}
},
{
- "id": 13544,
+ "id": 14013,
"properties": {
"facing": "south",
"half": "top",
@@ -228940,7 +235139,7 @@
}
},
{
- "id": 13545,
+ "id": 14014,
"properties": {
"facing": "south",
"half": "top",
@@ -228949,7 +235148,7 @@
}
},
{
- "id": 13546,
+ "id": 14015,
"properties": {
"facing": "south",
"half": "top",
@@ -228958,7 +235157,7 @@
}
},
{
- "id": 13547,
+ "id": 14016,
"properties": {
"facing": "south",
"half": "top",
@@ -228967,7 +235166,7 @@
}
},
{
- "id": 13548,
+ "id": 14017,
"properties": {
"facing": "south",
"half": "top",
@@ -228976,7 +235175,7 @@
}
},
{
- "id": 13549,
+ "id": 14018,
"properties": {
"facing": "south",
"half": "top",
@@ -228985,7 +235184,7 @@
}
},
{
- "id": 13550,
+ "id": 14019,
"properties": {
"facing": "south",
"half": "top",
@@ -228994,7 +235193,7 @@
}
},
{
- "id": 13551,
+ "id": 14020,
"properties": {
"facing": "south",
"half": "top",
@@ -229003,7 +235202,7 @@
}
},
{
- "id": 13552,
+ "id": 14021,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229012,7 +235211,7 @@
}
},
{
- "id": 13553,
+ "id": 14022,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229021,7 +235220,7 @@
}
},
{
- "id": 13554,
+ "id": 14023,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229030,7 +235229,7 @@
}
},
{
- "id": 13555,
+ "id": 14024,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229039,7 +235238,7 @@
}
},
{
- "id": 13556,
+ "id": 14025,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229048,7 +235247,7 @@
}
},
{
- "id": 13557,
+ "id": 14026,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229057,7 +235256,7 @@
}
},
{
- "id": 13558,
+ "id": 14027,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229066,7 +235265,7 @@
}
},
{
- "id": 13559,
+ "id": 14028,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229075,7 +235274,7 @@
}
},
{
- "id": 13560,
+ "id": 14029,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229084,7 +235283,7 @@
}
},
{
- "id": 13561,
+ "id": 14030,
"properties": {
"facing": "south",
"half": "bottom",
@@ -229093,7 +235292,7 @@
}
},
{
- "id": 13562,
+ "id": 14031,
"properties": {
"facing": "west",
"half": "top",
@@ -229102,7 +235301,7 @@
}
},
{
- "id": 13563,
+ "id": 14032,
"properties": {
"facing": "west",
"half": "top",
@@ -229111,7 +235310,7 @@
}
},
{
- "id": 13564,
+ "id": 14033,
"properties": {
"facing": "west",
"half": "top",
@@ -229120,7 +235319,7 @@
}
},
{
- "id": 13565,
+ "id": 14034,
"properties": {
"facing": "west",
"half": "top",
@@ -229129,7 +235328,7 @@
}
},
{
- "id": 13566,
+ "id": 14035,
"properties": {
"facing": "west",
"half": "top",
@@ -229138,7 +235337,7 @@
}
},
{
- "id": 13567,
+ "id": 14036,
"properties": {
"facing": "west",
"half": "top",
@@ -229147,7 +235346,7 @@
}
},
{
- "id": 13568,
+ "id": 14037,
"properties": {
"facing": "west",
"half": "top",
@@ -229156,7 +235355,7 @@
}
},
{
- "id": 13569,
+ "id": 14038,
"properties": {
"facing": "west",
"half": "top",
@@ -229165,7 +235364,7 @@
}
},
{
- "id": 13570,
+ "id": 14039,
"properties": {
"facing": "west",
"half": "top",
@@ -229174,7 +235373,7 @@
}
},
{
- "id": 13571,
+ "id": 14040,
"properties": {
"facing": "west",
"half": "top",
@@ -229183,7 +235382,7 @@
}
},
{
- "id": 13572,
+ "id": 14041,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229192,7 +235391,7 @@
}
},
{
- "id": 13573,
+ "id": 14042,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229201,7 +235400,7 @@
}
},
{
- "id": 13574,
+ "id": 14043,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229210,7 +235409,7 @@
}
},
{
- "id": 13575,
+ "id": 14044,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229219,7 +235418,7 @@
}
},
{
- "id": 13576,
+ "id": 14045,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229228,7 +235427,7 @@
}
},
{
- "id": 13577,
+ "id": 14046,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229237,7 +235436,7 @@
}
},
{
- "id": 13578,
+ "id": 14047,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229246,7 +235445,7 @@
}
},
{
- "id": 13579,
+ "id": 14048,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229255,7 +235454,7 @@
}
},
{
- "id": 13580,
+ "id": 14049,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229264,7 +235463,7 @@
}
},
{
- "id": 13581,
+ "id": 14050,
"properties": {
"facing": "west",
"half": "bottom",
@@ -229273,7 +235472,7 @@
}
},
{
- "id": 13582,
+ "id": 14051,
"properties": {
"facing": "east",
"half": "top",
@@ -229282,7 +235481,7 @@
}
},
{
- "id": 13583,
+ "id": 14052,
"properties": {
"facing": "east",
"half": "top",
@@ -229291,7 +235490,7 @@
}
},
{
- "id": 13584,
+ "id": 14053,
"properties": {
"facing": "east",
"half": "top",
@@ -229300,7 +235499,7 @@
}
},
{
- "id": 13585,
+ "id": 14054,
"properties": {
"facing": "east",
"half": "top",
@@ -229309,7 +235508,7 @@
}
},
{
- "id": 13586,
+ "id": 14055,
"properties": {
"facing": "east",
"half": "top",
@@ -229318,7 +235517,7 @@
}
},
{
- "id": 13587,
+ "id": 14056,
"properties": {
"facing": "east",
"half": "top",
@@ -229327,7 +235526,7 @@
}
},
{
- "id": 13588,
+ "id": 14057,
"properties": {
"facing": "east",
"half": "top",
@@ -229336,7 +235535,7 @@
}
},
{
- "id": 13589,
+ "id": 14058,
"properties": {
"facing": "east",
"half": "top",
@@ -229345,7 +235544,7 @@
}
},
{
- "id": 13590,
+ "id": 14059,
"properties": {
"facing": "east",
"half": "top",
@@ -229354,7 +235553,7 @@
}
},
{
- "id": 13591,
+ "id": 14060,
"properties": {
"facing": "east",
"half": "top",
@@ -229363,7 +235562,7 @@
}
},
{
- "id": 13592,
+ "id": 14061,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229372,7 +235571,7 @@
}
},
{
- "id": 13593,
+ "id": 14062,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229381,7 +235580,7 @@
}
},
{
- "id": 13594,
+ "id": 14063,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229390,7 +235589,7 @@
}
},
{
- "id": 13595,
+ "id": 14064,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229399,7 +235598,7 @@
}
},
{
- "id": 13596,
+ "id": 14065,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229408,7 +235607,7 @@
}
},
{
- "id": 13597,
+ "id": 14066,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229417,7 +235616,7 @@
}
},
{
- "id": 13598,
+ "id": 14067,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229426,7 +235625,7 @@
}
},
{
- "id": 13599,
+ "id": 14068,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229435,7 +235634,7 @@
}
},
{
- "id": 13600,
+ "id": 14069,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229444,7 +235643,7 @@
}
},
{
- "id": 13601,
+ "id": 14070,
"properties": {
"facing": "east",
"half": "bottom",
@@ -229462,7 +235661,7 @@
"states": [
{
"default": true,
- "id": 11306
+ "id": 11647
}
]
},
@@ -229484,21 +235683,21 @@
},
"states": [
{
- "id": 11228,
+ "id": 11569,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11229,
+ "id": 11570,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11230,
+ "id": 11571,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -229506,21 +235705,21 @@
},
{
"default": true,
- "id": 11231,
+ "id": 11572,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11232,
+ "id": 11573,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11233,
+ "id": 11574,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -229543,19 +235742,19 @@
"states": [
{
"default": true,
- "id": 12800,
+ "id": 13269,
"properties": {
"hatch": "0"
}
},
{
- "id": 12801,
+ "id": 13270,
"properties": {
"hatch": "1"
}
},
{
- "id": 12802,
+ "id": 13271,
"properties": {
"hatch": "2"
}
@@ -229582,49 +235781,49 @@
"states": [
{
"default": true,
- "id": 5772,
+ "id": 5938,
"properties": {
"layers": "1"
}
},
{
- "id": 5773,
+ "id": 5939,
"properties": {
"layers": "2"
}
},
{
- "id": 5774,
+ "id": 5940,
"properties": {
"layers": "3"
}
},
{
- "id": 5775,
+ "id": 5941,
"properties": {
"layers": "4"
}
},
{
- "id": 5776,
+ "id": 5942,
"properties": {
"layers": "5"
}
},
{
- "id": 5777,
+ "id": 5943,
"properties": {
"layers": "6"
}
},
{
- "id": 5778,
+ "id": 5944,
"properties": {
"layers": "7"
}
},
{
- "id": 5779,
+ "id": 5945,
"properties": {
"layers": "8"
}
@@ -229639,7 +235838,7 @@
"states": [
{
"default": true,
- "id": 5781
+ "id": 5947
}
]
},
@@ -229672,7 +235871,7 @@
},
"states": [
{
- "id": 18543,
+ "id": 19012,
"properties": {
"facing": "north",
"lit": "true",
@@ -229681,7 +235880,7 @@
}
},
{
- "id": 18544,
+ "id": 19013,
"properties": {
"facing": "north",
"lit": "true",
@@ -229690,7 +235889,7 @@
}
},
{
- "id": 18545,
+ "id": 19014,
"properties": {
"facing": "north",
"lit": "true",
@@ -229700,7 +235899,7 @@
},
{
"default": true,
- "id": 18546,
+ "id": 19015,
"properties": {
"facing": "north",
"lit": "true",
@@ -229709,7 +235908,7 @@
}
},
{
- "id": 18547,
+ "id": 19016,
"properties": {
"facing": "north",
"lit": "false",
@@ -229718,7 +235917,7 @@
}
},
{
- "id": 18548,
+ "id": 19017,
"properties": {
"facing": "north",
"lit": "false",
@@ -229727,7 +235926,7 @@
}
},
{
- "id": 18549,
+ "id": 19018,
"properties": {
"facing": "north",
"lit": "false",
@@ -229736,7 +235935,7 @@
}
},
{
- "id": 18550,
+ "id": 19019,
"properties": {
"facing": "north",
"lit": "false",
@@ -229745,7 +235944,7 @@
}
},
{
- "id": 18551,
+ "id": 19020,
"properties": {
"facing": "south",
"lit": "true",
@@ -229754,7 +235953,7 @@
}
},
{
- "id": 18552,
+ "id": 19021,
"properties": {
"facing": "south",
"lit": "true",
@@ -229763,7 +235962,7 @@
}
},
{
- "id": 18553,
+ "id": 19022,
"properties": {
"facing": "south",
"lit": "true",
@@ -229772,7 +235971,7 @@
}
},
{
- "id": 18554,
+ "id": 19023,
"properties": {
"facing": "south",
"lit": "true",
@@ -229781,7 +235980,7 @@
}
},
{
- "id": 18555,
+ "id": 19024,
"properties": {
"facing": "south",
"lit": "false",
@@ -229790,7 +235989,7 @@
}
},
{
- "id": 18556,
+ "id": 19025,
"properties": {
"facing": "south",
"lit": "false",
@@ -229799,7 +235998,7 @@
}
},
{
- "id": 18557,
+ "id": 19026,
"properties": {
"facing": "south",
"lit": "false",
@@ -229808,7 +236007,7 @@
}
},
{
- "id": 18558,
+ "id": 19027,
"properties": {
"facing": "south",
"lit": "false",
@@ -229817,7 +236016,7 @@
}
},
{
- "id": 18559,
+ "id": 19028,
"properties": {
"facing": "west",
"lit": "true",
@@ -229826,7 +236025,7 @@
}
},
{
- "id": 18560,
+ "id": 19029,
"properties": {
"facing": "west",
"lit": "true",
@@ -229835,7 +236034,7 @@
}
},
{
- "id": 18561,
+ "id": 19030,
"properties": {
"facing": "west",
"lit": "true",
@@ -229844,7 +236043,7 @@
}
},
{
- "id": 18562,
+ "id": 19031,
"properties": {
"facing": "west",
"lit": "true",
@@ -229853,7 +236052,7 @@
}
},
{
- "id": 18563,
+ "id": 19032,
"properties": {
"facing": "west",
"lit": "false",
@@ -229862,7 +236061,7 @@
}
},
{
- "id": 18564,
+ "id": 19033,
"properties": {
"facing": "west",
"lit": "false",
@@ -229871,7 +236070,7 @@
}
},
{
- "id": 18565,
+ "id": 19034,
"properties": {
"facing": "west",
"lit": "false",
@@ -229880,7 +236079,7 @@
}
},
{
- "id": 18566,
+ "id": 19035,
"properties": {
"facing": "west",
"lit": "false",
@@ -229889,7 +236088,7 @@
}
},
{
- "id": 18567,
+ "id": 19036,
"properties": {
"facing": "east",
"lit": "true",
@@ -229898,7 +236097,7 @@
}
},
{
- "id": 18568,
+ "id": 19037,
"properties": {
"facing": "east",
"lit": "true",
@@ -229907,7 +236106,7 @@
}
},
{
- "id": 18569,
+ "id": 19038,
"properties": {
"facing": "east",
"lit": "true",
@@ -229916,7 +236115,7 @@
}
},
{
- "id": 18570,
+ "id": 19039,
"properties": {
"facing": "east",
"lit": "true",
@@ -229925,7 +236124,7 @@
}
},
{
- "id": 18571,
+ "id": 19040,
"properties": {
"facing": "east",
"lit": "false",
@@ -229934,7 +236133,7 @@
}
},
{
- "id": 18572,
+ "id": 19041,
"properties": {
"facing": "east",
"lit": "false",
@@ -229943,7 +236142,7 @@
}
},
{
- "id": 18573,
+ "id": 19042,
"properties": {
"facing": "east",
"lit": "false",
@@ -229952,7 +236151,7 @@
}
},
{
- "id": 18574,
+ "id": 19043,
"properties": {
"facing": "east",
"lit": "false",
@@ -229970,7 +236169,7 @@
"states": [
{
"default": true,
- "id": 2872
+ "id": 2915
}
]
},
@@ -229991,21 +236190,21 @@
},
"states": [
{
- "id": 18507,
+ "id": 18976,
"properties": {
"hanging": "true",
"waterlogged": "true"
}
},
{
- "id": 18508,
+ "id": 18977,
"properties": {
"hanging": "true",
"waterlogged": "false"
}
},
{
- "id": 18509,
+ "id": 18978,
"properties": {
"hanging": "false",
"waterlogged": "true"
@@ -230013,7 +236212,7 @@
},
{
"default": true,
- "id": 18510,
+ "id": 18979,
"properties": {
"hanging": "false",
"waterlogged": "false"
@@ -230029,7 +236228,7 @@
"states": [
{
"default": true,
- "id": 5850
+ "id": 6016
}
]
},
@@ -230041,7 +236240,7 @@
"states": [
{
"default": true,
- "id": 5851
+ "id": 6017
}
]
},
@@ -230054,7 +236253,7 @@
"states": [
{
"default": true,
- "id": 5858
+ "id": 6024
}
]
},
@@ -230075,25 +236274,25 @@
"states": [
{
"default": true,
- "id": 5859,
+ "id": 6025,
"properties": {
"facing": "north"
}
},
{
- "id": 5860,
+ "id": 6026,
"properties": {
"facing": "south"
}
},
{
- "id": 5861,
+ "id": 6027,
"properties": {
"facing": "west"
}
},
{
- "id": 5862,
+ "id": 6028,
"properties": {
"facing": "east"
}
@@ -230108,7 +236307,7 @@
"states": [
{
"default": true,
- "id": 2873
+ "id": 2916
}
]
},
@@ -230120,7 +236319,7 @@
"states": [
{
"default": true,
- "id": 517
+ "id": 560
}
]
},
@@ -230132,7 +236331,7 @@
"states": [
{
"default": true,
- "id": 24823
+ "id": 25292
}
]
},
@@ -230162,7 +236361,7 @@
},
"states": [
{
- "id": 8635,
+ "id": 8866,
"properties": {
"face": "floor",
"facing": "north",
@@ -230170,7 +236369,7 @@
}
},
{
- "id": 8636,
+ "id": 8867,
"properties": {
"face": "floor",
"facing": "north",
@@ -230178,7 +236377,7 @@
}
},
{
- "id": 8637,
+ "id": 8868,
"properties": {
"face": "floor",
"facing": "south",
@@ -230186,7 +236385,7 @@
}
},
{
- "id": 8638,
+ "id": 8869,
"properties": {
"face": "floor",
"facing": "south",
@@ -230194,7 +236393,7 @@
}
},
{
- "id": 8639,
+ "id": 8870,
"properties": {
"face": "floor",
"facing": "west",
@@ -230202,7 +236401,7 @@
}
},
{
- "id": 8640,
+ "id": 8871,
"properties": {
"face": "floor",
"facing": "west",
@@ -230210,7 +236409,7 @@
}
},
{
- "id": 8641,
+ "id": 8872,
"properties": {
"face": "floor",
"facing": "east",
@@ -230218,7 +236417,7 @@
}
},
{
- "id": 8642,
+ "id": 8873,
"properties": {
"face": "floor",
"facing": "east",
@@ -230226,7 +236425,7 @@
}
},
{
- "id": 8643,
+ "id": 8874,
"properties": {
"face": "wall",
"facing": "north",
@@ -230235,7 +236434,7 @@
},
{
"default": true,
- "id": 8644,
+ "id": 8875,
"properties": {
"face": "wall",
"facing": "north",
@@ -230243,7 +236442,7 @@
}
},
{
- "id": 8645,
+ "id": 8876,
"properties": {
"face": "wall",
"facing": "south",
@@ -230251,7 +236450,7 @@
}
},
{
- "id": 8646,
+ "id": 8877,
"properties": {
"face": "wall",
"facing": "south",
@@ -230259,7 +236458,7 @@
}
},
{
- "id": 8647,
+ "id": 8878,
"properties": {
"face": "wall",
"facing": "west",
@@ -230267,7 +236466,7 @@
}
},
{
- "id": 8648,
+ "id": 8879,
"properties": {
"face": "wall",
"facing": "west",
@@ -230275,7 +236474,7 @@
}
},
{
- "id": 8649,
+ "id": 8880,
"properties": {
"face": "wall",
"facing": "east",
@@ -230283,7 +236482,7 @@
}
},
{
- "id": 8650,
+ "id": 8881,
"properties": {
"face": "wall",
"facing": "east",
@@ -230291,7 +236490,7 @@
}
},
{
- "id": 8651,
+ "id": 8882,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -230299,7 +236498,7 @@
}
},
{
- "id": 8652,
+ "id": 8883,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -230307,7 +236506,7 @@
}
},
{
- "id": 8653,
+ "id": 8884,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -230315,7 +236514,7 @@
}
},
{
- "id": 8654,
+ "id": 8885,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -230323,7 +236522,7 @@
}
},
{
- "id": 8655,
+ "id": 8886,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -230331,7 +236530,7 @@
}
},
{
- "id": 8656,
+ "id": 8887,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -230339,7 +236538,7 @@
}
},
{
- "id": 8657,
+ "id": 8888,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -230347,7 +236546,7 @@
}
},
{
- "id": 8658,
+ "id": 8889,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -230388,7 +236587,7 @@
},
"states": [
{
- "id": 11822,
+ "id": 12227,
"properties": {
"facing": "north",
"half": "upper",
@@ -230398,7 +236597,7 @@
}
},
{
- "id": 11823,
+ "id": 12228,
"properties": {
"facing": "north",
"half": "upper",
@@ -230408,7 +236607,7 @@
}
},
{
- "id": 11824,
+ "id": 12229,
"properties": {
"facing": "north",
"half": "upper",
@@ -230418,7 +236617,7 @@
}
},
{
- "id": 11825,
+ "id": 12230,
"properties": {
"facing": "north",
"half": "upper",
@@ -230428,7 +236627,7 @@
}
},
{
- "id": 11826,
+ "id": 12231,
"properties": {
"facing": "north",
"half": "upper",
@@ -230438,7 +236637,7 @@
}
},
{
- "id": 11827,
+ "id": 12232,
"properties": {
"facing": "north",
"half": "upper",
@@ -230448,7 +236647,7 @@
}
},
{
- "id": 11828,
+ "id": 12233,
"properties": {
"facing": "north",
"half": "upper",
@@ -230458,7 +236657,7 @@
}
},
{
- "id": 11829,
+ "id": 12234,
"properties": {
"facing": "north",
"half": "upper",
@@ -230468,7 +236667,7 @@
}
},
{
- "id": 11830,
+ "id": 12235,
"properties": {
"facing": "north",
"half": "lower",
@@ -230478,7 +236677,7 @@
}
},
{
- "id": 11831,
+ "id": 12236,
"properties": {
"facing": "north",
"half": "lower",
@@ -230488,7 +236687,7 @@
}
},
{
- "id": 11832,
+ "id": 12237,
"properties": {
"facing": "north",
"half": "lower",
@@ -230499,7 +236698,7 @@
},
{
"default": true,
- "id": 11833,
+ "id": 12238,
"properties": {
"facing": "north",
"half": "lower",
@@ -230509,7 +236708,7 @@
}
},
{
- "id": 11834,
+ "id": 12239,
"properties": {
"facing": "north",
"half": "lower",
@@ -230519,7 +236718,7 @@
}
},
{
- "id": 11835,
+ "id": 12240,
"properties": {
"facing": "north",
"half": "lower",
@@ -230529,7 +236728,7 @@
}
},
{
- "id": 11836,
+ "id": 12241,
"properties": {
"facing": "north",
"half": "lower",
@@ -230539,7 +236738,7 @@
}
},
{
- "id": 11837,
+ "id": 12242,
"properties": {
"facing": "north",
"half": "lower",
@@ -230549,7 +236748,7 @@
}
},
{
- "id": 11838,
+ "id": 12243,
"properties": {
"facing": "south",
"half": "upper",
@@ -230559,7 +236758,7 @@
}
},
{
- "id": 11839,
+ "id": 12244,
"properties": {
"facing": "south",
"half": "upper",
@@ -230569,7 +236768,7 @@
}
},
{
- "id": 11840,
+ "id": 12245,
"properties": {
"facing": "south",
"half": "upper",
@@ -230579,7 +236778,7 @@
}
},
{
- "id": 11841,
+ "id": 12246,
"properties": {
"facing": "south",
"half": "upper",
@@ -230589,7 +236788,7 @@
}
},
{
- "id": 11842,
+ "id": 12247,
"properties": {
"facing": "south",
"half": "upper",
@@ -230599,7 +236798,7 @@
}
},
{
- "id": 11843,
+ "id": 12248,
"properties": {
"facing": "south",
"half": "upper",
@@ -230609,7 +236808,7 @@
}
},
{
- "id": 11844,
+ "id": 12249,
"properties": {
"facing": "south",
"half": "upper",
@@ -230619,7 +236818,7 @@
}
},
{
- "id": 11845,
+ "id": 12250,
"properties": {
"facing": "south",
"half": "upper",
@@ -230629,7 +236828,7 @@
}
},
{
- "id": 11846,
+ "id": 12251,
"properties": {
"facing": "south",
"half": "lower",
@@ -230639,7 +236838,7 @@
}
},
{
- "id": 11847,
+ "id": 12252,
"properties": {
"facing": "south",
"half": "lower",
@@ -230649,7 +236848,7 @@
}
},
{
- "id": 11848,
+ "id": 12253,
"properties": {
"facing": "south",
"half": "lower",
@@ -230659,7 +236858,7 @@
}
},
{
- "id": 11849,
+ "id": 12254,
"properties": {
"facing": "south",
"half": "lower",
@@ -230669,7 +236868,7 @@
}
},
{
- "id": 11850,
+ "id": 12255,
"properties": {
"facing": "south",
"half": "lower",
@@ -230679,7 +236878,7 @@
}
},
{
- "id": 11851,
+ "id": 12256,
"properties": {
"facing": "south",
"half": "lower",
@@ -230689,7 +236888,7 @@
}
},
{
- "id": 11852,
+ "id": 12257,
"properties": {
"facing": "south",
"half": "lower",
@@ -230699,7 +236898,7 @@
}
},
{
- "id": 11853,
+ "id": 12258,
"properties": {
"facing": "south",
"half": "lower",
@@ -230709,7 +236908,7 @@
}
},
{
- "id": 11854,
+ "id": 12259,
"properties": {
"facing": "west",
"half": "upper",
@@ -230719,7 +236918,7 @@
}
},
{
- "id": 11855,
+ "id": 12260,
"properties": {
"facing": "west",
"half": "upper",
@@ -230729,7 +236928,7 @@
}
},
{
- "id": 11856,
+ "id": 12261,
"properties": {
"facing": "west",
"half": "upper",
@@ -230739,7 +236938,7 @@
}
},
{
- "id": 11857,
+ "id": 12262,
"properties": {
"facing": "west",
"half": "upper",
@@ -230749,7 +236948,7 @@
}
},
{
- "id": 11858,
+ "id": 12263,
"properties": {
"facing": "west",
"half": "upper",
@@ -230759,7 +236958,7 @@
}
},
{
- "id": 11859,
+ "id": 12264,
"properties": {
"facing": "west",
"half": "upper",
@@ -230769,7 +236968,7 @@
}
},
{
- "id": 11860,
+ "id": 12265,
"properties": {
"facing": "west",
"half": "upper",
@@ -230779,7 +236978,7 @@
}
},
{
- "id": 11861,
+ "id": 12266,
"properties": {
"facing": "west",
"half": "upper",
@@ -230789,7 +236988,7 @@
}
},
{
- "id": 11862,
+ "id": 12267,
"properties": {
"facing": "west",
"half": "lower",
@@ -230799,7 +236998,7 @@
}
},
{
- "id": 11863,
+ "id": 12268,
"properties": {
"facing": "west",
"half": "lower",
@@ -230809,7 +237008,7 @@
}
},
{
- "id": 11864,
+ "id": 12269,
"properties": {
"facing": "west",
"half": "lower",
@@ -230819,7 +237018,7 @@
}
},
{
- "id": 11865,
+ "id": 12270,
"properties": {
"facing": "west",
"half": "lower",
@@ -230829,7 +237028,7 @@
}
},
{
- "id": 11866,
+ "id": 12271,
"properties": {
"facing": "west",
"half": "lower",
@@ -230839,7 +237038,7 @@
}
},
{
- "id": 11867,
+ "id": 12272,
"properties": {
"facing": "west",
"half": "lower",
@@ -230849,7 +237048,7 @@
}
},
{
- "id": 11868,
+ "id": 12273,
"properties": {
"facing": "west",
"half": "lower",
@@ -230859,7 +237058,7 @@
}
},
{
- "id": 11869,
+ "id": 12274,
"properties": {
"facing": "west",
"half": "lower",
@@ -230869,7 +237068,7 @@
}
},
{
- "id": 11870,
+ "id": 12275,
"properties": {
"facing": "east",
"half": "upper",
@@ -230879,7 +237078,7 @@
}
},
{
- "id": 11871,
+ "id": 12276,
"properties": {
"facing": "east",
"half": "upper",
@@ -230889,7 +237088,7 @@
}
},
{
- "id": 11872,
+ "id": 12277,
"properties": {
"facing": "east",
"half": "upper",
@@ -230899,7 +237098,7 @@
}
},
{
- "id": 11873,
+ "id": 12278,
"properties": {
"facing": "east",
"half": "upper",
@@ -230909,7 +237108,7 @@
}
},
{
- "id": 11874,
+ "id": 12279,
"properties": {
"facing": "east",
"half": "upper",
@@ -230919,7 +237118,7 @@
}
},
{
- "id": 11875,
+ "id": 12280,
"properties": {
"facing": "east",
"half": "upper",
@@ -230929,7 +237128,7 @@
}
},
{
- "id": 11876,
+ "id": 12281,
"properties": {
"facing": "east",
"half": "upper",
@@ -230939,7 +237138,7 @@
}
},
{
- "id": 11877,
+ "id": 12282,
"properties": {
"facing": "east",
"half": "upper",
@@ -230949,7 +237148,7 @@
}
},
{
- "id": 11878,
+ "id": 12283,
"properties": {
"facing": "east",
"half": "lower",
@@ -230959,7 +237158,7 @@
}
},
{
- "id": 11879,
+ "id": 12284,
"properties": {
"facing": "east",
"half": "lower",
@@ -230969,7 +237168,7 @@
}
},
{
- "id": 11880,
+ "id": 12285,
"properties": {
"facing": "east",
"half": "lower",
@@ -230979,7 +237178,7 @@
}
},
{
- "id": 11881,
+ "id": 12286,
"properties": {
"facing": "east",
"half": "lower",
@@ -230989,7 +237188,7 @@
}
},
{
- "id": 11882,
+ "id": 12287,
"properties": {
"facing": "east",
"half": "lower",
@@ -230999,7 +237198,7 @@
}
},
{
- "id": 11883,
+ "id": 12288,
"properties": {
"facing": "east",
"half": "lower",
@@ -231009,7 +237208,7 @@
}
},
{
- "id": 11884,
+ "id": 12289,
"properties": {
"facing": "east",
"half": "lower",
@@ -231019,7 +237218,7 @@
}
},
{
- "id": 11885,
+ "id": 12290,
"properties": {
"facing": "east",
"half": "lower",
@@ -231059,7 +237258,7 @@
},
"states": [
{
- "id": 11566,
+ "id": 11939,
"properties": {
"east": "true",
"north": "true",
@@ -231069,7 +237268,7 @@
}
},
{
- "id": 11567,
+ "id": 11940,
"properties": {
"east": "true",
"north": "true",
@@ -231079,7 +237278,7 @@
}
},
{
- "id": 11568,
+ "id": 11941,
"properties": {
"east": "true",
"north": "true",
@@ -231089,7 +237288,7 @@
}
},
{
- "id": 11569,
+ "id": 11942,
"properties": {
"east": "true",
"north": "true",
@@ -231099,7 +237298,7 @@
}
},
{
- "id": 11570,
+ "id": 11943,
"properties": {
"east": "true",
"north": "true",
@@ -231109,7 +237308,7 @@
}
},
{
- "id": 11571,
+ "id": 11944,
"properties": {
"east": "true",
"north": "true",
@@ -231119,7 +237318,7 @@
}
},
{
- "id": 11572,
+ "id": 11945,
"properties": {
"east": "true",
"north": "true",
@@ -231129,7 +237328,7 @@
}
},
{
- "id": 11573,
+ "id": 11946,
"properties": {
"east": "true",
"north": "true",
@@ -231139,7 +237338,7 @@
}
},
{
- "id": 11574,
+ "id": 11947,
"properties": {
"east": "true",
"north": "false",
@@ -231149,7 +237348,7 @@
}
},
{
- "id": 11575,
+ "id": 11948,
"properties": {
"east": "true",
"north": "false",
@@ -231159,7 +237358,7 @@
}
},
{
- "id": 11576,
+ "id": 11949,
"properties": {
"east": "true",
"north": "false",
@@ -231169,7 +237368,7 @@
}
},
{
- "id": 11577,
+ "id": 11950,
"properties": {
"east": "true",
"north": "false",
@@ -231179,7 +237378,7 @@
}
},
{
- "id": 11578,
+ "id": 11951,
"properties": {
"east": "true",
"north": "false",
@@ -231189,7 +237388,7 @@
}
},
{
- "id": 11579,
+ "id": 11952,
"properties": {
"east": "true",
"north": "false",
@@ -231199,7 +237398,7 @@
}
},
{
- "id": 11580,
+ "id": 11953,
"properties": {
"east": "true",
"north": "false",
@@ -231209,7 +237408,7 @@
}
},
{
- "id": 11581,
+ "id": 11954,
"properties": {
"east": "true",
"north": "false",
@@ -231219,7 +237418,7 @@
}
},
{
- "id": 11582,
+ "id": 11955,
"properties": {
"east": "false",
"north": "true",
@@ -231229,7 +237428,7 @@
}
},
{
- "id": 11583,
+ "id": 11956,
"properties": {
"east": "false",
"north": "true",
@@ -231239,7 +237438,7 @@
}
},
{
- "id": 11584,
+ "id": 11957,
"properties": {
"east": "false",
"north": "true",
@@ -231249,7 +237448,7 @@
}
},
{
- "id": 11585,
+ "id": 11958,
"properties": {
"east": "false",
"north": "true",
@@ -231259,7 +237458,7 @@
}
},
{
- "id": 11586,
+ "id": 11959,
"properties": {
"east": "false",
"north": "true",
@@ -231269,7 +237468,7 @@
}
},
{
- "id": 11587,
+ "id": 11960,
"properties": {
"east": "false",
"north": "true",
@@ -231279,7 +237478,7 @@
}
},
{
- "id": 11588,
+ "id": 11961,
"properties": {
"east": "false",
"north": "true",
@@ -231289,7 +237488,7 @@
}
},
{
- "id": 11589,
+ "id": 11962,
"properties": {
"east": "false",
"north": "true",
@@ -231299,7 +237498,7 @@
}
},
{
- "id": 11590,
+ "id": 11963,
"properties": {
"east": "false",
"north": "false",
@@ -231309,7 +237508,7 @@
}
},
{
- "id": 11591,
+ "id": 11964,
"properties": {
"east": "false",
"north": "false",
@@ -231319,7 +237518,7 @@
}
},
{
- "id": 11592,
+ "id": 11965,
"properties": {
"east": "false",
"north": "false",
@@ -231329,7 +237528,7 @@
}
},
{
- "id": 11593,
+ "id": 11966,
"properties": {
"east": "false",
"north": "false",
@@ -231339,7 +237538,7 @@
}
},
{
- "id": 11594,
+ "id": 11967,
"properties": {
"east": "false",
"north": "false",
@@ -231349,7 +237548,7 @@
}
},
{
- "id": 11595,
+ "id": 11968,
"properties": {
"east": "false",
"north": "false",
@@ -231359,7 +237558,7 @@
}
},
{
- "id": 11596,
+ "id": 11969,
"properties": {
"east": "false",
"north": "false",
@@ -231370,7 +237569,7 @@
},
{
"default": true,
- "id": 11597,
+ "id": 11970,
"properties": {
"east": "false",
"north": "false",
@@ -231409,7 +237608,7 @@
},
"states": [
{
- "id": 11310,
+ "id": 11651,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -231418,7 +237617,7 @@
}
},
{
- "id": 11311,
+ "id": 11652,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -231427,7 +237626,7 @@
}
},
{
- "id": 11312,
+ "id": 11653,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -231436,7 +237635,7 @@
}
},
{
- "id": 11313,
+ "id": 11654,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -231445,7 +237644,7 @@
}
},
{
- "id": 11314,
+ "id": 11655,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -231454,7 +237653,7 @@
}
},
{
- "id": 11315,
+ "id": 11656,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -231463,7 +237662,7 @@
}
},
{
- "id": 11316,
+ "id": 11657,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -231473,7 +237672,7 @@
},
{
"default": true,
- "id": 11317,
+ "id": 11658,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -231482,7 +237681,7 @@
}
},
{
- "id": 11318,
+ "id": 11659,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -231491,7 +237690,7 @@
}
},
{
- "id": 11319,
+ "id": 11660,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -231500,7 +237699,7 @@
}
},
{
- "id": 11320,
+ "id": 11661,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -231509,7 +237708,7 @@
}
},
{
- "id": 11321,
+ "id": 11662,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -231518,7 +237717,7 @@
}
},
{
- "id": 11322,
+ "id": 11663,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -231527,7 +237726,7 @@
}
},
{
- "id": 11323,
+ "id": 11664,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -231536,7 +237735,7 @@
}
},
{
- "id": 11324,
+ "id": 11665,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -231545,7 +237744,7 @@
}
},
{
- "id": 11325,
+ "id": 11666,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -231554,7 +237753,7 @@
}
},
{
- "id": 11326,
+ "id": 11667,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -231563,7 +237762,7 @@
}
},
{
- "id": 11327,
+ "id": 11668,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -231572,7 +237771,7 @@
}
},
{
- "id": 11328,
+ "id": 11669,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -231581,7 +237780,7 @@
}
},
{
- "id": 11329,
+ "id": 11670,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -231590,7 +237789,7 @@
}
},
{
- "id": 11330,
+ "id": 11671,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -231599,7 +237798,7 @@
}
},
{
- "id": 11331,
+ "id": 11672,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -231608,7 +237807,7 @@
}
},
{
- "id": 11332,
+ "id": 11673,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -231617,7 +237816,7 @@
}
},
{
- "id": 11333,
+ "id": 11674,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -231626,7 +237825,7 @@
}
},
{
- "id": 11334,
+ "id": 11675,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -231635,7 +237834,7 @@
}
},
{
- "id": 11335,
+ "id": 11676,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -231644,7 +237843,7 @@
}
},
{
- "id": 11336,
+ "id": 11677,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -231653,7 +237852,7 @@
}
},
{
- "id": 11337,
+ "id": 11678,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -231662,7 +237861,7 @@
}
},
{
- "id": 11338,
+ "id": 11679,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -231671,7 +237870,7 @@
}
},
{
- "id": 11339,
+ "id": 11680,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -231680,7 +237879,7 @@
}
},
{
- "id": 11340,
+ "id": 11681,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -231689,7 +237888,7 @@
}
},
{
- "id": 11341,
+ "id": 11682,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -231735,7 +237934,7 @@
},
"states": [
{
- "id": 4898,
+ "id": 4990,
"properties": {
"attached": "true",
"rotation": "0",
@@ -231743,7 +237942,7 @@
}
},
{
- "id": 4899,
+ "id": 4991,
"properties": {
"attached": "true",
"rotation": "0",
@@ -231751,7 +237950,7 @@
}
},
{
- "id": 4900,
+ "id": 4992,
"properties": {
"attached": "true",
"rotation": "1",
@@ -231759,7 +237958,7 @@
}
},
{
- "id": 4901,
+ "id": 4993,
"properties": {
"attached": "true",
"rotation": "1",
@@ -231767,7 +237966,7 @@
}
},
{
- "id": 4902,
+ "id": 4994,
"properties": {
"attached": "true",
"rotation": "2",
@@ -231775,7 +237974,7 @@
}
},
{
- "id": 4903,
+ "id": 4995,
"properties": {
"attached": "true",
"rotation": "2",
@@ -231783,7 +237982,7 @@
}
},
{
- "id": 4904,
+ "id": 4996,
"properties": {
"attached": "true",
"rotation": "3",
@@ -231791,7 +237990,7 @@
}
},
{
- "id": 4905,
+ "id": 4997,
"properties": {
"attached": "true",
"rotation": "3",
@@ -231799,7 +237998,7 @@
}
},
{
- "id": 4906,
+ "id": 4998,
"properties": {
"attached": "true",
"rotation": "4",
@@ -231807,7 +238006,7 @@
}
},
{
- "id": 4907,
+ "id": 4999,
"properties": {
"attached": "true",
"rotation": "4",
@@ -231815,7 +238014,7 @@
}
},
{
- "id": 4908,
+ "id": 5000,
"properties": {
"attached": "true",
"rotation": "5",
@@ -231823,7 +238022,7 @@
}
},
{
- "id": 4909,
+ "id": 5001,
"properties": {
"attached": "true",
"rotation": "5",
@@ -231831,7 +238030,7 @@
}
},
{
- "id": 4910,
+ "id": 5002,
"properties": {
"attached": "true",
"rotation": "6",
@@ -231839,7 +238038,7 @@
}
},
{
- "id": 4911,
+ "id": 5003,
"properties": {
"attached": "true",
"rotation": "6",
@@ -231847,7 +238046,7 @@
}
},
{
- "id": 4912,
+ "id": 5004,
"properties": {
"attached": "true",
"rotation": "7",
@@ -231855,7 +238054,7 @@
}
},
{
- "id": 4913,
+ "id": 5005,
"properties": {
"attached": "true",
"rotation": "7",
@@ -231863,7 +238062,7 @@
}
},
{
- "id": 4914,
+ "id": 5006,
"properties": {
"attached": "true",
"rotation": "8",
@@ -231871,7 +238070,7 @@
}
},
{
- "id": 4915,
+ "id": 5007,
"properties": {
"attached": "true",
"rotation": "8",
@@ -231879,7 +238078,7 @@
}
},
{
- "id": 4916,
+ "id": 5008,
"properties": {
"attached": "true",
"rotation": "9",
@@ -231887,7 +238086,7 @@
}
},
{
- "id": 4917,
+ "id": 5009,
"properties": {
"attached": "true",
"rotation": "9",
@@ -231895,7 +238094,7 @@
}
},
{
- "id": 4918,
+ "id": 5010,
"properties": {
"attached": "true",
"rotation": "10",
@@ -231903,7 +238102,7 @@
}
},
{
- "id": 4919,
+ "id": 5011,
"properties": {
"attached": "true",
"rotation": "10",
@@ -231911,7 +238110,7 @@
}
},
{
- "id": 4920,
+ "id": 5012,
"properties": {
"attached": "true",
"rotation": "11",
@@ -231919,7 +238118,7 @@
}
},
{
- "id": 4921,
+ "id": 5013,
"properties": {
"attached": "true",
"rotation": "11",
@@ -231927,7 +238126,7 @@
}
},
{
- "id": 4922,
+ "id": 5014,
"properties": {
"attached": "true",
"rotation": "12",
@@ -231935,7 +238134,7 @@
}
},
{
- "id": 4923,
+ "id": 5015,
"properties": {
"attached": "true",
"rotation": "12",
@@ -231943,7 +238142,7 @@
}
},
{
- "id": 4924,
+ "id": 5016,
"properties": {
"attached": "true",
"rotation": "13",
@@ -231951,7 +238150,7 @@
}
},
{
- "id": 4925,
+ "id": 5017,
"properties": {
"attached": "true",
"rotation": "13",
@@ -231959,7 +238158,7 @@
}
},
{
- "id": 4926,
+ "id": 5018,
"properties": {
"attached": "true",
"rotation": "14",
@@ -231967,7 +238166,7 @@
}
},
{
- "id": 4927,
+ "id": 5019,
"properties": {
"attached": "true",
"rotation": "14",
@@ -231975,7 +238174,7 @@
}
},
{
- "id": 4928,
+ "id": 5020,
"properties": {
"attached": "true",
"rotation": "15",
@@ -231983,7 +238182,7 @@
}
},
{
- "id": 4929,
+ "id": 5021,
"properties": {
"attached": "true",
"rotation": "15",
@@ -231991,7 +238190,7 @@
}
},
{
- "id": 4930,
+ "id": 5022,
"properties": {
"attached": "false",
"rotation": "0",
@@ -232000,7 +238199,7 @@
},
{
"default": true,
- "id": 4931,
+ "id": 5023,
"properties": {
"attached": "false",
"rotation": "0",
@@ -232008,7 +238207,7 @@
}
},
{
- "id": 4932,
+ "id": 5024,
"properties": {
"attached": "false",
"rotation": "1",
@@ -232016,7 +238215,7 @@
}
},
{
- "id": 4933,
+ "id": 5025,
"properties": {
"attached": "false",
"rotation": "1",
@@ -232024,7 +238223,7 @@
}
},
{
- "id": 4934,
+ "id": 5026,
"properties": {
"attached": "false",
"rotation": "2",
@@ -232032,7 +238231,7 @@
}
},
{
- "id": 4935,
+ "id": 5027,
"properties": {
"attached": "false",
"rotation": "2",
@@ -232040,7 +238239,7 @@
}
},
{
- "id": 4936,
+ "id": 5028,
"properties": {
"attached": "false",
"rotation": "3",
@@ -232048,7 +238247,7 @@
}
},
{
- "id": 4937,
+ "id": 5029,
"properties": {
"attached": "false",
"rotation": "3",
@@ -232056,7 +238255,7 @@
}
},
{
- "id": 4938,
+ "id": 5030,
"properties": {
"attached": "false",
"rotation": "4",
@@ -232064,7 +238263,7 @@
}
},
{
- "id": 4939,
+ "id": 5031,
"properties": {
"attached": "false",
"rotation": "4",
@@ -232072,7 +238271,7 @@
}
},
{
- "id": 4940,
+ "id": 5032,
"properties": {
"attached": "false",
"rotation": "5",
@@ -232080,7 +238279,7 @@
}
},
{
- "id": 4941,
+ "id": 5033,
"properties": {
"attached": "false",
"rotation": "5",
@@ -232088,7 +238287,7 @@
}
},
{
- "id": 4942,
+ "id": 5034,
"properties": {
"attached": "false",
"rotation": "6",
@@ -232096,7 +238295,7 @@
}
},
{
- "id": 4943,
+ "id": 5035,
"properties": {
"attached": "false",
"rotation": "6",
@@ -232104,7 +238303,7 @@
}
},
{
- "id": 4944,
+ "id": 5036,
"properties": {
"attached": "false",
"rotation": "7",
@@ -232112,7 +238311,7 @@
}
},
{
- "id": 4945,
+ "id": 5037,
"properties": {
"attached": "false",
"rotation": "7",
@@ -232120,7 +238319,7 @@
}
},
{
- "id": 4946,
+ "id": 5038,
"properties": {
"attached": "false",
"rotation": "8",
@@ -232128,7 +238327,7 @@
}
},
{
- "id": 4947,
+ "id": 5039,
"properties": {
"attached": "false",
"rotation": "8",
@@ -232136,7 +238335,7 @@
}
},
{
- "id": 4948,
+ "id": 5040,
"properties": {
"attached": "false",
"rotation": "9",
@@ -232144,7 +238343,7 @@
}
},
{
- "id": 4949,
+ "id": 5041,
"properties": {
"attached": "false",
"rotation": "9",
@@ -232152,7 +238351,7 @@
}
},
{
- "id": 4950,
+ "id": 5042,
"properties": {
"attached": "false",
"rotation": "10",
@@ -232160,7 +238359,7 @@
}
},
{
- "id": 4951,
+ "id": 5043,
"properties": {
"attached": "false",
"rotation": "10",
@@ -232168,7 +238367,7 @@
}
},
{
- "id": 4952,
+ "id": 5044,
"properties": {
"attached": "false",
"rotation": "11",
@@ -232176,7 +238375,7 @@
}
},
{
- "id": 4953,
+ "id": 5045,
"properties": {
"attached": "false",
"rotation": "11",
@@ -232184,7 +238383,7 @@
}
},
{
- "id": 4954,
+ "id": 5046,
"properties": {
"attached": "false",
"rotation": "12",
@@ -232192,7 +238391,7 @@
}
},
{
- "id": 4955,
+ "id": 5047,
"properties": {
"attached": "false",
"rotation": "12",
@@ -232200,7 +238399,7 @@
}
},
{
- "id": 4956,
+ "id": 5048,
"properties": {
"attached": "false",
"rotation": "13",
@@ -232208,7 +238407,7 @@
}
},
{
- "id": 4957,
+ "id": 5049,
"properties": {
"attached": "false",
"rotation": "13",
@@ -232216,7 +238415,7 @@
}
},
{
- "id": 4958,
+ "id": 5050,
"properties": {
"attached": "false",
"rotation": "14",
@@ -232224,7 +238423,7 @@
}
},
{
- "id": 4959,
+ "id": 5051,
"properties": {
"attached": "false",
"rotation": "14",
@@ -232232,7 +238431,7 @@
}
},
{
- "id": 4960,
+ "id": 5052,
"properties": {
"attached": "false",
"rotation": "15",
@@ -232240,7 +238439,7 @@
}
},
{
- "id": 4961,
+ "id": 5053,
"properties": {
"attached": "false",
"rotation": "15",
@@ -232274,160 +238473,160 @@
]
},
"states": [
- {
- "id": 265,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 266,
- "properties": {
- "distance": "1",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 267,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 268,
- "properties": {
- "distance": "1",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 269,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 270,
- "properties": {
- "distance": "2",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 271,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 272,
- "properties": {
- "distance": "2",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 273,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 274,
- "properties": {
- "distance": "3",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 275,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
- {
- "id": 276,
- "properties": {
- "distance": "3",
- "persistent": "false",
- "waterlogged": "false"
- }
- },
- {
- "id": 277,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "true"
- }
- },
- {
- "id": 278,
- "properties": {
- "distance": "4",
- "persistent": "true",
- "waterlogged": "false"
- }
- },
- {
- "id": 279,
- "properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "true"
- }
- },
{
"id": 280,
"properties": {
- "distance": "4",
- "persistent": "false",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "true",
+ "waterlogged": "true"
}
},
{
"id": 281,
"properties": {
- "distance": "5",
+ "distance": "1",
"persistent": "true",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 282,
"properties": {
- "distance": "5",
- "persistent": "true",
- "waterlogged": "false"
+ "distance": "1",
+ "persistent": "false",
+ "waterlogged": "true"
}
},
{
"id": 283,
"properties": {
- "distance": "5",
+ "distance": "1",
"persistent": "false",
- "waterlogged": "true"
+ "waterlogged": "false"
}
},
{
"id": 284,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 285,
+ "properties": {
+ "distance": "2",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 286,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 287,
+ "properties": {
+ "distance": "2",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 288,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 289,
+ "properties": {
+ "distance": "3",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 290,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 291,
+ "properties": {
+ "distance": "3",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 292,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 293,
+ "properties": {
+ "distance": "4",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 294,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 295,
+ "properties": {
+ "distance": "4",
+ "persistent": "false",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 296,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 297,
+ "properties": {
+ "distance": "5",
+ "persistent": "true",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 298,
+ "properties": {
+ "distance": "5",
+ "persistent": "false",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 299,
"properties": {
"distance": "5",
"persistent": "false",
@@ -232435,7 +238634,7 @@
}
},
{
- "id": 285,
+ "id": 300,
"properties": {
"distance": "6",
"persistent": "true",
@@ -232443,7 +238642,7 @@
}
},
{
- "id": 286,
+ "id": 301,
"properties": {
"distance": "6",
"persistent": "true",
@@ -232451,7 +238650,7 @@
}
},
{
- "id": 287,
+ "id": 302,
"properties": {
"distance": "6",
"persistent": "false",
@@ -232459,7 +238658,7 @@
}
},
{
- "id": 288,
+ "id": 303,
"properties": {
"distance": "6",
"persistent": "false",
@@ -232467,7 +238666,7 @@
}
},
{
- "id": 289,
+ "id": 304,
"properties": {
"distance": "7",
"persistent": "true",
@@ -232475,7 +238674,7 @@
}
},
{
- "id": 290,
+ "id": 305,
"properties": {
"distance": "7",
"persistent": "true",
@@ -232483,7 +238682,7 @@
}
},
{
- "id": 291,
+ "id": 306,
"properties": {
"distance": "7",
"persistent": "false",
@@ -232492,7 +238691,7 @@
},
{
"default": true,
- "id": 292,
+ "id": 307,
"properties": {
"distance": "7",
"persistent": "false",
@@ -232515,20 +238714,20 @@
},
"states": [
{
- "id": 133,
+ "id": 139,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 134,
+ "id": 140,
"properties": {
"axis": "y"
}
},
{
- "id": 135,
+ "id": 141,
"properties": {
"axis": "z"
}
@@ -232561,14 +238760,14 @@
},
"states": [
{
- "id": 5718,
+ "id": 5882,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5719,
+ "id": 5883,
"properties": {
"powered": "false"
}
@@ -232590,13 +238789,13 @@
"states": [
{
"default": true,
- "id": 27,
+ "id": 31,
"properties": {
"stage": "0"
}
},
{
- "id": 28,
+ "id": 32,
"properties": {
"stage": "1"
}
@@ -232635,7 +238834,7 @@
},
"states": [
{
- "id": 4334,
+ "id": 4386,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -232643,217 +238842,217 @@
},
{
"default": true,
- "id": 4335,
+ "id": 4387,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 4336,
+ "id": 4388,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 4337,
+ "id": 4389,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 4338,
+ "id": 4390,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 4339,
+ "id": 4391,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 4340,
+ "id": 4392,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 4341,
+ "id": 4393,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 4342,
+ "id": 4394,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 4343,
+ "id": 4395,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 4344,
+ "id": 4396,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 4345,
+ "id": 4397,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 4346,
+ "id": 4398,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 4347,
+ "id": 4399,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 4348,
+ "id": 4400,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 4349,
+ "id": 4401,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 4350,
+ "id": 4402,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 4351,
+ "id": 4403,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 4352,
+ "id": 4404,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 4353,
+ "id": 4405,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 4354,
+ "id": 4406,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 4355,
+ "id": 4407,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 4356,
+ "id": 4408,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 4357,
+ "id": 4409,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 4358,
+ "id": 4410,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 4359,
+ "id": 4411,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 4360,
+ "id": 4412,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 4361,
+ "id": 4413,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 4362,
+ "id": 4414,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 4363,
+ "id": 4415,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 4364,
+ "id": 4416,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 4365,
+ "id": 4417,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -232879,21 +239078,21 @@
},
"states": [
{
- "id": 11168,
+ "id": 11503,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11169,
+ "id": 11504,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11170,
+ "id": 11505,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -232901,21 +239100,21 @@
},
{
"default": true,
- "id": 11171,
+ "id": 11506,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11172,
+ "id": 11507,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11173,
+ "id": 11508,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -232956,7 +239155,7 @@
},
"states": [
{
- "id": 7666,
+ "id": 7896,
"properties": {
"facing": "north",
"half": "top",
@@ -232965,7 +239164,7 @@
}
},
{
- "id": 7667,
+ "id": 7897,
"properties": {
"facing": "north",
"half": "top",
@@ -232974,7 +239173,7 @@
}
},
{
- "id": 7668,
+ "id": 7898,
"properties": {
"facing": "north",
"half": "top",
@@ -232983,7 +239182,7 @@
}
},
{
- "id": 7669,
+ "id": 7899,
"properties": {
"facing": "north",
"half": "top",
@@ -232992,7 +239191,7 @@
}
},
{
- "id": 7670,
+ "id": 7900,
"properties": {
"facing": "north",
"half": "top",
@@ -233001,7 +239200,7 @@
}
},
{
- "id": 7671,
+ "id": 7901,
"properties": {
"facing": "north",
"half": "top",
@@ -233010,7 +239209,7 @@
}
},
{
- "id": 7672,
+ "id": 7902,
"properties": {
"facing": "north",
"half": "top",
@@ -233019,7 +239218,7 @@
}
},
{
- "id": 7673,
+ "id": 7903,
"properties": {
"facing": "north",
"half": "top",
@@ -233028,7 +239227,7 @@
}
},
{
- "id": 7674,
+ "id": 7904,
"properties": {
"facing": "north",
"half": "top",
@@ -233037,7 +239236,7 @@
}
},
{
- "id": 7675,
+ "id": 7905,
"properties": {
"facing": "north",
"half": "top",
@@ -233046,7 +239245,7 @@
}
},
{
- "id": 7676,
+ "id": 7906,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233056,7 +239255,7 @@
},
{
"default": true,
- "id": 7677,
+ "id": 7907,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233065,7 +239264,7 @@
}
},
{
- "id": 7678,
+ "id": 7908,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233074,7 +239273,7 @@
}
},
{
- "id": 7679,
+ "id": 7909,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233083,7 +239282,7 @@
}
},
{
- "id": 7680,
+ "id": 7910,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233092,7 +239291,7 @@
}
},
{
- "id": 7681,
+ "id": 7911,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233101,7 +239300,7 @@
}
},
{
- "id": 7682,
+ "id": 7912,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233110,7 +239309,7 @@
}
},
{
- "id": 7683,
+ "id": 7913,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233119,7 +239318,7 @@
}
},
{
- "id": 7684,
+ "id": 7914,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233128,7 +239327,7 @@
}
},
{
- "id": 7685,
+ "id": 7915,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233137,7 +239336,7 @@
}
},
{
- "id": 7686,
+ "id": 7916,
"properties": {
"facing": "south",
"half": "top",
@@ -233146,7 +239345,7 @@
}
},
{
- "id": 7687,
+ "id": 7917,
"properties": {
"facing": "south",
"half": "top",
@@ -233155,7 +239354,7 @@
}
},
{
- "id": 7688,
+ "id": 7918,
"properties": {
"facing": "south",
"half": "top",
@@ -233164,7 +239363,7 @@
}
},
{
- "id": 7689,
+ "id": 7919,
"properties": {
"facing": "south",
"half": "top",
@@ -233173,7 +239372,7 @@
}
},
{
- "id": 7690,
+ "id": 7920,
"properties": {
"facing": "south",
"half": "top",
@@ -233182,7 +239381,7 @@
}
},
{
- "id": 7691,
+ "id": 7921,
"properties": {
"facing": "south",
"half": "top",
@@ -233191,7 +239390,7 @@
}
},
{
- "id": 7692,
+ "id": 7922,
"properties": {
"facing": "south",
"half": "top",
@@ -233200,7 +239399,7 @@
}
},
{
- "id": 7693,
+ "id": 7923,
"properties": {
"facing": "south",
"half": "top",
@@ -233209,7 +239408,7 @@
}
},
{
- "id": 7694,
+ "id": 7924,
"properties": {
"facing": "south",
"half": "top",
@@ -233218,7 +239417,7 @@
}
},
{
- "id": 7695,
+ "id": 7925,
"properties": {
"facing": "south",
"half": "top",
@@ -233227,7 +239426,7 @@
}
},
{
- "id": 7696,
+ "id": 7926,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233236,7 +239435,7 @@
}
},
{
- "id": 7697,
+ "id": 7927,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233245,7 +239444,7 @@
}
},
{
- "id": 7698,
+ "id": 7928,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233254,7 +239453,7 @@
}
},
{
- "id": 7699,
+ "id": 7929,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233263,7 +239462,7 @@
}
},
{
- "id": 7700,
+ "id": 7930,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233272,7 +239471,7 @@
}
},
{
- "id": 7701,
+ "id": 7931,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233281,7 +239480,7 @@
}
},
{
- "id": 7702,
+ "id": 7932,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233290,7 +239489,7 @@
}
},
{
- "id": 7703,
+ "id": 7933,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233299,7 +239498,7 @@
}
},
{
- "id": 7704,
+ "id": 7934,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233308,7 +239507,7 @@
}
},
{
- "id": 7705,
+ "id": 7935,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233317,7 +239516,7 @@
}
},
{
- "id": 7706,
+ "id": 7936,
"properties": {
"facing": "west",
"half": "top",
@@ -233326,7 +239525,7 @@
}
},
{
- "id": 7707,
+ "id": 7937,
"properties": {
"facing": "west",
"half": "top",
@@ -233335,7 +239534,7 @@
}
},
{
- "id": 7708,
+ "id": 7938,
"properties": {
"facing": "west",
"half": "top",
@@ -233344,7 +239543,7 @@
}
},
{
- "id": 7709,
+ "id": 7939,
"properties": {
"facing": "west",
"half": "top",
@@ -233353,7 +239552,7 @@
}
},
{
- "id": 7710,
+ "id": 7940,
"properties": {
"facing": "west",
"half": "top",
@@ -233362,7 +239561,7 @@
}
},
{
- "id": 7711,
+ "id": 7941,
"properties": {
"facing": "west",
"half": "top",
@@ -233371,7 +239570,7 @@
}
},
{
- "id": 7712,
+ "id": 7942,
"properties": {
"facing": "west",
"half": "top",
@@ -233380,7 +239579,7 @@
}
},
{
- "id": 7713,
+ "id": 7943,
"properties": {
"facing": "west",
"half": "top",
@@ -233389,7 +239588,7 @@
}
},
{
- "id": 7714,
+ "id": 7944,
"properties": {
"facing": "west",
"half": "top",
@@ -233398,7 +239597,7 @@
}
},
{
- "id": 7715,
+ "id": 7945,
"properties": {
"facing": "west",
"half": "top",
@@ -233407,7 +239606,7 @@
}
},
{
- "id": 7716,
+ "id": 7946,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233416,7 +239615,7 @@
}
},
{
- "id": 7717,
+ "id": 7947,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233425,7 +239624,7 @@
}
},
{
- "id": 7718,
+ "id": 7948,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233434,7 +239633,7 @@
}
},
{
- "id": 7719,
+ "id": 7949,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233443,7 +239642,7 @@
}
},
{
- "id": 7720,
+ "id": 7950,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233452,7 +239651,7 @@
}
},
{
- "id": 7721,
+ "id": 7951,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233461,7 +239660,7 @@
}
},
{
- "id": 7722,
+ "id": 7952,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233470,7 +239669,7 @@
}
},
{
- "id": 7723,
+ "id": 7953,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233479,7 +239678,7 @@
}
},
{
- "id": 7724,
+ "id": 7954,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233488,7 +239687,7 @@
}
},
{
- "id": 7725,
+ "id": 7955,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233497,7 +239696,7 @@
}
},
{
- "id": 7726,
+ "id": 7956,
"properties": {
"facing": "east",
"half": "top",
@@ -233506,7 +239705,7 @@
}
},
{
- "id": 7727,
+ "id": 7957,
"properties": {
"facing": "east",
"half": "top",
@@ -233515,7 +239714,7 @@
}
},
{
- "id": 7728,
+ "id": 7958,
"properties": {
"facing": "east",
"half": "top",
@@ -233524,7 +239723,7 @@
}
},
{
- "id": 7729,
+ "id": 7959,
"properties": {
"facing": "east",
"half": "top",
@@ -233533,7 +239732,7 @@
}
},
{
- "id": 7730,
+ "id": 7960,
"properties": {
"facing": "east",
"half": "top",
@@ -233542,7 +239741,7 @@
}
},
{
- "id": 7731,
+ "id": 7961,
"properties": {
"facing": "east",
"half": "top",
@@ -233551,7 +239750,7 @@
}
},
{
- "id": 7732,
+ "id": 7962,
"properties": {
"facing": "east",
"half": "top",
@@ -233560,7 +239759,7 @@
}
},
{
- "id": 7733,
+ "id": 7963,
"properties": {
"facing": "east",
"half": "top",
@@ -233569,7 +239768,7 @@
}
},
{
- "id": 7734,
+ "id": 7964,
"properties": {
"facing": "east",
"half": "top",
@@ -233578,7 +239777,7 @@
}
},
{
- "id": 7735,
+ "id": 7965,
"properties": {
"facing": "east",
"half": "top",
@@ -233587,7 +239786,7 @@
}
},
{
- "id": 7736,
+ "id": 7966,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233596,7 +239795,7 @@
}
},
{
- "id": 7737,
+ "id": 7967,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233605,7 +239804,7 @@
}
},
{
- "id": 7738,
+ "id": 7968,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233614,7 +239813,7 @@
}
},
{
- "id": 7739,
+ "id": 7969,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233623,7 +239822,7 @@
}
},
{
- "id": 7740,
+ "id": 7970,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233632,7 +239831,7 @@
}
},
{
- "id": 7741,
+ "id": 7971,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233641,7 +239840,7 @@
}
},
{
- "id": 7742,
+ "id": 7972,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233650,7 +239849,7 @@
}
},
{
- "id": 7743,
+ "id": 7973,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233659,7 +239858,7 @@
}
},
{
- "id": 7744,
+ "id": 7974,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233668,7 +239867,7 @@
}
},
{
- "id": 7745,
+ "id": 7975,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233710,7 +239909,7 @@
},
"states": [
{
- "id": 6025,
+ "id": 6191,
"properties": {
"facing": "north",
"half": "top",
@@ -233720,7 +239919,7 @@
}
},
{
- "id": 6026,
+ "id": 6192,
"properties": {
"facing": "north",
"half": "top",
@@ -233730,7 +239929,7 @@
}
},
{
- "id": 6027,
+ "id": 6193,
"properties": {
"facing": "north",
"half": "top",
@@ -233740,7 +239939,7 @@
}
},
{
- "id": 6028,
+ "id": 6194,
"properties": {
"facing": "north",
"half": "top",
@@ -233750,7 +239949,7 @@
}
},
{
- "id": 6029,
+ "id": 6195,
"properties": {
"facing": "north",
"half": "top",
@@ -233760,7 +239959,7 @@
}
},
{
- "id": 6030,
+ "id": 6196,
"properties": {
"facing": "north",
"half": "top",
@@ -233770,7 +239969,7 @@
}
},
{
- "id": 6031,
+ "id": 6197,
"properties": {
"facing": "north",
"half": "top",
@@ -233780,7 +239979,7 @@
}
},
{
- "id": 6032,
+ "id": 6198,
"properties": {
"facing": "north",
"half": "top",
@@ -233790,7 +239989,7 @@
}
},
{
- "id": 6033,
+ "id": 6199,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233800,7 +239999,7 @@
}
},
{
- "id": 6034,
+ "id": 6200,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233810,7 +240009,7 @@
}
},
{
- "id": 6035,
+ "id": 6201,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233820,7 +240019,7 @@
}
},
{
- "id": 6036,
+ "id": 6202,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233830,7 +240029,7 @@
}
},
{
- "id": 6037,
+ "id": 6203,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233840,7 +240039,7 @@
}
},
{
- "id": 6038,
+ "id": 6204,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233850,7 +240049,7 @@
}
},
{
- "id": 6039,
+ "id": 6205,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233861,7 +240060,7 @@
},
{
"default": true,
- "id": 6040,
+ "id": 6206,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233871,7 +240070,7 @@
}
},
{
- "id": 6041,
+ "id": 6207,
"properties": {
"facing": "south",
"half": "top",
@@ -233881,7 +240080,7 @@
}
},
{
- "id": 6042,
+ "id": 6208,
"properties": {
"facing": "south",
"half": "top",
@@ -233891,7 +240090,7 @@
}
},
{
- "id": 6043,
+ "id": 6209,
"properties": {
"facing": "south",
"half": "top",
@@ -233901,7 +240100,7 @@
}
},
{
- "id": 6044,
+ "id": 6210,
"properties": {
"facing": "south",
"half": "top",
@@ -233911,7 +240110,7 @@
}
},
{
- "id": 6045,
+ "id": 6211,
"properties": {
"facing": "south",
"half": "top",
@@ -233921,7 +240120,7 @@
}
},
{
- "id": 6046,
+ "id": 6212,
"properties": {
"facing": "south",
"half": "top",
@@ -233931,7 +240130,7 @@
}
},
{
- "id": 6047,
+ "id": 6213,
"properties": {
"facing": "south",
"half": "top",
@@ -233941,7 +240140,7 @@
}
},
{
- "id": 6048,
+ "id": 6214,
"properties": {
"facing": "south",
"half": "top",
@@ -233951,7 +240150,7 @@
}
},
{
- "id": 6049,
+ "id": 6215,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233961,7 +240160,7 @@
}
},
{
- "id": 6050,
+ "id": 6216,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233971,7 +240170,7 @@
}
},
{
- "id": 6051,
+ "id": 6217,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233981,7 +240180,7 @@
}
},
{
- "id": 6052,
+ "id": 6218,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233991,7 +240190,7 @@
}
},
{
- "id": 6053,
+ "id": 6219,
"properties": {
"facing": "south",
"half": "bottom",
@@ -234001,7 +240200,7 @@
}
},
{
- "id": 6054,
+ "id": 6220,
"properties": {
"facing": "south",
"half": "bottom",
@@ -234011,7 +240210,7 @@
}
},
{
- "id": 6055,
+ "id": 6221,
"properties": {
"facing": "south",
"half": "bottom",
@@ -234021,7 +240220,7 @@
}
},
{
- "id": 6056,
+ "id": 6222,
"properties": {
"facing": "south",
"half": "bottom",
@@ -234031,7 +240230,7 @@
}
},
{
- "id": 6057,
+ "id": 6223,
"properties": {
"facing": "west",
"half": "top",
@@ -234041,7 +240240,7 @@
}
},
{
- "id": 6058,
+ "id": 6224,
"properties": {
"facing": "west",
"half": "top",
@@ -234051,7 +240250,7 @@
}
},
{
- "id": 6059,
+ "id": 6225,
"properties": {
"facing": "west",
"half": "top",
@@ -234061,7 +240260,7 @@
}
},
{
- "id": 6060,
+ "id": 6226,
"properties": {
"facing": "west",
"half": "top",
@@ -234071,7 +240270,7 @@
}
},
{
- "id": 6061,
+ "id": 6227,
"properties": {
"facing": "west",
"half": "top",
@@ -234081,7 +240280,7 @@
}
},
{
- "id": 6062,
+ "id": 6228,
"properties": {
"facing": "west",
"half": "top",
@@ -234091,7 +240290,7 @@
}
},
{
- "id": 6063,
+ "id": 6229,
"properties": {
"facing": "west",
"half": "top",
@@ -234101,7 +240300,7 @@
}
},
{
- "id": 6064,
+ "id": 6230,
"properties": {
"facing": "west",
"half": "top",
@@ -234111,7 +240310,7 @@
}
},
{
- "id": 6065,
+ "id": 6231,
"properties": {
"facing": "west",
"half": "bottom",
@@ -234121,7 +240320,7 @@
}
},
{
- "id": 6066,
+ "id": 6232,
"properties": {
"facing": "west",
"half": "bottom",
@@ -234131,7 +240330,7 @@
}
},
{
- "id": 6067,
+ "id": 6233,
"properties": {
"facing": "west",
"half": "bottom",
@@ -234141,7 +240340,7 @@
}
},
{
- "id": 6068,
+ "id": 6234,
"properties": {
"facing": "west",
"half": "bottom",
@@ -234151,7 +240350,7 @@
}
},
{
- "id": 6069,
+ "id": 6235,
"properties": {
"facing": "west",
"half": "bottom",
@@ -234161,7 +240360,7 @@
}
},
{
- "id": 6070,
+ "id": 6236,
"properties": {
"facing": "west",
"half": "bottom",
@@ -234171,7 +240370,7 @@
}
},
{
- "id": 6071,
+ "id": 6237,
"properties": {
"facing": "west",
"half": "bottom",
@@ -234181,7 +240380,7 @@
}
},
{
- "id": 6072,
+ "id": 6238,
"properties": {
"facing": "west",
"half": "bottom",
@@ -234191,7 +240390,7 @@
}
},
{
- "id": 6073,
+ "id": 6239,
"properties": {
"facing": "east",
"half": "top",
@@ -234201,7 +240400,7 @@
}
},
{
- "id": 6074,
+ "id": 6240,
"properties": {
"facing": "east",
"half": "top",
@@ -234211,7 +240410,7 @@
}
},
{
- "id": 6075,
+ "id": 6241,
"properties": {
"facing": "east",
"half": "top",
@@ -234221,7 +240420,7 @@
}
},
{
- "id": 6076,
+ "id": 6242,
"properties": {
"facing": "east",
"half": "top",
@@ -234231,7 +240430,7 @@
}
},
{
- "id": 6077,
+ "id": 6243,
"properties": {
"facing": "east",
"half": "top",
@@ -234241,7 +240440,7 @@
}
},
{
- "id": 6078,
+ "id": 6244,
"properties": {
"facing": "east",
"half": "top",
@@ -234251,7 +240450,7 @@
}
},
{
- "id": 6079,
+ "id": 6245,
"properties": {
"facing": "east",
"half": "top",
@@ -234261,7 +240460,7 @@
}
},
{
- "id": 6080,
+ "id": 6246,
"properties": {
"facing": "east",
"half": "top",
@@ -234271,7 +240470,7 @@
}
},
{
- "id": 6081,
+ "id": 6247,
"properties": {
"facing": "east",
"half": "bottom",
@@ -234281,7 +240480,7 @@
}
},
{
- "id": 6082,
+ "id": 6248,
"properties": {
"facing": "east",
"half": "bottom",
@@ -234291,7 +240490,7 @@
}
},
{
- "id": 6083,
+ "id": 6249,
"properties": {
"facing": "east",
"half": "bottom",
@@ -234301,7 +240500,7 @@
}
},
{
- "id": 6084,
+ "id": 6250,
"properties": {
"facing": "east",
"half": "bottom",
@@ -234311,7 +240510,7 @@
}
},
{
- "id": 6085,
+ "id": 6251,
"properties": {
"facing": "east",
"half": "bottom",
@@ -234321,7 +240520,7 @@
}
},
{
- "id": 6086,
+ "id": 6252,
"properties": {
"facing": "east",
"half": "bottom",
@@ -234331,7 +240530,7 @@
}
},
{
- "id": 6087,
+ "id": 6253,
"properties": {
"facing": "east",
"half": "bottom",
@@ -234341,7 +240540,7 @@
}
},
{
- "id": 6088,
+ "id": 6254,
"properties": {
"facing": "east",
"half": "bottom",
@@ -234372,7 +240571,7 @@
},
"states": [
{
- "id": 5546,
+ "id": 5702,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -234380,49 +240579,49 @@
},
{
"default": true,
- "id": 5547,
+ "id": 5703,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5548,
+ "id": 5704,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5549,
+ "id": 5705,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5550,
+ "id": 5706,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5551,
+ "id": 5707,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5552,
+ "id": 5708,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5553,
+ "id": 5709,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -234450,7 +240649,7 @@
},
"states": [
{
- "id": 4770,
+ "id": 4854,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -234458,49 +240657,49 @@
},
{
"default": true,
- "id": 4771,
+ "id": 4855,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 4772,
+ "id": 4856,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 4773,
+ "id": 4857,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 4774,
+ "id": 4858,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 4775,
+ "id": 4859,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 4776,
+ "id": 4860,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 4777,
+ "id": 4861,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -234522,20 +240721,20 @@
},
"states": [
{
- "id": 192,
+ "id": 204,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 193,
+ "id": 205,
"properties": {
"axis": "y"
}
},
{
- "id": 194,
+ "id": 206,
"properties": {
"axis": "z"
}
@@ -234564,42 +240763,42 @@
},
"states": [
{
- "id": 1992,
+ "id": 2035,
"properties": {
"extended": "true",
"facing": "north"
}
},
{
- "id": 1993,
+ "id": 2036,
"properties": {
"extended": "true",
"facing": "east"
}
},
{
- "id": 1994,
+ "id": 2037,
"properties": {
"extended": "true",
"facing": "south"
}
},
{
- "id": 1995,
+ "id": 2038,
"properties": {
"extended": "true",
"facing": "west"
}
},
{
- "id": 1996,
+ "id": 2039,
"properties": {
"extended": "true",
"facing": "up"
}
},
{
- "id": 1997,
+ "id": 2040,
"properties": {
"extended": "true",
"facing": "down"
@@ -234607,42 +240806,42 @@
},
{
"default": true,
- "id": 1998,
+ "id": 2041,
"properties": {
"extended": "false",
"facing": "north"
}
},
{
- "id": 1999,
+ "id": 2042,
"properties": {
"extended": "false",
"facing": "east"
}
},
{
- "id": 2000,
+ "id": 2043,
"properties": {
"extended": "false",
"facing": "south"
}
},
{
- "id": 2001,
+ "id": 2044,
"properties": {
"extended": "false",
"facing": "west"
}
},
{
- "id": 2002,
+ "id": 2045,
"properties": {
"extended": "false",
"facing": "up"
}
},
{
- "id": 2003,
+ "id": 2046,
"properties": {
"extended": "false",
"facing": "down"
@@ -234680,21 +240879,21 @@
},
"states": [
{
- "id": 11264,
+ "id": 11605,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11265,
+ "id": 11606,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11266,
+ "id": 11607,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -234702,21 +240901,21 @@
},
{
"default": true,
- "id": 11267,
+ "id": 11608,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11268,
+ "id": 11609,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11269,
+ "id": 11610,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -234757,7 +240956,7 @@
},
"states": [
{
- "id": 7109,
+ "id": 7339,
"properties": {
"facing": "north",
"half": "top",
@@ -234766,7 +240965,7 @@
}
},
{
- "id": 7110,
+ "id": 7340,
"properties": {
"facing": "north",
"half": "top",
@@ -234775,7 +240974,7 @@
}
},
{
- "id": 7111,
+ "id": 7341,
"properties": {
"facing": "north",
"half": "top",
@@ -234784,7 +240983,7 @@
}
},
{
- "id": 7112,
+ "id": 7342,
"properties": {
"facing": "north",
"half": "top",
@@ -234793,7 +240992,7 @@
}
},
{
- "id": 7113,
+ "id": 7343,
"properties": {
"facing": "north",
"half": "top",
@@ -234802,7 +241001,7 @@
}
},
{
- "id": 7114,
+ "id": 7344,
"properties": {
"facing": "north",
"half": "top",
@@ -234811,7 +241010,7 @@
}
},
{
- "id": 7115,
+ "id": 7345,
"properties": {
"facing": "north",
"half": "top",
@@ -234820,7 +241019,7 @@
}
},
{
- "id": 7116,
+ "id": 7346,
"properties": {
"facing": "north",
"half": "top",
@@ -234829,7 +241028,7 @@
}
},
{
- "id": 7117,
+ "id": 7347,
"properties": {
"facing": "north",
"half": "top",
@@ -234838,7 +241037,7 @@
}
},
{
- "id": 7118,
+ "id": 7348,
"properties": {
"facing": "north",
"half": "top",
@@ -234847,7 +241046,7 @@
}
},
{
- "id": 7119,
+ "id": 7349,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234857,7 +241056,7 @@
},
{
"default": true,
- "id": 7120,
+ "id": 7350,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234866,7 +241065,7 @@
}
},
{
- "id": 7121,
+ "id": 7351,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234875,7 +241074,7 @@
}
},
{
- "id": 7122,
+ "id": 7352,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234884,7 +241083,7 @@
}
},
{
- "id": 7123,
+ "id": 7353,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234893,7 +241092,7 @@
}
},
{
- "id": 7124,
+ "id": 7354,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234902,7 +241101,7 @@
}
},
{
- "id": 7125,
+ "id": 7355,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234911,7 +241110,7 @@
}
},
{
- "id": 7126,
+ "id": 7356,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234920,7 +241119,7 @@
}
},
{
- "id": 7127,
+ "id": 7357,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234929,7 +241128,7 @@
}
},
{
- "id": 7128,
+ "id": 7358,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234938,7 +241137,7 @@
}
},
{
- "id": 7129,
+ "id": 7359,
"properties": {
"facing": "south",
"half": "top",
@@ -234947,7 +241146,7 @@
}
},
{
- "id": 7130,
+ "id": 7360,
"properties": {
"facing": "south",
"half": "top",
@@ -234956,7 +241155,7 @@
}
},
{
- "id": 7131,
+ "id": 7361,
"properties": {
"facing": "south",
"half": "top",
@@ -234965,7 +241164,7 @@
}
},
{
- "id": 7132,
+ "id": 7362,
"properties": {
"facing": "south",
"half": "top",
@@ -234974,7 +241173,7 @@
}
},
{
- "id": 7133,
+ "id": 7363,
"properties": {
"facing": "south",
"half": "top",
@@ -234983,7 +241182,7 @@
}
},
{
- "id": 7134,
+ "id": 7364,
"properties": {
"facing": "south",
"half": "top",
@@ -234992,7 +241191,7 @@
}
},
{
- "id": 7135,
+ "id": 7365,
"properties": {
"facing": "south",
"half": "top",
@@ -235001,7 +241200,7 @@
}
},
{
- "id": 7136,
+ "id": 7366,
"properties": {
"facing": "south",
"half": "top",
@@ -235010,7 +241209,7 @@
}
},
{
- "id": 7137,
+ "id": 7367,
"properties": {
"facing": "south",
"half": "top",
@@ -235019,7 +241218,7 @@
}
},
{
- "id": 7138,
+ "id": 7368,
"properties": {
"facing": "south",
"half": "top",
@@ -235028,7 +241227,7 @@
}
},
{
- "id": 7139,
+ "id": 7369,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235037,7 +241236,7 @@
}
},
{
- "id": 7140,
+ "id": 7370,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235046,7 +241245,7 @@
}
},
{
- "id": 7141,
+ "id": 7371,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235055,7 +241254,7 @@
}
},
{
- "id": 7142,
+ "id": 7372,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235064,7 +241263,7 @@
}
},
{
- "id": 7143,
+ "id": 7373,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235073,7 +241272,7 @@
}
},
{
- "id": 7144,
+ "id": 7374,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235082,7 +241281,7 @@
}
},
{
- "id": 7145,
+ "id": 7375,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235091,7 +241290,7 @@
}
},
{
- "id": 7146,
+ "id": 7376,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235100,7 +241299,7 @@
}
},
{
- "id": 7147,
+ "id": 7377,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235109,7 +241308,7 @@
}
},
{
- "id": 7148,
+ "id": 7378,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235118,7 +241317,7 @@
}
},
{
- "id": 7149,
+ "id": 7379,
"properties": {
"facing": "west",
"half": "top",
@@ -235127,7 +241326,7 @@
}
},
{
- "id": 7150,
+ "id": 7380,
"properties": {
"facing": "west",
"half": "top",
@@ -235136,7 +241335,7 @@
}
},
{
- "id": 7151,
+ "id": 7381,
"properties": {
"facing": "west",
"half": "top",
@@ -235145,7 +241344,7 @@
}
},
{
- "id": 7152,
+ "id": 7382,
"properties": {
"facing": "west",
"half": "top",
@@ -235154,7 +241353,7 @@
}
},
{
- "id": 7153,
+ "id": 7383,
"properties": {
"facing": "west",
"half": "top",
@@ -235163,7 +241362,7 @@
}
},
{
- "id": 7154,
+ "id": 7384,
"properties": {
"facing": "west",
"half": "top",
@@ -235172,7 +241371,7 @@
}
},
{
- "id": 7155,
+ "id": 7385,
"properties": {
"facing": "west",
"half": "top",
@@ -235181,7 +241380,7 @@
}
},
{
- "id": 7156,
+ "id": 7386,
"properties": {
"facing": "west",
"half": "top",
@@ -235190,7 +241389,7 @@
}
},
{
- "id": 7157,
+ "id": 7387,
"properties": {
"facing": "west",
"half": "top",
@@ -235199,7 +241398,7 @@
}
},
{
- "id": 7158,
+ "id": 7388,
"properties": {
"facing": "west",
"half": "top",
@@ -235208,7 +241407,7 @@
}
},
{
- "id": 7159,
+ "id": 7389,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235217,7 +241416,7 @@
}
},
{
- "id": 7160,
+ "id": 7390,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235226,7 +241425,7 @@
}
},
{
- "id": 7161,
+ "id": 7391,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235235,7 +241434,7 @@
}
},
{
- "id": 7162,
+ "id": 7392,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235244,7 +241443,7 @@
}
},
{
- "id": 7163,
+ "id": 7393,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235253,7 +241452,7 @@
}
},
{
- "id": 7164,
+ "id": 7394,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235262,7 +241461,7 @@
}
},
{
- "id": 7165,
+ "id": 7395,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235271,7 +241470,7 @@
}
},
{
- "id": 7166,
+ "id": 7396,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235280,7 +241479,7 @@
}
},
{
- "id": 7167,
+ "id": 7397,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235289,7 +241488,7 @@
}
},
{
- "id": 7168,
+ "id": 7398,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235298,7 +241497,7 @@
}
},
{
- "id": 7169,
+ "id": 7399,
"properties": {
"facing": "east",
"half": "top",
@@ -235307,7 +241506,7 @@
}
},
{
- "id": 7170,
+ "id": 7400,
"properties": {
"facing": "east",
"half": "top",
@@ -235316,7 +241515,7 @@
}
},
{
- "id": 7171,
+ "id": 7401,
"properties": {
"facing": "east",
"half": "top",
@@ -235325,7 +241524,7 @@
}
},
{
- "id": 7172,
+ "id": 7402,
"properties": {
"facing": "east",
"half": "top",
@@ -235334,7 +241533,7 @@
}
},
{
- "id": 7173,
+ "id": 7403,
"properties": {
"facing": "east",
"half": "top",
@@ -235343,7 +241542,7 @@
}
},
{
- "id": 7174,
+ "id": 7404,
"properties": {
"facing": "east",
"half": "top",
@@ -235352,7 +241551,7 @@
}
},
{
- "id": 7175,
+ "id": 7405,
"properties": {
"facing": "east",
"half": "top",
@@ -235361,7 +241560,7 @@
}
},
{
- "id": 7176,
+ "id": 7406,
"properties": {
"facing": "east",
"half": "top",
@@ -235370,7 +241569,7 @@
}
},
{
- "id": 7177,
+ "id": 7407,
"properties": {
"facing": "east",
"half": "top",
@@ -235379,7 +241578,7 @@
}
},
{
- "id": 7178,
+ "id": 7408,
"properties": {
"facing": "east",
"half": "top",
@@ -235388,7 +241587,7 @@
}
},
{
- "id": 7179,
+ "id": 7409,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235397,7 +241596,7 @@
}
},
{
- "id": 7180,
+ "id": 7410,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235406,7 +241605,7 @@
}
},
{
- "id": 7181,
+ "id": 7411,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235415,7 +241614,7 @@
}
},
{
- "id": 7182,
+ "id": 7412,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235424,7 +241623,7 @@
}
},
{
- "id": 7183,
+ "id": 7413,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235433,7 +241632,7 @@
}
},
{
- "id": 7184,
+ "id": 7414,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235442,7 +241641,7 @@
}
},
{
- "id": 7185,
+ "id": 7415,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235451,7 +241650,7 @@
}
},
{
- "id": 7186,
+ "id": 7416,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235460,7 +241659,7 @@
}
},
{
- "id": 7187,
+ "id": 7417,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235469,7 +241668,7 @@
}
},
{
- "id": 7188,
+ "id": 7418,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235516,7 +241715,7 @@
},
"states": [
{
- "id": 15780,
+ "id": 16249,
"properties": {
"east": "none",
"north": "none",
@@ -235527,7 +241726,7 @@
}
},
{
- "id": 15781,
+ "id": 16250,
"properties": {
"east": "none",
"north": "none",
@@ -235538,7 +241737,7 @@
}
},
{
- "id": 15782,
+ "id": 16251,
"properties": {
"east": "none",
"north": "none",
@@ -235550,7 +241749,7 @@
},
{
"default": true,
- "id": 15783,
+ "id": 16252,
"properties": {
"east": "none",
"north": "none",
@@ -235561,7 +241760,7 @@
}
},
{
- "id": 15784,
+ "id": 16253,
"properties": {
"east": "none",
"north": "none",
@@ -235572,7 +241771,7 @@
}
},
{
- "id": 15785,
+ "id": 16254,
"properties": {
"east": "none",
"north": "none",
@@ -235583,7 +241782,7 @@
}
},
{
- "id": 15786,
+ "id": 16255,
"properties": {
"east": "none",
"north": "none",
@@ -235594,7 +241793,7 @@
}
},
{
- "id": 15787,
+ "id": 16256,
"properties": {
"east": "none",
"north": "none",
@@ -235605,7 +241804,7 @@
}
},
{
- "id": 15788,
+ "id": 16257,
"properties": {
"east": "none",
"north": "none",
@@ -235616,7 +241815,7 @@
}
},
{
- "id": 15789,
+ "id": 16258,
"properties": {
"east": "none",
"north": "none",
@@ -235627,7 +241826,7 @@
}
},
{
- "id": 15790,
+ "id": 16259,
"properties": {
"east": "none",
"north": "none",
@@ -235638,7 +241837,7 @@
}
},
{
- "id": 15791,
+ "id": 16260,
"properties": {
"east": "none",
"north": "none",
@@ -235649,7 +241848,7 @@
}
},
{
- "id": 15792,
+ "id": 16261,
"properties": {
"east": "none",
"north": "none",
@@ -235660,7 +241859,7 @@
}
},
{
- "id": 15793,
+ "id": 16262,
"properties": {
"east": "none",
"north": "none",
@@ -235671,7 +241870,7 @@
}
},
{
- "id": 15794,
+ "id": 16263,
"properties": {
"east": "none",
"north": "none",
@@ -235682,7 +241881,7 @@
}
},
{
- "id": 15795,
+ "id": 16264,
"properties": {
"east": "none",
"north": "none",
@@ -235693,7 +241892,7 @@
}
},
{
- "id": 15796,
+ "id": 16265,
"properties": {
"east": "none",
"north": "none",
@@ -235704,7 +241903,7 @@
}
},
{
- "id": 15797,
+ "id": 16266,
"properties": {
"east": "none",
"north": "none",
@@ -235715,7 +241914,7 @@
}
},
{
- "id": 15798,
+ "id": 16267,
"properties": {
"east": "none",
"north": "none",
@@ -235726,7 +241925,7 @@
}
},
{
- "id": 15799,
+ "id": 16268,
"properties": {
"east": "none",
"north": "none",
@@ -235737,7 +241936,7 @@
}
},
{
- "id": 15800,
+ "id": 16269,
"properties": {
"east": "none",
"north": "none",
@@ -235748,7 +241947,7 @@
}
},
{
- "id": 15801,
+ "id": 16270,
"properties": {
"east": "none",
"north": "none",
@@ -235759,7 +241958,7 @@
}
},
{
- "id": 15802,
+ "id": 16271,
"properties": {
"east": "none",
"north": "none",
@@ -235770,7 +241969,7 @@
}
},
{
- "id": 15803,
+ "id": 16272,
"properties": {
"east": "none",
"north": "none",
@@ -235781,7 +241980,7 @@
}
},
{
- "id": 15804,
+ "id": 16273,
"properties": {
"east": "none",
"north": "none",
@@ -235792,7 +241991,7 @@
}
},
{
- "id": 15805,
+ "id": 16274,
"properties": {
"east": "none",
"north": "none",
@@ -235803,7 +242002,7 @@
}
},
{
- "id": 15806,
+ "id": 16275,
"properties": {
"east": "none",
"north": "none",
@@ -235814,7 +242013,7 @@
}
},
{
- "id": 15807,
+ "id": 16276,
"properties": {
"east": "none",
"north": "none",
@@ -235825,7 +242024,7 @@
}
},
{
- "id": 15808,
+ "id": 16277,
"properties": {
"east": "none",
"north": "none",
@@ -235836,7 +242035,7 @@
}
},
{
- "id": 15809,
+ "id": 16278,
"properties": {
"east": "none",
"north": "none",
@@ -235847,7 +242046,7 @@
}
},
{
- "id": 15810,
+ "id": 16279,
"properties": {
"east": "none",
"north": "none",
@@ -235858,7 +242057,7 @@
}
},
{
- "id": 15811,
+ "id": 16280,
"properties": {
"east": "none",
"north": "none",
@@ -235869,7 +242068,7 @@
}
},
{
- "id": 15812,
+ "id": 16281,
"properties": {
"east": "none",
"north": "none",
@@ -235880,7 +242079,7 @@
}
},
{
- "id": 15813,
+ "id": 16282,
"properties": {
"east": "none",
"north": "none",
@@ -235891,7 +242090,7 @@
}
},
{
- "id": 15814,
+ "id": 16283,
"properties": {
"east": "none",
"north": "none",
@@ -235902,7 +242101,7 @@
}
},
{
- "id": 15815,
+ "id": 16284,
"properties": {
"east": "none",
"north": "none",
@@ -235913,7 +242112,7 @@
}
},
{
- "id": 15816,
+ "id": 16285,
"properties": {
"east": "none",
"north": "low",
@@ -235924,7 +242123,7 @@
}
},
{
- "id": 15817,
+ "id": 16286,
"properties": {
"east": "none",
"north": "low",
@@ -235935,7 +242134,7 @@
}
},
{
- "id": 15818,
+ "id": 16287,
"properties": {
"east": "none",
"north": "low",
@@ -235946,7 +242145,7 @@
}
},
{
- "id": 15819,
+ "id": 16288,
"properties": {
"east": "none",
"north": "low",
@@ -235957,7 +242156,7 @@
}
},
{
- "id": 15820,
+ "id": 16289,
"properties": {
"east": "none",
"north": "low",
@@ -235968,7 +242167,7 @@
}
},
{
- "id": 15821,
+ "id": 16290,
"properties": {
"east": "none",
"north": "low",
@@ -235979,7 +242178,7 @@
}
},
{
- "id": 15822,
+ "id": 16291,
"properties": {
"east": "none",
"north": "low",
@@ -235990,7 +242189,7 @@
}
},
{
- "id": 15823,
+ "id": 16292,
"properties": {
"east": "none",
"north": "low",
@@ -236001,7 +242200,7 @@
}
},
{
- "id": 15824,
+ "id": 16293,
"properties": {
"east": "none",
"north": "low",
@@ -236012,7 +242211,7 @@
}
},
{
- "id": 15825,
+ "id": 16294,
"properties": {
"east": "none",
"north": "low",
@@ -236023,7 +242222,7 @@
}
},
{
- "id": 15826,
+ "id": 16295,
"properties": {
"east": "none",
"north": "low",
@@ -236034,7 +242233,7 @@
}
},
{
- "id": 15827,
+ "id": 16296,
"properties": {
"east": "none",
"north": "low",
@@ -236045,7 +242244,7 @@
}
},
{
- "id": 15828,
+ "id": 16297,
"properties": {
"east": "none",
"north": "low",
@@ -236056,7 +242255,7 @@
}
},
{
- "id": 15829,
+ "id": 16298,
"properties": {
"east": "none",
"north": "low",
@@ -236067,7 +242266,7 @@
}
},
{
- "id": 15830,
+ "id": 16299,
"properties": {
"east": "none",
"north": "low",
@@ -236078,7 +242277,7 @@
}
},
{
- "id": 15831,
+ "id": 16300,
"properties": {
"east": "none",
"north": "low",
@@ -236089,7 +242288,7 @@
}
},
{
- "id": 15832,
+ "id": 16301,
"properties": {
"east": "none",
"north": "low",
@@ -236100,7 +242299,7 @@
}
},
{
- "id": 15833,
+ "id": 16302,
"properties": {
"east": "none",
"north": "low",
@@ -236111,7 +242310,7 @@
}
},
{
- "id": 15834,
+ "id": 16303,
"properties": {
"east": "none",
"north": "low",
@@ -236122,7 +242321,7 @@
}
},
{
- "id": 15835,
+ "id": 16304,
"properties": {
"east": "none",
"north": "low",
@@ -236133,7 +242332,7 @@
}
},
{
- "id": 15836,
+ "id": 16305,
"properties": {
"east": "none",
"north": "low",
@@ -236144,7 +242343,7 @@
}
},
{
- "id": 15837,
+ "id": 16306,
"properties": {
"east": "none",
"north": "low",
@@ -236155,7 +242354,7 @@
}
},
{
- "id": 15838,
+ "id": 16307,
"properties": {
"east": "none",
"north": "low",
@@ -236166,7 +242365,7 @@
}
},
{
- "id": 15839,
+ "id": 16308,
"properties": {
"east": "none",
"north": "low",
@@ -236177,7 +242376,7 @@
}
},
{
- "id": 15840,
+ "id": 16309,
"properties": {
"east": "none",
"north": "low",
@@ -236188,7 +242387,7 @@
}
},
{
- "id": 15841,
+ "id": 16310,
"properties": {
"east": "none",
"north": "low",
@@ -236199,7 +242398,7 @@
}
},
{
- "id": 15842,
+ "id": 16311,
"properties": {
"east": "none",
"north": "low",
@@ -236210,7 +242409,7 @@
}
},
{
- "id": 15843,
+ "id": 16312,
"properties": {
"east": "none",
"north": "low",
@@ -236221,7 +242420,7 @@
}
},
{
- "id": 15844,
+ "id": 16313,
"properties": {
"east": "none",
"north": "low",
@@ -236232,7 +242431,7 @@
}
},
{
- "id": 15845,
+ "id": 16314,
"properties": {
"east": "none",
"north": "low",
@@ -236243,7 +242442,7 @@
}
},
{
- "id": 15846,
+ "id": 16315,
"properties": {
"east": "none",
"north": "low",
@@ -236254,7 +242453,7 @@
}
},
{
- "id": 15847,
+ "id": 16316,
"properties": {
"east": "none",
"north": "low",
@@ -236265,7 +242464,7 @@
}
},
{
- "id": 15848,
+ "id": 16317,
"properties": {
"east": "none",
"north": "low",
@@ -236276,7 +242475,7 @@
}
},
{
- "id": 15849,
+ "id": 16318,
"properties": {
"east": "none",
"north": "low",
@@ -236287,7 +242486,7 @@
}
},
{
- "id": 15850,
+ "id": 16319,
"properties": {
"east": "none",
"north": "low",
@@ -236298,7 +242497,7 @@
}
},
{
- "id": 15851,
+ "id": 16320,
"properties": {
"east": "none",
"north": "low",
@@ -236309,7 +242508,7 @@
}
},
{
- "id": 15852,
+ "id": 16321,
"properties": {
"east": "none",
"north": "tall",
@@ -236320,7 +242519,7 @@
}
},
{
- "id": 15853,
+ "id": 16322,
"properties": {
"east": "none",
"north": "tall",
@@ -236331,7 +242530,7 @@
}
},
{
- "id": 15854,
+ "id": 16323,
"properties": {
"east": "none",
"north": "tall",
@@ -236342,7 +242541,7 @@
}
},
{
- "id": 15855,
+ "id": 16324,
"properties": {
"east": "none",
"north": "tall",
@@ -236353,7 +242552,7 @@
}
},
{
- "id": 15856,
+ "id": 16325,
"properties": {
"east": "none",
"north": "tall",
@@ -236364,7 +242563,7 @@
}
},
{
- "id": 15857,
+ "id": 16326,
"properties": {
"east": "none",
"north": "tall",
@@ -236375,7 +242574,7 @@
}
},
{
- "id": 15858,
+ "id": 16327,
"properties": {
"east": "none",
"north": "tall",
@@ -236386,7 +242585,7 @@
}
},
{
- "id": 15859,
+ "id": 16328,
"properties": {
"east": "none",
"north": "tall",
@@ -236397,7 +242596,7 @@
}
},
{
- "id": 15860,
+ "id": 16329,
"properties": {
"east": "none",
"north": "tall",
@@ -236408,7 +242607,7 @@
}
},
{
- "id": 15861,
+ "id": 16330,
"properties": {
"east": "none",
"north": "tall",
@@ -236419,7 +242618,7 @@
}
},
{
- "id": 15862,
+ "id": 16331,
"properties": {
"east": "none",
"north": "tall",
@@ -236430,7 +242629,7 @@
}
},
{
- "id": 15863,
+ "id": 16332,
"properties": {
"east": "none",
"north": "tall",
@@ -236441,7 +242640,7 @@
}
},
{
- "id": 15864,
+ "id": 16333,
"properties": {
"east": "none",
"north": "tall",
@@ -236452,7 +242651,7 @@
}
},
{
- "id": 15865,
+ "id": 16334,
"properties": {
"east": "none",
"north": "tall",
@@ -236463,7 +242662,7 @@
}
},
{
- "id": 15866,
+ "id": 16335,
"properties": {
"east": "none",
"north": "tall",
@@ -236474,7 +242673,7 @@
}
},
{
- "id": 15867,
+ "id": 16336,
"properties": {
"east": "none",
"north": "tall",
@@ -236485,7 +242684,7 @@
}
},
{
- "id": 15868,
+ "id": 16337,
"properties": {
"east": "none",
"north": "tall",
@@ -236496,7 +242695,7 @@
}
},
{
- "id": 15869,
+ "id": 16338,
"properties": {
"east": "none",
"north": "tall",
@@ -236507,7 +242706,7 @@
}
},
{
- "id": 15870,
+ "id": 16339,
"properties": {
"east": "none",
"north": "tall",
@@ -236518,7 +242717,7 @@
}
},
{
- "id": 15871,
+ "id": 16340,
"properties": {
"east": "none",
"north": "tall",
@@ -236529,7 +242728,7 @@
}
},
{
- "id": 15872,
+ "id": 16341,
"properties": {
"east": "none",
"north": "tall",
@@ -236540,7 +242739,7 @@
}
},
{
- "id": 15873,
+ "id": 16342,
"properties": {
"east": "none",
"north": "tall",
@@ -236551,7 +242750,7 @@
}
},
{
- "id": 15874,
+ "id": 16343,
"properties": {
"east": "none",
"north": "tall",
@@ -236562,7 +242761,7 @@
}
},
{
- "id": 15875,
+ "id": 16344,
"properties": {
"east": "none",
"north": "tall",
@@ -236573,7 +242772,7 @@
}
},
{
- "id": 15876,
+ "id": 16345,
"properties": {
"east": "none",
"north": "tall",
@@ -236584,7 +242783,7 @@
}
},
{
- "id": 15877,
+ "id": 16346,
"properties": {
"east": "none",
"north": "tall",
@@ -236595,7 +242794,7 @@
}
},
{
- "id": 15878,
+ "id": 16347,
"properties": {
"east": "none",
"north": "tall",
@@ -236606,7 +242805,7 @@
}
},
{
- "id": 15879,
+ "id": 16348,
"properties": {
"east": "none",
"north": "tall",
@@ -236617,7 +242816,7 @@
}
},
{
- "id": 15880,
+ "id": 16349,
"properties": {
"east": "none",
"north": "tall",
@@ -236628,7 +242827,7 @@
}
},
{
- "id": 15881,
+ "id": 16350,
"properties": {
"east": "none",
"north": "tall",
@@ -236639,7 +242838,7 @@
}
},
{
- "id": 15882,
+ "id": 16351,
"properties": {
"east": "none",
"north": "tall",
@@ -236650,7 +242849,7 @@
}
},
{
- "id": 15883,
+ "id": 16352,
"properties": {
"east": "none",
"north": "tall",
@@ -236661,7 +242860,7 @@
}
},
{
- "id": 15884,
+ "id": 16353,
"properties": {
"east": "none",
"north": "tall",
@@ -236672,7 +242871,7 @@
}
},
{
- "id": 15885,
+ "id": 16354,
"properties": {
"east": "none",
"north": "tall",
@@ -236683,7 +242882,7 @@
}
},
{
- "id": 15886,
+ "id": 16355,
"properties": {
"east": "none",
"north": "tall",
@@ -236694,7 +242893,7 @@
}
},
{
- "id": 15887,
+ "id": 16356,
"properties": {
"east": "none",
"north": "tall",
@@ -236705,7 +242904,7 @@
}
},
{
- "id": 15888,
+ "id": 16357,
"properties": {
"east": "low",
"north": "none",
@@ -236716,7 +242915,7 @@
}
},
{
- "id": 15889,
+ "id": 16358,
"properties": {
"east": "low",
"north": "none",
@@ -236727,7 +242926,7 @@
}
},
{
- "id": 15890,
+ "id": 16359,
"properties": {
"east": "low",
"north": "none",
@@ -236738,7 +242937,7 @@
}
},
{
- "id": 15891,
+ "id": 16360,
"properties": {
"east": "low",
"north": "none",
@@ -236749,7 +242948,7 @@
}
},
{
- "id": 15892,
+ "id": 16361,
"properties": {
"east": "low",
"north": "none",
@@ -236760,7 +242959,7 @@
}
},
{
- "id": 15893,
+ "id": 16362,
"properties": {
"east": "low",
"north": "none",
@@ -236771,7 +242970,7 @@
}
},
{
- "id": 15894,
+ "id": 16363,
"properties": {
"east": "low",
"north": "none",
@@ -236782,7 +242981,7 @@
}
},
{
- "id": 15895,
+ "id": 16364,
"properties": {
"east": "low",
"north": "none",
@@ -236793,7 +242992,7 @@
}
},
{
- "id": 15896,
+ "id": 16365,
"properties": {
"east": "low",
"north": "none",
@@ -236804,7 +243003,7 @@
}
},
{
- "id": 15897,
+ "id": 16366,
"properties": {
"east": "low",
"north": "none",
@@ -236815,7 +243014,7 @@
}
},
{
- "id": 15898,
+ "id": 16367,
"properties": {
"east": "low",
"north": "none",
@@ -236826,7 +243025,7 @@
}
},
{
- "id": 15899,
+ "id": 16368,
"properties": {
"east": "low",
"north": "none",
@@ -236837,7 +243036,7 @@
}
},
{
- "id": 15900,
+ "id": 16369,
"properties": {
"east": "low",
"north": "none",
@@ -236848,7 +243047,7 @@
}
},
{
- "id": 15901,
+ "id": 16370,
"properties": {
"east": "low",
"north": "none",
@@ -236859,7 +243058,7 @@
}
},
{
- "id": 15902,
+ "id": 16371,
"properties": {
"east": "low",
"north": "none",
@@ -236870,7 +243069,7 @@
}
},
{
- "id": 15903,
+ "id": 16372,
"properties": {
"east": "low",
"north": "none",
@@ -236881,7 +243080,7 @@
}
},
{
- "id": 15904,
+ "id": 16373,
"properties": {
"east": "low",
"north": "none",
@@ -236892,7 +243091,7 @@
}
},
{
- "id": 15905,
+ "id": 16374,
"properties": {
"east": "low",
"north": "none",
@@ -236903,7 +243102,7 @@
}
},
{
- "id": 15906,
+ "id": 16375,
"properties": {
"east": "low",
"north": "none",
@@ -236914,7 +243113,7 @@
}
},
{
- "id": 15907,
+ "id": 16376,
"properties": {
"east": "low",
"north": "none",
@@ -236925,7 +243124,7 @@
}
},
{
- "id": 15908,
+ "id": 16377,
"properties": {
"east": "low",
"north": "none",
@@ -236936,7 +243135,7 @@
}
},
{
- "id": 15909,
+ "id": 16378,
"properties": {
"east": "low",
"north": "none",
@@ -236947,7 +243146,7 @@
}
},
{
- "id": 15910,
+ "id": 16379,
"properties": {
"east": "low",
"north": "none",
@@ -236958,7 +243157,7 @@
}
},
{
- "id": 15911,
+ "id": 16380,
"properties": {
"east": "low",
"north": "none",
@@ -236969,7 +243168,7 @@
}
},
{
- "id": 15912,
+ "id": 16381,
"properties": {
"east": "low",
"north": "none",
@@ -236980,7 +243179,7 @@
}
},
{
- "id": 15913,
+ "id": 16382,
"properties": {
"east": "low",
"north": "none",
@@ -236991,7 +243190,7 @@
}
},
{
- "id": 15914,
+ "id": 16383,
"properties": {
"east": "low",
"north": "none",
@@ -237002,7 +243201,7 @@
}
},
{
- "id": 15915,
+ "id": 16384,
"properties": {
"east": "low",
"north": "none",
@@ -237013,7 +243212,7 @@
}
},
{
- "id": 15916,
+ "id": 16385,
"properties": {
"east": "low",
"north": "none",
@@ -237024,7 +243223,7 @@
}
},
{
- "id": 15917,
+ "id": 16386,
"properties": {
"east": "low",
"north": "none",
@@ -237035,7 +243234,7 @@
}
},
{
- "id": 15918,
+ "id": 16387,
"properties": {
"east": "low",
"north": "none",
@@ -237046,7 +243245,7 @@
}
},
{
- "id": 15919,
+ "id": 16388,
"properties": {
"east": "low",
"north": "none",
@@ -237057,7 +243256,7 @@
}
},
{
- "id": 15920,
+ "id": 16389,
"properties": {
"east": "low",
"north": "none",
@@ -237068,7 +243267,7 @@
}
},
{
- "id": 15921,
+ "id": 16390,
"properties": {
"east": "low",
"north": "none",
@@ -237079,7 +243278,7 @@
}
},
{
- "id": 15922,
+ "id": 16391,
"properties": {
"east": "low",
"north": "none",
@@ -237090,7 +243289,7 @@
}
},
{
- "id": 15923,
+ "id": 16392,
"properties": {
"east": "low",
"north": "none",
@@ -237101,7 +243300,7 @@
}
},
{
- "id": 15924,
+ "id": 16393,
"properties": {
"east": "low",
"north": "low",
@@ -237112,7 +243311,7 @@
}
},
{
- "id": 15925,
+ "id": 16394,
"properties": {
"east": "low",
"north": "low",
@@ -237123,7 +243322,7 @@
}
},
{
- "id": 15926,
+ "id": 16395,
"properties": {
"east": "low",
"north": "low",
@@ -237134,7 +243333,7 @@
}
},
{
- "id": 15927,
+ "id": 16396,
"properties": {
"east": "low",
"north": "low",
@@ -237145,7 +243344,7 @@
}
},
{
- "id": 15928,
+ "id": 16397,
"properties": {
"east": "low",
"north": "low",
@@ -237156,7 +243355,7 @@
}
},
{
- "id": 15929,
+ "id": 16398,
"properties": {
"east": "low",
"north": "low",
@@ -237167,7 +243366,7 @@
}
},
{
- "id": 15930,
+ "id": 16399,
"properties": {
"east": "low",
"north": "low",
@@ -237178,7 +243377,7 @@
}
},
{
- "id": 15931,
+ "id": 16400,
"properties": {
"east": "low",
"north": "low",
@@ -237189,7 +243388,7 @@
}
},
{
- "id": 15932,
+ "id": 16401,
"properties": {
"east": "low",
"north": "low",
@@ -237200,7 +243399,7 @@
}
},
{
- "id": 15933,
+ "id": 16402,
"properties": {
"east": "low",
"north": "low",
@@ -237211,7 +243410,7 @@
}
},
{
- "id": 15934,
+ "id": 16403,
"properties": {
"east": "low",
"north": "low",
@@ -237222,7 +243421,7 @@
}
},
{
- "id": 15935,
+ "id": 16404,
"properties": {
"east": "low",
"north": "low",
@@ -237233,7 +243432,7 @@
}
},
{
- "id": 15936,
+ "id": 16405,
"properties": {
"east": "low",
"north": "low",
@@ -237244,7 +243443,7 @@
}
},
{
- "id": 15937,
+ "id": 16406,
"properties": {
"east": "low",
"north": "low",
@@ -237255,7 +243454,7 @@
}
},
{
- "id": 15938,
+ "id": 16407,
"properties": {
"east": "low",
"north": "low",
@@ -237266,7 +243465,7 @@
}
},
{
- "id": 15939,
+ "id": 16408,
"properties": {
"east": "low",
"north": "low",
@@ -237277,7 +243476,7 @@
}
},
{
- "id": 15940,
+ "id": 16409,
"properties": {
"east": "low",
"north": "low",
@@ -237288,7 +243487,7 @@
}
},
{
- "id": 15941,
+ "id": 16410,
"properties": {
"east": "low",
"north": "low",
@@ -237299,7 +243498,7 @@
}
},
{
- "id": 15942,
+ "id": 16411,
"properties": {
"east": "low",
"north": "low",
@@ -237310,7 +243509,7 @@
}
},
{
- "id": 15943,
+ "id": 16412,
"properties": {
"east": "low",
"north": "low",
@@ -237321,7 +243520,7 @@
}
},
{
- "id": 15944,
+ "id": 16413,
"properties": {
"east": "low",
"north": "low",
@@ -237332,7 +243531,7 @@
}
},
{
- "id": 15945,
+ "id": 16414,
"properties": {
"east": "low",
"north": "low",
@@ -237343,7 +243542,7 @@
}
},
{
- "id": 15946,
+ "id": 16415,
"properties": {
"east": "low",
"north": "low",
@@ -237354,7 +243553,7 @@
}
},
{
- "id": 15947,
+ "id": 16416,
"properties": {
"east": "low",
"north": "low",
@@ -237365,7 +243564,7 @@
}
},
{
- "id": 15948,
+ "id": 16417,
"properties": {
"east": "low",
"north": "low",
@@ -237376,7 +243575,7 @@
}
},
{
- "id": 15949,
+ "id": 16418,
"properties": {
"east": "low",
"north": "low",
@@ -237387,7 +243586,7 @@
}
},
{
- "id": 15950,
+ "id": 16419,
"properties": {
"east": "low",
"north": "low",
@@ -237398,7 +243597,7 @@
}
},
{
- "id": 15951,
+ "id": 16420,
"properties": {
"east": "low",
"north": "low",
@@ -237409,7 +243608,7 @@
}
},
{
- "id": 15952,
+ "id": 16421,
"properties": {
"east": "low",
"north": "low",
@@ -237420,7 +243619,7 @@
}
},
{
- "id": 15953,
+ "id": 16422,
"properties": {
"east": "low",
"north": "low",
@@ -237431,7 +243630,7 @@
}
},
{
- "id": 15954,
+ "id": 16423,
"properties": {
"east": "low",
"north": "low",
@@ -237442,7 +243641,7 @@
}
},
{
- "id": 15955,
+ "id": 16424,
"properties": {
"east": "low",
"north": "low",
@@ -237453,7 +243652,7 @@
}
},
{
- "id": 15956,
+ "id": 16425,
"properties": {
"east": "low",
"north": "low",
@@ -237464,7 +243663,7 @@
}
},
{
- "id": 15957,
+ "id": 16426,
"properties": {
"east": "low",
"north": "low",
@@ -237475,7 +243674,7 @@
}
},
{
- "id": 15958,
+ "id": 16427,
"properties": {
"east": "low",
"north": "low",
@@ -237486,7 +243685,7 @@
}
},
{
- "id": 15959,
+ "id": 16428,
"properties": {
"east": "low",
"north": "low",
@@ -237497,7 +243696,7 @@
}
},
{
- "id": 15960,
+ "id": 16429,
"properties": {
"east": "low",
"north": "tall",
@@ -237508,7 +243707,7 @@
}
},
{
- "id": 15961,
+ "id": 16430,
"properties": {
"east": "low",
"north": "tall",
@@ -237519,7 +243718,7 @@
}
},
{
- "id": 15962,
+ "id": 16431,
"properties": {
"east": "low",
"north": "tall",
@@ -237530,7 +243729,7 @@
}
},
{
- "id": 15963,
+ "id": 16432,
"properties": {
"east": "low",
"north": "tall",
@@ -237541,7 +243740,7 @@
}
},
{
- "id": 15964,
+ "id": 16433,
"properties": {
"east": "low",
"north": "tall",
@@ -237552,7 +243751,7 @@
}
},
{
- "id": 15965,
+ "id": 16434,
"properties": {
"east": "low",
"north": "tall",
@@ -237563,7 +243762,7 @@
}
},
{
- "id": 15966,
+ "id": 16435,
"properties": {
"east": "low",
"north": "tall",
@@ -237574,7 +243773,7 @@
}
},
{
- "id": 15967,
+ "id": 16436,
"properties": {
"east": "low",
"north": "tall",
@@ -237585,7 +243784,7 @@
}
},
{
- "id": 15968,
+ "id": 16437,
"properties": {
"east": "low",
"north": "tall",
@@ -237596,7 +243795,7 @@
}
},
{
- "id": 15969,
+ "id": 16438,
"properties": {
"east": "low",
"north": "tall",
@@ -237607,7 +243806,7 @@
}
},
{
- "id": 15970,
+ "id": 16439,
"properties": {
"east": "low",
"north": "tall",
@@ -237618,7 +243817,7 @@
}
},
{
- "id": 15971,
+ "id": 16440,
"properties": {
"east": "low",
"north": "tall",
@@ -237629,7 +243828,7 @@
}
},
{
- "id": 15972,
+ "id": 16441,
"properties": {
"east": "low",
"north": "tall",
@@ -237640,7 +243839,7 @@
}
},
{
- "id": 15973,
+ "id": 16442,
"properties": {
"east": "low",
"north": "tall",
@@ -237651,7 +243850,7 @@
}
},
{
- "id": 15974,
+ "id": 16443,
"properties": {
"east": "low",
"north": "tall",
@@ -237662,7 +243861,7 @@
}
},
{
- "id": 15975,
+ "id": 16444,
"properties": {
"east": "low",
"north": "tall",
@@ -237673,7 +243872,7 @@
}
},
{
- "id": 15976,
+ "id": 16445,
"properties": {
"east": "low",
"north": "tall",
@@ -237684,7 +243883,7 @@
}
},
{
- "id": 15977,
+ "id": 16446,
"properties": {
"east": "low",
"north": "tall",
@@ -237695,7 +243894,7 @@
}
},
{
- "id": 15978,
+ "id": 16447,
"properties": {
"east": "low",
"north": "tall",
@@ -237706,7 +243905,7 @@
}
},
{
- "id": 15979,
+ "id": 16448,
"properties": {
"east": "low",
"north": "tall",
@@ -237717,7 +243916,7 @@
}
},
{
- "id": 15980,
+ "id": 16449,
"properties": {
"east": "low",
"north": "tall",
@@ -237728,7 +243927,7 @@
}
},
{
- "id": 15981,
+ "id": 16450,
"properties": {
"east": "low",
"north": "tall",
@@ -237739,7 +243938,7 @@
}
},
{
- "id": 15982,
+ "id": 16451,
"properties": {
"east": "low",
"north": "tall",
@@ -237750,7 +243949,7 @@
}
},
{
- "id": 15983,
+ "id": 16452,
"properties": {
"east": "low",
"north": "tall",
@@ -237761,7 +243960,7 @@
}
},
{
- "id": 15984,
+ "id": 16453,
"properties": {
"east": "low",
"north": "tall",
@@ -237772,7 +243971,7 @@
}
},
{
- "id": 15985,
+ "id": 16454,
"properties": {
"east": "low",
"north": "tall",
@@ -237783,7 +243982,7 @@
}
},
{
- "id": 15986,
+ "id": 16455,
"properties": {
"east": "low",
"north": "tall",
@@ -237794,7 +243993,7 @@
}
},
{
- "id": 15987,
+ "id": 16456,
"properties": {
"east": "low",
"north": "tall",
@@ -237805,7 +244004,7 @@
}
},
{
- "id": 15988,
+ "id": 16457,
"properties": {
"east": "low",
"north": "tall",
@@ -237816,7 +244015,7 @@
}
},
{
- "id": 15989,
+ "id": 16458,
"properties": {
"east": "low",
"north": "tall",
@@ -237827,7 +244026,7 @@
}
},
{
- "id": 15990,
+ "id": 16459,
"properties": {
"east": "low",
"north": "tall",
@@ -237838,7 +244037,7 @@
}
},
{
- "id": 15991,
+ "id": 16460,
"properties": {
"east": "low",
"north": "tall",
@@ -237849,7 +244048,7 @@
}
},
{
- "id": 15992,
+ "id": 16461,
"properties": {
"east": "low",
"north": "tall",
@@ -237860,7 +244059,7 @@
}
},
{
- "id": 15993,
+ "id": 16462,
"properties": {
"east": "low",
"north": "tall",
@@ -237871,7 +244070,7 @@
}
},
{
- "id": 15994,
+ "id": 16463,
"properties": {
"east": "low",
"north": "tall",
@@ -237882,7 +244081,7 @@
}
},
{
- "id": 15995,
+ "id": 16464,
"properties": {
"east": "low",
"north": "tall",
@@ -237893,7 +244092,7 @@
}
},
{
- "id": 15996,
+ "id": 16465,
"properties": {
"east": "tall",
"north": "none",
@@ -237904,7 +244103,7 @@
}
},
{
- "id": 15997,
+ "id": 16466,
"properties": {
"east": "tall",
"north": "none",
@@ -237915,7 +244114,7 @@
}
},
{
- "id": 15998,
+ "id": 16467,
"properties": {
"east": "tall",
"north": "none",
@@ -237926,7 +244125,7 @@
}
},
{
- "id": 15999,
+ "id": 16468,
"properties": {
"east": "tall",
"north": "none",
@@ -237937,7 +244136,7 @@
}
},
{
- "id": 16000,
+ "id": 16469,
"properties": {
"east": "tall",
"north": "none",
@@ -237948,7 +244147,7 @@
}
},
{
- "id": 16001,
+ "id": 16470,
"properties": {
"east": "tall",
"north": "none",
@@ -237959,7 +244158,7 @@
}
},
{
- "id": 16002,
+ "id": 16471,
"properties": {
"east": "tall",
"north": "none",
@@ -237970,7 +244169,7 @@
}
},
{
- "id": 16003,
+ "id": 16472,
"properties": {
"east": "tall",
"north": "none",
@@ -237981,7 +244180,7 @@
}
},
{
- "id": 16004,
+ "id": 16473,
"properties": {
"east": "tall",
"north": "none",
@@ -237992,7 +244191,7 @@
}
},
{
- "id": 16005,
+ "id": 16474,
"properties": {
"east": "tall",
"north": "none",
@@ -238003,7 +244202,7 @@
}
},
{
- "id": 16006,
+ "id": 16475,
"properties": {
"east": "tall",
"north": "none",
@@ -238014,7 +244213,7 @@
}
},
{
- "id": 16007,
+ "id": 16476,
"properties": {
"east": "tall",
"north": "none",
@@ -238025,7 +244224,7 @@
}
},
{
- "id": 16008,
+ "id": 16477,
"properties": {
"east": "tall",
"north": "none",
@@ -238036,7 +244235,7 @@
}
},
{
- "id": 16009,
+ "id": 16478,
"properties": {
"east": "tall",
"north": "none",
@@ -238047,7 +244246,7 @@
}
},
{
- "id": 16010,
+ "id": 16479,
"properties": {
"east": "tall",
"north": "none",
@@ -238058,7 +244257,7 @@
}
},
{
- "id": 16011,
+ "id": 16480,
"properties": {
"east": "tall",
"north": "none",
@@ -238069,7 +244268,7 @@
}
},
{
- "id": 16012,
+ "id": 16481,
"properties": {
"east": "tall",
"north": "none",
@@ -238080,7 +244279,7 @@
}
},
{
- "id": 16013,
+ "id": 16482,
"properties": {
"east": "tall",
"north": "none",
@@ -238091,7 +244290,7 @@
}
},
{
- "id": 16014,
+ "id": 16483,
"properties": {
"east": "tall",
"north": "none",
@@ -238102,7 +244301,7 @@
}
},
{
- "id": 16015,
+ "id": 16484,
"properties": {
"east": "tall",
"north": "none",
@@ -238113,7 +244312,7 @@
}
},
{
- "id": 16016,
+ "id": 16485,
"properties": {
"east": "tall",
"north": "none",
@@ -238124,7 +244323,7 @@
}
},
{
- "id": 16017,
+ "id": 16486,
"properties": {
"east": "tall",
"north": "none",
@@ -238135,7 +244334,7 @@
}
},
{
- "id": 16018,
+ "id": 16487,
"properties": {
"east": "tall",
"north": "none",
@@ -238146,7 +244345,7 @@
}
},
{
- "id": 16019,
+ "id": 16488,
"properties": {
"east": "tall",
"north": "none",
@@ -238157,7 +244356,7 @@
}
},
{
- "id": 16020,
+ "id": 16489,
"properties": {
"east": "tall",
"north": "none",
@@ -238168,7 +244367,7 @@
}
},
{
- "id": 16021,
+ "id": 16490,
"properties": {
"east": "tall",
"north": "none",
@@ -238179,7 +244378,7 @@
}
},
{
- "id": 16022,
+ "id": 16491,
"properties": {
"east": "tall",
"north": "none",
@@ -238190,7 +244389,7 @@
}
},
{
- "id": 16023,
+ "id": 16492,
"properties": {
"east": "tall",
"north": "none",
@@ -238201,7 +244400,7 @@
}
},
{
- "id": 16024,
+ "id": 16493,
"properties": {
"east": "tall",
"north": "none",
@@ -238212,7 +244411,7 @@
}
},
{
- "id": 16025,
+ "id": 16494,
"properties": {
"east": "tall",
"north": "none",
@@ -238223,7 +244422,7 @@
}
},
{
- "id": 16026,
+ "id": 16495,
"properties": {
"east": "tall",
"north": "none",
@@ -238234,7 +244433,7 @@
}
},
{
- "id": 16027,
+ "id": 16496,
"properties": {
"east": "tall",
"north": "none",
@@ -238245,7 +244444,7 @@
}
},
{
- "id": 16028,
+ "id": 16497,
"properties": {
"east": "tall",
"north": "none",
@@ -238256,7 +244455,7 @@
}
},
{
- "id": 16029,
+ "id": 16498,
"properties": {
"east": "tall",
"north": "none",
@@ -238267,7 +244466,7 @@
}
},
{
- "id": 16030,
+ "id": 16499,
"properties": {
"east": "tall",
"north": "none",
@@ -238278,7 +244477,7 @@
}
},
{
- "id": 16031,
+ "id": 16500,
"properties": {
"east": "tall",
"north": "none",
@@ -238289,7 +244488,7 @@
}
},
{
- "id": 16032,
+ "id": 16501,
"properties": {
"east": "tall",
"north": "low",
@@ -238300,7 +244499,7 @@
}
},
{
- "id": 16033,
+ "id": 16502,
"properties": {
"east": "tall",
"north": "low",
@@ -238311,7 +244510,7 @@
}
},
{
- "id": 16034,
+ "id": 16503,
"properties": {
"east": "tall",
"north": "low",
@@ -238322,7 +244521,7 @@
}
},
{
- "id": 16035,
+ "id": 16504,
"properties": {
"east": "tall",
"north": "low",
@@ -238333,7 +244532,7 @@
}
},
{
- "id": 16036,
+ "id": 16505,
"properties": {
"east": "tall",
"north": "low",
@@ -238344,7 +244543,7 @@
}
},
{
- "id": 16037,
+ "id": 16506,
"properties": {
"east": "tall",
"north": "low",
@@ -238355,7 +244554,7 @@
}
},
{
- "id": 16038,
+ "id": 16507,
"properties": {
"east": "tall",
"north": "low",
@@ -238366,7 +244565,7 @@
}
},
{
- "id": 16039,
+ "id": 16508,
"properties": {
"east": "tall",
"north": "low",
@@ -238377,7 +244576,7 @@
}
},
{
- "id": 16040,
+ "id": 16509,
"properties": {
"east": "tall",
"north": "low",
@@ -238388,7 +244587,7 @@
}
},
{
- "id": 16041,
+ "id": 16510,
"properties": {
"east": "tall",
"north": "low",
@@ -238399,7 +244598,7 @@
}
},
{
- "id": 16042,
+ "id": 16511,
"properties": {
"east": "tall",
"north": "low",
@@ -238410,7 +244609,7 @@
}
},
{
- "id": 16043,
+ "id": 16512,
"properties": {
"east": "tall",
"north": "low",
@@ -238421,7 +244620,7 @@
}
},
{
- "id": 16044,
+ "id": 16513,
"properties": {
"east": "tall",
"north": "low",
@@ -238432,7 +244631,7 @@
}
},
{
- "id": 16045,
+ "id": 16514,
"properties": {
"east": "tall",
"north": "low",
@@ -238443,7 +244642,7 @@
}
},
{
- "id": 16046,
+ "id": 16515,
"properties": {
"east": "tall",
"north": "low",
@@ -238454,7 +244653,7 @@
}
},
{
- "id": 16047,
+ "id": 16516,
"properties": {
"east": "tall",
"north": "low",
@@ -238465,7 +244664,7 @@
}
},
{
- "id": 16048,
+ "id": 16517,
"properties": {
"east": "tall",
"north": "low",
@@ -238476,7 +244675,7 @@
}
},
{
- "id": 16049,
+ "id": 16518,
"properties": {
"east": "tall",
"north": "low",
@@ -238487,7 +244686,7 @@
}
},
{
- "id": 16050,
+ "id": 16519,
"properties": {
"east": "tall",
"north": "low",
@@ -238498,7 +244697,7 @@
}
},
{
- "id": 16051,
+ "id": 16520,
"properties": {
"east": "tall",
"north": "low",
@@ -238509,7 +244708,7 @@
}
},
{
- "id": 16052,
+ "id": 16521,
"properties": {
"east": "tall",
"north": "low",
@@ -238520,7 +244719,7 @@
}
},
{
- "id": 16053,
+ "id": 16522,
"properties": {
"east": "tall",
"north": "low",
@@ -238531,7 +244730,7 @@
}
},
{
- "id": 16054,
+ "id": 16523,
"properties": {
"east": "tall",
"north": "low",
@@ -238542,7 +244741,7 @@
}
},
{
- "id": 16055,
+ "id": 16524,
"properties": {
"east": "tall",
"north": "low",
@@ -238553,7 +244752,7 @@
}
},
{
- "id": 16056,
+ "id": 16525,
"properties": {
"east": "tall",
"north": "low",
@@ -238564,7 +244763,7 @@
}
},
{
- "id": 16057,
+ "id": 16526,
"properties": {
"east": "tall",
"north": "low",
@@ -238575,7 +244774,7 @@
}
},
{
- "id": 16058,
+ "id": 16527,
"properties": {
"east": "tall",
"north": "low",
@@ -238586,7 +244785,7 @@
}
},
{
- "id": 16059,
+ "id": 16528,
"properties": {
"east": "tall",
"north": "low",
@@ -238597,7 +244796,7 @@
}
},
{
- "id": 16060,
+ "id": 16529,
"properties": {
"east": "tall",
"north": "low",
@@ -238608,7 +244807,7 @@
}
},
{
- "id": 16061,
+ "id": 16530,
"properties": {
"east": "tall",
"north": "low",
@@ -238619,7 +244818,7 @@
}
},
{
- "id": 16062,
+ "id": 16531,
"properties": {
"east": "tall",
"north": "low",
@@ -238630,7 +244829,7 @@
}
},
{
- "id": 16063,
+ "id": 16532,
"properties": {
"east": "tall",
"north": "low",
@@ -238641,7 +244840,7 @@
}
},
{
- "id": 16064,
+ "id": 16533,
"properties": {
"east": "tall",
"north": "low",
@@ -238652,7 +244851,7 @@
}
},
{
- "id": 16065,
+ "id": 16534,
"properties": {
"east": "tall",
"north": "low",
@@ -238663,7 +244862,7 @@
}
},
{
- "id": 16066,
+ "id": 16535,
"properties": {
"east": "tall",
"north": "low",
@@ -238674,7 +244873,7 @@
}
},
{
- "id": 16067,
+ "id": 16536,
"properties": {
"east": "tall",
"north": "low",
@@ -238685,7 +244884,7 @@
}
},
{
- "id": 16068,
+ "id": 16537,
"properties": {
"east": "tall",
"north": "tall",
@@ -238696,7 +244895,7 @@
}
},
{
- "id": 16069,
+ "id": 16538,
"properties": {
"east": "tall",
"north": "tall",
@@ -238707,7 +244906,7 @@
}
},
{
- "id": 16070,
+ "id": 16539,
"properties": {
"east": "tall",
"north": "tall",
@@ -238718,7 +244917,7 @@
}
},
{
- "id": 16071,
+ "id": 16540,
"properties": {
"east": "tall",
"north": "tall",
@@ -238729,7 +244928,7 @@
}
},
{
- "id": 16072,
+ "id": 16541,
"properties": {
"east": "tall",
"north": "tall",
@@ -238740,7 +244939,7 @@
}
},
{
- "id": 16073,
+ "id": 16542,
"properties": {
"east": "tall",
"north": "tall",
@@ -238751,7 +244950,7 @@
}
},
{
- "id": 16074,
+ "id": 16543,
"properties": {
"east": "tall",
"north": "tall",
@@ -238762,7 +244961,7 @@
}
},
{
- "id": 16075,
+ "id": 16544,
"properties": {
"east": "tall",
"north": "tall",
@@ -238773,7 +244972,7 @@
}
},
{
- "id": 16076,
+ "id": 16545,
"properties": {
"east": "tall",
"north": "tall",
@@ -238784,7 +244983,7 @@
}
},
{
- "id": 16077,
+ "id": 16546,
"properties": {
"east": "tall",
"north": "tall",
@@ -238795,7 +244994,7 @@
}
},
{
- "id": 16078,
+ "id": 16547,
"properties": {
"east": "tall",
"north": "tall",
@@ -238806,7 +245005,7 @@
}
},
{
- "id": 16079,
+ "id": 16548,
"properties": {
"east": "tall",
"north": "tall",
@@ -238817,7 +245016,7 @@
}
},
{
- "id": 16080,
+ "id": 16549,
"properties": {
"east": "tall",
"north": "tall",
@@ -238828,7 +245027,7 @@
}
},
{
- "id": 16081,
+ "id": 16550,
"properties": {
"east": "tall",
"north": "tall",
@@ -238839,7 +245038,7 @@
}
},
{
- "id": 16082,
+ "id": 16551,
"properties": {
"east": "tall",
"north": "tall",
@@ -238850,7 +245049,7 @@
}
},
{
- "id": 16083,
+ "id": 16552,
"properties": {
"east": "tall",
"north": "tall",
@@ -238861,7 +245060,7 @@
}
},
{
- "id": 16084,
+ "id": 16553,
"properties": {
"east": "tall",
"north": "tall",
@@ -238872,7 +245071,7 @@
}
},
{
- "id": 16085,
+ "id": 16554,
"properties": {
"east": "tall",
"north": "tall",
@@ -238883,7 +245082,7 @@
}
},
{
- "id": 16086,
+ "id": 16555,
"properties": {
"east": "tall",
"north": "tall",
@@ -238894,7 +245093,7 @@
}
},
{
- "id": 16087,
+ "id": 16556,
"properties": {
"east": "tall",
"north": "tall",
@@ -238905,7 +245104,7 @@
}
},
{
- "id": 16088,
+ "id": 16557,
"properties": {
"east": "tall",
"north": "tall",
@@ -238916,7 +245115,7 @@
}
},
{
- "id": 16089,
+ "id": 16558,
"properties": {
"east": "tall",
"north": "tall",
@@ -238927,7 +245126,7 @@
}
},
{
- "id": 16090,
+ "id": 16559,
"properties": {
"east": "tall",
"north": "tall",
@@ -238938,7 +245137,7 @@
}
},
{
- "id": 16091,
+ "id": 16560,
"properties": {
"east": "tall",
"north": "tall",
@@ -238949,7 +245148,7 @@
}
},
{
- "id": 16092,
+ "id": 16561,
"properties": {
"east": "tall",
"north": "tall",
@@ -238960,7 +245159,7 @@
}
},
{
- "id": 16093,
+ "id": 16562,
"properties": {
"east": "tall",
"north": "tall",
@@ -238971,7 +245170,7 @@
}
},
{
- "id": 16094,
+ "id": 16563,
"properties": {
"east": "tall",
"north": "tall",
@@ -238982,7 +245181,7 @@
}
},
{
- "id": 16095,
+ "id": 16564,
"properties": {
"east": "tall",
"north": "tall",
@@ -238993,7 +245192,7 @@
}
},
{
- "id": 16096,
+ "id": 16565,
"properties": {
"east": "tall",
"north": "tall",
@@ -239004,7 +245203,7 @@
}
},
{
- "id": 16097,
+ "id": 16566,
"properties": {
"east": "tall",
"north": "tall",
@@ -239015,7 +245214,7 @@
}
},
{
- "id": 16098,
+ "id": 16567,
"properties": {
"east": "tall",
"north": "tall",
@@ -239026,7 +245225,7 @@
}
},
{
- "id": 16099,
+ "id": 16568,
"properties": {
"east": "tall",
"north": "tall",
@@ -239037,7 +245236,7 @@
}
},
{
- "id": 16100,
+ "id": 16569,
"properties": {
"east": "tall",
"north": "tall",
@@ -239048,7 +245247,7 @@
}
},
{
- "id": 16101,
+ "id": 16570,
"properties": {
"east": "tall",
"north": "tall",
@@ -239059,7 +245258,7 @@
}
},
{
- "id": 16102,
+ "id": 16571,
"properties": {
"east": "tall",
"north": "tall",
@@ -239070,7 +245269,7 @@
}
},
{
- "id": 16103,
+ "id": 16572,
"properties": {
"east": "tall",
"north": "tall",
@@ -239090,7 +245289,7 @@
"states": [
{
"default": true,
- "id": 6537
+ "id": 6767
}
]
},
@@ -239120,7 +245319,7 @@
},
"states": [
{
- "id": 5748,
+ "id": 5914,
"properties": {
"face": "floor",
"facing": "north",
@@ -239128,7 +245327,7 @@
}
},
{
- "id": 5749,
+ "id": 5915,
"properties": {
"face": "floor",
"facing": "north",
@@ -239136,7 +245335,7 @@
}
},
{
- "id": 5750,
+ "id": 5916,
"properties": {
"face": "floor",
"facing": "south",
@@ -239144,7 +245343,7 @@
}
},
{
- "id": 5751,
+ "id": 5917,
"properties": {
"face": "floor",
"facing": "south",
@@ -239152,7 +245351,7 @@
}
},
{
- "id": 5752,
+ "id": 5918,
"properties": {
"face": "floor",
"facing": "west",
@@ -239160,7 +245359,7 @@
}
},
{
- "id": 5753,
+ "id": 5919,
"properties": {
"face": "floor",
"facing": "west",
@@ -239168,7 +245367,7 @@
}
},
{
- "id": 5754,
+ "id": 5920,
"properties": {
"face": "floor",
"facing": "east",
@@ -239176,7 +245375,7 @@
}
},
{
- "id": 5755,
+ "id": 5921,
"properties": {
"face": "floor",
"facing": "east",
@@ -239184,7 +245383,7 @@
}
},
{
- "id": 5756,
+ "id": 5922,
"properties": {
"face": "wall",
"facing": "north",
@@ -239193,7 +245392,7 @@
},
{
"default": true,
- "id": 5757,
+ "id": 5923,
"properties": {
"face": "wall",
"facing": "north",
@@ -239201,7 +245400,7 @@
}
},
{
- "id": 5758,
+ "id": 5924,
"properties": {
"face": "wall",
"facing": "south",
@@ -239209,7 +245408,7 @@
}
},
{
- "id": 5759,
+ "id": 5925,
"properties": {
"face": "wall",
"facing": "south",
@@ -239217,7 +245416,7 @@
}
},
{
- "id": 5760,
+ "id": 5926,
"properties": {
"face": "wall",
"facing": "west",
@@ -239225,7 +245424,7 @@
}
},
{
- "id": 5761,
+ "id": 5927,
"properties": {
"face": "wall",
"facing": "west",
@@ -239233,7 +245432,7 @@
}
},
{
- "id": 5762,
+ "id": 5928,
"properties": {
"face": "wall",
"facing": "east",
@@ -239241,7 +245440,7 @@
}
},
{
- "id": 5763,
+ "id": 5929,
"properties": {
"face": "wall",
"facing": "east",
@@ -239249,7 +245448,7 @@
}
},
{
- "id": 5764,
+ "id": 5930,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -239257,7 +245456,7 @@
}
},
{
- "id": 5765,
+ "id": 5931,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -239265,7 +245464,7 @@
}
},
{
- "id": 5766,
+ "id": 5932,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -239273,7 +245472,7 @@
}
},
{
- "id": 5767,
+ "id": 5933,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -239281,7 +245480,7 @@
}
},
{
- "id": 5768,
+ "id": 5934,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -239289,7 +245488,7 @@
}
},
{
- "id": 5769,
+ "id": 5935,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -239297,7 +245496,7 @@
}
},
{
- "id": 5770,
+ "id": 5936,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -239305,7 +245504,7 @@
}
},
{
- "id": 5771,
+ "id": 5937,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -239328,14 +245527,14 @@
},
"states": [
{
- "id": 5650,
+ "id": 5814,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 5651,
+ "id": 5815,
"properties": {
"powered": "false"
}
@@ -239360,21 +245559,21 @@
},
"states": [
{
- "id": 11222,
+ "id": 11563,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11223,
+ "id": 11564,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11224,
+ "id": 11565,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -239382,21 +245581,21 @@
},
{
"default": true,
- "id": 11225,
+ "id": 11566,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11226,
+ "id": 11567,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11227,
+ "id": 11568,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -239437,7 +245636,7 @@
},
"states": [
{
- "id": 13442,
+ "id": 13911,
"properties": {
"facing": "north",
"half": "top",
@@ -239446,7 +245645,7 @@
}
},
{
- "id": 13443,
+ "id": 13912,
"properties": {
"facing": "north",
"half": "top",
@@ -239455,7 +245654,7 @@
}
},
{
- "id": 13444,
+ "id": 13913,
"properties": {
"facing": "north",
"half": "top",
@@ -239464,7 +245663,7 @@
}
},
{
- "id": 13445,
+ "id": 13914,
"properties": {
"facing": "north",
"half": "top",
@@ -239473,7 +245672,7 @@
}
},
{
- "id": 13446,
+ "id": 13915,
"properties": {
"facing": "north",
"half": "top",
@@ -239482,7 +245681,7 @@
}
},
{
- "id": 13447,
+ "id": 13916,
"properties": {
"facing": "north",
"half": "top",
@@ -239491,7 +245690,7 @@
}
},
{
- "id": 13448,
+ "id": 13917,
"properties": {
"facing": "north",
"half": "top",
@@ -239500,7 +245699,7 @@
}
},
{
- "id": 13449,
+ "id": 13918,
"properties": {
"facing": "north",
"half": "top",
@@ -239509,7 +245708,7 @@
}
},
{
- "id": 13450,
+ "id": 13919,
"properties": {
"facing": "north",
"half": "top",
@@ -239518,7 +245717,7 @@
}
},
{
- "id": 13451,
+ "id": 13920,
"properties": {
"facing": "north",
"half": "top",
@@ -239527,7 +245726,7 @@
}
},
{
- "id": 13452,
+ "id": 13921,
"properties": {
"facing": "north",
"half": "bottom",
@@ -239537,7 +245736,7 @@
},
{
"default": true,
- "id": 13453,
+ "id": 13922,
"properties": {
"facing": "north",
"half": "bottom",
@@ -239546,7 +245745,7 @@
}
},
{
- "id": 13454,
+ "id": 13923,
"properties": {
"facing": "north",
"half": "bottom",
@@ -239555,7 +245754,7 @@
}
},
{
- "id": 13455,
+ "id": 13924,
"properties": {
"facing": "north",
"half": "bottom",
@@ -239564,7 +245763,7 @@
}
},
{
- "id": 13456,
+ "id": 13925,
"properties": {
"facing": "north",
"half": "bottom",
@@ -239573,7 +245772,7 @@
}
},
{
- "id": 13457,
+ "id": 13926,
"properties": {
"facing": "north",
"half": "bottom",
@@ -239582,7 +245781,7 @@
}
},
{
- "id": 13458,
+ "id": 13927,
"properties": {
"facing": "north",
"half": "bottom",
@@ -239591,7 +245790,7 @@
}
},
{
- "id": 13459,
+ "id": 13928,
"properties": {
"facing": "north",
"half": "bottom",
@@ -239600,7 +245799,7 @@
}
},
{
- "id": 13460,
+ "id": 13929,
"properties": {
"facing": "north",
"half": "bottom",
@@ -239609,7 +245808,7 @@
}
},
{
- "id": 13461,
+ "id": 13930,
"properties": {
"facing": "north",
"half": "bottom",
@@ -239618,7 +245817,7 @@
}
},
{
- "id": 13462,
+ "id": 13931,
"properties": {
"facing": "south",
"half": "top",
@@ -239627,7 +245826,7 @@
}
},
{
- "id": 13463,
+ "id": 13932,
"properties": {
"facing": "south",
"half": "top",
@@ -239636,7 +245835,7 @@
}
},
{
- "id": 13464,
+ "id": 13933,
"properties": {
"facing": "south",
"half": "top",
@@ -239645,7 +245844,7 @@
}
},
{
- "id": 13465,
+ "id": 13934,
"properties": {
"facing": "south",
"half": "top",
@@ -239654,7 +245853,7 @@
}
},
{
- "id": 13466,
+ "id": 13935,
"properties": {
"facing": "south",
"half": "top",
@@ -239663,7 +245862,7 @@
}
},
{
- "id": 13467,
+ "id": 13936,
"properties": {
"facing": "south",
"half": "top",
@@ -239672,7 +245871,7 @@
}
},
{
- "id": 13468,
+ "id": 13937,
"properties": {
"facing": "south",
"half": "top",
@@ -239681,7 +245880,7 @@
}
},
{
- "id": 13469,
+ "id": 13938,
"properties": {
"facing": "south",
"half": "top",
@@ -239690,7 +245889,7 @@
}
},
{
- "id": 13470,
+ "id": 13939,
"properties": {
"facing": "south",
"half": "top",
@@ -239699,7 +245898,7 @@
}
},
{
- "id": 13471,
+ "id": 13940,
"properties": {
"facing": "south",
"half": "top",
@@ -239708,7 +245907,7 @@
}
},
{
- "id": 13472,
+ "id": 13941,
"properties": {
"facing": "south",
"half": "bottom",
@@ -239717,7 +245916,7 @@
}
},
{
- "id": 13473,
+ "id": 13942,
"properties": {
"facing": "south",
"half": "bottom",
@@ -239726,7 +245925,7 @@
}
},
{
- "id": 13474,
+ "id": 13943,
"properties": {
"facing": "south",
"half": "bottom",
@@ -239735,7 +245934,7 @@
}
},
{
- "id": 13475,
+ "id": 13944,
"properties": {
"facing": "south",
"half": "bottom",
@@ -239744,7 +245943,7 @@
}
},
{
- "id": 13476,
+ "id": 13945,
"properties": {
"facing": "south",
"half": "bottom",
@@ -239753,7 +245952,7 @@
}
},
{
- "id": 13477,
+ "id": 13946,
"properties": {
"facing": "south",
"half": "bottom",
@@ -239762,7 +245961,7 @@
}
},
{
- "id": 13478,
+ "id": 13947,
"properties": {
"facing": "south",
"half": "bottom",
@@ -239771,7 +245970,7 @@
}
},
{
- "id": 13479,
+ "id": 13948,
"properties": {
"facing": "south",
"half": "bottom",
@@ -239780,7 +245979,7 @@
}
},
{
- "id": 13480,
+ "id": 13949,
"properties": {
"facing": "south",
"half": "bottom",
@@ -239789,7 +245988,7 @@
}
},
{
- "id": 13481,
+ "id": 13950,
"properties": {
"facing": "south",
"half": "bottom",
@@ -239798,7 +245997,7 @@
}
},
{
- "id": 13482,
+ "id": 13951,
"properties": {
"facing": "west",
"half": "top",
@@ -239807,7 +246006,7 @@
}
},
{
- "id": 13483,
+ "id": 13952,
"properties": {
"facing": "west",
"half": "top",
@@ -239816,7 +246015,7 @@
}
},
{
- "id": 13484,
+ "id": 13953,
"properties": {
"facing": "west",
"half": "top",
@@ -239825,7 +246024,7 @@
}
},
{
- "id": 13485,
+ "id": 13954,
"properties": {
"facing": "west",
"half": "top",
@@ -239834,7 +246033,7 @@
}
},
{
- "id": 13486,
+ "id": 13955,
"properties": {
"facing": "west",
"half": "top",
@@ -239843,7 +246042,7 @@
}
},
{
- "id": 13487,
+ "id": 13956,
"properties": {
"facing": "west",
"half": "top",
@@ -239852,7 +246051,7 @@
}
},
{
- "id": 13488,
+ "id": 13957,
"properties": {
"facing": "west",
"half": "top",
@@ -239861,7 +246060,7 @@
}
},
{
- "id": 13489,
+ "id": 13958,
"properties": {
"facing": "west",
"half": "top",
@@ -239870,7 +246069,7 @@
}
},
{
- "id": 13490,
+ "id": 13959,
"properties": {
"facing": "west",
"half": "top",
@@ -239879,7 +246078,7 @@
}
},
{
- "id": 13491,
+ "id": 13960,
"properties": {
"facing": "west",
"half": "top",
@@ -239888,7 +246087,7 @@
}
},
{
- "id": 13492,
+ "id": 13961,
"properties": {
"facing": "west",
"half": "bottom",
@@ -239897,7 +246096,7 @@
}
},
{
- "id": 13493,
+ "id": 13962,
"properties": {
"facing": "west",
"half": "bottom",
@@ -239906,7 +246105,7 @@
}
},
{
- "id": 13494,
+ "id": 13963,
"properties": {
"facing": "west",
"half": "bottom",
@@ -239915,7 +246114,7 @@
}
},
{
- "id": 13495,
+ "id": 13964,
"properties": {
"facing": "west",
"half": "bottom",
@@ -239924,7 +246123,7 @@
}
},
{
- "id": 13496,
+ "id": 13965,
"properties": {
"facing": "west",
"half": "bottom",
@@ -239933,7 +246132,7 @@
}
},
{
- "id": 13497,
+ "id": 13966,
"properties": {
"facing": "west",
"half": "bottom",
@@ -239942,7 +246141,7 @@
}
},
{
- "id": 13498,
+ "id": 13967,
"properties": {
"facing": "west",
"half": "bottom",
@@ -239951,7 +246150,7 @@
}
},
{
- "id": 13499,
+ "id": 13968,
"properties": {
"facing": "west",
"half": "bottom",
@@ -239960,7 +246159,7 @@
}
},
{
- "id": 13500,
+ "id": 13969,
"properties": {
"facing": "west",
"half": "bottom",
@@ -239969,7 +246168,7 @@
}
},
{
- "id": 13501,
+ "id": 13970,
"properties": {
"facing": "west",
"half": "bottom",
@@ -239978,7 +246177,7 @@
}
},
{
- "id": 13502,
+ "id": 13971,
"properties": {
"facing": "east",
"half": "top",
@@ -239987,7 +246186,7 @@
}
},
{
- "id": 13503,
+ "id": 13972,
"properties": {
"facing": "east",
"half": "top",
@@ -239996,7 +246195,7 @@
}
},
{
- "id": 13504,
+ "id": 13973,
"properties": {
"facing": "east",
"half": "top",
@@ -240005,7 +246204,7 @@
}
},
{
- "id": 13505,
+ "id": 13974,
"properties": {
"facing": "east",
"half": "top",
@@ -240014,7 +246213,7 @@
}
},
{
- "id": 13506,
+ "id": 13975,
"properties": {
"facing": "east",
"half": "top",
@@ -240023,7 +246222,7 @@
}
},
{
- "id": 13507,
+ "id": 13976,
"properties": {
"facing": "east",
"half": "top",
@@ -240032,7 +246231,7 @@
}
},
{
- "id": 13508,
+ "id": 13977,
"properties": {
"facing": "east",
"half": "top",
@@ -240041,7 +246240,7 @@
}
},
{
- "id": 13509,
+ "id": 13978,
"properties": {
"facing": "east",
"half": "top",
@@ -240050,7 +246249,7 @@
}
},
{
- "id": 13510,
+ "id": 13979,
"properties": {
"facing": "east",
"half": "top",
@@ -240059,7 +246258,7 @@
}
},
{
- "id": 13511,
+ "id": 13980,
"properties": {
"facing": "east",
"half": "top",
@@ -240068,7 +246267,7 @@
}
},
{
- "id": 13512,
+ "id": 13981,
"properties": {
"facing": "east",
"half": "bottom",
@@ -240077,7 +246276,7 @@
}
},
{
- "id": 13513,
+ "id": 13982,
"properties": {
"facing": "east",
"half": "bottom",
@@ -240086,7 +246285,7 @@
}
},
{
- "id": 13514,
+ "id": 13983,
"properties": {
"facing": "east",
"half": "bottom",
@@ -240095,7 +246294,7 @@
}
},
{
- "id": 13515,
+ "id": 13984,
"properties": {
"facing": "east",
"half": "bottom",
@@ -240104,7 +246303,7 @@
}
},
{
- "id": 13516,
+ "id": 13985,
"properties": {
"facing": "east",
"half": "bottom",
@@ -240113,7 +246312,7 @@
}
},
{
- "id": 13517,
+ "id": 13986,
"properties": {
"facing": "east",
"half": "bottom",
@@ -240122,7 +246321,7 @@
}
},
{
- "id": 13518,
+ "id": 13987,
"properties": {
"facing": "east",
"half": "bottom",
@@ -240131,7 +246330,7 @@
}
},
{
- "id": 13519,
+ "id": 13988,
"properties": {
"facing": "east",
"half": "bottom",
@@ -240140,7 +246339,7 @@
}
},
{
- "id": 13520,
+ "id": 13989,
"properties": {
"facing": "east",
"half": "bottom",
@@ -240149,7 +246348,7 @@
}
},
{
- "id": 13521,
+ "id": 13990,
"properties": {
"facing": "east",
"half": "bottom",
@@ -240175,25 +246374,25 @@
"states": [
{
"default": true,
- "id": 18467,
+ "id": 18936,
"properties": {
"facing": "north"
}
},
{
- "id": 18468,
+ "id": 18937,
"properties": {
"facing": "south"
}
},
{
- "id": 18469,
+ "id": 18938,
"properties": {
"facing": "west"
}
},
{
- "id": 18470,
+ "id": 18939,
"properties": {
"facing": "east"
}
@@ -240201,516 +246400,6 @@
]
},
"minecraft:stripped_acacia_log": {
- "definition": {
- "type": "minecraft:rotated_pillar",
- "properties": {}
- },
- "properties": {
- "axis": [
- "x",
- "y",
- "z"
- ]
- },
- "states": [
- {
- "id": 171,
- "properties": {
- "axis": "x"
- }
- },
- {
- "default": true,
- "id": 172,
- "properties": {
- "axis": "y"
- }
- },
- {
- "id": 173,
- "properties": {
- "axis": "z"
- }
- }
- ]
- },
- "minecraft:stripped_acacia_wood": {
- "definition": {
- "type": "minecraft:rotated_pillar",
- "properties": {}
- },
- "properties": {
- "axis": [
- "x",
- "y",
- "z"
- ]
- },
- "states": [
- {
- "id": 225,
- "properties": {
- "axis": "x"
- }
- },
- {
- "default": true,
- "id": 226,
- "properties": {
- "axis": "y"
- }
- },
- {
- "id": 227,
- "properties": {
- "axis": "z"
- }
- }
- ]
- },
- "minecraft:stripped_bamboo_block": {
- "definition": {
- "type": "minecraft:rotated_pillar",
- "properties": {}
- },
- "properties": {
- "axis": [
- "x",
- "y",
- "z"
- ]
- },
- "states": [
- {
- "id": 186,
- "properties": {
- "axis": "x"
- }
- },
- {
- "default": true,
- "id": 187,
- "properties": {
- "axis": "y"
- }
- },
- {
- "id": 188,
- "properties": {
- "axis": "z"
- }
- }
- ]
- },
- "minecraft:stripped_birch_log": {
- "definition": {
- "type": "minecraft:rotated_pillar",
- "properties": {}
- },
- "properties": {
- "axis": [
- "x",
- "y",
- "z"
- ]
- },
- "states": [
- {
- "id": 165,
- "properties": {
- "axis": "x"
- }
- },
- {
- "default": true,
- "id": 166,
- "properties": {
- "axis": "y"
- }
- },
- {
- "id": 167,
- "properties": {
- "axis": "z"
- }
- }
- ]
- },
- "minecraft:stripped_birch_wood": {
- "definition": {
- "type": "minecraft:rotated_pillar",
- "properties": {}
- },
- "properties": {
- "axis": [
- "x",
- "y",
- "z"
- ]
- },
- "states": [
- {
- "id": 219,
- "properties": {
- "axis": "x"
- }
- },
- {
- "default": true,
- "id": 220,
- "properties": {
- "axis": "y"
- }
- },
- {
- "id": 221,
- "properties": {
- "axis": "z"
- }
- }
- ]
- },
- "minecraft:stripped_cherry_log": {
- "definition": {
- "type": "minecraft:rotated_pillar",
- "properties": {}
- },
- "properties": {
- "axis": [
- "x",
- "y",
- "z"
- ]
- },
- "states": [
- {
- "id": 174,
- "properties": {
- "axis": "x"
- }
- },
- {
- "default": true,
- "id": 175,
- "properties": {
- "axis": "y"
- }
- },
- {
- "id": 176,
- "properties": {
- "axis": "z"
- }
- }
- ]
- },
- "minecraft:stripped_cherry_wood": {
- "definition": {
- "type": "minecraft:rotated_pillar",
- "properties": {}
- },
- "properties": {
- "axis": [
- "x",
- "y",
- "z"
- ]
- },
- "states": [
- {
- "id": 228,
- "properties": {
- "axis": "x"
- }
- },
- {
- "default": true,
- "id": 229,
- "properties": {
- "axis": "y"
- }
- },
- {
- "id": 230,
- "properties": {
- "axis": "z"
- }
- }
- ]
- },
- "minecraft:stripped_crimson_hyphae": {
- "definition": {
- "type": "minecraft:rotated_pillar",
- "properties": {}
- },
- "properties": {
- "axis": [
- "x",
- "y",
- "z"
- ]
- },
- "states": [
- {
- "id": 18605,
- "properties": {
- "axis": "x"
- }
- },
- {
- "default": true,
- "id": 18606,
- "properties": {
- "axis": "y"
- }
- },
- {
- "id": 18607,
- "properties": {
- "axis": "z"
- }
- }
- ]
- },
- "minecraft:stripped_crimson_stem": {
- "definition": {
- "type": "minecraft:rotated_pillar",
- "properties": {}
- },
- "properties": {
- "axis": [
- "x",
- "y",
- "z"
- ]
- },
- "states": [
- {
- "id": 18599,
- "properties": {
- "axis": "x"
- }
- },
- {
- "default": true,
- "id": 18600,
- "properties": {
- "axis": "y"
- }
- },
- {
- "id": 18601,
- "properties": {
- "axis": "z"
- }
- }
- ]
- },
- "minecraft:stripped_dark_oak_log": {
- "definition": {
- "type": "minecraft:rotated_pillar",
- "properties": {}
- },
- "properties": {
- "axis": [
- "x",
- "y",
- "z"
- ]
- },
- "states": [
- {
- "id": 177,
- "properties": {
- "axis": "x"
- }
- },
- {
- "default": true,
- "id": 178,
- "properties": {
- "axis": "y"
- }
- },
- {
- "id": 179,
- "properties": {
- "axis": "z"
- }
- }
- ]
- },
- "minecraft:stripped_dark_oak_wood": {
- "definition": {
- "type": "minecraft:rotated_pillar",
- "properties": {}
- },
- "properties": {
- "axis": [
- "x",
- "y",
- "z"
- ]
- },
- "states": [
- {
- "id": 231,
- "properties": {
- "axis": "x"
- }
- },
- {
- "default": true,
- "id": 232,
- "properties": {
- "axis": "y"
- }
- },
- {
- "id": 233,
- "properties": {
- "axis": "z"
- }
- }
- ]
- },
- "minecraft:stripped_jungle_log": {
- "definition": {
- "type": "minecraft:rotated_pillar",
- "properties": {}
- },
- "properties": {
- "axis": [
- "x",
- "y",
- "z"
- ]
- },
- "states": [
- {
- "id": 168,
- "properties": {
- "axis": "x"
- }
- },
- {
- "default": true,
- "id": 169,
- "properties": {
- "axis": "y"
- }
- },
- {
- "id": 170,
- "properties": {
- "axis": "z"
- }
- }
- ]
- },
- "minecraft:stripped_jungle_wood": {
- "definition": {
- "type": "minecraft:rotated_pillar",
- "properties": {}
- },
- "properties": {
- "axis": [
- "x",
- "y",
- "z"
- ]
- },
- "states": [
- {
- "id": 222,
- "properties": {
- "axis": "x"
- }
- },
- {
- "default": true,
- "id": 223,
- "properties": {
- "axis": "y"
- }
- },
- {
- "id": 224,
- "properties": {
- "axis": "z"
- }
- }
- ]
- },
- "minecraft:stripped_mangrove_log": {
- "definition": {
- "type": "minecraft:rotated_pillar",
- "properties": {}
- },
- "properties": {
- "axis": [
- "x",
- "y",
- "z"
- ]
- },
- "states": [
- {
- "id": 183,
- "properties": {
- "axis": "x"
- }
- },
- {
- "default": true,
- "id": 184,
- "properties": {
- "axis": "y"
- }
- },
- {
- "id": 185,
- "properties": {
- "axis": "z"
- }
- }
- ]
- },
- "minecraft:stripped_mangrove_wood": {
- "definition": {
- "type": "minecraft:rotated_pillar",
- "properties": {}
- },
- "properties": {
- "axis": [
- "x",
- "y",
- "z"
- ]
- },
- "states": [
- {
- "id": 234,
- "properties": {
- "axis": "x"
- }
- },
- {
- "default": true,
- "id": 235,
- "properties": {
- "axis": "y"
- }
- },
- {
- "id": 236,
- "properties": {
- "axis": "z"
- }
- }
- ]
- },
- "minecraft:stripped_oak_log": {
"definition": {
"type": "minecraft:rotated_pillar",
"properties": {}
@@ -240744,6 +246433,516 @@
}
]
},
+ "minecraft:stripped_acacia_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 237,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 238,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 239,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:stripped_bamboo_block": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 198,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 199,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 200,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:stripped_birch_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 174,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 175,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 176,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:stripped_birch_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 231,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 232,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 233,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:stripped_cherry_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 183,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 184,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 185,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:stripped_cherry_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 240,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 241,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 242,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:stripped_crimson_hyphae": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 19074,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 19075,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 19076,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:stripped_crimson_stem": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 19068,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 19069,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 19070,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:stripped_dark_oak_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 186,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 187,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 188,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:stripped_dark_oak_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 243,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 244,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 245,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:stripped_jungle_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 177,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 178,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 179,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:stripped_jungle_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 234,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 235,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 236,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:stripped_mangrove_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 195,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 196,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 197,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:stripped_mangrove_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 249,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 250,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 251,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:stripped_oak_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 192,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 193,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 194,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
"minecraft:stripped_oak_wood": {
"definition": {
"type": "minecraft:rotated_pillar",
@@ -240758,20 +246957,88 @@
},
"states": [
{
- "id": 213,
+ "id": 225,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 214,
+ "id": 226,
"properties": {
"axis": "y"
}
},
{
- "id": 215,
+ "id": 227,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:stripped_pale_oak_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 189,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 190,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 191,
+ "properties": {
+ "axis": "z"
+ }
+ }
+ ]
+ },
+ "minecraft:stripped_pale_oak_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
+ "properties": {
+ "axis": [
+ "x",
+ "y",
+ "z"
+ ]
+ },
+ "states": [
+ {
+ "id": 246,
+ "properties": {
+ "axis": "x"
+ }
+ },
+ {
+ "default": true,
+ "id": 247,
+ "properties": {
+ "axis": "y"
+ }
+ },
+ {
+ "id": 248,
"properties": {
"axis": "z"
}
@@ -240792,20 +247059,20 @@
},
"states": [
{
- "id": 162,
+ "id": 171,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 163,
+ "id": 172,
"properties": {
"axis": "y"
}
},
{
- "id": 164,
+ "id": 173,
"properties": {
"axis": "z"
}
@@ -240826,20 +247093,20 @@
},
"states": [
{
- "id": 216,
+ "id": 228,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 217,
+ "id": 229,
"properties": {
"axis": "y"
}
},
{
- "id": 218,
+ "id": 230,
"properties": {
"axis": "z"
}
@@ -240860,20 +247127,20 @@
},
"states": [
{
- "id": 18588,
+ "id": 19057,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 18589,
+ "id": 19058,
"properties": {
"axis": "y"
}
},
{
- "id": 18590,
+ "id": 19059,
"properties": {
"axis": "z"
}
@@ -240894,20 +247161,20 @@
},
"states": [
{
- "id": 18582,
+ "id": 19051,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 18583,
+ "id": 19052,
"properties": {
"axis": "y"
}
},
{
- "id": 18584,
+ "id": 19053,
"properties": {
"axis": "z"
}
@@ -240929,26 +247196,26 @@
},
"states": [
{
- "id": 19356,
+ "id": 19825,
"properties": {
"mode": "save"
}
},
{
"default": true,
- "id": 19357,
+ "id": 19826,
"properties": {
"mode": "load"
}
},
{
- "id": 19358,
+ "id": 19827,
"properties": {
"mode": "corner"
}
},
{
- "id": 19359,
+ "id": 19828,
"properties": {
"mode": "data"
}
@@ -240963,7 +247230,7 @@
"states": [
{
"default": true,
- "id": 12549
+ "id": 13018
}
]
},
@@ -240995,97 +247262,97 @@
"states": [
{
"default": true,
- "id": 5799,
+ "id": 5965,
"properties": {
"age": "0"
}
},
{
- "id": 5800,
+ "id": 5966,
"properties": {
"age": "1"
}
},
{
- "id": 5801,
+ "id": 5967,
"properties": {
"age": "2"
}
},
{
- "id": 5802,
+ "id": 5968,
"properties": {
"age": "3"
}
},
{
- "id": 5803,
+ "id": 5969,
"properties": {
"age": "4"
}
},
{
- "id": 5804,
+ "id": 5970,
"properties": {
"age": "5"
}
},
{
- "id": 5805,
+ "id": 5971,
"properties": {
"age": "6"
}
},
{
- "id": 5806,
+ "id": 5972,
"properties": {
"age": "7"
}
},
{
- "id": 5807,
+ "id": 5973,
"properties": {
"age": "8"
}
},
{
- "id": 5808,
+ "id": 5974,
"properties": {
"age": "9"
}
},
{
- "id": 5809,
+ "id": 5975,
"properties": {
"age": "10"
}
},
{
- "id": 5810,
+ "id": 5976,
"properties": {
"age": "11"
}
},
{
- "id": 5811,
+ "id": 5977,
"properties": {
"age": "12"
}
},
{
- "id": 5812,
+ "id": 5978,
"properties": {
"age": "13"
}
},
{
- "id": 5813,
+ "id": 5979,
"properties": {
"age": "14"
}
},
{
- "id": 5814,
+ "id": 5980,
"properties": {
"age": "15"
}
@@ -241105,14 +247372,14 @@
},
"states": [
{
- "id": 10747,
+ "id": 11082,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 10748,
+ "id": 11083,
"properties": {
"half": "lower"
}
@@ -241122,7 +247389,7 @@
"minecraft:suspicious_gravel": {
"definition": {
"type": "minecraft:brushable",
- "brush_comleted_sound": "minecraft:item.brush.brushing.gravel.complete",
+ "brush_completed_sound": "minecraft:item.brush.brushing.gravel",
"brush_sound": "minecraft:item.brush.brushing.gravel",
"properties": {},
"turns_into": "minecraft:gravel"
@@ -241135,6 +247402,50 @@
"3"
]
},
+ "states": [
+ {
+ "default": true,
+ "id": 125,
+ "properties": {
+ "dusted": "0"
+ }
+ },
+ {
+ "id": 126,
+ "properties": {
+ "dusted": "1"
+ }
+ },
+ {
+ "id": 127,
+ "properties": {
+ "dusted": "2"
+ }
+ },
+ {
+ "id": 128,
+ "properties": {
+ "dusted": "3"
+ }
+ }
+ ]
+ },
+ "minecraft:suspicious_sand": {
+ "definition": {
+ "type": "minecraft:brushable",
+ "brush_completed_sound": "minecraft:item.brush.brushing.sand",
+ "brush_sound": "minecraft:item.brush.brushing.sand",
+ "properties": {},
+ "turns_into": "minecraft:sand"
+ },
+ "properties": {
+ "dusted": [
+ "0",
+ "1",
+ "2",
+ "3"
+ ]
+ },
"states": [
{
"default": true,
@@ -241163,50 +247474,6 @@
}
]
},
- "minecraft:suspicious_sand": {
- "definition": {
- "type": "minecraft:brushable",
- "brush_comleted_sound": "minecraft:item.brush.brushing.sand.complete",
- "brush_sound": "minecraft:item.brush.brushing.sand",
- "properties": {},
- "turns_into": "minecraft:sand"
- },
- "properties": {
- "dusted": [
- "0",
- "1",
- "2",
- "3"
- ]
- },
- "states": [
- {
- "default": true,
- "id": 113,
- "properties": {
- "dusted": "0"
- }
- },
- {
- "id": 114,
- "properties": {
- "dusted": "1"
- }
- },
- {
- "id": 115,
- "properties": {
- "dusted": "2"
- }
- },
- {
- "id": 116,
- "properties": {
- "dusted": "3"
- }
- }
- ]
- },
"minecraft:sweet_berry_bush": {
"definition": {
"type": "minecraft:sweet_berry_bush",
@@ -241223,25 +247490,25 @@
"states": [
{
"default": true,
- "id": 18575,
+ "id": 19044,
"properties": {
"age": "0"
}
},
{
- "id": 18576,
+ "id": 19045,
"properties": {
"age": "1"
}
},
{
- "id": 18577,
+ "id": 19046,
"properties": {
"age": "2"
}
},
{
- "id": 18578,
+ "id": 19047,
"properties": {
"age": "3"
}
@@ -241261,14 +247528,14 @@
},
"states": [
{
- "id": 10755,
+ "id": 11090,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 10756,
+ "id": 11091,
"properties": {
"half": "lower"
}
@@ -241288,14 +247555,14 @@
},
"states": [
{
- "id": 2009,
+ "id": 2052,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 2010,
+ "id": 2053,
"properties": {
"half": "lower"
}
@@ -241330,97 +247597,97 @@
"states": [
{
"default": true,
- "id": 19381,
+ "id": 19850,
"properties": {
"power": "0"
}
},
{
- "id": 19382,
+ "id": 19851,
"properties": {
"power": "1"
}
},
{
- "id": 19383,
+ "id": 19852,
"properties": {
"power": "2"
}
},
{
- "id": 19384,
+ "id": 19853,
"properties": {
"power": "3"
}
},
{
- "id": 19385,
+ "id": 19854,
"properties": {
"power": "4"
}
},
{
- "id": 19386,
+ "id": 19855,
"properties": {
"power": "5"
}
},
{
- "id": 19387,
+ "id": 19856,
"properties": {
"power": "6"
}
},
{
- "id": 19388,
+ "id": 19857,
"properties": {
"power": "7"
}
},
{
- "id": 19389,
+ "id": 19858,
"properties": {
"power": "8"
}
},
{
- "id": 19390,
+ "id": 19859,
"properties": {
"power": "9"
}
},
{
- "id": 19391,
+ "id": 19860,
"properties": {
"power": "10"
}
},
{
- "id": 19392,
+ "id": 19861,
"properties": {
"power": "11"
}
},
{
- "id": 19393,
+ "id": 19862,
"properties": {
"power": "12"
}
},
{
- "id": 19394,
+ "id": 19863,
"properties": {
"power": "13"
}
},
{
- "id": 19395,
+ "id": 19864,
"properties": {
"power": "14"
}
},
{
- "id": 19396,
+ "id": 19865,
"properties": {
"power": "15"
}
@@ -241435,7 +247702,7 @@
"states": [
{
"default": true,
- "id": 10744
+ "id": 11079
}
]
},
@@ -241447,7 +247714,7 @@
"states": [
{
"default": true,
- "id": 22317
+ "id": 22786
}
]
},
@@ -241464,14 +247731,14 @@
},
"states": [
{
- "id": 2094,
+ "id": 2137,
"properties": {
"unstable": "true"
}
},
{
"default": true,
- "id": 2095,
+ "id": 2138,
"properties": {
"unstable": "false"
}
@@ -241487,7 +247754,7 @@
"states": [
{
"default": true,
- "id": 2355
+ "id": 2398
}
]
},
@@ -241505,7 +247772,7 @@
"states": [
{
"default": true,
- "id": 2076
+ "id": 2119
}
]
},
@@ -241523,13 +247790,13 @@
"states": [
{
"default": true,
- "id": 12495,
+ "id": 12964,
"properties": {
"age": "0"
}
},
{
- "id": 12496,
+ "id": 12965,
"properties": {
"age": "1"
}
@@ -241560,7 +247827,7 @@
},
"states": [
{
- "id": 9119,
+ "id": 9374,
"properties": {
"type": "single",
"facing": "north",
@@ -241569,7 +247836,7 @@
},
{
"default": true,
- "id": 9120,
+ "id": 9375,
"properties": {
"type": "single",
"facing": "north",
@@ -241577,7 +247844,7 @@
}
},
{
- "id": 9121,
+ "id": 9376,
"properties": {
"type": "left",
"facing": "north",
@@ -241585,7 +247852,7 @@
}
},
{
- "id": 9122,
+ "id": 9377,
"properties": {
"type": "left",
"facing": "north",
@@ -241593,7 +247860,7 @@
}
},
{
- "id": 9123,
+ "id": 9378,
"properties": {
"type": "right",
"facing": "north",
@@ -241601,7 +247868,7 @@
}
},
{
- "id": 9124,
+ "id": 9379,
"properties": {
"type": "right",
"facing": "north",
@@ -241609,7 +247876,7 @@
}
},
{
- "id": 9125,
+ "id": 9380,
"properties": {
"type": "single",
"facing": "south",
@@ -241617,7 +247884,7 @@
}
},
{
- "id": 9126,
+ "id": 9381,
"properties": {
"type": "single",
"facing": "south",
@@ -241625,7 +247892,7 @@
}
},
{
- "id": 9127,
+ "id": 9382,
"properties": {
"type": "left",
"facing": "south",
@@ -241633,7 +247900,7 @@
}
},
{
- "id": 9128,
+ "id": 9383,
"properties": {
"type": "left",
"facing": "south",
@@ -241641,7 +247908,7 @@
}
},
{
- "id": 9129,
+ "id": 9384,
"properties": {
"type": "right",
"facing": "south",
@@ -241649,7 +247916,7 @@
}
},
{
- "id": 9130,
+ "id": 9385,
"properties": {
"type": "right",
"facing": "south",
@@ -241657,7 +247924,7 @@
}
},
{
- "id": 9131,
+ "id": 9386,
"properties": {
"type": "single",
"facing": "west",
@@ -241665,7 +247932,7 @@
}
},
{
- "id": 9132,
+ "id": 9387,
"properties": {
"type": "single",
"facing": "west",
@@ -241673,7 +247940,7 @@
}
},
{
- "id": 9133,
+ "id": 9388,
"properties": {
"type": "left",
"facing": "west",
@@ -241681,7 +247948,7 @@
}
},
{
- "id": 9134,
+ "id": 9389,
"properties": {
"type": "left",
"facing": "west",
@@ -241689,7 +247956,7 @@
}
},
{
- "id": 9135,
+ "id": 9390,
"properties": {
"type": "right",
"facing": "west",
@@ -241697,7 +247964,7 @@
}
},
{
- "id": 9136,
+ "id": 9391,
"properties": {
"type": "right",
"facing": "west",
@@ -241705,7 +247972,7 @@
}
},
{
- "id": 9137,
+ "id": 9392,
"properties": {
"type": "single",
"facing": "east",
@@ -241713,7 +247980,7 @@
}
},
{
- "id": 9138,
+ "id": 9393,
"properties": {
"type": "single",
"facing": "east",
@@ -241721,7 +247988,7 @@
}
},
{
- "id": 9139,
+ "id": 9394,
"properties": {
"type": "left",
"facing": "east",
@@ -241729,7 +247996,7 @@
}
},
{
- "id": 9140,
+ "id": 9395,
"properties": {
"type": "left",
"facing": "east",
@@ -241737,7 +248004,7 @@
}
},
{
- "id": 9141,
+ "id": 9396,
"properties": {
"type": "right",
"facing": "east",
@@ -241745,7 +248012,7 @@
}
},
{
- "id": 9142,
+ "id": 9397,
"properties": {
"type": "right",
"facing": "east",
@@ -241775,42 +248042,42 @@
},
"states": [
{
- "id": 26638,
+ "id": 27107,
"properties": {
"ominous": "true",
"trial_spawner_state": "inactive"
}
},
{
- "id": 26639,
+ "id": 27108,
"properties": {
"ominous": "true",
"trial_spawner_state": "waiting_for_players"
}
},
{
- "id": 26640,
+ "id": 27109,
"properties": {
"ominous": "true",
"trial_spawner_state": "active"
}
},
{
- "id": 26641,
+ "id": 27110,
"properties": {
"ominous": "true",
"trial_spawner_state": "waiting_for_reward_ejection"
}
},
{
- "id": 26642,
+ "id": 27111,
"properties": {
"ominous": "true",
"trial_spawner_state": "ejecting_reward"
}
},
{
- "id": 26643,
+ "id": 27112,
"properties": {
"ominous": "true",
"trial_spawner_state": "cooldown"
@@ -241818,42 +248085,42 @@
},
{
"default": true,
- "id": 26644,
+ "id": 27113,
"properties": {
"ominous": "false",
"trial_spawner_state": "inactive"
}
},
{
- "id": 26645,
+ "id": 27114,
"properties": {
"ominous": "false",
"trial_spawner_state": "waiting_for_players"
}
},
{
- "id": 26646,
+ "id": 27115,
"properties": {
"ominous": "false",
"trial_spawner_state": "active"
}
},
{
- "id": 26647,
+ "id": 27116,
"properties": {
"ominous": "false",
"trial_spawner_state": "waiting_for_reward_ejection"
}
},
{
- "id": 26648,
+ "id": 27117,
"properties": {
"ominous": "false",
"trial_spawner_state": "ejecting_reward"
}
},
{
- "id": 26649,
+ "id": 27118,
"properties": {
"ominous": "false",
"trial_spawner_state": "cooldown"
@@ -241899,7 +248166,7 @@
},
"states": [
{
- "id": 7537,
+ "id": 7767,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -241911,7 +248178,7 @@
}
},
{
- "id": 7538,
+ "id": 7768,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -241923,7 +248190,7 @@
}
},
{
- "id": 7539,
+ "id": 7769,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -241935,7 +248202,7 @@
}
},
{
- "id": 7540,
+ "id": 7770,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -241947,7 +248214,7 @@
}
},
{
- "id": 7541,
+ "id": 7771,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -241959,7 +248226,7 @@
}
},
{
- "id": 7542,
+ "id": 7772,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -241971,7 +248238,7 @@
}
},
{
- "id": 7543,
+ "id": 7773,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -241983,7 +248250,7 @@
}
},
{
- "id": 7544,
+ "id": 7774,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -241995,7 +248262,7 @@
}
},
{
- "id": 7545,
+ "id": 7775,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242007,7 +248274,7 @@
}
},
{
- "id": 7546,
+ "id": 7776,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242019,7 +248286,7 @@
}
},
{
- "id": 7547,
+ "id": 7777,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242031,7 +248298,7 @@
}
},
{
- "id": 7548,
+ "id": 7778,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242043,7 +248310,7 @@
}
},
{
- "id": 7549,
+ "id": 7779,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242055,7 +248322,7 @@
}
},
{
- "id": 7550,
+ "id": 7780,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242067,7 +248334,7 @@
}
},
{
- "id": 7551,
+ "id": 7781,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242079,7 +248346,7 @@
}
},
{
- "id": 7552,
+ "id": 7782,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242091,7 +248358,7 @@
}
},
{
- "id": 7553,
+ "id": 7783,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242103,7 +248370,7 @@
}
},
{
- "id": 7554,
+ "id": 7784,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242115,7 +248382,7 @@
}
},
{
- "id": 7555,
+ "id": 7785,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242127,7 +248394,7 @@
}
},
{
- "id": 7556,
+ "id": 7786,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242139,7 +248406,7 @@
}
},
{
- "id": 7557,
+ "id": 7787,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242151,7 +248418,7 @@
}
},
{
- "id": 7558,
+ "id": 7788,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242163,7 +248430,7 @@
}
},
{
- "id": 7559,
+ "id": 7789,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242175,7 +248442,7 @@
}
},
{
- "id": 7560,
+ "id": 7790,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242187,7 +248454,7 @@
}
},
{
- "id": 7561,
+ "id": 7791,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242199,7 +248466,7 @@
}
},
{
- "id": 7562,
+ "id": 7792,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242211,7 +248478,7 @@
}
},
{
- "id": 7563,
+ "id": 7793,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242223,7 +248490,7 @@
}
},
{
- "id": 7564,
+ "id": 7794,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242235,7 +248502,7 @@
}
},
{
- "id": 7565,
+ "id": 7795,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242247,7 +248514,7 @@
}
},
{
- "id": 7566,
+ "id": 7796,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242259,7 +248526,7 @@
}
},
{
- "id": 7567,
+ "id": 7797,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242271,7 +248538,7 @@
}
},
{
- "id": 7568,
+ "id": 7798,
"properties": {
"attached": "true",
"disarmed": "true",
@@ -242283,7 +248550,7 @@
}
},
{
- "id": 7569,
+ "id": 7799,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242295,7 +248562,7 @@
}
},
{
- "id": 7570,
+ "id": 7800,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242307,7 +248574,7 @@
}
},
{
- "id": 7571,
+ "id": 7801,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242319,7 +248586,7 @@
}
},
{
- "id": 7572,
+ "id": 7802,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242331,7 +248598,7 @@
}
},
{
- "id": 7573,
+ "id": 7803,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242343,7 +248610,7 @@
}
},
{
- "id": 7574,
+ "id": 7804,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242355,7 +248622,7 @@
}
},
{
- "id": 7575,
+ "id": 7805,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242367,7 +248634,7 @@
}
},
{
- "id": 7576,
+ "id": 7806,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242379,7 +248646,7 @@
}
},
{
- "id": 7577,
+ "id": 7807,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242391,7 +248658,7 @@
}
},
{
- "id": 7578,
+ "id": 7808,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242403,7 +248670,7 @@
}
},
{
- "id": 7579,
+ "id": 7809,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242415,7 +248682,7 @@
}
},
{
- "id": 7580,
+ "id": 7810,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242427,7 +248694,7 @@
}
},
{
- "id": 7581,
+ "id": 7811,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242439,7 +248706,7 @@
}
},
{
- "id": 7582,
+ "id": 7812,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242451,7 +248718,7 @@
}
},
{
- "id": 7583,
+ "id": 7813,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242463,7 +248730,7 @@
}
},
{
- "id": 7584,
+ "id": 7814,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242475,7 +248742,7 @@
}
},
{
- "id": 7585,
+ "id": 7815,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242487,7 +248754,7 @@
}
},
{
- "id": 7586,
+ "id": 7816,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242499,7 +248766,7 @@
}
},
{
- "id": 7587,
+ "id": 7817,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242511,7 +248778,7 @@
}
},
{
- "id": 7588,
+ "id": 7818,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242523,7 +248790,7 @@
}
},
{
- "id": 7589,
+ "id": 7819,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242535,7 +248802,7 @@
}
},
{
- "id": 7590,
+ "id": 7820,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242547,7 +248814,7 @@
}
},
{
- "id": 7591,
+ "id": 7821,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242559,7 +248826,7 @@
}
},
{
- "id": 7592,
+ "id": 7822,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242571,7 +248838,7 @@
}
},
{
- "id": 7593,
+ "id": 7823,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242583,7 +248850,7 @@
}
},
{
- "id": 7594,
+ "id": 7824,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242595,7 +248862,7 @@
}
},
{
- "id": 7595,
+ "id": 7825,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242607,7 +248874,7 @@
}
},
{
- "id": 7596,
+ "id": 7826,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242619,7 +248886,7 @@
}
},
{
- "id": 7597,
+ "id": 7827,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242631,7 +248898,7 @@
}
},
{
- "id": 7598,
+ "id": 7828,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242643,7 +248910,7 @@
}
},
{
- "id": 7599,
+ "id": 7829,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242655,7 +248922,7 @@
}
},
{
- "id": 7600,
+ "id": 7830,
"properties": {
"attached": "true",
"disarmed": "false",
@@ -242667,7 +248934,7 @@
}
},
{
- "id": 7601,
+ "id": 7831,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242679,7 +248946,7 @@
}
},
{
- "id": 7602,
+ "id": 7832,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242691,7 +248958,7 @@
}
},
{
- "id": 7603,
+ "id": 7833,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242703,7 +248970,7 @@
}
},
{
- "id": 7604,
+ "id": 7834,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242715,7 +248982,7 @@
}
},
{
- "id": 7605,
+ "id": 7835,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242727,7 +248994,7 @@
}
},
{
- "id": 7606,
+ "id": 7836,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242739,7 +249006,7 @@
}
},
{
- "id": 7607,
+ "id": 7837,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242751,7 +249018,7 @@
}
},
{
- "id": 7608,
+ "id": 7838,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242763,7 +249030,7 @@
}
},
{
- "id": 7609,
+ "id": 7839,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242775,7 +249042,7 @@
}
},
{
- "id": 7610,
+ "id": 7840,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242787,7 +249054,7 @@
}
},
{
- "id": 7611,
+ "id": 7841,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242799,7 +249066,7 @@
}
},
{
- "id": 7612,
+ "id": 7842,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242811,7 +249078,7 @@
}
},
{
- "id": 7613,
+ "id": 7843,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242823,7 +249090,7 @@
}
},
{
- "id": 7614,
+ "id": 7844,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242835,7 +249102,7 @@
}
},
{
- "id": 7615,
+ "id": 7845,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242847,7 +249114,7 @@
}
},
{
- "id": 7616,
+ "id": 7846,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242859,7 +249126,7 @@
}
},
{
- "id": 7617,
+ "id": 7847,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242871,7 +249138,7 @@
}
},
{
- "id": 7618,
+ "id": 7848,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242883,7 +249150,7 @@
}
},
{
- "id": 7619,
+ "id": 7849,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242895,7 +249162,7 @@
}
},
{
- "id": 7620,
+ "id": 7850,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242907,7 +249174,7 @@
}
},
{
- "id": 7621,
+ "id": 7851,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242919,7 +249186,7 @@
}
},
{
- "id": 7622,
+ "id": 7852,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242931,7 +249198,7 @@
}
},
{
- "id": 7623,
+ "id": 7853,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242943,7 +249210,7 @@
}
},
{
- "id": 7624,
+ "id": 7854,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242955,7 +249222,7 @@
}
},
{
- "id": 7625,
+ "id": 7855,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242967,7 +249234,7 @@
}
},
{
- "id": 7626,
+ "id": 7856,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242979,7 +249246,7 @@
}
},
{
- "id": 7627,
+ "id": 7857,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -242991,7 +249258,7 @@
}
},
{
- "id": 7628,
+ "id": 7858,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -243003,7 +249270,7 @@
}
},
{
- "id": 7629,
+ "id": 7859,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -243015,7 +249282,7 @@
}
},
{
- "id": 7630,
+ "id": 7860,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -243027,7 +249294,7 @@
}
},
{
- "id": 7631,
+ "id": 7861,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -243039,7 +249306,7 @@
}
},
{
- "id": 7632,
+ "id": 7862,
"properties": {
"attached": "false",
"disarmed": "true",
@@ -243051,7 +249318,7 @@
}
},
{
- "id": 7633,
+ "id": 7863,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243063,7 +249330,7 @@
}
},
{
- "id": 7634,
+ "id": 7864,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243075,7 +249342,7 @@
}
},
{
- "id": 7635,
+ "id": 7865,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243087,7 +249354,7 @@
}
},
{
- "id": 7636,
+ "id": 7866,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243099,7 +249366,7 @@
}
},
{
- "id": 7637,
+ "id": 7867,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243111,7 +249378,7 @@
}
},
{
- "id": 7638,
+ "id": 7868,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243123,7 +249390,7 @@
}
},
{
- "id": 7639,
+ "id": 7869,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243135,7 +249402,7 @@
}
},
{
- "id": 7640,
+ "id": 7870,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243147,7 +249414,7 @@
}
},
{
- "id": 7641,
+ "id": 7871,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243159,7 +249426,7 @@
}
},
{
- "id": 7642,
+ "id": 7872,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243171,7 +249438,7 @@
}
},
{
- "id": 7643,
+ "id": 7873,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243183,7 +249450,7 @@
}
},
{
- "id": 7644,
+ "id": 7874,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243195,7 +249462,7 @@
}
},
{
- "id": 7645,
+ "id": 7875,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243207,7 +249474,7 @@
}
},
{
- "id": 7646,
+ "id": 7876,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243219,7 +249486,7 @@
}
},
{
- "id": 7647,
+ "id": 7877,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243231,7 +249498,7 @@
}
},
{
- "id": 7648,
+ "id": 7878,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243243,7 +249510,7 @@
}
},
{
- "id": 7649,
+ "id": 7879,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243255,7 +249522,7 @@
}
},
{
- "id": 7650,
+ "id": 7880,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243267,7 +249534,7 @@
}
},
{
- "id": 7651,
+ "id": 7881,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243279,7 +249546,7 @@
}
},
{
- "id": 7652,
+ "id": 7882,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243291,7 +249558,7 @@
}
},
{
- "id": 7653,
+ "id": 7883,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243303,7 +249570,7 @@
}
},
{
- "id": 7654,
+ "id": 7884,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243315,7 +249582,7 @@
}
},
{
- "id": 7655,
+ "id": 7885,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243327,7 +249594,7 @@
}
},
{
- "id": 7656,
+ "id": 7886,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243339,7 +249606,7 @@
}
},
{
- "id": 7657,
+ "id": 7887,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243351,7 +249618,7 @@
}
},
{
- "id": 7658,
+ "id": 7888,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243363,7 +249630,7 @@
}
},
{
- "id": 7659,
+ "id": 7889,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243375,7 +249642,7 @@
}
},
{
- "id": 7660,
+ "id": 7890,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243387,7 +249654,7 @@
}
},
{
- "id": 7661,
+ "id": 7891,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243399,7 +249666,7 @@
}
},
{
- "id": 7662,
+ "id": 7892,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243411,7 +249678,7 @@
}
},
{
- "id": 7663,
+ "id": 7893,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243424,7 +249691,7 @@
},
{
"default": true,
- "id": 7664,
+ "id": 7894,
"properties": {
"attached": "false",
"disarmed": "false",
@@ -243460,7 +249727,7 @@
},
"states": [
{
- "id": 7521,
+ "id": 7751,
"properties": {
"attached": "true",
"facing": "north",
@@ -243468,7 +249735,7 @@
}
},
{
- "id": 7522,
+ "id": 7752,
"properties": {
"attached": "true",
"facing": "north",
@@ -243476,7 +249743,7 @@
}
},
{
- "id": 7523,
+ "id": 7753,
"properties": {
"attached": "true",
"facing": "south",
@@ -243484,7 +249751,7 @@
}
},
{
- "id": 7524,
+ "id": 7754,
"properties": {
"attached": "true",
"facing": "south",
@@ -243492,7 +249759,7 @@
}
},
{
- "id": 7525,
+ "id": 7755,
"properties": {
"attached": "true",
"facing": "west",
@@ -243500,7 +249767,7 @@
}
},
{
- "id": 7526,
+ "id": 7756,
"properties": {
"attached": "true",
"facing": "west",
@@ -243508,7 +249775,7 @@
}
},
{
- "id": 7527,
+ "id": 7757,
"properties": {
"attached": "true",
"facing": "east",
@@ -243516,7 +249783,7 @@
}
},
{
- "id": 7528,
+ "id": 7758,
"properties": {
"attached": "true",
"facing": "east",
@@ -243524,7 +249791,7 @@
}
},
{
- "id": 7529,
+ "id": 7759,
"properties": {
"attached": "false",
"facing": "north",
@@ -243533,7 +249800,7 @@
},
{
"default": true,
- "id": 7530,
+ "id": 7760,
"properties": {
"attached": "false",
"facing": "north",
@@ -243541,7 +249808,7 @@
}
},
{
- "id": 7531,
+ "id": 7761,
"properties": {
"attached": "false",
"facing": "south",
@@ -243549,7 +249816,7 @@
}
},
{
- "id": 7532,
+ "id": 7762,
"properties": {
"attached": "false",
"facing": "south",
@@ -243557,7 +249824,7 @@
}
},
{
- "id": 7533,
+ "id": 7763,
"properties": {
"attached": "false",
"facing": "west",
@@ -243565,7 +249832,7 @@
}
},
{
- "id": 7534,
+ "id": 7764,
"properties": {
"attached": "false",
"facing": "west",
@@ -243573,7 +249840,7 @@
}
},
{
- "id": 7535,
+ "id": 7765,
"properties": {
"attached": "false",
"facing": "east",
@@ -243581,7 +249848,7 @@
}
},
{
- "id": 7536,
+ "id": 7766,
"properties": {
"attached": "false",
"facing": "east",
@@ -243605,13 +249872,13 @@
"states": [
{
"default": true,
- "id": 12823,
+ "id": 13292,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12824,
+ "id": 13293,
"properties": {
"waterlogged": "false"
}
@@ -243627,7 +249894,7 @@
"states": [
{
"default": true,
- "id": 12808
+ "id": 13277
}
]
},
@@ -243646,13 +249913,13 @@
"states": [
{
"default": true,
- "id": 12843,
+ "id": 13312,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12844,
+ "id": 13313,
"properties": {
"waterlogged": "false"
}
@@ -243680,56 +249947,56 @@
"states": [
{
"default": true,
- "id": 12893,
+ "id": 13362,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12894,
+ "id": 13363,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12895,
+ "id": 13364,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12896,
+ "id": 13365,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12897,
+ "id": 13366,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12898,
+ "id": 13367,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12899,
+ "id": 13368,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12900,
+ "id": 13369,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -243745,7 +250012,7 @@
"states": [
{
"default": true,
- "id": 21081
+ "id": 21550
}
]
},
@@ -243767,21 +250034,21 @@
},
"states": [
{
- "id": 21905,
+ "id": 22374,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 21906,
+ "id": 22375,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 21907,
+ "id": 22376,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -243789,21 +250056,21 @@
},
{
"default": true,
- "id": 21908,
+ "id": 22377,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 21909,
+ "id": 22378,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 21910,
+ "id": 22379,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -243844,7 +250111,7 @@
},
"states": [
{
- "id": 21911,
+ "id": 22380,
"properties": {
"facing": "north",
"half": "top",
@@ -243853,7 +250120,7 @@
}
},
{
- "id": 21912,
+ "id": 22381,
"properties": {
"facing": "north",
"half": "top",
@@ -243862,7 +250129,7 @@
}
},
{
- "id": 21913,
+ "id": 22382,
"properties": {
"facing": "north",
"half": "top",
@@ -243871,7 +250138,7 @@
}
},
{
- "id": 21914,
+ "id": 22383,
"properties": {
"facing": "north",
"half": "top",
@@ -243880,7 +250147,7 @@
}
},
{
- "id": 21915,
+ "id": 22384,
"properties": {
"facing": "north",
"half": "top",
@@ -243889,7 +250156,7 @@
}
},
{
- "id": 21916,
+ "id": 22385,
"properties": {
"facing": "north",
"half": "top",
@@ -243898,7 +250165,7 @@
}
},
{
- "id": 21917,
+ "id": 22386,
"properties": {
"facing": "north",
"half": "top",
@@ -243907,7 +250174,7 @@
}
},
{
- "id": 21918,
+ "id": 22387,
"properties": {
"facing": "north",
"half": "top",
@@ -243916,7 +250183,7 @@
}
},
{
- "id": 21919,
+ "id": 22388,
"properties": {
"facing": "north",
"half": "top",
@@ -243925,7 +250192,7 @@
}
},
{
- "id": 21920,
+ "id": 22389,
"properties": {
"facing": "north",
"half": "top",
@@ -243934,7 +250201,7 @@
}
},
{
- "id": 21921,
+ "id": 22390,
"properties": {
"facing": "north",
"half": "bottom",
@@ -243944,7 +250211,7 @@
},
{
"default": true,
- "id": 21922,
+ "id": 22391,
"properties": {
"facing": "north",
"half": "bottom",
@@ -243953,7 +250220,7 @@
}
},
{
- "id": 21923,
+ "id": 22392,
"properties": {
"facing": "north",
"half": "bottom",
@@ -243962,7 +250229,7 @@
}
},
{
- "id": 21924,
+ "id": 22393,
"properties": {
"facing": "north",
"half": "bottom",
@@ -243971,7 +250238,7 @@
}
},
{
- "id": 21925,
+ "id": 22394,
"properties": {
"facing": "north",
"half": "bottom",
@@ -243980,7 +250247,7 @@
}
},
{
- "id": 21926,
+ "id": 22395,
"properties": {
"facing": "north",
"half": "bottom",
@@ -243989,7 +250256,7 @@
}
},
{
- "id": 21927,
+ "id": 22396,
"properties": {
"facing": "north",
"half": "bottom",
@@ -243998,7 +250265,7 @@
}
},
{
- "id": 21928,
+ "id": 22397,
"properties": {
"facing": "north",
"half": "bottom",
@@ -244007,7 +250274,7 @@
}
},
{
- "id": 21929,
+ "id": 22398,
"properties": {
"facing": "north",
"half": "bottom",
@@ -244016,7 +250283,7 @@
}
},
{
- "id": 21930,
+ "id": 22399,
"properties": {
"facing": "north",
"half": "bottom",
@@ -244025,7 +250292,7 @@
}
},
{
- "id": 21931,
+ "id": 22400,
"properties": {
"facing": "south",
"half": "top",
@@ -244034,7 +250301,7 @@
}
},
{
- "id": 21932,
+ "id": 22401,
"properties": {
"facing": "south",
"half": "top",
@@ -244043,7 +250310,7 @@
}
},
{
- "id": 21933,
+ "id": 22402,
"properties": {
"facing": "south",
"half": "top",
@@ -244052,7 +250319,7 @@
}
},
{
- "id": 21934,
+ "id": 22403,
"properties": {
"facing": "south",
"half": "top",
@@ -244061,7 +250328,7 @@
}
},
{
- "id": 21935,
+ "id": 22404,
"properties": {
"facing": "south",
"half": "top",
@@ -244070,7 +250337,7 @@
}
},
{
- "id": 21936,
+ "id": 22405,
"properties": {
"facing": "south",
"half": "top",
@@ -244079,7 +250346,7 @@
}
},
{
- "id": 21937,
+ "id": 22406,
"properties": {
"facing": "south",
"half": "top",
@@ -244088,7 +250355,7 @@
}
},
{
- "id": 21938,
+ "id": 22407,
"properties": {
"facing": "south",
"half": "top",
@@ -244097,7 +250364,7 @@
}
},
{
- "id": 21939,
+ "id": 22408,
"properties": {
"facing": "south",
"half": "top",
@@ -244106,7 +250373,7 @@
}
},
{
- "id": 21940,
+ "id": 22409,
"properties": {
"facing": "south",
"half": "top",
@@ -244115,7 +250382,7 @@
}
},
{
- "id": 21941,
+ "id": 22410,
"properties": {
"facing": "south",
"half": "bottom",
@@ -244124,7 +250391,7 @@
}
},
{
- "id": 21942,
+ "id": 22411,
"properties": {
"facing": "south",
"half": "bottom",
@@ -244133,7 +250400,7 @@
}
},
{
- "id": 21943,
+ "id": 22412,
"properties": {
"facing": "south",
"half": "bottom",
@@ -244142,7 +250409,7 @@
}
},
{
- "id": 21944,
+ "id": 22413,
"properties": {
"facing": "south",
"half": "bottom",
@@ -244151,7 +250418,7 @@
}
},
{
- "id": 21945,
+ "id": 22414,
"properties": {
"facing": "south",
"half": "bottom",
@@ -244160,7 +250427,7 @@
}
},
{
- "id": 21946,
+ "id": 22415,
"properties": {
"facing": "south",
"half": "bottom",
@@ -244169,7 +250436,7 @@
}
},
{
- "id": 21947,
+ "id": 22416,
"properties": {
"facing": "south",
"half": "bottom",
@@ -244178,7 +250445,7 @@
}
},
{
- "id": 21948,
+ "id": 22417,
"properties": {
"facing": "south",
"half": "bottom",
@@ -244187,7 +250454,7 @@
}
},
{
- "id": 21949,
+ "id": 22418,
"properties": {
"facing": "south",
"half": "bottom",
@@ -244196,7 +250463,7 @@
}
},
{
- "id": 21950,
+ "id": 22419,
"properties": {
"facing": "south",
"half": "bottom",
@@ -244205,7 +250472,7 @@
}
},
{
- "id": 21951,
+ "id": 22420,
"properties": {
"facing": "west",
"half": "top",
@@ -244214,7 +250481,7 @@
}
},
{
- "id": 21952,
+ "id": 22421,
"properties": {
"facing": "west",
"half": "top",
@@ -244223,7 +250490,7 @@
}
},
{
- "id": 21953,
+ "id": 22422,
"properties": {
"facing": "west",
"half": "top",
@@ -244232,7 +250499,7 @@
}
},
{
- "id": 21954,
+ "id": 22423,
"properties": {
"facing": "west",
"half": "top",
@@ -244241,7 +250508,7 @@
}
},
{
- "id": 21955,
+ "id": 22424,
"properties": {
"facing": "west",
"half": "top",
@@ -244250,7 +250517,7 @@
}
},
{
- "id": 21956,
+ "id": 22425,
"properties": {
"facing": "west",
"half": "top",
@@ -244259,7 +250526,7 @@
}
},
{
- "id": 21957,
+ "id": 22426,
"properties": {
"facing": "west",
"half": "top",
@@ -244268,7 +250535,7 @@
}
},
{
- "id": 21958,
+ "id": 22427,
"properties": {
"facing": "west",
"half": "top",
@@ -244277,7 +250544,7 @@
}
},
{
- "id": 21959,
+ "id": 22428,
"properties": {
"facing": "west",
"half": "top",
@@ -244286,7 +250553,7 @@
}
},
{
- "id": 21960,
+ "id": 22429,
"properties": {
"facing": "west",
"half": "top",
@@ -244295,7 +250562,7 @@
}
},
{
- "id": 21961,
+ "id": 22430,
"properties": {
"facing": "west",
"half": "bottom",
@@ -244304,7 +250571,7 @@
}
},
{
- "id": 21962,
+ "id": 22431,
"properties": {
"facing": "west",
"half": "bottom",
@@ -244313,7 +250580,7 @@
}
},
{
- "id": 21963,
+ "id": 22432,
"properties": {
"facing": "west",
"half": "bottom",
@@ -244322,7 +250589,7 @@
}
},
{
- "id": 21964,
+ "id": 22433,
"properties": {
"facing": "west",
"half": "bottom",
@@ -244331,7 +250598,7 @@
}
},
{
- "id": 21965,
+ "id": 22434,
"properties": {
"facing": "west",
"half": "bottom",
@@ -244340,7 +250607,7 @@
}
},
{
- "id": 21966,
+ "id": 22435,
"properties": {
"facing": "west",
"half": "bottom",
@@ -244349,7 +250616,7 @@
}
},
{
- "id": 21967,
+ "id": 22436,
"properties": {
"facing": "west",
"half": "bottom",
@@ -244358,7 +250625,7 @@
}
},
{
- "id": 21968,
+ "id": 22437,
"properties": {
"facing": "west",
"half": "bottom",
@@ -244367,7 +250634,7 @@
}
},
{
- "id": 21969,
+ "id": 22438,
"properties": {
"facing": "west",
"half": "bottom",
@@ -244376,7 +250643,7 @@
}
},
{
- "id": 21970,
+ "id": 22439,
"properties": {
"facing": "west",
"half": "bottom",
@@ -244385,7 +250652,7 @@
}
},
{
- "id": 21971,
+ "id": 22440,
"properties": {
"facing": "east",
"half": "top",
@@ -244394,7 +250661,7 @@
}
},
{
- "id": 21972,
+ "id": 22441,
"properties": {
"facing": "east",
"half": "top",
@@ -244403,7 +250670,7 @@
}
},
{
- "id": 21973,
+ "id": 22442,
"properties": {
"facing": "east",
"half": "top",
@@ -244412,7 +250679,7 @@
}
},
{
- "id": 21974,
+ "id": 22443,
"properties": {
"facing": "east",
"half": "top",
@@ -244421,7 +250688,7 @@
}
},
{
- "id": 21975,
+ "id": 22444,
"properties": {
"facing": "east",
"half": "top",
@@ -244430,7 +250697,7 @@
}
},
{
- "id": 21976,
+ "id": 22445,
"properties": {
"facing": "east",
"half": "top",
@@ -244439,7 +250706,7 @@
}
},
{
- "id": 21977,
+ "id": 22446,
"properties": {
"facing": "east",
"half": "top",
@@ -244448,7 +250715,7 @@
}
},
{
- "id": 21978,
+ "id": 22447,
"properties": {
"facing": "east",
"half": "top",
@@ -244457,7 +250724,7 @@
}
},
{
- "id": 21979,
+ "id": 22448,
"properties": {
"facing": "east",
"half": "top",
@@ -244466,7 +250733,7 @@
}
},
{
- "id": 21980,
+ "id": 22449,
"properties": {
"facing": "east",
"half": "top",
@@ -244475,7 +250742,7 @@
}
},
{
- "id": 21981,
+ "id": 22450,
"properties": {
"facing": "east",
"half": "bottom",
@@ -244484,7 +250751,7 @@
}
},
{
- "id": 21982,
+ "id": 22451,
"properties": {
"facing": "east",
"half": "bottom",
@@ -244493,7 +250760,7 @@
}
},
{
- "id": 21983,
+ "id": 22452,
"properties": {
"facing": "east",
"half": "bottom",
@@ -244502,7 +250769,7 @@
}
},
{
- "id": 21984,
+ "id": 22453,
"properties": {
"facing": "east",
"half": "bottom",
@@ -244511,7 +250778,7 @@
}
},
{
- "id": 21985,
+ "id": 22454,
"properties": {
"facing": "east",
"half": "bottom",
@@ -244520,7 +250787,7 @@
}
},
{
- "id": 21986,
+ "id": 22455,
"properties": {
"facing": "east",
"half": "bottom",
@@ -244529,7 +250796,7 @@
}
},
{
- "id": 21987,
+ "id": 22456,
"properties": {
"facing": "east",
"half": "bottom",
@@ -244538,7 +250805,7 @@
}
},
{
- "id": 21988,
+ "id": 22457,
"properties": {
"facing": "east",
"half": "bottom",
@@ -244547,7 +250814,7 @@
}
},
{
- "id": 21989,
+ "id": 22458,
"properties": {
"facing": "east",
"half": "bottom",
@@ -244556,7 +250823,7 @@
}
},
{
- "id": 21990,
+ "id": 22459,
"properties": {
"facing": "east",
"half": "bottom",
@@ -244603,7 +250870,7 @@
},
"states": [
{
- "id": 21991,
+ "id": 22460,
"properties": {
"east": "none",
"north": "none",
@@ -244614,7 +250881,7 @@
}
},
{
- "id": 21992,
+ "id": 22461,
"properties": {
"east": "none",
"north": "none",
@@ -244625,7 +250892,7 @@
}
},
{
- "id": 21993,
+ "id": 22462,
"properties": {
"east": "none",
"north": "none",
@@ -244637,7 +250904,7 @@
},
{
"default": true,
- "id": 21994,
+ "id": 22463,
"properties": {
"east": "none",
"north": "none",
@@ -244648,7 +250915,7 @@
}
},
{
- "id": 21995,
+ "id": 22464,
"properties": {
"east": "none",
"north": "none",
@@ -244659,7 +250926,7 @@
}
},
{
- "id": 21996,
+ "id": 22465,
"properties": {
"east": "none",
"north": "none",
@@ -244670,7 +250937,7 @@
}
},
{
- "id": 21997,
+ "id": 22466,
"properties": {
"east": "none",
"north": "none",
@@ -244681,7 +250948,7 @@
}
},
{
- "id": 21998,
+ "id": 22467,
"properties": {
"east": "none",
"north": "none",
@@ -244692,7 +250959,7 @@
}
},
{
- "id": 21999,
+ "id": 22468,
"properties": {
"east": "none",
"north": "none",
@@ -244703,7 +250970,7 @@
}
},
{
- "id": 22000,
+ "id": 22469,
"properties": {
"east": "none",
"north": "none",
@@ -244714,7 +250981,7 @@
}
},
{
- "id": 22001,
+ "id": 22470,
"properties": {
"east": "none",
"north": "none",
@@ -244725,7 +250992,7 @@
}
},
{
- "id": 22002,
+ "id": 22471,
"properties": {
"east": "none",
"north": "none",
@@ -244736,7 +251003,7 @@
}
},
{
- "id": 22003,
+ "id": 22472,
"properties": {
"east": "none",
"north": "none",
@@ -244747,7 +251014,7 @@
}
},
{
- "id": 22004,
+ "id": 22473,
"properties": {
"east": "none",
"north": "none",
@@ -244758,7 +251025,7 @@
}
},
{
- "id": 22005,
+ "id": 22474,
"properties": {
"east": "none",
"north": "none",
@@ -244769,7 +251036,7 @@
}
},
{
- "id": 22006,
+ "id": 22475,
"properties": {
"east": "none",
"north": "none",
@@ -244780,7 +251047,7 @@
}
},
{
- "id": 22007,
+ "id": 22476,
"properties": {
"east": "none",
"north": "none",
@@ -244791,7 +251058,7 @@
}
},
{
- "id": 22008,
+ "id": 22477,
"properties": {
"east": "none",
"north": "none",
@@ -244802,7 +251069,7 @@
}
},
{
- "id": 22009,
+ "id": 22478,
"properties": {
"east": "none",
"north": "none",
@@ -244813,7 +251080,7 @@
}
},
{
- "id": 22010,
+ "id": 22479,
"properties": {
"east": "none",
"north": "none",
@@ -244824,7 +251091,7 @@
}
},
{
- "id": 22011,
+ "id": 22480,
"properties": {
"east": "none",
"north": "none",
@@ -244835,7 +251102,7 @@
}
},
{
- "id": 22012,
+ "id": 22481,
"properties": {
"east": "none",
"north": "none",
@@ -244846,7 +251113,7 @@
}
},
{
- "id": 22013,
+ "id": 22482,
"properties": {
"east": "none",
"north": "none",
@@ -244857,7 +251124,7 @@
}
},
{
- "id": 22014,
+ "id": 22483,
"properties": {
"east": "none",
"north": "none",
@@ -244868,7 +251135,7 @@
}
},
{
- "id": 22015,
+ "id": 22484,
"properties": {
"east": "none",
"north": "none",
@@ -244879,7 +251146,7 @@
}
},
{
- "id": 22016,
+ "id": 22485,
"properties": {
"east": "none",
"north": "none",
@@ -244890,7 +251157,7 @@
}
},
{
- "id": 22017,
+ "id": 22486,
"properties": {
"east": "none",
"north": "none",
@@ -244901,7 +251168,7 @@
}
},
{
- "id": 22018,
+ "id": 22487,
"properties": {
"east": "none",
"north": "none",
@@ -244912,7 +251179,7 @@
}
},
{
- "id": 22019,
+ "id": 22488,
"properties": {
"east": "none",
"north": "none",
@@ -244923,7 +251190,7 @@
}
},
{
- "id": 22020,
+ "id": 22489,
"properties": {
"east": "none",
"north": "none",
@@ -244934,7 +251201,7 @@
}
},
{
- "id": 22021,
+ "id": 22490,
"properties": {
"east": "none",
"north": "none",
@@ -244945,7 +251212,7 @@
}
},
{
- "id": 22022,
+ "id": 22491,
"properties": {
"east": "none",
"north": "none",
@@ -244956,7 +251223,7 @@
}
},
{
- "id": 22023,
+ "id": 22492,
"properties": {
"east": "none",
"north": "none",
@@ -244967,7 +251234,7 @@
}
},
{
- "id": 22024,
+ "id": 22493,
"properties": {
"east": "none",
"north": "none",
@@ -244978,7 +251245,7 @@
}
},
{
- "id": 22025,
+ "id": 22494,
"properties": {
"east": "none",
"north": "none",
@@ -244989,7 +251256,7 @@
}
},
{
- "id": 22026,
+ "id": 22495,
"properties": {
"east": "none",
"north": "none",
@@ -245000,7 +251267,7 @@
}
},
{
- "id": 22027,
+ "id": 22496,
"properties": {
"east": "none",
"north": "low",
@@ -245011,7 +251278,7 @@
}
},
{
- "id": 22028,
+ "id": 22497,
"properties": {
"east": "none",
"north": "low",
@@ -245022,7 +251289,7 @@
}
},
{
- "id": 22029,
+ "id": 22498,
"properties": {
"east": "none",
"north": "low",
@@ -245033,7 +251300,7 @@
}
},
{
- "id": 22030,
+ "id": 22499,
"properties": {
"east": "none",
"north": "low",
@@ -245044,7 +251311,7 @@
}
},
{
- "id": 22031,
+ "id": 22500,
"properties": {
"east": "none",
"north": "low",
@@ -245055,7 +251322,7 @@
}
},
{
- "id": 22032,
+ "id": 22501,
"properties": {
"east": "none",
"north": "low",
@@ -245066,7 +251333,7 @@
}
},
{
- "id": 22033,
+ "id": 22502,
"properties": {
"east": "none",
"north": "low",
@@ -245077,7 +251344,7 @@
}
},
{
- "id": 22034,
+ "id": 22503,
"properties": {
"east": "none",
"north": "low",
@@ -245088,7 +251355,7 @@
}
},
{
- "id": 22035,
+ "id": 22504,
"properties": {
"east": "none",
"north": "low",
@@ -245099,7 +251366,7 @@
}
},
{
- "id": 22036,
+ "id": 22505,
"properties": {
"east": "none",
"north": "low",
@@ -245110,7 +251377,7 @@
}
},
{
- "id": 22037,
+ "id": 22506,
"properties": {
"east": "none",
"north": "low",
@@ -245121,7 +251388,7 @@
}
},
{
- "id": 22038,
+ "id": 22507,
"properties": {
"east": "none",
"north": "low",
@@ -245132,7 +251399,7 @@
}
},
{
- "id": 22039,
+ "id": 22508,
"properties": {
"east": "none",
"north": "low",
@@ -245143,7 +251410,7 @@
}
},
{
- "id": 22040,
+ "id": 22509,
"properties": {
"east": "none",
"north": "low",
@@ -245154,7 +251421,7 @@
}
},
{
- "id": 22041,
+ "id": 22510,
"properties": {
"east": "none",
"north": "low",
@@ -245165,7 +251432,7 @@
}
},
{
- "id": 22042,
+ "id": 22511,
"properties": {
"east": "none",
"north": "low",
@@ -245176,7 +251443,7 @@
}
},
{
- "id": 22043,
+ "id": 22512,
"properties": {
"east": "none",
"north": "low",
@@ -245187,7 +251454,7 @@
}
},
{
- "id": 22044,
+ "id": 22513,
"properties": {
"east": "none",
"north": "low",
@@ -245198,7 +251465,7 @@
}
},
{
- "id": 22045,
+ "id": 22514,
"properties": {
"east": "none",
"north": "low",
@@ -245209,7 +251476,7 @@
}
},
{
- "id": 22046,
+ "id": 22515,
"properties": {
"east": "none",
"north": "low",
@@ -245220,7 +251487,7 @@
}
},
{
- "id": 22047,
+ "id": 22516,
"properties": {
"east": "none",
"north": "low",
@@ -245231,7 +251498,7 @@
}
},
{
- "id": 22048,
+ "id": 22517,
"properties": {
"east": "none",
"north": "low",
@@ -245242,7 +251509,7 @@
}
},
{
- "id": 22049,
+ "id": 22518,
"properties": {
"east": "none",
"north": "low",
@@ -245253,7 +251520,7 @@
}
},
{
- "id": 22050,
+ "id": 22519,
"properties": {
"east": "none",
"north": "low",
@@ -245264,7 +251531,7 @@
}
},
{
- "id": 22051,
+ "id": 22520,
"properties": {
"east": "none",
"north": "low",
@@ -245275,7 +251542,7 @@
}
},
{
- "id": 22052,
+ "id": 22521,
"properties": {
"east": "none",
"north": "low",
@@ -245286,7 +251553,7 @@
}
},
{
- "id": 22053,
+ "id": 22522,
"properties": {
"east": "none",
"north": "low",
@@ -245297,7 +251564,7 @@
}
},
{
- "id": 22054,
+ "id": 22523,
"properties": {
"east": "none",
"north": "low",
@@ -245308,7 +251575,7 @@
}
},
{
- "id": 22055,
+ "id": 22524,
"properties": {
"east": "none",
"north": "low",
@@ -245319,7 +251586,7 @@
}
},
{
- "id": 22056,
+ "id": 22525,
"properties": {
"east": "none",
"north": "low",
@@ -245330,7 +251597,7 @@
}
},
{
- "id": 22057,
+ "id": 22526,
"properties": {
"east": "none",
"north": "low",
@@ -245341,7 +251608,7 @@
}
},
{
- "id": 22058,
+ "id": 22527,
"properties": {
"east": "none",
"north": "low",
@@ -245352,7 +251619,7 @@
}
},
{
- "id": 22059,
+ "id": 22528,
"properties": {
"east": "none",
"north": "low",
@@ -245363,7 +251630,7 @@
}
},
{
- "id": 22060,
+ "id": 22529,
"properties": {
"east": "none",
"north": "low",
@@ -245374,7 +251641,7 @@
}
},
{
- "id": 22061,
+ "id": 22530,
"properties": {
"east": "none",
"north": "low",
@@ -245385,7 +251652,7 @@
}
},
{
- "id": 22062,
+ "id": 22531,
"properties": {
"east": "none",
"north": "low",
@@ -245396,7 +251663,7 @@
}
},
{
- "id": 22063,
+ "id": 22532,
"properties": {
"east": "none",
"north": "tall",
@@ -245407,7 +251674,7 @@
}
},
{
- "id": 22064,
+ "id": 22533,
"properties": {
"east": "none",
"north": "tall",
@@ -245418,7 +251685,7 @@
}
},
{
- "id": 22065,
+ "id": 22534,
"properties": {
"east": "none",
"north": "tall",
@@ -245429,7 +251696,7 @@
}
},
{
- "id": 22066,
+ "id": 22535,
"properties": {
"east": "none",
"north": "tall",
@@ -245440,7 +251707,7 @@
}
},
{
- "id": 22067,
+ "id": 22536,
"properties": {
"east": "none",
"north": "tall",
@@ -245451,7 +251718,7 @@
}
},
{
- "id": 22068,
+ "id": 22537,
"properties": {
"east": "none",
"north": "tall",
@@ -245462,7 +251729,7 @@
}
},
{
- "id": 22069,
+ "id": 22538,
"properties": {
"east": "none",
"north": "tall",
@@ -245473,7 +251740,7 @@
}
},
{
- "id": 22070,
+ "id": 22539,
"properties": {
"east": "none",
"north": "tall",
@@ -245484,7 +251751,7 @@
}
},
{
- "id": 22071,
+ "id": 22540,
"properties": {
"east": "none",
"north": "tall",
@@ -245495,7 +251762,7 @@
}
},
{
- "id": 22072,
+ "id": 22541,
"properties": {
"east": "none",
"north": "tall",
@@ -245506,7 +251773,7 @@
}
},
{
- "id": 22073,
+ "id": 22542,
"properties": {
"east": "none",
"north": "tall",
@@ -245517,7 +251784,7 @@
}
},
{
- "id": 22074,
+ "id": 22543,
"properties": {
"east": "none",
"north": "tall",
@@ -245528,7 +251795,7 @@
}
},
{
- "id": 22075,
+ "id": 22544,
"properties": {
"east": "none",
"north": "tall",
@@ -245539,7 +251806,7 @@
}
},
{
- "id": 22076,
+ "id": 22545,
"properties": {
"east": "none",
"north": "tall",
@@ -245550,7 +251817,7 @@
}
},
{
- "id": 22077,
+ "id": 22546,
"properties": {
"east": "none",
"north": "tall",
@@ -245561,7 +251828,7 @@
}
},
{
- "id": 22078,
+ "id": 22547,
"properties": {
"east": "none",
"north": "tall",
@@ -245572,7 +251839,7 @@
}
},
{
- "id": 22079,
+ "id": 22548,
"properties": {
"east": "none",
"north": "tall",
@@ -245583,7 +251850,7 @@
}
},
{
- "id": 22080,
+ "id": 22549,
"properties": {
"east": "none",
"north": "tall",
@@ -245594,7 +251861,7 @@
}
},
{
- "id": 22081,
+ "id": 22550,
"properties": {
"east": "none",
"north": "tall",
@@ -245605,7 +251872,7 @@
}
},
{
- "id": 22082,
+ "id": 22551,
"properties": {
"east": "none",
"north": "tall",
@@ -245616,7 +251883,7 @@
}
},
{
- "id": 22083,
+ "id": 22552,
"properties": {
"east": "none",
"north": "tall",
@@ -245627,7 +251894,7 @@
}
},
{
- "id": 22084,
+ "id": 22553,
"properties": {
"east": "none",
"north": "tall",
@@ -245638,7 +251905,7 @@
}
},
{
- "id": 22085,
+ "id": 22554,
"properties": {
"east": "none",
"north": "tall",
@@ -245649,7 +251916,7 @@
}
},
{
- "id": 22086,
+ "id": 22555,
"properties": {
"east": "none",
"north": "tall",
@@ -245660,7 +251927,7 @@
}
},
{
- "id": 22087,
+ "id": 22556,
"properties": {
"east": "none",
"north": "tall",
@@ -245671,7 +251938,7 @@
}
},
{
- "id": 22088,
+ "id": 22557,
"properties": {
"east": "none",
"north": "tall",
@@ -245682,7 +251949,7 @@
}
},
{
- "id": 22089,
+ "id": 22558,
"properties": {
"east": "none",
"north": "tall",
@@ -245693,7 +251960,7 @@
}
},
{
- "id": 22090,
+ "id": 22559,
"properties": {
"east": "none",
"north": "tall",
@@ -245704,7 +251971,7 @@
}
},
{
- "id": 22091,
+ "id": 22560,
"properties": {
"east": "none",
"north": "tall",
@@ -245715,7 +251982,7 @@
}
},
{
- "id": 22092,
+ "id": 22561,
"properties": {
"east": "none",
"north": "tall",
@@ -245726,7 +251993,7 @@
}
},
{
- "id": 22093,
+ "id": 22562,
"properties": {
"east": "none",
"north": "tall",
@@ -245737,7 +252004,7 @@
}
},
{
- "id": 22094,
+ "id": 22563,
"properties": {
"east": "none",
"north": "tall",
@@ -245748,7 +252015,7 @@
}
},
{
- "id": 22095,
+ "id": 22564,
"properties": {
"east": "none",
"north": "tall",
@@ -245759,7 +252026,7 @@
}
},
{
- "id": 22096,
+ "id": 22565,
"properties": {
"east": "none",
"north": "tall",
@@ -245770,7 +252037,7 @@
}
},
{
- "id": 22097,
+ "id": 22566,
"properties": {
"east": "none",
"north": "tall",
@@ -245781,7 +252048,7 @@
}
},
{
- "id": 22098,
+ "id": 22567,
"properties": {
"east": "none",
"north": "tall",
@@ -245792,7 +252059,7 @@
}
},
{
- "id": 22099,
+ "id": 22568,
"properties": {
"east": "low",
"north": "none",
@@ -245803,7 +252070,7 @@
}
},
{
- "id": 22100,
+ "id": 22569,
"properties": {
"east": "low",
"north": "none",
@@ -245814,7 +252081,7 @@
}
},
{
- "id": 22101,
+ "id": 22570,
"properties": {
"east": "low",
"north": "none",
@@ -245825,7 +252092,7 @@
}
},
{
- "id": 22102,
+ "id": 22571,
"properties": {
"east": "low",
"north": "none",
@@ -245836,7 +252103,7 @@
}
},
{
- "id": 22103,
+ "id": 22572,
"properties": {
"east": "low",
"north": "none",
@@ -245847,7 +252114,7 @@
}
},
{
- "id": 22104,
+ "id": 22573,
"properties": {
"east": "low",
"north": "none",
@@ -245858,7 +252125,7 @@
}
},
{
- "id": 22105,
+ "id": 22574,
"properties": {
"east": "low",
"north": "none",
@@ -245869,7 +252136,7 @@
}
},
{
- "id": 22106,
+ "id": 22575,
"properties": {
"east": "low",
"north": "none",
@@ -245880,7 +252147,7 @@
}
},
{
- "id": 22107,
+ "id": 22576,
"properties": {
"east": "low",
"north": "none",
@@ -245891,7 +252158,7 @@
}
},
{
- "id": 22108,
+ "id": 22577,
"properties": {
"east": "low",
"north": "none",
@@ -245902,7 +252169,7 @@
}
},
{
- "id": 22109,
+ "id": 22578,
"properties": {
"east": "low",
"north": "none",
@@ -245913,7 +252180,7 @@
}
},
{
- "id": 22110,
+ "id": 22579,
"properties": {
"east": "low",
"north": "none",
@@ -245924,7 +252191,7 @@
}
},
{
- "id": 22111,
+ "id": 22580,
"properties": {
"east": "low",
"north": "none",
@@ -245935,7 +252202,7 @@
}
},
{
- "id": 22112,
+ "id": 22581,
"properties": {
"east": "low",
"north": "none",
@@ -245946,7 +252213,7 @@
}
},
{
- "id": 22113,
+ "id": 22582,
"properties": {
"east": "low",
"north": "none",
@@ -245957,7 +252224,7 @@
}
},
{
- "id": 22114,
+ "id": 22583,
"properties": {
"east": "low",
"north": "none",
@@ -245968,7 +252235,7 @@
}
},
{
- "id": 22115,
+ "id": 22584,
"properties": {
"east": "low",
"north": "none",
@@ -245979,7 +252246,7 @@
}
},
{
- "id": 22116,
+ "id": 22585,
"properties": {
"east": "low",
"north": "none",
@@ -245990,7 +252257,7 @@
}
},
{
- "id": 22117,
+ "id": 22586,
"properties": {
"east": "low",
"north": "none",
@@ -246001,7 +252268,7 @@
}
},
{
- "id": 22118,
+ "id": 22587,
"properties": {
"east": "low",
"north": "none",
@@ -246012,7 +252279,7 @@
}
},
{
- "id": 22119,
+ "id": 22588,
"properties": {
"east": "low",
"north": "none",
@@ -246023,7 +252290,7 @@
}
},
{
- "id": 22120,
+ "id": 22589,
"properties": {
"east": "low",
"north": "none",
@@ -246034,7 +252301,7 @@
}
},
{
- "id": 22121,
+ "id": 22590,
"properties": {
"east": "low",
"north": "none",
@@ -246045,7 +252312,7 @@
}
},
{
- "id": 22122,
+ "id": 22591,
"properties": {
"east": "low",
"north": "none",
@@ -246056,7 +252323,7 @@
}
},
{
- "id": 22123,
+ "id": 22592,
"properties": {
"east": "low",
"north": "none",
@@ -246067,7 +252334,7 @@
}
},
{
- "id": 22124,
+ "id": 22593,
"properties": {
"east": "low",
"north": "none",
@@ -246078,7 +252345,7 @@
}
},
{
- "id": 22125,
+ "id": 22594,
"properties": {
"east": "low",
"north": "none",
@@ -246089,7 +252356,7 @@
}
},
{
- "id": 22126,
+ "id": 22595,
"properties": {
"east": "low",
"north": "none",
@@ -246100,7 +252367,7 @@
}
},
{
- "id": 22127,
+ "id": 22596,
"properties": {
"east": "low",
"north": "none",
@@ -246111,7 +252378,7 @@
}
},
{
- "id": 22128,
+ "id": 22597,
"properties": {
"east": "low",
"north": "none",
@@ -246122,7 +252389,7 @@
}
},
{
- "id": 22129,
+ "id": 22598,
"properties": {
"east": "low",
"north": "none",
@@ -246133,7 +252400,7 @@
}
},
{
- "id": 22130,
+ "id": 22599,
"properties": {
"east": "low",
"north": "none",
@@ -246144,7 +252411,7 @@
}
},
{
- "id": 22131,
+ "id": 22600,
"properties": {
"east": "low",
"north": "none",
@@ -246155,7 +252422,7 @@
}
},
{
- "id": 22132,
+ "id": 22601,
"properties": {
"east": "low",
"north": "none",
@@ -246166,7 +252433,7 @@
}
},
{
- "id": 22133,
+ "id": 22602,
"properties": {
"east": "low",
"north": "none",
@@ -246177,7 +252444,7 @@
}
},
{
- "id": 22134,
+ "id": 22603,
"properties": {
"east": "low",
"north": "none",
@@ -246188,7 +252455,7 @@
}
},
{
- "id": 22135,
+ "id": 22604,
"properties": {
"east": "low",
"north": "low",
@@ -246199,7 +252466,7 @@
}
},
{
- "id": 22136,
+ "id": 22605,
"properties": {
"east": "low",
"north": "low",
@@ -246210,7 +252477,7 @@
}
},
{
- "id": 22137,
+ "id": 22606,
"properties": {
"east": "low",
"north": "low",
@@ -246221,7 +252488,7 @@
}
},
{
- "id": 22138,
+ "id": 22607,
"properties": {
"east": "low",
"north": "low",
@@ -246232,7 +252499,7 @@
}
},
{
- "id": 22139,
+ "id": 22608,
"properties": {
"east": "low",
"north": "low",
@@ -246243,7 +252510,7 @@
}
},
{
- "id": 22140,
+ "id": 22609,
"properties": {
"east": "low",
"north": "low",
@@ -246254,7 +252521,7 @@
}
},
{
- "id": 22141,
+ "id": 22610,
"properties": {
"east": "low",
"north": "low",
@@ -246265,7 +252532,7 @@
}
},
{
- "id": 22142,
+ "id": 22611,
"properties": {
"east": "low",
"north": "low",
@@ -246276,7 +252543,7 @@
}
},
{
- "id": 22143,
+ "id": 22612,
"properties": {
"east": "low",
"north": "low",
@@ -246287,7 +252554,7 @@
}
},
{
- "id": 22144,
+ "id": 22613,
"properties": {
"east": "low",
"north": "low",
@@ -246298,7 +252565,7 @@
}
},
{
- "id": 22145,
+ "id": 22614,
"properties": {
"east": "low",
"north": "low",
@@ -246309,7 +252576,7 @@
}
},
{
- "id": 22146,
+ "id": 22615,
"properties": {
"east": "low",
"north": "low",
@@ -246320,7 +252587,7 @@
}
},
{
- "id": 22147,
+ "id": 22616,
"properties": {
"east": "low",
"north": "low",
@@ -246331,7 +252598,7 @@
}
},
{
- "id": 22148,
+ "id": 22617,
"properties": {
"east": "low",
"north": "low",
@@ -246342,7 +252609,7 @@
}
},
{
- "id": 22149,
+ "id": 22618,
"properties": {
"east": "low",
"north": "low",
@@ -246353,7 +252620,7 @@
}
},
{
- "id": 22150,
+ "id": 22619,
"properties": {
"east": "low",
"north": "low",
@@ -246364,7 +252631,7 @@
}
},
{
- "id": 22151,
+ "id": 22620,
"properties": {
"east": "low",
"north": "low",
@@ -246375,7 +252642,7 @@
}
},
{
- "id": 22152,
+ "id": 22621,
"properties": {
"east": "low",
"north": "low",
@@ -246386,7 +252653,7 @@
}
},
{
- "id": 22153,
+ "id": 22622,
"properties": {
"east": "low",
"north": "low",
@@ -246397,7 +252664,7 @@
}
},
{
- "id": 22154,
+ "id": 22623,
"properties": {
"east": "low",
"north": "low",
@@ -246408,7 +252675,7 @@
}
},
{
- "id": 22155,
+ "id": 22624,
"properties": {
"east": "low",
"north": "low",
@@ -246419,7 +252686,7 @@
}
},
{
- "id": 22156,
+ "id": 22625,
"properties": {
"east": "low",
"north": "low",
@@ -246430,7 +252697,7 @@
}
},
{
- "id": 22157,
+ "id": 22626,
"properties": {
"east": "low",
"north": "low",
@@ -246441,7 +252708,7 @@
}
},
{
- "id": 22158,
+ "id": 22627,
"properties": {
"east": "low",
"north": "low",
@@ -246452,7 +252719,7 @@
}
},
{
- "id": 22159,
+ "id": 22628,
"properties": {
"east": "low",
"north": "low",
@@ -246463,7 +252730,7 @@
}
},
{
- "id": 22160,
+ "id": 22629,
"properties": {
"east": "low",
"north": "low",
@@ -246474,7 +252741,7 @@
}
},
{
- "id": 22161,
+ "id": 22630,
"properties": {
"east": "low",
"north": "low",
@@ -246485,7 +252752,7 @@
}
},
{
- "id": 22162,
+ "id": 22631,
"properties": {
"east": "low",
"north": "low",
@@ -246496,7 +252763,7 @@
}
},
{
- "id": 22163,
+ "id": 22632,
"properties": {
"east": "low",
"north": "low",
@@ -246507,7 +252774,7 @@
}
},
{
- "id": 22164,
+ "id": 22633,
"properties": {
"east": "low",
"north": "low",
@@ -246518,7 +252785,7 @@
}
},
{
- "id": 22165,
+ "id": 22634,
"properties": {
"east": "low",
"north": "low",
@@ -246529,7 +252796,7 @@
}
},
{
- "id": 22166,
+ "id": 22635,
"properties": {
"east": "low",
"north": "low",
@@ -246540,7 +252807,7 @@
}
},
{
- "id": 22167,
+ "id": 22636,
"properties": {
"east": "low",
"north": "low",
@@ -246551,7 +252818,7 @@
}
},
{
- "id": 22168,
+ "id": 22637,
"properties": {
"east": "low",
"north": "low",
@@ -246562,7 +252829,7 @@
}
},
{
- "id": 22169,
+ "id": 22638,
"properties": {
"east": "low",
"north": "low",
@@ -246573,7 +252840,7 @@
}
},
{
- "id": 22170,
+ "id": 22639,
"properties": {
"east": "low",
"north": "low",
@@ -246584,7 +252851,7 @@
}
},
{
- "id": 22171,
+ "id": 22640,
"properties": {
"east": "low",
"north": "tall",
@@ -246595,7 +252862,7 @@
}
},
{
- "id": 22172,
+ "id": 22641,
"properties": {
"east": "low",
"north": "tall",
@@ -246606,7 +252873,7 @@
}
},
{
- "id": 22173,
+ "id": 22642,
"properties": {
"east": "low",
"north": "tall",
@@ -246617,7 +252884,7 @@
}
},
{
- "id": 22174,
+ "id": 22643,
"properties": {
"east": "low",
"north": "tall",
@@ -246628,7 +252895,7 @@
}
},
{
- "id": 22175,
+ "id": 22644,
"properties": {
"east": "low",
"north": "tall",
@@ -246639,7 +252906,7 @@
}
},
{
- "id": 22176,
+ "id": 22645,
"properties": {
"east": "low",
"north": "tall",
@@ -246650,7 +252917,7 @@
}
},
{
- "id": 22177,
+ "id": 22646,
"properties": {
"east": "low",
"north": "tall",
@@ -246661,7 +252928,7 @@
}
},
{
- "id": 22178,
+ "id": 22647,
"properties": {
"east": "low",
"north": "tall",
@@ -246672,7 +252939,7 @@
}
},
{
- "id": 22179,
+ "id": 22648,
"properties": {
"east": "low",
"north": "tall",
@@ -246683,7 +252950,7 @@
}
},
{
- "id": 22180,
+ "id": 22649,
"properties": {
"east": "low",
"north": "tall",
@@ -246694,7 +252961,7 @@
}
},
{
- "id": 22181,
+ "id": 22650,
"properties": {
"east": "low",
"north": "tall",
@@ -246705,7 +252972,7 @@
}
},
{
- "id": 22182,
+ "id": 22651,
"properties": {
"east": "low",
"north": "tall",
@@ -246716,7 +252983,7 @@
}
},
{
- "id": 22183,
+ "id": 22652,
"properties": {
"east": "low",
"north": "tall",
@@ -246727,7 +252994,7 @@
}
},
{
- "id": 22184,
+ "id": 22653,
"properties": {
"east": "low",
"north": "tall",
@@ -246738,7 +253005,7 @@
}
},
{
- "id": 22185,
+ "id": 22654,
"properties": {
"east": "low",
"north": "tall",
@@ -246749,7 +253016,7 @@
}
},
{
- "id": 22186,
+ "id": 22655,
"properties": {
"east": "low",
"north": "tall",
@@ -246760,7 +253027,7 @@
}
},
{
- "id": 22187,
+ "id": 22656,
"properties": {
"east": "low",
"north": "tall",
@@ -246771,7 +253038,7 @@
}
},
{
- "id": 22188,
+ "id": 22657,
"properties": {
"east": "low",
"north": "tall",
@@ -246782,7 +253049,7 @@
}
},
{
- "id": 22189,
+ "id": 22658,
"properties": {
"east": "low",
"north": "tall",
@@ -246793,7 +253060,7 @@
}
},
{
- "id": 22190,
+ "id": 22659,
"properties": {
"east": "low",
"north": "tall",
@@ -246804,7 +253071,7 @@
}
},
{
- "id": 22191,
+ "id": 22660,
"properties": {
"east": "low",
"north": "tall",
@@ -246815,7 +253082,7 @@
}
},
{
- "id": 22192,
+ "id": 22661,
"properties": {
"east": "low",
"north": "tall",
@@ -246826,7 +253093,7 @@
}
},
{
- "id": 22193,
+ "id": 22662,
"properties": {
"east": "low",
"north": "tall",
@@ -246837,7 +253104,7 @@
}
},
{
- "id": 22194,
+ "id": 22663,
"properties": {
"east": "low",
"north": "tall",
@@ -246848,7 +253115,7 @@
}
},
{
- "id": 22195,
+ "id": 22664,
"properties": {
"east": "low",
"north": "tall",
@@ -246859,7 +253126,7 @@
}
},
{
- "id": 22196,
+ "id": 22665,
"properties": {
"east": "low",
"north": "tall",
@@ -246870,7 +253137,7 @@
}
},
{
- "id": 22197,
+ "id": 22666,
"properties": {
"east": "low",
"north": "tall",
@@ -246881,7 +253148,7 @@
}
},
{
- "id": 22198,
+ "id": 22667,
"properties": {
"east": "low",
"north": "tall",
@@ -246892,7 +253159,7 @@
}
},
{
- "id": 22199,
+ "id": 22668,
"properties": {
"east": "low",
"north": "tall",
@@ -246903,7 +253170,7 @@
}
},
{
- "id": 22200,
+ "id": 22669,
"properties": {
"east": "low",
"north": "tall",
@@ -246914,7 +253181,7 @@
}
},
{
- "id": 22201,
+ "id": 22670,
"properties": {
"east": "low",
"north": "tall",
@@ -246925,7 +253192,7 @@
}
},
{
- "id": 22202,
+ "id": 22671,
"properties": {
"east": "low",
"north": "tall",
@@ -246936,7 +253203,7 @@
}
},
{
- "id": 22203,
+ "id": 22672,
"properties": {
"east": "low",
"north": "tall",
@@ -246947,7 +253214,7 @@
}
},
{
- "id": 22204,
+ "id": 22673,
"properties": {
"east": "low",
"north": "tall",
@@ -246958,7 +253225,7 @@
}
},
{
- "id": 22205,
+ "id": 22674,
"properties": {
"east": "low",
"north": "tall",
@@ -246969,7 +253236,7 @@
}
},
{
- "id": 22206,
+ "id": 22675,
"properties": {
"east": "low",
"north": "tall",
@@ -246980,7 +253247,7 @@
}
},
{
- "id": 22207,
+ "id": 22676,
"properties": {
"east": "tall",
"north": "none",
@@ -246991,7 +253258,7 @@
}
},
{
- "id": 22208,
+ "id": 22677,
"properties": {
"east": "tall",
"north": "none",
@@ -247002,7 +253269,7 @@
}
},
{
- "id": 22209,
+ "id": 22678,
"properties": {
"east": "tall",
"north": "none",
@@ -247013,7 +253280,7 @@
}
},
{
- "id": 22210,
+ "id": 22679,
"properties": {
"east": "tall",
"north": "none",
@@ -247024,7 +253291,7 @@
}
},
{
- "id": 22211,
+ "id": 22680,
"properties": {
"east": "tall",
"north": "none",
@@ -247035,7 +253302,7 @@
}
},
{
- "id": 22212,
+ "id": 22681,
"properties": {
"east": "tall",
"north": "none",
@@ -247046,7 +253313,7 @@
}
},
{
- "id": 22213,
+ "id": 22682,
"properties": {
"east": "tall",
"north": "none",
@@ -247057,7 +253324,7 @@
}
},
{
- "id": 22214,
+ "id": 22683,
"properties": {
"east": "tall",
"north": "none",
@@ -247068,7 +253335,7 @@
}
},
{
- "id": 22215,
+ "id": 22684,
"properties": {
"east": "tall",
"north": "none",
@@ -247079,7 +253346,7 @@
}
},
{
- "id": 22216,
+ "id": 22685,
"properties": {
"east": "tall",
"north": "none",
@@ -247090,7 +253357,7 @@
}
},
{
- "id": 22217,
+ "id": 22686,
"properties": {
"east": "tall",
"north": "none",
@@ -247101,7 +253368,7 @@
}
},
{
- "id": 22218,
+ "id": 22687,
"properties": {
"east": "tall",
"north": "none",
@@ -247112,7 +253379,7 @@
}
},
{
- "id": 22219,
+ "id": 22688,
"properties": {
"east": "tall",
"north": "none",
@@ -247123,7 +253390,7 @@
}
},
{
- "id": 22220,
+ "id": 22689,
"properties": {
"east": "tall",
"north": "none",
@@ -247134,7 +253401,7 @@
}
},
{
- "id": 22221,
+ "id": 22690,
"properties": {
"east": "tall",
"north": "none",
@@ -247145,7 +253412,7 @@
}
},
{
- "id": 22222,
+ "id": 22691,
"properties": {
"east": "tall",
"north": "none",
@@ -247156,7 +253423,7 @@
}
},
{
- "id": 22223,
+ "id": 22692,
"properties": {
"east": "tall",
"north": "none",
@@ -247167,7 +253434,7 @@
}
},
{
- "id": 22224,
+ "id": 22693,
"properties": {
"east": "tall",
"north": "none",
@@ -247178,7 +253445,7 @@
}
},
{
- "id": 22225,
+ "id": 22694,
"properties": {
"east": "tall",
"north": "none",
@@ -247189,7 +253456,7 @@
}
},
{
- "id": 22226,
+ "id": 22695,
"properties": {
"east": "tall",
"north": "none",
@@ -247200,7 +253467,7 @@
}
},
{
- "id": 22227,
+ "id": 22696,
"properties": {
"east": "tall",
"north": "none",
@@ -247211,7 +253478,7 @@
}
},
{
- "id": 22228,
+ "id": 22697,
"properties": {
"east": "tall",
"north": "none",
@@ -247222,7 +253489,7 @@
}
},
{
- "id": 22229,
+ "id": 22698,
"properties": {
"east": "tall",
"north": "none",
@@ -247233,7 +253500,7 @@
}
},
{
- "id": 22230,
+ "id": 22699,
"properties": {
"east": "tall",
"north": "none",
@@ -247244,7 +253511,7 @@
}
},
{
- "id": 22231,
+ "id": 22700,
"properties": {
"east": "tall",
"north": "none",
@@ -247255,7 +253522,7 @@
}
},
{
- "id": 22232,
+ "id": 22701,
"properties": {
"east": "tall",
"north": "none",
@@ -247266,7 +253533,7 @@
}
},
{
- "id": 22233,
+ "id": 22702,
"properties": {
"east": "tall",
"north": "none",
@@ -247277,7 +253544,7 @@
}
},
{
- "id": 22234,
+ "id": 22703,
"properties": {
"east": "tall",
"north": "none",
@@ -247288,7 +253555,7 @@
}
},
{
- "id": 22235,
+ "id": 22704,
"properties": {
"east": "tall",
"north": "none",
@@ -247299,7 +253566,7 @@
}
},
{
- "id": 22236,
+ "id": 22705,
"properties": {
"east": "tall",
"north": "none",
@@ -247310,7 +253577,7 @@
}
},
{
- "id": 22237,
+ "id": 22706,
"properties": {
"east": "tall",
"north": "none",
@@ -247321,7 +253588,7 @@
}
},
{
- "id": 22238,
+ "id": 22707,
"properties": {
"east": "tall",
"north": "none",
@@ -247332,7 +253599,7 @@
}
},
{
- "id": 22239,
+ "id": 22708,
"properties": {
"east": "tall",
"north": "none",
@@ -247343,7 +253610,7 @@
}
},
{
- "id": 22240,
+ "id": 22709,
"properties": {
"east": "tall",
"north": "none",
@@ -247354,7 +253621,7 @@
}
},
{
- "id": 22241,
+ "id": 22710,
"properties": {
"east": "tall",
"north": "none",
@@ -247365,7 +253632,7 @@
}
},
{
- "id": 22242,
+ "id": 22711,
"properties": {
"east": "tall",
"north": "none",
@@ -247376,7 +253643,7 @@
}
},
{
- "id": 22243,
+ "id": 22712,
"properties": {
"east": "tall",
"north": "low",
@@ -247387,7 +253654,7 @@
}
},
{
- "id": 22244,
+ "id": 22713,
"properties": {
"east": "tall",
"north": "low",
@@ -247398,7 +253665,7 @@
}
},
{
- "id": 22245,
+ "id": 22714,
"properties": {
"east": "tall",
"north": "low",
@@ -247409,7 +253676,7 @@
}
},
{
- "id": 22246,
+ "id": 22715,
"properties": {
"east": "tall",
"north": "low",
@@ -247420,7 +253687,7 @@
}
},
{
- "id": 22247,
+ "id": 22716,
"properties": {
"east": "tall",
"north": "low",
@@ -247431,7 +253698,7 @@
}
},
{
- "id": 22248,
+ "id": 22717,
"properties": {
"east": "tall",
"north": "low",
@@ -247442,7 +253709,7 @@
}
},
{
- "id": 22249,
+ "id": 22718,
"properties": {
"east": "tall",
"north": "low",
@@ -247453,7 +253720,7 @@
}
},
{
- "id": 22250,
+ "id": 22719,
"properties": {
"east": "tall",
"north": "low",
@@ -247464,7 +253731,7 @@
}
},
{
- "id": 22251,
+ "id": 22720,
"properties": {
"east": "tall",
"north": "low",
@@ -247475,7 +253742,7 @@
}
},
{
- "id": 22252,
+ "id": 22721,
"properties": {
"east": "tall",
"north": "low",
@@ -247486,7 +253753,7 @@
}
},
{
- "id": 22253,
+ "id": 22722,
"properties": {
"east": "tall",
"north": "low",
@@ -247497,7 +253764,7 @@
}
},
{
- "id": 22254,
+ "id": 22723,
"properties": {
"east": "tall",
"north": "low",
@@ -247508,7 +253775,7 @@
}
},
{
- "id": 22255,
+ "id": 22724,
"properties": {
"east": "tall",
"north": "low",
@@ -247519,7 +253786,7 @@
}
},
{
- "id": 22256,
+ "id": 22725,
"properties": {
"east": "tall",
"north": "low",
@@ -247530,7 +253797,7 @@
}
},
{
- "id": 22257,
+ "id": 22726,
"properties": {
"east": "tall",
"north": "low",
@@ -247541,7 +253808,7 @@
}
},
{
- "id": 22258,
+ "id": 22727,
"properties": {
"east": "tall",
"north": "low",
@@ -247552,7 +253819,7 @@
}
},
{
- "id": 22259,
+ "id": 22728,
"properties": {
"east": "tall",
"north": "low",
@@ -247563,7 +253830,7 @@
}
},
{
- "id": 22260,
+ "id": 22729,
"properties": {
"east": "tall",
"north": "low",
@@ -247574,7 +253841,7 @@
}
},
{
- "id": 22261,
+ "id": 22730,
"properties": {
"east": "tall",
"north": "low",
@@ -247585,7 +253852,7 @@
}
},
{
- "id": 22262,
+ "id": 22731,
"properties": {
"east": "tall",
"north": "low",
@@ -247596,7 +253863,7 @@
}
},
{
- "id": 22263,
+ "id": 22732,
"properties": {
"east": "tall",
"north": "low",
@@ -247607,7 +253874,7 @@
}
},
{
- "id": 22264,
+ "id": 22733,
"properties": {
"east": "tall",
"north": "low",
@@ -247618,7 +253885,7 @@
}
},
{
- "id": 22265,
+ "id": 22734,
"properties": {
"east": "tall",
"north": "low",
@@ -247629,7 +253896,7 @@
}
},
{
- "id": 22266,
+ "id": 22735,
"properties": {
"east": "tall",
"north": "low",
@@ -247640,7 +253907,7 @@
}
},
{
- "id": 22267,
+ "id": 22736,
"properties": {
"east": "tall",
"north": "low",
@@ -247651,7 +253918,7 @@
}
},
{
- "id": 22268,
+ "id": 22737,
"properties": {
"east": "tall",
"north": "low",
@@ -247662,7 +253929,7 @@
}
},
{
- "id": 22269,
+ "id": 22738,
"properties": {
"east": "tall",
"north": "low",
@@ -247673,7 +253940,7 @@
}
},
{
- "id": 22270,
+ "id": 22739,
"properties": {
"east": "tall",
"north": "low",
@@ -247684,7 +253951,7 @@
}
},
{
- "id": 22271,
+ "id": 22740,
"properties": {
"east": "tall",
"north": "low",
@@ -247695,7 +253962,7 @@
}
},
{
- "id": 22272,
+ "id": 22741,
"properties": {
"east": "tall",
"north": "low",
@@ -247706,7 +253973,7 @@
}
},
{
- "id": 22273,
+ "id": 22742,
"properties": {
"east": "tall",
"north": "low",
@@ -247717,7 +253984,7 @@
}
},
{
- "id": 22274,
+ "id": 22743,
"properties": {
"east": "tall",
"north": "low",
@@ -247728,7 +253995,7 @@
}
},
{
- "id": 22275,
+ "id": 22744,
"properties": {
"east": "tall",
"north": "low",
@@ -247739,7 +254006,7 @@
}
},
{
- "id": 22276,
+ "id": 22745,
"properties": {
"east": "tall",
"north": "low",
@@ -247750,7 +254017,7 @@
}
},
{
- "id": 22277,
+ "id": 22746,
"properties": {
"east": "tall",
"north": "low",
@@ -247761,7 +254028,7 @@
}
},
{
- "id": 22278,
+ "id": 22747,
"properties": {
"east": "tall",
"north": "low",
@@ -247772,7 +254039,7 @@
}
},
{
- "id": 22279,
+ "id": 22748,
"properties": {
"east": "tall",
"north": "tall",
@@ -247783,7 +254050,7 @@
}
},
{
- "id": 22280,
+ "id": 22749,
"properties": {
"east": "tall",
"north": "tall",
@@ -247794,7 +254061,7 @@
}
},
{
- "id": 22281,
+ "id": 22750,
"properties": {
"east": "tall",
"north": "tall",
@@ -247805,7 +254072,7 @@
}
},
{
- "id": 22282,
+ "id": 22751,
"properties": {
"east": "tall",
"north": "tall",
@@ -247816,7 +254083,7 @@
}
},
{
- "id": 22283,
+ "id": 22752,
"properties": {
"east": "tall",
"north": "tall",
@@ -247827,7 +254094,7 @@
}
},
{
- "id": 22284,
+ "id": 22753,
"properties": {
"east": "tall",
"north": "tall",
@@ -247838,7 +254105,7 @@
}
},
{
- "id": 22285,
+ "id": 22754,
"properties": {
"east": "tall",
"north": "tall",
@@ -247849,7 +254116,7 @@
}
},
{
- "id": 22286,
+ "id": 22755,
"properties": {
"east": "tall",
"north": "tall",
@@ -247860,7 +254127,7 @@
}
},
{
- "id": 22287,
+ "id": 22756,
"properties": {
"east": "tall",
"north": "tall",
@@ -247871,7 +254138,7 @@
}
},
{
- "id": 22288,
+ "id": 22757,
"properties": {
"east": "tall",
"north": "tall",
@@ -247882,7 +254149,7 @@
}
},
{
- "id": 22289,
+ "id": 22758,
"properties": {
"east": "tall",
"north": "tall",
@@ -247893,7 +254160,7 @@
}
},
{
- "id": 22290,
+ "id": 22759,
"properties": {
"east": "tall",
"north": "tall",
@@ -247904,7 +254171,7 @@
}
},
{
- "id": 22291,
+ "id": 22760,
"properties": {
"east": "tall",
"north": "tall",
@@ -247915,7 +254182,7 @@
}
},
{
- "id": 22292,
+ "id": 22761,
"properties": {
"east": "tall",
"north": "tall",
@@ -247926,7 +254193,7 @@
}
},
{
- "id": 22293,
+ "id": 22762,
"properties": {
"east": "tall",
"north": "tall",
@@ -247937,7 +254204,7 @@
}
},
{
- "id": 22294,
+ "id": 22763,
"properties": {
"east": "tall",
"north": "tall",
@@ -247948,7 +254215,7 @@
}
},
{
- "id": 22295,
+ "id": 22764,
"properties": {
"east": "tall",
"north": "tall",
@@ -247959,7 +254226,7 @@
}
},
{
- "id": 22296,
+ "id": 22765,
"properties": {
"east": "tall",
"north": "tall",
@@ -247970,7 +254237,7 @@
}
},
{
- "id": 22297,
+ "id": 22766,
"properties": {
"east": "tall",
"north": "tall",
@@ -247981,7 +254248,7 @@
}
},
{
- "id": 22298,
+ "id": 22767,
"properties": {
"east": "tall",
"north": "tall",
@@ -247992,7 +254259,7 @@
}
},
{
- "id": 22299,
+ "id": 22768,
"properties": {
"east": "tall",
"north": "tall",
@@ -248003,7 +254270,7 @@
}
},
{
- "id": 22300,
+ "id": 22769,
"properties": {
"east": "tall",
"north": "tall",
@@ -248014,7 +254281,7 @@
}
},
{
- "id": 22301,
+ "id": 22770,
"properties": {
"east": "tall",
"north": "tall",
@@ -248025,7 +254292,7 @@
}
},
{
- "id": 22302,
+ "id": 22771,
"properties": {
"east": "tall",
"north": "tall",
@@ -248036,7 +254303,7 @@
}
},
{
- "id": 22303,
+ "id": 22772,
"properties": {
"east": "tall",
"north": "tall",
@@ -248047,7 +254314,7 @@
}
},
{
- "id": 22304,
+ "id": 22773,
"properties": {
"east": "tall",
"north": "tall",
@@ -248058,7 +254325,7 @@
}
},
{
- "id": 22305,
+ "id": 22774,
"properties": {
"east": "tall",
"north": "tall",
@@ -248069,7 +254336,7 @@
}
},
{
- "id": 22306,
+ "id": 22775,
"properties": {
"east": "tall",
"north": "tall",
@@ -248080,7 +254347,7 @@
}
},
{
- "id": 22307,
+ "id": 22776,
"properties": {
"east": "tall",
"north": "tall",
@@ -248091,7 +254358,7 @@
}
},
{
- "id": 22308,
+ "id": 22777,
"properties": {
"east": "tall",
"north": "tall",
@@ -248102,7 +254369,7 @@
}
},
{
- "id": 22309,
+ "id": 22778,
"properties": {
"east": "tall",
"north": "tall",
@@ -248113,7 +254380,7 @@
}
},
{
- "id": 22310,
+ "id": 22779,
"properties": {
"east": "tall",
"north": "tall",
@@ -248124,7 +254391,7 @@
}
},
{
- "id": 22311,
+ "id": 22780,
"properties": {
"east": "tall",
"north": "tall",
@@ -248135,7 +254402,7 @@
}
},
{
- "id": 22312,
+ "id": 22781,
"properties": {
"east": "tall",
"north": "tall",
@@ -248146,7 +254413,7 @@
}
},
{
- "id": 22313,
+ "id": 22782,
"properties": {
"east": "tall",
"north": "tall",
@@ -248157,7 +254424,7 @@
}
},
{
- "id": 22314,
+ "id": 22783,
"properties": {
"east": "tall",
"north": "tall",
@@ -248177,7 +254444,7 @@
"states": [
{
"default": true,
- "id": 21904
+ "id": 22373
}
]
},
@@ -248199,21 +254466,21 @@
},
"states": [
{
- "id": 21082,
+ "id": 21551,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 21083,
+ "id": 21552,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 21084,
+ "id": 21553,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -248221,21 +254488,21 @@
},
{
"default": true,
- "id": 21085,
+ "id": 21554,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 21086,
+ "id": 21555,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 21087,
+ "id": 21556,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -248276,7 +254543,7 @@
},
"states": [
{
- "id": 21088,
+ "id": 21557,
"properties": {
"facing": "north",
"half": "top",
@@ -248285,7 +254552,7 @@
}
},
{
- "id": 21089,
+ "id": 21558,
"properties": {
"facing": "north",
"half": "top",
@@ -248294,7 +254561,7 @@
}
},
{
- "id": 21090,
+ "id": 21559,
"properties": {
"facing": "north",
"half": "top",
@@ -248303,7 +254570,7 @@
}
},
{
- "id": 21091,
+ "id": 21560,
"properties": {
"facing": "north",
"half": "top",
@@ -248312,7 +254579,7 @@
}
},
{
- "id": 21092,
+ "id": 21561,
"properties": {
"facing": "north",
"half": "top",
@@ -248321,7 +254588,7 @@
}
},
{
- "id": 21093,
+ "id": 21562,
"properties": {
"facing": "north",
"half": "top",
@@ -248330,7 +254597,7 @@
}
},
{
- "id": 21094,
+ "id": 21563,
"properties": {
"facing": "north",
"half": "top",
@@ -248339,7 +254606,7 @@
}
},
{
- "id": 21095,
+ "id": 21564,
"properties": {
"facing": "north",
"half": "top",
@@ -248348,7 +254615,7 @@
}
},
{
- "id": 21096,
+ "id": 21565,
"properties": {
"facing": "north",
"half": "top",
@@ -248357,7 +254624,7 @@
}
},
{
- "id": 21097,
+ "id": 21566,
"properties": {
"facing": "north",
"half": "top",
@@ -248366,7 +254633,7 @@
}
},
{
- "id": 21098,
+ "id": 21567,
"properties": {
"facing": "north",
"half": "bottom",
@@ -248376,7 +254643,7 @@
},
{
"default": true,
- "id": 21099,
+ "id": 21568,
"properties": {
"facing": "north",
"half": "bottom",
@@ -248385,7 +254652,7 @@
}
},
{
- "id": 21100,
+ "id": 21569,
"properties": {
"facing": "north",
"half": "bottom",
@@ -248394,7 +254661,7 @@
}
},
{
- "id": 21101,
+ "id": 21570,
"properties": {
"facing": "north",
"half": "bottom",
@@ -248403,7 +254670,7 @@
}
},
{
- "id": 21102,
+ "id": 21571,
"properties": {
"facing": "north",
"half": "bottom",
@@ -248412,7 +254679,7 @@
}
},
{
- "id": 21103,
+ "id": 21572,
"properties": {
"facing": "north",
"half": "bottom",
@@ -248421,7 +254688,7 @@
}
},
{
- "id": 21104,
+ "id": 21573,
"properties": {
"facing": "north",
"half": "bottom",
@@ -248430,7 +254697,7 @@
}
},
{
- "id": 21105,
+ "id": 21574,
"properties": {
"facing": "north",
"half": "bottom",
@@ -248439,7 +254706,7 @@
}
},
{
- "id": 21106,
+ "id": 21575,
"properties": {
"facing": "north",
"half": "bottom",
@@ -248448,7 +254715,7 @@
}
},
{
- "id": 21107,
+ "id": 21576,
"properties": {
"facing": "north",
"half": "bottom",
@@ -248457,7 +254724,7 @@
}
},
{
- "id": 21108,
+ "id": 21577,
"properties": {
"facing": "south",
"half": "top",
@@ -248466,7 +254733,7 @@
}
},
{
- "id": 21109,
+ "id": 21578,
"properties": {
"facing": "south",
"half": "top",
@@ -248475,7 +254742,7 @@
}
},
{
- "id": 21110,
+ "id": 21579,
"properties": {
"facing": "south",
"half": "top",
@@ -248484,7 +254751,7 @@
}
},
{
- "id": 21111,
+ "id": 21580,
"properties": {
"facing": "south",
"half": "top",
@@ -248493,7 +254760,7 @@
}
},
{
- "id": 21112,
+ "id": 21581,
"properties": {
"facing": "south",
"half": "top",
@@ -248502,7 +254769,7 @@
}
},
{
- "id": 21113,
+ "id": 21582,
"properties": {
"facing": "south",
"half": "top",
@@ -248511,7 +254778,7 @@
}
},
{
- "id": 21114,
+ "id": 21583,
"properties": {
"facing": "south",
"half": "top",
@@ -248520,7 +254787,7 @@
}
},
{
- "id": 21115,
+ "id": 21584,
"properties": {
"facing": "south",
"half": "top",
@@ -248529,7 +254796,7 @@
}
},
{
- "id": 21116,
+ "id": 21585,
"properties": {
"facing": "south",
"half": "top",
@@ -248538,7 +254805,7 @@
}
},
{
- "id": 21117,
+ "id": 21586,
"properties": {
"facing": "south",
"half": "top",
@@ -248547,7 +254814,7 @@
}
},
{
- "id": 21118,
+ "id": 21587,
"properties": {
"facing": "south",
"half": "bottom",
@@ -248556,7 +254823,7 @@
}
},
{
- "id": 21119,
+ "id": 21588,
"properties": {
"facing": "south",
"half": "bottom",
@@ -248565,7 +254832,7 @@
}
},
{
- "id": 21120,
+ "id": 21589,
"properties": {
"facing": "south",
"half": "bottom",
@@ -248574,7 +254841,7 @@
}
},
{
- "id": 21121,
+ "id": 21590,
"properties": {
"facing": "south",
"half": "bottom",
@@ -248583,7 +254850,7 @@
}
},
{
- "id": 21122,
+ "id": 21591,
"properties": {
"facing": "south",
"half": "bottom",
@@ -248592,7 +254859,7 @@
}
},
{
- "id": 21123,
+ "id": 21592,
"properties": {
"facing": "south",
"half": "bottom",
@@ -248601,7 +254868,7 @@
}
},
{
- "id": 21124,
+ "id": 21593,
"properties": {
"facing": "south",
"half": "bottom",
@@ -248610,7 +254877,7 @@
}
},
{
- "id": 21125,
+ "id": 21594,
"properties": {
"facing": "south",
"half": "bottom",
@@ -248619,7 +254886,7 @@
}
},
{
- "id": 21126,
+ "id": 21595,
"properties": {
"facing": "south",
"half": "bottom",
@@ -248628,7 +254895,7 @@
}
},
{
- "id": 21127,
+ "id": 21596,
"properties": {
"facing": "south",
"half": "bottom",
@@ -248637,7 +254904,7 @@
}
},
{
- "id": 21128,
+ "id": 21597,
"properties": {
"facing": "west",
"half": "top",
@@ -248646,7 +254913,7 @@
}
},
{
- "id": 21129,
+ "id": 21598,
"properties": {
"facing": "west",
"half": "top",
@@ -248655,7 +254922,7 @@
}
},
{
- "id": 21130,
+ "id": 21599,
"properties": {
"facing": "west",
"half": "top",
@@ -248664,7 +254931,7 @@
}
},
{
- "id": 21131,
+ "id": 21600,
"properties": {
"facing": "west",
"half": "top",
@@ -248673,7 +254940,7 @@
}
},
{
- "id": 21132,
+ "id": 21601,
"properties": {
"facing": "west",
"half": "top",
@@ -248682,7 +254949,7 @@
}
},
{
- "id": 21133,
+ "id": 21602,
"properties": {
"facing": "west",
"half": "top",
@@ -248691,7 +254958,7 @@
}
},
{
- "id": 21134,
+ "id": 21603,
"properties": {
"facing": "west",
"half": "top",
@@ -248700,7 +254967,7 @@
}
},
{
- "id": 21135,
+ "id": 21604,
"properties": {
"facing": "west",
"half": "top",
@@ -248709,7 +254976,7 @@
}
},
{
- "id": 21136,
+ "id": 21605,
"properties": {
"facing": "west",
"half": "top",
@@ -248718,7 +254985,7 @@
}
},
{
- "id": 21137,
+ "id": 21606,
"properties": {
"facing": "west",
"half": "top",
@@ -248727,7 +254994,7 @@
}
},
{
- "id": 21138,
+ "id": 21607,
"properties": {
"facing": "west",
"half": "bottom",
@@ -248736,7 +255003,7 @@
}
},
{
- "id": 21139,
+ "id": 21608,
"properties": {
"facing": "west",
"half": "bottom",
@@ -248745,7 +255012,7 @@
}
},
{
- "id": 21140,
+ "id": 21609,
"properties": {
"facing": "west",
"half": "bottom",
@@ -248754,7 +255021,7 @@
}
},
{
- "id": 21141,
+ "id": 21610,
"properties": {
"facing": "west",
"half": "bottom",
@@ -248763,7 +255030,7 @@
}
},
{
- "id": 21142,
+ "id": 21611,
"properties": {
"facing": "west",
"half": "bottom",
@@ -248772,7 +255039,7 @@
}
},
{
- "id": 21143,
+ "id": 21612,
"properties": {
"facing": "west",
"half": "bottom",
@@ -248781,7 +255048,7 @@
}
},
{
- "id": 21144,
+ "id": 21613,
"properties": {
"facing": "west",
"half": "bottom",
@@ -248790,7 +255057,7 @@
}
},
{
- "id": 21145,
+ "id": 21614,
"properties": {
"facing": "west",
"half": "bottom",
@@ -248799,7 +255066,7 @@
}
},
{
- "id": 21146,
+ "id": 21615,
"properties": {
"facing": "west",
"half": "bottom",
@@ -248808,7 +255075,7 @@
}
},
{
- "id": 21147,
+ "id": 21616,
"properties": {
"facing": "west",
"half": "bottom",
@@ -248817,7 +255084,7 @@
}
},
{
- "id": 21148,
+ "id": 21617,
"properties": {
"facing": "east",
"half": "top",
@@ -248826,7 +255093,7 @@
}
},
{
- "id": 21149,
+ "id": 21618,
"properties": {
"facing": "east",
"half": "top",
@@ -248835,7 +255102,7 @@
}
},
{
- "id": 21150,
+ "id": 21619,
"properties": {
"facing": "east",
"half": "top",
@@ -248844,7 +255111,7 @@
}
},
{
- "id": 21151,
+ "id": 21620,
"properties": {
"facing": "east",
"half": "top",
@@ -248853,7 +255120,7 @@
}
},
{
- "id": 21152,
+ "id": 21621,
"properties": {
"facing": "east",
"half": "top",
@@ -248862,7 +255129,7 @@
}
},
{
- "id": 21153,
+ "id": 21622,
"properties": {
"facing": "east",
"half": "top",
@@ -248871,7 +255138,7 @@
}
},
{
- "id": 21154,
+ "id": 21623,
"properties": {
"facing": "east",
"half": "top",
@@ -248880,7 +255147,7 @@
}
},
{
- "id": 21155,
+ "id": 21624,
"properties": {
"facing": "east",
"half": "top",
@@ -248889,7 +255156,7 @@
}
},
{
- "id": 21156,
+ "id": 21625,
"properties": {
"facing": "east",
"half": "top",
@@ -248898,7 +255165,7 @@
}
},
{
- "id": 21157,
+ "id": 21626,
"properties": {
"facing": "east",
"half": "top",
@@ -248907,7 +255174,7 @@
}
},
{
- "id": 21158,
+ "id": 21627,
"properties": {
"facing": "east",
"half": "bottom",
@@ -248916,7 +255183,7 @@
}
},
{
- "id": 21159,
+ "id": 21628,
"properties": {
"facing": "east",
"half": "bottom",
@@ -248925,7 +255192,7 @@
}
},
{
- "id": 21160,
+ "id": 21629,
"properties": {
"facing": "east",
"half": "bottom",
@@ -248934,7 +255201,7 @@
}
},
{
- "id": 21161,
+ "id": 21630,
"properties": {
"facing": "east",
"half": "bottom",
@@ -248943,7 +255210,7 @@
}
},
{
- "id": 21162,
+ "id": 21631,
"properties": {
"facing": "east",
"half": "bottom",
@@ -248952,7 +255219,7 @@
}
},
{
- "id": 21163,
+ "id": 21632,
"properties": {
"facing": "east",
"half": "bottom",
@@ -248961,7 +255228,7 @@
}
},
{
- "id": 21164,
+ "id": 21633,
"properties": {
"facing": "east",
"half": "bottom",
@@ -248970,7 +255237,7 @@
}
},
{
- "id": 21165,
+ "id": 21634,
"properties": {
"facing": "east",
"half": "bottom",
@@ -248979,7 +255246,7 @@
}
},
{
- "id": 21166,
+ "id": 21635,
"properties": {
"facing": "east",
"half": "bottom",
@@ -248988,7 +255255,7 @@
}
},
{
- "id": 21167,
+ "id": 21636,
"properties": {
"facing": "east",
"half": "bottom",
@@ -249035,7 +255302,7 @@
},
"states": [
{
- "id": 21168,
+ "id": 21637,
"properties": {
"east": "none",
"north": "none",
@@ -249046,7 +255313,7 @@
}
},
{
- "id": 21169,
+ "id": 21638,
"properties": {
"east": "none",
"north": "none",
@@ -249057,7 +255324,7 @@
}
},
{
- "id": 21170,
+ "id": 21639,
"properties": {
"east": "none",
"north": "none",
@@ -249069,7 +255336,7 @@
},
{
"default": true,
- "id": 21171,
+ "id": 21640,
"properties": {
"east": "none",
"north": "none",
@@ -249080,7 +255347,7 @@
}
},
{
- "id": 21172,
+ "id": 21641,
"properties": {
"east": "none",
"north": "none",
@@ -249091,7 +255358,7 @@
}
},
{
- "id": 21173,
+ "id": 21642,
"properties": {
"east": "none",
"north": "none",
@@ -249102,7 +255369,7 @@
}
},
{
- "id": 21174,
+ "id": 21643,
"properties": {
"east": "none",
"north": "none",
@@ -249113,7 +255380,7 @@
}
},
{
- "id": 21175,
+ "id": 21644,
"properties": {
"east": "none",
"north": "none",
@@ -249124,7 +255391,7 @@
}
},
{
- "id": 21176,
+ "id": 21645,
"properties": {
"east": "none",
"north": "none",
@@ -249135,7 +255402,7 @@
}
},
{
- "id": 21177,
+ "id": 21646,
"properties": {
"east": "none",
"north": "none",
@@ -249146,7 +255413,7 @@
}
},
{
- "id": 21178,
+ "id": 21647,
"properties": {
"east": "none",
"north": "none",
@@ -249157,7 +255424,7 @@
}
},
{
- "id": 21179,
+ "id": 21648,
"properties": {
"east": "none",
"north": "none",
@@ -249168,7 +255435,7 @@
}
},
{
- "id": 21180,
+ "id": 21649,
"properties": {
"east": "none",
"north": "none",
@@ -249179,7 +255446,7 @@
}
},
{
- "id": 21181,
+ "id": 21650,
"properties": {
"east": "none",
"north": "none",
@@ -249190,7 +255457,7 @@
}
},
{
- "id": 21182,
+ "id": 21651,
"properties": {
"east": "none",
"north": "none",
@@ -249201,7 +255468,7 @@
}
},
{
- "id": 21183,
+ "id": 21652,
"properties": {
"east": "none",
"north": "none",
@@ -249212,7 +255479,7 @@
}
},
{
- "id": 21184,
+ "id": 21653,
"properties": {
"east": "none",
"north": "none",
@@ -249223,7 +255490,7 @@
}
},
{
- "id": 21185,
+ "id": 21654,
"properties": {
"east": "none",
"north": "none",
@@ -249234,7 +255501,7 @@
}
},
{
- "id": 21186,
+ "id": 21655,
"properties": {
"east": "none",
"north": "none",
@@ -249245,7 +255512,7 @@
}
},
{
- "id": 21187,
+ "id": 21656,
"properties": {
"east": "none",
"north": "none",
@@ -249256,7 +255523,7 @@
}
},
{
- "id": 21188,
+ "id": 21657,
"properties": {
"east": "none",
"north": "none",
@@ -249267,7 +255534,7 @@
}
},
{
- "id": 21189,
+ "id": 21658,
"properties": {
"east": "none",
"north": "none",
@@ -249278,7 +255545,7 @@
}
},
{
- "id": 21190,
+ "id": 21659,
"properties": {
"east": "none",
"north": "none",
@@ -249289,7 +255556,7 @@
}
},
{
- "id": 21191,
+ "id": 21660,
"properties": {
"east": "none",
"north": "none",
@@ -249300,7 +255567,7 @@
}
},
{
- "id": 21192,
+ "id": 21661,
"properties": {
"east": "none",
"north": "none",
@@ -249311,7 +255578,7 @@
}
},
{
- "id": 21193,
+ "id": 21662,
"properties": {
"east": "none",
"north": "none",
@@ -249322,7 +255589,7 @@
}
},
{
- "id": 21194,
+ "id": 21663,
"properties": {
"east": "none",
"north": "none",
@@ -249333,7 +255600,7 @@
}
},
{
- "id": 21195,
+ "id": 21664,
"properties": {
"east": "none",
"north": "none",
@@ -249344,7 +255611,7 @@
}
},
{
- "id": 21196,
+ "id": 21665,
"properties": {
"east": "none",
"north": "none",
@@ -249355,7 +255622,7 @@
}
},
{
- "id": 21197,
+ "id": 21666,
"properties": {
"east": "none",
"north": "none",
@@ -249366,7 +255633,7 @@
}
},
{
- "id": 21198,
+ "id": 21667,
"properties": {
"east": "none",
"north": "none",
@@ -249377,7 +255644,7 @@
}
},
{
- "id": 21199,
+ "id": 21668,
"properties": {
"east": "none",
"north": "none",
@@ -249388,7 +255655,7 @@
}
},
{
- "id": 21200,
+ "id": 21669,
"properties": {
"east": "none",
"north": "none",
@@ -249399,7 +255666,7 @@
}
},
{
- "id": 21201,
+ "id": 21670,
"properties": {
"east": "none",
"north": "none",
@@ -249410,7 +255677,7 @@
}
},
{
- "id": 21202,
+ "id": 21671,
"properties": {
"east": "none",
"north": "none",
@@ -249421,7 +255688,7 @@
}
},
{
- "id": 21203,
+ "id": 21672,
"properties": {
"east": "none",
"north": "none",
@@ -249432,7 +255699,7 @@
}
},
{
- "id": 21204,
+ "id": 21673,
"properties": {
"east": "none",
"north": "low",
@@ -249443,7 +255710,7 @@
}
},
{
- "id": 21205,
+ "id": 21674,
"properties": {
"east": "none",
"north": "low",
@@ -249454,7 +255721,7 @@
}
},
{
- "id": 21206,
+ "id": 21675,
"properties": {
"east": "none",
"north": "low",
@@ -249465,7 +255732,7 @@
}
},
{
- "id": 21207,
+ "id": 21676,
"properties": {
"east": "none",
"north": "low",
@@ -249476,7 +255743,7 @@
}
},
{
- "id": 21208,
+ "id": 21677,
"properties": {
"east": "none",
"north": "low",
@@ -249487,7 +255754,7 @@
}
},
{
- "id": 21209,
+ "id": 21678,
"properties": {
"east": "none",
"north": "low",
@@ -249498,7 +255765,7 @@
}
},
{
- "id": 21210,
+ "id": 21679,
"properties": {
"east": "none",
"north": "low",
@@ -249509,7 +255776,7 @@
}
},
{
- "id": 21211,
+ "id": 21680,
"properties": {
"east": "none",
"north": "low",
@@ -249520,7 +255787,7 @@
}
},
{
- "id": 21212,
+ "id": 21681,
"properties": {
"east": "none",
"north": "low",
@@ -249531,7 +255798,7 @@
}
},
{
- "id": 21213,
+ "id": 21682,
"properties": {
"east": "none",
"north": "low",
@@ -249542,7 +255809,7 @@
}
},
{
- "id": 21214,
+ "id": 21683,
"properties": {
"east": "none",
"north": "low",
@@ -249553,7 +255820,7 @@
}
},
{
- "id": 21215,
+ "id": 21684,
"properties": {
"east": "none",
"north": "low",
@@ -249564,7 +255831,7 @@
}
},
{
- "id": 21216,
+ "id": 21685,
"properties": {
"east": "none",
"north": "low",
@@ -249575,7 +255842,7 @@
}
},
{
- "id": 21217,
+ "id": 21686,
"properties": {
"east": "none",
"north": "low",
@@ -249586,7 +255853,7 @@
}
},
{
- "id": 21218,
+ "id": 21687,
"properties": {
"east": "none",
"north": "low",
@@ -249597,7 +255864,7 @@
}
},
{
- "id": 21219,
+ "id": 21688,
"properties": {
"east": "none",
"north": "low",
@@ -249608,7 +255875,7 @@
}
},
{
- "id": 21220,
+ "id": 21689,
"properties": {
"east": "none",
"north": "low",
@@ -249619,7 +255886,7 @@
}
},
{
- "id": 21221,
+ "id": 21690,
"properties": {
"east": "none",
"north": "low",
@@ -249630,7 +255897,7 @@
}
},
{
- "id": 21222,
+ "id": 21691,
"properties": {
"east": "none",
"north": "low",
@@ -249641,7 +255908,7 @@
}
},
{
- "id": 21223,
+ "id": 21692,
"properties": {
"east": "none",
"north": "low",
@@ -249652,7 +255919,7 @@
}
},
{
- "id": 21224,
+ "id": 21693,
"properties": {
"east": "none",
"north": "low",
@@ -249663,7 +255930,7 @@
}
},
{
- "id": 21225,
+ "id": 21694,
"properties": {
"east": "none",
"north": "low",
@@ -249674,7 +255941,7 @@
}
},
{
- "id": 21226,
+ "id": 21695,
"properties": {
"east": "none",
"north": "low",
@@ -249685,7 +255952,7 @@
}
},
{
- "id": 21227,
+ "id": 21696,
"properties": {
"east": "none",
"north": "low",
@@ -249696,7 +255963,7 @@
}
},
{
- "id": 21228,
+ "id": 21697,
"properties": {
"east": "none",
"north": "low",
@@ -249707,7 +255974,7 @@
}
},
{
- "id": 21229,
+ "id": 21698,
"properties": {
"east": "none",
"north": "low",
@@ -249718,7 +255985,7 @@
}
},
{
- "id": 21230,
+ "id": 21699,
"properties": {
"east": "none",
"north": "low",
@@ -249729,7 +255996,7 @@
}
},
{
- "id": 21231,
+ "id": 21700,
"properties": {
"east": "none",
"north": "low",
@@ -249740,7 +256007,7 @@
}
},
{
- "id": 21232,
+ "id": 21701,
"properties": {
"east": "none",
"north": "low",
@@ -249751,7 +256018,7 @@
}
},
{
- "id": 21233,
+ "id": 21702,
"properties": {
"east": "none",
"north": "low",
@@ -249762,7 +256029,7 @@
}
},
{
- "id": 21234,
+ "id": 21703,
"properties": {
"east": "none",
"north": "low",
@@ -249773,7 +256040,7 @@
}
},
{
- "id": 21235,
+ "id": 21704,
"properties": {
"east": "none",
"north": "low",
@@ -249784,7 +256051,7 @@
}
},
{
- "id": 21236,
+ "id": 21705,
"properties": {
"east": "none",
"north": "low",
@@ -249795,7 +256062,7 @@
}
},
{
- "id": 21237,
+ "id": 21706,
"properties": {
"east": "none",
"north": "low",
@@ -249806,7 +256073,7 @@
}
},
{
- "id": 21238,
+ "id": 21707,
"properties": {
"east": "none",
"north": "low",
@@ -249817,7 +256084,7 @@
}
},
{
- "id": 21239,
+ "id": 21708,
"properties": {
"east": "none",
"north": "low",
@@ -249828,7 +256095,7 @@
}
},
{
- "id": 21240,
+ "id": 21709,
"properties": {
"east": "none",
"north": "tall",
@@ -249839,7 +256106,7 @@
}
},
{
- "id": 21241,
+ "id": 21710,
"properties": {
"east": "none",
"north": "tall",
@@ -249850,7 +256117,7 @@
}
},
{
- "id": 21242,
+ "id": 21711,
"properties": {
"east": "none",
"north": "tall",
@@ -249861,7 +256128,7 @@
}
},
{
- "id": 21243,
+ "id": 21712,
"properties": {
"east": "none",
"north": "tall",
@@ -249872,7 +256139,7 @@
}
},
{
- "id": 21244,
+ "id": 21713,
"properties": {
"east": "none",
"north": "tall",
@@ -249883,7 +256150,7 @@
}
},
{
- "id": 21245,
+ "id": 21714,
"properties": {
"east": "none",
"north": "tall",
@@ -249894,7 +256161,7 @@
}
},
{
- "id": 21246,
+ "id": 21715,
"properties": {
"east": "none",
"north": "tall",
@@ -249905,7 +256172,7 @@
}
},
{
- "id": 21247,
+ "id": 21716,
"properties": {
"east": "none",
"north": "tall",
@@ -249916,7 +256183,7 @@
}
},
{
- "id": 21248,
+ "id": 21717,
"properties": {
"east": "none",
"north": "tall",
@@ -249927,7 +256194,7 @@
}
},
{
- "id": 21249,
+ "id": 21718,
"properties": {
"east": "none",
"north": "tall",
@@ -249938,7 +256205,7 @@
}
},
{
- "id": 21250,
+ "id": 21719,
"properties": {
"east": "none",
"north": "tall",
@@ -249949,7 +256216,7 @@
}
},
{
- "id": 21251,
+ "id": 21720,
"properties": {
"east": "none",
"north": "tall",
@@ -249960,7 +256227,7 @@
}
},
{
- "id": 21252,
+ "id": 21721,
"properties": {
"east": "none",
"north": "tall",
@@ -249971,7 +256238,7 @@
}
},
{
- "id": 21253,
+ "id": 21722,
"properties": {
"east": "none",
"north": "tall",
@@ -249982,7 +256249,7 @@
}
},
{
- "id": 21254,
+ "id": 21723,
"properties": {
"east": "none",
"north": "tall",
@@ -249993,7 +256260,7 @@
}
},
{
- "id": 21255,
+ "id": 21724,
"properties": {
"east": "none",
"north": "tall",
@@ -250004,7 +256271,7 @@
}
},
{
- "id": 21256,
+ "id": 21725,
"properties": {
"east": "none",
"north": "tall",
@@ -250015,7 +256282,7 @@
}
},
{
- "id": 21257,
+ "id": 21726,
"properties": {
"east": "none",
"north": "tall",
@@ -250026,7 +256293,7 @@
}
},
{
- "id": 21258,
+ "id": 21727,
"properties": {
"east": "none",
"north": "tall",
@@ -250037,7 +256304,7 @@
}
},
{
- "id": 21259,
+ "id": 21728,
"properties": {
"east": "none",
"north": "tall",
@@ -250048,7 +256315,7 @@
}
},
{
- "id": 21260,
+ "id": 21729,
"properties": {
"east": "none",
"north": "tall",
@@ -250059,7 +256326,7 @@
}
},
{
- "id": 21261,
+ "id": 21730,
"properties": {
"east": "none",
"north": "tall",
@@ -250070,7 +256337,7 @@
}
},
{
- "id": 21262,
+ "id": 21731,
"properties": {
"east": "none",
"north": "tall",
@@ -250081,7 +256348,7 @@
}
},
{
- "id": 21263,
+ "id": 21732,
"properties": {
"east": "none",
"north": "tall",
@@ -250092,7 +256359,7 @@
}
},
{
- "id": 21264,
+ "id": 21733,
"properties": {
"east": "none",
"north": "tall",
@@ -250103,7 +256370,7 @@
}
},
{
- "id": 21265,
+ "id": 21734,
"properties": {
"east": "none",
"north": "tall",
@@ -250114,7 +256381,7 @@
}
},
{
- "id": 21266,
+ "id": 21735,
"properties": {
"east": "none",
"north": "tall",
@@ -250125,7 +256392,7 @@
}
},
{
- "id": 21267,
+ "id": 21736,
"properties": {
"east": "none",
"north": "tall",
@@ -250136,7 +256403,7 @@
}
},
{
- "id": 21268,
+ "id": 21737,
"properties": {
"east": "none",
"north": "tall",
@@ -250147,7 +256414,7 @@
}
},
{
- "id": 21269,
+ "id": 21738,
"properties": {
"east": "none",
"north": "tall",
@@ -250158,7 +256425,7 @@
}
},
{
- "id": 21270,
+ "id": 21739,
"properties": {
"east": "none",
"north": "tall",
@@ -250169,7 +256436,7 @@
}
},
{
- "id": 21271,
+ "id": 21740,
"properties": {
"east": "none",
"north": "tall",
@@ -250180,7 +256447,7 @@
}
},
{
- "id": 21272,
+ "id": 21741,
"properties": {
"east": "none",
"north": "tall",
@@ -250191,7 +256458,7 @@
}
},
{
- "id": 21273,
+ "id": 21742,
"properties": {
"east": "none",
"north": "tall",
@@ -250202,7 +256469,7 @@
}
},
{
- "id": 21274,
+ "id": 21743,
"properties": {
"east": "none",
"north": "tall",
@@ -250213,7 +256480,7 @@
}
},
{
- "id": 21275,
+ "id": 21744,
"properties": {
"east": "none",
"north": "tall",
@@ -250224,7 +256491,7 @@
}
},
{
- "id": 21276,
+ "id": 21745,
"properties": {
"east": "low",
"north": "none",
@@ -250235,7 +256502,7 @@
}
},
{
- "id": 21277,
+ "id": 21746,
"properties": {
"east": "low",
"north": "none",
@@ -250246,7 +256513,7 @@
}
},
{
- "id": 21278,
+ "id": 21747,
"properties": {
"east": "low",
"north": "none",
@@ -250257,7 +256524,7 @@
}
},
{
- "id": 21279,
+ "id": 21748,
"properties": {
"east": "low",
"north": "none",
@@ -250268,7 +256535,7 @@
}
},
{
- "id": 21280,
+ "id": 21749,
"properties": {
"east": "low",
"north": "none",
@@ -250279,7 +256546,7 @@
}
},
{
- "id": 21281,
+ "id": 21750,
"properties": {
"east": "low",
"north": "none",
@@ -250290,7 +256557,7 @@
}
},
{
- "id": 21282,
+ "id": 21751,
"properties": {
"east": "low",
"north": "none",
@@ -250301,7 +256568,7 @@
}
},
{
- "id": 21283,
+ "id": 21752,
"properties": {
"east": "low",
"north": "none",
@@ -250312,7 +256579,7 @@
}
},
{
- "id": 21284,
+ "id": 21753,
"properties": {
"east": "low",
"north": "none",
@@ -250323,7 +256590,7 @@
}
},
{
- "id": 21285,
+ "id": 21754,
"properties": {
"east": "low",
"north": "none",
@@ -250334,7 +256601,7 @@
}
},
{
- "id": 21286,
+ "id": 21755,
"properties": {
"east": "low",
"north": "none",
@@ -250345,7 +256612,7 @@
}
},
{
- "id": 21287,
+ "id": 21756,
"properties": {
"east": "low",
"north": "none",
@@ -250356,7 +256623,7 @@
}
},
{
- "id": 21288,
+ "id": 21757,
"properties": {
"east": "low",
"north": "none",
@@ -250367,7 +256634,7 @@
}
},
{
- "id": 21289,
+ "id": 21758,
"properties": {
"east": "low",
"north": "none",
@@ -250378,7 +256645,7 @@
}
},
{
- "id": 21290,
+ "id": 21759,
"properties": {
"east": "low",
"north": "none",
@@ -250389,7 +256656,7 @@
}
},
{
- "id": 21291,
+ "id": 21760,
"properties": {
"east": "low",
"north": "none",
@@ -250400,7 +256667,7 @@
}
},
{
- "id": 21292,
+ "id": 21761,
"properties": {
"east": "low",
"north": "none",
@@ -250411,7 +256678,7 @@
}
},
{
- "id": 21293,
+ "id": 21762,
"properties": {
"east": "low",
"north": "none",
@@ -250422,7 +256689,7 @@
}
},
{
- "id": 21294,
+ "id": 21763,
"properties": {
"east": "low",
"north": "none",
@@ -250433,7 +256700,7 @@
}
},
{
- "id": 21295,
+ "id": 21764,
"properties": {
"east": "low",
"north": "none",
@@ -250444,7 +256711,7 @@
}
},
{
- "id": 21296,
+ "id": 21765,
"properties": {
"east": "low",
"north": "none",
@@ -250455,7 +256722,7 @@
}
},
{
- "id": 21297,
+ "id": 21766,
"properties": {
"east": "low",
"north": "none",
@@ -250466,7 +256733,7 @@
}
},
{
- "id": 21298,
+ "id": 21767,
"properties": {
"east": "low",
"north": "none",
@@ -250477,7 +256744,7 @@
}
},
{
- "id": 21299,
+ "id": 21768,
"properties": {
"east": "low",
"north": "none",
@@ -250488,7 +256755,7 @@
}
},
{
- "id": 21300,
+ "id": 21769,
"properties": {
"east": "low",
"north": "none",
@@ -250499,7 +256766,7 @@
}
},
{
- "id": 21301,
+ "id": 21770,
"properties": {
"east": "low",
"north": "none",
@@ -250510,7 +256777,7 @@
}
},
{
- "id": 21302,
+ "id": 21771,
"properties": {
"east": "low",
"north": "none",
@@ -250521,7 +256788,7 @@
}
},
{
- "id": 21303,
+ "id": 21772,
"properties": {
"east": "low",
"north": "none",
@@ -250532,7 +256799,7 @@
}
},
{
- "id": 21304,
+ "id": 21773,
"properties": {
"east": "low",
"north": "none",
@@ -250543,7 +256810,7 @@
}
},
{
- "id": 21305,
+ "id": 21774,
"properties": {
"east": "low",
"north": "none",
@@ -250554,7 +256821,7 @@
}
},
{
- "id": 21306,
+ "id": 21775,
"properties": {
"east": "low",
"north": "none",
@@ -250565,7 +256832,7 @@
}
},
{
- "id": 21307,
+ "id": 21776,
"properties": {
"east": "low",
"north": "none",
@@ -250576,7 +256843,7 @@
}
},
{
- "id": 21308,
+ "id": 21777,
"properties": {
"east": "low",
"north": "none",
@@ -250587,7 +256854,7 @@
}
},
{
- "id": 21309,
+ "id": 21778,
"properties": {
"east": "low",
"north": "none",
@@ -250598,7 +256865,7 @@
}
},
{
- "id": 21310,
+ "id": 21779,
"properties": {
"east": "low",
"north": "none",
@@ -250609,7 +256876,7 @@
}
},
{
- "id": 21311,
+ "id": 21780,
"properties": {
"east": "low",
"north": "none",
@@ -250620,7 +256887,7 @@
}
},
{
- "id": 21312,
+ "id": 21781,
"properties": {
"east": "low",
"north": "low",
@@ -250631,7 +256898,7 @@
}
},
{
- "id": 21313,
+ "id": 21782,
"properties": {
"east": "low",
"north": "low",
@@ -250642,7 +256909,7 @@
}
},
{
- "id": 21314,
+ "id": 21783,
"properties": {
"east": "low",
"north": "low",
@@ -250653,7 +256920,7 @@
}
},
{
- "id": 21315,
+ "id": 21784,
"properties": {
"east": "low",
"north": "low",
@@ -250664,7 +256931,7 @@
}
},
{
- "id": 21316,
+ "id": 21785,
"properties": {
"east": "low",
"north": "low",
@@ -250675,7 +256942,7 @@
}
},
{
- "id": 21317,
+ "id": 21786,
"properties": {
"east": "low",
"north": "low",
@@ -250686,7 +256953,7 @@
}
},
{
- "id": 21318,
+ "id": 21787,
"properties": {
"east": "low",
"north": "low",
@@ -250697,7 +256964,7 @@
}
},
{
- "id": 21319,
+ "id": 21788,
"properties": {
"east": "low",
"north": "low",
@@ -250708,7 +256975,7 @@
}
},
{
- "id": 21320,
+ "id": 21789,
"properties": {
"east": "low",
"north": "low",
@@ -250719,7 +256986,7 @@
}
},
{
- "id": 21321,
+ "id": 21790,
"properties": {
"east": "low",
"north": "low",
@@ -250730,7 +256997,7 @@
}
},
{
- "id": 21322,
+ "id": 21791,
"properties": {
"east": "low",
"north": "low",
@@ -250741,7 +257008,7 @@
}
},
{
- "id": 21323,
+ "id": 21792,
"properties": {
"east": "low",
"north": "low",
@@ -250752,7 +257019,7 @@
}
},
{
- "id": 21324,
+ "id": 21793,
"properties": {
"east": "low",
"north": "low",
@@ -250763,7 +257030,7 @@
}
},
{
- "id": 21325,
+ "id": 21794,
"properties": {
"east": "low",
"north": "low",
@@ -250774,7 +257041,7 @@
}
},
{
- "id": 21326,
+ "id": 21795,
"properties": {
"east": "low",
"north": "low",
@@ -250785,7 +257052,7 @@
}
},
{
- "id": 21327,
+ "id": 21796,
"properties": {
"east": "low",
"north": "low",
@@ -250796,7 +257063,7 @@
}
},
{
- "id": 21328,
+ "id": 21797,
"properties": {
"east": "low",
"north": "low",
@@ -250807,7 +257074,7 @@
}
},
{
- "id": 21329,
+ "id": 21798,
"properties": {
"east": "low",
"north": "low",
@@ -250818,7 +257085,7 @@
}
},
{
- "id": 21330,
+ "id": 21799,
"properties": {
"east": "low",
"north": "low",
@@ -250829,7 +257096,7 @@
}
},
{
- "id": 21331,
+ "id": 21800,
"properties": {
"east": "low",
"north": "low",
@@ -250840,7 +257107,7 @@
}
},
{
- "id": 21332,
+ "id": 21801,
"properties": {
"east": "low",
"north": "low",
@@ -250851,7 +257118,7 @@
}
},
{
- "id": 21333,
+ "id": 21802,
"properties": {
"east": "low",
"north": "low",
@@ -250862,7 +257129,7 @@
}
},
{
- "id": 21334,
+ "id": 21803,
"properties": {
"east": "low",
"north": "low",
@@ -250873,7 +257140,7 @@
}
},
{
- "id": 21335,
+ "id": 21804,
"properties": {
"east": "low",
"north": "low",
@@ -250884,7 +257151,7 @@
}
},
{
- "id": 21336,
+ "id": 21805,
"properties": {
"east": "low",
"north": "low",
@@ -250895,7 +257162,7 @@
}
},
{
- "id": 21337,
+ "id": 21806,
"properties": {
"east": "low",
"north": "low",
@@ -250906,7 +257173,7 @@
}
},
{
- "id": 21338,
+ "id": 21807,
"properties": {
"east": "low",
"north": "low",
@@ -250917,7 +257184,7 @@
}
},
{
- "id": 21339,
+ "id": 21808,
"properties": {
"east": "low",
"north": "low",
@@ -250928,7 +257195,7 @@
}
},
{
- "id": 21340,
+ "id": 21809,
"properties": {
"east": "low",
"north": "low",
@@ -250939,7 +257206,7 @@
}
},
{
- "id": 21341,
+ "id": 21810,
"properties": {
"east": "low",
"north": "low",
@@ -250950,7 +257217,7 @@
}
},
{
- "id": 21342,
+ "id": 21811,
"properties": {
"east": "low",
"north": "low",
@@ -250961,7 +257228,7 @@
}
},
{
- "id": 21343,
+ "id": 21812,
"properties": {
"east": "low",
"north": "low",
@@ -250972,7 +257239,7 @@
}
},
{
- "id": 21344,
+ "id": 21813,
"properties": {
"east": "low",
"north": "low",
@@ -250983,7 +257250,7 @@
}
},
{
- "id": 21345,
+ "id": 21814,
"properties": {
"east": "low",
"north": "low",
@@ -250994,7 +257261,7 @@
}
},
{
- "id": 21346,
+ "id": 21815,
"properties": {
"east": "low",
"north": "low",
@@ -251005,7 +257272,7 @@
}
},
{
- "id": 21347,
+ "id": 21816,
"properties": {
"east": "low",
"north": "low",
@@ -251016,7 +257283,7 @@
}
},
{
- "id": 21348,
+ "id": 21817,
"properties": {
"east": "low",
"north": "tall",
@@ -251027,7 +257294,7 @@
}
},
{
- "id": 21349,
+ "id": 21818,
"properties": {
"east": "low",
"north": "tall",
@@ -251038,7 +257305,7 @@
}
},
{
- "id": 21350,
+ "id": 21819,
"properties": {
"east": "low",
"north": "tall",
@@ -251049,7 +257316,7 @@
}
},
{
- "id": 21351,
+ "id": 21820,
"properties": {
"east": "low",
"north": "tall",
@@ -251060,7 +257327,7 @@
}
},
{
- "id": 21352,
+ "id": 21821,
"properties": {
"east": "low",
"north": "tall",
@@ -251071,7 +257338,7 @@
}
},
{
- "id": 21353,
+ "id": 21822,
"properties": {
"east": "low",
"north": "tall",
@@ -251082,7 +257349,7 @@
}
},
{
- "id": 21354,
+ "id": 21823,
"properties": {
"east": "low",
"north": "tall",
@@ -251093,7 +257360,7 @@
}
},
{
- "id": 21355,
+ "id": 21824,
"properties": {
"east": "low",
"north": "tall",
@@ -251104,7 +257371,7 @@
}
},
{
- "id": 21356,
+ "id": 21825,
"properties": {
"east": "low",
"north": "tall",
@@ -251115,7 +257382,7 @@
}
},
{
- "id": 21357,
+ "id": 21826,
"properties": {
"east": "low",
"north": "tall",
@@ -251126,7 +257393,7 @@
}
},
{
- "id": 21358,
+ "id": 21827,
"properties": {
"east": "low",
"north": "tall",
@@ -251137,7 +257404,7 @@
}
},
{
- "id": 21359,
+ "id": 21828,
"properties": {
"east": "low",
"north": "tall",
@@ -251148,7 +257415,7 @@
}
},
{
- "id": 21360,
+ "id": 21829,
"properties": {
"east": "low",
"north": "tall",
@@ -251159,7 +257426,7 @@
}
},
{
- "id": 21361,
+ "id": 21830,
"properties": {
"east": "low",
"north": "tall",
@@ -251170,7 +257437,7 @@
}
},
{
- "id": 21362,
+ "id": 21831,
"properties": {
"east": "low",
"north": "tall",
@@ -251181,7 +257448,7 @@
}
},
{
- "id": 21363,
+ "id": 21832,
"properties": {
"east": "low",
"north": "tall",
@@ -251192,7 +257459,7 @@
}
},
{
- "id": 21364,
+ "id": 21833,
"properties": {
"east": "low",
"north": "tall",
@@ -251203,7 +257470,7 @@
}
},
{
- "id": 21365,
+ "id": 21834,
"properties": {
"east": "low",
"north": "tall",
@@ -251214,7 +257481,7 @@
}
},
{
- "id": 21366,
+ "id": 21835,
"properties": {
"east": "low",
"north": "tall",
@@ -251225,7 +257492,7 @@
}
},
{
- "id": 21367,
+ "id": 21836,
"properties": {
"east": "low",
"north": "tall",
@@ -251236,7 +257503,7 @@
}
},
{
- "id": 21368,
+ "id": 21837,
"properties": {
"east": "low",
"north": "tall",
@@ -251247,7 +257514,7 @@
}
},
{
- "id": 21369,
+ "id": 21838,
"properties": {
"east": "low",
"north": "tall",
@@ -251258,7 +257525,7 @@
}
},
{
- "id": 21370,
+ "id": 21839,
"properties": {
"east": "low",
"north": "tall",
@@ -251269,7 +257536,7 @@
}
},
{
- "id": 21371,
+ "id": 21840,
"properties": {
"east": "low",
"north": "tall",
@@ -251280,7 +257547,7 @@
}
},
{
- "id": 21372,
+ "id": 21841,
"properties": {
"east": "low",
"north": "tall",
@@ -251291,7 +257558,7 @@
}
},
{
- "id": 21373,
+ "id": 21842,
"properties": {
"east": "low",
"north": "tall",
@@ -251302,7 +257569,7 @@
}
},
{
- "id": 21374,
+ "id": 21843,
"properties": {
"east": "low",
"north": "tall",
@@ -251313,7 +257580,7 @@
}
},
{
- "id": 21375,
+ "id": 21844,
"properties": {
"east": "low",
"north": "tall",
@@ -251324,7 +257591,7 @@
}
},
{
- "id": 21376,
+ "id": 21845,
"properties": {
"east": "low",
"north": "tall",
@@ -251335,7 +257602,7 @@
}
},
{
- "id": 21377,
+ "id": 21846,
"properties": {
"east": "low",
"north": "tall",
@@ -251346,7 +257613,7 @@
}
},
{
- "id": 21378,
+ "id": 21847,
"properties": {
"east": "low",
"north": "tall",
@@ -251357,7 +257624,7 @@
}
},
{
- "id": 21379,
+ "id": 21848,
"properties": {
"east": "low",
"north": "tall",
@@ -251368,7 +257635,7 @@
}
},
{
- "id": 21380,
+ "id": 21849,
"properties": {
"east": "low",
"north": "tall",
@@ -251379,7 +257646,7 @@
}
},
{
- "id": 21381,
+ "id": 21850,
"properties": {
"east": "low",
"north": "tall",
@@ -251390,7 +257657,7 @@
}
},
{
- "id": 21382,
+ "id": 21851,
"properties": {
"east": "low",
"north": "tall",
@@ -251401,7 +257668,7 @@
}
},
{
- "id": 21383,
+ "id": 21852,
"properties": {
"east": "low",
"north": "tall",
@@ -251412,7 +257679,7 @@
}
},
{
- "id": 21384,
+ "id": 21853,
"properties": {
"east": "tall",
"north": "none",
@@ -251423,7 +257690,7 @@
}
},
{
- "id": 21385,
+ "id": 21854,
"properties": {
"east": "tall",
"north": "none",
@@ -251434,7 +257701,7 @@
}
},
{
- "id": 21386,
+ "id": 21855,
"properties": {
"east": "tall",
"north": "none",
@@ -251445,7 +257712,7 @@
}
},
{
- "id": 21387,
+ "id": 21856,
"properties": {
"east": "tall",
"north": "none",
@@ -251456,7 +257723,7 @@
}
},
{
- "id": 21388,
+ "id": 21857,
"properties": {
"east": "tall",
"north": "none",
@@ -251467,7 +257734,7 @@
}
},
{
- "id": 21389,
+ "id": 21858,
"properties": {
"east": "tall",
"north": "none",
@@ -251478,7 +257745,7 @@
}
},
{
- "id": 21390,
+ "id": 21859,
"properties": {
"east": "tall",
"north": "none",
@@ -251489,7 +257756,7 @@
}
},
{
- "id": 21391,
+ "id": 21860,
"properties": {
"east": "tall",
"north": "none",
@@ -251500,7 +257767,7 @@
}
},
{
- "id": 21392,
+ "id": 21861,
"properties": {
"east": "tall",
"north": "none",
@@ -251511,7 +257778,7 @@
}
},
{
- "id": 21393,
+ "id": 21862,
"properties": {
"east": "tall",
"north": "none",
@@ -251522,7 +257789,7 @@
}
},
{
- "id": 21394,
+ "id": 21863,
"properties": {
"east": "tall",
"north": "none",
@@ -251533,7 +257800,7 @@
}
},
{
- "id": 21395,
+ "id": 21864,
"properties": {
"east": "tall",
"north": "none",
@@ -251544,7 +257811,7 @@
}
},
{
- "id": 21396,
+ "id": 21865,
"properties": {
"east": "tall",
"north": "none",
@@ -251555,7 +257822,7 @@
}
},
{
- "id": 21397,
+ "id": 21866,
"properties": {
"east": "tall",
"north": "none",
@@ -251566,7 +257833,7 @@
}
},
{
- "id": 21398,
+ "id": 21867,
"properties": {
"east": "tall",
"north": "none",
@@ -251577,7 +257844,7 @@
}
},
{
- "id": 21399,
+ "id": 21868,
"properties": {
"east": "tall",
"north": "none",
@@ -251588,7 +257855,7 @@
}
},
{
- "id": 21400,
+ "id": 21869,
"properties": {
"east": "tall",
"north": "none",
@@ -251599,7 +257866,7 @@
}
},
{
- "id": 21401,
+ "id": 21870,
"properties": {
"east": "tall",
"north": "none",
@@ -251610,7 +257877,7 @@
}
},
{
- "id": 21402,
+ "id": 21871,
"properties": {
"east": "tall",
"north": "none",
@@ -251621,7 +257888,7 @@
}
},
{
- "id": 21403,
+ "id": 21872,
"properties": {
"east": "tall",
"north": "none",
@@ -251632,7 +257899,7 @@
}
},
{
- "id": 21404,
+ "id": 21873,
"properties": {
"east": "tall",
"north": "none",
@@ -251643,7 +257910,7 @@
}
},
{
- "id": 21405,
+ "id": 21874,
"properties": {
"east": "tall",
"north": "none",
@@ -251654,7 +257921,7 @@
}
},
{
- "id": 21406,
+ "id": 21875,
"properties": {
"east": "tall",
"north": "none",
@@ -251665,7 +257932,7 @@
}
},
{
- "id": 21407,
+ "id": 21876,
"properties": {
"east": "tall",
"north": "none",
@@ -251676,7 +257943,7 @@
}
},
{
- "id": 21408,
+ "id": 21877,
"properties": {
"east": "tall",
"north": "none",
@@ -251687,7 +257954,7 @@
}
},
{
- "id": 21409,
+ "id": 21878,
"properties": {
"east": "tall",
"north": "none",
@@ -251698,7 +257965,7 @@
}
},
{
- "id": 21410,
+ "id": 21879,
"properties": {
"east": "tall",
"north": "none",
@@ -251709,7 +257976,7 @@
}
},
{
- "id": 21411,
+ "id": 21880,
"properties": {
"east": "tall",
"north": "none",
@@ -251720,7 +257987,7 @@
}
},
{
- "id": 21412,
+ "id": 21881,
"properties": {
"east": "tall",
"north": "none",
@@ -251731,7 +257998,7 @@
}
},
{
- "id": 21413,
+ "id": 21882,
"properties": {
"east": "tall",
"north": "none",
@@ -251742,7 +258009,7 @@
}
},
{
- "id": 21414,
+ "id": 21883,
"properties": {
"east": "tall",
"north": "none",
@@ -251753,7 +258020,7 @@
}
},
{
- "id": 21415,
+ "id": 21884,
"properties": {
"east": "tall",
"north": "none",
@@ -251764,7 +258031,7 @@
}
},
{
- "id": 21416,
+ "id": 21885,
"properties": {
"east": "tall",
"north": "none",
@@ -251775,7 +258042,7 @@
}
},
{
- "id": 21417,
+ "id": 21886,
"properties": {
"east": "tall",
"north": "none",
@@ -251786,7 +258053,7 @@
}
},
{
- "id": 21418,
+ "id": 21887,
"properties": {
"east": "tall",
"north": "none",
@@ -251797,7 +258064,7 @@
}
},
{
- "id": 21419,
+ "id": 21888,
"properties": {
"east": "tall",
"north": "none",
@@ -251808,7 +258075,7 @@
}
},
{
- "id": 21420,
+ "id": 21889,
"properties": {
"east": "tall",
"north": "low",
@@ -251819,7 +258086,7 @@
}
},
{
- "id": 21421,
+ "id": 21890,
"properties": {
"east": "tall",
"north": "low",
@@ -251830,7 +258097,7 @@
}
},
{
- "id": 21422,
+ "id": 21891,
"properties": {
"east": "tall",
"north": "low",
@@ -251841,7 +258108,7 @@
}
},
{
- "id": 21423,
+ "id": 21892,
"properties": {
"east": "tall",
"north": "low",
@@ -251852,7 +258119,7 @@
}
},
{
- "id": 21424,
+ "id": 21893,
"properties": {
"east": "tall",
"north": "low",
@@ -251863,7 +258130,7 @@
}
},
{
- "id": 21425,
+ "id": 21894,
"properties": {
"east": "tall",
"north": "low",
@@ -251874,7 +258141,7 @@
}
},
{
- "id": 21426,
+ "id": 21895,
"properties": {
"east": "tall",
"north": "low",
@@ -251885,7 +258152,7 @@
}
},
{
- "id": 21427,
+ "id": 21896,
"properties": {
"east": "tall",
"north": "low",
@@ -251896,7 +258163,7 @@
}
},
{
- "id": 21428,
+ "id": 21897,
"properties": {
"east": "tall",
"north": "low",
@@ -251907,7 +258174,7 @@
}
},
{
- "id": 21429,
+ "id": 21898,
"properties": {
"east": "tall",
"north": "low",
@@ -251918,7 +258185,7 @@
}
},
{
- "id": 21430,
+ "id": 21899,
"properties": {
"east": "tall",
"north": "low",
@@ -251929,7 +258196,7 @@
}
},
{
- "id": 21431,
+ "id": 21900,
"properties": {
"east": "tall",
"north": "low",
@@ -251940,7 +258207,7 @@
}
},
{
- "id": 21432,
+ "id": 21901,
"properties": {
"east": "tall",
"north": "low",
@@ -251951,7 +258218,7 @@
}
},
{
- "id": 21433,
+ "id": 21902,
"properties": {
"east": "tall",
"north": "low",
@@ -251962,7 +258229,7 @@
}
},
{
- "id": 21434,
+ "id": 21903,
"properties": {
"east": "tall",
"north": "low",
@@ -251973,7 +258240,7 @@
}
},
{
- "id": 21435,
+ "id": 21904,
"properties": {
"east": "tall",
"north": "low",
@@ -251984,7 +258251,7 @@
}
},
{
- "id": 21436,
+ "id": 21905,
"properties": {
"east": "tall",
"north": "low",
@@ -251995,7 +258262,7 @@
}
},
{
- "id": 21437,
+ "id": 21906,
"properties": {
"east": "tall",
"north": "low",
@@ -252006,7 +258273,7 @@
}
},
{
- "id": 21438,
+ "id": 21907,
"properties": {
"east": "tall",
"north": "low",
@@ -252017,7 +258284,7 @@
}
},
{
- "id": 21439,
+ "id": 21908,
"properties": {
"east": "tall",
"north": "low",
@@ -252028,7 +258295,7 @@
}
},
{
- "id": 21440,
+ "id": 21909,
"properties": {
"east": "tall",
"north": "low",
@@ -252039,7 +258306,7 @@
}
},
{
- "id": 21441,
+ "id": 21910,
"properties": {
"east": "tall",
"north": "low",
@@ -252050,7 +258317,7 @@
}
},
{
- "id": 21442,
+ "id": 21911,
"properties": {
"east": "tall",
"north": "low",
@@ -252061,7 +258328,7 @@
}
},
{
- "id": 21443,
+ "id": 21912,
"properties": {
"east": "tall",
"north": "low",
@@ -252072,7 +258339,7 @@
}
},
{
- "id": 21444,
+ "id": 21913,
"properties": {
"east": "tall",
"north": "low",
@@ -252083,7 +258350,7 @@
}
},
{
- "id": 21445,
+ "id": 21914,
"properties": {
"east": "tall",
"north": "low",
@@ -252094,7 +258361,7 @@
}
},
{
- "id": 21446,
+ "id": 21915,
"properties": {
"east": "tall",
"north": "low",
@@ -252105,7 +258372,7 @@
}
},
{
- "id": 21447,
+ "id": 21916,
"properties": {
"east": "tall",
"north": "low",
@@ -252116,7 +258383,7 @@
}
},
{
- "id": 21448,
+ "id": 21917,
"properties": {
"east": "tall",
"north": "low",
@@ -252127,7 +258394,7 @@
}
},
{
- "id": 21449,
+ "id": 21918,
"properties": {
"east": "tall",
"north": "low",
@@ -252138,7 +258405,7 @@
}
},
{
- "id": 21450,
+ "id": 21919,
"properties": {
"east": "tall",
"north": "low",
@@ -252149,7 +258416,7 @@
}
},
{
- "id": 21451,
+ "id": 21920,
"properties": {
"east": "tall",
"north": "low",
@@ -252160,7 +258427,7 @@
}
},
{
- "id": 21452,
+ "id": 21921,
"properties": {
"east": "tall",
"north": "low",
@@ -252171,7 +258438,7 @@
}
},
{
- "id": 21453,
+ "id": 21922,
"properties": {
"east": "tall",
"north": "low",
@@ -252182,7 +258449,7 @@
}
},
{
- "id": 21454,
+ "id": 21923,
"properties": {
"east": "tall",
"north": "low",
@@ -252193,7 +258460,7 @@
}
},
{
- "id": 21455,
+ "id": 21924,
"properties": {
"east": "tall",
"north": "low",
@@ -252204,7 +258471,7 @@
}
},
{
- "id": 21456,
+ "id": 21925,
"properties": {
"east": "tall",
"north": "tall",
@@ -252215,7 +258482,7 @@
}
},
{
- "id": 21457,
+ "id": 21926,
"properties": {
"east": "tall",
"north": "tall",
@@ -252226,7 +258493,7 @@
}
},
{
- "id": 21458,
+ "id": 21927,
"properties": {
"east": "tall",
"north": "tall",
@@ -252237,7 +258504,7 @@
}
},
{
- "id": 21459,
+ "id": 21928,
"properties": {
"east": "tall",
"north": "tall",
@@ -252248,7 +258515,7 @@
}
},
{
- "id": 21460,
+ "id": 21929,
"properties": {
"east": "tall",
"north": "tall",
@@ -252259,7 +258526,7 @@
}
},
{
- "id": 21461,
+ "id": 21930,
"properties": {
"east": "tall",
"north": "tall",
@@ -252270,7 +258537,7 @@
}
},
{
- "id": 21462,
+ "id": 21931,
"properties": {
"east": "tall",
"north": "tall",
@@ -252281,7 +258548,7 @@
}
},
{
- "id": 21463,
+ "id": 21932,
"properties": {
"east": "tall",
"north": "tall",
@@ -252292,7 +258559,7 @@
}
},
{
- "id": 21464,
+ "id": 21933,
"properties": {
"east": "tall",
"north": "tall",
@@ -252303,7 +258570,7 @@
}
},
{
- "id": 21465,
+ "id": 21934,
"properties": {
"east": "tall",
"north": "tall",
@@ -252314,7 +258581,7 @@
}
},
{
- "id": 21466,
+ "id": 21935,
"properties": {
"east": "tall",
"north": "tall",
@@ -252325,7 +258592,7 @@
}
},
{
- "id": 21467,
+ "id": 21936,
"properties": {
"east": "tall",
"north": "tall",
@@ -252336,7 +258603,7 @@
}
},
{
- "id": 21468,
+ "id": 21937,
"properties": {
"east": "tall",
"north": "tall",
@@ -252347,7 +258614,7 @@
}
},
{
- "id": 21469,
+ "id": 21938,
"properties": {
"east": "tall",
"north": "tall",
@@ -252358,7 +258625,7 @@
}
},
{
- "id": 21470,
+ "id": 21939,
"properties": {
"east": "tall",
"north": "tall",
@@ -252369,7 +258636,7 @@
}
},
{
- "id": 21471,
+ "id": 21940,
"properties": {
"east": "tall",
"north": "tall",
@@ -252380,7 +258647,7 @@
}
},
{
- "id": 21472,
+ "id": 21941,
"properties": {
"east": "tall",
"north": "tall",
@@ -252391,7 +258658,7 @@
}
},
{
- "id": 21473,
+ "id": 21942,
"properties": {
"east": "tall",
"north": "tall",
@@ -252402,7 +258669,7 @@
}
},
{
- "id": 21474,
+ "id": 21943,
"properties": {
"east": "tall",
"north": "tall",
@@ -252413,7 +258680,7 @@
}
},
{
- "id": 21475,
+ "id": 21944,
"properties": {
"east": "tall",
"north": "tall",
@@ -252424,7 +258691,7 @@
}
},
{
- "id": 21476,
+ "id": 21945,
"properties": {
"east": "tall",
"north": "tall",
@@ -252435,7 +258702,7 @@
}
},
{
- "id": 21477,
+ "id": 21946,
"properties": {
"east": "tall",
"north": "tall",
@@ -252446,7 +258713,7 @@
}
},
{
- "id": 21478,
+ "id": 21947,
"properties": {
"east": "tall",
"north": "tall",
@@ -252457,7 +258724,7 @@
}
},
{
- "id": 21479,
+ "id": 21948,
"properties": {
"east": "tall",
"north": "tall",
@@ -252468,7 +258735,7 @@
}
},
{
- "id": 21480,
+ "id": 21949,
"properties": {
"east": "tall",
"north": "tall",
@@ -252479,7 +258746,7 @@
}
},
{
- "id": 21481,
+ "id": 21950,
"properties": {
"east": "tall",
"north": "tall",
@@ -252490,7 +258757,7 @@
}
},
{
- "id": 21482,
+ "id": 21951,
"properties": {
"east": "tall",
"north": "tall",
@@ -252501,7 +258768,7 @@
}
},
{
- "id": 21483,
+ "id": 21952,
"properties": {
"east": "tall",
"north": "tall",
@@ -252512,7 +258779,7 @@
}
},
{
- "id": 21484,
+ "id": 21953,
"properties": {
"east": "tall",
"north": "tall",
@@ -252523,7 +258790,7 @@
}
},
{
- "id": 21485,
+ "id": 21954,
"properties": {
"east": "tall",
"north": "tall",
@@ -252534,7 +258801,7 @@
}
},
{
- "id": 21486,
+ "id": 21955,
"properties": {
"east": "tall",
"north": "tall",
@@ -252545,7 +258812,7 @@
}
},
{
- "id": 21487,
+ "id": 21956,
"properties": {
"east": "tall",
"north": "tall",
@@ -252556,7 +258823,7 @@
}
},
{
- "id": 21488,
+ "id": 21957,
"properties": {
"east": "tall",
"north": "tall",
@@ -252567,7 +258834,7 @@
}
},
{
- "id": 21489,
+ "id": 21958,
"properties": {
"east": "tall",
"north": "tall",
@@ -252578,7 +258845,7 @@
}
},
{
- "id": 21490,
+ "id": 21959,
"properties": {
"east": "tall",
"north": "tall",
@@ -252589,7 +258856,7 @@
}
},
{
- "id": 21491,
+ "id": 21960,
"properties": {
"east": "tall",
"north": "tall",
@@ -252622,84 +258889,84 @@
"states": [
{
"default": true,
- "id": 12788,
+ "id": 13257,
"properties": {
"eggs": "1",
"hatch": "0"
}
},
{
- "id": 12789,
+ "id": 13258,
"properties": {
"eggs": "1",
"hatch": "1"
}
},
{
- "id": 12790,
+ "id": 13259,
"properties": {
"eggs": "1",
"hatch": "2"
}
},
{
- "id": 12791,
+ "id": 13260,
"properties": {
"eggs": "2",
"hatch": "0"
}
},
{
- "id": 12792,
+ "id": 13261,
"properties": {
"eggs": "2",
"hatch": "1"
}
},
{
- "id": 12793,
+ "id": 13262,
"properties": {
"eggs": "2",
"hatch": "2"
}
},
{
- "id": 12794,
+ "id": 13263,
"properties": {
"eggs": "3",
"hatch": "0"
}
},
{
- "id": 12795,
+ "id": 13264,
"properties": {
"eggs": "3",
"hatch": "1"
}
},
{
- "id": 12796,
+ "id": 13265,
"properties": {
"eggs": "3",
"hatch": "2"
}
},
{
- "id": 12797,
+ "id": 13266,
"properties": {
"eggs": "4",
"hatch": "0"
}
},
{
- "id": 12798,
+ "id": 13267,
"properties": {
"eggs": "4",
"hatch": "1"
}
},
{
- "id": 12799,
+ "id": 13268,
"properties": {
"eggs": "4",
"hatch": "2"
@@ -252745,157 +259012,157 @@
"states": [
{
"default": true,
- "id": 18638,
+ "id": 19107,
"properties": {
"age": "0"
}
},
{
- "id": 18639,
+ "id": 19108,
"properties": {
"age": "1"
}
},
{
- "id": 18640,
+ "id": 19109,
"properties": {
"age": "2"
}
},
{
- "id": 18641,
+ "id": 19110,
"properties": {
"age": "3"
}
},
{
- "id": 18642,
+ "id": 19111,
"properties": {
"age": "4"
}
},
{
- "id": 18643,
+ "id": 19112,
"properties": {
"age": "5"
}
},
{
- "id": 18644,
+ "id": 19113,
"properties": {
"age": "6"
}
},
{
- "id": 18645,
+ "id": 19114,
"properties": {
"age": "7"
}
},
{
- "id": 18646,
+ "id": 19115,
"properties": {
"age": "8"
}
},
{
- "id": 18647,
+ "id": 19116,
"properties": {
"age": "9"
}
},
{
- "id": 18648,
+ "id": 19117,
"properties": {
"age": "10"
}
},
{
- "id": 18649,
+ "id": 19118,
"properties": {
"age": "11"
}
},
{
- "id": 18650,
+ "id": 19119,
"properties": {
"age": "12"
}
},
{
- "id": 18651,
+ "id": 19120,
"properties": {
"age": "13"
}
},
{
- "id": 18652,
+ "id": 19121,
"properties": {
"age": "14"
}
},
{
- "id": 18653,
+ "id": 19122,
"properties": {
"age": "15"
}
},
{
- "id": 18654,
+ "id": 19123,
"properties": {
"age": "16"
}
},
{
- "id": 18655,
+ "id": 19124,
"properties": {
"age": "17"
}
},
{
- "id": 18656,
+ "id": 19125,
"properties": {
"age": "18"
}
},
{
- "id": 18657,
+ "id": 19126,
"properties": {
"age": "19"
}
},
{
- "id": 18658,
+ "id": 19127,
"properties": {
"age": "20"
}
},
{
- "id": 18659,
+ "id": 19128,
"properties": {
"age": "21"
}
},
{
- "id": 18660,
+ "id": 19129,
"properties": {
"age": "22"
}
},
{
- "id": 18661,
+ "id": 19130,
"properties": {
"age": "23"
}
},
{
- "id": 18662,
+ "id": 19131,
"properties": {
"age": "24"
}
},
{
- "id": 18663,
+ "id": 19132,
"properties": {
"age": "25"
}
@@ -252910,7 +259177,7 @@
"states": [
{
"default": true,
- "id": 18664
+ "id": 19133
}
]
},
@@ -252939,7 +259206,7 @@
},
"states": [
{
- "id": 26650,
+ "id": 27119,
"properties": {
"facing": "north",
"ominous": "true",
@@ -252947,7 +259214,7 @@
}
},
{
- "id": 26651,
+ "id": 27120,
"properties": {
"facing": "north",
"ominous": "true",
@@ -252955,7 +259222,7 @@
}
},
{
- "id": 26652,
+ "id": 27121,
"properties": {
"facing": "north",
"ominous": "true",
@@ -252963,7 +259230,7 @@
}
},
{
- "id": 26653,
+ "id": 27122,
"properties": {
"facing": "north",
"ominous": "true",
@@ -252972,7 +259239,7 @@
},
{
"default": true,
- "id": 26654,
+ "id": 27123,
"properties": {
"facing": "north",
"ominous": "false",
@@ -252980,7 +259247,7 @@
}
},
{
- "id": 26655,
+ "id": 27124,
"properties": {
"facing": "north",
"ominous": "false",
@@ -252988,7 +259255,7 @@
}
},
{
- "id": 26656,
+ "id": 27125,
"properties": {
"facing": "north",
"ominous": "false",
@@ -252996,7 +259263,7 @@
}
},
{
- "id": 26657,
+ "id": 27126,
"properties": {
"facing": "north",
"ominous": "false",
@@ -253004,7 +259271,7 @@
}
},
{
- "id": 26658,
+ "id": 27127,
"properties": {
"facing": "south",
"ominous": "true",
@@ -253012,7 +259279,7 @@
}
},
{
- "id": 26659,
+ "id": 27128,
"properties": {
"facing": "south",
"ominous": "true",
@@ -253020,7 +259287,7 @@
}
},
{
- "id": 26660,
+ "id": 27129,
"properties": {
"facing": "south",
"ominous": "true",
@@ -253028,7 +259295,7 @@
}
},
{
- "id": 26661,
+ "id": 27130,
"properties": {
"facing": "south",
"ominous": "true",
@@ -253036,7 +259303,7 @@
}
},
{
- "id": 26662,
+ "id": 27131,
"properties": {
"facing": "south",
"ominous": "false",
@@ -253044,7 +259311,7 @@
}
},
{
- "id": 26663,
+ "id": 27132,
"properties": {
"facing": "south",
"ominous": "false",
@@ -253052,7 +259319,7 @@
}
},
{
- "id": 26664,
+ "id": 27133,
"properties": {
"facing": "south",
"ominous": "false",
@@ -253060,7 +259327,7 @@
}
},
{
- "id": 26665,
+ "id": 27134,
"properties": {
"facing": "south",
"ominous": "false",
@@ -253068,7 +259335,7 @@
}
},
{
- "id": 26666,
+ "id": 27135,
"properties": {
"facing": "west",
"ominous": "true",
@@ -253076,7 +259343,7 @@
}
},
{
- "id": 26667,
+ "id": 27136,
"properties": {
"facing": "west",
"ominous": "true",
@@ -253084,7 +259351,7 @@
}
},
{
- "id": 26668,
+ "id": 27137,
"properties": {
"facing": "west",
"ominous": "true",
@@ -253092,7 +259359,7 @@
}
},
{
- "id": 26669,
+ "id": 27138,
"properties": {
"facing": "west",
"ominous": "true",
@@ -253100,7 +259367,7 @@
}
},
{
- "id": 26670,
+ "id": 27139,
"properties": {
"facing": "west",
"ominous": "false",
@@ -253108,7 +259375,7 @@
}
},
{
- "id": 26671,
+ "id": 27140,
"properties": {
"facing": "west",
"ominous": "false",
@@ -253116,7 +259383,7 @@
}
},
{
- "id": 26672,
+ "id": 27141,
"properties": {
"facing": "west",
"ominous": "false",
@@ -253124,7 +259391,7 @@
}
},
{
- "id": 26673,
+ "id": 27142,
"properties": {
"facing": "west",
"ominous": "false",
@@ -253132,7 +259399,7 @@
}
},
{
- "id": 26674,
+ "id": 27143,
"properties": {
"facing": "east",
"ominous": "true",
@@ -253140,7 +259407,7 @@
}
},
{
- "id": 26675,
+ "id": 27144,
"properties": {
"facing": "east",
"ominous": "true",
@@ -253148,7 +259415,7 @@
}
},
{
- "id": 26676,
+ "id": 27145,
"properties": {
"facing": "east",
"ominous": "true",
@@ -253156,7 +259423,7 @@
}
},
{
- "id": 26677,
+ "id": 27146,
"properties": {
"facing": "east",
"ominous": "true",
@@ -253164,7 +259431,7 @@
}
},
{
- "id": 26678,
+ "id": 27147,
"properties": {
"facing": "east",
"ominous": "false",
@@ -253172,7 +259439,7 @@
}
},
{
- "id": 26679,
+ "id": 27148,
"properties": {
"facing": "east",
"ominous": "false",
@@ -253180,7 +259447,7 @@
}
},
{
- "id": 26680,
+ "id": 27149,
"properties": {
"facing": "east",
"ominous": "false",
@@ -253188,7 +259455,7 @@
}
},
{
- "id": 26681,
+ "id": 27150,
"properties": {
"facing": "east",
"ominous": "false",
@@ -253211,20 +259478,20 @@
},
"states": [
{
- "id": 26566,
+ "id": 27035,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 26567,
+ "id": 27036,
"properties": {
"axis": "y"
}
},
{
- "id": 26568,
+ "id": 27037,
"properties": {
"axis": "z"
}
@@ -253260,7 +259527,7 @@
},
"states": [
{
- "id": 6837,
+ "id": 7067,
"properties": {
"east": "true",
"north": "true",
@@ -253270,7 +259537,7 @@
}
},
{
- "id": 6838,
+ "id": 7068,
"properties": {
"east": "true",
"north": "true",
@@ -253280,7 +259547,7 @@
}
},
{
- "id": 6839,
+ "id": 7069,
"properties": {
"east": "true",
"north": "true",
@@ -253290,7 +259557,7 @@
}
},
{
- "id": 6840,
+ "id": 7070,
"properties": {
"east": "true",
"north": "true",
@@ -253300,7 +259567,7 @@
}
},
{
- "id": 6841,
+ "id": 7071,
"properties": {
"east": "true",
"north": "true",
@@ -253310,7 +259577,7 @@
}
},
{
- "id": 6842,
+ "id": 7072,
"properties": {
"east": "true",
"north": "true",
@@ -253320,7 +259587,7 @@
}
},
{
- "id": 6843,
+ "id": 7073,
"properties": {
"east": "true",
"north": "true",
@@ -253330,7 +259597,7 @@
}
},
{
- "id": 6844,
+ "id": 7074,
"properties": {
"east": "true",
"north": "true",
@@ -253340,7 +259607,7 @@
}
},
{
- "id": 6845,
+ "id": 7075,
"properties": {
"east": "true",
"north": "false",
@@ -253350,7 +259617,7 @@
}
},
{
- "id": 6846,
+ "id": 7076,
"properties": {
"east": "true",
"north": "false",
@@ -253360,7 +259627,7 @@
}
},
{
- "id": 6847,
+ "id": 7077,
"properties": {
"east": "true",
"north": "false",
@@ -253370,7 +259637,7 @@
}
},
{
- "id": 6848,
+ "id": 7078,
"properties": {
"east": "true",
"north": "false",
@@ -253380,7 +259647,7 @@
}
},
{
- "id": 6849,
+ "id": 7079,
"properties": {
"east": "true",
"north": "false",
@@ -253390,7 +259657,7 @@
}
},
{
- "id": 6850,
+ "id": 7080,
"properties": {
"east": "true",
"north": "false",
@@ -253400,7 +259667,7 @@
}
},
{
- "id": 6851,
+ "id": 7081,
"properties": {
"east": "true",
"north": "false",
@@ -253410,7 +259677,7 @@
}
},
{
- "id": 6852,
+ "id": 7082,
"properties": {
"east": "true",
"north": "false",
@@ -253420,7 +259687,7 @@
}
},
{
- "id": 6853,
+ "id": 7083,
"properties": {
"east": "false",
"north": "true",
@@ -253430,7 +259697,7 @@
}
},
{
- "id": 6854,
+ "id": 7084,
"properties": {
"east": "false",
"north": "true",
@@ -253440,7 +259707,7 @@
}
},
{
- "id": 6855,
+ "id": 7085,
"properties": {
"east": "false",
"north": "true",
@@ -253450,7 +259717,7 @@
}
},
{
- "id": 6856,
+ "id": 7086,
"properties": {
"east": "false",
"north": "true",
@@ -253460,7 +259727,7 @@
}
},
{
- "id": 6857,
+ "id": 7087,
"properties": {
"east": "false",
"north": "true",
@@ -253470,7 +259737,7 @@
}
},
{
- "id": 6858,
+ "id": 7088,
"properties": {
"east": "false",
"north": "true",
@@ -253480,7 +259747,7 @@
}
},
{
- "id": 6859,
+ "id": 7089,
"properties": {
"east": "false",
"north": "true",
@@ -253490,7 +259757,7 @@
}
},
{
- "id": 6860,
+ "id": 7090,
"properties": {
"east": "false",
"north": "true",
@@ -253500,7 +259767,7 @@
}
},
{
- "id": 6861,
+ "id": 7091,
"properties": {
"east": "false",
"north": "false",
@@ -253510,7 +259777,7 @@
}
},
{
- "id": 6862,
+ "id": 7092,
"properties": {
"east": "false",
"north": "false",
@@ -253520,7 +259787,7 @@
}
},
{
- "id": 6863,
+ "id": 7093,
"properties": {
"east": "false",
"north": "false",
@@ -253530,7 +259797,7 @@
}
},
{
- "id": 6864,
+ "id": 7094,
"properties": {
"east": "false",
"north": "false",
@@ -253540,7 +259807,7 @@
}
},
{
- "id": 6865,
+ "id": 7095,
"properties": {
"east": "false",
"north": "false",
@@ -253550,7 +259817,7 @@
}
},
{
- "id": 6866,
+ "id": 7096,
"properties": {
"east": "false",
"north": "false",
@@ -253560,7 +259827,7 @@
}
},
{
- "id": 6867,
+ "id": 7097,
"properties": {
"east": "false",
"north": "false",
@@ -253571,7 +259838,7 @@
},
{
"default": true,
- "id": 6868,
+ "id": 7098,
"properties": {
"east": "false",
"north": "false",
@@ -253590,7 +259857,7 @@
"states": [
{
"default": true,
- "id": 12958
+ "id": 13427
}
]
},
@@ -253611,25 +259878,25 @@
"states": [
{
"default": true,
- "id": 2356,
+ "id": 2399,
"properties": {
"facing": "north"
}
},
{
- "id": 2357,
+ "id": 2400,
"properties": {
"facing": "south"
}
},
{
- "id": 2358,
+ "id": 2401,
"properties": {
"facing": "west"
}
},
{
- "id": 2359,
+ "id": 2402,
"properties": {
"facing": "east"
}
@@ -253662,7 +259929,7 @@
},
"states": [
{
- "id": 19124,
+ "id": 19593,
"properties": {
"face": "floor",
"facing": "north",
@@ -253670,7 +259937,7 @@
}
},
{
- "id": 19125,
+ "id": 19594,
"properties": {
"face": "floor",
"facing": "north",
@@ -253678,7 +259945,7 @@
}
},
{
- "id": 19126,
+ "id": 19595,
"properties": {
"face": "floor",
"facing": "south",
@@ -253686,7 +259953,7 @@
}
},
{
- "id": 19127,
+ "id": 19596,
"properties": {
"face": "floor",
"facing": "south",
@@ -253694,7 +259961,7 @@
}
},
{
- "id": 19128,
+ "id": 19597,
"properties": {
"face": "floor",
"facing": "west",
@@ -253702,7 +259969,7 @@
}
},
{
- "id": 19129,
+ "id": 19598,
"properties": {
"face": "floor",
"facing": "west",
@@ -253710,7 +259977,7 @@
}
},
{
- "id": 19130,
+ "id": 19599,
"properties": {
"face": "floor",
"facing": "east",
@@ -253718,7 +259985,7 @@
}
},
{
- "id": 19131,
+ "id": 19600,
"properties": {
"face": "floor",
"facing": "east",
@@ -253726,7 +259993,7 @@
}
},
{
- "id": 19132,
+ "id": 19601,
"properties": {
"face": "wall",
"facing": "north",
@@ -253735,7 +260002,7 @@
},
{
"default": true,
- "id": 19133,
+ "id": 19602,
"properties": {
"face": "wall",
"facing": "north",
@@ -253743,7 +260010,7 @@
}
},
{
- "id": 19134,
+ "id": 19603,
"properties": {
"face": "wall",
"facing": "south",
@@ -253751,7 +260018,7 @@
}
},
{
- "id": 19135,
+ "id": 19604,
"properties": {
"face": "wall",
"facing": "south",
@@ -253759,7 +260026,7 @@
}
},
{
- "id": 19136,
+ "id": 19605,
"properties": {
"face": "wall",
"facing": "west",
@@ -253767,7 +260034,7 @@
}
},
{
- "id": 19137,
+ "id": 19606,
"properties": {
"face": "wall",
"facing": "west",
@@ -253775,7 +260042,7 @@
}
},
{
- "id": 19138,
+ "id": 19607,
"properties": {
"face": "wall",
"facing": "east",
@@ -253783,7 +260050,7 @@
}
},
{
- "id": 19139,
+ "id": 19608,
"properties": {
"face": "wall",
"facing": "east",
@@ -253791,7 +260058,7 @@
}
},
{
- "id": 19140,
+ "id": 19609,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -253799,7 +260066,7 @@
}
},
{
- "id": 19141,
+ "id": 19610,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -253807,7 +260074,7 @@
}
},
{
- "id": 19142,
+ "id": 19611,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -253815,7 +260082,7 @@
}
},
{
- "id": 19143,
+ "id": 19612,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -253823,7 +260090,7 @@
}
},
{
- "id": 19144,
+ "id": 19613,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -253831,7 +260098,7 @@
}
},
{
- "id": 19145,
+ "id": 19614,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -253839,7 +260106,7 @@
}
},
{
- "id": 19146,
+ "id": 19615,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -253847,7 +260114,7 @@
}
},
{
- "id": 19147,
+ "id": 19616,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -253888,7 +260155,7 @@
},
"states": [
{
- "id": 19212,
+ "id": 19681,
"properties": {
"facing": "north",
"half": "upper",
@@ -253898,7 +260165,7 @@
}
},
{
- "id": 19213,
+ "id": 19682,
"properties": {
"facing": "north",
"half": "upper",
@@ -253908,7 +260175,7 @@
}
},
{
- "id": 19214,
+ "id": 19683,
"properties": {
"facing": "north",
"half": "upper",
@@ -253918,7 +260185,7 @@
}
},
{
- "id": 19215,
+ "id": 19684,
"properties": {
"facing": "north",
"half": "upper",
@@ -253928,7 +260195,7 @@
}
},
{
- "id": 19216,
+ "id": 19685,
"properties": {
"facing": "north",
"half": "upper",
@@ -253938,7 +260205,7 @@
}
},
{
- "id": 19217,
+ "id": 19686,
"properties": {
"facing": "north",
"half": "upper",
@@ -253948,7 +260215,7 @@
}
},
{
- "id": 19218,
+ "id": 19687,
"properties": {
"facing": "north",
"half": "upper",
@@ -253958,7 +260225,7 @@
}
},
{
- "id": 19219,
+ "id": 19688,
"properties": {
"facing": "north",
"half": "upper",
@@ -253968,7 +260235,7 @@
}
},
{
- "id": 19220,
+ "id": 19689,
"properties": {
"facing": "north",
"half": "lower",
@@ -253978,7 +260245,7 @@
}
},
{
- "id": 19221,
+ "id": 19690,
"properties": {
"facing": "north",
"half": "lower",
@@ -253988,7 +260255,7 @@
}
},
{
- "id": 19222,
+ "id": 19691,
"properties": {
"facing": "north",
"half": "lower",
@@ -253999,7 +260266,7 @@
},
{
"default": true,
- "id": 19223,
+ "id": 19692,
"properties": {
"facing": "north",
"half": "lower",
@@ -254009,7 +260276,7 @@
}
},
{
- "id": 19224,
+ "id": 19693,
"properties": {
"facing": "north",
"half": "lower",
@@ -254019,7 +260286,7 @@
}
},
{
- "id": 19225,
+ "id": 19694,
"properties": {
"facing": "north",
"half": "lower",
@@ -254029,7 +260296,7 @@
}
},
{
- "id": 19226,
+ "id": 19695,
"properties": {
"facing": "north",
"half": "lower",
@@ -254039,7 +260306,7 @@
}
},
{
- "id": 19227,
+ "id": 19696,
"properties": {
"facing": "north",
"half": "lower",
@@ -254049,7 +260316,7 @@
}
},
{
- "id": 19228,
+ "id": 19697,
"properties": {
"facing": "south",
"half": "upper",
@@ -254059,7 +260326,7 @@
}
},
{
- "id": 19229,
+ "id": 19698,
"properties": {
"facing": "south",
"half": "upper",
@@ -254069,7 +260336,7 @@
}
},
{
- "id": 19230,
+ "id": 19699,
"properties": {
"facing": "south",
"half": "upper",
@@ -254079,7 +260346,7 @@
}
},
{
- "id": 19231,
+ "id": 19700,
"properties": {
"facing": "south",
"half": "upper",
@@ -254089,7 +260356,7 @@
}
},
{
- "id": 19232,
+ "id": 19701,
"properties": {
"facing": "south",
"half": "upper",
@@ -254099,7 +260366,7 @@
}
},
{
- "id": 19233,
+ "id": 19702,
"properties": {
"facing": "south",
"half": "upper",
@@ -254109,7 +260376,7 @@
}
},
{
- "id": 19234,
+ "id": 19703,
"properties": {
"facing": "south",
"half": "upper",
@@ -254119,7 +260386,7 @@
}
},
{
- "id": 19235,
+ "id": 19704,
"properties": {
"facing": "south",
"half": "upper",
@@ -254129,7 +260396,7 @@
}
},
{
- "id": 19236,
+ "id": 19705,
"properties": {
"facing": "south",
"half": "lower",
@@ -254139,7 +260406,7 @@
}
},
{
- "id": 19237,
+ "id": 19706,
"properties": {
"facing": "south",
"half": "lower",
@@ -254149,7 +260416,7 @@
}
},
{
- "id": 19238,
+ "id": 19707,
"properties": {
"facing": "south",
"half": "lower",
@@ -254159,7 +260426,7 @@
}
},
{
- "id": 19239,
+ "id": 19708,
"properties": {
"facing": "south",
"half": "lower",
@@ -254169,7 +260436,7 @@
}
},
{
- "id": 19240,
+ "id": 19709,
"properties": {
"facing": "south",
"half": "lower",
@@ -254179,7 +260446,7 @@
}
},
{
- "id": 19241,
+ "id": 19710,
"properties": {
"facing": "south",
"half": "lower",
@@ -254189,7 +260456,7 @@
}
},
{
- "id": 19242,
+ "id": 19711,
"properties": {
"facing": "south",
"half": "lower",
@@ -254199,7 +260466,7 @@
}
},
{
- "id": 19243,
+ "id": 19712,
"properties": {
"facing": "south",
"half": "lower",
@@ -254209,7 +260476,7 @@
}
},
{
- "id": 19244,
+ "id": 19713,
"properties": {
"facing": "west",
"half": "upper",
@@ -254219,7 +260486,7 @@
}
},
{
- "id": 19245,
+ "id": 19714,
"properties": {
"facing": "west",
"half": "upper",
@@ -254229,7 +260496,7 @@
}
},
{
- "id": 19246,
+ "id": 19715,
"properties": {
"facing": "west",
"half": "upper",
@@ -254239,7 +260506,7 @@
}
},
{
- "id": 19247,
+ "id": 19716,
"properties": {
"facing": "west",
"half": "upper",
@@ -254249,7 +260516,7 @@
}
},
{
- "id": 19248,
+ "id": 19717,
"properties": {
"facing": "west",
"half": "upper",
@@ -254259,7 +260526,7 @@
}
},
{
- "id": 19249,
+ "id": 19718,
"properties": {
"facing": "west",
"half": "upper",
@@ -254269,7 +260536,7 @@
}
},
{
- "id": 19250,
+ "id": 19719,
"properties": {
"facing": "west",
"half": "upper",
@@ -254279,7 +260546,7 @@
}
},
{
- "id": 19251,
+ "id": 19720,
"properties": {
"facing": "west",
"half": "upper",
@@ -254289,7 +260556,7 @@
}
},
{
- "id": 19252,
+ "id": 19721,
"properties": {
"facing": "west",
"half": "lower",
@@ -254299,7 +260566,7 @@
}
},
{
- "id": 19253,
+ "id": 19722,
"properties": {
"facing": "west",
"half": "lower",
@@ -254309,7 +260576,7 @@
}
},
{
- "id": 19254,
+ "id": 19723,
"properties": {
"facing": "west",
"half": "lower",
@@ -254319,7 +260586,7 @@
}
},
{
- "id": 19255,
+ "id": 19724,
"properties": {
"facing": "west",
"half": "lower",
@@ -254329,7 +260596,7 @@
}
},
{
- "id": 19256,
+ "id": 19725,
"properties": {
"facing": "west",
"half": "lower",
@@ -254339,7 +260606,7 @@
}
},
{
- "id": 19257,
+ "id": 19726,
"properties": {
"facing": "west",
"half": "lower",
@@ -254349,7 +260616,7 @@
}
},
{
- "id": 19258,
+ "id": 19727,
"properties": {
"facing": "west",
"half": "lower",
@@ -254359,7 +260626,7 @@
}
},
{
- "id": 19259,
+ "id": 19728,
"properties": {
"facing": "west",
"half": "lower",
@@ -254369,7 +260636,7 @@
}
},
{
- "id": 19260,
+ "id": 19729,
"properties": {
"facing": "east",
"half": "upper",
@@ -254379,7 +260646,7 @@
}
},
{
- "id": 19261,
+ "id": 19730,
"properties": {
"facing": "east",
"half": "upper",
@@ -254389,7 +260656,7 @@
}
},
{
- "id": 19262,
+ "id": 19731,
"properties": {
"facing": "east",
"half": "upper",
@@ -254399,7 +260666,7 @@
}
},
{
- "id": 19263,
+ "id": 19732,
"properties": {
"facing": "east",
"half": "upper",
@@ -254409,7 +260676,7 @@
}
},
{
- "id": 19264,
+ "id": 19733,
"properties": {
"facing": "east",
"half": "upper",
@@ -254419,7 +260686,7 @@
}
},
{
- "id": 19265,
+ "id": 19734,
"properties": {
"facing": "east",
"half": "upper",
@@ -254429,7 +260696,7 @@
}
},
{
- "id": 19266,
+ "id": 19735,
"properties": {
"facing": "east",
"half": "upper",
@@ -254439,7 +260706,7 @@
}
},
{
- "id": 19267,
+ "id": 19736,
"properties": {
"facing": "east",
"half": "upper",
@@ -254449,7 +260716,7 @@
}
},
{
- "id": 19268,
+ "id": 19737,
"properties": {
"facing": "east",
"half": "lower",
@@ -254459,7 +260726,7 @@
}
},
{
- "id": 19269,
+ "id": 19738,
"properties": {
"facing": "east",
"half": "lower",
@@ -254469,7 +260736,7 @@
}
},
{
- "id": 19270,
+ "id": 19739,
"properties": {
"facing": "east",
"half": "lower",
@@ -254479,7 +260746,7 @@
}
},
{
- "id": 19271,
+ "id": 19740,
"properties": {
"facing": "east",
"half": "lower",
@@ -254489,7 +260756,7 @@
}
},
{
- "id": 19272,
+ "id": 19741,
"properties": {
"facing": "east",
"half": "lower",
@@ -254499,7 +260766,7 @@
}
},
{
- "id": 19273,
+ "id": 19742,
"properties": {
"facing": "east",
"half": "lower",
@@ -254509,7 +260776,7 @@
}
},
{
- "id": 19274,
+ "id": 19743,
"properties": {
"facing": "east",
"half": "lower",
@@ -254519,7 +260786,7 @@
}
},
{
- "id": 19275,
+ "id": 19744,
"properties": {
"facing": "east",
"half": "lower",
@@ -254559,7 +260826,7 @@
},
"states": [
{
- "id": 18716,
+ "id": 19185,
"properties": {
"east": "true",
"north": "true",
@@ -254569,7 +260836,7 @@
}
},
{
- "id": 18717,
+ "id": 19186,
"properties": {
"east": "true",
"north": "true",
@@ -254579,7 +260846,7 @@
}
},
{
- "id": 18718,
+ "id": 19187,
"properties": {
"east": "true",
"north": "true",
@@ -254589,7 +260856,7 @@
}
},
{
- "id": 18719,
+ "id": 19188,
"properties": {
"east": "true",
"north": "true",
@@ -254599,7 +260866,7 @@
}
},
{
- "id": 18720,
+ "id": 19189,
"properties": {
"east": "true",
"north": "true",
@@ -254609,7 +260876,7 @@
}
},
{
- "id": 18721,
+ "id": 19190,
"properties": {
"east": "true",
"north": "true",
@@ -254619,7 +260886,7 @@
}
},
{
- "id": 18722,
+ "id": 19191,
"properties": {
"east": "true",
"north": "true",
@@ -254629,7 +260896,7 @@
}
},
{
- "id": 18723,
+ "id": 19192,
"properties": {
"east": "true",
"north": "true",
@@ -254639,7 +260906,7 @@
}
},
{
- "id": 18724,
+ "id": 19193,
"properties": {
"east": "true",
"north": "false",
@@ -254649,7 +260916,7 @@
}
},
{
- "id": 18725,
+ "id": 19194,
"properties": {
"east": "true",
"north": "false",
@@ -254659,7 +260926,7 @@
}
},
{
- "id": 18726,
+ "id": 19195,
"properties": {
"east": "true",
"north": "false",
@@ -254669,7 +260936,7 @@
}
},
{
- "id": 18727,
+ "id": 19196,
"properties": {
"east": "true",
"north": "false",
@@ -254679,7 +260946,7 @@
}
},
{
- "id": 18728,
+ "id": 19197,
"properties": {
"east": "true",
"north": "false",
@@ -254689,7 +260956,7 @@
}
},
{
- "id": 18729,
+ "id": 19198,
"properties": {
"east": "true",
"north": "false",
@@ -254699,7 +260966,7 @@
}
},
{
- "id": 18730,
+ "id": 19199,
"properties": {
"east": "true",
"north": "false",
@@ -254709,7 +260976,7 @@
}
},
{
- "id": 18731,
+ "id": 19200,
"properties": {
"east": "true",
"north": "false",
@@ -254719,7 +260986,7 @@
}
},
{
- "id": 18732,
+ "id": 19201,
"properties": {
"east": "false",
"north": "true",
@@ -254729,7 +260996,7 @@
}
},
{
- "id": 18733,
+ "id": 19202,
"properties": {
"east": "false",
"north": "true",
@@ -254739,7 +261006,7 @@
}
},
{
- "id": 18734,
+ "id": 19203,
"properties": {
"east": "false",
"north": "true",
@@ -254749,7 +261016,7 @@
}
},
{
- "id": 18735,
+ "id": 19204,
"properties": {
"east": "false",
"north": "true",
@@ -254759,7 +261026,7 @@
}
},
{
- "id": 18736,
+ "id": 19205,
"properties": {
"east": "false",
"north": "true",
@@ -254769,7 +261036,7 @@
}
},
{
- "id": 18737,
+ "id": 19206,
"properties": {
"east": "false",
"north": "true",
@@ -254779,7 +261046,7 @@
}
},
{
- "id": 18738,
+ "id": 19207,
"properties": {
"east": "false",
"north": "true",
@@ -254789,7 +261056,7 @@
}
},
{
- "id": 18739,
+ "id": 19208,
"properties": {
"east": "false",
"north": "true",
@@ -254799,7 +261066,7 @@
}
},
{
- "id": 18740,
+ "id": 19209,
"properties": {
"east": "false",
"north": "false",
@@ -254809,7 +261076,7 @@
}
},
{
- "id": 18741,
+ "id": 19210,
"properties": {
"east": "false",
"north": "false",
@@ -254819,7 +261086,7 @@
}
},
{
- "id": 18742,
+ "id": 19211,
"properties": {
"east": "false",
"north": "false",
@@ -254829,7 +261096,7 @@
}
},
{
- "id": 18743,
+ "id": 19212,
"properties": {
"east": "false",
"north": "false",
@@ -254839,7 +261106,7 @@
}
},
{
- "id": 18744,
+ "id": 19213,
"properties": {
"east": "false",
"north": "false",
@@ -254849,7 +261116,7 @@
}
},
{
- "id": 18745,
+ "id": 19214,
"properties": {
"east": "false",
"north": "false",
@@ -254859,7 +261126,7 @@
}
},
{
- "id": 18746,
+ "id": 19215,
"properties": {
"east": "false",
"north": "false",
@@ -254870,7 +261137,7 @@
},
{
"default": true,
- "id": 18747,
+ "id": 19216,
"properties": {
"east": "false",
"north": "false",
@@ -254909,7 +261176,7 @@
},
"states": [
{
- "id": 18908,
+ "id": 19377,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -254918,7 +261185,7 @@
}
},
{
- "id": 18909,
+ "id": 19378,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -254927,7 +261194,7 @@
}
},
{
- "id": 18910,
+ "id": 19379,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -254936,7 +261203,7 @@
}
},
{
- "id": 18911,
+ "id": 19380,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -254945,7 +261212,7 @@
}
},
{
- "id": 18912,
+ "id": 19381,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -254954,7 +261221,7 @@
}
},
{
- "id": 18913,
+ "id": 19382,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -254963,7 +261230,7 @@
}
},
{
- "id": 18914,
+ "id": 19383,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -254973,7 +261240,7 @@
},
{
"default": true,
- "id": 18915,
+ "id": 19384,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -254982,7 +261249,7 @@
}
},
{
- "id": 18916,
+ "id": 19385,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -254991,7 +261258,7 @@
}
},
{
- "id": 18917,
+ "id": 19386,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -255000,7 +261267,7 @@
}
},
{
- "id": 18918,
+ "id": 19387,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -255009,7 +261276,7 @@
}
},
{
- "id": 18919,
+ "id": 19388,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -255018,7 +261285,7 @@
}
},
{
- "id": 18920,
+ "id": 19389,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -255027,7 +261294,7 @@
}
},
{
- "id": 18921,
+ "id": 19390,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -255036,7 +261303,7 @@
}
},
{
- "id": 18922,
+ "id": 19391,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -255045,7 +261312,7 @@
}
},
{
- "id": 18923,
+ "id": 19392,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -255054,7 +261321,7 @@
}
},
{
- "id": 18924,
+ "id": 19393,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -255063,7 +261330,7 @@
}
},
{
- "id": 18925,
+ "id": 19394,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -255072,7 +261339,7 @@
}
},
{
- "id": 18926,
+ "id": 19395,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -255081,7 +261348,7 @@
}
},
{
- "id": 18927,
+ "id": 19396,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -255090,7 +261357,7 @@
}
},
{
- "id": 18928,
+ "id": 19397,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -255099,7 +261366,7 @@
}
},
{
- "id": 18929,
+ "id": 19398,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -255108,7 +261375,7 @@
}
},
{
- "id": 18930,
+ "id": 19399,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -255117,7 +261384,7 @@
}
},
{
- "id": 18931,
+ "id": 19400,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -255126,7 +261393,7 @@
}
},
{
- "id": 18932,
+ "id": 19401,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -255135,7 +261402,7 @@
}
},
{
- "id": 18933,
+ "id": 19402,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -255144,7 +261411,7 @@
}
},
{
- "id": 18934,
+ "id": 19403,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -255153,7 +261420,7 @@
}
},
{
- "id": 18935,
+ "id": 19404,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -255162,7 +261429,7 @@
}
},
{
- "id": 18936,
+ "id": 19405,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -255171,7 +261438,7 @@
}
},
{
- "id": 18937,
+ "id": 19406,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -255180,7 +261447,7 @@
}
},
{
- "id": 18938,
+ "id": 19407,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -255189,7 +261456,7 @@
}
},
{
- "id": 18939,
+ "id": 19408,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -255209,7 +261476,7 @@
"states": [
{
"default": true,
- "id": 18592
+ "id": 19061
}
]
},
@@ -255249,7 +261516,7 @@
},
"states": [
{
- "id": 5346,
+ "id": 5502,
"properties": {
"attached": "true",
"rotation": "0",
@@ -255257,7 +261524,7 @@
}
},
{
- "id": 5347,
+ "id": 5503,
"properties": {
"attached": "true",
"rotation": "0",
@@ -255265,7 +261532,7 @@
}
},
{
- "id": 5348,
+ "id": 5504,
"properties": {
"attached": "true",
"rotation": "1",
@@ -255273,7 +261540,7 @@
}
},
{
- "id": 5349,
+ "id": 5505,
"properties": {
"attached": "true",
"rotation": "1",
@@ -255281,7 +261548,7 @@
}
},
{
- "id": 5350,
+ "id": 5506,
"properties": {
"attached": "true",
"rotation": "2",
@@ -255289,7 +261556,7 @@
}
},
{
- "id": 5351,
+ "id": 5507,
"properties": {
"attached": "true",
"rotation": "2",
@@ -255297,7 +261564,7 @@
}
},
{
- "id": 5352,
+ "id": 5508,
"properties": {
"attached": "true",
"rotation": "3",
@@ -255305,7 +261572,7 @@
}
},
{
- "id": 5353,
+ "id": 5509,
"properties": {
"attached": "true",
"rotation": "3",
@@ -255313,7 +261580,7 @@
}
},
{
- "id": 5354,
+ "id": 5510,
"properties": {
"attached": "true",
"rotation": "4",
@@ -255321,7 +261588,7 @@
}
},
{
- "id": 5355,
+ "id": 5511,
"properties": {
"attached": "true",
"rotation": "4",
@@ -255329,7 +261596,7 @@
}
},
{
- "id": 5356,
+ "id": 5512,
"properties": {
"attached": "true",
"rotation": "5",
@@ -255337,7 +261604,7 @@
}
},
{
- "id": 5357,
+ "id": 5513,
"properties": {
"attached": "true",
"rotation": "5",
@@ -255345,7 +261612,7 @@
}
},
{
- "id": 5358,
+ "id": 5514,
"properties": {
"attached": "true",
"rotation": "6",
@@ -255353,7 +261620,7 @@
}
},
{
- "id": 5359,
+ "id": 5515,
"properties": {
"attached": "true",
"rotation": "6",
@@ -255361,7 +261628,7 @@
}
},
{
- "id": 5360,
+ "id": 5516,
"properties": {
"attached": "true",
"rotation": "7",
@@ -255369,7 +261636,7 @@
}
},
{
- "id": 5361,
+ "id": 5517,
"properties": {
"attached": "true",
"rotation": "7",
@@ -255377,7 +261644,7 @@
}
},
{
- "id": 5362,
+ "id": 5518,
"properties": {
"attached": "true",
"rotation": "8",
@@ -255385,7 +261652,7 @@
}
},
{
- "id": 5363,
+ "id": 5519,
"properties": {
"attached": "true",
"rotation": "8",
@@ -255393,7 +261660,7 @@
}
},
{
- "id": 5364,
+ "id": 5520,
"properties": {
"attached": "true",
"rotation": "9",
@@ -255401,7 +261668,7 @@
}
},
{
- "id": 5365,
+ "id": 5521,
"properties": {
"attached": "true",
"rotation": "9",
@@ -255409,7 +261676,7 @@
}
},
{
- "id": 5366,
+ "id": 5522,
"properties": {
"attached": "true",
"rotation": "10",
@@ -255417,7 +261684,7 @@
}
},
{
- "id": 5367,
+ "id": 5523,
"properties": {
"attached": "true",
"rotation": "10",
@@ -255425,7 +261692,7 @@
}
},
{
- "id": 5368,
+ "id": 5524,
"properties": {
"attached": "true",
"rotation": "11",
@@ -255433,7 +261700,7 @@
}
},
{
- "id": 5369,
+ "id": 5525,
"properties": {
"attached": "true",
"rotation": "11",
@@ -255441,7 +261708,7 @@
}
},
{
- "id": 5370,
+ "id": 5526,
"properties": {
"attached": "true",
"rotation": "12",
@@ -255449,7 +261716,7 @@
}
},
{
- "id": 5371,
+ "id": 5527,
"properties": {
"attached": "true",
"rotation": "12",
@@ -255457,7 +261724,7 @@
}
},
{
- "id": 5372,
+ "id": 5528,
"properties": {
"attached": "true",
"rotation": "13",
@@ -255465,7 +261732,7 @@
}
},
{
- "id": 5373,
+ "id": 5529,
"properties": {
"attached": "true",
"rotation": "13",
@@ -255473,7 +261740,7 @@
}
},
{
- "id": 5374,
+ "id": 5530,
"properties": {
"attached": "true",
"rotation": "14",
@@ -255481,7 +261748,7 @@
}
},
{
- "id": 5375,
+ "id": 5531,
"properties": {
"attached": "true",
"rotation": "14",
@@ -255489,7 +261756,7 @@
}
},
{
- "id": 5376,
+ "id": 5532,
"properties": {
"attached": "true",
"rotation": "15",
@@ -255497,7 +261764,7 @@
}
},
{
- "id": 5377,
+ "id": 5533,
"properties": {
"attached": "true",
"rotation": "15",
@@ -255505,7 +261772,7 @@
}
},
{
- "id": 5378,
+ "id": 5534,
"properties": {
"attached": "false",
"rotation": "0",
@@ -255514,7 +261781,7 @@
},
{
"default": true,
- "id": 5379,
+ "id": 5535,
"properties": {
"attached": "false",
"rotation": "0",
@@ -255522,7 +261789,7 @@
}
},
{
- "id": 5380,
+ "id": 5536,
"properties": {
"attached": "false",
"rotation": "1",
@@ -255530,7 +261797,7 @@
}
},
{
- "id": 5381,
+ "id": 5537,
"properties": {
"attached": "false",
"rotation": "1",
@@ -255538,7 +261805,7 @@
}
},
{
- "id": 5382,
+ "id": 5538,
"properties": {
"attached": "false",
"rotation": "2",
@@ -255546,7 +261813,7 @@
}
},
{
- "id": 5383,
+ "id": 5539,
"properties": {
"attached": "false",
"rotation": "2",
@@ -255554,7 +261821,7 @@
}
},
{
- "id": 5384,
+ "id": 5540,
"properties": {
"attached": "false",
"rotation": "3",
@@ -255562,7 +261829,7 @@
}
},
{
- "id": 5385,
+ "id": 5541,
"properties": {
"attached": "false",
"rotation": "3",
@@ -255570,7 +261837,7 @@
}
},
{
- "id": 5386,
+ "id": 5542,
"properties": {
"attached": "false",
"rotation": "4",
@@ -255578,7 +261845,7 @@
}
},
{
- "id": 5387,
+ "id": 5543,
"properties": {
"attached": "false",
"rotation": "4",
@@ -255586,7 +261853,7 @@
}
},
{
- "id": 5388,
+ "id": 5544,
"properties": {
"attached": "false",
"rotation": "5",
@@ -255594,7 +261861,7 @@
}
},
{
- "id": 5389,
+ "id": 5545,
"properties": {
"attached": "false",
"rotation": "5",
@@ -255602,7 +261869,7 @@
}
},
{
- "id": 5390,
+ "id": 5546,
"properties": {
"attached": "false",
"rotation": "6",
@@ -255610,7 +261877,7 @@
}
},
{
- "id": 5391,
+ "id": 5547,
"properties": {
"attached": "false",
"rotation": "6",
@@ -255618,7 +261885,7 @@
}
},
{
- "id": 5392,
+ "id": 5548,
"properties": {
"attached": "false",
"rotation": "7",
@@ -255626,7 +261893,7 @@
}
},
{
- "id": 5393,
+ "id": 5549,
"properties": {
"attached": "false",
"rotation": "7",
@@ -255634,7 +261901,7 @@
}
},
{
- "id": 5394,
+ "id": 5550,
"properties": {
"attached": "false",
"rotation": "8",
@@ -255642,7 +261909,7 @@
}
},
{
- "id": 5395,
+ "id": 5551,
"properties": {
"attached": "false",
"rotation": "8",
@@ -255650,7 +261917,7 @@
}
},
{
- "id": 5396,
+ "id": 5552,
"properties": {
"attached": "false",
"rotation": "9",
@@ -255658,7 +261925,7 @@
}
},
{
- "id": 5397,
+ "id": 5553,
"properties": {
"attached": "false",
"rotation": "9",
@@ -255666,7 +261933,7 @@
}
},
{
- "id": 5398,
+ "id": 5554,
"properties": {
"attached": "false",
"rotation": "10",
@@ -255674,7 +261941,7 @@
}
},
{
- "id": 5399,
+ "id": 5555,
"properties": {
"attached": "false",
"rotation": "10",
@@ -255682,7 +261949,7 @@
}
},
{
- "id": 5400,
+ "id": 5556,
"properties": {
"attached": "false",
"rotation": "11",
@@ -255690,7 +261957,7 @@
}
},
{
- "id": 5401,
+ "id": 5557,
"properties": {
"attached": "false",
"rotation": "11",
@@ -255698,7 +261965,7 @@
}
},
{
- "id": 5402,
+ "id": 5558,
"properties": {
"attached": "false",
"rotation": "12",
@@ -255706,7 +261973,7 @@
}
},
{
- "id": 5403,
+ "id": 5559,
"properties": {
"attached": "false",
"rotation": "12",
@@ -255714,7 +261981,7 @@
}
},
{
- "id": 5404,
+ "id": 5560,
"properties": {
"attached": "false",
"rotation": "13",
@@ -255722,7 +261989,7 @@
}
},
{
- "id": 5405,
+ "id": 5561,
"properties": {
"attached": "false",
"rotation": "13",
@@ -255730,7 +261997,7 @@
}
},
{
- "id": 5406,
+ "id": 5562,
"properties": {
"attached": "false",
"rotation": "14",
@@ -255738,7 +262005,7 @@
}
},
{
- "id": 5407,
+ "id": 5563,
"properties": {
"attached": "false",
"rotation": "14",
@@ -255746,7 +262013,7 @@
}
},
{
- "id": 5408,
+ "id": 5564,
"properties": {
"attached": "false",
"rotation": "15",
@@ -255754,7 +262021,7 @@
}
},
{
- "id": 5409,
+ "id": 5565,
"properties": {
"attached": "false",
"rotation": "15",
@@ -255777,20 +262044,20 @@
},
"states": [
{
- "id": 18585,
+ "id": 19054,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 18586,
+ "id": 19055,
"properties": {
"axis": "y"
}
},
{
- "id": 18587,
+ "id": 19056,
"properties": {
"axis": "z"
}
@@ -255805,7 +262072,7 @@
"states": [
{
"default": true,
- "id": 18591
+ "id": 19060
}
]
},
@@ -255817,7 +262084,7 @@
"states": [
{
"default": true,
- "id": 18667
+ "id": 19136
}
]
},
@@ -255835,14 +262102,14 @@
},
"states": [
{
- "id": 18682,
+ "id": 19151,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 18683,
+ "id": 19152,
"properties": {
"powered": "false"
}
@@ -255857,7 +262124,7 @@
"states": [
{
"default": true,
- "id": 18594
+ "id": 19063
}
]
},
@@ -255893,7 +262160,7 @@
},
"states": [
{
- "id": 19308,
+ "id": 19777,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -255901,217 +262168,217 @@
},
{
"default": true,
- "id": 19309,
+ "id": 19778,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 19310,
+ "id": 19779,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 19311,
+ "id": 19780,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 19312,
+ "id": 19781,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 19313,
+ "id": 19782,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 19314,
+ "id": 19783,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 19315,
+ "id": 19784,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 19316,
+ "id": 19785,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 19317,
+ "id": 19786,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 19318,
+ "id": 19787,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 19319,
+ "id": 19788,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 19320,
+ "id": 19789,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 19321,
+ "id": 19790,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 19322,
+ "id": 19791,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 19323,
+ "id": 19792,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 19324,
+ "id": 19793,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 19325,
+ "id": 19794,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 19326,
+ "id": 19795,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 19327,
+ "id": 19796,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 19328,
+ "id": 19797,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 19329,
+ "id": 19798,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 19330,
+ "id": 19799,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 19331,
+ "id": 19800,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 19332,
+ "id": 19801,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 19333,
+ "id": 19802,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 19334,
+ "id": 19803,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 19335,
+ "id": 19804,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 19336,
+ "id": 19805,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 19337,
+ "id": 19806,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 19338,
+ "id": 19807,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 19339,
+ "id": 19808,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -256137,21 +262404,21 @@
},
"states": [
{
- "id": 18674,
+ "id": 19143,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 18675,
+ "id": 19144,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 18676,
+ "id": 19145,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -256159,21 +262426,21 @@
},
{
"default": true,
- "id": 18677,
+ "id": 19146,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 18678,
+ "id": 19147,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 18679,
+ "id": 19148,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -256214,7 +262481,7 @@
},
"states": [
{
- "id": 19020,
+ "id": 19489,
"properties": {
"facing": "north",
"half": "top",
@@ -256223,7 +262490,7 @@
}
},
{
- "id": 19021,
+ "id": 19490,
"properties": {
"facing": "north",
"half": "top",
@@ -256232,7 +262499,7 @@
}
},
{
- "id": 19022,
+ "id": 19491,
"properties": {
"facing": "north",
"half": "top",
@@ -256241,7 +262508,7 @@
}
},
{
- "id": 19023,
+ "id": 19492,
"properties": {
"facing": "north",
"half": "top",
@@ -256250,7 +262517,7 @@
}
},
{
- "id": 19024,
+ "id": 19493,
"properties": {
"facing": "north",
"half": "top",
@@ -256259,7 +262526,7 @@
}
},
{
- "id": 19025,
+ "id": 19494,
"properties": {
"facing": "north",
"half": "top",
@@ -256268,7 +262535,7 @@
}
},
{
- "id": 19026,
+ "id": 19495,
"properties": {
"facing": "north",
"half": "top",
@@ -256277,7 +262544,7 @@
}
},
{
- "id": 19027,
+ "id": 19496,
"properties": {
"facing": "north",
"half": "top",
@@ -256286,7 +262553,7 @@
}
},
{
- "id": 19028,
+ "id": 19497,
"properties": {
"facing": "north",
"half": "top",
@@ -256295,7 +262562,7 @@
}
},
{
- "id": 19029,
+ "id": 19498,
"properties": {
"facing": "north",
"half": "top",
@@ -256304,7 +262571,7 @@
}
},
{
- "id": 19030,
+ "id": 19499,
"properties": {
"facing": "north",
"half": "bottom",
@@ -256314,7 +262581,7 @@
},
{
"default": true,
- "id": 19031,
+ "id": 19500,
"properties": {
"facing": "north",
"half": "bottom",
@@ -256323,7 +262590,7 @@
}
},
{
- "id": 19032,
+ "id": 19501,
"properties": {
"facing": "north",
"half": "bottom",
@@ -256332,7 +262599,7 @@
}
},
{
- "id": 19033,
+ "id": 19502,
"properties": {
"facing": "north",
"half": "bottom",
@@ -256341,7 +262608,7 @@
}
},
{
- "id": 19034,
+ "id": 19503,
"properties": {
"facing": "north",
"half": "bottom",
@@ -256350,7 +262617,7 @@
}
},
{
- "id": 19035,
+ "id": 19504,
"properties": {
"facing": "north",
"half": "bottom",
@@ -256359,7 +262626,7 @@
}
},
{
- "id": 19036,
+ "id": 19505,
"properties": {
"facing": "north",
"half": "bottom",
@@ -256368,7 +262635,7 @@
}
},
{
- "id": 19037,
+ "id": 19506,
"properties": {
"facing": "north",
"half": "bottom",
@@ -256377,7 +262644,7 @@
}
},
{
- "id": 19038,
+ "id": 19507,
"properties": {
"facing": "north",
"half": "bottom",
@@ -256386,7 +262653,7 @@
}
},
{
- "id": 19039,
+ "id": 19508,
"properties": {
"facing": "north",
"half": "bottom",
@@ -256395,7 +262662,7 @@
}
},
{
- "id": 19040,
+ "id": 19509,
"properties": {
"facing": "south",
"half": "top",
@@ -256404,7 +262671,7 @@
}
},
{
- "id": 19041,
+ "id": 19510,
"properties": {
"facing": "south",
"half": "top",
@@ -256413,7 +262680,7 @@
}
},
{
- "id": 19042,
+ "id": 19511,
"properties": {
"facing": "south",
"half": "top",
@@ -256422,7 +262689,7 @@
}
},
{
- "id": 19043,
+ "id": 19512,
"properties": {
"facing": "south",
"half": "top",
@@ -256431,7 +262698,7 @@
}
},
{
- "id": 19044,
+ "id": 19513,
"properties": {
"facing": "south",
"half": "top",
@@ -256440,7 +262707,7 @@
}
},
{
- "id": 19045,
+ "id": 19514,
"properties": {
"facing": "south",
"half": "top",
@@ -256449,7 +262716,7 @@
}
},
{
- "id": 19046,
+ "id": 19515,
"properties": {
"facing": "south",
"half": "top",
@@ -256458,7 +262725,7 @@
}
},
{
- "id": 19047,
+ "id": 19516,
"properties": {
"facing": "south",
"half": "top",
@@ -256467,7 +262734,7 @@
}
},
{
- "id": 19048,
+ "id": 19517,
"properties": {
"facing": "south",
"half": "top",
@@ -256476,7 +262743,7 @@
}
},
{
- "id": 19049,
+ "id": 19518,
"properties": {
"facing": "south",
"half": "top",
@@ -256485,7 +262752,7 @@
}
},
{
- "id": 19050,
+ "id": 19519,
"properties": {
"facing": "south",
"half": "bottom",
@@ -256494,7 +262761,7 @@
}
},
{
- "id": 19051,
+ "id": 19520,
"properties": {
"facing": "south",
"half": "bottom",
@@ -256503,7 +262770,7 @@
}
},
{
- "id": 19052,
+ "id": 19521,
"properties": {
"facing": "south",
"half": "bottom",
@@ -256512,7 +262779,7 @@
}
},
{
- "id": 19053,
+ "id": 19522,
"properties": {
"facing": "south",
"half": "bottom",
@@ -256521,7 +262788,7 @@
}
},
{
- "id": 19054,
+ "id": 19523,
"properties": {
"facing": "south",
"half": "bottom",
@@ -256530,7 +262797,7 @@
}
},
{
- "id": 19055,
+ "id": 19524,
"properties": {
"facing": "south",
"half": "bottom",
@@ -256539,7 +262806,7 @@
}
},
{
- "id": 19056,
+ "id": 19525,
"properties": {
"facing": "south",
"half": "bottom",
@@ -256548,7 +262815,7 @@
}
},
{
- "id": 19057,
+ "id": 19526,
"properties": {
"facing": "south",
"half": "bottom",
@@ -256557,7 +262824,7 @@
}
},
{
- "id": 19058,
+ "id": 19527,
"properties": {
"facing": "south",
"half": "bottom",
@@ -256566,7 +262833,7 @@
}
},
{
- "id": 19059,
+ "id": 19528,
"properties": {
"facing": "south",
"half": "bottom",
@@ -256575,7 +262842,7 @@
}
},
{
- "id": 19060,
+ "id": 19529,
"properties": {
"facing": "west",
"half": "top",
@@ -256584,7 +262851,7 @@
}
},
{
- "id": 19061,
+ "id": 19530,
"properties": {
"facing": "west",
"half": "top",
@@ -256593,7 +262860,7 @@
}
},
{
- "id": 19062,
+ "id": 19531,
"properties": {
"facing": "west",
"half": "top",
@@ -256602,7 +262869,7 @@
}
},
{
- "id": 19063,
+ "id": 19532,
"properties": {
"facing": "west",
"half": "top",
@@ -256611,7 +262878,7 @@
}
},
{
- "id": 19064,
+ "id": 19533,
"properties": {
"facing": "west",
"half": "top",
@@ -256620,7 +262887,7 @@
}
},
{
- "id": 19065,
+ "id": 19534,
"properties": {
"facing": "west",
"half": "top",
@@ -256629,7 +262896,7 @@
}
},
{
- "id": 19066,
+ "id": 19535,
"properties": {
"facing": "west",
"half": "top",
@@ -256638,7 +262905,7 @@
}
},
{
- "id": 19067,
+ "id": 19536,
"properties": {
"facing": "west",
"half": "top",
@@ -256647,7 +262914,7 @@
}
},
{
- "id": 19068,
+ "id": 19537,
"properties": {
"facing": "west",
"half": "top",
@@ -256656,7 +262923,7 @@
}
},
{
- "id": 19069,
+ "id": 19538,
"properties": {
"facing": "west",
"half": "top",
@@ -256665,7 +262932,7 @@
}
},
{
- "id": 19070,
+ "id": 19539,
"properties": {
"facing": "west",
"half": "bottom",
@@ -256674,7 +262941,7 @@
}
},
{
- "id": 19071,
+ "id": 19540,
"properties": {
"facing": "west",
"half": "bottom",
@@ -256683,7 +262950,7 @@
}
},
{
- "id": 19072,
+ "id": 19541,
"properties": {
"facing": "west",
"half": "bottom",
@@ -256692,7 +262959,7 @@
}
},
{
- "id": 19073,
+ "id": 19542,
"properties": {
"facing": "west",
"half": "bottom",
@@ -256701,7 +262968,7 @@
}
},
{
- "id": 19074,
+ "id": 19543,
"properties": {
"facing": "west",
"half": "bottom",
@@ -256710,7 +262977,7 @@
}
},
{
- "id": 19075,
+ "id": 19544,
"properties": {
"facing": "west",
"half": "bottom",
@@ -256719,7 +262986,7 @@
}
},
{
- "id": 19076,
+ "id": 19545,
"properties": {
"facing": "west",
"half": "bottom",
@@ -256728,7 +262995,7 @@
}
},
{
- "id": 19077,
+ "id": 19546,
"properties": {
"facing": "west",
"half": "bottom",
@@ -256737,7 +263004,7 @@
}
},
{
- "id": 19078,
+ "id": 19547,
"properties": {
"facing": "west",
"half": "bottom",
@@ -256746,7 +263013,7 @@
}
},
{
- "id": 19079,
+ "id": 19548,
"properties": {
"facing": "west",
"half": "bottom",
@@ -256755,7 +263022,7 @@
}
},
{
- "id": 19080,
+ "id": 19549,
"properties": {
"facing": "east",
"half": "top",
@@ -256764,7 +263031,7 @@
}
},
{
- "id": 19081,
+ "id": 19550,
"properties": {
"facing": "east",
"half": "top",
@@ -256773,7 +263040,7 @@
}
},
{
- "id": 19082,
+ "id": 19551,
"properties": {
"facing": "east",
"half": "top",
@@ -256782,7 +263049,7 @@
}
},
{
- "id": 19083,
+ "id": 19552,
"properties": {
"facing": "east",
"half": "top",
@@ -256791,7 +263058,7 @@
}
},
{
- "id": 19084,
+ "id": 19553,
"properties": {
"facing": "east",
"half": "top",
@@ -256800,7 +263067,7 @@
}
},
{
- "id": 19085,
+ "id": 19554,
"properties": {
"facing": "east",
"half": "top",
@@ -256809,7 +263076,7 @@
}
},
{
- "id": 19086,
+ "id": 19555,
"properties": {
"facing": "east",
"half": "top",
@@ -256818,7 +263085,7 @@
}
},
{
- "id": 19087,
+ "id": 19556,
"properties": {
"facing": "east",
"half": "top",
@@ -256827,7 +263094,7 @@
}
},
{
- "id": 19088,
+ "id": 19557,
"properties": {
"facing": "east",
"half": "top",
@@ -256836,7 +263103,7 @@
}
},
{
- "id": 19089,
+ "id": 19558,
"properties": {
"facing": "east",
"half": "top",
@@ -256845,7 +263112,7 @@
}
},
{
- "id": 19090,
+ "id": 19559,
"properties": {
"facing": "east",
"half": "bottom",
@@ -256854,7 +263121,7 @@
}
},
{
- "id": 19091,
+ "id": 19560,
"properties": {
"facing": "east",
"half": "bottom",
@@ -256863,7 +263130,7 @@
}
},
{
- "id": 19092,
+ "id": 19561,
"properties": {
"facing": "east",
"half": "bottom",
@@ -256872,7 +263139,7 @@
}
},
{
- "id": 19093,
+ "id": 19562,
"properties": {
"facing": "east",
"half": "bottom",
@@ -256881,7 +263148,7 @@
}
},
{
- "id": 19094,
+ "id": 19563,
"properties": {
"facing": "east",
"half": "bottom",
@@ -256890,7 +263157,7 @@
}
},
{
- "id": 19095,
+ "id": 19564,
"properties": {
"facing": "east",
"half": "bottom",
@@ -256899,7 +263166,7 @@
}
},
{
- "id": 19096,
+ "id": 19565,
"properties": {
"facing": "east",
"half": "bottom",
@@ -256908,7 +263175,7 @@
}
},
{
- "id": 19097,
+ "id": 19566,
"properties": {
"facing": "east",
"half": "bottom",
@@ -256917,7 +263184,7 @@
}
},
{
- "id": 19098,
+ "id": 19567,
"properties": {
"facing": "east",
"half": "bottom",
@@ -256926,7 +263193,7 @@
}
},
{
- "id": 19099,
+ "id": 19568,
"properties": {
"facing": "east",
"half": "bottom",
@@ -256950,20 +263217,20 @@
},
"states": [
{
- "id": 18579,
+ "id": 19048,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 18580,
+ "id": 19049,
"properties": {
"axis": "y"
}
},
{
- "id": 18581,
+ "id": 19050,
"properties": {
"axis": "z"
}
@@ -257002,7 +263269,7 @@
},
"states": [
{
- "id": 18812,
+ "id": 19281,
"properties": {
"facing": "north",
"half": "top",
@@ -257012,7 +263279,7 @@
}
},
{
- "id": 18813,
+ "id": 19282,
"properties": {
"facing": "north",
"half": "top",
@@ -257022,7 +263289,7 @@
}
},
{
- "id": 18814,
+ "id": 19283,
"properties": {
"facing": "north",
"half": "top",
@@ -257032,7 +263299,7 @@
}
},
{
- "id": 18815,
+ "id": 19284,
"properties": {
"facing": "north",
"half": "top",
@@ -257042,7 +263309,7 @@
}
},
{
- "id": 18816,
+ "id": 19285,
"properties": {
"facing": "north",
"half": "top",
@@ -257052,7 +263319,7 @@
}
},
{
- "id": 18817,
+ "id": 19286,
"properties": {
"facing": "north",
"half": "top",
@@ -257062,7 +263329,7 @@
}
},
{
- "id": 18818,
+ "id": 19287,
"properties": {
"facing": "north",
"half": "top",
@@ -257072,7 +263339,7 @@
}
},
{
- "id": 18819,
+ "id": 19288,
"properties": {
"facing": "north",
"half": "top",
@@ -257082,7 +263349,7 @@
}
},
{
- "id": 18820,
+ "id": 19289,
"properties": {
"facing": "north",
"half": "bottom",
@@ -257092,7 +263359,7 @@
}
},
{
- "id": 18821,
+ "id": 19290,
"properties": {
"facing": "north",
"half": "bottom",
@@ -257102,7 +263369,7 @@
}
},
{
- "id": 18822,
+ "id": 19291,
"properties": {
"facing": "north",
"half": "bottom",
@@ -257112,7 +263379,7 @@
}
},
{
- "id": 18823,
+ "id": 19292,
"properties": {
"facing": "north",
"half": "bottom",
@@ -257122,7 +263389,7 @@
}
},
{
- "id": 18824,
+ "id": 19293,
"properties": {
"facing": "north",
"half": "bottom",
@@ -257132,7 +263399,7 @@
}
},
{
- "id": 18825,
+ "id": 19294,
"properties": {
"facing": "north",
"half": "bottom",
@@ -257142,7 +263409,7 @@
}
},
{
- "id": 18826,
+ "id": 19295,
"properties": {
"facing": "north",
"half": "bottom",
@@ -257153,7 +263420,7 @@
},
{
"default": true,
- "id": 18827,
+ "id": 19296,
"properties": {
"facing": "north",
"half": "bottom",
@@ -257163,7 +263430,7 @@
}
},
{
- "id": 18828,
+ "id": 19297,
"properties": {
"facing": "south",
"half": "top",
@@ -257173,7 +263440,7 @@
}
},
{
- "id": 18829,
+ "id": 19298,
"properties": {
"facing": "south",
"half": "top",
@@ -257183,7 +263450,7 @@
}
},
{
- "id": 18830,
+ "id": 19299,
"properties": {
"facing": "south",
"half": "top",
@@ -257193,7 +263460,7 @@
}
},
{
- "id": 18831,
+ "id": 19300,
"properties": {
"facing": "south",
"half": "top",
@@ -257203,7 +263470,7 @@
}
},
{
- "id": 18832,
+ "id": 19301,
"properties": {
"facing": "south",
"half": "top",
@@ -257213,7 +263480,7 @@
}
},
{
- "id": 18833,
+ "id": 19302,
"properties": {
"facing": "south",
"half": "top",
@@ -257223,7 +263490,7 @@
}
},
{
- "id": 18834,
+ "id": 19303,
"properties": {
"facing": "south",
"half": "top",
@@ -257233,7 +263500,7 @@
}
},
{
- "id": 18835,
+ "id": 19304,
"properties": {
"facing": "south",
"half": "top",
@@ -257243,7 +263510,7 @@
}
},
{
- "id": 18836,
+ "id": 19305,
"properties": {
"facing": "south",
"half": "bottom",
@@ -257253,7 +263520,7 @@
}
},
{
- "id": 18837,
+ "id": 19306,
"properties": {
"facing": "south",
"half": "bottom",
@@ -257263,7 +263530,7 @@
}
},
{
- "id": 18838,
+ "id": 19307,
"properties": {
"facing": "south",
"half": "bottom",
@@ -257273,7 +263540,7 @@
}
},
{
- "id": 18839,
+ "id": 19308,
"properties": {
"facing": "south",
"half": "bottom",
@@ -257283,7 +263550,7 @@
}
},
{
- "id": 18840,
+ "id": 19309,
"properties": {
"facing": "south",
"half": "bottom",
@@ -257293,7 +263560,7 @@
}
},
{
- "id": 18841,
+ "id": 19310,
"properties": {
"facing": "south",
"half": "bottom",
@@ -257303,7 +263570,7 @@
}
},
{
- "id": 18842,
+ "id": 19311,
"properties": {
"facing": "south",
"half": "bottom",
@@ -257313,7 +263580,7 @@
}
},
{
- "id": 18843,
+ "id": 19312,
"properties": {
"facing": "south",
"half": "bottom",
@@ -257323,7 +263590,7 @@
}
},
{
- "id": 18844,
+ "id": 19313,
"properties": {
"facing": "west",
"half": "top",
@@ -257333,7 +263600,7 @@
}
},
{
- "id": 18845,
+ "id": 19314,
"properties": {
"facing": "west",
"half": "top",
@@ -257343,7 +263610,7 @@
}
},
{
- "id": 18846,
+ "id": 19315,
"properties": {
"facing": "west",
"half": "top",
@@ -257353,7 +263620,7 @@
}
},
{
- "id": 18847,
+ "id": 19316,
"properties": {
"facing": "west",
"half": "top",
@@ -257363,7 +263630,7 @@
}
},
{
- "id": 18848,
+ "id": 19317,
"properties": {
"facing": "west",
"half": "top",
@@ -257373,7 +263640,7 @@
}
},
{
- "id": 18849,
+ "id": 19318,
"properties": {
"facing": "west",
"half": "top",
@@ -257383,7 +263650,7 @@
}
},
{
- "id": 18850,
+ "id": 19319,
"properties": {
"facing": "west",
"half": "top",
@@ -257393,7 +263660,7 @@
}
},
{
- "id": 18851,
+ "id": 19320,
"properties": {
"facing": "west",
"half": "top",
@@ -257403,7 +263670,7 @@
}
},
{
- "id": 18852,
+ "id": 19321,
"properties": {
"facing": "west",
"half": "bottom",
@@ -257413,7 +263680,7 @@
}
},
{
- "id": 18853,
+ "id": 19322,
"properties": {
"facing": "west",
"half": "bottom",
@@ -257423,7 +263690,7 @@
}
},
{
- "id": 18854,
+ "id": 19323,
"properties": {
"facing": "west",
"half": "bottom",
@@ -257433,7 +263700,7 @@
}
},
{
- "id": 18855,
+ "id": 19324,
"properties": {
"facing": "west",
"half": "bottom",
@@ -257443,7 +263710,7 @@
}
},
{
- "id": 18856,
+ "id": 19325,
"properties": {
"facing": "west",
"half": "bottom",
@@ -257453,7 +263720,7 @@
}
},
{
- "id": 18857,
+ "id": 19326,
"properties": {
"facing": "west",
"half": "bottom",
@@ -257463,7 +263730,7 @@
}
},
{
- "id": 18858,
+ "id": 19327,
"properties": {
"facing": "west",
"half": "bottom",
@@ -257473,7 +263740,7 @@
}
},
{
- "id": 18859,
+ "id": 19328,
"properties": {
"facing": "west",
"half": "bottom",
@@ -257483,7 +263750,7 @@
}
},
{
- "id": 18860,
+ "id": 19329,
"properties": {
"facing": "east",
"half": "top",
@@ -257493,7 +263760,7 @@
}
},
{
- "id": 18861,
+ "id": 19330,
"properties": {
"facing": "east",
"half": "top",
@@ -257503,7 +263770,7 @@
}
},
{
- "id": 18862,
+ "id": 19331,
"properties": {
"facing": "east",
"half": "top",
@@ -257513,7 +263780,7 @@
}
},
{
- "id": 18863,
+ "id": 19332,
"properties": {
"facing": "east",
"half": "top",
@@ -257523,7 +263790,7 @@
}
},
{
- "id": 18864,
+ "id": 19333,
"properties": {
"facing": "east",
"half": "top",
@@ -257533,7 +263800,7 @@
}
},
{
- "id": 18865,
+ "id": 19334,
"properties": {
"facing": "east",
"half": "top",
@@ -257543,7 +263810,7 @@
}
},
{
- "id": 18866,
+ "id": 19335,
"properties": {
"facing": "east",
"half": "top",
@@ -257553,7 +263820,7 @@
}
},
{
- "id": 18867,
+ "id": 19336,
"properties": {
"facing": "east",
"half": "top",
@@ -257563,7 +263830,7 @@
}
},
{
- "id": 18868,
+ "id": 19337,
"properties": {
"facing": "east",
"half": "bottom",
@@ -257573,7 +263840,7 @@
}
},
{
- "id": 18869,
+ "id": 19338,
"properties": {
"facing": "east",
"half": "bottom",
@@ -257583,7 +263850,7 @@
}
},
{
- "id": 18870,
+ "id": 19339,
"properties": {
"facing": "east",
"half": "bottom",
@@ -257593,7 +263860,7 @@
}
},
{
- "id": 18871,
+ "id": 19340,
"properties": {
"facing": "east",
"half": "bottom",
@@ -257603,7 +263870,7 @@
}
},
{
- "id": 18872,
+ "id": 19341,
"properties": {
"facing": "east",
"half": "bottom",
@@ -257613,7 +263880,7 @@
}
},
{
- "id": 18873,
+ "id": 19342,
"properties": {
"facing": "east",
"half": "bottom",
@@ -257623,7 +263890,7 @@
}
},
{
- "id": 18874,
+ "id": 19343,
"properties": {
"facing": "east",
"half": "bottom",
@@ -257633,7 +263900,7 @@
}
},
{
- "id": 18875,
+ "id": 19344,
"properties": {
"facing": "east",
"half": "bottom",
@@ -257664,7 +263931,7 @@
},
"states": [
{
- "id": 5610,
+ "id": 5774,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -257672,49 +263939,49 @@
},
{
"default": true,
- "id": 5611,
+ "id": 5775,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 5612,
+ "id": 5776,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 5613,
+ "id": 5777,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 5614,
+ "id": 5778,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 5615,
+ "id": 5779,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 5616,
+ "id": 5780,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 5617,
+ "id": 5781,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -257742,7 +264009,7 @@
},
"states": [
{
- "id": 19348,
+ "id": 19817,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -257750,49 +264017,49 @@
},
{
"default": true,
- "id": 19349,
+ "id": 19818,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 19350,
+ "id": 19819,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 19351,
+ "id": 19820,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 19352,
+ "id": 19821,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 19353,
+ "id": 19822,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 19354,
+ "id": 19823,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 19355,
+ "id": 19824,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -257808,7 +264075,7 @@
"states": [
{
"default": true,
- "id": 18593
+ "id": 19062
}
]
},
@@ -257841,97 +264108,97 @@
"states": [
{
"default": true,
- "id": 80,
+ "id": 86,
"properties": {
"level": "0"
}
},
{
- "id": 81,
+ "id": 87,
"properties": {
"level": "1"
}
},
{
- "id": 82,
+ "id": 88,
"properties": {
"level": "2"
}
},
{
- "id": 83,
+ "id": 89,
"properties": {
"level": "3"
}
},
{
- "id": 84,
+ "id": 90,
"properties": {
"level": "4"
}
},
{
- "id": 85,
+ "id": 91,
"properties": {
"level": "5"
}
},
{
- "id": 86,
+ "id": 92,
"properties": {
"level": "6"
}
},
{
- "id": 87,
+ "id": 93,
"properties": {
"level": "7"
}
},
{
- "id": 88,
+ "id": 94,
"properties": {
"level": "8"
}
},
{
- "id": 89,
+ "id": 95,
"properties": {
"level": "9"
}
},
{
- "id": 90,
+ "id": 96,
"properties": {
"level": "10"
}
},
{
- "id": 91,
+ "id": 97,
"properties": {
"level": "11"
}
},
{
- "id": 92,
+ "id": 98,
"properties": {
"level": "12"
}
},
{
- "id": 93,
+ "id": 99,
"properties": {
"level": "13"
}
},
{
- "id": 94,
+ "id": 100,
"properties": {
"level": "14"
}
},
{
- "id": 95,
+ "id": 101,
"properties": {
"level": "15"
}
@@ -257955,19 +264222,19 @@
"states": [
{
"default": true,
- "id": 7399,
+ "id": 7629,
"properties": {
"level": "1"
}
},
{
- "id": 7400,
+ "id": 7630,
"properties": {
"level": "2"
}
},
{
- "id": 7401,
+ "id": 7631,
"properties": {
"level": "3"
}
@@ -257982,7 +264249,7 @@
"states": [
{
"default": true,
- "id": 22955
+ "id": 23424
}
]
},
@@ -257994,7 +264261,7 @@
"states": [
{
"default": true,
- "id": 23300
+ "id": 23769
}
]
},
@@ -258015,21 +264282,21 @@
},
"states": [
{
- "id": 24708,
+ "id": 25177,
"properties": {
"lit": "true",
"powered": "true"
}
},
{
- "id": 24709,
+ "id": 25178,
"properties": {
"lit": "true",
"powered": "false"
}
},
{
- "id": 24710,
+ "id": 25179,
"properties": {
"lit": "false",
"powered": "true"
@@ -258037,7 +264304,7 @@
},
{
"default": true,
- "id": 24711,
+ "id": 25180,
"properties": {
"lit": "false",
"powered": "false"
@@ -258077,7 +264344,7 @@
},
"states": [
{
- "id": 23908,
+ "id": 24377,
"properties": {
"facing": "north",
"half": "upper",
@@ -258087,7 +264354,7 @@
}
},
{
- "id": 23909,
+ "id": 24378,
"properties": {
"facing": "north",
"half": "upper",
@@ -258097,7 +264364,7 @@
}
},
{
- "id": 23910,
+ "id": 24379,
"properties": {
"facing": "north",
"half": "upper",
@@ -258107,7 +264374,7 @@
}
},
{
- "id": 23911,
+ "id": 24380,
"properties": {
"facing": "north",
"half": "upper",
@@ -258117,7 +264384,7 @@
}
},
{
- "id": 23912,
+ "id": 24381,
"properties": {
"facing": "north",
"half": "upper",
@@ -258127,7 +264394,7 @@
}
},
{
- "id": 23913,
+ "id": 24382,
"properties": {
"facing": "north",
"half": "upper",
@@ -258137,7 +264404,7 @@
}
},
{
- "id": 23914,
+ "id": 24383,
"properties": {
"facing": "north",
"half": "upper",
@@ -258147,7 +264414,7 @@
}
},
{
- "id": 23915,
+ "id": 24384,
"properties": {
"facing": "north",
"half": "upper",
@@ -258157,7 +264424,7 @@
}
},
{
- "id": 23916,
+ "id": 24385,
"properties": {
"facing": "north",
"half": "lower",
@@ -258167,7 +264434,7 @@
}
},
{
- "id": 23917,
+ "id": 24386,
"properties": {
"facing": "north",
"half": "lower",
@@ -258177,7 +264444,7 @@
}
},
{
- "id": 23918,
+ "id": 24387,
"properties": {
"facing": "north",
"half": "lower",
@@ -258188,7 +264455,7 @@
},
{
"default": true,
- "id": 23919,
+ "id": 24388,
"properties": {
"facing": "north",
"half": "lower",
@@ -258198,7 +264465,7 @@
}
},
{
- "id": 23920,
+ "id": 24389,
"properties": {
"facing": "north",
"half": "lower",
@@ -258208,7 +264475,7 @@
}
},
{
- "id": 23921,
+ "id": 24390,
"properties": {
"facing": "north",
"half": "lower",
@@ -258218,7 +264485,7 @@
}
},
{
- "id": 23922,
+ "id": 24391,
"properties": {
"facing": "north",
"half": "lower",
@@ -258228,7 +264495,7 @@
}
},
{
- "id": 23923,
+ "id": 24392,
"properties": {
"facing": "north",
"half": "lower",
@@ -258238,7 +264505,7 @@
}
},
{
- "id": 23924,
+ "id": 24393,
"properties": {
"facing": "south",
"half": "upper",
@@ -258248,7 +264515,7 @@
}
},
{
- "id": 23925,
+ "id": 24394,
"properties": {
"facing": "south",
"half": "upper",
@@ -258258,7 +264525,7 @@
}
},
{
- "id": 23926,
+ "id": 24395,
"properties": {
"facing": "south",
"half": "upper",
@@ -258268,7 +264535,7 @@
}
},
{
- "id": 23927,
+ "id": 24396,
"properties": {
"facing": "south",
"half": "upper",
@@ -258278,7 +264545,7 @@
}
},
{
- "id": 23928,
+ "id": 24397,
"properties": {
"facing": "south",
"half": "upper",
@@ -258288,7 +264555,7 @@
}
},
{
- "id": 23929,
+ "id": 24398,
"properties": {
"facing": "south",
"half": "upper",
@@ -258298,7 +264565,7 @@
}
},
{
- "id": 23930,
+ "id": 24399,
"properties": {
"facing": "south",
"half": "upper",
@@ -258308,7 +264575,7 @@
}
},
{
- "id": 23931,
+ "id": 24400,
"properties": {
"facing": "south",
"half": "upper",
@@ -258318,7 +264585,7 @@
}
},
{
- "id": 23932,
+ "id": 24401,
"properties": {
"facing": "south",
"half": "lower",
@@ -258328,7 +264595,7 @@
}
},
{
- "id": 23933,
+ "id": 24402,
"properties": {
"facing": "south",
"half": "lower",
@@ -258338,7 +264605,7 @@
}
},
{
- "id": 23934,
+ "id": 24403,
"properties": {
"facing": "south",
"half": "lower",
@@ -258348,7 +264615,7 @@
}
},
{
- "id": 23935,
+ "id": 24404,
"properties": {
"facing": "south",
"half": "lower",
@@ -258358,7 +264625,7 @@
}
},
{
- "id": 23936,
+ "id": 24405,
"properties": {
"facing": "south",
"half": "lower",
@@ -258368,7 +264635,7 @@
}
},
{
- "id": 23937,
+ "id": 24406,
"properties": {
"facing": "south",
"half": "lower",
@@ -258378,7 +264645,7 @@
}
},
{
- "id": 23938,
+ "id": 24407,
"properties": {
"facing": "south",
"half": "lower",
@@ -258388,7 +264655,7 @@
}
},
{
- "id": 23939,
+ "id": 24408,
"properties": {
"facing": "south",
"half": "lower",
@@ -258398,7 +264665,7 @@
}
},
{
- "id": 23940,
+ "id": 24409,
"properties": {
"facing": "west",
"half": "upper",
@@ -258408,7 +264675,7 @@
}
},
{
- "id": 23941,
+ "id": 24410,
"properties": {
"facing": "west",
"half": "upper",
@@ -258418,7 +264685,7 @@
}
},
{
- "id": 23942,
+ "id": 24411,
"properties": {
"facing": "west",
"half": "upper",
@@ -258428,7 +264695,7 @@
}
},
{
- "id": 23943,
+ "id": 24412,
"properties": {
"facing": "west",
"half": "upper",
@@ -258438,7 +264705,7 @@
}
},
{
- "id": 23944,
+ "id": 24413,
"properties": {
"facing": "west",
"half": "upper",
@@ -258448,7 +264715,7 @@
}
},
{
- "id": 23945,
+ "id": 24414,
"properties": {
"facing": "west",
"half": "upper",
@@ -258458,7 +264725,7 @@
}
},
{
- "id": 23946,
+ "id": 24415,
"properties": {
"facing": "west",
"half": "upper",
@@ -258468,7 +264735,7 @@
}
},
{
- "id": 23947,
+ "id": 24416,
"properties": {
"facing": "west",
"half": "upper",
@@ -258478,7 +264745,7 @@
}
},
{
- "id": 23948,
+ "id": 24417,
"properties": {
"facing": "west",
"half": "lower",
@@ -258488,7 +264755,7 @@
}
},
{
- "id": 23949,
+ "id": 24418,
"properties": {
"facing": "west",
"half": "lower",
@@ -258498,7 +264765,7 @@
}
},
{
- "id": 23950,
+ "id": 24419,
"properties": {
"facing": "west",
"half": "lower",
@@ -258508,7 +264775,7 @@
}
},
{
- "id": 23951,
+ "id": 24420,
"properties": {
"facing": "west",
"half": "lower",
@@ -258518,7 +264785,7 @@
}
},
{
- "id": 23952,
+ "id": 24421,
"properties": {
"facing": "west",
"half": "lower",
@@ -258528,7 +264795,7 @@
}
},
{
- "id": 23953,
+ "id": 24422,
"properties": {
"facing": "west",
"half": "lower",
@@ -258538,7 +264805,7 @@
}
},
{
- "id": 23954,
+ "id": 24423,
"properties": {
"facing": "west",
"half": "lower",
@@ -258548,7 +264815,7 @@
}
},
{
- "id": 23955,
+ "id": 24424,
"properties": {
"facing": "west",
"half": "lower",
@@ -258558,7 +264825,7 @@
}
},
{
- "id": 23956,
+ "id": 24425,
"properties": {
"facing": "east",
"half": "upper",
@@ -258568,7 +264835,7 @@
}
},
{
- "id": 23957,
+ "id": 24426,
"properties": {
"facing": "east",
"half": "upper",
@@ -258578,7 +264845,7 @@
}
},
{
- "id": 23958,
+ "id": 24427,
"properties": {
"facing": "east",
"half": "upper",
@@ -258588,7 +264855,7 @@
}
},
{
- "id": 23959,
+ "id": 24428,
"properties": {
"facing": "east",
"half": "upper",
@@ -258598,7 +264865,7 @@
}
},
{
- "id": 23960,
+ "id": 24429,
"properties": {
"facing": "east",
"half": "upper",
@@ -258608,7 +264875,7 @@
}
},
{
- "id": 23961,
+ "id": 24430,
"properties": {
"facing": "east",
"half": "upper",
@@ -258618,7 +264885,7 @@
}
},
{
- "id": 23962,
+ "id": 24431,
"properties": {
"facing": "east",
"half": "upper",
@@ -258628,7 +264895,7 @@
}
},
{
- "id": 23963,
+ "id": 24432,
"properties": {
"facing": "east",
"half": "upper",
@@ -258638,7 +264905,7 @@
}
},
{
- "id": 23964,
+ "id": 24433,
"properties": {
"facing": "east",
"half": "lower",
@@ -258648,7 +264915,7 @@
}
},
{
- "id": 23965,
+ "id": 24434,
"properties": {
"facing": "east",
"half": "lower",
@@ -258658,7 +264925,7 @@
}
},
{
- "id": 23966,
+ "id": 24435,
"properties": {
"facing": "east",
"half": "lower",
@@ -258668,7 +264935,7 @@
}
},
{
- "id": 23967,
+ "id": 24436,
"properties": {
"facing": "east",
"half": "lower",
@@ -258678,7 +264945,7 @@
}
},
{
- "id": 23968,
+ "id": 24437,
"properties": {
"facing": "east",
"half": "lower",
@@ -258688,7 +264955,7 @@
}
},
{
- "id": 23969,
+ "id": 24438,
"properties": {
"facing": "east",
"half": "lower",
@@ -258698,7 +264965,7 @@
}
},
{
- "id": 23970,
+ "id": 24439,
"properties": {
"facing": "east",
"half": "lower",
@@ -258708,7 +264975,7 @@
}
},
{
- "id": 23971,
+ "id": 24440,
"properties": {
"facing": "east",
"half": "lower",
@@ -258732,14 +264999,14 @@
},
"states": [
{
- "id": 24684,
+ "id": 25153,
"properties": {
"waterlogged": "true"
}
},
{
"default": true,
- "id": 24685,
+ "id": 25154,
"properties": {
"waterlogged": "false"
}
@@ -258778,7 +265045,7 @@
},
"states": [
{
- "id": 24420,
+ "id": 24889,
"properties": {
"facing": "north",
"half": "top",
@@ -258788,7 +265055,7 @@
}
},
{
- "id": 24421,
+ "id": 24890,
"properties": {
"facing": "north",
"half": "top",
@@ -258798,7 +265065,7 @@
}
},
{
- "id": 24422,
+ "id": 24891,
"properties": {
"facing": "north",
"half": "top",
@@ -258808,7 +265075,7 @@
}
},
{
- "id": 24423,
+ "id": 24892,
"properties": {
"facing": "north",
"half": "top",
@@ -258818,7 +265085,7 @@
}
},
{
- "id": 24424,
+ "id": 24893,
"properties": {
"facing": "north",
"half": "top",
@@ -258828,7 +265095,7 @@
}
},
{
- "id": 24425,
+ "id": 24894,
"properties": {
"facing": "north",
"half": "top",
@@ -258838,7 +265105,7 @@
}
},
{
- "id": 24426,
+ "id": 24895,
"properties": {
"facing": "north",
"half": "top",
@@ -258848,7 +265115,7 @@
}
},
{
- "id": 24427,
+ "id": 24896,
"properties": {
"facing": "north",
"half": "top",
@@ -258858,7 +265125,7 @@
}
},
{
- "id": 24428,
+ "id": 24897,
"properties": {
"facing": "north",
"half": "bottom",
@@ -258868,7 +265135,7 @@
}
},
{
- "id": 24429,
+ "id": 24898,
"properties": {
"facing": "north",
"half": "bottom",
@@ -258878,7 +265145,7 @@
}
},
{
- "id": 24430,
+ "id": 24899,
"properties": {
"facing": "north",
"half": "bottom",
@@ -258888,7 +265155,7 @@
}
},
{
- "id": 24431,
+ "id": 24900,
"properties": {
"facing": "north",
"half": "bottom",
@@ -258898,7 +265165,7 @@
}
},
{
- "id": 24432,
+ "id": 24901,
"properties": {
"facing": "north",
"half": "bottom",
@@ -258908,7 +265175,7 @@
}
},
{
- "id": 24433,
+ "id": 24902,
"properties": {
"facing": "north",
"half": "bottom",
@@ -258918,7 +265185,7 @@
}
},
{
- "id": 24434,
+ "id": 24903,
"properties": {
"facing": "north",
"half": "bottom",
@@ -258929,7 +265196,7 @@
},
{
"default": true,
- "id": 24435,
+ "id": 24904,
"properties": {
"facing": "north",
"half": "bottom",
@@ -258939,7 +265206,7 @@
}
},
{
- "id": 24436,
+ "id": 24905,
"properties": {
"facing": "south",
"half": "top",
@@ -258949,7 +265216,7 @@
}
},
{
- "id": 24437,
+ "id": 24906,
"properties": {
"facing": "south",
"half": "top",
@@ -258959,7 +265226,7 @@
}
},
{
- "id": 24438,
+ "id": 24907,
"properties": {
"facing": "south",
"half": "top",
@@ -258969,7 +265236,7 @@
}
},
{
- "id": 24439,
+ "id": 24908,
"properties": {
"facing": "south",
"half": "top",
@@ -258979,7 +265246,7 @@
}
},
{
- "id": 24440,
+ "id": 24909,
"properties": {
"facing": "south",
"half": "top",
@@ -258989,7 +265256,7 @@
}
},
{
- "id": 24441,
+ "id": 24910,
"properties": {
"facing": "south",
"half": "top",
@@ -258999,7 +265266,7 @@
}
},
{
- "id": 24442,
+ "id": 24911,
"properties": {
"facing": "south",
"half": "top",
@@ -259009,7 +265276,7 @@
}
},
{
- "id": 24443,
+ "id": 24912,
"properties": {
"facing": "south",
"half": "top",
@@ -259019,7 +265286,7 @@
}
},
{
- "id": 24444,
+ "id": 24913,
"properties": {
"facing": "south",
"half": "bottom",
@@ -259029,7 +265296,7 @@
}
},
{
- "id": 24445,
+ "id": 24914,
"properties": {
"facing": "south",
"half": "bottom",
@@ -259039,7 +265306,7 @@
}
},
{
- "id": 24446,
+ "id": 24915,
"properties": {
"facing": "south",
"half": "bottom",
@@ -259049,7 +265316,7 @@
}
},
{
- "id": 24447,
+ "id": 24916,
"properties": {
"facing": "south",
"half": "bottom",
@@ -259059,7 +265326,7 @@
}
},
{
- "id": 24448,
+ "id": 24917,
"properties": {
"facing": "south",
"half": "bottom",
@@ -259069,7 +265336,7 @@
}
},
{
- "id": 24449,
+ "id": 24918,
"properties": {
"facing": "south",
"half": "bottom",
@@ -259079,7 +265346,7 @@
}
},
{
- "id": 24450,
+ "id": 24919,
"properties": {
"facing": "south",
"half": "bottom",
@@ -259089,7 +265356,7 @@
}
},
{
- "id": 24451,
+ "id": 24920,
"properties": {
"facing": "south",
"half": "bottom",
@@ -259099,7 +265366,7 @@
}
},
{
- "id": 24452,
+ "id": 24921,
"properties": {
"facing": "west",
"half": "top",
@@ -259109,7 +265376,7 @@
}
},
{
- "id": 24453,
+ "id": 24922,
"properties": {
"facing": "west",
"half": "top",
@@ -259119,7 +265386,7 @@
}
},
{
- "id": 24454,
+ "id": 24923,
"properties": {
"facing": "west",
"half": "top",
@@ -259129,7 +265396,7 @@
}
},
{
- "id": 24455,
+ "id": 24924,
"properties": {
"facing": "west",
"half": "top",
@@ -259139,7 +265406,7 @@
}
},
{
- "id": 24456,
+ "id": 24925,
"properties": {
"facing": "west",
"half": "top",
@@ -259149,7 +265416,7 @@
}
},
{
- "id": 24457,
+ "id": 24926,
"properties": {
"facing": "west",
"half": "top",
@@ -259159,7 +265426,7 @@
}
},
{
- "id": 24458,
+ "id": 24927,
"properties": {
"facing": "west",
"half": "top",
@@ -259169,7 +265436,7 @@
}
},
{
- "id": 24459,
+ "id": 24928,
"properties": {
"facing": "west",
"half": "top",
@@ -259179,7 +265446,7 @@
}
},
{
- "id": 24460,
+ "id": 24929,
"properties": {
"facing": "west",
"half": "bottom",
@@ -259189,7 +265456,7 @@
}
},
{
- "id": 24461,
+ "id": 24930,
"properties": {
"facing": "west",
"half": "bottom",
@@ -259199,7 +265466,7 @@
}
},
{
- "id": 24462,
+ "id": 24931,
"properties": {
"facing": "west",
"half": "bottom",
@@ -259209,7 +265476,7 @@
}
},
{
- "id": 24463,
+ "id": 24932,
"properties": {
"facing": "west",
"half": "bottom",
@@ -259219,7 +265486,7 @@
}
},
{
- "id": 24464,
+ "id": 24933,
"properties": {
"facing": "west",
"half": "bottom",
@@ -259229,7 +265496,7 @@
}
},
{
- "id": 24465,
+ "id": 24934,
"properties": {
"facing": "west",
"half": "bottom",
@@ -259239,7 +265506,7 @@
}
},
{
- "id": 24466,
+ "id": 24935,
"properties": {
"facing": "west",
"half": "bottom",
@@ -259249,7 +265516,7 @@
}
},
{
- "id": 24467,
+ "id": 24936,
"properties": {
"facing": "west",
"half": "bottom",
@@ -259259,7 +265526,7 @@
}
},
{
- "id": 24468,
+ "id": 24937,
"properties": {
"facing": "east",
"half": "top",
@@ -259269,7 +265536,7 @@
}
},
{
- "id": 24469,
+ "id": 24938,
"properties": {
"facing": "east",
"half": "top",
@@ -259279,7 +265546,7 @@
}
},
{
- "id": 24470,
+ "id": 24939,
"properties": {
"facing": "east",
"half": "top",
@@ -259289,7 +265556,7 @@
}
},
{
- "id": 24471,
+ "id": 24940,
"properties": {
"facing": "east",
"half": "top",
@@ -259299,7 +265566,7 @@
}
},
{
- "id": 24472,
+ "id": 24941,
"properties": {
"facing": "east",
"half": "top",
@@ -259309,7 +265576,7 @@
}
},
{
- "id": 24473,
+ "id": 24942,
"properties": {
"facing": "east",
"half": "top",
@@ -259319,7 +265586,7 @@
}
},
{
- "id": 24474,
+ "id": 24943,
"properties": {
"facing": "east",
"half": "top",
@@ -259329,7 +265596,7 @@
}
},
{
- "id": 24475,
+ "id": 24944,
"properties": {
"facing": "east",
"half": "top",
@@ -259339,7 +265606,7 @@
}
},
{
- "id": 24476,
+ "id": 24945,
"properties": {
"facing": "east",
"half": "bottom",
@@ -259349,7 +265616,7 @@
}
},
{
- "id": 24477,
+ "id": 24946,
"properties": {
"facing": "east",
"half": "bottom",
@@ -259359,7 +265626,7 @@
}
},
{
- "id": 24478,
+ "id": 24947,
"properties": {
"facing": "east",
"half": "bottom",
@@ -259369,7 +265636,7 @@
}
},
{
- "id": 24479,
+ "id": 24948,
"properties": {
"facing": "east",
"half": "bottom",
@@ -259379,7 +265646,7 @@
}
},
{
- "id": 24480,
+ "id": 24949,
"properties": {
"facing": "east",
"half": "bottom",
@@ -259389,7 +265656,7 @@
}
},
{
- "id": 24481,
+ "id": 24950,
"properties": {
"facing": "east",
"half": "bottom",
@@ -259399,7 +265666,7 @@
}
},
{
- "id": 24482,
+ "id": 24951,
"properties": {
"facing": "east",
"half": "bottom",
@@ -259409,7 +265676,7 @@
}
},
{
- "id": 24483,
+ "id": 24952,
"properties": {
"facing": "east",
"half": "bottom",
@@ -259428,7 +265695,7 @@
"states": [
{
"default": true,
- "id": 23307
+ "id": 23776
}
]
},
@@ -259450,21 +265717,21 @@
},
"states": [
{
- "id": 23646,
+ "id": 24115,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 23647,
+ "id": 24116,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 23648,
+ "id": 24117,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -259472,21 +265739,21 @@
},
{
"default": true,
- "id": 23649,
+ "id": 24118,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 23650,
+ "id": 24119,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 23651,
+ "id": 24120,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -259527,7 +265794,7 @@
},
"states": [
{
- "id": 23548,
+ "id": 24017,
"properties": {
"facing": "north",
"half": "top",
@@ -259536,7 +265803,7 @@
}
},
{
- "id": 23549,
+ "id": 24018,
"properties": {
"facing": "north",
"half": "top",
@@ -259545,7 +265812,7 @@
}
},
{
- "id": 23550,
+ "id": 24019,
"properties": {
"facing": "north",
"half": "top",
@@ -259554,7 +265821,7 @@
}
},
{
- "id": 23551,
+ "id": 24020,
"properties": {
"facing": "north",
"half": "top",
@@ -259563,7 +265830,7 @@
}
},
{
- "id": 23552,
+ "id": 24021,
"properties": {
"facing": "north",
"half": "top",
@@ -259572,7 +265839,7 @@
}
},
{
- "id": 23553,
+ "id": 24022,
"properties": {
"facing": "north",
"half": "top",
@@ -259581,7 +265848,7 @@
}
},
{
- "id": 23554,
+ "id": 24023,
"properties": {
"facing": "north",
"half": "top",
@@ -259590,7 +265857,7 @@
}
},
{
- "id": 23555,
+ "id": 24024,
"properties": {
"facing": "north",
"half": "top",
@@ -259599,7 +265866,7 @@
}
},
{
- "id": 23556,
+ "id": 24025,
"properties": {
"facing": "north",
"half": "top",
@@ -259608,7 +265875,7 @@
}
},
{
- "id": 23557,
+ "id": 24026,
"properties": {
"facing": "north",
"half": "top",
@@ -259617,7 +265884,7 @@
}
},
{
- "id": 23558,
+ "id": 24027,
"properties": {
"facing": "north",
"half": "bottom",
@@ -259627,7 +265894,7 @@
},
{
"default": true,
- "id": 23559,
+ "id": 24028,
"properties": {
"facing": "north",
"half": "bottom",
@@ -259636,7 +265903,7 @@
}
},
{
- "id": 23560,
+ "id": 24029,
"properties": {
"facing": "north",
"half": "bottom",
@@ -259645,7 +265912,7 @@
}
},
{
- "id": 23561,
+ "id": 24030,
"properties": {
"facing": "north",
"half": "bottom",
@@ -259654,7 +265921,7 @@
}
},
{
- "id": 23562,
+ "id": 24031,
"properties": {
"facing": "north",
"half": "bottom",
@@ -259663,7 +265930,7 @@
}
},
{
- "id": 23563,
+ "id": 24032,
"properties": {
"facing": "north",
"half": "bottom",
@@ -259672,7 +265939,7 @@
}
},
{
- "id": 23564,
+ "id": 24033,
"properties": {
"facing": "north",
"half": "bottom",
@@ -259681,7 +265948,7 @@
}
},
{
- "id": 23565,
+ "id": 24034,
"properties": {
"facing": "north",
"half": "bottom",
@@ -259690,7 +265957,7 @@
}
},
{
- "id": 23566,
+ "id": 24035,
"properties": {
"facing": "north",
"half": "bottom",
@@ -259699,7 +265966,7 @@
}
},
{
- "id": 23567,
+ "id": 24036,
"properties": {
"facing": "north",
"half": "bottom",
@@ -259708,7 +265975,7 @@
}
},
{
- "id": 23568,
+ "id": 24037,
"properties": {
"facing": "south",
"half": "top",
@@ -259717,7 +265984,7 @@
}
},
{
- "id": 23569,
+ "id": 24038,
"properties": {
"facing": "south",
"half": "top",
@@ -259726,7 +265993,7 @@
}
},
{
- "id": 23570,
+ "id": 24039,
"properties": {
"facing": "south",
"half": "top",
@@ -259735,7 +266002,7 @@
}
},
{
- "id": 23571,
+ "id": 24040,
"properties": {
"facing": "south",
"half": "top",
@@ -259744,7 +266011,7 @@
}
},
{
- "id": 23572,
+ "id": 24041,
"properties": {
"facing": "south",
"half": "top",
@@ -259753,7 +266020,7 @@
}
},
{
- "id": 23573,
+ "id": 24042,
"properties": {
"facing": "south",
"half": "top",
@@ -259762,7 +266029,7 @@
}
},
{
- "id": 23574,
+ "id": 24043,
"properties": {
"facing": "south",
"half": "top",
@@ -259771,7 +266038,7 @@
}
},
{
- "id": 23575,
+ "id": 24044,
"properties": {
"facing": "south",
"half": "top",
@@ -259780,7 +266047,7 @@
}
},
{
- "id": 23576,
+ "id": 24045,
"properties": {
"facing": "south",
"half": "top",
@@ -259789,7 +266056,7 @@
}
},
{
- "id": 23577,
+ "id": 24046,
"properties": {
"facing": "south",
"half": "top",
@@ -259798,7 +266065,7 @@
}
},
{
- "id": 23578,
+ "id": 24047,
"properties": {
"facing": "south",
"half": "bottom",
@@ -259807,7 +266074,7 @@
}
},
{
- "id": 23579,
+ "id": 24048,
"properties": {
"facing": "south",
"half": "bottom",
@@ -259816,7 +266083,7 @@
}
},
{
- "id": 23580,
+ "id": 24049,
"properties": {
"facing": "south",
"half": "bottom",
@@ -259825,7 +266092,7 @@
}
},
{
- "id": 23581,
+ "id": 24050,
"properties": {
"facing": "south",
"half": "bottom",
@@ -259834,7 +266101,7 @@
}
},
{
- "id": 23582,
+ "id": 24051,
"properties": {
"facing": "south",
"half": "bottom",
@@ -259843,7 +266110,7 @@
}
},
{
- "id": 23583,
+ "id": 24052,
"properties": {
"facing": "south",
"half": "bottom",
@@ -259852,7 +266119,7 @@
}
},
{
- "id": 23584,
+ "id": 24053,
"properties": {
"facing": "south",
"half": "bottom",
@@ -259861,7 +266128,7 @@
}
},
{
- "id": 23585,
+ "id": 24054,
"properties": {
"facing": "south",
"half": "bottom",
@@ -259870,7 +266137,7 @@
}
},
{
- "id": 23586,
+ "id": 24055,
"properties": {
"facing": "south",
"half": "bottom",
@@ -259879,7 +266146,7 @@
}
},
{
- "id": 23587,
+ "id": 24056,
"properties": {
"facing": "south",
"half": "bottom",
@@ -259888,7 +266155,7 @@
}
},
{
- "id": 23588,
+ "id": 24057,
"properties": {
"facing": "west",
"half": "top",
@@ -259897,7 +266164,7 @@
}
},
{
- "id": 23589,
+ "id": 24058,
"properties": {
"facing": "west",
"half": "top",
@@ -259906,7 +266173,7 @@
}
},
{
- "id": 23590,
+ "id": 24059,
"properties": {
"facing": "west",
"half": "top",
@@ -259915,7 +266182,7 @@
}
},
{
- "id": 23591,
+ "id": 24060,
"properties": {
"facing": "west",
"half": "top",
@@ -259924,7 +266191,7 @@
}
},
{
- "id": 23592,
+ "id": 24061,
"properties": {
"facing": "west",
"half": "top",
@@ -259933,7 +266200,7 @@
}
},
{
- "id": 23593,
+ "id": 24062,
"properties": {
"facing": "west",
"half": "top",
@@ -259942,7 +266209,7 @@
}
},
{
- "id": 23594,
+ "id": 24063,
"properties": {
"facing": "west",
"half": "top",
@@ -259951,7 +266218,7 @@
}
},
{
- "id": 23595,
+ "id": 24064,
"properties": {
"facing": "west",
"half": "top",
@@ -259960,7 +266227,7 @@
}
},
{
- "id": 23596,
+ "id": 24065,
"properties": {
"facing": "west",
"half": "top",
@@ -259969,7 +266236,7 @@
}
},
{
- "id": 23597,
+ "id": 24066,
"properties": {
"facing": "west",
"half": "top",
@@ -259978,7 +266245,7 @@
}
},
{
- "id": 23598,
+ "id": 24067,
"properties": {
"facing": "west",
"half": "bottom",
@@ -259987,7 +266254,7 @@
}
},
{
- "id": 23599,
+ "id": 24068,
"properties": {
"facing": "west",
"half": "bottom",
@@ -259996,7 +266263,7 @@
}
},
{
- "id": 23600,
+ "id": 24069,
"properties": {
"facing": "west",
"half": "bottom",
@@ -260005,7 +266272,7 @@
}
},
{
- "id": 23601,
+ "id": 24070,
"properties": {
"facing": "west",
"half": "bottom",
@@ -260014,7 +266281,7 @@
}
},
{
- "id": 23602,
+ "id": 24071,
"properties": {
"facing": "west",
"half": "bottom",
@@ -260023,7 +266290,7 @@
}
},
{
- "id": 23603,
+ "id": 24072,
"properties": {
"facing": "west",
"half": "bottom",
@@ -260032,7 +266299,7 @@
}
},
{
- "id": 23604,
+ "id": 24073,
"properties": {
"facing": "west",
"half": "bottom",
@@ -260041,7 +266308,7 @@
}
},
{
- "id": 23605,
+ "id": 24074,
"properties": {
"facing": "west",
"half": "bottom",
@@ -260050,7 +266317,7 @@
}
},
{
- "id": 23606,
+ "id": 24075,
"properties": {
"facing": "west",
"half": "bottom",
@@ -260059,7 +266326,7 @@
}
},
{
- "id": 23607,
+ "id": 24076,
"properties": {
"facing": "west",
"half": "bottom",
@@ -260068,7 +266335,7 @@
}
},
{
- "id": 23608,
+ "id": 24077,
"properties": {
"facing": "east",
"half": "top",
@@ -260077,7 +266344,7 @@
}
},
{
- "id": 23609,
+ "id": 24078,
"properties": {
"facing": "east",
"half": "top",
@@ -260086,7 +266353,7 @@
}
},
{
- "id": 23610,
+ "id": 24079,
"properties": {
"facing": "east",
"half": "top",
@@ -260095,7 +266362,7 @@
}
},
{
- "id": 23611,
+ "id": 24080,
"properties": {
"facing": "east",
"half": "top",
@@ -260104,7 +266371,7 @@
}
},
{
- "id": 23612,
+ "id": 24081,
"properties": {
"facing": "east",
"half": "top",
@@ -260113,7 +266380,7 @@
}
},
{
- "id": 23613,
+ "id": 24082,
"properties": {
"facing": "east",
"half": "top",
@@ -260122,7 +266389,7 @@
}
},
{
- "id": 23614,
+ "id": 24083,
"properties": {
"facing": "east",
"half": "top",
@@ -260131,7 +266398,7 @@
}
},
{
- "id": 23615,
+ "id": 24084,
"properties": {
"facing": "east",
"half": "top",
@@ -260140,7 +266407,7 @@
}
},
{
- "id": 23616,
+ "id": 24085,
"properties": {
"facing": "east",
"half": "top",
@@ -260149,7 +266416,7 @@
}
},
{
- "id": 23617,
+ "id": 24086,
"properties": {
"facing": "east",
"half": "top",
@@ -260158,7 +266425,7 @@
}
},
{
- "id": 23618,
+ "id": 24087,
"properties": {
"facing": "east",
"half": "bottom",
@@ -260167,7 +266434,7 @@
}
},
{
- "id": 23619,
+ "id": 24088,
"properties": {
"facing": "east",
"half": "bottom",
@@ -260176,7 +266443,7 @@
}
},
{
- "id": 23620,
+ "id": 24089,
"properties": {
"facing": "east",
"half": "bottom",
@@ -260185,7 +266452,7 @@
}
},
{
- "id": 23621,
+ "id": 24090,
"properties": {
"facing": "east",
"half": "bottom",
@@ -260194,7 +266461,7 @@
}
},
{
- "id": 23622,
+ "id": 24091,
"properties": {
"facing": "east",
"half": "bottom",
@@ -260203,7 +266470,7 @@
}
},
{
- "id": 23623,
+ "id": 24092,
"properties": {
"facing": "east",
"half": "bottom",
@@ -260212,7 +266479,7 @@
}
},
{
- "id": 23624,
+ "id": 24093,
"properties": {
"facing": "east",
"half": "bottom",
@@ -260221,7 +266488,7 @@
}
},
{
- "id": 23625,
+ "id": 24094,
"properties": {
"facing": "east",
"half": "bottom",
@@ -260230,7 +266497,7 @@
}
},
{
- "id": 23626,
+ "id": 24095,
"properties": {
"facing": "east",
"half": "bottom",
@@ -260239,7 +266506,7 @@
}
},
{
- "id": 23627,
+ "id": 24096,
"properties": {
"facing": "east",
"half": "bottom",
@@ -260257,7 +266524,7 @@
"states": [
{
"default": true,
- "id": 22954
+ "id": 23423
}
]
},
@@ -260269,7 +266536,7 @@
"states": [
{
"default": true,
- "id": 23302
+ "id": 23771
}
]
},
@@ -260290,21 +266557,21 @@
},
"states": [
{
- "id": 24712,
+ "id": 25181,
"properties": {
"lit": "true",
"powered": "true"
}
},
{
- "id": 24713,
+ "id": 25182,
"properties": {
"lit": "true",
"powered": "false"
}
},
{
- "id": 24714,
+ "id": 25183,
"properties": {
"lit": "false",
"powered": "true"
@@ -260312,7 +266579,7 @@
},
{
"default": true,
- "id": 24715,
+ "id": 25184,
"properties": {
"lit": "false",
"powered": "false"
@@ -260352,7 +266619,7 @@
},
"states": [
{
- "id": 23972,
+ "id": 24441,
"properties": {
"facing": "north",
"half": "upper",
@@ -260362,7 +266629,7 @@
}
},
{
- "id": 23973,
+ "id": 24442,
"properties": {
"facing": "north",
"half": "upper",
@@ -260372,7 +266639,7 @@
}
},
{
- "id": 23974,
+ "id": 24443,
"properties": {
"facing": "north",
"half": "upper",
@@ -260382,7 +266649,7 @@
}
},
{
- "id": 23975,
+ "id": 24444,
"properties": {
"facing": "north",
"half": "upper",
@@ -260392,7 +266659,7 @@
}
},
{
- "id": 23976,
+ "id": 24445,
"properties": {
"facing": "north",
"half": "upper",
@@ -260402,7 +266669,7 @@
}
},
{
- "id": 23977,
+ "id": 24446,
"properties": {
"facing": "north",
"half": "upper",
@@ -260412,7 +266679,7 @@
}
},
{
- "id": 23978,
+ "id": 24447,
"properties": {
"facing": "north",
"half": "upper",
@@ -260422,7 +266689,7 @@
}
},
{
- "id": 23979,
+ "id": 24448,
"properties": {
"facing": "north",
"half": "upper",
@@ -260432,7 +266699,7 @@
}
},
{
- "id": 23980,
+ "id": 24449,
"properties": {
"facing": "north",
"half": "lower",
@@ -260442,7 +266709,7 @@
}
},
{
- "id": 23981,
+ "id": 24450,
"properties": {
"facing": "north",
"half": "lower",
@@ -260452,7 +266719,7 @@
}
},
{
- "id": 23982,
+ "id": 24451,
"properties": {
"facing": "north",
"half": "lower",
@@ -260463,7 +266730,7 @@
},
{
"default": true,
- "id": 23983,
+ "id": 24452,
"properties": {
"facing": "north",
"half": "lower",
@@ -260473,7 +266740,7 @@
}
},
{
- "id": 23984,
+ "id": 24453,
"properties": {
"facing": "north",
"half": "lower",
@@ -260483,7 +266750,7 @@
}
},
{
- "id": 23985,
+ "id": 24454,
"properties": {
"facing": "north",
"half": "lower",
@@ -260493,7 +266760,7 @@
}
},
{
- "id": 23986,
+ "id": 24455,
"properties": {
"facing": "north",
"half": "lower",
@@ -260503,7 +266770,7 @@
}
},
{
- "id": 23987,
+ "id": 24456,
"properties": {
"facing": "north",
"half": "lower",
@@ -260513,7 +266780,7 @@
}
},
{
- "id": 23988,
+ "id": 24457,
"properties": {
"facing": "south",
"half": "upper",
@@ -260523,7 +266790,7 @@
}
},
{
- "id": 23989,
+ "id": 24458,
"properties": {
"facing": "south",
"half": "upper",
@@ -260533,7 +266800,7 @@
}
},
{
- "id": 23990,
+ "id": 24459,
"properties": {
"facing": "south",
"half": "upper",
@@ -260543,7 +266810,7 @@
}
},
{
- "id": 23991,
+ "id": 24460,
"properties": {
"facing": "south",
"half": "upper",
@@ -260553,7 +266820,7 @@
}
},
{
- "id": 23992,
+ "id": 24461,
"properties": {
"facing": "south",
"half": "upper",
@@ -260563,7 +266830,7 @@
}
},
{
- "id": 23993,
+ "id": 24462,
"properties": {
"facing": "south",
"half": "upper",
@@ -260573,7 +266840,7 @@
}
},
{
- "id": 23994,
+ "id": 24463,
"properties": {
"facing": "south",
"half": "upper",
@@ -260583,7 +266850,7 @@
}
},
{
- "id": 23995,
+ "id": 24464,
"properties": {
"facing": "south",
"half": "upper",
@@ -260593,7 +266860,7 @@
}
},
{
- "id": 23996,
+ "id": 24465,
"properties": {
"facing": "south",
"half": "lower",
@@ -260603,7 +266870,7 @@
}
},
{
- "id": 23997,
+ "id": 24466,
"properties": {
"facing": "south",
"half": "lower",
@@ -260613,7 +266880,7 @@
}
},
{
- "id": 23998,
+ "id": 24467,
"properties": {
"facing": "south",
"half": "lower",
@@ -260623,7 +266890,7 @@
}
},
{
- "id": 23999,
+ "id": 24468,
"properties": {
"facing": "south",
"half": "lower",
@@ -260633,7 +266900,7 @@
}
},
{
- "id": 24000,
+ "id": 24469,
"properties": {
"facing": "south",
"half": "lower",
@@ -260643,7 +266910,7 @@
}
},
{
- "id": 24001,
+ "id": 24470,
"properties": {
"facing": "south",
"half": "lower",
@@ -260653,7 +266920,7 @@
}
},
{
- "id": 24002,
+ "id": 24471,
"properties": {
"facing": "south",
"half": "lower",
@@ -260663,7 +266930,7 @@
}
},
{
- "id": 24003,
+ "id": 24472,
"properties": {
"facing": "south",
"half": "lower",
@@ -260673,7 +266940,7 @@
}
},
{
- "id": 24004,
+ "id": 24473,
"properties": {
"facing": "west",
"half": "upper",
@@ -260683,7 +266950,7 @@
}
},
{
- "id": 24005,
+ "id": 24474,
"properties": {
"facing": "west",
"half": "upper",
@@ -260693,7 +266960,7 @@
}
},
{
- "id": 24006,
+ "id": 24475,
"properties": {
"facing": "west",
"half": "upper",
@@ -260703,7 +266970,7 @@
}
},
{
- "id": 24007,
+ "id": 24476,
"properties": {
"facing": "west",
"half": "upper",
@@ -260713,7 +266980,7 @@
}
},
{
- "id": 24008,
+ "id": 24477,
"properties": {
"facing": "west",
"half": "upper",
@@ -260723,7 +266990,7 @@
}
},
{
- "id": 24009,
+ "id": 24478,
"properties": {
"facing": "west",
"half": "upper",
@@ -260733,7 +267000,7 @@
}
},
{
- "id": 24010,
+ "id": 24479,
"properties": {
"facing": "west",
"half": "upper",
@@ -260743,7 +267010,7 @@
}
},
{
- "id": 24011,
+ "id": 24480,
"properties": {
"facing": "west",
"half": "upper",
@@ -260753,7 +267020,7 @@
}
},
{
- "id": 24012,
+ "id": 24481,
"properties": {
"facing": "west",
"half": "lower",
@@ -260763,7 +267030,7 @@
}
},
{
- "id": 24013,
+ "id": 24482,
"properties": {
"facing": "west",
"half": "lower",
@@ -260773,7 +267040,7 @@
}
},
{
- "id": 24014,
+ "id": 24483,
"properties": {
"facing": "west",
"half": "lower",
@@ -260783,7 +267050,7 @@
}
},
{
- "id": 24015,
+ "id": 24484,
"properties": {
"facing": "west",
"half": "lower",
@@ -260793,7 +267060,7 @@
}
},
{
- "id": 24016,
+ "id": 24485,
"properties": {
"facing": "west",
"half": "lower",
@@ -260803,7 +267070,7 @@
}
},
{
- "id": 24017,
+ "id": 24486,
"properties": {
"facing": "west",
"half": "lower",
@@ -260813,7 +267080,7 @@
}
},
{
- "id": 24018,
+ "id": 24487,
"properties": {
"facing": "west",
"half": "lower",
@@ -260823,7 +267090,7 @@
}
},
{
- "id": 24019,
+ "id": 24488,
"properties": {
"facing": "west",
"half": "lower",
@@ -260833,7 +267100,7 @@
}
},
{
- "id": 24020,
+ "id": 24489,
"properties": {
"facing": "east",
"half": "upper",
@@ -260843,7 +267110,7 @@
}
},
{
- "id": 24021,
+ "id": 24490,
"properties": {
"facing": "east",
"half": "upper",
@@ -260853,7 +267120,7 @@
}
},
{
- "id": 24022,
+ "id": 24491,
"properties": {
"facing": "east",
"half": "upper",
@@ -260863,7 +267130,7 @@
}
},
{
- "id": 24023,
+ "id": 24492,
"properties": {
"facing": "east",
"half": "upper",
@@ -260873,7 +267140,7 @@
}
},
{
- "id": 24024,
+ "id": 24493,
"properties": {
"facing": "east",
"half": "upper",
@@ -260883,7 +267150,7 @@
}
},
{
- "id": 24025,
+ "id": 24494,
"properties": {
"facing": "east",
"half": "upper",
@@ -260893,7 +267160,7 @@
}
},
{
- "id": 24026,
+ "id": 24495,
"properties": {
"facing": "east",
"half": "upper",
@@ -260903,7 +267170,7 @@
}
},
{
- "id": 24027,
+ "id": 24496,
"properties": {
"facing": "east",
"half": "upper",
@@ -260913,7 +267180,7 @@
}
},
{
- "id": 24028,
+ "id": 24497,
"properties": {
"facing": "east",
"half": "lower",
@@ -260923,7 +267190,7 @@
}
},
{
- "id": 24029,
+ "id": 24498,
"properties": {
"facing": "east",
"half": "lower",
@@ -260933,7 +267200,7 @@
}
},
{
- "id": 24030,
+ "id": 24499,
"properties": {
"facing": "east",
"half": "lower",
@@ -260943,7 +267210,7 @@
}
},
{
- "id": 24031,
+ "id": 24500,
"properties": {
"facing": "east",
"half": "lower",
@@ -260953,7 +267220,7 @@
}
},
{
- "id": 24032,
+ "id": 24501,
"properties": {
"facing": "east",
"half": "lower",
@@ -260963,7 +267230,7 @@
}
},
{
- "id": 24033,
+ "id": 24502,
"properties": {
"facing": "east",
"half": "lower",
@@ -260973,7 +267240,7 @@
}
},
{
- "id": 24034,
+ "id": 24503,
"properties": {
"facing": "east",
"half": "lower",
@@ -260983,7 +267250,7 @@
}
},
{
- "id": 24035,
+ "id": 24504,
"properties": {
"facing": "east",
"half": "lower",
@@ -261007,14 +267274,14 @@
},
"states": [
{
- "id": 24686,
+ "id": 25155,
"properties": {
"waterlogged": "true"
}
},
{
"default": true,
- "id": 24687,
+ "id": 25156,
"properties": {
"waterlogged": "false"
}
@@ -261053,7 +267320,7 @@
},
"states": [
{
- "id": 24484,
+ "id": 24953,
"properties": {
"facing": "north",
"half": "top",
@@ -261063,7 +267330,7 @@
}
},
{
- "id": 24485,
+ "id": 24954,
"properties": {
"facing": "north",
"half": "top",
@@ -261073,7 +267340,7 @@
}
},
{
- "id": 24486,
+ "id": 24955,
"properties": {
"facing": "north",
"half": "top",
@@ -261083,7 +267350,7 @@
}
},
{
- "id": 24487,
+ "id": 24956,
"properties": {
"facing": "north",
"half": "top",
@@ -261093,7 +267360,7 @@
}
},
{
- "id": 24488,
+ "id": 24957,
"properties": {
"facing": "north",
"half": "top",
@@ -261103,7 +267370,7 @@
}
},
{
- "id": 24489,
+ "id": 24958,
"properties": {
"facing": "north",
"half": "top",
@@ -261113,7 +267380,7 @@
}
},
{
- "id": 24490,
+ "id": 24959,
"properties": {
"facing": "north",
"half": "top",
@@ -261123,7 +267390,7 @@
}
},
{
- "id": 24491,
+ "id": 24960,
"properties": {
"facing": "north",
"half": "top",
@@ -261133,7 +267400,7 @@
}
},
{
- "id": 24492,
+ "id": 24961,
"properties": {
"facing": "north",
"half": "bottom",
@@ -261143,7 +267410,7 @@
}
},
{
- "id": 24493,
+ "id": 24962,
"properties": {
"facing": "north",
"half": "bottom",
@@ -261153,7 +267420,7 @@
}
},
{
- "id": 24494,
+ "id": 24963,
"properties": {
"facing": "north",
"half": "bottom",
@@ -261163,7 +267430,7 @@
}
},
{
- "id": 24495,
+ "id": 24964,
"properties": {
"facing": "north",
"half": "bottom",
@@ -261173,7 +267440,7 @@
}
},
{
- "id": 24496,
+ "id": 24965,
"properties": {
"facing": "north",
"half": "bottom",
@@ -261183,7 +267450,7 @@
}
},
{
- "id": 24497,
+ "id": 24966,
"properties": {
"facing": "north",
"half": "bottom",
@@ -261193,7 +267460,7 @@
}
},
{
- "id": 24498,
+ "id": 24967,
"properties": {
"facing": "north",
"half": "bottom",
@@ -261204,7 +267471,7 @@
},
{
"default": true,
- "id": 24499,
+ "id": 24968,
"properties": {
"facing": "north",
"half": "bottom",
@@ -261214,7 +267481,7 @@
}
},
{
- "id": 24500,
+ "id": 24969,
"properties": {
"facing": "south",
"half": "top",
@@ -261224,7 +267491,7 @@
}
},
{
- "id": 24501,
+ "id": 24970,
"properties": {
"facing": "south",
"half": "top",
@@ -261234,7 +267501,7 @@
}
},
{
- "id": 24502,
+ "id": 24971,
"properties": {
"facing": "south",
"half": "top",
@@ -261244,7 +267511,7 @@
}
},
{
- "id": 24503,
+ "id": 24972,
"properties": {
"facing": "south",
"half": "top",
@@ -261254,7 +267521,7 @@
}
},
{
- "id": 24504,
+ "id": 24973,
"properties": {
"facing": "south",
"half": "top",
@@ -261264,7 +267531,7 @@
}
},
{
- "id": 24505,
+ "id": 24974,
"properties": {
"facing": "south",
"half": "top",
@@ -261274,7 +267541,7 @@
}
},
{
- "id": 24506,
+ "id": 24975,
"properties": {
"facing": "south",
"half": "top",
@@ -261284,7 +267551,7 @@
}
},
{
- "id": 24507,
+ "id": 24976,
"properties": {
"facing": "south",
"half": "top",
@@ -261294,7 +267561,7 @@
}
},
{
- "id": 24508,
+ "id": 24977,
"properties": {
"facing": "south",
"half": "bottom",
@@ -261304,7 +267571,7 @@
}
},
{
- "id": 24509,
+ "id": 24978,
"properties": {
"facing": "south",
"half": "bottom",
@@ -261314,7 +267581,7 @@
}
},
{
- "id": 24510,
+ "id": 24979,
"properties": {
"facing": "south",
"half": "bottom",
@@ -261324,7 +267591,7 @@
}
},
{
- "id": 24511,
+ "id": 24980,
"properties": {
"facing": "south",
"half": "bottom",
@@ -261334,7 +267601,7 @@
}
},
{
- "id": 24512,
+ "id": 24981,
"properties": {
"facing": "south",
"half": "bottom",
@@ -261344,7 +267611,7 @@
}
},
{
- "id": 24513,
+ "id": 24982,
"properties": {
"facing": "south",
"half": "bottom",
@@ -261354,7 +267621,7 @@
}
},
{
- "id": 24514,
+ "id": 24983,
"properties": {
"facing": "south",
"half": "bottom",
@@ -261364,7 +267631,7 @@
}
},
{
- "id": 24515,
+ "id": 24984,
"properties": {
"facing": "south",
"half": "bottom",
@@ -261374,7 +267641,7 @@
}
},
{
- "id": 24516,
+ "id": 24985,
"properties": {
"facing": "west",
"half": "top",
@@ -261384,7 +267651,7 @@
}
},
{
- "id": 24517,
+ "id": 24986,
"properties": {
"facing": "west",
"half": "top",
@@ -261394,7 +267661,7 @@
}
},
{
- "id": 24518,
+ "id": 24987,
"properties": {
"facing": "west",
"half": "top",
@@ -261404,7 +267671,7 @@
}
},
{
- "id": 24519,
+ "id": 24988,
"properties": {
"facing": "west",
"half": "top",
@@ -261414,7 +267681,7 @@
}
},
{
- "id": 24520,
+ "id": 24989,
"properties": {
"facing": "west",
"half": "top",
@@ -261424,7 +267691,7 @@
}
},
{
- "id": 24521,
+ "id": 24990,
"properties": {
"facing": "west",
"half": "top",
@@ -261434,7 +267701,7 @@
}
},
{
- "id": 24522,
+ "id": 24991,
"properties": {
"facing": "west",
"half": "top",
@@ -261444,7 +267711,7 @@
}
},
{
- "id": 24523,
+ "id": 24992,
"properties": {
"facing": "west",
"half": "top",
@@ -261454,7 +267721,7 @@
}
},
{
- "id": 24524,
+ "id": 24993,
"properties": {
"facing": "west",
"half": "bottom",
@@ -261464,7 +267731,7 @@
}
},
{
- "id": 24525,
+ "id": 24994,
"properties": {
"facing": "west",
"half": "bottom",
@@ -261474,7 +267741,7 @@
}
},
{
- "id": 24526,
+ "id": 24995,
"properties": {
"facing": "west",
"half": "bottom",
@@ -261484,7 +267751,7 @@
}
},
{
- "id": 24527,
+ "id": 24996,
"properties": {
"facing": "west",
"half": "bottom",
@@ -261494,7 +267761,7 @@
}
},
{
- "id": 24528,
+ "id": 24997,
"properties": {
"facing": "west",
"half": "bottom",
@@ -261504,7 +267771,7 @@
}
},
{
- "id": 24529,
+ "id": 24998,
"properties": {
"facing": "west",
"half": "bottom",
@@ -261514,7 +267781,7 @@
}
},
{
- "id": 24530,
+ "id": 24999,
"properties": {
"facing": "west",
"half": "bottom",
@@ -261524,7 +267791,7 @@
}
},
{
- "id": 24531,
+ "id": 25000,
"properties": {
"facing": "west",
"half": "bottom",
@@ -261534,7 +267801,7 @@
}
},
{
- "id": 24532,
+ "id": 25001,
"properties": {
"facing": "east",
"half": "top",
@@ -261544,7 +267811,7 @@
}
},
{
- "id": 24533,
+ "id": 25002,
"properties": {
"facing": "east",
"half": "top",
@@ -261554,7 +267821,7 @@
}
},
{
- "id": 24534,
+ "id": 25003,
"properties": {
"facing": "east",
"half": "top",
@@ -261564,7 +267831,7 @@
}
},
{
- "id": 24535,
+ "id": 25004,
"properties": {
"facing": "east",
"half": "top",
@@ -261574,7 +267841,7 @@
}
},
{
- "id": 24536,
+ "id": 25005,
"properties": {
"facing": "east",
"half": "top",
@@ -261584,7 +267851,7 @@
}
},
{
- "id": 24537,
+ "id": 25006,
"properties": {
"facing": "east",
"half": "top",
@@ -261594,7 +267861,7 @@
}
},
{
- "id": 24538,
+ "id": 25007,
"properties": {
"facing": "east",
"half": "top",
@@ -261604,7 +267871,7 @@
}
},
{
- "id": 24539,
+ "id": 25008,
"properties": {
"facing": "east",
"half": "top",
@@ -261614,7 +267881,7 @@
}
},
{
- "id": 24540,
+ "id": 25009,
"properties": {
"facing": "east",
"half": "bottom",
@@ -261624,7 +267891,7 @@
}
},
{
- "id": 24541,
+ "id": 25010,
"properties": {
"facing": "east",
"half": "bottom",
@@ -261634,7 +267901,7 @@
}
},
{
- "id": 24542,
+ "id": 25011,
"properties": {
"facing": "east",
"half": "bottom",
@@ -261644,7 +267911,7 @@
}
},
{
- "id": 24543,
+ "id": 25012,
"properties": {
"facing": "east",
"half": "bottom",
@@ -261654,7 +267921,7 @@
}
},
{
- "id": 24544,
+ "id": 25013,
"properties": {
"facing": "east",
"half": "bottom",
@@ -261664,7 +267931,7 @@
}
},
{
- "id": 24545,
+ "id": 25014,
"properties": {
"facing": "east",
"half": "bottom",
@@ -261674,7 +267941,7 @@
}
},
{
- "id": 24546,
+ "id": 25015,
"properties": {
"facing": "east",
"half": "bottom",
@@ -261684,7 +267951,7 @@
}
},
{
- "id": 24547,
+ "id": 25016,
"properties": {
"facing": "east",
"half": "bottom",
@@ -261703,7 +267970,7 @@
"states": [
{
"default": true,
- "id": 23306
+ "id": 23775
}
]
},
@@ -261725,21 +267992,21 @@
},
"states": [
{
- "id": 23640,
+ "id": 24109,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 23641,
+ "id": 24110,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 23642,
+ "id": 24111,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -261747,21 +268014,21 @@
},
{
"default": true,
- "id": 23643,
+ "id": 24112,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 23644,
+ "id": 24113,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 23645,
+ "id": 24114,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -261802,7 +268069,7 @@
},
"states": [
{
- "id": 23468,
+ "id": 23937,
"properties": {
"facing": "north",
"half": "top",
@@ -261811,7 +268078,7 @@
}
},
{
- "id": 23469,
+ "id": 23938,
"properties": {
"facing": "north",
"half": "top",
@@ -261820,7 +268087,7 @@
}
},
{
- "id": 23470,
+ "id": 23939,
"properties": {
"facing": "north",
"half": "top",
@@ -261829,7 +268096,7 @@
}
},
{
- "id": 23471,
+ "id": 23940,
"properties": {
"facing": "north",
"half": "top",
@@ -261838,7 +268105,7 @@
}
},
{
- "id": 23472,
+ "id": 23941,
"properties": {
"facing": "north",
"half": "top",
@@ -261847,7 +268114,7 @@
}
},
{
- "id": 23473,
+ "id": 23942,
"properties": {
"facing": "north",
"half": "top",
@@ -261856,7 +268123,7 @@
}
},
{
- "id": 23474,
+ "id": 23943,
"properties": {
"facing": "north",
"half": "top",
@@ -261865,7 +268132,7 @@
}
},
{
- "id": 23475,
+ "id": 23944,
"properties": {
"facing": "north",
"half": "top",
@@ -261874,7 +268141,7 @@
}
},
{
- "id": 23476,
+ "id": 23945,
"properties": {
"facing": "north",
"half": "top",
@@ -261883,7 +268150,7 @@
}
},
{
- "id": 23477,
+ "id": 23946,
"properties": {
"facing": "north",
"half": "top",
@@ -261892,7 +268159,7 @@
}
},
{
- "id": 23478,
+ "id": 23947,
"properties": {
"facing": "north",
"half": "bottom",
@@ -261902,7 +268169,7 @@
},
{
"default": true,
- "id": 23479,
+ "id": 23948,
"properties": {
"facing": "north",
"half": "bottom",
@@ -261911,7 +268178,7 @@
}
},
{
- "id": 23480,
+ "id": 23949,
"properties": {
"facing": "north",
"half": "bottom",
@@ -261920,7 +268187,7 @@
}
},
{
- "id": 23481,
+ "id": 23950,
"properties": {
"facing": "north",
"half": "bottom",
@@ -261929,7 +268196,7 @@
}
},
{
- "id": 23482,
+ "id": 23951,
"properties": {
"facing": "north",
"half": "bottom",
@@ -261938,7 +268205,7 @@
}
},
{
- "id": 23483,
+ "id": 23952,
"properties": {
"facing": "north",
"half": "bottom",
@@ -261947,7 +268214,7 @@
}
},
{
- "id": 23484,
+ "id": 23953,
"properties": {
"facing": "north",
"half": "bottom",
@@ -261956,7 +268223,7 @@
}
},
{
- "id": 23485,
+ "id": 23954,
"properties": {
"facing": "north",
"half": "bottom",
@@ -261965,7 +268232,7 @@
}
},
{
- "id": 23486,
+ "id": 23955,
"properties": {
"facing": "north",
"half": "bottom",
@@ -261974,7 +268241,7 @@
}
},
{
- "id": 23487,
+ "id": 23956,
"properties": {
"facing": "north",
"half": "bottom",
@@ -261983,7 +268250,7 @@
}
},
{
- "id": 23488,
+ "id": 23957,
"properties": {
"facing": "south",
"half": "top",
@@ -261992,7 +268259,7 @@
}
},
{
- "id": 23489,
+ "id": 23958,
"properties": {
"facing": "south",
"half": "top",
@@ -262001,7 +268268,7 @@
}
},
{
- "id": 23490,
+ "id": 23959,
"properties": {
"facing": "south",
"half": "top",
@@ -262010,7 +268277,7 @@
}
},
{
- "id": 23491,
+ "id": 23960,
"properties": {
"facing": "south",
"half": "top",
@@ -262019,7 +268286,7 @@
}
},
{
- "id": 23492,
+ "id": 23961,
"properties": {
"facing": "south",
"half": "top",
@@ -262028,7 +268295,7 @@
}
},
{
- "id": 23493,
+ "id": 23962,
"properties": {
"facing": "south",
"half": "top",
@@ -262037,7 +268304,7 @@
}
},
{
- "id": 23494,
+ "id": 23963,
"properties": {
"facing": "south",
"half": "top",
@@ -262046,7 +268313,7 @@
}
},
{
- "id": 23495,
+ "id": 23964,
"properties": {
"facing": "south",
"half": "top",
@@ -262055,7 +268322,7 @@
}
},
{
- "id": 23496,
+ "id": 23965,
"properties": {
"facing": "south",
"half": "top",
@@ -262064,7 +268331,7 @@
}
},
{
- "id": 23497,
+ "id": 23966,
"properties": {
"facing": "south",
"half": "top",
@@ -262073,7 +268340,7 @@
}
},
{
- "id": 23498,
+ "id": 23967,
"properties": {
"facing": "south",
"half": "bottom",
@@ -262082,7 +268349,7 @@
}
},
{
- "id": 23499,
+ "id": 23968,
"properties": {
"facing": "south",
"half": "bottom",
@@ -262091,7 +268358,7 @@
}
},
{
- "id": 23500,
+ "id": 23969,
"properties": {
"facing": "south",
"half": "bottom",
@@ -262100,7 +268367,7 @@
}
},
{
- "id": 23501,
+ "id": 23970,
"properties": {
"facing": "south",
"half": "bottom",
@@ -262109,7 +268376,7 @@
}
},
{
- "id": 23502,
+ "id": 23971,
"properties": {
"facing": "south",
"half": "bottom",
@@ -262118,7 +268385,7 @@
}
},
{
- "id": 23503,
+ "id": 23972,
"properties": {
"facing": "south",
"half": "bottom",
@@ -262127,7 +268394,7 @@
}
},
{
- "id": 23504,
+ "id": 23973,
"properties": {
"facing": "south",
"half": "bottom",
@@ -262136,7 +268403,7 @@
}
},
{
- "id": 23505,
+ "id": 23974,
"properties": {
"facing": "south",
"half": "bottom",
@@ -262145,7 +268412,7 @@
}
},
{
- "id": 23506,
+ "id": 23975,
"properties": {
"facing": "south",
"half": "bottom",
@@ -262154,7 +268421,7 @@
}
},
{
- "id": 23507,
+ "id": 23976,
"properties": {
"facing": "south",
"half": "bottom",
@@ -262163,7 +268430,7 @@
}
},
{
- "id": 23508,
+ "id": 23977,
"properties": {
"facing": "west",
"half": "top",
@@ -262172,7 +268439,7 @@
}
},
{
- "id": 23509,
+ "id": 23978,
"properties": {
"facing": "west",
"half": "top",
@@ -262181,7 +268448,7 @@
}
},
{
- "id": 23510,
+ "id": 23979,
"properties": {
"facing": "west",
"half": "top",
@@ -262190,7 +268457,7 @@
}
},
{
- "id": 23511,
+ "id": 23980,
"properties": {
"facing": "west",
"half": "top",
@@ -262199,7 +268466,7 @@
}
},
{
- "id": 23512,
+ "id": 23981,
"properties": {
"facing": "west",
"half": "top",
@@ -262208,7 +268475,7 @@
}
},
{
- "id": 23513,
+ "id": 23982,
"properties": {
"facing": "west",
"half": "top",
@@ -262217,7 +268484,7 @@
}
},
{
- "id": 23514,
+ "id": 23983,
"properties": {
"facing": "west",
"half": "top",
@@ -262226,7 +268493,7 @@
}
},
{
- "id": 23515,
+ "id": 23984,
"properties": {
"facing": "west",
"half": "top",
@@ -262235,7 +268502,7 @@
}
},
{
- "id": 23516,
+ "id": 23985,
"properties": {
"facing": "west",
"half": "top",
@@ -262244,7 +268511,7 @@
}
},
{
- "id": 23517,
+ "id": 23986,
"properties": {
"facing": "west",
"half": "top",
@@ -262253,7 +268520,7 @@
}
},
{
- "id": 23518,
+ "id": 23987,
"properties": {
"facing": "west",
"half": "bottom",
@@ -262262,7 +268529,7 @@
}
},
{
- "id": 23519,
+ "id": 23988,
"properties": {
"facing": "west",
"half": "bottom",
@@ -262271,7 +268538,7 @@
}
},
{
- "id": 23520,
+ "id": 23989,
"properties": {
"facing": "west",
"half": "bottom",
@@ -262280,7 +268547,7 @@
}
},
{
- "id": 23521,
+ "id": 23990,
"properties": {
"facing": "west",
"half": "bottom",
@@ -262289,7 +268556,7 @@
}
},
{
- "id": 23522,
+ "id": 23991,
"properties": {
"facing": "west",
"half": "bottom",
@@ -262298,7 +268565,7 @@
}
},
{
- "id": 23523,
+ "id": 23992,
"properties": {
"facing": "west",
"half": "bottom",
@@ -262307,7 +268574,7 @@
}
},
{
- "id": 23524,
+ "id": 23993,
"properties": {
"facing": "west",
"half": "bottom",
@@ -262316,7 +268583,7 @@
}
},
{
- "id": 23525,
+ "id": 23994,
"properties": {
"facing": "west",
"half": "bottom",
@@ -262325,7 +268592,7 @@
}
},
{
- "id": 23526,
+ "id": 23995,
"properties": {
"facing": "west",
"half": "bottom",
@@ -262334,7 +268601,7 @@
}
},
{
- "id": 23527,
+ "id": 23996,
"properties": {
"facing": "west",
"half": "bottom",
@@ -262343,7 +268610,7 @@
}
},
{
- "id": 23528,
+ "id": 23997,
"properties": {
"facing": "east",
"half": "top",
@@ -262352,7 +268619,7 @@
}
},
{
- "id": 23529,
+ "id": 23998,
"properties": {
"facing": "east",
"half": "top",
@@ -262361,7 +268628,7 @@
}
},
{
- "id": 23530,
+ "id": 23999,
"properties": {
"facing": "east",
"half": "top",
@@ -262370,7 +268637,7 @@
}
},
{
- "id": 23531,
+ "id": 24000,
"properties": {
"facing": "east",
"half": "top",
@@ -262379,7 +268646,7 @@
}
},
{
- "id": 23532,
+ "id": 24001,
"properties": {
"facing": "east",
"half": "top",
@@ -262388,7 +268655,7 @@
}
},
{
- "id": 23533,
+ "id": 24002,
"properties": {
"facing": "east",
"half": "top",
@@ -262397,7 +268664,7 @@
}
},
{
- "id": 23534,
+ "id": 24003,
"properties": {
"facing": "east",
"half": "top",
@@ -262406,7 +268673,7 @@
}
},
{
- "id": 23535,
+ "id": 24004,
"properties": {
"facing": "east",
"half": "top",
@@ -262415,7 +268682,7 @@
}
},
{
- "id": 23536,
+ "id": 24005,
"properties": {
"facing": "east",
"half": "top",
@@ -262424,7 +268691,7 @@
}
},
{
- "id": 23537,
+ "id": 24006,
"properties": {
"facing": "east",
"half": "top",
@@ -262433,7 +268700,7 @@
}
},
{
- "id": 23538,
+ "id": 24007,
"properties": {
"facing": "east",
"half": "bottom",
@@ -262442,7 +268709,7 @@
}
},
{
- "id": 23539,
+ "id": 24008,
"properties": {
"facing": "east",
"half": "bottom",
@@ -262451,7 +268718,7 @@
}
},
{
- "id": 23540,
+ "id": 24009,
"properties": {
"facing": "east",
"half": "bottom",
@@ -262460,7 +268727,7 @@
}
},
{
- "id": 23541,
+ "id": 24010,
"properties": {
"facing": "east",
"half": "bottom",
@@ -262469,7 +268736,7 @@
}
},
{
- "id": 23542,
+ "id": 24011,
"properties": {
"facing": "east",
"half": "bottom",
@@ -262478,7 +268745,7 @@
}
},
{
- "id": 23543,
+ "id": 24012,
"properties": {
"facing": "east",
"half": "bottom",
@@ -262487,7 +268754,7 @@
}
},
{
- "id": 23544,
+ "id": 24013,
"properties": {
"facing": "east",
"half": "bottom",
@@ -262496,7 +268763,7 @@
}
},
{
- "id": 23545,
+ "id": 24014,
"properties": {
"facing": "east",
"half": "bottom",
@@ -262505,7 +268772,7 @@
}
},
{
- "id": 23546,
+ "id": 24015,
"properties": {
"facing": "east",
"half": "bottom",
@@ -262514,7 +268781,7 @@
}
},
{
- "id": 23547,
+ "id": 24016,
"properties": {
"facing": "east",
"half": "bottom",
@@ -262532,7 +268799,7 @@
"states": [
{
"default": true,
- "id": 22952
+ "id": 23421
}
]
},
@@ -262544,7 +268811,7 @@
"states": [
{
"default": true,
- "id": 23303
+ "id": 23772
}
]
},
@@ -262565,21 +268832,21 @@
},
"states": [
{
- "id": 24720,
+ "id": 25189,
"properties": {
"lit": "true",
"powered": "true"
}
},
{
- "id": 24721,
+ "id": 25190,
"properties": {
"lit": "true",
"powered": "false"
}
},
{
- "id": 24722,
+ "id": 25191,
"properties": {
"lit": "false",
"powered": "true"
@@ -262587,7 +268854,7 @@
},
{
"default": true,
- "id": 24723,
+ "id": 25192,
"properties": {
"lit": "false",
"powered": "false"
@@ -262627,7 +268894,7 @@
},
"states": [
{
- "id": 24036,
+ "id": 24505,
"properties": {
"facing": "north",
"half": "upper",
@@ -262637,7 +268904,7 @@
}
},
{
- "id": 24037,
+ "id": 24506,
"properties": {
"facing": "north",
"half": "upper",
@@ -262647,7 +268914,7 @@
}
},
{
- "id": 24038,
+ "id": 24507,
"properties": {
"facing": "north",
"half": "upper",
@@ -262657,7 +268924,7 @@
}
},
{
- "id": 24039,
+ "id": 24508,
"properties": {
"facing": "north",
"half": "upper",
@@ -262667,7 +268934,7 @@
}
},
{
- "id": 24040,
+ "id": 24509,
"properties": {
"facing": "north",
"half": "upper",
@@ -262677,7 +268944,7 @@
}
},
{
- "id": 24041,
+ "id": 24510,
"properties": {
"facing": "north",
"half": "upper",
@@ -262687,7 +268954,7 @@
}
},
{
- "id": 24042,
+ "id": 24511,
"properties": {
"facing": "north",
"half": "upper",
@@ -262697,7 +268964,7 @@
}
},
{
- "id": 24043,
+ "id": 24512,
"properties": {
"facing": "north",
"half": "upper",
@@ -262707,7 +268974,7 @@
}
},
{
- "id": 24044,
+ "id": 24513,
"properties": {
"facing": "north",
"half": "lower",
@@ -262717,7 +268984,7 @@
}
},
{
- "id": 24045,
+ "id": 24514,
"properties": {
"facing": "north",
"half": "lower",
@@ -262727,7 +268994,7 @@
}
},
{
- "id": 24046,
+ "id": 24515,
"properties": {
"facing": "north",
"half": "lower",
@@ -262738,7 +269005,7 @@
},
{
"default": true,
- "id": 24047,
+ "id": 24516,
"properties": {
"facing": "north",
"half": "lower",
@@ -262748,7 +269015,7 @@
}
},
{
- "id": 24048,
+ "id": 24517,
"properties": {
"facing": "north",
"half": "lower",
@@ -262758,7 +269025,7 @@
}
},
{
- "id": 24049,
+ "id": 24518,
"properties": {
"facing": "north",
"half": "lower",
@@ -262768,7 +269035,7 @@
}
},
{
- "id": 24050,
+ "id": 24519,
"properties": {
"facing": "north",
"half": "lower",
@@ -262778,7 +269045,7 @@
}
},
{
- "id": 24051,
+ "id": 24520,
"properties": {
"facing": "north",
"half": "lower",
@@ -262788,7 +269055,7 @@
}
},
{
- "id": 24052,
+ "id": 24521,
"properties": {
"facing": "south",
"half": "upper",
@@ -262798,7 +269065,7 @@
}
},
{
- "id": 24053,
+ "id": 24522,
"properties": {
"facing": "south",
"half": "upper",
@@ -262808,7 +269075,7 @@
}
},
{
- "id": 24054,
+ "id": 24523,
"properties": {
"facing": "south",
"half": "upper",
@@ -262818,7 +269085,7 @@
}
},
{
- "id": 24055,
+ "id": 24524,
"properties": {
"facing": "south",
"half": "upper",
@@ -262828,7 +269095,7 @@
}
},
{
- "id": 24056,
+ "id": 24525,
"properties": {
"facing": "south",
"half": "upper",
@@ -262838,7 +269105,7 @@
}
},
{
- "id": 24057,
+ "id": 24526,
"properties": {
"facing": "south",
"half": "upper",
@@ -262848,7 +269115,7 @@
}
},
{
- "id": 24058,
+ "id": 24527,
"properties": {
"facing": "south",
"half": "upper",
@@ -262858,7 +269125,7 @@
}
},
{
- "id": 24059,
+ "id": 24528,
"properties": {
"facing": "south",
"half": "upper",
@@ -262868,7 +269135,7 @@
}
},
{
- "id": 24060,
+ "id": 24529,
"properties": {
"facing": "south",
"half": "lower",
@@ -262878,7 +269145,7 @@
}
},
{
- "id": 24061,
+ "id": 24530,
"properties": {
"facing": "south",
"half": "lower",
@@ -262888,7 +269155,7 @@
}
},
{
- "id": 24062,
+ "id": 24531,
"properties": {
"facing": "south",
"half": "lower",
@@ -262898,7 +269165,7 @@
}
},
{
- "id": 24063,
+ "id": 24532,
"properties": {
"facing": "south",
"half": "lower",
@@ -262908,7 +269175,7 @@
}
},
{
- "id": 24064,
+ "id": 24533,
"properties": {
"facing": "south",
"half": "lower",
@@ -262918,7 +269185,7 @@
}
},
{
- "id": 24065,
+ "id": 24534,
"properties": {
"facing": "south",
"half": "lower",
@@ -262928,7 +269195,7 @@
}
},
{
- "id": 24066,
+ "id": 24535,
"properties": {
"facing": "south",
"half": "lower",
@@ -262938,7 +269205,7 @@
}
},
{
- "id": 24067,
+ "id": 24536,
"properties": {
"facing": "south",
"half": "lower",
@@ -262948,7 +269215,7 @@
}
},
{
- "id": 24068,
+ "id": 24537,
"properties": {
"facing": "west",
"half": "upper",
@@ -262958,7 +269225,7 @@
}
},
{
- "id": 24069,
+ "id": 24538,
"properties": {
"facing": "west",
"half": "upper",
@@ -262968,7 +269235,7 @@
}
},
{
- "id": 24070,
+ "id": 24539,
"properties": {
"facing": "west",
"half": "upper",
@@ -262978,7 +269245,7 @@
}
},
{
- "id": 24071,
+ "id": 24540,
"properties": {
"facing": "west",
"half": "upper",
@@ -262988,7 +269255,7 @@
}
},
{
- "id": 24072,
+ "id": 24541,
"properties": {
"facing": "west",
"half": "upper",
@@ -262998,7 +269265,7 @@
}
},
{
- "id": 24073,
+ "id": 24542,
"properties": {
"facing": "west",
"half": "upper",
@@ -263008,7 +269275,7 @@
}
},
{
- "id": 24074,
+ "id": 24543,
"properties": {
"facing": "west",
"half": "upper",
@@ -263018,7 +269285,7 @@
}
},
{
- "id": 24075,
+ "id": 24544,
"properties": {
"facing": "west",
"half": "upper",
@@ -263028,7 +269295,7 @@
}
},
{
- "id": 24076,
+ "id": 24545,
"properties": {
"facing": "west",
"half": "lower",
@@ -263038,7 +269305,7 @@
}
},
{
- "id": 24077,
+ "id": 24546,
"properties": {
"facing": "west",
"half": "lower",
@@ -263048,7 +269315,7 @@
}
},
{
- "id": 24078,
+ "id": 24547,
"properties": {
"facing": "west",
"half": "lower",
@@ -263058,7 +269325,7 @@
}
},
{
- "id": 24079,
+ "id": 24548,
"properties": {
"facing": "west",
"half": "lower",
@@ -263068,7 +269335,7 @@
}
},
{
- "id": 24080,
+ "id": 24549,
"properties": {
"facing": "west",
"half": "lower",
@@ -263078,7 +269345,7 @@
}
},
{
- "id": 24081,
+ "id": 24550,
"properties": {
"facing": "west",
"half": "lower",
@@ -263088,7 +269355,7 @@
}
},
{
- "id": 24082,
+ "id": 24551,
"properties": {
"facing": "west",
"half": "lower",
@@ -263098,7 +269365,7 @@
}
},
{
- "id": 24083,
+ "id": 24552,
"properties": {
"facing": "west",
"half": "lower",
@@ -263108,7 +269375,7 @@
}
},
{
- "id": 24084,
+ "id": 24553,
"properties": {
"facing": "east",
"half": "upper",
@@ -263118,7 +269385,7 @@
}
},
{
- "id": 24085,
+ "id": 24554,
"properties": {
"facing": "east",
"half": "upper",
@@ -263128,7 +269395,7 @@
}
},
{
- "id": 24086,
+ "id": 24555,
"properties": {
"facing": "east",
"half": "upper",
@@ -263138,7 +269405,7 @@
}
},
{
- "id": 24087,
+ "id": 24556,
"properties": {
"facing": "east",
"half": "upper",
@@ -263148,7 +269415,7 @@
}
},
{
- "id": 24088,
+ "id": 24557,
"properties": {
"facing": "east",
"half": "upper",
@@ -263158,7 +269425,7 @@
}
},
{
- "id": 24089,
+ "id": 24558,
"properties": {
"facing": "east",
"half": "upper",
@@ -263168,7 +269435,7 @@
}
},
{
- "id": 24090,
+ "id": 24559,
"properties": {
"facing": "east",
"half": "upper",
@@ -263178,7 +269445,7 @@
}
},
{
- "id": 24091,
+ "id": 24560,
"properties": {
"facing": "east",
"half": "upper",
@@ -263188,7 +269455,7 @@
}
},
{
- "id": 24092,
+ "id": 24561,
"properties": {
"facing": "east",
"half": "lower",
@@ -263198,7 +269465,7 @@
}
},
{
- "id": 24093,
+ "id": 24562,
"properties": {
"facing": "east",
"half": "lower",
@@ -263208,7 +269475,7 @@
}
},
{
- "id": 24094,
+ "id": 24563,
"properties": {
"facing": "east",
"half": "lower",
@@ -263218,7 +269485,7 @@
}
},
{
- "id": 24095,
+ "id": 24564,
"properties": {
"facing": "east",
"half": "lower",
@@ -263228,7 +269495,7 @@
}
},
{
- "id": 24096,
+ "id": 24565,
"properties": {
"facing": "east",
"half": "lower",
@@ -263238,7 +269505,7 @@
}
},
{
- "id": 24097,
+ "id": 24566,
"properties": {
"facing": "east",
"half": "lower",
@@ -263248,7 +269515,7 @@
}
},
{
- "id": 24098,
+ "id": 24567,
"properties": {
"facing": "east",
"half": "lower",
@@ -263258,7 +269525,7 @@
}
},
{
- "id": 24099,
+ "id": 24568,
"properties": {
"facing": "east",
"half": "lower",
@@ -263282,14 +269549,14 @@
},
"states": [
{
- "id": 24690,
+ "id": 25159,
"properties": {
"waterlogged": "true"
}
},
{
"default": true,
- "id": 24691,
+ "id": 25160,
"properties": {
"waterlogged": "false"
}
@@ -263328,7 +269595,7 @@
},
"states": [
{
- "id": 24548,
+ "id": 25017,
"properties": {
"facing": "north",
"half": "top",
@@ -263338,7 +269605,7 @@
}
},
{
- "id": 24549,
+ "id": 25018,
"properties": {
"facing": "north",
"half": "top",
@@ -263348,7 +269615,7 @@
}
},
{
- "id": 24550,
+ "id": 25019,
"properties": {
"facing": "north",
"half": "top",
@@ -263358,7 +269625,7 @@
}
},
{
- "id": 24551,
+ "id": 25020,
"properties": {
"facing": "north",
"half": "top",
@@ -263368,7 +269635,7 @@
}
},
{
- "id": 24552,
+ "id": 25021,
"properties": {
"facing": "north",
"half": "top",
@@ -263378,7 +269645,7 @@
}
},
{
- "id": 24553,
+ "id": 25022,
"properties": {
"facing": "north",
"half": "top",
@@ -263388,7 +269655,7 @@
}
},
{
- "id": 24554,
+ "id": 25023,
"properties": {
"facing": "north",
"half": "top",
@@ -263398,7 +269665,7 @@
}
},
{
- "id": 24555,
+ "id": 25024,
"properties": {
"facing": "north",
"half": "top",
@@ -263408,7 +269675,7 @@
}
},
{
- "id": 24556,
+ "id": 25025,
"properties": {
"facing": "north",
"half": "bottom",
@@ -263418,7 +269685,7 @@
}
},
{
- "id": 24557,
+ "id": 25026,
"properties": {
"facing": "north",
"half": "bottom",
@@ -263428,7 +269695,7 @@
}
},
{
- "id": 24558,
+ "id": 25027,
"properties": {
"facing": "north",
"half": "bottom",
@@ -263438,7 +269705,7 @@
}
},
{
- "id": 24559,
+ "id": 25028,
"properties": {
"facing": "north",
"half": "bottom",
@@ -263448,7 +269715,7 @@
}
},
{
- "id": 24560,
+ "id": 25029,
"properties": {
"facing": "north",
"half": "bottom",
@@ -263458,7 +269725,7 @@
}
},
{
- "id": 24561,
+ "id": 25030,
"properties": {
"facing": "north",
"half": "bottom",
@@ -263468,7 +269735,7 @@
}
},
{
- "id": 24562,
+ "id": 25031,
"properties": {
"facing": "north",
"half": "bottom",
@@ -263479,7 +269746,7 @@
},
{
"default": true,
- "id": 24563,
+ "id": 25032,
"properties": {
"facing": "north",
"half": "bottom",
@@ -263489,7 +269756,7 @@
}
},
{
- "id": 24564,
+ "id": 25033,
"properties": {
"facing": "south",
"half": "top",
@@ -263499,7 +269766,7 @@
}
},
{
- "id": 24565,
+ "id": 25034,
"properties": {
"facing": "south",
"half": "top",
@@ -263509,7 +269776,7 @@
}
},
{
- "id": 24566,
+ "id": 25035,
"properties": {
"facing": "south",
"half": "top",
@@ -263519,7 +269786,7 @@
}
},
{
- "id": 24567,
+ "id": 25036,
"properties": {
"facing": "south",
"half": "top",
@@ -263529,7 +269796,7 @@
}
},
{
- "id": 24568,
+ "id": 25037,
"properties": {
"facing": "south",
"half": "top",
@@ -263539,7 +269806,7 @@
}
},
{
- "id": 24569,
+ "id": 25038,
"properties": {
"facing": "south",
"half": "top",
@@ -263549,7 +269816,7 @@
}
},
{
- "id": 24570,
+ "id": 25039,
"properties": {
"facing": "south",
"half": "top",
@@ -263559,7 +269826,7 @@
}
},
{
- "id": 24571,
+ "id": 25040,
"properties": {
"facing": "south",
"half": "top",
@@ -263569,7 +269836,7 @@
}
},
{
- "id": 24572,
+ "id": 25041,
"properties": {
"facing": "south",
"half": "bottom",
@@ -263579,7 +269846,7 @@
}
},
{
- "id": 24573,
+ "id": 25042,
"properties": {
"facing": "south",
"half": "bottom",
@@ -263589,7 +269856,7 @@
}
},
{
- "id": 24574,
+ "id": 25043,
"properties": {
"facing": "south",
"half": "bottom",
@@ -263599,7 +269866,7 @@
}
},
{
- "id": 24575,
+ "id": 25044,
"properties": {
"facing": "south",
"half": "bottom",
@@ -263609,7 +269876,7 @@
}
},
{
- "id": 24576,
+ "id": 25045,
"properties": {
"facing": "south",
"half": "bottom",
@@ -263619,7 +269886,7 @@
}
},
{
- "id": 24577,
+ "id": 25046,
"properties": {
"facing": "south",
"half": "bottom",
@@ -263629,7 +269896,7 @@
}
},
{
- "id": 24578,
+ "id": 25047,
"properties": {
"facing": "south",
"half": "bottom",
@@ -263639,7 +269906,7 @@
}
},
{
- "id": 24579,
+ "id": 25048,
"properties": {
"facing": "south",
"half": "bottom",
@@ -263649,7 +269916,7 @@
}
},
{
- "id": 24580,
+ "id": 25049,
"properties": {
"facing": "west",
"half": "top",
@@ -263659,7 +269926,7 @@
}
},
{
- "id": 24581,
+ "id": 25050,
"properties": {
"facing": "west",
"half": "top",
@@ -263669,7 +269936,7 @@
}
},
{
- "id": 24582,
+ "id": 25051,
"properties": {
"facing": "west",
"half": "top",
@@ -263679,7 +269946,7 @@
}
},
{
- "id": 24583,
+ "id": 25052,
"properties": {
"facing": "west",
"half": "top",
@@ -263689,7 +269956,7 @@
}
},
{
- "id": 24584,
+ "id": 25053,
"properties": {
"facing": "west",
"half": "top",
@@ -263699,7 +269966,7 @@
}
},
{
- "id": 24585,
+ "id": 25054,
"properties": {
"facing": "west",
"half": "top",
@@ -263709,7 +269976,7 @@
}
},
{
- "id": 24586,
+ "id": 25055,
"properties": {
"facing": "west",
"half": "top",
@@ -263719,7 +269986,7 @@
}
},
{
- "id": 24587,
+ "id": 25056,
"properties": {
"facing": "west",
"half": "top",
@@ -263729,7 +269996,7 @@
}
},
{
- "id": 24588,
+ "id": 25057,
"properties": {
"facing": "west",
"half": "bottom",
@@ -263739,7 +270006,7 @@
}
},
{
- "id": 24589,
+ "id": 25058,
"properties": {
"facing": "west",
"half": "bottom",
@@ -263749,7 +270016,7 @@
}
},
{
- "id": 24590,
+ "id": 25059,
"properties": {
"facing": "west",
"half": "bottom",
@@ -263759,7 +270026,7 @@
}
},
{
- "id": 24591,
+ "id": 25060,
"properties": {
"facing": "west",
"half": "bottom",
@@ -263769,7 +270036,7 @@
}
},
{
- "id": 24592,
+ "id": 25061,
"properties": {
"facing": "west",
"half": "bottom",
@@ -263779,7 +270046,7 @@
}
},
{
- "id": 24593,
+ "id": 25062,
"properties": {
"facing": "west",
"half": "bottom",
@@ -263789,7 +270056,7 @@
}
},
{
- "id": 24594,
+ "id": 25063,
"properties": {
"facing": "west",
"half": "bottom",
@@ -263799,7 +270066,7 @@
}
},
{
- "id": 24595,
+ "id": 25064,
"properties": {
"facing": "west",
"half": "bottom",
@@ -263809,7 +270076,7 @@
}
},
{
- "id": 24596,
+ "id": 25065,
"properties": {
"facing": "east",
"half": "top",
@@ -263819,7 +270086,7 @@
}
},
{
- "id": 24597,
+ "id": 25066,
"properties": {
"facing": "east",
"half": "top",
@@ -263829,7 +270096,7 @@
}
},
{
- "id": 24598,
+ "id": 25067,
"properties": {
"facing": "east",
"half": "top",
@@ -263839,7 +270106,7 @@
}
},
{
- "id": 24599,
+ "id": 25068,
"properties": {
"facing": "east",
"half": "top",
@@ -263849,7 +270116,7 @@
}
},
{
- "id": 24600,
+ "id": 25069,
"properties": {
"facing": "east",
"half": "top",
@@ -263859,7 +270126,7 @@
}
},
{
- "id": 24601,
+ "id": 25070,
"properties": {
"facing": "east",
"half": "top",
@@ -263869,7 +270136,7 @@
}
},
{
- "id": 24602,
+ "id": 25071,
"properties": {
"facing": "east",
"half": "top",
@@ -263879,7 +270146,7 @@
}
},
{
- "id": 24603,
+ "id": 25072,
"properties": {
"facing": "east",
"half": "top",
@@ -263889,7 +270156,7 @@
}
},
{
- "id": 24604,
+ "id": 25073,
"properties": {
"facing": "east",
"half": "bottom",
@@ -263899,7 +270166,7 @@
}
},
{
- "id": 24605,
+ "id": 25074,
"properties": {
"facing": "east",
"half": "bottom",
@@ -263909,7 +270176,7 @@
}
},
{
- "id": 24606,
+ "id": 25075,
"properties": {
"facing": "east",
"half": "bottom",
@@ -263919,7 +270186,7 @@
}
},
{
- "id": 24607,
+ "id": 25076,
"properties": {
"facing": "east",
"half": "bottom",
@@ -263929,7 +270196,7 @@
}
},
{
- "id": 24608,
+ "id": 25077,
"properties": {
"facing": "east",
"half": "bottom",
@@ -263939,7 +270206,7 @@
}
},
{
- "id": 24609,
+ "id": 25078,
"properties": {
"facing": "east",
"half": "bottom",
@@ -263949,7 +270216,7 @@
}
},
{
- "id": 24610,
+ "id": 25079,
"properties": {
"facing": "east",
"half": "bottom",
@@ -263959,7 +270226,7 @@
}
},
{
- "id": 24611,
+ "id": 25080,
"properties": {
"facing": "east",
"half": "bottom",
@@ -263978,7 +270245,7 @@
"states": [
{
"default": true,
- "id": 23304
+ "id": 23773
}
]
},
@@ -264000,21 +270267,21 @@
},
"states": [
{
- "id": 23628,
+ "id": 24097,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 23629,
+ "id": 24098,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 23630,
+ "id": 24099,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -264022,21 +270289,21 @@
},
{
"default": true,
- "id": 23631,
+ "id": 24100,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 23632,
+ "id": 24101,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 23633,
+ "id": 24102,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -264077,7 +270344,7 @@
},
"states": [
{
- "id": 23308,
+ "id": 23777,
"properties": {
"facing": "north",
"half": "top",
@@ -264086,7 +270353,7 @@
}
},
{
- "id": 23309,
+ "id": 23778,
"properties": {
"facing": "north",
"half": "top",
@@ -264095,7 +270362,7 @@
}
},
{
- "id": 23310,
+ "id": 23779,
"properties": {
"facing": "north",
"half": "top",
@@ -264104,7 +270371,7 @@
}
},
{
- "id": 23311,
+ "id": 23780,
"properties": {
"facing": "north",
"half": "top",
@@ -264113,7 +270380,7 @@
}
},
{
- "id": 23312,
+ "id": 23781,
"properties": {
"facing": "north",
"half": "top",
@@ -264122,7 +270389,7 @@
}
},
{
- "id": 23313,
+ "id": 23782,
"properties": {
"facing": "north",
"half": "top",
@@ -264131,7 +270398,7 @@
}
},
{
- "id": 23314,
+ "id": 23783,
"properties": {
"facing": "north",
"half": "top",
@@ -264140,7 +270407,7 @@
}
},
{
- "id": 23315,
+ "id": 23784,
"properties": {
"facing": "north",
"half": "top",
@@ -264149,7 +270416,7 @@
}
},
{
- "id": 23316,
+ "id": 23785,
"properties": {
"facing": "north",
"half": "top",
@@ -264158,7 +270425,7 @@
}
},
{
- "id": 23317,
+ "id": 23786,
"properties": {
"facing": "north",
"half": "top",
@@ -264167,7 +270434,7 @@
}
},
{
- "id": 23318,
+ "id": 23787,
"properties": {
"facing": "north",
"half": "bottom",
@@ -264177,7 +270444,7 @@
},
{
"default": true,
- "id": 23319,
+ "id": 23788,
"properties": {
"facing": "north",
"half": "bottom",
@@ -264186,7 +270453,7 @@
}
},
{
- "id": 23320,
+ "id": 23789,
"properties": {
"facing": "north",
"half": "bottom",
@@ -264195,7 +270462,7 @@
}
},
{
- "id": 23321,
+ "id": 23790,
"properties": {
"facing": "north",
"half": "bottom",
@@ -264204,7 +270471,7 @@
}
},
{
- "id": 23322,
+ "id": 23791,
"properties": {
"facing": "north",
"half": "bottom",
@@ -264213,7 +270480,7 @@
}
},
{
- "id": 23323,
+ "id": 23792,
"properties": {
"facing": "north",
"half": "bottom",
@@ -264222,7 +270489,7 @@
}
},
{
- "id": 23324,
+ "id": 23793,
"properties": {
"facing": "north",
"half": "bottom",
@@ -264231,7 +270498,7 @@
}
},
{
- "id": 23325,
+ "id": 23794,
"properties": {
"facing": "north",
"half": "bottom",
@@ -264240,7 +270507,7 @@
}
},
{
- "id": 23326,
+ "id": 23795,
"properties": {
"facing": "north",
"half": "bottom",
@@ -264249,7 +270516,7 @@
}
},
{
- "id": 23327,
+ "id": 23796,
"properties": {
"facing": "north",
"half": "bottom",
@@ -264258,7 +270525,7 @@
}
},
{
- "id": 23328,
+ "id": 23797,
"properties": {
"facing": "south",
"half": "top",
@@ -264267,7 +270534,7 @@
}
},
{
- "id": 23329,
+ "id": 23798,
"properties": {
"facing": "south",
"half": "top",
@@ -264276,7 +270543,7 @@
}
},
{
- "id": 23330,
+ "id": 23799,
"properties": {
"facing": "south",
"half": "top",
@@ -264285,7 +270552,7 @@
}
},
{
- "id": 23331,
+ "id": 23800,
"properties": {
"facing": "south",
"half": "top",
@@ -264294,7 +270561,7 @@
}
},
{
- "id": 23332,
+ "id": 23801,
"properties": {
"facing": "south",
"half": "top",
@@ -264303,7 +270570,7 @@
}
},
{
- "id": 23333,
+ "id": 23802,
"properties": {
"facing": "south",
"half": "top",
@@ -264312,7 +270579,7 @@
}
},
{
- "id": 23334,
+ "id": 23803,
"properties": {
"facing": "south",
"half": "top",
@@ -264321,7 +270588,7 @@
}
},
{
- "id": 23335,
+ "id": 23804,
"properties": {
"facing": "south",
"half": "top",
@@ -264330,7 +270597,7 @@
}
},
{
- "id": 23336,
+ "id": 23805,
"properties": {
"facing": "south",
"half": "top",
@@ -264339,7 +270606,7 @@
}
},
{
- "id": 23337,
+ "id": 23806,
"properties": {
"facing": "south",
"half": "top",
@@ -264348,7 +270615,7 @@
}
},
{
- "id": 23338,
+ "id": 23807,
"properties": {
"facing": "south",
"half": "bottom",
@@ -264357,7 +270624,7 @@
}
},
{
- "id": 23339,
+ "id": 23808,
"properties": {
"facing": "south",
"half": "bottom",
@@ -264366,7 +270633,7 @@
}
},
{
- "id": 23340,
+ "id": 23809,
"properties": {
"facing": "south",
"half": "bottom",
@@ -264375,7 +270642,7 @@
}
},
{
- "id": 23341,
+ "id": 23810,
"properties": {
"facing": "south",
"half": "bottom",
@@ -264384,7 +270651,7 @@
}
},
{
- "id": 23342,
+ "id": 23811,
"properties": {
"facing": "south",
"half": "bottom",
@@ -264393,7 +270660,7 @@
}
},
{
- "id": 23343,
+ "id": 23812,
"properties": {
"facing": "south",
"half": "bottom",
@@ -264402,7 +270669,7 @@
}
},
{
- "id": 23344,
+ "id": 23813,
"properties": {
"facing": "south",
"half": "bottom",
@@ -264411,7 +270678,7 @@
}
},
{
- "id": 23345,
+ "id": 23814,
"properties": {
"facing": "south",
"half": "bottom",
@@ -264420,7 +270687,7 @@
}
},
{
- "id": 23346,
+ "id": 23815,
"properties": {
"facing": "south",
"half": "bottom",
@@ -264429,7 +270696,7 @@
}
},
{
- "id": 23347,
+ "id": 23816,
"properties": {
"facing": "south",
"half": "bottom",
@@ -264438,7 +270705,7 @@
}
},
{
- "id": 23348,
+ "id": 23817,
"properties": {
"facing": "west",
"half": "top",
@@ -264447,7 +270714,7 @@
}
},
{
- "id": 23349,
+ "id": 23818,
"properties": {
"facing": "west",
"half": "top",
@@ -264456,7 +270723,7 @@
}
},
{
- "id": 23350,
+ "id": 23819,
"properties": {
"facing": "west",
"half": "top",
@@ -264465,7 +270732,7 @@
}
},
{
- "id": 23351,
+ "id": 23820,
"properties": {
"facing": "west",
"half": "top",
@@ -264474,7 +270741,7 @@
}
},
{
- "id": 23352,
+ "id": 23821,
"properties": {
"facing": "west",
"half": "top",
@@ -264483,7 +270750,7 @@
}
},
{
- "id": 23353,
+ "id": 23822,
"properties": {
"facing": "west",
"half": "top",
@@ -264492,7 +270759,7 @@
}
},
{
- "id": 23354,
+ "id": 23823,
"properties": {
"facing": "west",
"half": "top",
@@ -264501,7 +270768,7 @@
}
},
{
- "id": 23355,
+ "id": 23824,
"properties": {
"facing": "west",
"half": "top",
@@ -264510,7 +270777,7 @@
}
},
{
- "id": 23356,
+ "id": 23825,
"properties": {
"facing": "west",
"half": "top",
@@ -264519,7 +270786,7 @@
}
},
{
- "id": 23357,
+ "id": 23826,
"properties": {
"facing": "west",
"half": "top",
@@ -264528,7 +270795,7 @@
}
},
{
- "id": 23358,
+ "id": 23827,
"properties": {
"facing": "west",
"half": "bottom",
@@ -264537,7 +270804,7 @@
}
},
{
- "id": 23359,
+ "id": 23828,
"properties": {
"facing": "west",
"half": "bottom",
@@ -264546,7 +270813,7 @@
}
},
{
- "id": 23360,
+ "id": 23829,
"properties": {
"facing": "west",
"half": "bottom",
@@ -264555,7 +270822,7 @@
}
},
{
- "id": 23361,
+ "id": 23830,
"properties": {
"facing": "west",
"half": "bottom",
@@ -264564,7 +270831,7 @@
}
},
{
- "id": 23362,
+ "id": 23831,
"properties": {
"facing": "west",
"half": "bottom",
@@ -264573,7 +270840,7 @@
}
},
{
- "id": 23363,
+ "id": 23832,
"properties": {
"facing": "west",
"half": "bottom",
@@ -264582,7 +270849,7 @@
}
},
{
- "id": 23364,
+ "id": 23833,
"properties": {
"facing": "west",
"half": "bottom",
@@ -264591,7 +270858,7 @@
}
},
{
- "id": 23365,
+ "id": 23834,
"properties": {
"facing": "west",
"half": "bottom",
@@ -264600,7 +270867,7 @@
}
},
{
- "id": 23366,
+ "id": 23835,
"properties": {
"facing": "west",
"half": "bottom",
@@ -264609,7 +270876,7 @@
}
},
{
- "id": 23367,
+ "id": 23836,
"properties": {
"facing": "west",
"half": "bottom",
@@ -264618,7 +270885,7 @@
}
},
{
- "id": 23368,
+ "id": 23837,
"properties": {
"facing": "east",
"half": "top",
@@ -264627,7 +270894,7 @@
}
},
{
- "id": 23369,
+ "id": 23838,
"properties": {
"facing": "east",
"half": "top",
@@ -264636,7 +270903,7 @@
}
},
{
- "id": 23370,
+ "id": 23839,
"properties": {
"facing": "east",
"half": "top",
@@ -264645,7 +270912,7 @@
}
},
{
- "id": 23371,
+ "id": 23840,
"properties": {
"facing": "east",
"half": "top",
@@ -264654,7 +270921,7 @@
}
},
{
- "id": 23372,
+ "id": 23841,
"properties": {
"facing": "east",
"half": "top",
@@ -264663,7 +270930,7 @@
}
},
{
- "id": 23373,
+ "id": 23842,
"properties": {
"facing": "east",
"half": "top",
@@ -264672,7 +270939,7 @@
}
},
{
- "id": 23374,
+ "id": 23843,
"properties": {
"facing": "east",
"half": "top",
@@ -264681,7 +270948,7 @@
}
},
{
- "id": 23375,
+ "id": 23844,
"properties": {
"facing": "east",
"half": "top",
@@ -264690,7 +270957,7 @@
}
},
{
- "id": 23376,
+ "id": 23845,
"properties": {
"facing": "east",
"half": "top",
@@ -264699,7 +270966,7 @@
}
},
{
- "id": 23377,
+ "id": 23846,
"properties": {
"facing": "east",
"half": "top",
@@ -264708,7 +270975,7 @@
}
},
{
- "id": 23378,
+ "id": 23847,
"properties": {
"facing": "east",
"half": "bottom",
@@ -264717,7 +270984,7 @@
}
},
{
- "id": 23379,
+ "id": 23848,
"properties": {
"facing": "east",
"half": "bottom",
@@ -264726,7 +270993,7 @@
}
},
{
- "id": 23380,
+ "id": 23849,
"properties": {
"facing": "east",
"half": "bottom",
@@ -264735,7 +271002,7 @@
}
},
{
- "id": 23381,
+ "id": 23850,
"properties": {
"facing": "east",
"half": "bottom",
@@ -264744,7 +271011,7 @@
}
},
{
- "id": 23382,
+ "id": 23851,
"properties": {
"facing": "east",
"half": "bottom",
@@ -264753,7 +271020,7 @@
}
},
{
- "id": 23383,
+ "id": 23852,
"properties": {
"facing": "east",
"half": "bottom",
@@ -264762,7 +271029,7 @@
}
},
{
- "id": 23384,
+ "id": 23853,
"properties": {
"facing": "east",
"half": "bottom",
@@ -264771,7 +271038,7 @@
}
},
{
- "id": 23385,
+ "id": 23854,
"properties": {
"facing": "east",
"half": "bottom",
@@ -264780,7 +271047,7 @@
}
},
{
- "id": 23386,
+ "id": 23855,
"properties": {
"facing": "east",
"half": "bottom",
@@ -264789,7 +271056,7 @@
}
},
{
- "id": 23387,
+ "id": 23856,
"properties": {
"facing": "east",
"half": "bottom",
@@ -264807,7 +271074,7 @@
"states": [
{
"default": true,
- "id": 22953
+ "id": 23422
}
]
},
@@ -264819,7 +271086,7 @@
"states": [
{
"default": true,
- "id": 23301
+ "id": 23770
}
]
},
@@ -264840,21 +271107,21 @@
},
"states": [
{
- "id": 24716,
+ "id": 25185,
"properties": {
"lit": "true",
"powered": "true"
}
},
{
- "id": 24717,
+ "id": 25186,
"properties": {
"lit": "true",
"powered": "false"
}
},
{
- "id": 24718,
+ "id": 25187,
"properties": {
"lit": "false",
"powered": "true"
@@ -264862,7 +271129,7 @@
},
{
"default": true,
- "id": 24719,
+ "id": 25188,
"properties": {
"lit": "false",
"powered": "false"
@@ -264902,7 +271169,7 @@
},
"states": [
{
- "id": 24100,
+ "id": 24569,
"properties": {
"facing": "north",
"half": "upper",
@@ -264912,7 +271179,7 @@
}
},
{
- "id": 24101,
+ "id": 24570,
"properties": {
"facing": "north",
"half": "upper",
@@ -264922,7 +271189,7 @@
}
},
{
- "id": 24102,
+ "id": 24571,
"properties": {
"facing": "north",
"half": "upper",
@@ -264932,7 +271199,7 @@
}
},
{
- "id": 24103,
+ "id": 24572,
"properties": {
"facing": "north",
"half": "upper",
@@ -264942,7 +271209,7 @@
}
},
{
- "id": 24104,
+ "id": 24573,
"properties": {
"facing": "north",
"half": "upper",
@@ -264952,7 +271219,7 @@
}
},
{
- "id": 24105,
+ "id": 24574,
"properties": {
"facing": "north",
"half": "upper",
@@ -264962,7 +271229,7 @@
}
},
{
- "id": 24106,
+ "id": 24575,
"properties": {
"facing": "north",
"half": "upper",
@@ -264972,7 +271239,7 @@
}
},
{
- "id": 24107,
+ "id": 24576,
"properties": {
"facing": "north",
"half": "upper",
@@ -264982,7 +271249,7 @@
}
},
{
- "id": 24108,
+ "id": 24577,
"properties": {
"facing": "north",
"half": "lower",
@@ -264992,7 +271259,7 @@
}
},
{
- "id": 24109,
+ "id": 24578,
"properties": {
"facing": "north",
"half": "lower",
@@ -265002,7 +271269,7 @@
}
},
{
- "id": 24110,
+ "id": 24579,
"properties": {
"facing": "north",
"half": "lower",
@@ -265013,7 +271280,7 @@
},
{
"default": true,
- "id": 24111,
+ "id": 24580,
"properties": {
"facing": "north",
"half": "lower",
@@ -265023,7 +271290,7 @@
}
},
{
- "id": 24112,
+ "id": 24581,
"properties": {
"facing": "north",
"half": "lower",
@@ -265033,7 +271300,7 @@
}
},
{
- "id": 24113,
+ "id": 24582,
"properties": {
"facing": "north",
"half": "lower",
@@ -265043,7 +271310,7 @@
}
},
{
- "id": 24114,
+ "id": 24583,
"properties": {
"facing": "north",
"half": "lower",
@@ -265053,7 +271320,7 @@
}
},
{
- "id": 24115,
+ "id": 24584,
"properties": {
"facing": "north",
"half": "lower",
@@ -265063,7 +271330,7 @@
}
},
{
- "id": 24116,
+ "id": 24585,
"properties": {
"facing": "south",
"half": "upper",
@@ -265073,7 +271340,7 @@
}
},
{
- "id": 24117,
+ "id": 24586,
"properties": {
"facing": "south",
"half": "upper",
@@ -265083,7 +271350,7 @@
}
},
{
- "id": 24118,
+ "id": 24587,
"properties": {
"facing": "south",
"half": "upper",
@@ -265093,7 +271360,7 @@
}
},
{
- "id": 24119,
+ "id": 24588,
"properties": {
"facing": "south",
"half": "upper",
@@ -265103,7 +271370,7 @@
}
},
{
- "id": 24120,
+ "id": 24589,
"properties": {
"facing": "south",
"half": "upper",
@@ -265113,7 +271380,7 @@
}
},
{
- "id": 24121,
+ "id": 24590,
"properties": {
"facing": "south",
"half": "upper",
@@ -265123,7 +271390,7 @@
}
},
{
- "id": 24122,
+ "id": 24591,
"properties": {
"facing": "south",
"half": "upper",
@@ -265133,7 +271400,7 @@
}
},
{
- "id": 24123,
+ "id": 24592,
"properties": {
"facing": "south",
"half": "upper",
@@ -265143,7 +271410,7 @@
}
},
{
- "id": 24124,
+ "id": 24593,
"properties": {
"facing": "south",
"half": "lower",
@@ -265153,7 +271420,7 @@
}
},
{
- "id": 24125,
+ "id": 24594,
"properties": {
"facing": "south",
"half": "lower",
@@ -265163,7 +271430,7 @@
}
},
{
- "id": 24126,
+ "id": 24595,
"properties": {
"facing": "south",
"half": "lower",
@@ -265173,7 +271440,7 @@
}
},
{
- "id": 24127,
+ "id": 24596,
"properties": {
"facing": "south",
"half": "lower",
@@ -265183,7 +271450,7 @@
}
},
{
- "id": 24128,
+ "id": 24597,
"properties": {
"facing": "south",
"half": "lower",
@@ -265193,7 +271460,7 @@
}
},
{
- "id": 24129,
+ "id": 24598,
"properties": {
"facing": "south",
"half": "lower",
@@ -265203,7 +271470,7 @@
}
},
{
- "id": 24130,
+ "id": 24599,
"properties": {
"facing": "south",
"half": "lower",
@@ -265213,7 +271480,7 @@
}
},
{
- "id": 24131,
+ "id": 24600,
"properties": {
"facing": "south",
"half": "lower",
@@ -265223,7 +271490,7 @@
}
},
{
- "id": 24132,
+ "id": 24601,
"properties": {
"facing": "west",
"half": "upper",
@@ -265233,7 +271500,7 @@
}
},
{
- "id": 24133,
+ "id": 24602,
"properties": {
"facing": "west",
"half": "upper",
@@ -265243,7 +271510,7 @@
}
},
{
- "id": 24134,
+ "id": 24603,
"properties": {
"facing": "west",
"half": "upper",
@@ -265253,7 +271520,7 @@
}
},
{
- "id": 24135,
+ "id": 24604,
"properties": {
"facing": "west",
"half": "upper",
@@ -265263,7 +271530,7 @@
}
},
{
- "id": 24136,
+ "id": 24605,
"properties": {
"facing": "west",
"half": "upper",
@@ -265273,7 +271540,7 @@
}
},
{
- "id": 24137,
+ "id": 24606,
"properties": {
"facing": "west",
"half": "upper",
@@ -265283,7 +271550,7 @@
}
},
{
- "id": 24138,
+ "id": 24607,
"properties": {
"facing": "west",
"half": "upper",
@@ -265293,7 +271560,7 @@
}
},
{
- "id": 24139,
+ "id": 24608,
"properties": {
"facing": "west",
"half": "upper",
@@ -265303,7 +271570,7 @@
}
},
{
- "id": 24140,
+ "id": 24609,
"properties": {
"facing": "west",
"half": "lower",
@@ -265313,7 +271580,7 @@
}
},
{
- "id": 24141,
+ "id": 24610,
"properties": {
"facing": "west",
"half": "lower",
@@ -265323,7 +271590,7 @@
}
},
{
- "id": 24142,
+ "id": 24611,
"properties": {
"facing": "west",
"half": "lower",
@@ -265333,7 +271600,7 @@
}
},
{
- "id": 24143,
+ "id": 24612,
"properties": {
"facing": "west",
"half": "lower",
@@ -265343,7 +271610,7 @@
}
},
{
- "id": 24144,
+ "id": 24613,
"properties": {
"facing": "west",
"half": "lower",
@@ -265353,7 +271620,7 @@
}
},
{
- "id": 24145,
+ "id": 24614,
"properties": {
"facing": "west",
"half": "lower",
@@ -265363,7 +271630,7 @@
}
},
{
- "id": 24146,
+ "id": 24615,
"properties": {
"facing": "west",
"half": "lower",
@@ -265373,7 +271640,7 @@
}
},
{
- "id": 24147,
+ "id": 24616,
"properties": {
"facing": "west",
"half": "lower",
@@ -265383,7 +271650,7 @@
}
},
{
- "id": 24148,
+ "id": 24617,
"properties": {
"facing": "east",
"half": "upper",
@@ -265393,7 +271660,7 @@
}
},
{
- "id": 24149,
+ "id": 24618,
"properties": {
"facing": "east",
"half": "upper",
@@ -265403,7 +271670,7 @@
}
},
{
- "id": 24150,
+ "id": 24619,
"properties": {
"facing": "east",
"half": "upper",
@@ -265413,7 +271680,7 @@
}
},
{
- "id": 24151,
+ "id": 24620,
"properties": {
"facing": "east",
"half": "upper",
@@ -265423,7 +271690,7 @@
}
},
{
- "id": 24152,
+ "id": 24621,
"properties": {
"facing": "east",
"half": "upper",
@@ -265433,7 +271700,7 @@
}
},
{
- "id": 24153,
+ "id": 24622,
"properties": {
"facing": "east",
"half": "upper",
@@ -265443,7 +271710,7 @@
}
},
{
- "id": 24154,
+ "id": 24623,
"properties": {
"facing": "east",
"half": "upper",
@@ -265453,7 +271720,7 @@
}
},
{
- "id": 24155,
+ "id": 24624,
"properties": {
"facing": "east",
"half": "upper",
@@ -265463,7 +271730,7 @@
}
},
{
- "id": 24156,
+ "id": 24625,
"properties": {
"facing": "east",
"half": "lower",
@@ -265473,7 +271740,7 @@
}
},
{
- "id": 24157,
+ "id": 24626,
"properties": {
"facing": "east",
"half": "lower",
@@ -265483,7 +271750,7 @@
}
},
{
- "id": 24158,
+ "id": 24627,
"properties": {
"facing": "east",
"half": "lower",
@@ -265493,7 +271760,7 @@
}
},
{
- "id": 24159,
+ "id": 24628,
"properties": {
"facing": "east",
"half": "lower",
@@ -265503,7 +271770,7 @@
}
},
{
- "id": 24160,
+ "id": 24629,
"properties": {
"facing": "east",
"half": "lower",
@@ -265513,7 +271780,7 @@
}
},
{
- "id": 24161,
+ "id": 24630,
"properties": {
"facing": "east",
"half": "lower",
@@ -265523,7 +271790,7 @@
}
},
{
- "id": 24162,
+ "id": 24631,
"properties": {
"facing": "east",
"half": "lower",
@@ -265533,7 +271800,7 @@
}
},
{
- "id": 24163,
+ "id": 24632,
"properties": {
"facing": "east",
"half": "lower",
@@ -265557,14 +271824,14 @@
},
"states": [
{
- "id": 24688,
+ "id": 25157,
"properties": {
"waterlogged": "true"
}
},
{
"default": true,
- "id": 24689,
+ "id": 25158,
"properties": {
"waterlogged": "false"
}
@@ -265603,7 +271870,7 @@
},
"states": [
{
- "id": 24612,
+ "id": 25081,
"properties": {
"facing": "north",
"half": "top",
@@ -265613,7 +271880,7 @@
}
},
{
- "id": 24613,
+ "id": 25082,
"properties": {
"facing": "north",
"half": "top",
@@ -265623,7 +271890,7 @@
}
},
{
- "id": 24614,
+ "id": 25083,
"properties": {
"facing": "north",
"half": "top",
@@ -265633,7 +271900,7 @@
}
},
{
- "id": 24615,
+ "id": 25084,
"properties": {
"facing": "north",
"half": "top",
@@ -265643,7 +271910,7 @@
}
},
{
- "id": 24616,
+ "id": 25085,
"properties": {
"facing": "north",
"half": "top",
@@ -265653,7 +271920,7 @@
}
},
{
- "id": 24617,
+ "id": 25086,
"properties": {
"facing": "north",
"half": "top",
@@ -265663,7 +271930,7 @@
}
},
{
- "id": 24618,
+ "id": 25087,
"properties": {
"facing": "north",
"half": "top",
@@ -265673,7 +271940,7 @@
}
},
{
- "id": 24619,
+ "id": 25088,
"properties": {
"facing": "north",
"half": "top",
@@ -265683,7 +271950,7 @@
}
},
{
- "id": 24620,
+ "id": 25089,
"properties": {
"facing": "north",
"half": "bottom",
@@ -265693,7 +271960,7 @@
}
},
{
- "id": 24621,
+ "id": 25090,
"properties": {
"facing": "north",
"half": "bottom",
@@ -265703,7 +271970,7 @@
}
},
{
- "id": 24622,
+ "id": 25091,
"properties": {
"facing": "north",
"half": "bottom",
@@ -265713,7 +271980,7 @@
}
},
{
- "id": 24623,
+ "id": 25092,
"properties": {
"facing": "north",
"half": "bottom",
@@ -265723,7 +271990,7 @@
}
},
{
- "id": 24624,
+ "id": 25093,
"properties": {
"facing": "north",
"half": "bottom",
@@ -265733,7 +272000,7 @@
}
},
{
- "id": 24625,
+ "id": 25094,
"properties": {
"facing": "north",
"half": "bottom",
@@ -265743,7 +272010,7 @@
}
},
{
- "id": 24626,
+ "id": 25095,
"properties": {
"facing": "north",
"half": "bottom",
@@ -265754,7 +272021,7 @@
},
{
"default": true,
- "id": 24627,
+ "id": 25096,
"properties": {
"facing": "north",
"half": "bottom",
@@ -265764,7 +272031,7 @@
}
},
{
- "id": 24628,
+ "id": 25097,
"properties": {
"facing": "south",
"half": "top",
@@ -265774,7 +272041,7 @@
}
},
{
- "id": 24629,
+ "id": 25098,
"properties": {
"facing": "south",
"half": "top",
@@ -265784,7 +272051,7 @@
}
},
{
- "id": 24630,
+ "id": 25099,
"properties": {
"facing": "south",
"half": "top",
@@ -265794,7 +272061,7 @@
}
},
{
- "id": 24631,
+ "id": 25100,
"properties": {
"facing": "south",
"half": "top",
@@ -265804,7 +272071,7 @@
}
},
{
- "id": 24632,
+ "id": 25101,
"properties": {
"facing": "south",
"half": "top",
@@ -265814,7 +272081,7 @@
}
},
{
- "id": 24633,
+ "id": 25102,
"properties": {
"facing": "south",
"half": "top",
@@ -265824,7 +272091,7 @@
}
},
{
- "id": 24634,
+ "id": 25103,
"properties": {
"facing": "south",
"half": "top",
@@ -265834,7 +272101,7 @@
}
},
{
- "id": 24635,
+ "id": 25104,
"properties": {
"facing": "south",
"half": "top",
@@ -265844,7 +272111,7 @@
}
},
{
- "id": 24636,
+ "id": 25105,
"properties": {
"facing": "south",
"half": "bottom",
@@ -265854,7 +272121,7 @@
}
},
{
- "id": 24637,
+ "id": 25106,
"properties": {
"facing": "south",
"half": "bottom",
@@ -265864,7 +272131,7 @@
}
},
{
- "id": 24638,
+ "id": 25107,
"properties": {
"facing": "south",
"half": "bottom",
@@ -265874,7 +272141,7 @@
}
},
{
- "id": 24639,
+ "id": 25108,
"properties": {
"facing": "south",
"half": "bottom",
@@ -265884,7 +272151,7 @@
}
},
{
- "id": 24640,
+ "id": 25109,
"properties": {
"facing": "south",
"half": "bottom",
@@ -265894,7 +272161,7 @@
}
},
{
- "id": 24641,
+ "id": 25110,
"properties": {
"facing": "south",
"half": "bottom",
@@ -265904,7 +272171,7 @@
}
},
{
- "id": 24642,
+ "id": 25111,
"properties": {
"facing": "south",
"half": "bottom",
@@ -265914,7 +272181,7 @@
}
},
{
- "id": 24643,
+ "id": 25112,
"properties": {
"facing": "south",
"half": "bottom",
@@ -265924,7 +272191,7 @@
}
},
{
- "id": 24644,
+ "id": 25113,
"properties": {
"facing": "west",
"half": "top",
@@ -265934,7 +272201,7 @@
}
},
{
- "id": 24645,
+ "id": 25114,
"properties": {
"facing": "west",
"half": "top",
@@ -265944,7 +272211,7 @@
}
},
{
- "id": 24646,
+ "id": 25115,
"properties": {
"facing": "west",
"half": "top",
@@ -265954,7 +272221,7 @@
}
},
{
- "id": 24647,
+ "id": 25116,
"properties": {
"facing": "west",
"half": "top",
@@ -265964,7 +272231,7 @@
}
},
{
- "id": 24648,
+ "id": 25117,
"properties": {
"facing": "west",
"half": "top",
@@ -265974,7 +272241,7 @@
}
},
{
- "id": 24649,
+ "id": 25118,
"properties": {
"facing": "west",
"half": "top",
@@ -265984,7 +272251,7 @@
}
},
{
- "id": 24650,
+ "id": 25119,
"properties": {
"facing": "west",
"half": "top",
@@ -265994,7 +272261,7 @@
}
},
{
- "id": 24651,
+ "id": 25120,
"properties": {
"facing": "west",
"half": "top",
@@ -266004,7 +272271,7 @@
}
},
{
- "id": 24652,
+ "id": 25121,
"properties": {
"facing": "west",
"half": "bottom",
@@ -266014,7 +272281,7 @@
}
},
{
- "id": 24653,
+ "id": 25122,
"properties": {
"facing": "west",
"half": "bottom",
@@ -266024,7 +272291,7 @@
}
},
{
- "id": 24654,
+ "id": 25123,
"properties": {
"facing": "west",
"half": "bottom",
@@ -266034,7 +272301,7 @@
}
},
{
- "id": 24655,
+ "id": 25124,
"properties": {
"facing": "west",
"half": "bottom",
@@ -266044,7 +272311,7 @@
}
},
{
- "id": 24656,
+ "id": 25125,
"properties": {
"facing": "west",
"half": "bottom",
@@ -266054,7 +272321,7 @@
}
},
{
- "id": 24657,
+ "id": 25126,
"properties": {
"facing": "west",
"half": "bottom",
@@ -266064,7 +272331,7 @@
}
},
{
- "id": 24658,
+ "id": 25127,
"properties": {
"facing": "west",
"half": "bottom",
@@ -266074,7 +272341,7 @@
}
},
{
- "id": 24659,
+ "id": 25128,
"properties": {
"facing": "west",
"half": "bottom",
@@ -266084,7 +272351,7 @@
}
},
{
- "id": 24660,
+ "id": 25129,
"properties": {
"facing": "east",
"half": "top",
@@ -266094,7 +272361,7 @@
}
},
{
- "id": 24661,
+ "id": 25130,
"properties": {
"facing": "east",
"half": "top",
@@ -266104,7 +272371,7 @@
}
},
{
- "id": 24662,
+ "id": 25131,
"properties": {
"facing": "east",
"half": "top",
@@ -266114,7 +272381,7 @@
}
},
{
- "id": 24663,
+ "id": 25132,
"properties": {
"facing": "east",
"half": "top",
@@ -266124,7 +272391,7 @@
}
},
{
- "id": 24664,
+ "id": 25133,
"properties": {
"facing": "east",
"half": "top",
@@ -266134,7 +272401,7 @@
}
},
{
- "id": 24665,
+ "id": 25134,
"properties": {
"facing": "east",
"half": "top",
@@ -266144,7 +272411,7 @@
}
},
{
- "id": 24666,
+ "id": 25135,
"properties": {
"facing": "east",
"half": "top",
@@ -266154,7 +272421,7 @@
}
},
{
- "id": 24667,
+ "id": 25136,
"properties": {
"facing": "east",
"half": "top",
@@ -266164,7 +272431,7 @@
}
},
{
- "id": 24668,
+ "id": 25137,
"properties": {
"facing": "east",
"half": "bottom",
@@ -266174,7 +272441,7 @@
}
},
{
- "id": 24669,
+ "id": 25138,
"properties": {
"facing": "east",
"half": "bottom",
@@ -266184,7 +272451,7 @@
}
},
{
- "id": 24670,
+ "id": 25139,
"properties": {
"facing": "east",
"half": "bottom",
@@ -266194,7 +272461,7 @@
}
},
{
- "id": 24671,
+ "id": 25140,
"properties": {
"facing": "east",
"half": "bottom",
@@ -266204,7 +272471,7 @@
}
},
{
- "id": 24672,
+ "id": 25141,
"properties": {
"facing": "east",
"half": "bottom",
@@ -266214,7 +272481,7 @@
}
},
{
- "id": 24673,
+ "id": 25142,
"properties": {
"facing": "east",
"half": "bottom",
@@ -266224,7 +272491,7 @@
}
},
{
- "id": 24674,
+ "id": 25143,
"properties": {
"facing": "east",
"half": "bottom",
@@ -266234,7 +272501,7 @@
}
},
{
- "id": 24675,
+ "id": 25144,
"properties": {
"facing": "east",
"half": "bottom",
@@ -266253,7 +272520,7 @@
"states": [
{
"default": true,
- "id": 23305
+ "id": 23774
}
]
},
@@ -266275,21 +272542,21 @@
},
"states": [
{
- "id": 23634,
+ "id": 24103,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 23635,
+ "id": 24104,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 23636,
+ "id": 24105,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -266297,21 +272564,21 @@
},
{
"default": true,
- "id": 23637,
+ "id": 24106,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 23638,
+ "id": 24107,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 23639,
+ "id": 24108,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -266352,7 +272619,7 @@
},
"states": [
{
- "id": 23388,
+ "id": 23857,
"properties": {
"facing": "north",
"half": "top",
@@ -266361,7 +272628,7 @@
}
},
{
- "id": 23389,
+ "id": 23858,
"properties": {
"facing": "north",
"half": "top",
@@ -266370,7 +272637,7 @@
}
},
{
- "id": 23390,
+ "id": 23859,
"properties": {
"facing": "north",
"half": "top",
@@ -266379,7 +272646,7 @@
}
},
{
- "id": 23391,
+ "id": 23860,
"properties": {
"facing": "north",
"half": "top",
@@ -266388,7 +272655,7 @@
}
},
{
- "id": 23392,
+ "id": 23861,
"properties": {
"facing": "north",
"half": "top",
@@ -266397,7 +272664,7 @@
}
},
{
- "id": 23393,
+ "id": 23862,
"properties": {
"facing": "north",
"half": "top",
@@ -266406,7 +272673,7 @@
}
},
{
- "id": 23394,
+ "id": 23863,
"properties": {
"facing": "north",
"half": "top",
@@ -266415,7 +272682,7 @@
}
},
{
- "id": 23395,
+ "id": 23864,
"properties": {
"facing": "north",
"half": "top",
@@ -266424,7 +272691,7 @@
}
},
{
- "id": 23396,
+ "id": 23865,
"properties": {
"facing": "north",
"half": "top",
@@ -266433,7 +272700,7 @@
}
},
{
- "id": 23397,
+ "id": 23866,
"properties": {
"facing": "north",
"half": "top",
@@ -266442,7 +272709,7 @@
}
},
{
- "id": 23398,
+ "id": 23867,
"properties": {
"facing": "north",
"half": "bottom",
@@ -266452,7 +272719,7 @@
},
{
"default": true,
- "id": 23399,
+ "id": 23868,
"properties": {
"facing": "north",
"half": "bottom",
@@ -266461,7 +272728,7 @@
}
},
{
- "id": 23400,
+ "id": 23869,
"properties": {
"facing": "north",
"half": "bottom",
@@ -266470,7 +272737,7 @@
}
},
{
- "id": 23401,
+ "id": 23870,
"properties": {
"facing": "north",
"half": "bottom",
@@ -266479,7 +272746,7 @@
}
},
{
- "id": 23402,
+ "id": 23871,
"properties": {
"facing": "north",
"half": "bottom",
@@ -266488,7 +272755,7 @@
}
},
{
- "id": 23403,
+ "id": 23872,
"properties": {
"facing": "north",
"half": "bottom",
@@ -266497,7 +272764,7 @@
}
},
{
- "id": 23404,
+ "id": 23873,
"properties": {
"facing": "north",
"half": "bottom",
@@ -266506,7 +272773,7 @@
}
},
{
- "id": 23405,
+ "id": 23874,
"properties": {
"facing": "north",
"half": "bottom",
@@ -266515,7 +272782,7 @@
}
},
{
- "id": 23406,
+ "id": 23875,
"properties": {
"facing": "north",
"half": "bottom",
@@ -266524,7 +272791,7 @@
}
},
{
- "id": 23407,
+ "id": 23876,
"properties": {
"facing": "north",
"half": "bottom",
@@ -266533,7 +272800,7 @@
}
},
{
- "id": 23408,
+ "id": 23877,
"properties": {
"facing": "south",
"half": "top",
@@ -266542,7 +272809,7 @@
}
},
{
- "id": 23409,
+ "id": 23878,
"properties": {
"facing": "south",
"half": "top",
@@ -266551,7 +272818,7 @@
}
},
{
- "id": 23410,
+ "id": 23879,
"properties": {
"facing": "south",
"half": "top",
@@ -266560,7 +272827,7 @@
}
},
{
- "id": 23411,
+ "id": 23880,
"properties": {
"facing": "south",
"half": "top",
@@ -266569,7 +272836,7 @@
}
},
{
- "id": 23412,
+ "id": 23881,
"properties": {
"facing": "south",
"half": "top",
@@ -266578,7 +272845,7 @@
}
},
{
- "id": 23413,
+ "id": 23882,
"properties": {
"facing": "south",
"half": "top",
@@ -266587,7 +272854,7 @@
}
},
{
- "id": 23414,
+ "id": 23883,
"properties": {
"facing": "south",
"half": "top",
@@ -266596,7 +272863,7 @@
}
},
{
- "id": 23415,
+ "id": 23884,
"properties": {
"facing": "south",
"half": "top",
@@ -266605,7 +272872,7 @@
}
},
{
- "id": 23416,
+ "id": 23885,
"properties": {
"facing": "south",
"half": "top",
@@ -266614,7 +272881,7 @@
}
},
{
- "id": 23417,
+ "id": 23886,
"properties": {
"facing": "south",
"half": "top",
@@ -266623,7 +272890,7 @@
}
},
{
- "id": 23418,
+ "id": 23887,
"properties": {
"facing": "south",
"half": "bottom",
@@ -266632,7 +272899,7 @@
}
},
{
- "id": 23419,
+ "id": 23888,
"properties": {
"facing": "south",
"half": "bottom",
@@ -266641,7 +272908,7 @@
}
},
{
- "id": 23420,
+ "id": 23889,
"properties": {
"facing": "south",
"half": "bottom",
@@ -266650,7 +272917,7 @@
}
},
{
- "id": 23421,
+ "id": 23890,
"properties": {
"facing": "south",
"half": "bottom",
@@ -266659,7 +272926,7 @@
}
},
{
- "id": 23422,
+ "id": 23891,
"properties": {
"facing": "south",
"half": "bottom",
@@ -266668,7 +272935,7 @@
}
},
{
- "id": 23423,
+ "id": 23892,
"properties": {
"facing": "south",
"half": "bottom",
@@ -266677,7 +272944,7 @@
}
},
{
- "id": 23424,
+ "id": 23893,
"properties": {
"facing": "south",
"half": "bottom",
@@ -266686,7 +272953,7 @@
}
},
{
- "id": 23425,
+ "id": 23894,
"properties": {
"facing": "south",
"half": "bottom",
@@ -266695,7 +272962,7 @@
}
},
{
- "id": 23426,
+ "id": 23895,
"properties": {
"facing": "south",
"half": "bottom",
@@ -266704,7 +272971,7 @@
}
},
{
- "id": 23427,
+ "id": 23896,
"properties": {
"facing": "south",
"half": "bottom",
@@ -266713,7 +272980,7 @@
}
},
{
- "id": 23428,
+ "id": 23897,
"properties": {
"facing": "west",
"half": "top",
@@ -266722,7 +272989,7 @@
}
},
{
- "id": 23429,
+ "id": 23898,
"properties": {
"facing": "west",
"half": "top",
@@ -266731,7 +272998,7 @@
}
},
{
- "id": 23430,
+ "id": 23899,
"properties": {
"facing": "west",
"half": "top",
@@ -266740,7 +273007,7 @@
}
},
{
- "id": 23431,
+ "id": 23900,
"properties": {
"facing": "west",
"half": "top",
@@ -266749,7 +273016,7 @@
}
},
{
- "id": 23432,
+ "id": 23901,
"properties": {
"facing": "west",
"half": "top",
@@ -266758,7 +273025,7 @@
}
},
{
- "id": 23433,
+ "id": 23902,
"properties": {
"facing": "west",
"half": "top",
@@ -266767,7 +273034,7 @@
}
},
{
- "id": 23434,
+ "id": 23903,
"properties": {
"facing": "west",
"half": "top",
@@ -266776,7 +273043,7 @@
}
},
{
- "id": 23435,
+ "id": 23904,
"properties": {
"facing": "west",
"half": "top",
@@ -266785,7 +273052,7 @@
}
},
{
- "id": 23436,
+ "id": 23905,
"properties": {
"facing": "west",
"half": "top",
@@ -266794,7 +273061,7 @@
}
},
{
- "id": 23437,
+ "id": 23906,
"properties": {
"facing": "west",
"half": "top",
@@ -266803,7 +273070,7 @@
}
},
{
- "id": 23438,
+ "id": 23907,
"properties": {
"facing": "west",
"half": "bottom",
@@ -266812,7 +273079,7 @@
}
},
{
- "id": 23439,
+ "id": 23908,
"properties": {
"facing": "west",
"half": "bottom",
@@ -266821,7 +273088,7 @@
}
},
{
- "id": 23440,
+ "id": 23909,
"properties": {
"facing": "west",
"half": "bottom",
@@ -266830,7 +273097,7 @@
}
},
{
- "id": 23441,
+ "id": 23910,
"properties": {
"facing": "west",
"half": "bottom",
@@ -266839,7 +273106,7 @@
}
},
{
- "id": 23442,
+ "id": 23911,
"properties": {
"facing": "west",
"half": "bottom",
@@ -266848,7 +273115,7 @@
}
},
{
- "id": 23443,
+ "id": 23912,
"properties": {
"facing": "west",
"half": "bottom",
@@ -266857,7 +273124,7 @@
}
},
{
- "id": 23444,
+ "id": 23913,
"properties": {
"facing": "west",
"half": "bottom",
@@ -266866,7 +273133,7 @@
}
},
{
- "id": 23445,
+ "id": 23914,
"properties": {
"facing": "west",
"half": "bottom",
@@ -266875,7 +273142,7 @@
}
},
{
- "id": 23446,
+ "id": 23915,
"properties": {
"facing": "west",
"half": "bottom",
@@ -266884,7 +273151,7 @@
}
},
{
- "id": 23447,
+ "id": 23916,
"properties": {
"facing": "west",
"half": "bottom",
@@ -266893,7 +273160,7 @@
}
},
{
- "id": 23448,
+ "id": 23917,
"properties": {
"facing": "east",
"half": "top",
@@ -266902,7 +273169,7 @@
}
},
{
- "id": 23449,
+ "id": 23918,
"properties": {
"facing": "east",
"half": "top",
@@ -266911,7 +273178,7 @@
}
},
{
- "id": 23450,
+ "id": 23919,
"properties": {
"facing": "east",
"half": "top",
@@ -266920,7 +273187,7 @@
}
},
{
- "id": 23451,
+ "id": 23920,
"properties": {
"facing": "east",
"half": "top",
@@ -266929,7 +273196,7 @@
}
},
{
- "id": 23452,
+ "id": 23921,
"properties": {
"facing": "east",
"half": "top",
@@ -266938,7 +273205,7 @@
}
},
{
- "id": 23453,
+ "id": 23922,
"properties": {
"facing": "east",
"half": "top",
@@ -266947,7 +273214,7 @@
}
},
{
- "id": 23454,
+ "id": 23923,
"properties": {
"facing": "east",
"half": "top",
@@ -266956,7 +273223,7 @@
}
},
{
- "id": 23455,
+ "id": 23924,
"properties": {
"facing": "east",
"half": "top",
@@ -266965,7 +273232,7 @@
}
},
{
- "id": 23456,
+ "id": 23925,
"properties": {
"facing": "east",
"half": "top",
@@ -266974,7 +273241,7 @@
}
},
{
- "id": 23457,
+ "id": 23926,
"properties": {
"facing": "east",
"half": "top",
@@ -266983,7 +273250,7 @@
}
},
{
- "id": 23458,
+ "id": 23927,
"properties": {
"facing": "east",
"half": "bottom",
@@ -266992,7 +273259,7 @@
}
},
{
- "id": 23459,
+ "id": 23928,
"properties": {
"facing": "east",
"half": "bottom",
@@ -267001,7 +273268,7 @@
}
},
{
- "id": 23460,
+ "id": 23929,
"properties": {
"facing": "east",
"half": "bottom",
@@ -267010,7 +273277,7 @@
}
},
{
- "id": 23461,
+ "id": 23930,
"properties": {
"facing": "east",
"half": "bottom",
@@ -267019,7 +273286,7 @@
}
},
{
- "id": 23462,
+ "id": 23931,
"properties": {
"facing": "east",
"half": "bottom",
@@ -267028,7 +273295,7 @@
}
},
{
- "id": 23463,
+ "id": 23932,
"properties": {
"facing": "east",
"half": "bottom",
@@ -267037,7 +273304,7 @@
}
},
{
- "id": 23464,
+ "id": 23933,
"properties": {
"facing": "east",
"half": "bottom",
@@ -267046,7 +273313,7 @@
}
},
{
- "id": 23465,
+ "id": 23934,
"properties": {
"facing": "east",
"half": "bottom",
@@ -267055,7 +273322,7 @@
}
},
{
- "id": 23466,
+ "id": 23935,
"properties": {
"facing": "east",
"half": "bottom",
@@ -267064,7 +273331,7 @@
}
},
{
- "id": 23467,
+ "id": 23936,
"properties": {
"facing": "east",
"half": "bottom",
@@ -267083,7 +273350,7 @@
"states": [
{
"default": true,
- "id": 22949
+ "id": 23418
}
]
},
@@ -267096,7 +273363,7 @@
"states": [
{
"default": true,
- "id": 22940
+ "id": 23409
}
]
},
@@ -267118,21 +273385,21 @@
},
"states": [
{
- "id": 24700,
+ "id": 25169,
"properties": {
"lit": "true",
"powered": "true"
}
},
{
- "id": 24701,
+ "id": 25170,
"properties": {
"lit": "true",
"powered": "false"
}
},
{
- "id": 24702,
+ "id": 25171,
"properties": {
"lit": "false",
"powered": "true"
@@ -267140,7 +273407,7 @@
},
{
"default": true,
- "id": 24703,
+ "id": 25172,
"properties": {
"lit": "false",
"powered": "false"
@@ -267181,7 +273448,7 @@
},
"states": [
{
- "id": 23844,
+ "id": 24313,
"properties": {
"facing": "north",
"half": "upper",
@@ -267191,7 +273458,7 @@
}
},
{
- "id": 23845,
+ "id": 24314,
"properties": {
"facing": "north",
"half": "upper",
@@ -267201,7 +273468,7 @@
}
},
{
- "id": 23846,
+ "id": 24315,
"properties": {
"facing": "north",
"half": "upper",
@@ -267211,7 +273478,7 @@
}
},
{
- "id": 23847,
+ "id": 24316,
"properties": {
"facing": "north",
"half": "upper",
@@ -267221,7 +273488,7 @@
}
},
{
- "id": 23848,
+ "id": 24317,
"properties": {
"facing": "north",
"half": "upper",
@@ -267231,7 +273498,7 @@
}
},
{
- "id": 23849,
+ "id": 24318,
"properties": {
"facing": "north",
"half": "upper",
@@ -267241,7 +273508,7 @@
}
},
{
- "id": 23850,
+ "id": 24319,
"properties": {
"facing": "north",
"half": "upper",
@@ -267251,7 +273518,7 @@
}
},
{
- "id": 23851,
+ "id": 24320,
"properties": {
"facing": "north",
"half": "upper",
@@ -267261,7 +273528,7 @@
}
},
{
- "id": 23852,
+ "id": 24321,
"properties": {
"facing": "north",
"half": "lower",
@@ -267271,7 +273538,7 @@
}
},
{
- "id": 23853,
+ "id": 24322,
"properties": {
"facing": "north",
"half": "lower",
@@ -267281,7 +273548,7 @@
}
},
{
- "id": 23854,
+ "id": 24323,
"properties": {
"facing": "north",
"half": "lower",
@@ -267292,7 +273559,7 @@
},
{
"default": true,
- "id": 23855,
+ "id": 24324,
"properties": {
"facing": "north",
"half": "lower",
@@ -267302,7 +273569,7 @@
}
},
{
- "id": 23856,
+ "id": 24325,
"properties": {
"facing": "north",
"half": "lower",
@@ -267312,7 +273579,7 @@
}
},
{
- "id": 23857,
+ "id": 24326,
"properties": {
"facing": "north",
"half": "lower",
@@ -267322,7 +273589,7 @@
}
},
{
- "id": 23858,
+ "id": 24327,
"properties": {
"facing": "north",
"half": "lower",
@@ -267332,7 +273599,7 @@
}
},
{
- "id": 23859,
+ "id": 24328,
"properties": {
"facing": "north",
"half": "lower",
@@ -267342,7 +273609,7 @@
}
},
{
- "id": 23860,
+ "id": 24329,
"properties": {
"facing": "south",
"half": "upper",
@@ -267352,7 +273619,7 @@
}
},
{
- "id": 23861,
+ "id": 24330,
"properties": {
"facing": "south",
"half": "upper",
@@ -267362,7 +273629,7 @@
}
},
{
- "id": 23862,
+ "id": 24331,
"properties": {
"facing": "south",
"half": "upper",
@@ -267372,7 +273639,7 @@
}
},
{
- "id": 23863,
+ "id": 24332,
"properties": {
"facing": "south",
"half": "upper",
@@ -267382,7 +273649,7 @@
}
},
{
- "id": 23864,
+ "id": 24333,
"properties": {
"facing": "south",
"half": "upper",
@@ -267392,7 +273659,7 @@
}
},
{
- "id": 23865,
+ "id": 24334,
"properties": {
"facing": "south",
"half": "upper",
@@ -267402,7 +273669,7 @@
}
},
{
- "id": 23866,
+ "id": 24335,
"properties": {
"facing": "south",
"half": "upper",
@@ -267412,7 +273679,7 @@
}
},
{
- "id": 23867,
+ "id": 24336,
"properties": {
"facing": "south",
"half": "upper",
@@ -267422,7 +273689,7 @@
}
},
{
- "id": 23868,
+ "id": 24337,
"properties": {
"facing": "south",
"half": "lower",
@@ -267432,7 +273699,7 @@
}
},
{
- "id": 23869,
+ "id": 24338,
"properties": {
"facing": "south",
"half": "lower",
@@ -267442,7 +273709,7 @@
}
},
{
- "id": 23870,
+ "id": 24339,
"properties": {
"facing": "south",
"half": "lower",
@@ -267452,7 +273719,7 @@
}
},
{
- "id": 23871,
+ "id": 24340,
"properties": {
"facing": "south",
"half": "lower",
@@ -267462,7 +273729,7 @@
}
},
{
- "id": 23872,
+ "id": 24341,
"properties": {
"facing": "south",
"half": "lower",
@@ -267472,7 +273739,7 @@
}
},
{
- "id": 23873,
+ "id": 24342,
"properties": {
"facing": "south",
"half": "lower",
@@ -267482,7 +273749,7 @@
}
},
{
- "id": 23874,
+ "id": 24343,
"properties": {
"facing": "south",
"half": "lower",
@@ -267492,7 +273759,7 @@
}
},
{
- "id": 23875,
+ "id": 24344,
"properties": {
"facing": "south",
"half": "lower",
@@ -267502,7 +273769,7 @@
}
},
{
- "id": 23876,
+ "id": 24345,
"properties": {
"facing": "west",
"half": "upper",
@@ -267512,7 +273779,7 @@
}
},
{
- "id": 23877,
+ "id": 24346,
"properties": {
"facing": "west",
"half": "upper",
@@ -267522,7 +273789,7 @@
}
},
{
- "id": 23878,
+ "id": 24347,
"properties": {
"facing": "west",
"half": "upper",
@@ -267532,7 +273799,7 @@
}
},
{
- "id": 23879,
+ "id": 24348,
"properties": {
"facing": "west",
"half": "upper",
@@ -267542,7 +273809,7 @@
}
},
{
- "id": 23880,
+ "id": 24349,
"properties": {
"facing": "west",
"half": "upper",
@@ -267552,7 +273819,7 @@
}
},
{
- "id": 23881,
+ "id": 24350,
"properties": {
"facing": "west",
"half": "upper",
@@ -267562,7 +273829,7 @@
}
},
{
- "id": 23882,
+ "id": 24351,
"properties": {
"facing": "west",
"half": "upper",
@@ -267572,7 +273839,7 @@
}
},
{
- "id": 23883,
+ "id": 24352,
"properties": {
"facing": "west",
"half": "upper",
@@ -267582,7 +273849,7 @@
}
},
{
- "id": 23884,
+ "id": 24353,
"properties": {
"facing": "west",
"half": "lower",
@@ -267592,7 +273859,7 @@
}
},
{
- "id": 23885,
+ "id": 24354,
"properties": {
"facing": "west",
"half": "lower",
@@ -267602,7 +273869,7 @@
}
},
{
- "id": 23886,
+ "id": 24355,
"properties": {
"facing": "west",
"half": "lower",
@@ -267612,7 +273879,7 @@
}
},
{
- "id": 23887,
+ "id": 24356,
"properties": {
"facing": "west",
"half": "lower",
@@ -267622,7 +273889,7 @@
}
},
{
- "id": 23888,
+ "id": 24357,
"properties": {
"facing": "west",
"half": "lower",
@@ -267632,7 +273899,7 @@
}
},
{
- "id": 23889,
+ "id": 24358,
"properties": {
"facing": "west",
"half": "lower",
@@ -267642,7 +273909,7 @@
}
},
{
- "id": 23890,
+ "id": 24359,
"properties": {
"facing": "west",
"half": "lower",
@@ -267652,7 +273919,7 @@
}
},
{
- "id": 23891,
+ "id": 24360,
"properties": {
"facing": "west",
"half": "lower",
@@ -267662,7 +273929,7 @@
}
},
{
- "id": 23892,
+ "id": 24361,
"properties": {
"facing": "east",
"half": "upper",
@@ -267672,7 +273939,7 @@
}
},
{
- "id": 23893,
+ "id": 24362,
"properties": {
"facing": "east",
"half": "upper",
@@ -267682,7 +273949,7 @@
}
},
{
- "id": 23894,
+ "id": 24363,
"properties": {
"facing": "east",
"half": "upper",
@@ -267692,7 +273959,7 @@
}
},
{
- "id": 23895,
+ "id": 24364,
"properties": {
"facing": "east",
"half": "upper",
@@ -267702,7 +273969,7 @@
}
},
{
- "id": 23896,
+ "id": 24365,
"properties": {
"facing": "east",
"half": "upper",
@@ -267712,7 +273979,7 @@
}
},
{
- "id": 23897,
+ "id": 24366,
"properties": {
"facing": "east",
"half": "upper",
@@ -267722,7 +273989,7 @@
}
},
{
- "id": 23898,
+ "id": 24367,
"properties": {
"facing": "east",
"half": "upper",
@@ -267732,7 +273999,7 @@
}
},
{
- "id": 23899,
+ "id": 24368,
"properties": {
"facing": "east",
"half": "upper",
@@ -267742,7 +274009,7 @@
}
},
{
- "id": 23900,
+ "id": 24369,
"properties": {
"facing": "east",
"half": "lower",
@@ -267752,7 +274019,7 @@
}
},
{
- "id": 23901,
+ "id": 24370,
"properties": {
"facing": "east",
"half": "lower",
@@ -267762,7 +274029,7 @@
}
},
{
- "id": 23902,
+ "id": 24371,
"properties": {
"facing": "east",
"half": "lower",
@@ -267772,7 +274039,7 @@
}
},
{
- "id": 23903,
+ "id": 24372,
"properties": {
"facing": "east",
"half": "lower",
@@ -267782,7 +274049,7 @@
}
},
{
- "id": 23904,
+ "id": 24373,
"properties": {
"facing": "east",
"half": "lower",
@@ -267792,7 +274059,7 @@
}
},
{
- "id": 23905,
+ "id": 24374,
"properties": {
"facing": "east",
"half": "lower",
@@ -267802,7 +274069,7 @@
}
},
{
- "id": 23906,
+ "id": 24375,
"properties": {
"facing": "east",
"half": "lower",
@@ -267812,7 +274079,7 @@
}
},
{
- "id": 23907,
+ "id": 24376,
"properties": {
"facing": "east",
"half": "lower",
@@ -267837,14 +274104,14 @@
},
"states": [
{
- "id": 24680,
+ "id": 25149,
"properties": {
"waterlogged": "true"
}
},
{
"default": true,
- "id": 24681,
+ "id": 25150,
"properties": {
"waterlogged": "false"
}
@@ -267884,7 +274151,7 @@
},
"states": [
{
- "id": 24356,
+ "id": 24825,
"properties": {
"facing": "north",
"half": "top",
@@ -267894,7 +274161,7 @@
}
},
{
- "id": 24357,
+ "id": 24826,
"properties": {
"facing": "north",
"half": "top",
@@ -267904,7 +274171,7 @@
}
},
{
- "id": 24358,
+ "id": 24827,
"properties": {
"facing": "north",
"half": "top",
@@ -267914,7 +274181,7 @@
}
},
{
- "id": 24359,
+ "id": 24828,
"properties": {
"facing": "north",
"half": "top",
@@ -267924,7 +274191,7 @@
}
},
{
- "id": 24360,
+ "id": 24829,
"properties": {
"facing": "north",
"half": "top",
@@ -267934,7 +274201,7 @@
}
},
{
- "id": 24361,
+ "id": 24830,
"properties": {
"facing": "north",
"half": "top",
@@ -267944,7 +274211,7 @@
}
},
{
- "id": 24362,
+ "id": 24831,
"properties": {
"facing": "north",
"half": "top",
@@ -267954,7 +274221,7 @@
}
},
{
- "id": 24363,
+ "id": 24832,
"properties": {
"facing": "north",
"half": "top",
@@ -267964,7 +274231,7 @@
}
},
{
- "id": 24364,
+ "id": 24833,
"properties": {
"facing": "north",
"half": "bottom",
@@ -267974,7 +274241,7 @@
}
},
{
- "id": 24365,
+ "id": 24834,
"properties": {
"facing": "north",
"half": "bottom",
@@ -267984,7 +274251,7 @@
}
},
{
- "id": 24366,
+ "id": 24835,
"properties": {
"facing": "north",
"half": "bottom",
@@ -267994,7 +274261,7 @@
}
},
{
- "id": 24367,
+ "id": 24836,
"properties": {
"facing": "north",
"half": "bottom",
@@ -268004,7 +274271,7 @@
}
},
{
- "id": 24368,
+ "id": 24837,
"properties": {
"facing": "north",
"half": "bottom",
@@ -268014,7 +274281,7 @@
}
},
{
- "id": 24369,
+ "id": 24838,
"properties": {
"facing": "north",
"half": "bottom",
@@ -268024,7 +274291,7 @@
}
},
{
- "id": 24370,
+ "id": 24839,
"properties": {
"facing": "north",
"half": "bottom",
@@ -268035,7 +274302,7 @@
},
{
"default": true,
- "id": 24371,
+ "id": 24840,
"properties": {
"facing": "north",
"half": "bottom",
@@ -268045,7 +274312,7 @@
}
},
{
- "id": 24372,
+ "id": 24841,
"properties": {
"facing": "south",
"half": "top",
@@ -268055,7 +274322,7 @@
}
},
{
- "id": 24373,
+ "id": 24842,
"properties": {
"facing": "south",
"half": "top",
@@ -268065,7 +274332,7 @@
}
},
{
- "id": 24374,
+ "id": 24843,
"properties": {
"facing": "south",
"half": "top",
@@ -268075,7 +274342,7 @@
}
},
{
- "id": 24375,
+ "id": 24844,
"properties": {
"facing": "south",
"half": "top",
@@ -268085,7 +274352,7 @@
}
},
{
- "id": 24376,
+ "id": 24845,
"properties": {
"facing": "south",
"half": "top",
@@ -268095,7 +274362,7 @@
}
},
{
- "id": 24377,
+ "id": 24846,
"properties": {
"facing": "south",
"half": "top",
@@ -268105,7 +274372,7 @@
}
},
{
- "id": 24378,
+ "id": 24847,
"properties": {
"facing": "south",
"half": "top",
@@ -268115,7 +274382,7 @@
}
},
{
- "id": 24379,
+ "id": 24848,
"properties": {
"facing": "south",
"half": "top",
@@ -268125,7 +274392,7 @@
}
},
{
- "id": 24380,
+ "id": 24849,
"properties": {
"facing": "south",
"half": "bottom",
@@ -268135,7 +274402,7 @@
}
},
{
- "id": 24381,
+ "id": 24850,
"properties": {
"facing": "south",
"half": "bottom",
@@ -268145,7 +274412,7 @@
}
},
{
- "id": 24382,
+ "id": 24851,
"properties": {
"facing": "south",
"half": "bottom",
@@ -268155,7 +274422,7 @@
}
},
{
- "id": 24383,
+ "id": 24852,
"properties": {
"facing": "south",
"half": "bottom",
@@ -268165,7 +274432,7 @@
}
},
{
- "id": 24384,
+ "id": 24853,
"properties": {
"facing": "south",
"half": "bottom",
@@ -268175,7 +274442,7 @@
}
},
{
- "id": 24385,
+ "id": 24854,
"properties": {
"facing": "south",
"half": "bottom",
@@ -268185,7 +274452,7 @@
}
},
{
- "id": 24386,
+ "id": 24855,
"properties": {
"facing": "south",
"half": "bottom",
@@ -268195,7 +274462,7 @@
}
},
{
- "id": 24387,
+ "id": 24856,
"properties": {
"facing": "south",
"half": "bottom",
@@ -268205,7 +274472,7 @@
}
},
{
- "id": 24388,
+ "id": 24857,
"properties": {
"facing": "west",
"half": "top",
@@ -268215,7 +274482,7 @@
}
},
{
- "id": 24389,
+ "id": 24858,
"properties": {
"facing": "west",
"half": "top",
@@ -268225,7 +274492,7 @@
}
},
{
- "id": 24390,
+ "id": 24859,
"properties": {
"facing": "west",
"half": "top",
@@ -268235,7 +274502,7 @@
}
},
{
- "id": 24391,
+ "id": 24860,
"properties": {
"facing": "west",
"half": "top",
@@ -268245,7 +274512,7 @@
}
},
{
- "id": 24392,
+ "id": 24861,
"properties": {
"facing": "west",
"half": "top",
@@ -268255,7 +274522,7 @@
}
},
{
- "id": 24393,
+ "id": 24862,
"properties": {
"facing": "west",
"half": "top",
@@ -268265,7 +274532,7 @@
}
},
{
- "id": 24394,
+ "id": 24863,
"properties": {
"facing": "west",
"half": "top",
@@ -268275,7 +274542,7 @@
}
},
{
- "id": 24395,
+ "id": 24864,
"properties": {
"facing": "west",
"half": "top",
@@ -268285,7 +274552,7 @@
}
},
{
- "id": 24396,
+ "id": 24865,
"properties": {
"facing": "west",
"half": "bottom",
@@ -268295,7 +274562,7 @@
}
},
{
- "id": 24397,
+ "id": 24866,
"properties": {
"facing": "west",
"half": "bottom",
@@ -268305,7 +274572,7 @@
}
},
{
- "id": 24398,
+ "id": 24867,
"properties": {
"facing": "west",
"half": "bottom",
@@ -268315,7 +274582,7 @@
}
},
{
- "id": 24399,
+ "id": 24868,
"properties": {
"facing": "west",
"half": "bottom",
@@ -268325,7 +274592,7 @@
}
},
{
- "id": 24400,
+ "id": 24869,
"properties": {
"facing": "west",
"half": "bottom",
@@ -268335,7 +274602,7 @@
}
},
{
- "id": 24401,
+ "id": 24870,
"properties": {
"facing": "west",
"half": "bottom",
@@ -268345,7 +274612,7 @@
}
},
{
- "id": 24402,
+ "id": 24871,
"properties": {
"facing": "west",
"half": "bottom",
@@ -268355,7 +274622,7 @@
}
},
{
- "id": 24403,
+ "id": 24872,
"properties": {
"facing": "west",
"half": "bottom",
@@ -268365,7 +274632,7 @@
}
},
{
- "id": 24404,
+ "id": 24873,
"properties": {
"facing": "east",
"half": "top",
@@ -268375,7 +274642,7 @@
}
},
{
- "id": 24405,
+ "id": 24874,
"properties": {
"facing": "east",
"half": "top",
@@ -268385,7 +274652,7 @@
}
},
{
- "id": 24406,
+ "id": 24875,
"properties": {
"facing": "east",
"half": "top",
@@ -268395,7 +274662,7 @@
}
},
{
- "id": 24407,
+ "id": 24876,
"properties": {
"facing": "east",
"half": "top",
@@ -268405,7 +274672,7 @@
}
},
{
- "id": 24408,
+ "id": 24877,
"properties": {
"facing": "east",
"half": "top",
@@ -268415,7 +274682,7 @@
}
},
{
- "id": 24409,
+ "id": 24878,
"properties": {
"facing": "east",
"half": "top",
@@ -268425,7 +274692,7 @@
}
},
{
- "id": 24410,
+ "id": 24879,
"properties": {
"facing": "east",
"half": "top",
@@ -268435,7 +274702,7 @@
}
},
{
- "id": 24411,
+ "id": 24880,
"properties": {
"facing": "east",
"half": "top",
@@ -268445,7 +274712,7 @@
}
},
{
- "id": 24412,
+ "id": 24881,
"properties": {
"facing": "east",
"half": "bottom",
@@ -268455,7 +274722,7 @@
}
},
{
- "id": 24413,
+ "id": 24882,
"properties": {
"facing": "east",
"half": "bottom",
@@ -268465,7 +274732,7 @@
}
},
{
- "id": 24414,
+ "id": 24883,
"properties": {
"facing": "east",
"half": "bottom",
@@ -268475,7 +274742,7 @@
}
},
{
- "id": 24415,
+ "id": 24884,
"properties": {
"facing": "east",
"half": "bottom",
@@ -268485,7 +274752,7 @@
}
},
{
- "id": 24416,
+ "id": 24885,
"properties": {
"facing": "east",
"half": "bottom",
@@ -268495,7 +274762,7 @@
}
},
{
- "id": 24417,
+ "id": 24886,
"properties": {
"facing": "east",
"half": "bottom",
@@ -268505,7 +274772,7 @@
}
},
{
- "id": 24418,
+ "id": 24887,
"properties": {
"facing": "east",
"half": "bottom",
@@ -268515,7 +274782,7 @@
}
},
{
- "id": 24419,
+ "id": 24888,
"properties": {
"facing": "east",
"half": "bottom",
@@ -268535,7 +274802,7 @@
"states": [
{
"default": true,
- "id": 22945
+ "id": 23414
}
]
},
@@ -268558,21 +274825,21 @@
},
"states": [
{
- "id": 23282,
+ "id": 23751,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 23283,
+ "id": 23752,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 23284,
+ "id": 23753,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -268580,21 +274847,21 @@
},
{
"default": true,
- "id": 23285,
+ "id": 23754,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 23286,
+ "id": 23755,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 23287,
+ "id": 23756,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -268636,7 +274903,7 @@
},
"states": [
{
- "id": 23036,
+ "id": 23505,
"properties": {
"facing": "north",
"half": "top",
@@ -268645,7 +274912,7 @@
}
},
{
- "id": 23037,
+ "id": 23506,
"properties": {
"facing": "north",
"half": "top",
@@ -268654,7 +274921,7 @@
}
},
{
- "id": 23038,
+ "id": 23507,
"properties": {
"facing": "north",
"half": "top",
@@ -268663,7 +274930,7 @@
}
},
{
- "id": 23039,
+ "id": 23508,
"properties": {
"facing": "north",
"half": "top",
@@ -268672,7 +274939,7 @@
}
},
{
- "id": 23040,
+ "id": 23509,
"properties": {
"facing": "north",
"half": "top",
@@ -268681,7 +274948,7 @@
}
},
{
- "id": 23041,
+ "id": 23510,
"properties": {
"facing": "north",
"half": "top",
@@ -268690,7 +274957,7 @@
}
},
{
- "id": 23042,
+ "id": 23511,
"properties": {
"facing": "north",
"half": "top",
@@ -268699,7 +274966,7 @@
}
},
{
- "id": 23043,
+ "id": 23512,
"properties": {
"facing": "north",
"half": "top",
@@ -268708,7 +274975,7 @@
}
},
{
- "id": 23044,
+ "id": 23513,
"properties": {
"facing": "north",
"half": "top",
@@ -268717,7 +274984,7 @@
}
},
{
- "id": 23045,
+ "id": 23514,
"properties": {
"facing": "north",
"half": "top",
@@ -268726,7 +274993,7 @@
}
},
{
- "id": 23046,
+ "id": 23515,
"properties": {
"facing": "north",
"half": "bottom",
@@ -268736,7 +275003,7 @@
},
{
"default": true,
- "id": 23047,
+ "id": 23516,
"properties": {
"facing": "north",
"half": "bottom",
@@ -268745,7 +275012,7 @@
}
},
{
- "id": 23048,
+ "id": 23517,
"properties": {
"facing": "north",
"half": "bottom",
@@ -268754,7 +275021,7 @@
}
},
{
- "id": 23049,
+ "id": 23518,
"properties": {
"facing": "north",
"half": "bottom",
@@ -268763,7 +275030,7 @@
}
},
{
- "id": 23050,
+ "id": 23519,
"properties": {
"facing": "north",
"half": "bottom",
@@ -268772,7 +275039,7 @@
}
},
{
- "id": 23051,
+ "id": 23520,
"properties": {
"facing": "north",
"half": "bottom",
@@ -268781,7 +275048,7 @@
}
},
{
- "id": 23052,
+ "id": 23521,
"properties": {
"facing": "north",
"half": "bottom",
@@ -268790,7 +275057,7 @@
}
},
{
- "id": 23053,
+ "id": 23522,
"properties": {
"facing": "north",
"half": "bottom",
@@ -268799,7 +275066,7 @@
}
},
{
- "id": 23054,
+ "id": 23523,
"properties": {
"facing": "north",
"half": "bottom",
@@ -268808,7 +275075,7 @@
}
},
{
- "id": 23055,
+ "id": 23524,
"properties": {
"facing": "north",
"half": "bottom",
@@ -268817,7 +275084,7 @@
}
},
{
- "id": 23056,
+ "id": 23525,
"properties": {
"facing": "south",
"half": "top",
@@ -268826,7 +275093,7 @@
}
},
{
- "id": 23057,
+ "id": 23526,
"properties": {
"facing": "south",
"half": "top",
@@ -268835,7 +275102,7 @@
}
},
{
- "id": 23058,
+ "id": 23527,
"properties": {
"facing": "south",
"half": "top",
@@ -268844,7 +275111,7 @@
}
},
{
- "id": 23059,
+ "id": 23528,
"properties": {
"facing": "south",
"half": "top",
@@ -268853,7 +275120,7 @@
}
},
{
- "id": 23060,
+ "id": 23529,
"properties": {
"facing": "south",
"half": "top",
@@ -268862,7 +275129,7 @@
}
},
{
- "id": 23061,
+ "id": 23530,
"properties": {
"facing": "south",
"half": "top",
@@ -268871,7 +275138,7 @@
}
},
{
- "id": 23062,
+ "id": 23531,
"properties": {
"facing": "south",
"half": "top",
@@ -268880,7 +275147,7 @@
}
},
{
- "id": 23063,
+ "id": 23532,
"properties": {
"facing": "south",
"half": "top",
@@ -268889,7 +275156,7 @@
}
},
{
- "id": 23064,
+ "id": 23533,
"properties": {
"facing": "south",
"half": "top",
@@ -268898,7 +275165,7 @@
}
},
{
- "id": 23065,
+ "id": 23534,
"properties": {
"facing": "south",
"half": "top",
@@ -268907,7 +275174,7 @@
}
},
{
- "id": 23066,
+ "id": 23535,
"properties": {
"facing": "south",
"half": "bottom",
@@ -268916,7 +275183,7 @@
}
},
{
- "id": 23067,
+ "id": 23536,
"properties": {
"facing": "south",
"half": "bottom",
@@ -268925,7 +275192,7 @@
}
},
{
- "id": 23068,
+ "id": 23537,
"properties": {
"facing": "south",
"half": "bottom",
@@ -268934,7 +275201,7 @@
}
},
{
- "id": 23069,
+ "id": 23538,
"properties": {
"facing": "south",
"half": "bottom",
@@ -268943,7 +275210,7 @@
}
},
{
- "id": 23070,
+ "id": 23539,
"properties": {
"facing": "south",
"half": "bottom",
@@ -268952,7 +275219,7 @@
}
},
{
- "id": 23071,
+ "id": 23540,
"properties": {
"facing": "south",
"half": "bottom",
@@ -268961,7 +275228,7 @@
}
},
{
- "id": 23072,
+ "id": 23541,
"properties": {
"facing": "south",
"half": "bottom",
@@ -268970,7 +275237,7 @@
}
},
{
- "id": 23073,
+ "id": 23542,
"properties": {
"facing": "south",
"half": "bottom",
@@ -268979,7 +275246,7 @@
}
},
{
- "id": 23074,
+ "id": 23543,
"properties": {
"facing": "south",
"half": "bottom",
@@ -268988,7 +275255,7 @@
}
},
{
- "id": 23075,
+ "id": 23544,
"properties": {
"facing": "south",
"half": "bottom",
@@ -268997,7 +275264,7 @@
}
},
{
- "id": 23076,
+ "id": 23545,
"properties": {
"facing": "west",
"half": "top",
@@ -269006,7 +275273,7 @@
}
},
{
- "id": 23077,
+ "id": 23546,
"properties": {
"facing": "west",
"half": "top",
@@ -269015,7 +275282,7 @@
}
},
{
- "id": 23078,
+ "id": 23547,
"properties": {
"facing": "west",
"half": "top",
@@ -269024,7 +275291,7 @@
}
},
{
- "id": 23079,
+ "id": 23548,
"properties": {
"facing": "west",
"half": "top",
@@ -269033,7 +275300,7 @@
}
},
{
- "id": 23080,
+ "id": 23549,
"properties": {
"facing": "west",
"half": "top",
@@ -269042,7 +275309,7 @@
}
},
{
- "id": 23081,
+ "id": 23550,
"properties": {
"facing": "west",
"half": "top",
@@ -269051,7 +275318,7 @@
}
},
{
- "id": 23082,
+ "id": 23551,
"properties": {
"facing": "west",
"half": "top",
@@ -269060,7 +275327,7 @@
}
},
{
- "id": 23083,
+ "id": 23552,
"properties": {
"facing": "west",
"half": "top",
@@ -269069,7 +275336,7 @@
}
},
{
- "id": 23084,
+ "id": 23553,
"properties": {
"facing": "west",
"half": "top",
@@ -269078,7 +275345,7 @@
}
},
{
- "id": 23085,
+ "id": 23554,
"properties": {
"facing": "west",
"half": "top",
@@ -269087,7 +275354,7 @@
}
},
{
- "id": 23086,
+ "id": 23555,
"properties": {
"facing": "west",
"half": "bottom",
@@ -269096,7 +275363,7 @@
}
},
{
- "id": 23087,
+ "id": 23556,
"properties": {
"facing": "west",
"half": "bottom",
@@ -269105,7 +275372,7 @@
}
},
{
- "id": 23088,
+ "id": 23557,
"properties": {
"facing": "west",
"half": "bottom",
@@ -269114,7 +275381,7 @@
}
},
{
- "id": 23089,
+ "id": 23558,
"properties": {
"facing": "west",
"half": "bottom",
@@ -269123,7 +275390,7 @@
}
},
{
- "id": 23090,
+ "id": 23559,
"properties": {
"facing": "west",
"half": "bottom",
@@ -269132,7 +275399,7 @@
}
},
{
- "id": 23091,
+ "id": 23560,
"properties": {
"facing": "west",
"half": "bottom",
@@ -269141,7 +275408,7 @@
}
},
{
- "id": 23092,
+ "id": 23561,
"properties": {
"facing": "west",
"half": "bottom",
@@ -269150,7 +275417,7 @@
}
},
{
- "id": 23093,
+ "id": 23562,
"properties": {
"facing": "west",
"half": "bottom",
@@ -269159,7 +275426,7 @@
}
},
{
- "id": 23094,
+ "id": 23563,
"properties": {
"facing": "west",
"half": "bottom",
@@ -269168,7 +275435,7 @@
}
},
{
- "id": 23095,
+ "id": 23564,
"properties": {
"facing": "west",
"half": "bottom",
@@ -269177,7 +275444,7 @@
}
},
{
- "id": 23096,
+ "id": 23565,
"properties": {
"facing": "east",
"half": "top",
@@ -269186,7 +275453,7 @@
}
},
{
- "id": 23097,
+ "id": 23566,
"properties": {
"facing": "east",
"half": "top",
@@ -269195,7 +275462,7 @@
}
},
{
- "id": 23098,
+ "id": 23567,
"properties": {
"facing": "east",
"half": "top",
@@ -269204,7 +275471,7 @@
}
},
{
- "id": 23099,
+ "id": 23568,
"properties": {
"facing": "east",
"half": "top",
@@ -269213,7 +275480,7 @@
}
},
{
- "id": 23100,
+ "id": 23569,
"properties": {
"facing": "east",
"half": "top",
@@ -269222,7 +275489,7 @@
}
},
{
- "id": 23101,
+ "id": 23570,
"properties": {
"facing": "east",
"half": "top",
@@ -269231,7 +275498,7 @@
}
},
{
- "id": 23102,
+ "id": 23571,
"properties": {
"facing": "east",
"half": "top",
@@ -269240,7 +275507,7 @@
}
},
{
- "id": 23103,
+ "id": 23572,
"properties": {
"facing": "east",
"half": "top",
@@ -269249,7 +275516,7 @@
}
},
{
- "id": 23104,
+ "id": 23573,
"properties": {
"facing": "east",
"half": "top",
@@ -269258,7 +275525,7 @@
}
},
{
- "id": 23105,
+ "id": 23574,
"properties": {
"facing": "east",
"half": "top",
@@ -269267,7 +275534,7 @@
}
},
{
- "id": 23106,
+ "id": 23575,
"properties": {
"facing": "east",
"half": "bottom",
@@ -269276,7 +275543,7 @@
}
},
{
- "id": 23107,
+ "id": 23576,
"properties": {
"facing": "east",
"half": "bottom",
@@ -269285,7 +275552,7 @@
}
},
{
- "id": 23108,
+ "id": 23577,
"properties": {
"facing": "east",
"half": "bottom",
@@ -269294,7 +275561,7 @@
}
},
{
- "id": 23109,
+ "id": 23578,
"properties": {
"facing": "east",
"half": "bottom",
@@ -269303,7 +275570,7 @@
}
},
{
- "id": 23110,
+ "id": 23579,
"properties": {
"facing": "east",
"half": "bottom",
@@ -269312,7 +275579,7 @@
}
},
{
- "id": 23111,
+ "id": 23580,
"properties": {
"facing": "east",
"half": "bottom",
@@ -269321,7 +275588,7 @@
}
},
{
- "id": 23112,
+ "id": 23581,
"properties": {
"facing": "east",
"half": "bottom",
@@ -269330,7 +275597,7 @@
}
},
{
- "id": 23113,
+ "id": 23582,
"properties": {
"facing": "east",
"half": "bottom",
@@ -269339,7 +275606,7 @@
}
},
{
- "id": 23114,
+ "id": 23583,
"properties": {
"facing": "east",
"half": "bottom",
@@ -269348,7 +275615,7 @@
}
},
{
- "id": 23115,
+ "id": 23584,
"properties": {
"facing": "east",
"half": "bottom",
@@ -269396,157 +275663,157 @@
"states": [
{
"default": true,
- "id": 18611,
+ "id": 19080,
"properties": {
"age": "0"
}
},
{
- "id": 18612,
+ "id": 19081,
"properties": {
"age": "1"
}
},
{
- "id": 18613,
+ "id": 19082,
"properties": {
"age": "2"
}
},
{
- "id": 18614,
+ "id": 19083,
"properties": {
"age": "3"
}
},
{
- "id": 18615,
+ "id": 19084,
"properties": {
"age": "4"
}
},
{
- "id": 18616,
+ "id": 19085,
"properties": {
"age": "5"
}
},
{
- "id": 18617,
+ "id": 19086,
"properties": {
"age": "6"
}
},
{
- "id": 18618,
+ "id": 19087,
"properties": {
"age": "7"
}
},
{
- "id": 18619,
+ "id": 19088,
"properties": {
"age": "8"
}
},
{
- "id": 18620,
+ "id": 19089,
"properties": {
"age": "9"
}
},
{
- "id": 18621,
+ "id": 19090,
"properties": {
"age": "10"
}
},
{
- "id": 18622,
+ "id": 19091,
"properties": {
"age": "11"
}
},
{
- "id": 18623,
+ "id": 19092,
"properties": {
"age": "12"
}
},
{
- "id": 18624,
+ "id": 19093,
"properties": {
"age": "13"
}
},
{
- "id": 18625,
+ "id": 19094,
"properties": {
"age": "14"
}
},
{
- "id": 18626,
+ "id": 19095,
"properties": {
"age": "15"
}
},
{
- "id": 18627,
+ "id": 19096,
"properties": {
"age": "16"
}
},
{
- "id": 18628,
+ "id": 19097,
"properties": {
"age": "17"
}
},
{
- "id": 18629,
+ "id": 19098,
"properties": {
"age": "18"
}
},
{
- "id": 18630,
+ "id": 19099,
"properties": {
"age": "19"
}
},
{
- "id": 18631,
+ "id": 19100,
"properties": {
"age": "20"
}
},
{
- "id": 18632,
+ "id": 19101,
"properties": {
"age": "21"
}
},
{
- "id": 18633,
+ "id": 19102,
"properties": {
"age": "22"
}
},
{
- "id": 18634,
+ "id": 19103,
"properties": {
"age": "23"
}
},
{
- "id": 18635,
+ "id": 19104,
"properties": {
"age": "24"
}
},
{
- "id": 18636,
+ "id": 19105,
"properties": {
"age": "25"
}
@@ -269561,7 +275828,7 @@
"states": [
{
"default": true,
- "id": 18637
+ "id": 19106
}
]
},
@@ -269573,7 +275840,7 @@
"states": [
{
"default": true,
- "id": 518
+ "id": 561
}
]
},
@@ -269597,49 +275864,49 @@
"states": [
{
"default": true,
- "id": 4278,
+ "id": 4330,
"properties": {
"age": "0"
}
},
{
- "id": 4279,
+ "id": 4331,
"properties": {
"age": "1"
}
},
{
- "id": 4280,
+ "id": 4332,
"properties": {
"age": "2"
}
},
{
- "id": 4281,
+ "id": 4333,
"properties": {
"age": "3"
}
},
{
- "id": 4282,
+ "id": 4334,
"properties": {
"age": "4"
}
},
{
- "id": 4283,
+ "id": 4335,
"properties": {
"age": "5"
}
},
{
- "id": 4284,
+ "id": 4336,
"properties": {
"age": "6"
}
},
{
- "id": 4285,
+ "id": 4337,
"properties": {
"age": "7"
}
@@ -269675,97 +275942,97 @@
"states": [
{
"default": true,
- "id": 10759,
+ "id": 11094,
"properties": {
"rotation": "0"
}
},
{
- "id": 10760,
+ "id": 11095,
"properties": {
"rotation": "1"
}
},
{
- "id": 10761,
+ "id": 11096,
"properties": {
"rotation": "2"
}
},
{
- "id": 10762,
+ "id": 11097,
"properties": {
"rotation": "3"
}
},
{
- "id": 10763,
+ "id": 11098,
"properties": {
"rotation": "4"
}
},
{
- "id": 10764,
+ "id": 11099,
"properties": {
"rotation": "5"
}
},
{
- "id": 10765,
+ "id": 11100,
"properties": {
"rotation": "6"
}
},
{
- "id": 10766,
+ "id": 11101,
"properties": {
"rotation": "7"
}
},
{
- "id": 10767,
+ "id": 11102,
"properties": {
"rotation": "8"
}
},
{
- "id": 10768,
+ "id": 11103,
"properties": {
"rotation": "9"
}
},
{
- "id": 10769,
+ "id": 11104,
"properties": {
"rotation": "10"
}
},
{
- "id": 10770,
+ "id": 11105,
"properties": {
"rotation": "11"
}
},
{
- "id": 10771,
+ "id": 11106,
"properties": {
"rotation": "12"
}
},
{
- "id": 10772,
+ "id": 11107,
"properties": {
"rotation": "13"
}
},
{
- "id": 10773,
+ "id": 11108,
"properties": {
"rotation": "14"
}
},
{
- "id": 10774,
+ "id": 11109,
"properties": {
"rotation": "15"
}
@@ -269796,7 +276063,7 @@
},
"states": [
{
- "id": 1688,
+ "id": 1731,
"properties": {
"facing": "north",
"occupied": "true",
@@ -269804,7 +276071,7 @@
}
},
{
- "id": 1689,
+ "id": 1732,
"properties": {
"facing": "north",
"occupied": "true",
@@ -269812,7 +276079,7 @@
}
},
{
- "id": 1690,
+ "id": 1733,
"properties": {
"facing": "north",
"occupied": "false",
@@ -269821,7 +276088,7 @@
},
{
"default": true,
- "id": 1691,
+ "id": 1734,
"properties": {
"facing": "north",
"occupied": "false",
@@ -269829,7 +276096,7 @@
}
},
{
- "id": 1692,
+ "id": 1735,
"properties": {
"facing": "south",
"occupied": "true",
@@ -269837,7 +276104,7 @@
}
},
{
- "id": 1693,
+ "id": 1736,
"properties": {
"facing": "south",
"occupied": "true",
@@ -269845,7 +276112,7 @@
}
},
{
- "id": 1694,
+ "id": 1737,
"properties": {
"facing": "south",
"occupied": "false",
@@ -269853,7 +276120,7 @@
}
},
{
- "id": 1695,
+ "id": 1738,
"properties": {
"facing": "south",
"occupied": "false",
@@ -269861,7 +276128,7 @@
}
},
{
- "id": 1696,
+ "id": 1739,
"properties": {
"facing": "west",
"occupied": "true",
@@ -269869,7 +276136,7 @@
}
},
{
- "id": 1697,
+ "id": 1740,
"properties": {
"facing": "west",
"occupied": "true",
@@ -269877,7 +276144,7 @@
}
},
{
- "id": 1698,
+ "id": 1741,
"properties": {
"facing": "west",
"occupied": "false",
@@ -269885,7 +276152,7 @@
}
},
{
- "id": 1699,
+ "id": 1742,
"properties": {
"facing": "west",
"occupied": "false",
@@ -269893,7 +276160,7 @@
}
},
{
- "id": 1700,
+ "id": 1743,
"properties": {
"facing": "east",
"occupied": "true",
@@ -269901,7 +276168,7 @@
}
},
{
- "id": 1701,
+ "id": 1744,
"properties": {
"facing": "east",
"occupied": "true",
@@ -269909,7 +276176,7 @@
}
},
{
- "id": 1702,
+ "id": 1745,
"properties": {
"facing": "east",
"occupied": "false",
@@ -269917,7 +276184,7 @@
}
},
{
- "id": 1703,
+ "id": 1746,
"properties": {
"facing": "east",
"occupied": "false",
@@ -269949,7 +276216,7 @@
},
"states": [
{
- "id": 20741,
+ "id": 21210,
"properties": {
"candles": "1",
"lit": "true",
@@ -269957,7 +276224,7 @@
}
},
{
- "id": 20742,
+ "id": 21211,
"properties": {
"candles": "1",
"lit": "true",
@@ -269965,7 +276232,7 @@
}
},
{
- "id": 20743,
+ "id": 21212,
"properties": {
"candles": "1",
"lit": "false",
@@ -269974,7 +276241,7 @@
},
{
"default": true,
- "id": 20744,
+ "id": 21213,
"properties": {
"candles": "1",
"lit": "false",
@@ -269982,7 +276249,7 @@
}
},
{
- "id": 20745,
+ "id": 21214,
"properties": {
"candles": "2",
"lit": "true",
@@ -269990,7 +276257,7 @@
}
},
{
- "id": 20746,
+ "id": 21215,
"properties": {
"candles": "2",
"lit": "true",
@@ -269998,7 +276265,7 @@
}
},
{
- "id": 20747,
+ "id": 21216,
"properties": {
"candles": "2",
"lit": "false",
@@ -270006,7 +276273,7 @@
}
},
{
- "id": 20748,
+ "id": 21217,
"properties": {
"candles": "2",
"lit": "false",
@@ -270014,7 +276281,7 @@
}
},
{
- "id": 20749,
+ "id": 21218,
"properties": {
"candles": "3",
"lit": "true",
@@ -270022,7 +276289,7 @@
}
},
{
- "id": 20750,
+ "id": 21219,
"properties": {
"candles": "3",
"lit": "true",
@@ -270030,7 +276297,7 @@
}
},
{
- "id": 20751,
+ "id": 21220,
"properties": {
"candles": "3",
"lit": "false",
@@ -270038,7 +276305,7 @@
}
},
{
- "id": 20752,
+ "id": 21221,
"properties": {
"candles": "3",
"lit": "false",
@@ -270046,7 +276313,7 @@
}
},
{
- "id": 20753,
+ "id": 21222,
"properties": {
"candles": "4",
"lit": "true",
@@ -270054,7 +276321,7 @@
}
},
{
- "id": 20754,
+ "id": 21223,
"properties": {
"candles": "4",
"lit": "true",
@@ -270062,7 +276329,7 @@
}
},
{
- "id": 20755,
+ "id": 21224,
"properties": {
"candles": "4",
"lit": "false",
@@ -270070,7 +276337,7 @@
}
},
{
- "id": 20756,
+ "id": 21225,
"properties": {
"candles": "4",
"lit": "false",
@@ -270093,14 +276360,14 @@
},
"states": [
{
- "id": 20999,
+ "id": 21468,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 21000,
+ "id": 21469,
"properties": {
"lit": "false"
}
@@ -270116,7 +276383,7 @@
"states": [
{
"default": true,
- "id": 10728
+ "id": 11063
}
]
},
@@ -270128,7 +276395,7 @@
"states": [
{
"default": true,
- "id": 12728
+ "id": 13197
}
]
},
@@ -270141,7 +276408,7 @@
"states": [
{
"default": true,
- "id": 12744
+ "id": 13213
}
]
},
@@ -270161,25 +276428,25 @@
"states": [
{
"default": true,
- "id": 12664,
+ "id": 13133,
"properties": {
"facing": "north"
}
},
{
- "id": 12665,
+ "id": 13134,
"properties": {
"facing": "south"
}
},
{
- "id": 12666,
+ "id": 13135,
"properties": {
"facing": "west"
}
},
{
- "id": 12667,
+ "id": 13136,
"properties": {
"facing": "east"
}
@@ -270204,38 +276471,38 @@
},
"states": [
{
- "id": 12568,
+ "id": 13037,
"properties": {
"facing": "north"
}
},
{
- "id": 12569,
+ "id": 13038,
"properties": {
"facing": "east"
}
},
{
- "id": 12570,
+ "id": 13039,
"properties": {
"facing": "south"
}
},
{
- "id": 12571,
+ "id": 13040,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12572,
+ "id": 13041,
"properties": {
"facing": "up"
}
},
{
- "id": 12573,
+ "id": 13042,
"properties": {
"facing": "down"
}
@@ -270251,7 +276518,7 @@
"states": [
{
"default": true,
- "id": 5945
+ "id": 6111
}
]
},
@@ -270285,7 +276552,7 @@
},
"states": [
{
- "id": 9372,
+ "id": 9627,
"properties": {
"east": "true",
"north": "true",
@@ -270295,7 +276562,7 @@
}
},
{
- "id": 9373,
+ "id": 9628,
"properties": {
"east": "true",
"north": "true",
@@ -270305,7 +276572,7 @@
}
},
{
- "id": 9374,
+ "id": 9629,
"properties": {
"east": "true",
"north": "true",
@@ -270315,7 +276582,7 @@
}
},
{
- "id": 9375,
+ "id": 9630,
"properties": {
"east": "true",
"north": "true",
@@ -270325,7 +276592,7 @@
}
},
{
- "id": 9376,
+ "id": 9631,
"properties": {
"east": "true",
"north": "true",
@@ -270335,7 +276602,7 @@
}
},
{
- "id": 9377,
+ "id": 9632,
"properties": {
"east": "true",
"north": "true",
@@ -270345,7 +276612,7 @@
}
},
{
- "id": 9378,
+ "id": 9633,
"properties": {
"east": "true",
"north": "true",
@@ -270355,7 +276622,7 @@
}
},
{
- "id": 9379,
+ "id": 9634,
"properties": {
"east": "true",
"north": "true",
@@ -270365,7 +276632,7 @@
}
},
{
- "id": 9380,
+ "id": 9635,
"properties": {
"east": "true",
"north": "false",
@@ -270375,7 +276642,7 @@
}
},
{
- "id": 9381,
+ "id": 9636,
"properties": {
"east": "true",
"north": "false",
@@ -270385,7 +276652,7 @@
}
},
{
- "id": 9382,
+ "id": 9637,
"properties": {
"east": "true",
"north": "false",
@@ -270395,7 +276662,7 @@
}
},
{
- "id": 9383,
+ "id": 9638,
"properties": {
"east": "true",
"north": "false",
@@ -270405,7 +276672,7 @@
}
},
{
- "id": 9384,
+ "id": 9639,
"properties": {
"east": "true",
"north": "false",
@@ -270415,7 +276682,7 @@
}
},
{
- "id": 9385,
+ "id": 9640,
"properties": {
"east": "true",
"north": "false",
@@ -270425,7 +276692,7 @@
}
},
{
- "id": 9386,
+ "id": 9641,
"properties": {
"east": "true",
"north": "false",
@@ -270435,7 +276702,7 @@
}
},
{
- "id": 9387,
+ "id": 9642,
"properties": {
"east": "true",
"north": "false",
@@ -270445,7 +276712,7 @@
}
},
{
- "id": 9388,
+ "id": 9643,
"properties": {
"east": "false",
"north": "true",
@@ -270455,7 +276722,7 @@
}
},
{
- "id": 9389,
+ "id": 9644,
"properties": {
"east": "false",
"north": "true",
@@ -270465,7 +276732,7 @@
}
},
{
- "id": 9390,
+ "id": 9645,
"properties": {
"east": "false",
"north": "true",
@@ -270475,7 +276742,7 @@
}
},
{
- "id": 9391,
+ "id": 9646,
"properties": {
"east": "false",
"north": "true",
@@ -270485,7 +276752,7 @@
}
},
{
- "id": 9392,
+ "id": 9647,
"properties": {
"east": "false",
"north": "true",
@@ -270495,7 +276762,7 @@
}
},
{
- "id": 9393,
+ "id": 9648,
"properties": {
"east": "false",
"north": "true",
@@ -270505,7 +276772,7 @@
}
},
{
- "id": 9394,
+ "id": 9649,
"properties": {
"east": "false",
"north": "true",
@@ -270515,7 +276782,7 @@
}
},
{
- "id": 9395,
+ "id": 9650,
"properties": {
"east": "false",
"north": "true",
@@ -270525,7 +276792,7 @@
}
},
{
- "id": 9396,
+ "id": 9651,
"properties": {
"east": "false",
"north": "false",
@@ -270535,7 +276802,7 @@
}
},
{
- "id": 9397,
+ "id": 9652,
"properties": {
"east": "false",
"north": "false",
@@ -270545,7 +276812,7 @@
}
},
{
- "id": 9398,
+ "id": 9653,
"properties": {
"east": "false",
"north": "false",
@@ -270555,7 +276822,7 @@
}
},
{
- "id": 9399,
+ "id": 9654,
"properties": {
"east": "false",
"north": "false",
@@ -270565,7 +276832,7 @@
}
},
{
- "id": 9400,
+ "id": 9655,
"properties": {
"east": "false",
"north": "false",
@@ -270575,7 +276842,7 @@
}
},
{
- "id": 9401,
+ "id": 9656,
"properties": {
"east": "false",
"north": "false",
@@ -270585,7 +276852,7 @@
}
},
{
- "id": 9402,
+ "id": 9657,
"properties": {
"east": "false",
"north": "false",
@@ -270596,7 +276863,7 @@
},
{
"default": true,
- "id": 9403,
+ "id": 9658,
"properties": {
"east": "false",
"north": "false",
@@ -270615,7 +276882,7 @@
"states": [
{
"default": true,
- "id": 9356
+ "id": 9611
}
]
},
@@ -270633,7 +276900,7 @@
"states": [
{
"default": true,
- "id": 2083
+ "id": 2126
}
]
},
@@ -270654,25 +276921,25 @@
"states": [
{
"default": true,
- "id": 11015,
+ "id": 11350,
"properties": {
"facing": "north"
}
},
{
- "id": 11016,
+ "id": 11351,
"properties": {
"facing": "south"
}
},
{
- "id": 11017,
+ "id": 11352,
"properties": {
"facing": "west"
}
},
{
- "id": 11018,
+ "id": 11353,
"properties": {
"facing": "east"
}
@@ -270687,7 +276954,7 @@
"states": [
{
"default": true,
- "id": 2047
+ "id": 2090
}
]
},
@@ -270704,7 +276971,7 @@
"states": [
{
"default": true,
- "id": 2087
+ "id": 2130
}
]
},
@@ -270739,112 +277006,112 @@
},
"states": [
{
- "id": 8867,
+ "id": 9122,
"properties": {
"powered": "true",
"rotation": "0"
}
},
{
- "id": 8868,
+ "id": 9123,
"properties": {
"powered": "true",
"rotation": "1"
}
},
{
- "id": 8869,
+ "id": 9124,
"properties": {
"powered": "true",
"rotation": "2"
}
},
{
- "id": 8870,
+ "id": 9125,
"properties": {
"powered": "true",
"rotation": "3"
}
},
{
- "id": 8871,
+ "id": 9126,
"properties": {
"powered": "true",
"rotation": "4"
}
},
{
- "id": 8872,
+ "id": 9127,
"properties": {
"powered": "true",
"rotation": "5"
}
},
{
- "id": 8873,
+ "id": 9128,
"properties": {
"powered": "true",
"rotation": "6"
}
},
{
- "id": 8874,
+ "id": 9129,
"properties": {
"powered": "true",
"rotation": "7"
}
},
{
- "id": 8875,
+ "id": 9130,
"properties": {
"powered": "true",
"rotation": "8"
}
},
{
- "id": 8876,
+ "id": 9131,
"properties": {
"powered": "true",
"rotation": "9"
}
},
{
- "id": 8877,
+ "id": 9132,
"properties": {
"powered": "true",
"rotation": "10"
}
},
{
- "id": 8878,
+ "id": 9133,
"properties": {
"powered": "true",
"rotation": "11"
}
},
{
- "id": 8879,
+ "id": 9134,
"properties": {
"powered": "true",
"rotation": "12"
}
},
{
- "id": 8880,
+ "id": 9135,
"properties": {
"powered": "true",
"rotation": "13"
}
},
{
- "id": 8881,
+ "id": 9136,
"properties": {
"powered": "true",
"rotation": "14"
}
},
{
- "id": 8882,
+ "id": 9137,
"properties": {
"powered": "true",
"rotation": "15"
@@ -270852,112 +277119,112 @@
},
{
"default": true,
- "id": 8883,
+ "id": 9138,
"properties": {
"powered": "false",
"rotation": "0"
}
},
{
- "id": 8884,
+ "id": 9139,
"properties": {
"powered": "false",
"rotation": "1"
}
},
{
- "id": 8885,
+ "id": 9140,
"properties": {
"powered": "false",
"rotation": "2"
}
},
{
- "id": 8886,
+ "id": 9141,
"properties": {
"powered": "false",
"rotation": "3"
}
},
{
- "id": 8887,
+ "id": 9142,
"properties": {
"powered": "false",
"rotation": "4"
}
},
{
- "id": 8888,
+ "id": 9143,
"properties": {
"powered": "false",
"rotation": "5"
}
},
{
- "id": 8889,
+ "id": 9144,
"properties": {
"powered": "false",
"rotation": "6"
}
},
{
- "id": 8890,
+ "id": 9145,
"properties": {
"powered": "false",
"rotation": "7"
}
},
{
- "id": 8891,
+ "id": 9146,
"properties": {
"powered": "false",
"rotation": "8"
}
},
{
- "id": 8892,
+ "id": 9147,
"properties": {
"powered": "false",
"rotation": "9"
}
},
{
- "id": 8893,
+ "id": 9148,
"properties": {
"powered": "false",
"rotation": "10"
}
},
{
- "id": 8894,
+ "id": 9149,
"properties": {
"powered": "false",
"rotation": "11"
}
},
{
- "id": 8895,
+ "id": 9150,
"properties": {
"powered": "false",
"rotation": "12"
}
},
{
- "id": 8896,
+ "id": 9151,
"properties": {
"powered": "false",
"rotation": "13"
}
},
{
- "id": 8897,
+ "id": 9152,
"properties": {
"powered": "false",
"rotation": "14"
}
},
{
- "id": 8898,
+ "id": 9153,
"properties": {
"powered": "false",
"rotation": "15"
@@ -270984,7 +277251,7 @@
},
"states": [
{
- "id": 8899,
+ "id": 9154,
"properties": {
"facing": "north",
"powered": "true"
@@ -270992,49 +277259,49 @@
},
{
"default": true,
- "id": 8900,
+ "id": 9155,
"properties": {
"facing": "north",
"powered": "false"
}
},
{
- "id": 8901,
+ "id": 9156,
"properties": {
"facing": "south",
"powered": "true"
}
},
{
- "id": 8902,
+ "id": 9157,
"properties": {
"facing": "south",
"powered": "false"
}
},
{
- "id": 8903,
+ "id": 9158,
"properties": {
"facing": "west",
"powered": "true"
}
},
{
- "id": 8904,
+ "id": 9159,
"properties": {
"facing": "west",
"powered": "false"
}
},
{
- "id": 8905,
+ "id": 9160,
"properties": {
"facing": "east",
"powered": "true"
}
},
{
- "id": 8906,
+ "id": 9161,
"properties": {
"facing": "east",
"powered": "false"
@@ -271071,97 +277338,97 @@
"states": [
{
"default": true,
- "id": 10823,
+ "id": 11158,
"properties": {
"rotation": "0"
}
},
{
- "id": 10824,
+ "id": 11159,
"properties": {
"rotation": "1"
}
},
{
- "id": 10825,
+ "id": 11160,
"properties": {
"rotation": "2"
}
},
{
- "id": 10826,
+ "id": 11161,
"properties": {
"rotation": "3"
}
},
{
- "id": 10827,
+ "id": 11162,
"properties": {
"rotation": "4"
}
},
{
- "id": 10828,
+ "id": 11163,
"properties": {
"rotation": "5"
}
},
{
- "id": 10829,
+ "id": 11164,
"properties": {
"rotation": "6"
}
},
{
- "id": 10830,
+ "id": 11165,
"properties": {
"rotation": "7"
}
},
{
- "id": 10831,
+ "id": 11166,
"properties": {
"rotation": "8"
}
},
{
- "id": 10832,
+ "id": 11167,
"properties": {
"rotation": "9"
}
},
{
- "id": 10833,
+ "id": 11168,
"properties": {
"rotation": "10"
}
},
{
- "id": 10834,
+ "id": 11169,
"properties": {
"rotation": "11"
}
},
{
- "id": 10835,
+ "id": 11170,
"properties": {
"rotation": "12"
}
},
{
- "id": 10836,
+ "id": 11171,
"properties": {
"rotation": "13"
}
},
{
- "id": 10837,
+ "id": 11172,
"properties": {
"rotation": "14"
}
},
{
- "id": 10838,
+ "id": 11173,
"properties": {
"rotation": "15"
}
@@ -271192,7 +277459,7 @@
},
"states": [
{
- "id": 1752,
+ "id": 1795,
"properties": {
"facing": "north",
"occupied": "true",
@@ -271200,7 +277467,7 @@
}
},
{
- "id": 1753,
+ "id": 1796,
"properties": {
"facing": "north",
"occupied": "true",
@@ -271208,7 +277475,7 @@
}
},
{
- "id": 1754,
+ "id": 1797,
"properties": {
"facing": "north",
"occupied": "false",
@@ -271217,7 +277484,7 @@
},
{
"default": true,
- "id": 1755,
+ "id": 1798,
"properties": {
"facing": "north",
"occupied": "false",
@@ -271225,7 +277492,7 @@
}
},
{
- "id": 1756,
+ "id": 1799,
"properties": {
"facing": "south",
"occupied": "true",
@@ -271233,7 +277500,7 @@
}
},
{
- "id": 1757,
+ "id": 1800,
"properties": {
"facing": "south",
"occupied": "true",
@@ -271241,7 +277508,7 @@
}
},
{
- "id": 1758,
+ "id": 1801,
"properties": {
"facing": "south",
"occupied": "false",
@@ -271249,7 +277516,7 @@
}
},
{
- "id": 1759,
+ "id": 1802,
"properties": {
"facing": "south",
"occupied": "false",
@@ -271257,7 +277524,7 @@
}
},
{
- "id": 1760,
+ "id": 1803,
"properties": {
"facing": "west",
"occupied": "true",
@@ -271265,7 +277532,7 @@
}
},
{
- "id": 1761,
+ "id": 1804,
"properties": {
"facing": "west",
"occupied": "true",
@@ -271273,7 +277540,7 @@
}
},
{
- "id": 1762,
+ "id": 1805,
"properties": {
"facing": "west",
"occupied": "false",
@@ -271281,7 +277548,7 @@
}
},
{
- "id": 1763,
+ "id": 1806,
"properties": {
"facing": "west",
"occupied": "false",
@@ -271289,7 +277556,7 @@
}
},
{
- "id": 1764,
+ "id": 1807,
"properties": {
"facing": "east",
"occupied": "true",
@@ -271297,7 +277564,7 @@
}
},
{
- "id": 1765,
+ "id": 1808,
"properties": {
"facing": "east",
"occupied": "true",
@@ -271305,7 +277572,7 @@
}
},
{
- "id": 1766,
+ "id": 1809,
"properties": {
"facing": "east",
"occupied": "false",
@@ -271313,7 +277580,7 @@
}
},
{
- "id": 1767,
+ "id": 1810,
"properties": {
"facing": "east",
"occupied": "false",
@@ -271345,7 +277612,7 @@
},
"states": [
{
- "id": 20805,
+ "id": 21274,
"properties": {
"candles": "1",
"lit": "true",
@@ -271353,7 +277620,7 @@
}
},
{
- "id": 20806,
+ "id": 21275,
"properties": {
"candles": "1",
"lit": "true",
@@ -271361,7 +277628,7 @@
}
},
{
- "id": 20807,
+ "id": 21276,
"properties": {
"candles": "1",
"lit": "false",
@@ -271370,7 +277637,7 @@
},
{
"default": true,
- "id": 20808,
+ "id": 21277,
"properties": {
"candles": "1",
"lit": "false",
@@ -271378,7 +277645,7 @@
}
},
{
- "id": 20809,
+ "id": 21278,
"properties": {
"candles": "2",
"lit": "true",
@@ -271386,7 +277653,7 @@
}
},
{
- "id": 20810,
+ "id": 21279,
"properties": {
"candles": "2",
"lit": "true",
@@ -271394,7 +277661,7 @@
}
},
{
- "id": 20811,
+ "id": 21280,
"properties": {
"candles": "2",
"lit": "false",
@@ -271402,7 +277669,7 @@
}
},
{
- "id": 20812,
+ "id": 21281,
"properties": {
"candles": "2",
"lit": "false",
@@ -271410,7 +277677,7 @@
}
},
{
- "id": 20813,
+ "id": 21282,
"properties": {
"candles": "3",
"lit": "true",
@@ -271418,7 +277685,7 @@
}
},
{
- "id": 20814,
+ "id": 21283,
"properties": {
"candles": "3",
"lit": "true",
@@ -271426,7 +277693,7 @@
}
},
{
- "id": 20815,
+ "id": 21284,
"properties": {
"candles": "3",
"lit": "false",
@@ -271434,7 +277701,7 @@
}
},
{
- "id": 20816,
+ "id": 21285,
"properties": {
"candles": "3",
"lit": "false",
@@ -271442,7 +277709,7 @@
}
},
{
- "id": 20817,
+ "id": 21286,
"properties": {
"candles": "4",
"lit": "true",
@@ -271450,7 +277717,7 @@
}
},
{
- "id": 20818,
+ "id": 21287,
"properties": {
"candles": "4",
"lit": "true",
@@ -271458,7 +277725,7 @@
}
},
{
- "id": 20819,
+ "id": 21288,
"properties": {
"candles": "4",
"lit": "false",
@@ -271466,7 +277733,7 @@
}
},
{
- "id": 20820,
+ "id": 21289,
"properties": {
"candles": "4",
"lit": "false",
@@ -271489,14 +277756,14 @@
},
"states": [
{
- "id": 21007,
+ "id": 21476,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 21008,
+ "id": 21477,
"properties": {
"lit": "false"
}
@@ -271512,7 +277779,7 @@
"states": [
{
"default": true,
- "id": 10732
+ "id": 11067
}
]
},
@@ -271524,7 +277791,7 @@
"states": [
{
"default": true,
- "id": 12732
+ "id": 13201
}
]
},
@@ -271537,7 +277804,7 @@
"states": [
{
"default": true,
- "id": 12748
+ "id": 13217
}
]
},
@@ -271557,25 +277824,25 @@
"states": [
{
"default": true,
- "id": 12680,
+ "id": 13149,
"properties": {
"facing": "north"
}
},
{
- "id": 12681,
+ "id": 13150,
"properties": {
"facing": "south"
}
},
{
- "id": 12682,
+ "id": 13151,
"properties": {
"facing": "west"
}
},
{
- "id": 12683,
+ "id": 13152,
"properties": {
"facing": "east"
}
@@ -271600,38 +277867,38 @@
},
"states": [
{
- "id": 12592,
+ "id": 13061,
"properties": {
"facing": "north"
}
},
{
- "id": 12593,
+ "id": 13062,
"properties": {
"facing": "east"
}
},
{
- "id": 12594,
+ "id": 13063,
"properties": {
"facing": "south"
}
},
{
- "id": 12595,
+ "id": 13064,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12596,
+ "id": 13065,
"properties": {
"facing": "up"
}
},
{
- "id": 12597,
+ "id": 13066,
"properties": {
"facing": "down"
}
@@ -271647,7 +277914,7 @@
"states": [
{
"default": true,
- "id": 5949
+ "id": 6115
}
]
},
@@ -271681,7 +277948,7 @@
},
"states": [
{
- "id": 9500,
+ "id": 9755,
"properties": {
"east": "true",
"north": "true",
@@ -271691,7 +277958,7 @@
}
},
{
- "id": 9501,
+ "id": 9756,
"properties": {
"east": "true",
"north": "true",
@@ -271701,7 +277968,7 @@
}
},
{
- "id": 9502,
+ "id": 9757,
"properties": {
"east": "true",
"north": "true",
@@ -271711,7 +277978,7 @@
}
},
{
- "id": 9503,
+ "id": 9758,
"properties": {
"east": "true",
"north": "true",
@@ -271721,7 +277988,7 @@
}
},
{
- "id": 9504,
+ "id": 9759,
"properties": {
"east": "true",
"north": "true",
@@ -271731,7 +277998,7 @@
}
},
{
- "id": 9505,
+ "id": 9760,
"properties": {
"east": "true",
"north": "true",
@@ -271741,7 +278008,7 @@
}
},
{
- "id": 9506,
+ "id": 9761,
"properties": {
"east": "true",
"north": "true",
@@ -271751,7 +278018,7 @@
}
},
{
- "id": 9507,
+ "id": 9762,
"properties": {
"east": "true",
"north": "true",
@@ -271761,7 +278028,7 @@
}
},
{
- "id": 9508,
+ "id": 9763,
"properties": {
"east": "true",
"north": "false",
@@ -271771,7 +278038,7 @@
}
},
{
- "id": 9509,
+ "id": 9764,
"properties": {
"east": "true",
"north": "false",
@@ -271781,7 +278048,7 @@
}
},
{
- "id": 9510,
+ "id": 9765,
"properties": {
"east": "true",
"north": "false",
@@ -271791,7 +278058,7 @@
}
},
{
- "id": 9511,
+ "id": 9766,
"properties": {
"east": "true",
"north": "false",
@@ -271801,7 +278068,7 @@
}
},
{
- "id": 9512,
+ "id": 9767,
"properties": {
"east": "true",
"north": "false",
@@ -271811,7 +278078,7 @@
}
},
{
- "id": 9513,
+ "id": 9768,
"properties": {
"east": "true",
"north": "false",
@@ -271821,7 +278088,7 @@
}
},
{
- "id": 9514,
+ "id": 9769,
"properties": {
"east": "true",
"north": "false",
@@ -271831,7 +278098,7 @@
}
},
{
- "id": 9515,
+ "id": 9770,
"properties": {
"east": "true",
"north": "false",
@@ -271841,7 +278108,7 @@
}
},
{
- "id": 9516,
+ "id": 9771,
"properties": {
"east": "false",
"north": "true",
@@ -271851,7 +278118,7 @@
}
},
{
- "id": 9517,
+ "id": 9772,
"properties": {
"east": "false",
"north": "true",
@@ -271861,7 +278128,7 @@
}
},
{
- "id": 9518,
+ "id": 9773,
"properties": {
"east": "false",
"north": "true",
@@ -271871,7 +278138,7 @@
}
},
{
- "id": 9519,
+ "id": 9774,
"properties": {
"east": "false",
"north": "true",
@@ -271881,7 +278148,7 @@
}
},
{
- "id": 9520,
+ "id": 9775,
"properties": {
"east": "false",
"north": "true",
@@ -271891,7 +278158,7 @@
}
},
{
- "id": 9521,
+ "id": 9776,
"properties": {
"east": "false",
"north": "true",
@@ -271901,7 +278168,7 @@
}
},
{
- "id": 9522,
+ "id": 9777,
"properties": {
"east": "false",
"north": "true",
@@ -271911,7 +278178,7 @@
}
},
{
- "id": 9523,
+ "id": 9778,
"properties": {
"east": "false",
"north": "true",
@@ -271921,7 +278188,7 @@
}
},
{
- "id": 9524,
+ "id": 9779,
"properties": {
"east": "false",
"north": "false",
@@ -271931,7 +278198,7 @@
}
},
{
- "id": 9525,
+ "id": 9780,
"properties": {
"east": "false",
"north": "false",
@@ -271941,7 +278208,7 @@
}
},
{
- "id": 9526,
+ "id": 9781,
"properties": {
"east": "false",
"north": "false",
@@ -271951,7 +278218,7 @@
}
},
{
- "id": 9527,
+ "id": 9782,
"properties": {
"east": "false",
"north": "false",
@@ -271961,7 +278228,7 @@
}
},
{
- "id": 9528,
+ "id": 9783,
"properties": {
"east": "false",
"north": "false",
@@ -271971,7 +278238,7 @@
}
},
{
- "id": 9529,
+ "id": 9784,
"properties": {
"east": "false",
"north": "false",
@@ -271981,7 +278248,7 @@
}
},
{
- "id": 9530,
+ "id": 9785,
"properties": {
"east": "false",
"north": "false",
@@ -271992,7 +278259,7 @@
},
{
"default": true,
- "id": 9531,
+ "id": 9786,
"properties": {
"east": "false",
"north": "false",
@@ -272011,7 +278278,7 @@
"states": [
{
"default": true,
- "id": 9360
+ "id": 9615
}
]
},
@@ -272032,25 +278299,25 @@
"states": [
{
"default": true,
- "id": 11031,
+ "id": 11366,
"properties": {
"facing": "north"
}
},
{
- "id": 11032,
+ "id": 11367,
"properties": {
"facing": "south"
}
},
{
- "id": 11033,
+ "id": 11368,
"properties": {
"facing": "west"
}
},
{
- "id": 11034,
+ "id": 11369,
"properties": {
"facing": "east"
}
@@ -272065,7 +278332,7 @@
"states": [
{
"default": true,
- "id": 2051
+ "id": 2094
}
]
},
@@ -272101,112 +278368,112 @@
},
"states": [
{
- "id": 8907,
+ "id": 9162,
"properties": {
"powered": "true",
"rotation": "0"
}
},
{
- "id": 8908,
+ "id": 9163,
"properties": {
"powered": "true",
"rotation": "1"
}
},
{
- "id": 8909,
+ "id": 9164,
"properties": {
"powered": "true",
"rotation": "2"
}
},
{
- "id": 8910,
+ "id": 9165,
"properties": {
"powered": "true",
"rotation": "3"
}
},
{
- "id": 8911,
+ "id": 9166,
"properties": {
"powered": "true",
"rotation": "4"
}
},
{
- "id": 8912,
+ "id": 9167,
"properties": {
"powered": "true",
"rotation": "5"
}
},
{
- "id": 8913,
+ "id": 9168,
"properties": {
"powered": "true",
"rotation": "6"
}
},
{
- "id": 8914,
+ "id": 9169,
"properties": {
"powered": "true",
"rotation": "7"
}
},
{
- "id": 8915,
+ "id": 9170,
"properties": {
"powered": "true",
"rotation": "8"
}
},
{
- "id": 8916,
+ "id": 9171,
"properties": {
"powered": "true",
"rotation": "9"
}
},
{
- "id": 8917,
+ "id": 9172,
"properties": {
"powered": "true",
"rotation": "10"
}
},
{
- "id": 8918,
+ "id": 9173,
"properties": {
"powered": "true",
"rotation": "11"
}
},
{
- "id": 8919,
+ "id": 9174,
"properties": {
"powered": "true",
"rotation": "12"
}
},
{
- "id": 8920,
+ "id": 9175,
"properties": {
"powered": "true",
"rotation": "13"
}
},
{
- "id": 8921,
+ "id": 9176,
"properties": {
"powered": "true",
"rotation": "14"
}
},
{
- "id": 8922,
+ "id": 9177,
"properties": {
"powered": "true",
"rotation": "15"
@@ -272214,112 +278481,112 @@
},
{
"default": true,
- "id": 8923,
+ "id": 9178,
"properties": {
"powered": "false",
"rotation": "0"
}
},
{
- "id": 8924,
+ "id": 9179,
"properties": {
"powered": "false",
"rotation": "1"
}
},
{
- "id": 8925,
+ "id": 9180,
"properties": {
"powered": "false",
"rotation": "2"
}
},
{
- "id": 8926,
+ "id": 9181,
"properties": {
"powered": "false",
"rotation": "3"
}
},
{
- "id": 8927,
+ "id": 9182,
"properties": {
"powered": "false",
"rotation": "4"
}
},
{
- "id": 8928,
+ "id": 9183,
"properties": {
"powered": "false",
"rotation": "5"
}
},
{
- "id": 8929,
+ "id": 9184,
"properties": {
"powered": "false",
"rotation": "6"
}
},
{
- "id": 8930,
+ "id": 9185,
"properties": {
"powered": "false",
"rotation": "7"
}
},
{
- "id": 8931,
+ "id": 9186,
"properties": {
"powered": "false",
"rotation": "8"
}
},
{
- "id": 8932,
+ "id": 9187,
"properties": {
"powered": "false",
"rotation": "9"
}
},
{
- "id": 8933,
+ "id": 9188,
"properties": {
"powered": "false",
"rotation": "10"
}
},
{
- "id": 8934,
+ "id": 9189,
"properties": {
"powered": "false",
"rotation": "11"
}
},
{
- "id": 8935,
+ "id": 9190,
"properties": {
"powered": "false",
"rotation": "12"
}
},
{
- "id": 8936,
+ "id": 9191,
"properties": {
"powered": "false",
"rotation": "13"
}
},
{
- "id": 8937,
+ "id": 9192,
"properties": {
"powered": "false",
"rotation": "14"
}
},
{
- "id": 8938,
+ "id": 9193,
"properties": {
"powered": "false",
"rotation": "15"
@@ -272347,7 +278614,7 @@
},
"states": [
{
- "id": 8939,
+ "id": 9194,
"properties": {
"facing": "north",
"powered": "true"
@@ -272355,49 +278622,49 @@
},
{
"default": true,
- "id": 8940,
+ "id": 9195,
"properties": {
"facing": "north",
"powered": "false"
}
},
{
- "id": 8941,
+ "id": 9196,
"properties": {
"facing": "south",
"powered": "true"
}
},
{
- "id": 8942,
+ "id": 9197,
"properties": {
"facing": "south",
"powered": "false"
}
},
{
- "id": 8943,
+ "id": 9198,
"properties": {
"facing": "west",
"powered": "true"
}
},
{
- "id": 8944,
+ "id": 9199,
"properties": {
"facing": "west",
"powered": "false"
}
},
{
- "id": 8945,
+ "id": 9200,
"properties": {
"facing": "east",
"powered": "true"
}
},
{
- "id": 8946,
+ "id": 9201,
"properties": {
"facing": "east",
"powered": "false"
diff --git a/src/main/resources/reports/packets.json b/src/main/resources/reports/packets.json
index 8932094..6c4d9cf 100644
--- a/src/main/resources/reports/packets.json
+++ b/src/main/resources/reports/packets.json
@@ -95,9 +95,6 @@
"minecraft:custom_query": {
"protocol_id": 4
},
- "minecraft:game_profile": {
- "protocol_id": 2
- },
"minecraft:hello": {
"protocol_id": 1
},
@@ -106,6 +103,9 @@
},
"minecraft:login_disconnect": {
"protocol_id": 0
+ },
+ "minecraft:login_finished": {
+ "protocol_id": 2
}
},
"serverbound": {
@@ -207,7 +207,7 @@
"protocol_id": 25
},
"minecraft:custom_report_details": {
- "protocol_id": 122
+ "protocol_id": 129
},
"minecraft:damage_event": {
"protocol_id": 26
@@ -227,278 +227,299 @@
"minecraft:entity_event": {
"protocol_id": 31
},
- "minecraft:explode": {
+ "minecraft:entity_position_sync": {
"protocol_id": 32
},
- "minecraft:forget_level_chunk": {
+ "minecraft:explode": {
"protocol_id": 33
},
- "minecraft:game_event": {
+ "minecraft:forget_level_chunk": {
"protocol_id": 34
},
- "minecraft:horse_screen_open": {
+ "minecraft:game_event": {
"protocol_id": 35
},
- "minecraft:hurt_animation": {
+ "minecraft:horse_screen_open": {
"protocol_id": 36
},
- "minecraft:initialize_border": {
+ "minecraft:hurt_animation": {
"protocol_id": 37
},
- "minecraft:keep_alive": {
+ "minecraft:initialize_border": {
"protocol_id": 38
},
- "minecraft:level_chunk_with_light": {
+ "minecraft:keep_alive": {
"protocol_id": 39
},
- "minecraft:level_event": {
+ "minecraft:level_chunk_with_light": {
"protocol_id": 40
},
- "minecraft:level_particles": {
+ "minecraft:level_event": {
"protocol_id": 41
},
- "minecraft:light_update": {
+ "minecraft:level_particles": {
"protocol_id": 42
},
- "minecraft:login": {
+ "minecraft:light_update": {
"protocol_id": 43
},
- "minecraft:map_item_data": {
+ "minecraft:login": {
"protocol_id": 44
},
- "minecraft:merchant_offers": {
+ "minecraft:map_item_data": {
"protocol_id": 45
},
- "minecraft:move_entity_pos": {
+ "minecraft:merchant_offers": {
"protocol_id": 46
},
- "minecraft:move_entity_pos_rot": {
+ "minecraft:move_entity_pos": {
"protocol_id": 47
},
- "minecraft:move_entity_rot": {
+ "minecraft:move_entity_pos_rot": {
"protocol_id": 48
},
- "minecraft:move_vehicle": {
- "protocol_id": 49
- },
- "minecraft:open_book": {
+ "minecraft:move_entity_rot": {
"protocol_id": 50
},
- "minecraft:open_screen": {
+ "minecraft:move_minecart_along_track": {
+ "protocol_id": 49
+ },
+ "minecraft:move_vehicle": {
"protocol_id": 51
},
- "minecraft:open_sign_editor": {
+ "minecraft:open_book": {
"protocol_id": 52
},
- "minecraft:ping": {
+ "minecraft:open_screen": {
"protocol_id": 53
},
- "minecraft:place_ghost_recipe": {
- "protocol_id": 55
- },
- "minecraft:player_abilities": {
- "protocol_id": 56
- },
- "minecraft:player_chat": {
- "protocol_id": 57
- },
- "minecraft:player_combat_end": {
- "protocol_id": 58
- },
- "minecraft:player_combat_enter": {
- "protocol_id": 59
- },
- "minecraft:player_combat_kill": {
- "protocol_id": 60
- },
- "minecraft:player_info_remove": {
- "protocol_id": 61
- },
- "minecraft:player_info_update": {
- "protocol_id": 62
- },
- "minecraft:player_look_at": {
- "protocol_id": 63
- },
- "minecraft:player_position": {
- "protocol_id": 64
- },
- "minecraft:pong_response": {
+ "minecraft:open_sign_editor": {
"protocol_id": 54
},
- "minecraft:projectile_power": {
- "protocol_id": 121
+ "minecraft:ping": {
+ "protocol_id": 55
},
- "minecraft:recipe": {
+ "minecraft:place_ghost_recipe": {
+ "protocol_id": 57
+ },
+ "minecraft:player_abilities": {
+ "protocol_id": 58
+ },
+ "minecraft:player_chat": {
+ "protocol_id": 59
+ },
+ "minecraft:player_combat_end": {
+ "protocol_id": 60
+ },
+ "minecraft:player_combat_enter": {
+ "protocol_id": 61
+ },
+ "minecraft:player_combat_kill": {
+ "protocol_id": 62
+ },
+ "minecraft:player_info_remove": {
+ "protocol_id": 63
+ },
+ "minecraft:player_info_update": {
+ "protocol_id": 64
+ },
+ "minecraft:player_look_at": {
"protocol_id": 65
},
- "minecraft:remove_entities": {
+ "minecraft:player_position": {
"protocol_id": 66
},
- "minecraft:remove_mob_effect": {
+ "minecraft:player_rotation": {
"protocol_id": 67
},
- "minecraft:reset_score": {
+ "minecraft:pong_response": {
+ "protocol_id": 56
+ },
+ "minecraft:projectile_power": {
+ "protocol_id": 128
+ },
+ "minecraft:recipe_book_add": {
"protocol_id": 68
},
- "minecraft:resource_pack_pop": {
+ "minecraft:recipe_book_remove": {
"protocol_id": 69
},
- "minecraft:resource_pack_push": {
+ "minecraft:recipe_book_settings": {
"protocol_id": 70
},
- "minecraft:respawn": {
+ "minecraft:remove_entities": {
"protocol_id": 71
},
- "minecraft:rotate_head": {
+ "minecraft:remove_mob_effect": {
"protocol_id": 72
},
- "minecraft:section_blocks_update": {
+ "minecraft:reset_score": {
"protocol_id": 73
},
- "minecraft:select_advancements_tab": {
+ "minecraft:resource_pack_pop": {
"protocol_id": 74
},
- "minecraft:server_data": {
+ "minecraft:resource_pack_push": {
"protocol_id": 75
},
- "minecraft:server_links": {
- "protocol_id": 123
- },
- "minecraft:set_action_bar_text": {
+ "minecraft:respawn": {
"protocol_id": 76
},
- "minecraft:set_border_center": {
+ "minecraft:rotate_head": {
"protocol_id": 77
},
- "minecraft:set_border_lerp_size": {
+ "minecraft:section_blocks_update": {
"protocol_id": 78
},
- "minecraft:set_border_size": {
+ "minecraft:select_advancements_tab": {
"protocol_id": 79
},
- "minecraft:set_border_warning_delay": {
+ "minecraft:server_data": {
"protocol_id": 80
},
- "minecraft:set_border_warning_distance": {
+ "minecraft:server_links": {
+ "protocol_id": 130
+ },
+ "minecraft:set_action_bar_text": {
"protocol_id": 81
},
- "minecraft:set_camera": {
+ "minecraft:set_border_center": {
"protocol_id": 82
},
- "minecraft:set_carried_item": {
+ "minecraft:set_border_lerp_size": {
"protocol_id": 83
},
- "minecraft:set_chunk_cache_center": {
+ "minecraft:set_border_size": {
"protocol_id": 84
},
- "minecraft:set_chunk_cache_radius": {
+ "minecraft:set_border_warning_delay": {
"protocol_id": 85
},
- "minecraft:set_default_spawn_position": {
+ "minecraft:set_border_warning_distance": {
"protocol_id": 86
},
- "minecraft:set_display_objective": {
+ "minecraft:set_camera": {
"protocol_id": 87
},
- "minecraft:set_entity_data": {
+ "minecraft:set_chunk_cache_center": {
"protocol_id": 88
},
- "minecraft:set_entity_link": {
+ "minecraft:set_chunk_cache_radius": {
"protocol_id": 89
},
- "minecraft:set_entity_motion": {
+ "minecraft:set_cursor_item": {
"protocol_id": 90
},
- "minecraft:set_equipment": {
+ "minecraft:set_default_spawn_position": {
"protocol_id": 91
},
- "minecraft:set_experience": {
+ "minecraft:set_display_objective": {
"protocol_id": 92
},
- "minecraft:set_health": {
+ "minecraft:set_entity_data": {
"protocol_id": 93
},
- "minecraft:set_objective": {
+ "minecraft:set_entity_link": {
"protocol_id": 94
},
- "minecraft:set_passengers": {
+ "minecraft:set_entity_motion": {
"protocol_id": 95
},
- "minecraft:set_player_team": {
+ "minecraft:set_equipment": {
"protocol_id": 96
},
- "minecraft:set_score": {
+ "minecraft:set_experience": {
"protocol_id": 97
},
- "minecraft:set_simulation_distance": {
+ "minecraft:set_health": {
"protocol_id": 98
},
- "minecraft:set_subtitle_text": {
+ "minecraft:set_held_slot": {
"protocol_id": 99
},
- "minecraft:set_time": {
+ "minecraft:set_objective": {
"protocol_id": 100
},
- "minecraft:set_title_text": {
+ "minecraft:set_passengers": {
"protocol_id": 101
},
- "minecraft:set_titles_animation": {
+ "minecraft:set_player_inventory": {
"protocol_id": 102
},
- "minecraft:sound": {
- "protocol_id": 104
- },
- "minecraft:sound_entity": {
+ "minecraft:set_player_team": {
"protocol_id": 103
},
- "minecraft:start_configuration": {
+ "minecraft:set_score": {
+ "protocol_id": 104
+ },
+ "minecraft:set_simulation_distance": {
"protocol_id": 105
},
- "minecraft:stop_sound": {
+ "minecraft:set_subtitle_text": {
"protocol_id": 106
},
- "minecraft:store_cookie": {
+ "minecraft:set_time": {
"protocol_id": 107
},
- "minecraft:system_chat": {
+ "minecraft:set_title_text": {
"protocol_id": 108
},
- "minecraft:tab_list": {
+ "minecraft:set_titles_animation": {
"protocol_id": 109
},
- "minecraft:tag_query": {
- "protocol_id": 110
- },
- "minecraft:take_item_entity": {
+ "minecraft:sound": {
"protocol_id": 111
},
- "minecraft:teleport_entity": {
+ "minecraft:sound_entity": {
+ "protocol_id": 110
+ },
+ "minecraft:start_configuration": {
"protocol_id": 112
},
- "minecraft:ticking_state": {
+ "minecraft:stop_sound": {
"protocol_id": 113
},
- "minecraft:ticking_step": {
+ "minecraft:store_cookie": {
"protocol_id": 114
},
- "minecraft:transfer": {
+ "minecraft:system_chat": {
"protocol_id": 115
},
- "minecraft:update_advancements": {
+ "minecraft:tab_list": {
"protocol_id": 116
},
- "minecraft:update_attributes": {
+ "minecraft:tag_query": {
"protocol_id": 117
},
- "minecraft:update_mob_effect": {
+ "minecraft:take_item_entity": {
"protocol_id": 118
},
- "minecraft:update_recipes": {
+ "minecraft:teleport_entity": {
"protocol_id": 119
},
- "minecraft:update_tags": {
+ "minecraft:ticking_state": {
"protocol_id": 120
+ },
+ "minecraft:ticking_step": {
+ "protocol_id": 121
+ },
+ "minecraft:transfer": {
+ "protocol_id": 122
+ },
+ "minecraft:update_advancements": {
+ "protocol_id": 123
+ },
+ "minecraft:update_attributes": {
+ "protocol_id": 124
+ },
+ "minecraft:update_mob_effect": {
+ "protocol_id": 125
+ },
+ "minecraft:update_recipes": {
+ "protocol_id": 126
+ },
+ "minecraft:update_tags": {
+ "protocol_id": 127
}
},
"serverbound": {
@@ -508,173 +529,179 @@
"minecraft:block_entity_tag_query": {
"protocol_id": 1
},
- "minecraft:change_difficulty": {
+ "minecraft:bundle_item_selected": {
"protocol_id": 2
},
- "minecraft:chat": {
- "protocol_id": 6
- },
- "minecraft:chat_ack": {
+ "minecraft:change_difficulty": {
"protocol_id": 3
},
- "minecraft:chat_command": {
- "protocol_id": 4
- },
- "minecraft:chat_command_signed": {
- "protocol_id": 5
- },
- "minecraft:chat_session_update": {
+ "minecraft:chat": {
"protocol_id": 7
},
- "minecraft:chunk_batch_received": {
+ "minecraft:chat_ack": {
+ "protocol_id": 4
+ },
+ "minecraft:chat_command": {
+ "protocol_id": 5
+ },
+ "minecraft:chat_command_signed": {
+ "protocol_id": 6
+ },
+ "minecraft:chat_session_update": {
"protocol_id": 8
},
- "minecraft:client_command": {
+ "minecraft:chunk_batch_received": {
"protocol_id": 9
},
- "minecraft:client_information": {
+ "minecraft:client_command": {
"protocol_id": 10
},
- "minecraft:command_suggestion": {
- "protocol_id": 11
- },
- "minecraft:configuration_acknowledged": {
+ "minecraft:client_information": {
"protocol_id": 12
},
- "minecraft:container_button_click": {
+ "minecraft:client_tick_end": {
+ "protocol_id": 11
+ },
+ "minecraft:command_suggestion": {
"protocol_id": 13
},
- "minecraft:container_click": {
+ "minecraft:configuration_acknowledged": {
"protocol_id": 14
},
- "minecraft:container_close": {
+ "minecraft:container_button_click": {
"protocol_id": 15
},
- "minecraft:container_slot_state_changed": {
+ "minecraft:container_click": {
"protocol_id": 16
},
- "minecraft:cookie_response": {
+ "minecraft:container_close": {
"protocol_id": 17
},
- "minecraft:custom_payload": {
+ "minecraft:container_slot_state_changed": {
"protocol_id": 18
},
- "minecraft:debug_sample_subscription": {
+ "minecraft:cookie_response": {
"protocol_id": 19
},
- "minecraft:edit_book": {
+ "minecraft:custom_payload": {
"protocol_id": 20
},
- "minecraft:entity_tag_query": {
+ "minecraft:debug_sample_subscription": {
"protocol_id": 21
},
- "minecraft:interact": {
+ "minecraft:edit_book": {
"protocol_id": 22
},
- "minecraft:jigsaw_generate": {
+ "minecraft:entity_tag_query": {
"protocol_id": 23
},
- "minecraft:keep_alive": {
+ "minecraft:interact": {
"protocol_id": 24
},
- "minecraft:lock_difficulty": {
+ "minecraft:jigsaw_generate": {
"protocol_id": 25
},
- "minecraft:move_player_pos": {
+ "minecraft:keep_alive": {
"protocol_id": 26
},
- "minecraft:move_player_pos_rot": {
+ "minecraft:lock_difficulty": {
"protocol_id": 27
},
- "minecraft:move_player_rot": {
+ "minecraft:move_player_pos": {
"protocol_id": 28
},
- "minecraft:move_player_status_only": {
+ "minecraft:move_player_pos_rot": {
"protocol_id": 29
},
- "minecraft:move_vehicle": {
+ "minecraft:move_player_rot": {
"protocol_id": 30
},
- "minecraft:paddle_boat": {
+ "minecraft:move_player_status_only": {
"protocol_id": 31
},
- "minecraft:pick_item": {
+ "minecraft:move_vehicle": {
"protocol_id": 32
},
- "minecraft:ping_request": {
+ "minecraft:paddle_boat": {
"protocol_id": 33
},
- "minecraft:place_recipe": {
+ "minecraft:pick_item": {
"protocol_id": 34
},
- "minecraft:player_abilities": {
+ "minecraft:ping_request": {
"protocol_id": 35
},
- "minecraft:player_action": {
+ "minecraft:place_recipe": {
"protocol_id": 36
},
- "minecraft:player_command": {
+ "minecraft:player_abilities": {
"protocol_id": 37
},
- "minecraft:player_input": {
+ "minecraft:player_action": {
"protocol_id": 38
},
- "minecraft:pong": {
+ "minecraft:player_command": {
"protocol_id": 39
},
- "minecraft:recipe_book_change_settings": {
+ "minecraft:player_input": {
"protocol_id": 40
},
- "minecraft:recipe_book_seen_recipe": {
+ "minecraft:pong": {
"protocol_id": 41
},
- "minecraft:rename_item": {
+ "minecraft:recipe_book_change_settings": {
"protocol_id": 42
},
- "minecraft:resource_pack": {
+ "minecraft:recipe_book_seen_recipe": {
"protocol_id": 43
},
- "minecraft:seen_advancements": {
+ "minecraft:rename_item": {
"protocol_id": 44
},
- "minecraft:select_trade": {
+ "minecraft:resource_pack": {
"protocol_id": 45
},
- "minecraft:set_beacon": {
+ "minecraft:seen_advancements": {
"protocol_id": 46
},
- "minecraft:set_carried_item": {
+ "minecraft:select_trade": {
"protocol_id": 47
},
- "minecraft:set_command_block": {
+ "minecraft:set_beacon": {
"protocol_id": 48
},
- "minecraft:set_command_minecart": {
+ "minecraft:set_carried_item": {
"protocol_id": 49
},
- "minecraft:set_creative_mode_slot": {
+ "minecraft:set_command_block": {
"protocol_id": 50
},
- "minecraft:set_jigsaw_block": {
+ "minecraft:set_command_minecart": {
"protocol_id": 51
},
- "minecraft:set_structure_block": {
+ "minecraft:set_creative_mode_slot": {
"protocol_id": 52
},
- "minecraft:sign_update": {
+ "minecraft:set_jigsaw_block": {
"protocol_id": 53
},
- "minecraft:swing": {
+ "minecraft:set_structure_block": {
"protocol_id": 54
},
- "minecraft:teleport_to_entity": {
+ "minecraft:sign_update": {
"protocol_id": 55
},
- "minecraft:use_item": {
+ "minecraft:swing": {
+ "protocol_id": 56
+ },
+ "minecraft:teleport_to_entity": {
"protocol_id": 57
},
+ "minecraft:use_item": {
+ "protocol_id": 59
+ },
"minecraft:use_item_on": {
- "protocol_id": 56
+ "protocol_id": 58
}
}
},
diff --git a/src/main/resources/reports/registries.json b/src/main/resources/reports/registries.json
index 257ad97..6e39dec 100644
--- a/src/main/resources/reports/registries.json
+++ b/src/main/resources/reports/registries.json
@@ -82,129 +82,103 @@
},
"protocol_id": 28
},
- "minecraft:armor_material": {
- "entries": {
- "minecraft:armadillo": {
- "protocol_id": 7
- },
- "minecraft:chainmail": {
- "protocol_id": 1
- },
- "minecraft:diamond": {
- "protocol_id": 4
- },
- "minecraft:gold": {
- "protocol_id": 3
- },
- "minecraft:iron": {
- "protocol_id": 2
- },
- "minecraft:leather": {
- "protocol_id": 0
- },
- "minecraft:netherite": {
- "protocol_id": 6
- },
- "minecraft:turtle": {
- "protocol_id": 5
- }
- },
- "protocol_id": 67
- },
"minecraft:attribute": {
"entries": {
- "minecraft:generic.armor": {
+ "minecraft:armor": {
"protocol_id": 0
},
- "minecraft:generic.armor_toughness": {
+ "minecraft:armor_toughness": {
"protocol_id": 1
},
- "minecraft:generic.attack_damage": {
+ "minecraft:attack_damage": {
"protocol_id": 2
},
- "minecraft:generic.attack_knockback": {
+ "minecraft:attack_knockback": {
"protocol_id": 3
},
- "minecraft:generic.attack_speed": {
+ "minecraft:attack_speed": {
"protocol_id": 4
},
- "minecraft:generic.burning_time": {
- "protocol_id": 7
- },
- "minecraft:generic.explosion_knockback_resistance": {
- "protocol_id": 8
- },
- "minecraft:generic.fall_damage_multiplier": {
- "protocol_id": 10
- },
- "minecraft:generic.flying_speed": {
- "protocol_id": 11
- },
- "minecraft:generic.follow_range": {
- "protocol_id": 12
- },
- "minecraft:generic.gravity": {
- "protocol_id": 13
- },
- "minecraft:generic.jump_strength": {
- "protocol_id": 14
- },
- "minecraft:generic.knockback_resistance": {
- "protocol_id": 15
- },
- "minecraft:generic.luck": {
- "protocol_id": 16
- },
- "minecraft:generic.max_absorption": {
- "protocol_id": 17
- },
- "minecraft:generic.max_health": {
- "protocol_id": 18
- },
- "minecraft:generic.movement_efficiency": {
- "protocol_id": 20
- },
- "minecraft:generic.movement_speed": {
- "protocol_id": 21
- },
- "minecraft:generic.oxygen_bonus": {
- "protocol_id": 22
- },
- "minecraft:generic.safe_fall_distance": {
- "protocol_id": 23
- },
- "minecraft:generic.scale": {
- "protocol_id": 24
- },
- "minecraft:generic.step_height": {
- "protocol_id": 27
- },
- "minecraft:generic.water_movement_efficiency": {
- "protocol_id": 30
- },
- "minecraft:player.block_break_speed": {
+ "minecraft:block_break_speed": {
"protocol_id": 5
},
- "minecraft:player.block_interaction_range": {
+ "minecraft:block_interaction_range": {
"protocol_id": 6
},
- "minecraft:player.entity_interaction_range": {
+ "minecraft:burning_time": {
+ "protocol_id": 7
+ },
+ "minecraft:entity_interaction_range": {
"protocol_id": 9
},
- "minecraft:player.mining_efficiency": {
+ "minecraft:explosion_knockback_resistance": {
+ "protocol_id": 8
+ },
+ "minecraft:fall_damage_multiplier": {
+ "protocol_id": 10
+ },
+ "minecraft:flying_speed": {
+ "protocol_id": 11
+ },
+ "minecraft:follow_range": {
+ "protocol_id": 12
+ },
+ "minecraft:gravity": {
+ "protocol_id": 13
+ },
+ "minecraft:jump_strength": {
+ "protocol_id": 14
+ },
+ "minecraft:knockback_resistance": {
+ "protocol_id": 15
+ },
+ "minecraft:luck": {
+ "protocol_id": 16
+ },
+ "minecraft:max_absorption": {
+ "protocol_id": 17
+ },
+ "minecraft:max_health": {
+ "protocol_id": 18
+ },
+ "minecraft:mining_efficiency": {
"protocol_id": 19
},
- "minecraft:player.sneaking_speed": {
+ "minecraft:movement_efficiency": {
+ "protocol_id": 20
+ },
+ "minecraft:movement_speed": {
+ "protocol_id": 21
+ },
+ "minecraft:oxygen_bonus": {
+ "protocol_id": 22
+ },
+ "minecraft:safe_fall_distance": {
+ "protocol_id": 23
+ },
+ "minecraft:scale": {
+ "protocol_id": 24
+ },
+ "minecraft:sneaking_speed": {
"protocol_id": 25
},
- "minecraft:player.submerged_mining_speed": {
+ "minecraft:spawn_reinforcements": {
+ "protocol_id": 26
+ },
+ "minecraft:step_height": {
+ "protocol_id": 27
+ },
+ "minecraft:submerged_mining_speed": {
"protocol_id": 28
},
- "minecraft:player.sweeping_damage_ratio": {
+ "minecraft:sweeping_damage_ratio": {
"protocol_id": 29
},
- "minecraft:zombie.spawn_reinforcements": {
- "protocol_id": 26
+ "minecraft:tempt_range": {
+ "protocol_id": 30
+ },
+ "minecraft:water_movement_efficiency": {
+ "protocol_id": 31
}
},
"protocol_id": 18
@@ -213,3184 +187,3256 @@
"default": "minecraft:air",
"entries": {
"minecraft:acacia_button": {
- "protocol_id": 389
+ "protocol_id": 404
},
"minecraft:acacia_door": {
- "protocol_id": 586
+ "protocol_id": 606
},
"minecraft:acacia_fence": {
- "protocol_id": 578
+ "protocol_id": 597
},
"minecraft:acacia_fence_gate": {
- "protocol_id": 570
+ "protocol_id": 588
},
"minecraft:acacia_hanging_sign": {
- "protocol_id": 211
+ "protocol_id": 221
},
"minecraft:acacia_leaves": {
- "protocol_id": 86
+ "protocol_id": 92
},
"minecraft:acacia_log": {
- "protocol_id": 50
+ "protocol_id": 53
},
"minecraft:acacia_planks": {
"protocol_id": 17
},
"minecraft:acacia_pressure_plate": {
- "protocol_id": 237
+ "protocol_id": 249
},
"minecraft:acacia_sapling": {
- "protocol_id": 27
+ "protocol_id": 29
},
"minecraft:acacia_sign": {
- "protocol_id": 189
+ "protocol_id": 197
},
"minecraft:acacia_slab": {
- "protocol_id": 543
+ "protocol_id": 560
},
"minecraft:acacia_stairs": {
- "protocol_id": 457
+ "protocol_id": 473
},
"minecraft:acacia_trapdoor": {
- "protocol_id": 288
+ "protocol_id": 301
},
"minecraft:acacia_wall_hanging_sign": {
- "protocol_id": 222
+ "protocol_id": 233
},
"minecraft:acacia_wall_sign": {
- "protocol_id": 202
+ "protocol_id": 211
},
"minecraft:acacia_wood": {
- "protocol_id": 70
+ "protocol_id": 75
},
"minecraft:activator_rail": {
- "protocol_id": 423
+ "protocol_id": 439
},
"minecraft:air": {
"protocol_id": 0
},
"minecraft:allium": {
- "protocol_id": 151
+ "protocol_id": 158
},
"minecraft:amethyst_block": {
- "protocol_id": 903
+ "protocol_id": 924
},
"minecraft:amethyst_cluster": {
- "protocol_id": 905
+ "protocol_id": 926
},
"minecraft:ancient_debris": {
- "protocol_id": 841
+ "protocol_id": 862
},
"minecraft:andesite": {
"protocol_id": 6
},
"minecraft:andesite_slab": {
- "protocol_id": 755
+ "protocol_id": 776
},
"minecraft:andesite_stairs": {
- "protocol_id": 742
+ "protocol_id": 763
},
"minecraft:andesite_wall": {
- "protocol_id": 767
+ "protocol_id": 788
},
"minecraft:anvil": {
- "protocol_id": 408
+ "protocol_id": 424
},
"minecraft:attached_melon_stem": {
- "protocol_id": 314
+ "protocol_id": 328
},
"minecraft:attached_pumpkin_stem": {
- "protocol_id": 313
+ "protocol_id": 327
},
"minecraft:azalea": {
- "protocol_id": 1012
+ "protocol_id": 1033
},
"minecraft:azalea_leaves": {
- "protocol_id": 90
+ "protocol_id": 97
},
"minecraft:azure_bluet": {
- "protocol_id": 152
+ "protocol_id": 159
},
"minecraft:bamboo": {
- "protocol_id": 727
+ "protocol_id": 748
},
"minecraft:bamboo_block": {
- "protocol_id": 56
+ "protocol_id": 60
},
"minecraft:bamboo_button": {
- "protocol_id": 393
+ "protocol_id": 409
},
"minecraft:bamboo_door": {
- "protocol_id": 590
+ "protocol_id": 611
},
"minecraft:bamboo_fence": {
- "protocol_id": 582
+ "protocol_id": 602
},
"minecraft:bamboo_fence_gate": {
- "protocol_id": 574
+ "protocol_id": 593
},
"minecraft:bamboo_hanging_sign": {
- "protocol_id": 218
- },
- "minecraft:bamboo_mosaic": {
- "protocol_id": 22
- },
- "minecraft:bamboo_mosaic_slab": {
- "protocol_id": 548
- },
- "minecraft:bamboo_mosaic_stairs": {
- "protocol_id": 462
- },
- "minecraft:bamboo_planks": {
- "protocol_id": 21
- },
- "minecraft:bamboo_pressure_plate": {
- "protocol_id": 241
- },
- "minecraft:bamboo_sapling": {
- "protocol_id": 726
- },
- "minecraft:bamboo_sign": {
- "protocol_id": 194
- },
- "minecraft:bamboo_slab": {
- "protocol_id": 547
- },
- "minecraft:bamboo_stairs": {
- "protocol_id": 461
- },
- "minecraft:bamboo_trapdoor": {
- "protocol_id": 292
- },
- "minecraft:bamboo_wall_hanging_sign": {
"protocol_id": 229
},
+ "minecraft:bamboo_mosaic": {
+ "protocol_id": 24
+ },
+ "minecraft:bamboo_mosaic_slab": {
+ "protocol_id": 566
+ },
+ "minecraft:bamboo_mosaic_stairs": {
+ "protocol_id": 479
+ },
+ "minecraft:bamboo_planks": {
+ "protocol_id": 23
+ },
+ "minecraft:bamboo_pressure_plate": {
+ "protocol_id": 254
+ },
+ "minecraft:bamboo_sapling": {
+ "protocol_id": 747
+ },
+ "minecraft:bamboo_sign": {
+ "protocol_id": 203
+ },
+ "minecraft:bamboo_slab": {
+ "protocol_id": 565
+ },
+ "minecraft:bamboo_stairs": {
+ "protocol_id": 478
+ },
+ "minecraft:bamboo_trapdoor": {
+ "protocol_id": 306
+ },
+ "minecraft:bamboo_wall_hanging_sign": {
+ "protocol_id": 241
+ },
"minecraft:bamboo_wall_sign": {
- "protocol_id": 207
+ "protocol_id": 217
},
"minecraft:barrel": {
- "protocol_id": 774
+ "protocol_id": 795
},
"minecraft:barrier": {
- "protocol_id": 464
+ "protocol_id": 481
},
"minecraft:basalt": {
- "protocol_id": 258
+ "protocol_id": 271
},
"minecraft:beacon": {
- "protocol_id": 352
+ "protocol_id": 366
},
"minecraft:bedrock": {
- "protocol_id": 31
+ "protocol_id": 34
},
"minecraft:bee_nest": {
- "protocol_id": 836
+ "protocol_id": 857
},
"minecraft:beehive": {
- "protocol_id": 837
+ "protocol_id": 858
},
"minecraft:beetroots": {
- "protocol_id": 601
+ "protocol_id": 622
},
"minecraft:bell": {
- "protocol_id": 783
+ "protocol_id": 804
},
"minecraft:big_dripleaf": {
- "protocol_id": 1017
+ "protocol_id": 1038
},
"minecraft:big_dripleaf_stem": {
- "protocol_id": 1018
+ "protocol_id": 1039
},
"minecraft:birch_button": {
- "protocol_id": 387
+ "protocol_id": 402
},
"minecraft:birch_door": {
- "protocol_id": 584
+ "protocol_id": 604
},
"minecraft:birch_fence": {
- "protocol_id": 576
+ "protocol_id": 595
},
"minecraft:birch_fence_gate": {
- "protocol_id": 568
+ "protocol_id": 586
},
"minecraft:birch_hanging_sign": {
- "protocol_id": 210
+ "protocol_id": 220
},
"minecraft:birch_leaves": {
- "protocol_id": 84
+ "protocol_id": 90
},
"minecraft:birch_log": {
- "protocol_id": 48
+ "protocol_id": 51
},
"minecraft:birch_planks": {
"protocol_id": 15
},
"minecraft:birch_pressure_plate": {
- "protocol_id": 235
+ "protocol_id": 247
},
"minecraft:birch_sapling": {
- "protocol_id": 25
+ "protocol_id": 27
},
"minecraft:birch_sign": {
- "protocol_id": 188
+ "protocol_id": 196
},
"minecraft:birch_slab": {
- "protocol_id": 541
+ "protocol_id": 558
},
"minecraft:birch_stairs": {
- "protocol_id": 349
+ "protocol_id": 363
},
"minecraft:birch_trapdoor": {
- "protocol_id": 286
+ "protocol_id": 299
},
"minecraft:birch_wall_hanging_sign": {
- "protocol_id": 221
+ "protocol_id": 232
},
"minecraft:birch_wall_sign": {
- "protocol_id": 201
+ "protocol_id": 210
},
"minecraft:birch_wood": {
- "protocol_id": 68
+ "protocol_id": 73
},
"minecraft:black_banner": {
- "protocol_id": 518
+ "protocol_id": 535
},
"minecraft:black_bed": {
- "protocol_id": 118
+ "protocol_id": 125
},
"minecraft:black_candle": {
- "protocol_id": 885
+ "protocol_id": 906
},
"minecraft:black_candle_cake": {
- "protocol_id": 902
- },
- "minecraft:black_carpet": {
- "protocol_id": 493
- },
- "minecraft:black_concrete": {
- "protocol_id": 661
- },
- "minecraft:black_concrete_powder": {
- "protocol_id": 677
- },
- "minecraft:black_glazed_terracotta": {
- "protocol_id": 645
- },
- "minecraft:black_shulker_box": {
- "protocol_id": 629
- },
- "minecraft:black_stained_glass": {
- "protocol_id": 283
- },
- "minecraft:black_stained_glass_pane": {
- "protocol_id": 456
- },
- "minecraft:black_terracotta": {
- "protocol_id": 440
- },
- "minecraft:black_wall_banner": {
- "protocol_id": 534
- },
- "minecraft:black_wool": {
- "protocol_id": 145
- },
- "minecraft:blackstone": {
- "protocol_id": 849
- },
- "minecraft:blackstone_slab": {
- "protocol_id": 852
- },
- "minecraft:blackstone_stairs": {
- "protocol_id": 850
- },
- "minecraft:blackstone_wall": {
- "protocol_id": 851
- },
- "minecraft:blast_furnace": {
- "protocol_id": 776
- },
- "minecraft:blue_banner": {
- "protocol_id": 514
- },
- "minecraft:blue_bed": {
- "protocol_id": 114
- },
- "minecraft:blue_candle": {
- "protocol_id": 881
- },
- "minecraft:blue_candle_cake": {
- "protocol_id": 898
- },
- "minecraft:blue_carpet": {
- "protocol_id": 489
- },
- "minecraft:blue_concrete": {
- "protocol_id": 657
- },
- "minecraft:blue_concrete_powder": {
- "protocol_id": 673
- },
- "minecraft:blue_glazed_terracotta": {
- "protocol_id": 641
- },
- "minecraft:blue_ice": {
- "protocol_id": 724
- },
- "minecraft:blue_orchid": {
- "protocol_id": 150
- },
- "minecraft:blue_shulker_box": {
- "protocol_id": 625
- },
- "minecraft:blue_stained_glass": {
- "protocol_id": 279
- },
- "minecraft:blue_stained_glass_pane": {
- "protocol_id": 452
- },
- "minecraft:blue_terracotta": {
- "protocol_id": 436
- },
- "minecraft:blue_wall_banner": {
- "protocol_id": 530
- },
- "minecraft:blue_wool": {
- "protocol_id": 141
- },
- "minecraft:bone_block": {
- "protocol_id": 610
- },
- "minecraft:bookshelf": {
- "protocol_id": 167
- },
- "minecraft:brain_coral": {
- "protocol_id": 699
- },
- "minecraft:brain_coral_block": {
- "protocol_id": 689
- },
- "minecraft:brain_coral_fan": {
- "protocol_id": 709
- },
- "minecraft:brain_coral_wall_fan": {
- "protocol_id": 719
- },
- "minecraft:brewing_stand": {
- "protocol_id": 330
- },
- "minecraft:brick_slab": {
- "protocol_id": 555
- },
- "minecraft:brick_stairs": {
- "protocol_id": 320
- },
- "minecraft:brick_wall": {
- "protocol_id": 759
- },
- "minecraft:bricks": {
- "protocol_id": 165
- },
- "minecraft:brown_banner": {
- "protocol_id": 515
- },
- "minecraft:brown_bed": {
- "protocol_id": 115
- },
- "minecraft:brown_candle": {
- "protocol_id": 882
- },
- "minecraft:brown_candle_cake": {
- "protocol_id": 899
- },
- "minecraft:brown_carpet": {
- "protocol_id": 490
- },
- "minecraft:brown_concrete": {
- "protocol_id": 658
- },
- "minecraft:brown_concrete_powder": {
- "protocol_id": 674
- },
- "minecraft:brown_glazed_terracotta": {
- "protocol_id": 642
- },
- "minecraft:brown_mushroom": {
- "protocol_id": 161
- },
- "minecraft:brown_mushroom_block": {
- "protocol_id": 305
- },
- "minecraft:brown_shulker_box": {
- "protocol_id": 626
- },
- "minecraft:brown_stained_glass": {
- "protocol_id": 280
- },
- "minecraft:brown_stained_glass_pane": {
- "protocol_id": 453
- },
- "minecraft:brown_terracotta": {
- "protocol_id": 437
- },
- "minecraft:brown_wall_banner": {
- "protocol_id": 531
- },
- "minecraft:brown_wool": {
- "protocol_id": 142
- },
- "minecraft:bubble_column": {
- "protocol_id": 731
- },
- "minecraft:bubble_coral": {
- "protocol_id": 700
- },
- "minecraft:bubble_coral_block": {
- "protocol_id": 690
- },
- "minecraft:bubble_coral_fan": {
- "protocol_id": 710
- },
- "minecraft:bubble_coral_wall_fan": {
- "protocol_id": 720
- },
- "minecraft:budding_amethyst": {
- "protocol_id": 904
- },
- "minecraft:cactus": {
- "protocol_id": 250
- },
- "minecraft:cake": {
- "protocol_id": 266
- },
- "minecraft:calcite": {
"protocol_id": 923
},
- "minecraft:calibrated_sculk_sensor": {
- "protocol_id": 927
+ "minecraft:black_carpet": {
+ "protocol_id": 510
},
- "minecraft:campfire": {
- "protocol_id": 786
+ "minecraft:black_concrete": {
+ "protocol_id": 682
},
- "minecraft:candle": {
- "protocol_id": 869
+ "minecraft:black_concrete_powder": {
+ "protocol_id": 698
},
- "minecraft:candle_cake": {
- "protocol_id": 886
+ "minecraft:black_glazed_terracotta": {
+ "protocol_id": 666
},
- "minecraft:carrots": {
- "protocol_id": 383
+ "minecraft:black_shulker_box": {
+ "protocol_id": 650
},
- "minecraft:cartography_table": {
- "protocol_id": 777
+ "minecraft:black_stained_glass": {
+ "protocol_id": 296
},
- "minecraft:carved_pumpkin": {
- "protocol_id": 264
+ "minecraft:black_stained_glass_pane": {
+ "protocol_id": 472
},
- "minecraft:cauldron": {
- "protocol_id": 331
+ "minecraft:black_terracotta": {
+ "protocol_id": 456
},
- "minecraft:cave_air": {
+ "minecraft:black_wall_banner": {
+ "protocol_id": 551
+ },
+ "minecraft:black_wool": {
+ "protocol_id": 152
+ },
+ "minecraft:blackstone": {
+ "protocol_id": 870
+ },
+ "minecraft:blackstone_slab": {
+ "protocol_id": 873
+ },
+ "minecraft:blackstone_stairs": {
+ "protocol_id": 871
+ },
+ "minecraft:blackstone_wall": {
+ "protocol_id": 872
+ },
+ "minecraft:blast_furnace": {
+ "protocol_id": 797
+ },
+ "minecraft:blue_banner": {
+ "protocol_id": 531
+ },
+ "minecraft:blue_bed": {
+ "protocol_id": 121
+ },
+ "minecraft:blue_candle": {
+ "protocol_id": 902
+ },
+ "minecraft:blue_candle_cake": {
+ "protocol_id": 919
+ },
+ "minecraft:blue_carpet": {
+ "protocol_id": 506
+ },
+ "minecraft:blue_concrete": {
+ "protocol_id": 678
+ },
+ "minecraft:blue_concrete_powder": {
+ "protocol_id": 694
+ },
+ "minecraft:blue_glazed_terracotta": {
+ "protocol_id": 662
+ },
+ "minecraft:blue_ice": {
+ "protocol_id": 745
+ },
+ "minecraft:blue_orchid": {
+ "protocol_id": 157
+ },
+ "minecraft:blue_shulker_box": {
+ "protocol_id": 646
+ },
+ "minecraft:blue_stained_glass": {
+ "protocol_id": 292
+ },
+ "minecraft:blue_stained_glass_pane": {
+ "protocol_id": 468
+ },
+ "minecraft:blue_terracotta": {
+ "protocol_id": 452
+ },
+ "minecraft:blue_wall_banner": {
+ "protocol_id": 547
+ },
+ "minecraft:blue_wool": {
+ "protocol_id": 148
+ },
+ "minecraft:bone_block": {
+ "protocol_id": 631
+ },
+ "minecraft:bookshelf": {
+ "protocol_id": 174
+ },
+ "minecraft:brain_coral": {
+ "protocol_id": 720
+ },
+ "minecraft:brain_coral_block": {
+ "protocol_id": 710
+ },
+ "minecraft:brain_coral_fan": {
"protocol_id": 730
},
+ "minecraft:brain_coral_wall_fan": {
+ "protocol_id": 740
+ },
+ "minecraft:brewing_stand": {
+ "protocol_id": 344
+ },
+ "minecraft:brick_slab": {
+ "protocol_id": 573
+ },
+ "minecraft:brick_stairs": {
+ "protocol_id": 334
+ },
+ "minecraft:brick_wall": {
+ "protocol_id": 780
+ },
+ "minecraft:bricks": {
+ "protocol_id": 172
+ },
+ "minecraft:brown_banner": {
+ "protocol_id": 532
+ },
+ "minecraft:brown_bed": {
+ "protocol_id": 122
+ },
+ "minecraft:brown_candle": {
+ "protocol_id": 903
+ },
+ "minecraft:brown_candle_cake": {
+ "protocol_id": 920
+ },
+ "minecraft:brown_carpet": {
+ "protocol_id": 507
+ },
+ "minecraft:brown_concrete": {
+ "protocol_id": 679
+ },
+ "minecraft:brown_concrete_powder": {
+ "protocol_id": 695
+ },
+ "minecraft:brown_glazed_terracotta": {
+ "protocol_id": 663
+ },
+ "minecraft:brown_mushroom": {
+ "protocol_id": 168
+ },
+ "minecraft:brown_mushroom_block": {
+ "protocol_id": 319
+ },
+ "minecraft:brown_shulker_box": {
+ "protocol_id": 647
+ },
+ "minecraft:brown_stained_glass": {
+ "protocol_id": 293
+ },
+ "minecraft:brown_stained_glass_pane": {
+ "protocol_id": 469
+ },
+ "minecraft:brown_terracotta": {
+ "protocol_id": 453
+ },
+ "minecraft:brown_wall_banner": {
+ "protocol_id": 548
+ },
+ "minecraft:brown_wool": {
+ "protocol_id": 149
+ },
+ "minecraft:bubble_column": {
+ "protocol_id": 752
+ },
+ "minecraft:bubble_coral": {
+ "protocol_id": 721
+ },
+ "minecraft:bubble_coral_block": {
+ "protocol_id": 711
+ },
+ "minecraft:bubble_coral_fan": {
+ "protocol_id": 731
+ },
+ "minecraft:bubble_coral_wall_fan": {
+ "protocol_id": 741
+ },
+ "minecraft:budding_amethyst": {
+ "protocol_id": 925
+ },
+ "minecraft:cactus": {
+ "protocol_id": 263
+ },
+ "minecraft:cake": {
+ "protocol_id": 279
+ },
+ "minecraft:calcite": {
+ "protocol_id": 944
+ },
+ "minecraft:calibrated_sculk_sensor": {
+ "protocol_id": 948
+ },
+ "minecraft:campfire": {
+ "protocol_id": 807
+ },
+ "minecraft:candle": {
+ "protocol_id": 890
+ },
+ "minecraft:candle_cake": {
+ "protocol_id": 907
+ },
+ "minecraft:carrots": {
+ "protocol_id": 398
+ },
+ "minecraft:cartography_table": {
+ "protocol_id": 798
+ },
+ "minecraft:carved_pumpkin": {
+ "protocol_id": 277
+ },
+ "minecraft:cauldron": {
+ "protocol_id": 345
+ },
+ "minecraft:cave_air": {
+ "protocol_id": 751
+ },
"minecraft:cave_vines": {
- "protocol_id": 1009
+ "protocol_id": 1030
},
"minecraft:cave_vines_plant": {
- "protocol_id": 1010
+ "protocol_id": 1031
},
"minecraft:chain": {
- "protocol_id": 309
+ "protocol_id": 323
},
"minecraft:chain_command_block": {
- "protocol_id": 605
+ "protocol_id": 626
},
"minecraft:cherry_button": {
- "protocol_id": 390
+ "protocol_id": 405
},
"minecraft:cherry_door": {
- "protocol_id": 587
+ "protocol_id": 607
},
"minecraft:cherry_fence": {
- "protocol_id": 579
+ "protocol_id": 598
},
"minecraft:cherry_fence_gate": {
- "protocol_id": 571
+ "protocol_id": 589
},
"minecraft:cherry_hanging_sign": {
- "protocol_id": 212
+ "protocol_id": 222
},
"minecraft:cherry_leaves": {
- "protocol_id": 87
+ "protocol_id": 93
},
"minecraft:cherry_log": {
- "protocol_id": 51
+ "protocol_id": 54
},
"minecraft:cherry_planks": {
"protocol_id": 18
},
"minecraft:cherry_pressure_plate": {
- "protocol_id": 238
+ "protocol_id": 250
},
"minecraft:cherry_sapling": {
- "protocol_id": 28
+ "protocol_id": 30
},
"minecraft:cherry_sign": {
- "protocol_id": 190
+ "protocol_id": 198
},
"minecraft:cherry_slab": {
- "protocol_id": 544
+ "protocol_id": 561
},
"minecraft:cherry_stairs": {
- "protocol_id": 458
+ "protocol_id": 474
},
"minecraft:cherry_trapdoor": {
- "protocol_id": 289
+ "protocol_id": 302
},
"minecraft:cherry_wall_hanging_sign": {
- "protocol_id": 223
+ "protocol_id": 234
},
"minecraft:cherry_wall_sign": {
- "protocol_id": 203
+ "protocol_id": 212
},
"minecraft:cherry_wood": {
- "protocol_id": 71
+ "protocol_id": 76
},
"minecraft:chest": {
- "protocol_id": 177
+ "protocol_id": 185
},
"minecraft:chipped_anvil": {
- "protocol_id": 409
+ "protocol_id": 425
},
"minecraft:chiseled_bookshelf": {
- "protocol_id": 168
+ "protocol_id": 175
},
"minecraft:chiseled_copper": {
- "protocol_id": 945
+ "protocol_id": 966
},
"minecraft:chiseled_deepslate": {
- "protocol_id": 1040
+ "protocol_id": 1061
},
"minecraft:chiseled_nether_bricks": {
- "protocol_id": 866
+ "protocol_id": 887
},
"minecraft:chiseled_polished_blackstone": {
- "protocol_id": 856
+ "protocol_id": 877
},
"minecraft:chiseled_quartz_block": {
- "protocol_id": 420
+ "protocol_id": 436
},
"minecraft:chiseled_red_sandstone": {
- "protocol_id": 536
+ "protocol_id": 553
},
"minecraft:chiseled_sandstone": {
- "protocol_id": 100
+ "protocol_id": 107
},
"minecraft:chiseled_stone_bricks": {
- "protocol_id": 296
+ "protocol_id": 310
},
"minecraft:chiseled_tuff": {
- "protocol_id": 917
+ "protocol_id": 938
},
"minecraft:chiseled_tuff_bricks": {
- "protocol_id": 922
+ "protocol_id": 943
},
"minecraft:chorus_flower": {
- "protocol_id": 593
+ "protocol_id": 614
},
"minecraft:chorus_plant": {
- "protocol_id": 592
+ "protocol_id": 613
},
"minecraft:clay": {
- "protocol_id": 251
+ "protocol_id": 264
},
"minecraft:coal_block": {
- "protocol_id": 495
+ "protocol_id": 512
},
"minecraft:coal_ore": {
- "protocol_id": 43
+ "protocol_id": 46
},
"minecraft:coarse_dirt": {
"protocol_id": 10
},
"minecraft:cobbled_deepslate": {
- "protocol_id": 1024
+ "protocol_id": 1045
},
"minecraft:cobbled_deepslate_slab": {
- "protocol_id": 1026
+ "protocol_id": 1047
},
"minecraft:cobbled_deepslate_stairs": {
- "protocol_id": 1025
+ "protocol_id": 1046
},
"minecraft:cobbled_deepslate_wall": {
- "protocol_id": 1027
+ "protocol_id": 1048
},
"minecraft:cobblestone": {
"protocol_id": 12
},
"minecraft:cobblestone_slab": {
- "protocol_id": 554
- },
- "minecraft:cobblestone_stairs": {
- "protocol_id": 198
- },
- "minecraft:cobblestone_wall": {
- "protocol_id": 353
- },
- "minecraft:cobweb": {
- "protocol_id": 122
- },
- "minecraft:cocoa": {
- "protocol_id": 340
- },
- "minecraft:command_block": {
- "protocol_id": 351
- },
- "minecraft:comparator": {
- "protocol_id": 414
- },
- "minecraft:composter": {
- "protocol_id": 834
- },
- "minecraft:conduit": {
- "protocol_id": 725
- },
- "minecraft:copper_block": {
- "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": 936
- },
- "minecraft:copper_trapdoor": {
- "protocol_id": 982
- },
- "minecraft:cornflower": {
- "protocol_id": 158
- },
- "minecraft:cracked_deepslate_bricks": {
- "protocol_id": 1041
- },
- "minecraft:cracked_deepslate_tiles": {
- "protocol_id": 1042
- },
- "minecraft:cracked_nether_bricks": {
- "protocol_id": 867
- },
- "minecraft:cracked_polished_blackstone_bricks": {
- "protocol_id": 855
- },
- "minecraft:cracked_stone_bricks": {
- "protocol_id": 295
- },
- "minecraft:crafter": {
- "protocol_id": 1056
- },
- "minecraft:crafting_table": {
- "protocol_id": 182
- },
- "minecraft:creeper_head": {
- "protocol_id": 402
- },
- "minecraft:creeper_wall_head": {
- "protocol_id": 403
- },
- "minecraft:crimson_button": {
- "protocol_id": 824
- },
- "minecraft:crimson_door": {
- "protocol_id": 826
- },
- "minecraft:crimson_fence": {
- "protocol_id": 816
- },
- "minecraft:crimson_fence_gate": {
- "protocol_id": 820
- },
- "minecraft:crimson_fungus": {
- "protocol_id": 803
- },
- "minecraft:crimson_hanging_sign": {
- "protocol_id": 215
- },
- "minecraft:crimson_hyphae": {
- "protocol_id": 800
- },
- "minecraft:crimson_nylium": {
- "protocol_id": 802
- },
- "minecraft:crimson_planks": {
- "protocol_id": 810
- },
- "minecraft:crimson_pressure_plate": {
- "protocol_id": 814
- },
- "minecraft:crimson_roots": {
- "protocol_id": 809
- },
- "minecraft:crimson_sign": {
- "protocol_id": 828
- },
- "minecraft:crimson_slab": {
- "protocol_id": 812
- },
- "minecraft:crimson_stairs": {
- "protocol_id": 822
- },
- "minecraft:crimson_stem": {
- "protocol_id": 798
- },
- "minecraft:crimson_trapdoor": {
- "protocol_id": 818
- },
- "minecraft:crimson_wall_hanging_sign": {
- "protocol_id": 227
- },
- "minecraft:crimson_wall_sign": {
- "protocol_id": 830
- },
- "minecraft:crying_obsidian": {
- "protocol_id": 842
- },
- "minecraft:cut_copper": {
- "protocol_id": 941
- },
- "minecraft:cut_copper_slab": {
- "protocol_id": 957
- },
- "minecraft:cut_copper_stairs": {
- "protocol_id": 953
- },
- "minecraft:cut_red_sandstone": {
- "protocol_id": 537
- },
- "minecraft:cut_red_sandstone_slab": {
- "protocol_id": 561
- },
- "minecraft:cut_sandstone": {
- "protocol_id": 101
- },
- "minecraft:cut_sandstone_slab": {
- "protocol_id": 552
- },
- "minecraft:cyan_banner": {
- "protocol_id": 512
- },
- "minecraft:cyan_bed": {
- "protocol_id": 112
- },
- "minecraft:cyan_candle": {
- "protocol_id": 879
- },
- "minecraft:cyan_candle_cake": {
- "protocol_id": 896
- },
- "minecraft:cyan_carpet": {
- "protocol_id": 487
- },
- "minecraft:cyan_concrete": {
- "protocol_id": 655
- },
- "minecraft:cyan_concrete_powder": {
- "protocol_id": 671
- },
- "minecraft:cyan_glazed_terracotta": {
- "protocol_id": 639
- },
- "minecraft:cyan_shulker_box": {
- "protocol_id": 623
- },
- "minecraft:cyan_stained_glass": {
- "protocol_id": 277
- },
- "minecraft:cyan_stained_glass_pane": {
- "protocol_id": 450
- },
- "minecraft:cyan_terracotta": {
- "protocol_id": 434
- },
- "minecraft:cyan_wall_banner": {
- "protocol_id": 528
- },
- "minecraft:cyan_wool": {
- "protocol_id": 139
- },
- "minecraft:damaged_anvil": {
- "protocol_id": 410
- },
- "minecraft:dandelion": {
- "protocol_id": 147
- },
- "minecraft:dark_oak_button": {
- "protocol_id": 391
- },
- "minecraft:dark_oak_door": {
- "protocol_id": 588
- },
- "minecraft:dark_oak_fence": {
- "protocol_id": 580
- },
- "minecraft:dark_oak_fence_gate": {
"protocol_id": 572
},
+ "minecraft:cobblestone_stairs": {
+ "protocol_id": 207
+ },
+ "minecraft:cobblestone_wall": {
+ "protocol_id": 367
+ },
+ "minecraft:cobweb": {
+ "protocol_id": 129
+ },
+ "minecraft:cocoa": {
+ "protocol_id": 354
+ },
+ "minecraft:command_block": {
+ "protocol_id": 365
+ },
+ "minecraft:comparator": {
+ "protocol_id": 430
+ },
+ "minecraft:composter": {
+ "protocol_id": 855
+ },
+ "minecraft:conduit": {
+ "protocol_id": 746
+ },
+ "minecraft:copper_block": {
+ "protocol_id": 953
+ },
+ "minecraft:copper_bulb": {
+ "protocol_id": 1019
+ },
+ "minecraft:copper_door": {
+ "protocol_id": 995
+ },
+ "minecraft:copper_grate": {
+ "protocol_id": 1011
+ },
+ "minecraft:copper_ore": {
+ "protocol_id": 957
+ },
+ "minecraft:copper_trapdoor": {
+ "protocol_id": 1003
+ },
+ "minecraft:cornflower": {
+ "protocol_id": 165
+ },
+ "minecraft:cracked_deepslate_bricks": {
+ "protocol_id": 1062
+ },
+ "minecraft:cracked_deepslate_tiles": {
+ "protocol_id": 1063
+ },
+ "minecraft:cracked_nether_bricks": {
+ "protocol_id": 888
+ },
+ "minecraft:cracked_polished_blackstone_bricks": {
+ "protocol_id": 876
+ },
+ "minecraft:cracked_stone_bricks": {
+ "protocol_id": 309
+ },
+ "minecraft:crafter": {
+ "protocol_id": 1077
+ },
+ "minecraft:crafting_table": {
+ "protocol_id": 190
+ },
+ "minecraft:creaking_heart": {
+ "protocol_id": 183
+ },
+ "minecraft:creeper_head": {
+ "protocol_id": 418
+ },
+ "minecraft:creeper_wall_head": {
+ "protocol_id": 419
+ },
+ "minecraft:crimson_button": {
+ "protocol_id": 845
+ },
+ "minecraft:crimson_door": {
+ "protocol_id": 847
+ },
+ "minecraft:crimson_fence": {
+ "protocol_id": 837
+ },
+ "minecraft:crimson_fence_gate": {
+ "protocol_id": 841
+ },
+ "minecraft:crimson_fungus": {
+ "protocol_id": 824
+ },
+ "minecraft:crimson_hanging_sign": {
+ "protocol_id": 226
+ },
+ "minecraft:crimson_hyphae": {
+ "protocol_id": 821
+ },
+ "minecraft:crimson_nylium": {
+ "protocol_id": 823
+ },
+ "minecraft:crimson_planks": {
+ "protocol_id": 831
+ },
+ "minecraft:crimson_pressure_plate": {
+ "protocol_id": 835
+ },
+ "minecraft:crimson_roots": {
+ "protocol_id": 830
+ },
+ "minecraft:crimson_sign": {
+ "protocol_id": 849
+ },
+ "minecraft:crimson_slab": {
+ "protocol_id": 833
+ },
+ "minecraft:crimson_stairs": {
+ "protocol_id": 843
+ },
+ "minecraft:crimson_stem": {
+ "protocol_id": 819
+ },
+ "minecraft:crimson_trapdoor": {
+ "protocol_id": 839
+ },
+ "minecraft:crimson_wall_hanging_sign": {
+ "protocol_id": 239
+ },
+ "minecraft:crimson_wall_sign": {
+ "protocol_id": 851
+ },
+ "minecraft:crying_obsidian": {
+ "protocol_id": 863
+ },
+ "minecraft:cut_copper": {
+ "protocol_id": 962
+ },
+ "minecraft:cut_copper_slab": {
+ "protocol_id": 978
+ },
+ "minecraft:cut_copper_stairs": {
+ "protocol_id": 974
+ },
+ "minecraft:cut_red_sandstone": {
+ "protocol_id": 554
+ },
+ "minecraft:cut_red_sandstone_slab": {
+ "protocol_id": 579
+ },
+ "minecraft:cut_sandstone": {
+ "protocol_id": 108
+ },
+ "minecraft:cut_sandstone_slab": {
+ "protocol_id": 570
+ },
+ "minecraft:cyan_banner": {
+ "protocol_id": 529
+ },
+ "minecraft:cyan_bed": {
+ "protocol_id": 119
+ },
+ "minecraft:cyan_candle": {
+ "protocol_id": 900
+ },
+ "minecraft:cyan_candle_cake": {
+ "protocol_id": 917
+ },
+ "minecraft:cyan_carpet": {
+ "protocol_id": 504
+ },
+ "minecraft:cyan_concrete": {
+ "protocol_id": 676
+ },
+ "minecraft:cyan_concrete_powder": {
+ "protocol_id": 692
+ },
+ "minecraft:cyan_glazed_terracotta": {
+ "protocol_id": 660
+ },
+ "minecraft:cyan_shulker_box": {
+ "protocol_id": 644
+ },
+ "minecraft:cyan_stained_glass": {
+ "protocol_id": 290
+ },
+ "minecraft:cyan_stained_glass_pane": {
+ "protocol_id": 466
+ },
+ "minecraft:cyan_terracotta": {
+ "protocol_id": 450
+ },
+ "minecraft:cyan_wall_banner": {
+ "protocol_id": 545
+ },
+ "minecraft:cyan_wool": {
+ "protocol_id": 146
+ },
+ "minecraft:damaged_anvil": {
+ "protocol_id": 426
+ },
+ "minecraft:dandelion": {
+ "protocol_id": 154
+ },
+ "minecraft:dark_oak_button": {
+ "protocol_id": 406
+ },
+ "minecraft:dark_oak_door": {
+ "protocol_id": 608
+ },
+ "minecraft:dark_oak_fence": {
+ "protocol_id": 599
+ },
+ "minecraft:dark_oak_fence_gate": {
+ "protocol_id": 590
+ },
"minecraft:dark_oak_hanging_sign": {
- "protocol_id": 214
+ "protocol_id": 224
},
"minecraft:dark_oak_leaves": {
- "protocol_id": 88
+ "protocol_id": 94
},
"minecraft:dark_oak_log": {
- "protocol_id": 52
+ "protocol_id": 55
},
"minecraft:dark_oak_planks": {
"protocol_id": 19
},
"minecraft:dark_oak_pressure_plate": {
- "protocol_id": 239
+ "protocol_id": 251
},
"minecraft:dark_oak_sapling": {
- "protocol_id": 29
+ "protocol_id": 31
},
"minecraft:dark_oak_sign": {
- "protocol_id": 192
+ "protocol_id": 200
},
"minecraft:dark_oak_slab": {
- "protocol_id": 545
+ "protocol_id": 562
},
"minecraft:dark_oak_stairs": {
- "protocol_id": 459
- },
- "minecraft:dark_oak_trapdoor": {
- "protocol_id": 290
- },
- "minecraft:dark_oak_wall_hanging_sign": {
- "protocol_id": 225
- },
- "minecraft:dark_oak_wall_sign": {
- "protocol_id": 205
- },
- "minecraft:dark_oak_wood": {
- "protocol_id": 72
- },
- "minecraft:dark_prismarine": {
- "protocol_id": 469
- },
- "minecraft:dark_prismarine_slab": {
"protocol_id": 475
},
+ "minecraft:dark_oak_trapdoor": {
+ "protocol_id": 303
+ },
+ "minecraft:dark_oak_wall_hanging_sign": {
+ "protocol_id": 236
+ },
+ "minecraft:dark_oak_wall_sign": {
+ "protocol_id": 214
+ },
+ "minecraft:dark_oak_wood": {
+ "protocol_id": 77
+ },
+ "minecraft:dark_prismarine": {
+ "protocol_id": 486
+ },
+ "minecraft:dark_prismarine_slab": {
+ "protocol_id": 492
+ },
"minecraft:dark_prismarine_stairs": {
- "protocol_id": 472
+ "protocol_id": 489
},
"minecraft:daylight_detector": {
- "protocol_id": 415
+ "protocol_id": 431
},
"minecraft:dead_brain_coral": {
- "protocol_id": 694
- },
- "minecraft:dead_brain_coral_block": {
- "protocol_id": 684
- },
- "minecraft:dead_brain_coral_fan": {
- "protocol_id": 704
- },
- "minecraft:dead_brain_coral_wall_fan": {
- "protocol_id": 714
- },
- "minecraft:dead_bubble_coral": {
- "protocol_id": 695
- },
- "minecraft:dead_bubble_coral_block": {
- "protocol_id": 685
- },
- "minecraft:dead_bubble_coral_fan": {
- "protocol_id": 705
- },
- "minecraft:dead_bubble_coral_wall_fan": {
"protocol_id": 715
},
- "minecraft:dead_bush": {
- "protocol_id": 125
+ "minecraft:dead_brain_coral_block": {
+ "protocol_id": 705
},
- "minecraft:dead_fire_coral": {
- "protocol_id": 696
+ "minecraft:dead_brain_coral_fan": {
+ "protocol_id": 725
},
- "minecraft:dead_fire_coral_block": {
- "protocol_id": 686
+ "minecraft:dead_brain_coral_wall_fan": {
+ "protocol_id": 735
},
- "minecraft:dead_fire_coral_fan": {
- "protocol_id": 706
- },
- "minecraft:dead_fire_coral_wall_fan": {
+ "minecraft:dead_bubble_coral": {
"protocol_id": 716
},
- "minecraft:dead_horn_coral": {
- "protocol_id": 697
+ "minecraft:dead_bubble_coral_block": {
+ "protocol_id": 706
},
- "minecraft:dead_horn_coral_block": {
- "protocol_id": 687
+ "minecraft:dead_bubble_coral_fan": {
+ "protocol_id": 726
},
- "minecraft:dead_horn_coral_fan": {
- "protocol_id": 707
+ "minecraft:dead_bubble_coral_wall_fan": {
+ "protocol_id": 736
},
- "minecraft:dead_horn_coral_wall_fan": {
+ "minecraft:dead_bush": {
+ "protocol_id": 132
+ },
+ "minecraft:dead_fire_coral": {
"protocol_id": 717
},
+ "minecraft:dead_fire_coral_block": {
+ "protocol_id": 707
+ },
+ "minecraft:dead_fire_coral_fan": {
+ "protocol_id": 727
+ },
+ "minecraft:dead_fire_coral_wall_fan": {
+ "protocol_id": 737
+ },
+ "minecraft:dead_horn_coral": {
+ "protocol_id": 718
+ },
+ "minecraft:dead_horn_coral_block": {
+ "protocol_id": 708
+ },
+ "minecraft:dead_horn_coral_fan": {
+ "protocol_id": 728
+ },
+ "minecraft:dead_horn_coral_wall_fan": {
+ "protocol_id": 738
+ },
"minecraft:dead_tube_coral": {
- "protocol_id": 693
+ "protocol_id": 714
},
"minecraft:dead_tube_coral_block": {
- "protocol_id": 683
+ "protocol_id": 704
},
"minecraft:dead_tube_coral_fan": {
- "protocol_id": 703
+ "protocol_id": 724
},
"minecraft:dead_tube_coral_wall_fan": {
- "protocol_id": 713
+ "protocol_id": 734
},
"minecraft:decorated_pot": {
- "protocol_id": 1055
+ "protocol_id": 1076
},
"minecraft:deepslate": {
- "protocol_id": 1023
+ "protocol_id": 1044
},
"minecraft:deepslate_brick_slab": {
- "protocol_id": 1038
+ "protocol_id": 1059
},
"minecraft:deepslate_brick_stairs": {
- "protocol_id": 1037
+ "protocol_id": 1058
},
"minecraft:deepslate_brick_wall": {
- "protocol_id": 1039
+ "protocol_id": 1060
},
"minecraft:deepslate_bricks": {
- "protocol_id": 1036
+ "protocol_id": 1057
},
"minecraft:deepslate_coal_ore": {
- "protocol_id": 44
+ "protocol_id": 47
},
"minecraft:deepslate_copper_ore": {
- "protocol_id": 937
+ "protocol_id": 958
},
"minecraft:deepslate_diamond_ore": {
- "protocol_id": 180
+ "protocol_id": 188
},
"minecraft:deepslate_emerald_ore": {
- "protocol_id": 343
+ "protocol_id": 357
},
"minecraft:deepslate_gold_ore": {
- "protocol_id": 40
+ "protocol_id": 43
},
"minecraft:deepslate_iron_ore": {
- "protocol_id": 42
+ "protocol_id": 45
},
"minecraft:deepslate_lapis_ore": {
- "protocol_id": 96
+ "protocol_id": 103
},
"minecraft:deepslate_redstone_ore": {
- "protocol_id": 243
+ "protocol_id": 256
},
"minecraft:deepslate_tile_slab": {
- "protocol_id": 1034
+ "protocol_id": 1055
},
"minecraft:deepslate_tile_stairs": {
- "protocol_id": 1033
+ "protocol_id": 1054
},
"minecraft:deepslate_tile_wall": {
- "protocol_id": 1035
+ "protocol_id": 1056
},
"minecraft:deepslate_tiles": {
- "protocol_id": 1032
+ "protocol_id": 1053
},
"minecraft:detector_rail": {
- "protocol_id": 120
+ "protocol_id": 127
},
"minecraft:diamond_block": {
- "protocol_id": 181
+ "protocol_id": 189
},
"minecraft:diamond_ore": {
- "protocol_id": 179
+ "protocol_id": 187
},
"minecraft:diorite": {
"protocol_id": 4
},
"minecraft:diorite_slab": {
- "protocol_id": 758
+ "protocol_id": 779
},
"minecraft:diorite_stairs": {
- "protocol_id": 745
+ "protocol_id": 766
},
"minecraft:diorite_wall": {
- "protocol_id": 771
+ "protocol_id": 792
},
"minecraft:dirt": {
"protocol_id": 9
},
"minecraft:dirt_path": {
- "protocol_id": 602
+ "protocol_id": 623
},
"minecraft:dispenser": {
- "protocol_id": 98
+ "protocol_id": 105
},
"minecraft:dragon_egg": {
- "protocol_id": 338
+ "protocol_id": 352
},
"minecraft:dragon_head": {
- "protocol_id": 404
+ "protocol_id": 420
},
"minecraft:dragon_wall_head": {
- "protocol_id": 405
+ "protocol_id": 421
},
"minecraft:dried_kelp_block": {
- "protocol_id": 680
- },
- "minecraft:dripstone_block": {
- "protocol_id": 1008
- },
- "minecraft:dropper": {
- "protocol_id": 424
- },
- "minecraft:emerald_block": {
- "protocol_id": 347
- },
- "minecraft:emerald_ore": {
- "protocol_id": 342
- },
- "minecraft:enchanting_table": {
- "protocol_id": 329
- },
- "minecraft:end_gateway": {
- "protocol_id": 603
- },
- "minecraft:end_portal": {
- "protocol_id": 335
- },
- "minecraft:end_portal_frame": {
- "protocol_id": 336
- },
- "minecraft:end_rod": {
- "protocol_id": 591
- },
- "minecraft:end_stone": {
- "protocol_id": 337
- },
- "minecraft:end_stone_brick_slab": {
- "protocol_id": 751
- },
- "minecraft:end_stone_brick_stairs": {
- "protocol_id": 737
- },
- "minecraft:end_stone_brick_wall": {
- "protocol_id": 770
- },
- "minecraft:end_stone_bricks": {
- "protocol_id": 597
- },
- "minecraft:ender_chest": {
- "protocol_id": 344
- },
- "minecraft:exposed_chiseled_copper": {
- "protocol_id": 944
- },
- "minecraft:exposed_copper": {
- "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": 940
- },
- "minecraft:exposed_cut_copper_slab": {
- "protocol_id": 956
- },
- "minecraft:exposed_cut_copper_stairs": {
- "protocol_id": 952
- },
- "minecraft:farmland": {
- "protocol_id": 184
- },
- "minecraft:fern": {
- "protocol_id": 124
- },
- "minecraft:fire": {
- "protocol_id": 173
- },
- "minecraft:fire_coral": {
"protocol_id": 701
},
+ "minecraft:dripstone_block": {
+ "protocol_id": 1029
+ },
+ "minecraft:dropper": {
+ "protocol_id": 440
+ },
+ "minecraft:emerald_block": {
+ "protocol_id": 361
+ },
+ "minecraft:emerald_ore": {
+ "protocol_id": 356
+ },
+ "minecraft:enchanting_table": {
+ "protocol_id": 343
+ },
+ "minecraft:end_gateway": {
+ "protocol_id": 624
+ },
+ "minecraft:end_portal": {
+ "protocol_id": 349
+ },
+ "minecraft:end_portal_frame": {
+ "protocol_id": 350
+ },
+ "minecraft:end_rod": {
+ "protocol_id": 612
+ },
+ "minecraft:end_stone": {
+ "protocol_id": 351
+ },
+ "minecraft:end_stone_brick_slab": {
+ "protocol_id": 772
+ },
+ "minecraft:end_stone_brick_stairs": {
+ "protocol_id": 758
+ },
+ "minecraft:end_stone_brick_wall": {
+ "protocol_id": 791
+ },
+ "minecraft:end_stone_bricks": {
+ "protocol_id": 618
+ },
+ "minecraft:ender_chest": {
+ "protocol_id": 358
+ },
+ "minecraft:exposed_chiseled_copper": {
+ "protocol_id": 965
+ },
+ "minecraft:exposed_copper": {
+ "protocol_id": 954
+ },
+ "minecraft:exposed_copper_bulb": {
+ "protocol_id": 1020
+ },
+ "minecraft:exposed_copper_door": {
+ "protocol_id": 996
+ },
+ "minecraft:exposed_copper_grate": {
+ "protocol_id": 1012
+ },
+ "minecraft:exposed_copper_trapdoor": {
+ "protocol_id": 1004
+ },
+ "minecraft:exposed_cut_copper": {
+ "protocol_id": 961
+ },
+ "minecraft:exposed_cut_copper_slab": {
+ "protocol_id": 977
+ },
+ "minecraft:exposed_cut_copper_stairs": {
+ "protocol_id": 973
+ },
+ "minecraft:farmland": {
+ "protocol_id": 192
+ },
+ "minecraft:fern": {
+ "protocol_id": 131
+ },
+ "minecraft:fire": {
+ "protocol_id": 180
+ },
+ "minecraft:fire_coral": {
+ "protocol_id": 722
+ },
"minecraft:fire_coral_block": {
- "protocol_id": 691
+ "protocol_id": 712
},
"minecraft:fire_coral_fan": {
- "protocol_id": 711
+ "protocol_id": 732
},
"minecraft:fire_coral_wall_fan": {
- "protocol_id": 721
+ "protocol_id": 742
},
"minecraft:fletching_table": {
- "protocol_id": 778
+ "protocol_id": 799
},
"minecraft:flower_pot": {
- "protocol_id": 355
+ "protocol_id": 369
},
"minecraft:flowering_azalea": {
- "protocol_id": 1013
+ "protocol_id": 1034
},
"minecraft:flowering_azalea_leaves": {
- "protocol_id": 91
+ "protocol_id": 98
},
"minecraft:frogspawn": {
- "protocol_id": 1053
+ "protocol_id": 1074
},
"minecraft:frosted_ice": {
- "protocol_id": 606
+ "protocol_id": 627
},
"minecraft:furnace": {
- "protocol_id": 185
+ "protocol_id": 193
},
"minecraft:gilded_blackstone": {
- "protocol_id": 860
+ "protocol_id": 881
},
"minecraft:glass": {
- "protocol_id": 94
+ "protocol_id": 101
},
"minecraft:glass_pane": {
- "protocol_id": 310
+ "protocol_id": 324
},
"minecraft:glow_lichen": {
- "protocol_id": 318
+ "protocol_id": 332
},
"minecraft:glowstone": {
- "protocol_id": 262
+ "protocol_id": 275
},
"minecraft:gold_block": {
- "protocol_id": 163
+ "protocol_id": 170
},
"minecraft:gold_ore": {
- "protocol_id": 39
+ "protocol_id": 42
},
"minecraft:granite": {
"protocol_id": 2
},
"minecraft:granite_slab": {
- "protocol_id": 754
+ "protocol_id": 775
},
"minecraft:granite_stairs": {
- "protocol_id": 741
+ "protocol_id": 762
},
"minecraft:granite_wall": {
- "protocol_id": 763
+ "protocol_id": 784
},
"minecraft:grass_block": {
"protocol_id": 8
},
"minecraft:gravel": {
- "protocol_id": 37
+ "protocol_id": 40
},
"minecraft:gray_banner": {
- "protocol_id": 510
+ "protocol_id": 527
},
"minecraft:gray_bed": {
- "protocol_id": 110
+ "protocol_id": 117
},
"minecraft:gray_candle": {
- "protocol_id": 877
+ "protocol_id": 898
},
"minecraft:gray_candle_cake": {
- "protocol_id": 894
+ "protocol_id": 915
},
"minecraft:gray_carpet": {
- "protocol_id": 485
+ "protocol_id": 502
},
"minecraft:gray_concrete": {
- "protocol_id": 653
+ "protocol_id": 674
},
"minecraft:gray_concrete_powder": {
- "protocol_id": 669
+ "protocol_id": 690
},
"minecraft:gray_glazed_terracotta": {
- "protocol_id": 637
+ "protocol_id": 658
},
"minecraft:gray_shulker_box": {
- "protocol_id": 621
+ "protocol_id": 642
},
"minecraft:gray_stained_glass": {
- "protocol_id": 275
+ "protocol_id": 288
},
"minecraft:gray_stained_glass_pane": {
- "protocol_id": 448
+ "protocol_id": 464
},
"minecraft:gray_terracotta": {
- "protocol_id": 432
+ "protocol_id": 448
},
"minecraft:gray_wall_banner": {
- "protocol_id": 526
+ "protocol_id": 543
},
"minecraft:gray_wool": {
- "protocol_id": 137
+ "protocol_id": 144
},
"minecraft:green_banner": {
- "protocol_id": 516
+ "protocol_id": 533
},
"minecraft:green_bed": {
- "protocol_id": 116
+ "protocol_id": 123
},
"minecraft:green_candle": {
- "protocol_id": 883
+ "protocol_id": 904
},
"minecraft:green_candle_cake": {
- "protocol_id": 900
+ "protocol_id": 921
},
"minecraft:green_carpet": {
- "protocol_id": 491
+ "protocol_id": 508
},
"minecraft:green_concrete": {
- "protocol_id": 659
+ "protocol_id": 680
},
"minecraft:green_concrete_powder": {
- "protocol_id": 675
+ "protocol_id": 696
},
"minecraft:green_glazed_terracotta": {
- "protocol_id": 643
+ "protocol_id": 664
},
"minecraft:green_shulker_box": {
- "protocol_id": 627
+ "protocol_id": 648
},
"minecraft:green_stained_glass": {
- "protocol_id": 281
+ "protocol_id": 294
},
"minecraft:green_stained_glass_pane": {
- "protocol_id": 454
+ "protocol_id": 470
},
"minecraft:green_terracotta": {
- "protocol_id": 438
+ "protocol_id": 454
},
"minecraft:green_wall_banner": {
- "protocol_id": 532
+ "protocol_id": 549
},
"minecraft:green_wool": {
- "protocol_id": 143
+ "protocol_id": 150
},
"minecraft:grindstone": {
- "protocol_id": 779
+ "protocol_id": 800
},
"minecraft:hanging_roots": {
- "protocol_id": 1020
+ "protocol_id": 1041
},
"minecraft:hay_block": {
- "protocol_id": 477
+ "protocol_id": 494
},
"minecraft:heavy_core": {
- "protocol_id": 1059
+ "protocol_id": 1080
},
"minecraft:heavy_weighted_pressure_plate": {
- "protocol_id": 413
+ "protocol_id": 429
},
"minecraft:honey_block": {
- "protocol_id": 838
+ "protocol_id": 859
},
"minecraft:honeycomb_block": {
- "protocol_id": 839
+ "protocol_id": 860
},
"minecraft:hopper": {
- "protocol_id": 418
+ "protocol_id": 434
},
"minecraft:horn_coral": {
- "protocol_id": 702
+ "protocol_id": 723
},
"minecraft:horn_coral_block": {
- "protocol_id": 692
+ "protocol_id": 713
},
"minecraft:horn_coral_fan": {
- "protocol_id": 712
+ "protocol_id": 733
},
"minecraft:horn_coral_wall_fan": {
- "protocol_id": 722
+ "protocol_id": 743
},
"minecraft:ice": {
- "protocol_id": 248
+ "protocol_id": 261
},
"minecraft:infested_chiseled_stone_bricks": {
- "protocol_id": 304
+ "protocol_id": 318
},
"minecraft:infested_cobblestone": {
- "protocol_id": 300
+ "protocol_id": 314
},
"minecraft:infested_cracked_stone_bricks": {
- "protocol_id": 303
+ "protocol_id": 317
},
"minecraft:infested_deepslate": {
- "protocol_id": 1043
+ "protocol_id": 1064
},
"minecraft:infested_mossy_stone_bricks": {
- "protocol_id": 302
+ "protocol_id": 316
},
"minecraft:infested_stone": {
- "protocol_id": 299
+ "protocol_id": 313
},
"minecraft:infested_stone_bricks": {
- "protocol_id": 301
+ "protocol_id": 315
},
"minecraft:iron_bars": {
- "protocol_id": 308
+ "protocol_id": 322
},
"minecraft:iron_block": {
- "protocol_id": 164
+ "protocol_id": 171
},
"minecraft:iron_door": {
- "protocol_id": 232
+ "protocol_id": 244
},
"minecraft:iron_ore": {
- "protocol_id": 41
+ "protocol_id": 44
},
"minecraft:iron_trapdoor": {
- "protocol_id": 466
+ "protocol_id": 483
},
"minecraft:jack_o_lantern": {
- "protocol_id": 265
+ "protocol_id": 278
},
"minecraft:jigsaw": {
- "protocol_id": 833
+ "protocol_id": 854
},
"minecraft:jukebox": {
- "protocol_id": 253
+ "protocol_id": 266
},
"minecraft:jungle_button": {
- "protocol_id": 388
+ "protocol_id": 403
},
"minecraft:jungle_door": {
- "protocol_id": 585
+ "protocol_id": 605
},
"minecraft:jungle_fence": {
- "protocol_id": 577
+ "protocol_id": 596
},
"minecraft:jungle_fence_gate": {
- "protocol_id": 569
+ "protocol_id": 587
},
"minecraft:jungle_hanging_sign": {
- "protocol_id": 213
+ "protocol_id": 223
},
"minecraft:jungle_leaves": {
- "protocol_id": 85
+ "protocol_id": 91
},
"minecraft:jungle_log": {
- "protocol_id": 49
+ "protocol_id": 52
},
"minecraft:jungle_planks": {
"protocol_id": 16
},
"minecraft:jungle_pressure_plate": {
- "protocol_id": 236
+ "protocol_id": 248
},
"minecraft:jungle_sapling": {
- "protocol_id": 26
+ "protocol_id": 28
},
"minecraft:jungle_sign": {
- "protocol_id": 191
+ "protocol_id": 199
},
"minecraft:jungle_slab": {
- "protocol_id": 542
+ "protocol_id": 559
},
"minecraft:jungle_stairs": {
- "protocol_id": 350
+ "protocol_id": 364
},
"minecraft:jungle_trapdoor": {
- "protocol_id": 287
+ "protocol_id": 300
},
"minecraft:jungle_wall_hanging_sign": {
- "protocol_id": 224
+ "protocol_id": 235
},
"minecraft:jungle_wall_sign": {
- "protocol_id": 204
+ "protocol_id": 213
},
"minecraft:jungle_wood": {
- "protocol_id": 69
+ "protocol_id": 74
},
"minecraft:kelp": {
- "protocol_id": 678
+ "protocol_id": 699
},
"minecraft:kelp_plant": {
- "protocol_id": 679
+ "protocol_id": 700
},
"minecraft:ladder": {
- "protocol_id": 196
+ "protocol_id": 205
},
"minecraft:lantern": {
- "protocol_id": 784
+ "protocol_id": 805
},
"minecraft:lapis_block": {
- "protocol_id": 97
+ "protocol_id": 104
},
"minecraft:lapis_ore": {
- "protocol_id": 95
- },
- "minecraft:large_amethyst_bud": {
- "protocol_id": 906
- },
- "minecraft:large_fern": {
- "protocol_id": 502
- },
- "minecraft:lava": {
- "protocol_id": 33
- },
- "minecraft:lava_cauldron": {
- "protocol_id": 333
- },
- "minecraft:lectern": {
- "protocol_id": 780
- },
- "minecraft:lever": {
- "protocol_id": 230
- },
- "minecraft:light": {
- "protocol_id": 465
- },
- "minecraft:light_blue_banner": {
- "protocol_id": 506
- },
- "minecraft:light_blue_bed": {
- "protocol_id": 106
- },
- "minecraft:light_blue_candle": {
- "protocol_id": 873
- },
- "minecraft:light_blue_candle_cake": {
- "protocol_id": 890
- },
- "minecraft:light_blue_carpet": {
- "protocol_id": 481
- },
- "minecraft:light_blue_concrete": {
- "protocol_id": 649
- },
- "minecraft:light_blue_concrete_powder": {
- "protocol_id": 665
- },
- "minecraft:light_blue_glazed_terracotta": {
- "protocol_id": 633
- },
- "minecraft:light_blue_shulker_box": {
- "protocol_id": 617
- },
- "minecraft:light_blue_stained_glass": {
- "protocol_id": 271
- },
- "minecraft:light_blue_stained_glass_pane": {
- "protocol_id": 444
- },
- "minecraft:light_blue_terracotta": {
- "protocol_id": 428
- },
- "minecraft:light_blue_wall_banner": {
- "protocol_id": 522
- },
- "minecraft:light_blue_wool": {
- "protocol_id": 133
- },
- "minecraft:light_gray_banner": {
- "protocol_id": 511
- },
- "minecraft:light_gray_bed": {
- "protocol_id": 111
- },
- "minecraft:light_gray_candle": {
- "protocol_id": 878
- },
- "minecraft:light_gray_candle_cake": {
- "protocol_id": 895
- },
- "minecraft:light_gray_carpet": {
- "protocol_id": 486
- },
- "minecraft:light_gray_concrete": {
- "protocol_id": 654
- },
- "minecraft:light_gray_concrete_powder": {
- "protocol_id": 670
- },
- "minecraft:light_gray_glazed_terracotta": {
- "protocol_id": 638
- },
- "minecraft:light_gray_shulker_box": {
- "protocol_id": 622
- },
- "minecraft:light_gray_stained_glass": {
- "protocol_id": 276
- },
- "minecraft:light_gray_stained_glass_pane": {
- "protocol_id": 449
- },
- "minecraft:light_gray_terracotta": {
- "protocol_id": 433
- },
- "minecraft:light_gray_wall_banner": {
- "protocol_id": 527
- },
- "minecraft:light_gray_wool": {
- "protocol_id": 138
- },
- "minecraft:light_weighted_pressure_plate": {
- "protocol_id": 412
- },
- "minecraft:lightning_rod": {
- "protocol_id": 1006
- },
- "minecraft:lilac": {
- "protocol_id": 498
- },
- "minecraft:lily_of_the_valley": {
- "protocol_id": 160
- },
- "minecraft:lily_pad": {
- "protocol_id": 324
- },
- "minecraft:lime_banner": {
- "protocol_id": 508
- },
- "minecraft:lime_bed": {
- "protocol_id": 108
- },
- "minecraft:lime_candle": {
- "protocol_id": 875
- },
- "minecraft:lime_candle_cake": {
- "protocol_id": 892
- },
- "minecraft:lime_carpet": {
- "protocol_id": 483
- },
- "minecraft:lime_concrete": {
- "protocol_id": 651
- },
- "minecraft:lime_concrete_powder": {
- "protocol_id": 667
- },
- "minecraft:lime_glazed_terracotta": {
- "protocol_id": 635
- },
- "minecraft:lime_shulker_box": {
- "protocol_id": 619
- },
- "minecraft:lime_stained_glass": {
- "protocol_id": 273
- },
- "minecraft:lime_stained_glass_pane": {
- "protocol_id": 446
- },
- "minecraft:lime_terracotta": {
- "protocol_id": 430
- },
- "minecraft:lime_wall_banner": {
- "protocol_id": 524
- },
- "minecraft:lime_wool": {
- "protocol_id": 135
- },
- "minecraft:lodestone": {
- "protocol_id": 848
- },
- "minecraft:loom": {
- "protocol_id": 773
- },
- "minecraft:magenta_banner": {
- "protocol_id": 505
- },
- "minecraft:magenta_bed": {
- "protocol_id": 105
- },
- "minecraft:magenta_candle": {
- "protocol_id": 872
- },
- "minecraft:magenta_candle_cake": {
- "protocol_id": 889
- },
- "minecraft:magenta_carpet": {
- "protocol_id": 480
- },
- "minecraft:magenta_concrete": {
- "protocol_id": 648
- },
- "minecraft:magenta_concrete_powder": {
- "protocol_id": 664
- },
- "minecraft:magenta_glazed_terracotta": {
- "protocol_id": 632
- },
- "minecraft:magenta_shulker_box": {
- "protocol_id": 616
- },
- "minecraft:magenta_stained_glass": {
- "protocol_id": 270
- },
- "minecraft:magenta_stained_glass_pane": {
- "protocol_id": 443
- },
- "minecraft:magenta_terracotta": {
- "protocol_id": 427
- },
- "minecraft:magenta_wall_banner": {
- "protocol_id": 521
- },
- "minecraft:magenta_wool": {
- "protocol_id": 132
- },
- "minecraft:magma_block": {
- "protocol_id": 607
- },
- "minecraft:mangrove_button": {
- "protocol_id": 392
- },
- "minecraft:mangrove_door": {
- "protocol_id": 589
- },
- "minecraft:mangrove_fence": {
- "protocol_id": 581
- },
- "minecraft:mangrove_fence_gate": {
- "protocol_id": 573
- },
- "minecraft:mangrove_hanging_sign": {
- "protocol_id": 217
- },
- "minecraft:mangrove_leaves": {
- "protocol_id": 89
- },
- "minecraft:mangrove_log": {
- "protocol_id": 53
- },
- "minecraft:mangrove_planks": {
- "protocol_id": 20
- },
- "minecraft:mangrove_pressure_plate": {
- "protocol_id": 240
- },
- "minecraft:mangrove_propagule": {
- "protocol_id": 30
- },
- "minecraft:mangrove_roots": {
- "protocol_id": 54
- },
- "minecraft:mangrove_sign": {
- "protocol_id": 193
- },
- "minecraft:mangrove_slab": {
- "protocol_id": 546
- },
- "minecraft:mangrove_stairs": {
- "protocol_id": 460
- },
- "minecraft:mangrove_trapdoor": {
- "protocol_id": 291
- },
- "minecraft:mangrove_wall_hanging_sign": {
- "protocol_id": 226
- },
- "minecraft:mangrove_wall_sign": {
- "protocol_id": 206
- },
- "minecraft:mangrove_wood": {
- "protocol_id": 73
- },
- "minecraft:medium_amethyst_bud": {
- "protocol_id": 907
- },
- "minecraft:melon": {
- "protocol_id": 312
- },
- "minecraft:melon_stem": {
- "protocol_id": 316
- },
- "minecraft:moss_block": {
- "protocol_id": 1016
- },
- "minecraft:moss_carpet": {
- "protocol_id": 1014
- },
- "minecraft:mossy_cobblestone": {
- "protocol_id": 169
- },
- "minecraft:mossy_cobblestone_slab": {
- "protocol_id": 750
- },
- "minecraft:mossy_cobblestone_stairs": {
- "protocol_id": 736
- },
- "minecraft:mossy_cobblestone_wall": {
- "protocol_id": 354
- },
- "minecraft:mossy_stone_brick_slab": {
- "protocol_id": 748
- },
- "minecraft:mossy_stone_brick_stairs": {
- "protocol_id": 734
- },
- "minecraft:mossy_stone_brick_wall": {
- "protocol_id": 762
- },
- "minecraft:mossy_stone_bricks": {
- "protocol_id": 294
- },
- "minecraft:moving_piston": {
- "protocol_id": 146
- },
- "minecraft:mud": {
- "protocol_id": 1022
- },
- "minecraft:mud_brick_slab": {
- "protocol_id": 557
- },
- "minecraft:mud_brick_stairs": {
- "protocol_id": 322
- },
- "minecraft:mud_brick_wall": {
- "protocol_id": 765
- },
- "minecraft:mud_bricks": {
- "protocol_id": 298
- },
- "minecraft:muddy_mangrove_roots": {
- "protocol_id": 55
- },
- "minecraft:mushroom_stem": {
- "protocol_id": 307
- },
- "minecraft:mycelium": {
- "protocol_id": 323
- },
- "minecraft:nether_brick_fence": {
- "protocol_id": 326
- },
- "minecraft:nether_brick_slab": {
- "protocol_id": 558
- },
- "minecraft:nether_brick_stairs": {
- "protocol_id": 327
- },
- "minecraft:nether_brick_wall": {
- "protocol_id": 766
- },
- "minecraft:nether_bricks": {
- "protocol_id": 325
- },
- "minecraft:nether_gold_ore": {
- "protocol_id": 45
- },
- "minecraft:nether_portal": {
- "protocol_id": 263
- },
- "minecraft:nether_quartz_ore": {
- "protocol_id": 417
- },
- "minecraft:nether_sprouts": {
- "protocol_id": 797
- },
- "minecraft:nether_wart": {
- "protocol_id": 328
- },
- "minecraft:nether_wart_block": {
- "protocol_id": 608
- },
- "minecraft:netherite_block": {
- "protocol_id": 840
- },
- "minecraft:netherrack": {
- "protocol_id": 255
- },
- "minecraft:note_block": {
"protocol_id": 102
},
+ "minecraft:large_amethyst_bud": {
+ "protocol_id": 927
+ },
+ "minecraft:large_fern": {
+ "protocol_id": 519
+ },
+ "minecraft:lava": {
+ "protocol_id": 36
+ },
+ "minecraft:lava_cauldron": {
+ "protocol_id": 347
+ },
+ "minecraft:lectern": {
+ "protocol_id": 801
+ },
+ "minecraft:lever": {
+ "protocol_id": 242
+ },
+ "minecraft:light": {
+ "protocol_id": 482
+ },
+ "minecraft:light_blue_banner": {
+ "protocol_id": 523
+ },
+ "minecraft:light_blue_bed": {
+ "protocol_id": 113
+ },
+ "minecraft:light_blue_candle": {
+ "protocol_id": 894
+ },
+ "minecraft:light_blue_candle_cake": {
+ "protocol_id": 911
+ },
+ "minecraft:light_blue_carpet": {
+ "protocol_id": 498
+ },
+ "minecraft:light_blue_concrete": {
+ "protocol_id": 670
+ },
+ "minecraft:light_blue_concrete_powder": {
+ "protocol_id": 686
+ },
+ "minecraft:light_blue_glazed_terracotta": {
+ "protocol_id": 654
+ },
+ "minecraft:light_blue_shulker_box": {
+ "protocol_id": 638
+ },
+ "minecraft:light_blue_stained_glass": {
+ "protocol_id": 284
+ },
+ "minecraft:light_blue_stained_glass_pane": {
+ "protocol_id": 460
+ },
+ "minecraft:light_blue_terracotta": {
+ "protocol_id": 444
+ },
+ "minecraft:light_blue_wall_banner": {
+ "protocol_id": 539
+ },
+ "minecraft:light_blue_wool": {
+ "protocol_id": 140
+ },
+ "minecraft:light_gray_banner": {
+ "protocol_id": 528
+ },
+ "minecraft:light_gray_bed": {
+ "protocol_id": 118
+ },
+ "minecraft:light_gray_candle": {
+ "protocol_id": 899
+ },
+ "minecraft:light_gray_candle_cake": {
+ "protocol_id": 916
+ },
+ "minecraft:light_gray_carpet": {
+ "protocol_id": 503
+ },
+ "minecraft:light_gray_concrete": {
+ "protocol_id": 675
+ },
+ "minecraft:light_gray_concrete_powder": {
+ "protocol_id": 691
+ },
+ "minecraft:light_gray_glazed_terracotta": {
+ "protocol_id": 659
+ },
+ "minecraft:light_gray_shulker_box": {
+ "protocol_id": 643
+ },
+ "minecraft:light_gray_stained_glass": {
+ "protocol_id": 289
+ },
+ "minecraft:light_gray_stained_glass_pane": {
+ "protocol_id": 465
+ },
+ "minecraft:light_gray_terracotta": {
+ "protocol_id": 449
+ },
+ "minecraft:light_gray_wall_banner": {
+ "protocol_id": 544
+ },
+ "minecraft:light_gray_wool": {
+ "protocol_id": 145
+ },
+ "minecraft:light_weighted_pressure_plate": {
+ "protocol_id": 428
+ },
+ "minecraft:lightning_rod": {
+ "protocol_id": 1027
+ },
+ "minecraft:lilac": {
+ "protocol_id": 515
+ },
+ "minecraft:lily_of_the_valley": {
+ "protocol_id": 167
+ },
+ "minecraft:lily_pad": {
+ "protocol_id": 338
+ },
+ "minecraft:lime_banner": {
+ "protocol_id": 525
+ },
+ "minecraft:lime_bed": {
+ "protocol_id": 115
+ },
+ "minecraft:lime_candle": {
+ "protocol_id": 896
+ },
+ "minecraft:lime_candle_cake": {
+ "protocol_id": 913
+ },
+ "minecraft:lime_carpet": {
+ "protocol_id": 500
+ },
+ "minecraft:lime_concrete": {
+ "protocol_id": 672
+ },
+ "minecraft:lime_concrete_powder": {
+ "protocol_id": 688
+ },
+ "minecraft:lime_glazed_terracotta": {
+ "protocol_id": 656
+ },
+ "minecraft:lime_shulker_box": {
+ "protocol_id": 640
+ },
+ "minecraft:lime_stained_glass": {
+ "protocol_id": 286
+ },
+ "minecraft:lime_stained_glass_pane": {
+ "protocol_id": 462
+ },
+ "minecraft:lime_terracotta": {
+ "protocol_id": 446
+ },
+ "minecraft:lime_wall_banner": {
+ "protocol_id": 541
+ },
+ "minecraft:lime_wool": {
+ "protocol_id": 142
+ },
+ "minecraft:lodestone": {
+ "protocol_id": 869
+ },
+ "minecraft:loom": {
+ "protocol_id": 794
+ },
+ "minecraft:magenta_banner": {
+ "protocol_id": 522
+ },
+ "minecraft:magenta_bed": {
+ "protocol_id": 112
+ },
+ "minecraft:magenta_candle": {
+ "protocol_id": 893
+ },
+ "minecraft:magenta_candle_cake": {
+ "protocol_id": 910
+ },
+ "minecraft:magenta_carpet": {
+ "protocol_id": 497
+ },
+ "minecraft:magenta_concrete": {
+ "protocol_id": 669
+ },
+ "minecraft:magenta_concrete_powder": {
+ "protocol_id": 685
+ },
+ "minecraft:magenta_glazed_terracotta": {
+ "protocol_id": 653
+ },
+ "minecraft:magenta_shulker_box": {
+ "protocol_id": 637
+ },
+ "minecraft:magenta_stained_glass": {
+ "protocol_id": 283
+ },
+ "minecraft:magenta_stained_glass_pane": {
+ "protocol_id": 459
+ },
+ "minecraft:magenta_terracotta": {
+ "protocol_id": 443
+ },
+ "minecraft:magenta_wall_banner": {
+ "protocol_id": 538
+ },
+ "minecraft:magenta_wool": {
+ "protocol_id": 139
+ },
+ "minecraft:magma_block": {
+ "protocol_id": 628
+ },
+ "minecraft:mangrove_button": {
+ "protocol_id": 408
+ },
+ "minecraft:mangrove_door": {
+ "protocol_id": 610
+ },
+ "minecraft:mangrove_fence": {
+ "protocol_id": 601
+ },
+ "minecraft:mangrove_fence_gate": {
+ "protocol_id": 592
+ },
+ "minecraft:mangrove_hanging_sign": {
+ "protocol_id": 228
+ },
+ "minecraft:mangrove_leaves": {
+ "protocol_id": 96
+ },
+ "minecraft:mangrove_log": {
+ "protocol_id": 57
+ },
+ "minecraft:mangrove_planks": {
+ "protocol_id": 22
+ },
+ "minecraft:mangrove_pressure_plate": {
+ "protocol_id": 253
+ },
+ "minecraft:mangrove_propagule": {
+ "protocol_id": 33
+ },
+ "minecraft:mangrove_roots": {
+ "protocol_id": 58
+ },
+ "minecraft:mangrove_sign": {
+ "protocol_id": 202
+ },
+ "minecraft:mangrove_slab": {
+ "protocol_id": 564
+ },
+ "minecraft:mangrove_stairs": {
+ "protocol_id": 477
+ },
+ "minecraft:mangrove_trapdoor": {
+ "protocol_id": 305
+ },
+ "minecraft:mangrove_wall_hanging_sign": {
+ "protocol_id": 238
+ },
+ "minecraft:mangrove_wall_sign": {
+ "protocol_id": 216
+ },
+ "minecraft:mangrove_wood": {
+ "protocol_id": 78
+ },
+ "minecraft:medium_amethyst_bud": {
+ "protocol_id": 928
+ },
+ "minecraft:melon": {
+ "protocol_id": 326
+ },
+ "minecraft:melon_stem": {
+ "protocol_id": 330
+ },
+ "minecraft:moss_block": {
+ "protocol_id": 1037
+ },
+ "minecraft:moss_carpet": {
+ "protocol_id": 1035
+ },
+ "minecraft:mossy_cobblestone": {
+ "protocol_id": 176
+ },
+ "minecraft:mossy_cobblestone_slab": {
+ "protocol_id": 771
+ },
+ "minecraft:mossy_cobblestone_stairs": {
+ "protocol_id": 757
+ },
+ "minecraft:mossy_cobblestone_wall": {
+ "protocol_id": 368
+ },
+ "minecraft:mossy_stone_brick_slab": {
+ "protocol_id": 769
+ },
+ "minecraft:mossy_stone_brick_stairs": {
+ "protocol_id": 755
+ },
+ "minecraft:mossy_stone_brick_wall": {
+ "protocol_id": 783
+ },
+ "minecraft:mossy_stone_bricks": {
+ "protocol_id": 308
+ },
+ "minecraft:moving_piston": {
+ "protocol_id": 153
+ },
+ "minecraft:mud": {
+ "protocol_id": 1043
+ },
+ "minecraft:mud_brick_slab": {
+ "protocol_id": 575
+ },
+ "minecraft:mud_brick_stairs": {
+ "protocol_id": 336
+ },
+ "minecraft:mud_brick_wall": {
+ "protocol_id": 786
+ },
+ "minecraft:mud_bricks": {
+ "protocol_id": 312
+ },
+ "minecraft:muddy_mangrove_roots": {
+ "protocol_id": 59
+ },
+ "minecraft:mushroom_stem": {
+ "protocol_id": 321
+ },
+ "minecraft:mycelium": {
+ "protocol_id": 337
+ },
+ "minecraft:nether_brick_fence": {
+ "protocol_id": 340
+ },
+ "minecraft:nether_brick_slab": {
+ "protocol_id": 576
+ },
+ "minecraft:nether_brick_stairs": {
+ "protocol_id": 341
+ },
+ "minecraft:nether_brick_wall": {
+ "protocol_id": 787
+ },
+ "minecraft:nether_bricks": {
+ "protocol_id": 339
+ },
+ "minecraft:nether_gold_ore": {
+ "protocol_id": 48
+ },
+ "minecraft:nether_portal": {
+ "protocol_id": 276
+ },
+ "minecraft:nether_quartz_ore": {
+ "protocol_id": 433
+ },
+ "minecraft:nether_sprouts": {
+ "protocol_id": 818
+ },
+ "minecraft:nether_wart": {
+ "protocol_id": 342
+ },
+ "minecraft:nether_wart_block": {
+ "protocol_id": 629
+ },
+ "minecraft:netherite_block": {
+ "protocol_id": 861
+ },
+ "minecraft:netherrack": {
+ "protocol_id": 268
+ },
+ "minecraft:note_block": {
+ "protocol_id": 109
+ },
"minecraft:oak_button": {
- "protocol_id": 385
+ "protocol_id": 400
},
"minecraft:oak_door": {
- "protocol_id": 195
+ "protocol_id": 204
},
"minecraft:oak_fence": {
- "protocol_id": 254
+ "protocol_id": 267
},
"minecraft:oak_fence_gate": {
- "protocol_id": 319
+ "protocol_id": 333
},
"minecraft:oak_hanging_sign": {
- "protocol_id": 208
+ "protocol_id": 218
},
"minecraft:oak_leaves": {
- "protocol_id": 82
+ "protocol_id": 88
},
"minecraft:oak_log": {
- "protocol_id": 46
+ "protocol_id": 49
},
"minecraft:oak_planks": {
"protocol_id": 13
},
"minecraft:oak_pressure_plate": {
- "protocol_id": 233
+ "protocol_id": 245
},
"minecraft:oak_sapling": {
- "protocol_id": 23
+ "protocol_id": 25
},
"minecraft:oak_sign": {
- "protocol_id": 186
+ "protocol_id": 194
},
"minecraft:oak_slab": {
- "protocol_id": 539
+ "protocol_id": 556
},
"minecraft:oak_stairs": {
- "protocol_id": 176
+ "protocol_id": 184
},
"minecraft:oak_trapdoor": {
- "protocol_id": 284
- },
- "minecraft:oak_wall_hanging_sign": {
- "protocol_id": 219
- },
- "minecraft:oak_wall_sign": {
- "protocol_id": 199
- },
- "minecraft:oak_wood": {
- "protocol_id": 66
- },
- "minecraft:observer": {
- "protocol_id": 612
- },
- "minecraft:obsidian": {
- "protocol_id": 170
- },
- "minecraft:ochre_froglight": {
- "protocol_id": 1050
- },
- "minecraft:orange_banner": {
- "protocol_id": 504
- },
- "minecraft:orange_bed": {
- "protocol_id": 104
- },
- "minecraft:orange_candle": {
- "protocol_id": 871
- },
- "minecraft:orange_candle_cake": {
- "protocol_id": 888
- },
- "minecraft:orange_carpet": {
- "protocol_id": 479
- },
- "minecraft:orange_concrete": {
- "protocol_id": 647
- },
- "minecraft:orange_concrete_powder": {
- "protocol_id": 663
- },
- "minecraft:orange_glazed_terracotta": {
- "protocol_id": 631
- },
- "minecraft:orange_shulker_box": {
- "protocol_id": 615
- },
- "minecraft:orange_stained_glass": {
- "protocol_id": 269
- },
- "minecraft:orange_stained_glass_pane": {
- "protocol_id": 442
- },
- "minecraft:orange_terracotta": {
- "protocol_id": 426
- },
- "minecraft:orange_tulip": {
- "protocol_id": 154
- },
- "minecraft:orange_wall_banner": {
- "protocol_id": 520
- },
- "minecraft:orange_wool": {
- "protocol_id": 131
- },
- "minecraft:oxeye_daisy": {
- "protocol_id": 157
- },
- "minecraft:oxidized_chiseled_copper": {
- "protocol_id": 942
- },
- "minecraft:oxidized_copper": {
- "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": 938
- },
- "minecraft:oxidized_cut_copper_slab": {
- "protocol_id": 954
- },
- "minecraft:oxidized_cut_copper_stairs": {
- "protocol_id": 950
- },
- "minecraft:packed_ice": {
- "protocol_id": 496
- },
- "minecraft:packed_mud": {
"protocol_id": 297
},
- "minecraft:pearlescent_froglight": {
- "protocol_id": 1052
+ "minecraft:oak_wall_hanging_sign": {
+ "protocol_id": 230
},
- "minecraft:peony": {
- "protocol_id": 500
+ "minecraft:oak_wall_sign": {
+ "protocol_id": 208
},
- "minecraft:petrified_oak_slab": {
- "protocol_id": 553
+ "minecraft:oak_wood": {
+ "protocol_id": 71
},
- "minecraft:piglin_head": {
- "protocol_id": 406
+ "minecraft:observer": {
+ "protocol_id": 633
},
- "minecraft:piglin_wall_head": {
- "protocol_id": 407
+ "minecraft:obsidian": {
+ "protocol_id": 177
},
- "minecraft:pink_banner": {
- "protocol_id": 509
+ "minecraft:ochre_froglight": {
+ "protocol_id": 1071
},
- "minecraft:pink_bed": {
- "protocol_id": 109
+ "minecraft:orange_banner": {
+ "protocol_id": 521
},
- "minecraft:pink_candle": {
- "protocol_id": 876
+ "minecraft:orange_bed": {
+ "protocol_id": 111
},
- "minecraft:pink_candle_cake": {
- "protocol_id": 893
+ "minecraft:orange_candle": {
+ "protocol_id": 892
},
- "minecraft:pink_carpet": {
- "protocol_id": 484
+ "minecraft:orange_candle_cake": {
+ "protocol_id": 909
},
- "minecraft:pink_concrete": {
- "protocol_id": 652
+ "minecraft:orange_carpet": {
+ "protocol_id": 496
},
- "minecraft:pink_concrete_powder": {
+ "minecraft:orange_concrete": {
"protocol_id": 668
},
- "minecraft:pink_glazed_terracotta": {
+ "minecraft:orange_concrete_powder": {
+ "protocol_id": 684
+ },
+ "minecraft:orange_glazed_terracotta": {
+ "protocol_id": 652
+ },
+ "minecraft:orange_shulker_box": {
"protocol_id": 636
},
- "minecraft:pink_petals": {
- "protocol_id": 1015
+ "minecraft:orange_stained_glass": {
+ "protocol_id": 282
},
- "minecraft:pink_shulker_box": {
- "protocol_id": 620
+ "minecraft:orange_stained_glass_pane": {
+ "protocol_id": 458
},
- "minecraft:pink_stained_glass": {
- "protocol_id": 274
+ "minecraft:orange_terracotta": {
+ "protocol_id": 442
},
- "minecraft:pink_stained_glass_pane": {
- "protocol_id": 447
+ "minecraft:orange_tulip": {
+ "protocol_id": 161
},
- "minecraft:pink_terracotta": {
- "protocol_id": 431
+ "minecraft:orange_wall_banner": {
+ "protocol_id": 537
},
- "minecraft:pink_tulip": {
- "protocol_id": 156
+ "minecraft:orange_wool": {
+ "protocol_id": 138
},
- "minecraft:pink_wall_banner": {
- "protocol_id": 525
+ "minecraft:oxeye_daisy": {
+ "protocol_id": 164
},
- "minecraft:pink_wool": {
- "protocol_id": 136
+ "minecraft:oxidized_chiseled_copper": {
+ "protocol_id": 963
},
- "minecraft:piston": {
- "protocol_id": 128
+ "minecraft:oxidized_copper": {
+ "protocol_id": 956
},
- "minecraft:piston_head": {
- "protocol_id": 129
+ "minecraft:oxidized_copper_bulb": {
+ "protocol_id": 1022
},
- "minecraft:pitcher_crop": {
- "protocol_id": 599
+ "minecraft:oxidized_copper_door": {
+ "protocol_id": 997
},
- "minecraft:pitcher_plant": {
+ "minecraft:oxidized_copper_grate": {
+ "protocol_id": 1014
+ },
+ "minecraft:oxidized_copper_trapdoor": {
+ "protocol_id": 1005
+ },
+ "minecraft:oxidized_cut_copper": {
+ "protocol_id": 959
+ },
+ "minecraft:oxidized_cut_copper_slab": {
+ "protocol_id": 975
+ },
+ "minecraft:oxidized_cut_copper_stairs": {
+ "protocol_id": 971
+ },
+ "minecraft:packed_ice": {
+ "protocol_id": 513
+ },
+ "minecraft:packed_mud": {
+ "protocol_id": 311
+ },
+ "minecraft:pale_hanging_moss": {
+ "protocol_id": 1083
+ },
+ "minecraft:pale_moss_block": {
+ "protocol_id": 1081
+ },
+ "minecraft:pale_moss_carpet": {
+ "protocol_id": 1082
+ },
+ "minecraft:pale_oak_button": {
+ "protocol_id": 407
+ },
+ "minecraft:pale_oak_door": {
+ "protocol_id": 609
+ },
+ "minecraft:pale_oak_fence": {
"protocol_id": 600
},
+ "minecraft:pale_oak_fence_gate": {
+ "protocol_id": 591
+ },
+ "minecraft:pale_oak_hanging_sign": {
+ "protocol_id": 225
+ },
+ "minecraft:pale_oak_leaves": {
+ "protocol_id": 95
+ },
+ "minecraft:pale_oak_log": {
+ "protocol_id": 56
+ },
+ "minecraft:pale_oak_planks": {
+ "protocol_id": 21
+ },
+ "minecraft:pale_oak_pressure_plate": {
+ "protocol_id": 252
+ },
+ "minecraft:pale_oak_sapling": {
+ "protocol_id": 32
+ },
+ "minecraft:pale_oak_sign": {
+ "protocol_id": 201
+ },
+ "minecraft:pale_oak_slab": {
+ "protocol_id": 563
+ },
+ "minecraft:pale_oak_stairs": {
+ "protocol_id": 476
+ },
+ "minecraft:pale_oak_trapdoor": {
+ "protocol_id": 304
+ },
+ "minecraft:pale_oak_wall_hanging_sign": {
+ "protocol_id": 237
+ },
+ "minecraft:pale_oak_wall_sign": {
+ "protocol_id": 215
+ },
+ "minecraft:pale_oak_wood": {
+ "protocol_id": 20
+ },
+ "minecraft:pearlescent_froglight": {
+ "protocol_id": 1073
+ },
+ "minecraft:peony": {
+ "protocol_id": 517
+ },
+ "minecraft:petrified_oak_slab": {
+ "protocol_id": 571
+ },
+ "minecraft:piglin_head": {
+ "protocol_id": 422
+ },
+ "minecraft:piglin_wall_head": {
+ "protocol_id": 423
+ },
+ "minecraft:pink_banner": {
+ "protocol_id": 526
+ },
+ "minecraft:pink_bed": {
+ "protocol_id": 116
+ },
+ "minecraft:pink_candle": {
+ "protocol_id": 897
+ },
+ "minecraft:pink_candle_cake": {
+ "protocol_id": 914
+ },
+ "minecraft:pink_carpet": {
+ "protocol_id": 501
+ },
+ "minecraft:pink_concrete": {
+ "protocol_id": 673
+ },
+ "minecraft:pink_concrete_powder": {
+ "protocol_id": 689
+ },
+ "minecraft:pink_glazed_terracotta": {
+ "protocol_id": 657
+ },
+ "minecraft:pink_petals": {
+ "protocol_id": 1036
+ },
+ "minecraft:pink_shulker_box": {
+ "protocol_id": 641
+ },
+ "minecraft:pink_stained_glass": {
+ "protocol_id": 287
+ },
+ "minecraft:pink_stained_glass_pane": {
+ "protocol_id": 463
+ },
+ "minecraft:pink_terracotta": {
+ "protocol_id": 447
+ },
+ "minecraft:pink_tulip": {
+ "protocol_id": 163
+ },
+ "minecraft:pink_wall_banner": {
+ "protocol_id": 542
+ },
+ "minecraft:pink_wool": {
+ "protocol_id": 143
+ },
+ "minecraft:piston": {
+ "protocol_id": 135
+ },
+ "minecraft:piston_head": {
+ "protocol_id": 136
+ },
+ "minecraft:pitcher_crop": {
+ "protocol_id": 620
+ },
+ "minecraft:pitcher_plant": {
+ "protocol_id": 621
+ },
"minecraft:player_head": {
- "protocol_id": 400
+ "protocol_id": 416
},
"minecraft:player_wall_head": {
- "protocol_id": 401
+ "protocol_id": 417
},
"minecraft:podzol": {
"protocol_id": 11
},
"minecraft:pointed_dripstone": {
- "protocol_id": 1007
+ "protocol_id": 1028
},
"minecraft:polished_andesite": {
"protocol_id": 7
},
"minecraft:polished_andesite_slab": {
- "protocol_id": 757
+ "protocol_id": 778
},
"minecraft:polished_andesite_stairs": {
- "protocol_id": 744
+ "protocol_id": 765
},
"minecraft:polished_basalt": {
- "protocol_id": 259
+ "protocol_id": 272
},
"minecraft:polished_blackstone": {
- "protocol_id": 853
+ "protocol_id": 874
},
"minecraft:polished_blackstone_brick_slab": {
- "protocol_id": 857
+ "protocol_id": 878
},
"minecraft:polished_blackstone_brick_stairs": {
- "protocol_id": 858
+ "protocol_id": 879
},
"minecraft:polished_blackstone_brick_wall": {
- "protocol_id": 859
+ "protocol_id": 880
},
"minecraft:polished_blackstone_bricks": {
- "protocol_id": 854
+ "protocol_id": 875
},
"minecraft:polished_blackstone_button": {
- "protocol_id": 864
+ "protocol_id": 885
},
"minecraft:polished_blackstone_pressure_plate": {
- "protocol_id": 863
+ "protocol_id": 884
},
"minecraft:polished_blackstone_slab": {
- "protocol_id": 862
+ "protocol_id": 883
},
"minecraft:polished_blackstone_stairs": {
- "protocol_id": 861
+ "protocol_id": 882
},
"minecraft:polished_blackstone_wall": {
- "protocol_id": 865
+ "protocol_id": 886
},
"minecraft:polished_deepslate": {
- "protocol_id": 1028
+ "protocol_id": 1049
},
"minecraft:polished_deepslate_slab": {
- "protocol_id": 1030
+ "protocol_id": 1051
},
"minecraft:polished_deepslate_stairs": {
- "protocol_id": 1029
+ "protocol_id": 1050
},
"minecraft:polished_deepslate_wall": {
- "protocol_id": 1031
+ "protocol_id": 1052
},
"minecraft:polished_diorite": {
"protocol_id": 5
},
"minecraft:polished_diorite_slab": {
- "protocol_id": 749
+ "protocol_id": 770
},
"minecraft:polished_diorite_stairs": {
- "protocol_id": 735
+ "protocol_id": 756
},
"minecraft:polished_granite": {
"protocol_id": 3
},
"minecraft:polished_granite_slab": {
- "protocol_id": 746
+ "protocol_id": 767
},
"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
- },
- "minecraft:potatoes": {
- "protocol_id": 384
- },
- "minecraft:potted_acacia_sapling": {
- "protocol_id": 361
- },
- "minecraft:potted_allium": {
- "protocol_id": 369
- },
- "minecraft:potted_azalea_bush": {
- "protocol_id": 1048
- },
- "minecraft:potted_azure_bluet": {
- "protocol_id": 370
- },
- "minecraft:potted_bamboo": {
- "protocol_id": 728
- },
- "minecraft:potted_birch_sapling": {
- "protocol_id": 359
- },
- "minecraft:potted_blue_orchid": {
- "protocol_id": 368
- },
- "minecraft:potted_brown_mushroom": {
- "protocol_id": 380
- },
- "minecraft:potted_cactus": {
- "protocol_id": 382
- },
- "minecraft:potted_cherry_sapling": {
- "protocol_id": 362
- },
- "minecraft:potted_cornflower": {
- "protocol_id": 376
- },
- "minecraft:potted_crimson_fungus": {
- "protocol_id": 844
- },
- "minecraft:potted_crimson_roots": {
- "protocol_id": 846
- },
- "minecraft:potted_dandelion": {
- "protocol_id": 366
- },
- "minecraft:potted_dark_oak_sapling": {
- "protocol_id": 363
- },
- "minecraft:potted_dead_bush": {
- "protocol_id": 381
- },
- "minecraft:potted_fern": {
- "protocol_id": 365
- },
- "minecraft:potted_flowering_azalea_bush": {
- "protocol_id": 1049
- },
- "minecraft:potted_jungle_sapling": {
- "protocol_id": 360
- },
- "minecraft:potted_lily_of_the_valley": {
- "protocol_id": 377
- },
- "minecraft:potted_mangrove_propagule": {
- "protocol_id": 364
- },
- "minecraft:potted_oak_sapling": {
- "protocol_id": 357
- },
- "minecraft:potted_orange_tulip": {
- "protocol_id": 372
- },
- "minecraft:potted_oxeye_daisy": {
- "protocol_id": 375
- },
- "minecraft:potted_pink_tulip": {
- "protocol_id": 374
- },
- "minecraft:potted_poppy": {
- "protocol_id": 367
- },
- "minecraft:potted_red_mushroom": {
- "protocol_id": 379
- },
- "minecraft:potted_red_tulip": {
- "protocol_id": 371
- },
- "minecraft:potted_spruce_sapling": {
- "protocol_id": 358
- },
- "minecraft:potted_torchflower": {
- "protocol_id": 356
- },
- "minecraft:potted_warped_fungus": {
- "protocol_id": 845
- },
- "minecraft:potted_warped_roots": {
- "protocol_id": 847
- },
- "minecraft:potted_white_tulip": {
- "protocol_id": 373
- },
- "minecraft:potted_wither_rose": {
- "protocol_id": 378
- },
- "minecraft:powder_snow": {
- "protocol_id": 925
- },
- "minecraft:powder_snow_cauldron": {
- "protocol_id": 334
- },
- "minecraft:powered_rail": {
- "protocol_id": 119
- },
- "minecraft:prismarine": {
- "protocol_id": 467
- },
- "minecraft:prismarine_brick_slab": {
- "protocol_id": 474
- },
- "minecraft:prismarine_brick_stairs": {
- "protocol_id": 471
- },
- "minecraft:prismarine_bricks": {
- "protocol_id": 468
- },
- "minecraft:prismarine_slab": {
- "protocol_id": 473
- },
- "minecraft:prismarine_stairs": {
- "protocol_id": 470
- },
- "minecraft:prismarine_wall": {
- "protocol_id": 760
- },
- "minecraft:pumpkin": {
- "protocol_id": 311
- },
- "minecraft:pumpkin_stem": {
- "protocol_id": 315
- },
- "minecraft:purple_banner": {
- "protocol_id": 513
- },
- "minecraft:purple_bed": {
- "protocol_id": 113
- },
- "minecraft:purple_candle": {
- "protocol_id": 880
- },
- "minecraft:purple_candle_cake": {
- "protocol_id": 897
- },
- "minecraft:purple_carpet": {
- "protocol_id": 488
- },
- "minecraft:purple_concrete": {
- "protocol_id": 656
- },
- "minecraft:purple_concrete_powder": {
- "protocol_id": 672
- },
- "minecraft:purple_glazed_terracotta": {
- "protocol_id": 640
- },
- "minecraft:purple_shulker_box": {
- "protocol_id": 624
- },
- "minecraft:purple_stained_glass": {
- "protocol_id": 278
- },
- "minecraft:purple_stained_glass_pane": {
- "protocol_id": 451
- },
- "minecraft:purple_terracotta": {
- "protocol_id": 435
- },
- "minecraft:purple_wall_banner": {
- "protocol_id": 529
- },
- "minecraft:purple_wool": {
- "protocol_id": 140
- },
- "minecraft:purpur_block": {
- "protocol_id": 594
- },
- "minecraft:purpur_pillar": {
- "protocol_id": 595
- },
- "minecraft:purpur_slab": {
- "protocol_id": 562
- },
- "minecraft:purpur_stairs": {
- "protocol_id": 596
- },
- "minecraft:quartz_block": {
- "protocol_id": 419
- },
- "minecraft:quartz_bricks": {
- "protocol_id": 868
- },
- "minecraft:quartz_pillar": {
- "protocol_id": 421
- },
- "minecraft:quartz_slab": {
- "protocol_id": 559
- },
- "minecraft:quartz_stairs": {
- "protocol_id": 422
- },
- "minecraft:rail": {
- "protocol_id": 197
- },
- "minecraft:raw_copper_block": {
- "protocol_id": 1046
- },
- "minecraft:raw_gold_block": {
- "protocol_id": 1047
- },
- "minecraft:raw_iron_block": {
- "protocol_id": 1045
- },
- "minecraft:red_banner": {
- "protocol_id": 517
- },
- "minecraft:red_bed": {
- "protocol_id": 117
- },
- "minecraft:red_candle": {
- "protocol_id": 884
- },
- "minecraft:red_candle_cake": {
- "protocol_id": 901
- },
- "minecraft:red_carpet": {
- "protocol_id": 492
- },
- "minecraft:red_concrete": {
- "protocol_id": 660
- },
- "minecraft:red_concrete_powder": {
- "protocol_id": 676
- },
- "minecraft:red_glazed_terracotta": {
- "protocol_id": 644
- },
- "minecraft:red_mushroom": {
- "protocol_id": 162
- },
- "minecraft:red_mushroom_block": {
- "protocol_id": 306
- },
- "minecraft:red_nether_brick_slab": {
- "protocol_id": 756
- },
- "minecraft:red_nether_brick_stairs": {
- "protocol_id": 743
- },
- "minecraft:red_nether_brick_wall": {
- "protocol_id": 768
- },
- "minecraft:red_nether_bricks": {
- "protocol_id": 609
- },
- "minecraft:red_sand": {
- "protocol_id": 36
- },
- "minecraft:red_sandstone": {
- "protocol_id": 535
- },
- "minecraft:red_sandstone_slab": {
- "protocol_id": 560
- },
- "minecraft:red_sandstone_stairs": {
- "protocol_id": 538
- },
- "minecraft:red_sandstone_wall": {
- "protocol_id": 761
- },
- "minecraft:red_shulker_box": {
- "protocol_id": 628
- },
- "minecraft:red_stained_glass": {
- "protocol_id": 282
- },
- "minecraft:red_stained_glass_pane": {
- "protocol_id": 455
- },
- "minecraft:red_terracotta": {
- "protocol_id": 439
- },
- "minecraft:red_tulip": {
- "protocol_id": 153
- },
- "minecraft:red_wall_banner": {
- "protocol_id": 533
- },
- "minecraft:red_wool": {
- "protocol_id": 144
- },
- "minecraft:redstone_block": {
- "protocol_id": 416
- },
- "minecraft:redstone_lamp": {
- "protocol_id": 339
- },
- "minecraft:redstone_ore": {
- "protocol_id": 242
- },
- "minecraft:redstone_torch": {
- "protocol_id": 244
- },
- "minecraft:redstone_wall_torch": {
- "protocol_id": 245
- },
- "minecraft:redstone_wire": {
- "protocol_id": 178
- },
- "minecraft:reinforced_deepslate": {
- "protocol_id": 1054
- },
- "minecraft:repeater": {
- "protocol_id": 267
- },
- "minecraft:repeating_command_block": {
- "protocol_id": 604
- },
- "minecraft:respawn_anchor": {
- "protocol_id": 843
- },
- "minecraft:rooted_dirt": {
- "protocol_id": 1021
- },
- "minecraft:rose_bush": {
- "protocol_id": 499
- },
- "minecraft:sand": {
- "protocol_id": 34
- },
- "minecraft:sandstone": {
- "protocol_id": 99
- },
- "minecraft:sandstone_slab": {
- "protocol_id": 551
- },
- "minecraft:sandstone_stairs": {
- "protocol_id": 341
- },
- "minecraft:sandstone_wall": {
- "protocol_id": 769
- },
- "minecraft:scaffolding": {
- "protocol_id": 772
- },
- "minecraft:sculk": {
- "protocol_id": 928
- },
- "minecraft:sculk_catalyst": {
- "protocol_id": 930
- },
- "minecraft:sculk_sensor": {
- "protocol_id": 926
- },
- "minecraft:sculk_shrieker": {
- "protocol_id": 931
- },
- "minecraft:sculk_vein": {
- "protocol_id": 929
- },
- "minecraft:sea_lantern": {
- "protocol_id": 476
- },
- "minecraft:sea_pickle": {
- "protocol_id": 723
- },
- "minecraft:seagrass": {
- "protocol_id": 126
- },
- "minecraft:short_grass": {
- "protocol_id": 123
- },
- "minecraft:shroomlight": {
- "protocol_id": 804
- },
- "minecraft:shulker_box": {
- "protocol_id": 613
- },
- "minecraft:skeleton_skull": {
- "protocol_id": 394
- },
- "minecraft:skeleton_wall_skull": {
- "protocol_id": 395
- },
- "minecraft:slime_block": {
- "protocol_id": 463
- },
- "minecraft:small_amethyst_bud": {
- "protocol_id": 908
- },
- "minecraft:small_dripleaf": {
- "protocol_id": 1019
- },
- "minecraft:smithing_table": {
- "protocol_id": 781
- },
- "minecraft:smoker": {
- "protocol_id": 775
- },
- "minecraft:smooth_basalt": {
- "protocol_id": 1044
- },
- "minecraft:smooth_quartz": {
- "protocol_id": 565
- },
- "minecraft:smooth_quartz_slab": {
"protocol_id": 753
},
- "minecraft:smooth_quartz_stairs": {
- "protocol_id": 740
+ "minecraft:polished_tuff": {
+ "protocol_id": 934
},
- "minecraft:smooth_red_sandstone": {
- "protocol_id": 566
+ "minecraft:polished_tuff_slab": {
+ "protocol_id": 935
},
- "minecraft:smooth_red_sandstone_slab": {
- "protocol_id": 747
+ "minecraft:polished_tuff_stairs": {
+ "protocol_id": 936
},
- "minecraft:smooth_red_sandstone_stairs": {
- "protocol_id": 733
+ "minecraft:polished_tuff_wall": {
+ "protocol_id": 937
},
- "minecraft:smooth_sandstone": {
- "protocol_id": 564
+ "minecraft:poppy": {
+ "protocol_id": 156
},
- "minecraft:smooth_sandstone_slab": {
- "protocol_id": 752
+ "minecraft:potatoes": {
+ "protocol_id": 399
},
- "minecraft:smooth_sandstone_stairs": {
- "protocol_id": 739
+ "minecraft:potted_acacia_sapling": {
+ "protocol_id": 375
},
- "minecraft:smooth_stone": {
- "protocol_id": 563
+ "minecraft:potted_allium": {
+ "protocol_id": 384
},
- "minecraft:smooth_stone_slab": {
- "protocol_id": 550
+ "minecraft:potted_azalea_bush": {
+ "protocol_id": 1069
},
- "minecraft:sniffer_egg": {
- "protocol_id": 682
+ "minecraft:potted_azure_bluet": {
+ "protocol_id": 385
},
- "minecraft:snow": {
- "protocol_id": 247
+ "minecraft:potted_bamboo": {
+ "protocol_id": 749
},
- "minecraft:snow_block": {
- "protocol_id": 249
+ "minecraft:potted_birch_sapling": {
+ "protocol_id": 373
},
- "minecraft:soul_campfire": {
- "protocol_id": 787
+ "minecraft:potted_blue_orchid": {
+ "protocol_id": 383
},
- "minecraft:soul_fire": {
- "protocol_id": 174
+ "minecraft:potted_brown_mushroom": {
+ "protocol_id": 395
},
- "minecraft:soul_lantern": {
- "protocol_id": 785
+ "minecraft:potted_cactus": {
+ "protocol_id": 397
},
- "minecraft:soul_sand": {
- "protocol_id": 256
+ "minecraft:potted_cherry_sapling": {
+ "protocol_id": 376
},
- "minecraft:soul_soil": {
- "protocol_id": 257
+ "minecraft:potted_cornflower": {
+ "protocol_id": 391
},
- "minecraft:soul_torch": {
- "protocol_id": 260
+ "minecraft:potted_crimson_fungus": {
+ "protocol_id": 865
},
- "minecraft:soul_wall_torch": {
- "protocol_id": 261
+ "minecraft:potted_crimson_roots": {
+ "protocol_id": 867
},
- "minecraft:spawner": {
- "protocol_id": 175
+ "minecraft:potted_dandelion": {
+ "protocol_id": 381
},
- "minecraft:sponge": {
- "protocol_id": 92
+ "minecraft:potted_dark_oak_sapling": {
+ "protocol_id": 377
},
- "minecraft:spore_blossom": {
- "protocol_id": 1011
+ "minecraft:potted_dead_bush": {
+ "protocol_id": 396
},
- "minecraft:spruce_button": {
+ "minecraft:potted_fern": {
+ "protocol_id": 380
+ },
+ "minecraft:potted_flowering_azalea_bush": {
+ "protocol_id": 1070
+ },
+ "minecraft:potted_jungle_sapling": {
+ "protocol_id": 374
+ },
+ "minecraft:potted_lily_of_the_valley": {
+ "protocol_id": 392
+ },
+ "minecraft:potted_mangrove_propagule": {
+ "protocol_id": 379
+ },
+ "minecraft:potted_oak_sapling": {
+ "protocol_id": 371
+ },
+ "minecraft:potted_orange_tulip": {
+ "protocol_id": 387
+ },
+ "minecraft:potted_oxeye_daisy": {
+ "protocol_id": 390
+ },
+ "minecraft:potted_pale_oak_sapling": {
+ "protocol_id": 378
+ },
+ "minecraft:potted_pink_tulip": {
+ "protocol_id": 389
+ },
+ "minecraft:potted_poppy": {
+ "protocol_id": 382
+ },
+ "minecraft:potted_red_mushroom": {
+ "protocol_id": 394
+ },
+ "minecraft:potted_red_tulip": {
"protocol_id": 386
},
- "minecraft:spruce_door": {
+ "minecraft:potted_spruce_sapling": {
+ "protocol_id": 372
+ },
+ "minecraft:potted_torchflower": {
+ "protocol_id": 370
+ },
+ "minecraft:potted_warped_fungus": {
+ "protocol_id": 866
+ },
+ "minecraft:potted_warped_roots": {
+ "protocol_id": 868
+ },
+ "minecraft:potted_white_tulip": {
+ "protocol_id": 388
+ },
+ "minecraft:potted_wither_rose": {
+ "protocol_id": 393
+ },
+ "minecraft:powder_snow": {
+ "protocol_id": 946
+ },
+ "minecraft:powder_snow_cauldron": {
+ "protocol_id": 348
+ },
+ "minecraft:powered_rail": {
+ "protocol_id": 126
+ },
+ "minecraft:prismarine": {
+ "protocol_id": 484
+ },
+ "minecraft:prismarine_brick_slab": {
+ "protocol_id": 491
+ },
+ "minecraft:prismarine_brick_stairs": {
+ "protocol_id": 488
+ },
+ "minecraft:prismarine_bricks": {
+ "protocol_id": 485
+ },
+ "minecraft:prismarine_slab": {
+ "protocol_id": 490
+ },
+ "minecraft:prismarine_stairs": {
+ "protocol_id": 487
+ },
+ "minecraft:prismarine_wall": {
+ "protocol_id": 781
+ },
+ "minecraft:pumpkin": {
+ "protocol_id": 325
+ },
+ "minecraft:pumpkin_stem": {
+ "protocol_id": 329
+ },
+ "minecraft:purple_banner": {
+ "protocol_id": 530
+ },
+ "minecraft:purple_bed": {
+ "protocol_id": 120
+ },
+ "minecraft:purple_candle": {
+ "protocol_id": 901
+ },
+ "minecraft:purple_candle_cake": {
+ "protocol_id": 918
+ },
+ "minecraft:purple_carpet": {
+ "protocol_id": 505
+ },
+ "minecraft:purple_concrete": {
+ "protocol_id": 677
+ },
+ "minecraft:purple_concrete_powder": {
+ "protocol_id": 693
+ },
+ "minecraft:purple_glazed_terracotta": {
+ "protocol_id": 661
+ },
+ "minecraft:purple_shulker_box": {
+ "protocol_id": 645
+ },
+ "minecraft:purple_stained_glass": {
+ "protocol_id": 291
+ },
+ "minecraft:purple_stained_glass_pane": {
+ "protocol_id": 467
+ },
+ "minecraft:purple_terracotta": {
+ "protocol_id": 451
+ },
+ "minecraft:purple_wall_banner": {
+ "protocol_id": 546
+ },
+ "minecraft:purple_wool": {
+ "protocol_id": 147
+ },
+ "minecraft:purpur_block": {
+ "protocol_id": 615
+ },
+ "minecraft:purpur_pillar": {
+ "protocol_id": 616
+ },
+ "minecraft:purpur_slab": {
+ "protocol_id": 580
+ },
+ "minecraft:purpur_stairs": {
+ "protocol_id": 617
+ },
+ "minecraft:quartz_block": {
+ "protocol_id": 435
+ },
+ "minecraft:quartz_bricks": {
+ "protocol_id": 889
+ },
+ "minecraft:quartz_pillar": {
+ "protocol_id": 437
+ },
+ "minecraft:quartz_slab": {
+ "protocol_id": 577
+ },
+ "minecraft:quartz_stairs": {
+ "protocol_id": 438
+ },
+ "minecraft:rail": {
+ "protocol_id": 206
+ },
+ "minecraft:raw_copper_block": {
+ "protocol_id": 1067
+ },
+ "minecraft:raw_gold_block": {
+ "protocol_id": 1068
+ },
+ "minecraft:raw_iron_block": {
+ "protocol_id": 1066
+ },
+ "minecraft:red_banner": {
+ "protocol_id": 534
+ },
+ "minecraft:red_bed": {
+ "protocol_id": 124
+ },
+ "minecraft:red_candle": {
+ "protocol_id": 905
+ },
+ "minecraft:red_candle_cake": {
+ "protocol_id": 922
+ },
+ "minecraft:red_carpet": {
+ "protocol_id": 509
+ },
+ "minecraft:red_concrete": {
+ "protocol_id": 681
+ },
+ "minecraft:red_concrete_powder": {
+ "protocol_id": 697
+ },
+ "minecraft:red_glazed_terracotta": {
+ "protocol_id": 665
+ },
+ "minecraft:red_mushroom": {
+ "protocol_id": 169
+ },
+ "minecraft:red_mushroom_block": {
+ "protocol_id": 320
+ },
+ "minecraft:red_nether_brick_slab": {
+ "protocol_id": 777
+ },
+ "minecraft:red_nether_brick_stairs": {
+ "protocol_id": 764
+ },
+ "minecraft:red_nether_brick_wall": {
+ "protocol_id": 789
+ },
+ "minecraft:red_nether_bricks": {
+ "protocol_id": 630
+ },
+ "minecraft:red_sand": {
+ "protocol_id": 39
+ },
+ "minecraft:red_sandstone": {
+ "protocol_id": 552
+ },
+ "minecraft:red_sandstone_slab": {
+ "protocol_id": 578
+ },
+ "minecraft:red_sandstone_stairs": {
+ "protocol_id": 555
+ },
+ "minecraft:red_sandstone_wall": {
+ "protocol_id": 782
+ },
+ "minecraft:red_shulker_box": {
+ "protocol_id": 649
+ },
+ "minecraft:red_stained_glass": {
+ "protocol_id": 295
+ },
+ "minecraft:red_stained_glass_pane": {
+ "protocol_id": 471
+ },
+ "minecraft:red_terracotta": {
+ "protocol_id": 455
+ },
+ "minecraft:red_tulip": {
+ "protocol_id": 160
+ },
+ "minecraft:red_wall_banner": {
+ "protocol_id": 550
+ },
+ "minecraft:red_wool": {
+ "protocol_id": 151
+ },
+ "minecraft:redstone_block": {
+ "protocol_id": 432
+ },
+ "minecraft:redstone_lamp": {
+ "protocol_id": 353
+ },
+ "minecraft:redstone_ore": {
+ "protocol_id": 255
+ },
+ "minecraft:redstone_torch": {
+ "protocol_id": 257
+ },
+ "minecraft:redstone_wall_torch": {
+ "protocol_id": 258
+ },
+ "minecraft:redstone_wire": {
+ "protocol_id": 186
+ },
+ "minecraft:reinforced_deepslate": {
+ "protocol_id": 1075
+ },
+ "minecraft:repeater": {
+ "protocol_id": 280
+ },
+ "minecraft:repeating_command_block": {
+ "protocol_id": 625
+ },
+ "minecraft:respawn_anchor": {
+ "protocol_id": 864
+ },
+ "minecraft:rooted_dirt": {
+ "protocol_id": 1042
+ },
+ "minecraft:rose_bush": {
+ "protocol_id": 516
+ },
+ "minecraft:sand": {
+ "protocol_id": 37
+ },
+ "minecraft:sandstone": {
+ "protocol_id": 106
+ },
+ "minecraft:sandstone_slab": {
+ "protocol_id": 569
+ },
+ "minecraft:sandstone_stairs": {
+ "protocol_id": 355
+ },
+ "minecraft:sandstone_wall": {
+ "protocol_id": 790
+ },
+ "minecraft:scaffolding": {
+ "protocol_id": 793
+ },
+ "minecraft:sculk": {
+ "protocol_id": 949
+ },
+ "minecraft:sculk_catalyst": {
+ "protocol_id": 951
+ },
+ "minecraft:sculk_sensor": {
+ "protocol_id": 947
+ },
+ "minecraft:sculk_shrieker": {
+ "protocol_id": 952
+ },
+ "minecraft:sculk_vein": {
+ "protocol_id": 950
+ },
+ "minecraft:sea_lantern": {
+ "protocol_id": 493
+ },
+ "minecraft:sea_pickle": {
+ "protocol_id": 744
+ },
+ "minecraft:seagrass": {
+ "protocol_id": 133
+ },
+ "minecraft:short_grass": {
+ "protocol_id": 130
+ },
+ "minecraft:shroomlight": {
+ "protocol_id": 825
+ },
+ "minecraft:shulker_box": {
+ "protocol_id": 634
+ },
+ "minecraft:skeleton_skull": {
+ "protocol_id": 410
+ },
+ "minecraft:skeleton_wall_skull": {
+ "protocol_id": 411
+ },
+ "minecraft:slime_block": {
+ "protocol_id": 480
+ },
+ "minecraft:small_amethyst_bud": {
+ "protocol_id": 929
+ },
+ "minecraft:small_dripleaf": {
+ "protocol_id": 1040
+ },
+ "minecraft:smithing_table": {
+ "protocol_id": 802
+ },
+ "minecraft:smoker": {
+ "protocol_id": 796
+ },
+ "minecraft:smooth_basalt": {
+ "protocol_id": 1065
+ },
+ "minecraft:smooth_quartz": {
"protocol_id": 583
},
+ "minecraft:smooth_quartz_slab": {
+ "protocol_id": 774
+ },
+ "minecraft:smooth_quartz_stairs": {
+ "protocol_id": 761
+ },
+ "minecraft:smooth_red_sandstone": {
+ "protocol_id": 584
+ },
+ "minecraft:smooth_red_sandstone_slab": {
+ "protocol_id": 768
+ },
+ "minecraft:smooth_red_sandstone_stairs": {
+ "protocol_id": 754
+ },
+ "minecraft:smooth_sandstone": {
+ "protocol_id": 582
+ },
+ "minecraft:smooth_sandstone_slab": {
+ "protocol_id": 773
+ },
+ "minecraft:smooth_sandstone_stairs": {
+ "protocol_id": 760
+ },
+ "minecraft:smooth_stone": {
+ "protocol_id": 581
+ },
+ "minecraft:smooth_stone_slab": {
+ "protocol_id": 568
+ },
+ "minecraft:sniffer_egg": {
+ "protocol_id": 703
+ },
+ "minecraft:snow": {
+ "protocol_id": 260
+ },
+ "minecraft:snow_block": {
+ "protocol_id": 262
+ },
+ "minecraft:soul_campfire": {
+ "protocol_id": 808
+ },
+ "minecraft:soul_fire": {
+ "protocol_id": 181
+ },
+ "minecraft:soul_lantern": {
+ "protocol_id": 806
+ },
+ "minecraft:soul_sand": {
+ "protocol_id": 269
+ },
+ "minecraft:soul_soil": {
+ "protocol_id": 270
+ },
+ "minecraft:soul_torch": {
+ "protocol_id": 273
+ },
+ "minecraft:soul_wall_torch": {
+ "protocol_id": 274
+ },
+ "minecraft:spawner": {
+ "protocol_id": 182
+ },
+ "minecraft:sponge": {
+ "protocol_id": 99
+ },
+ "minecraft:spore_blossom": {
+ "protocol_id": 1032
+ },
+ "minecraft:spruce_button": {
+ "protocol_id": 401
+ },
+ "minecraft:spruce_door": {
+ "protocol_id": 603
+ },
"minecraft:spruce_fence": {
- "protocol_id": 575
+ "protocol_id": 594
},
"minecraft:spruce_fence_gate": {
- "protocol_id": 567
+ "protocol_id": 585
},
"minecraft:spruce_hanging_sign": {
- "protocol_id": 209
+ "protocol_id": 219
},
"minecraft:spruce_leaves": {
- "protocol_id": 83
+ "protocol_id": 89
},
"minecraft:spruce_log": {
- "protocol_id": 47
+ "protocol_id": 50
},
"minecraft:spruce_planks": {
"protocol_id": 14
},
"minecraft:spruce_pressure_plate": {
- "protocol_id": 234
+ "protocol_id": 246
},
"minecraft:spruce_sapling": {
- "protocol_id": 24
+ "protocol_id": 26
},
"minecraft:spruce_sign": {
- "protocol_id": 187
+ "protocol_id": 195
},
"minecraft:spruce_slab": {
- "protocol_id": 540
+ "protocol_id": 557
},
"minecraft:spruce_stairs": {
- "protocol_id": 348
+ "protocol_id": 362
},
"minecraft:spruce_trapdoor": {
- "protocol_id": 285
+ "protocol_id": 298
},
"minecraft:spruce_wall_hanging_sign": {
- "protocol_id": 220
+ "protocol_id": 231
},
"minecraft:spruce_wall_sign": {
- "protocol_id": 200
+ "protocol_id": 209
},
"minecraft:spruce_wood": {
- "protocol_id": 67
+ "protocol_id": 72
},
"minecraft:sticky_piston": {
- "protocol_id": 121
+ "protocol_id": 128
},
"minecraft:stone": {
"protocol_id": 1
},
"minecraft:stone_brick_slab": {
- "protocol_id": 556
+ "protocol_id": 574
},
"minecraft:stone_brick_stairs": {
- "protocol_id": 321
+ "protocol_id": 335
},
"minecraft:stone_brick_wall": {
- "protocol_id": 764
+ "protocol_id": 785
},
"minecraft:stone_bricks": {
- "protocol_id": 293
+ "protocol_id": 307
},
"minecraft:stone_button": {
- "protocol_id": 246
+ "protocol_id": 259
},
"minecraft:stone_pressure_plate": {
- "protocol_id": 231
+ "protocol_id": 243
},
"minecraft:stone_slab": {
- "protocol_id": 549
+ "protocol_id": 567
},
"minecraft:stone_stairs": {
- "protocol_id": 738
+ "protocol_id": 759
},
"minecraft:stonecutter": {
- "protocol_id": 782
+ "protocol_id": 803
},
"minecraft:stripped_acacia_log": {
- "protocol_id": 60
- },
- "minecraft:stripped_acacia_wood": {
- "protocol_id": 78
- },
- "minecraft:stripped_bamboo_block": {
- "protocol_id": 65
- },
- "minecraft:stripped_birch_log": {
- "protocol_id": 58
- },
- "minecraft:stripped_birch_wood": {
- "protocol_id": 76
- },
- "minecraft:stripped_cherry_log": {
- "protocol_id": 61
- },
- "minecraft:stripped_cherry_wood": {
- "protocol_id": 79
- },
- "minecraft:stripped_crimson_hyphae": {
- "protocol_id": 801
- },
- "minecraft:stripped_crimson_stem": {
- "protocol_id": 799
- },
- "minecraft:stripped_dark_oak_log": {
- "protocol_id": 62
- },
- "minecraft:stripped_dark_oak_wood": {
- "protocol_id": 80
- },
- "minecraft:stripped_jungle_log": {
- "protocol_id": 59
- },
- "minecraft:stripped_jungle_wood": {
- "protocol_id": 77
- },
- "minecraft:stripped_mangrove_log": {
"protocol_id": 64
},
- "minecraft:stripped_mangrove_wood": {
+ "minecraft:stripped_acacia_wood": {
+ "protocol_id": 83
+ },
+ "minecraft:stripped_bamboo_block": {
+ "protocol_id": 70
+ },
+ "minecraft:stripped_birch_log": {
+ "protocol_id": 62
+ },
+ "minecraft:stripped_birch_wood": {
"protocol_id": 81
},
- "minecraft:stripped_oak_log": {
+ "minecraft:stripped_cherry_log": {
+ "protocol_id": 65
+ },
+ "minecraft:stripped_cherry_wood": {
+ "protocol_id": 84
+ },
+ "minecraft:stripped_crimson_hyphae": {
+ "protocol_id": 822
+ },
+ "minecraft:stripped_crimson_stem": {
+ "protocol_id": 820
+ },
+ "minecraft:stripped_dark_oak_log": {
+ "protocol_id": 66
+ },
+ "minecraft:stripped_dark_oak_wood": {
+ "protocol_id": 85
+ },
+ "minecraft:stripped_jungle_log": {
"protocol_id": 63
},
+ "minecraft:stripped_jungle_wood": {
+ "protocol_id": 82
+ },
+ "minecraft:stripped_mangrove_log": {
+ "protocol_id": 69
+ },
+ "minecraft:stripped_mangrove_wood": {
+ "protocol_id": 87
+ },
+ "minecraft:stripped_oak_log": {
+ "protocol_id": 68
+ },
"minecraft:stripped_oak_wood": {
- "protocol_id": 74
+ "protocol_id": 79
+ },
+ "minecraft:stripped_pale_oak_log": {
+ "protocol_id": 67
+ },
+ "minecraft:stripped_pale_oak_wood": {
+ "protocol_id": 86
},
"minecraft:stripped_spruce_log": {
- "protocol_id": 57
+ "protocol_id": 61
},
"minecraft:stripped_spruce_wood": {
- "protocol_id": 75
+ "protocol_id": 80
},
"minecraft:stripped_warped_hyphae": {
- "protocol_id": 792
- },
- "minecraft:stripped_warped_stem": {
- "protocol_id": 790
- },
- "minecraft:structure_block": {
- "protocol_id": 832
- },
- "minecraft:structure_void": {
- "protocol_id": 611
- },
- "minecraft:sugar_cane": {
- "protocol_id": 252
- },
- "minecraft:sunflower": {
- "protocol_id": 497
- },
- "minecraft:suspicious_gravel": {
- "protocol_id": 38
- },
- "minecraft:suspicious_sand": {
- "protocol_id": 35
- },
- "minecraft:sweet_berry_bush": {
- "protocol_id": 788
- },
- "minecraft:tall_grass": {
- "protocol_id": 501
- },
- "minecraft:tall_seagrass": {
- "protocol_id": 127
- },
- "minecraft:target": {
- "protocol_id": 835
- },
- "minecraft:terracotta": {
- "protocol_id": 494
- },
- "minecraft:tinted_glass": {
- "protocol_id": 924
- },
- "minecraft:tnt": {
- "protocol_id": 166
- },
- "minecraft:torch": {
- "protocol_id": 171
- },
- "minecraft:torchflower": {
- "protocol_id": 148
- },
- "minecraft:torchflower_crop": {
- "protocol_id": 598
- },
- "minecraft:trapped_chest": {
- "protocol_id": 411
- },
- "minecraft:trial_spawner": {
- "protocol_id": 1057
- },
- "minecraft:tripwire": {
- "protocol_id": 346
- },
- "minecraft:tripwire_hook": {
- "protocol_id": 345
- },
- "minecraft:tube_coral": {
- "protocol_id": 698
- },
- "minecraft:tube_coral_block": {
- "protocol_id": 688
- },
- "minecraft:tube_coral_fan": {
- "protocol_id": 708
- },
- "minecraft:tube_coral_wall_fan": {
- "protocol_id": 718
- },
- "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
- },
- "minecraft:twisting_vines": {
- "protocol_id": 807
- },
- "minecraft:twisting_vines_plant": {
- "protocol_id": 808
- },
- "minecraft:vault": {
- "protocol_id": 1058
- },
- "minecraft:verdant_froglight": {
- "protocol_id": 1051
- },
- "minecraft:vine": {
- "protocol_id": 317
- },
- "minecraft:void_air": {
- "protocol_id": 729
- },
- "minecraft:wall_torch": {
- "protocol_id": 172
- },
- "minecraft:warped_button": {
- "protocol_id": 825
- },
- "minecraft:warped_door": {
- "protocol_id": 827
- },
- "minecraft:warped_fence": {
- "protocol_id": 817
- },
- "minecraft:warped_fence_gate": {
- "protocol_id": 821
- },
- "minecraft:warped_fungus": {
- "protocol_id": 794
- },
- "minecraft:warped_hanging_sign": {
- "protocol_id": 216
- },
- "minecraft:warped_hyphae": {
- "protocol_id": 791
- },
- "minecraft:warped_nylium": {
- "protocol_id": 793
- },
- "minecraft:warped_planks": {
- "protocol_id": 811
- },
- "minecraft:warped_pressure_plate": {
- "protocol_id": 815
- },
- "minecraft:warped_roots": {
- "protocol_id": 796
- },
- "minecraft:warped_sign": {
- "protocol_id": 829
- },
- "minecraft:warped_slab": {
"protocol_id": 813
},
- "minecraft:warped_stairs": {
- "protocol_id": 823
+ "minecraft:stripped_warped_stem": {
+ "protocol_id": 811
},
- "minecraft:warped_stem": {
- "protocol_id": 789
+ "minecraft:structure_block": {
+ "protocol_id": 853
},
- "minecraft:warped_trapdoor": {
- "protocol_id": 819
+ "minecraft:structure_void": {
+ "protocol_id": 632
},
- "minecraft:warped_wall_hanging_sign": {
- "protocol_id": 228
+ "minecraft:sugar_cane": {
+ "protocol_id": 265
},
- "minecraft:warped_wall_sign": {
- "protocol_id": 831
+ "minecraft:sunflower": {
+ "protocol_id": 514
},
- "minecraft:warped_wart_block": {
- "protocol_id": 795
+ "minecraft:suspicious_gravel": {
+ "protocol_id": 41
},
- "minecraft:water": {
- "protocol_id": 32
+ "minecraft:suspicious_sand": {
+ "protocol_id": 38
},
- "minecraft:water_cauldron": {
- "protocol_id": 332
+ "minecraft:sweet_berry_bush": {
+ "protocol_id": 809
},
- "minecraft:waxed_chiseled_copper": {
- "protocol_id": 949
+ "minecraft:tall_grass": {
+ "protocol_id": 518
},
- "minecraft:waxed_copper_block": {
- "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": 965
- },
- "minecraft:waxed_cut_copper_slab": {
- "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": 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": 964
- },
- "minecraft:waxed_exposed_cut_copper_slab": {
- "protocol_id": 972
- },
- "minecraft:waxed_exposed_cut_copper_stairs": {
- "protocol_id": 968
- },
- "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": 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": 951
- },
- "minecraft:weeping_vines": {
- "protocol_id": 805
- },
- "minecraft:weeping_vines_plant": {
- "protocol_id": 806
- },
- "minecraft:wet_sponge": {
- "protocol_id": 93
- },
- "minecraft:wheat": {
- "protocol_id": 183
- },
- "minecraft:white_banner": {
- "protocol_id": 503
- },
- "minecraft:white_bed": {
- "protocol_id": 103
- },
- "minecraft:white_candle": {
- "protocol_id": 870
- },
- "minecraft:white_candle_cake": {
- "protocol_id": 887
- },
- "minecraft:white_carpet": {
- "protocol_id": 478
- },
- "minecraft:white_concrete": {
- "protocol_id": 646
- },
- "minecraft:white_concrete_powder": {
- "protocol_id": 662
- },
- "minecraft:white_glazed_terracotta": {
- "protocol_id": 630
- },
- "minecraft:white_shulker_box": {
- "protocol_id": 614
- },
- "minecraft:white_stained_glass": {
- "protocol_id": 268
- },
- "minecraft:white_stained_glass_pane": {
- "protocol_id": 441
- },
- "minecraft:white_terracotta": {
- "protocol_id": 425
- },
- "minecraft:white_tulip": {
- "protocol_id": 155
- },
- "minecraft:white_wall_banner": {
- "protocol_id": 519
- },
- "minecraft:white_wool": {
- "protocol_id": 130
- },
- "minecraft:wither_rose": {
- "protocol_id": 159
- },
- "minecraft:wither_skeleton_skull": {
- "protocol_id": 396
- },
- "minecraft:wither_skeleton_wall_skull": {
- "protocol_id": 397
- },
- "minecraft:yellow_banner": {
- "protocol_id": 507
- },
- "minecraft:yellow_bed": {
- "protocol_id": 107
- },
- "minecraft:yellow_candle": {
- "protocol_id": 874
- },
- "minecraft:yellow_candle_cake": {
- "protocol_id": 891
- },
- "minecraft:yellow_carpet": {
- "protocol_id": 482
- },
- "minecraft:yellow_concrete": {
- "protocol_id": 650
- },
- "minecraft:yellow_concrete_powder": {
- "protocol_id": 666
- },
- "minecraft:yellow_glazed_terracotta": {
- "protocol_id": 634
- },
- "minecraft:yellow_shulker_box": {
- "protocol_id": 618
- },
- "minecraft:yellow_stained_glass": {
- "protocol_id": 272
- },
- "minecraft:yellow_stained_glass_pane": {
- "protocol_id": 445
- },
- "minecraft:yellow_terracotta": {
- "protocol_id": 429
- },
- "minecraft:yellow_wall_banner": {
- "protocol_id": 523
- },
- "minecraft:yellow_wool": {
+ "minecraft:tall_seagrass": {
"protocol_id": 134
},
+ "minecraft:target": {
+ "protocol_id": 856
+ },
+ "minecraft:terracotta": {
+ "protocol_id": 511
+ },
+ "minecraft:tinted_glass": {
+ "protocol_id": 945
+ },
+ "minecraft:tnt": {
+ "protocol_id": 173
+ },
+ "minecraft:torch": {
+ "protocol_id": 178
+ },
+ "minecraft:torchflower": {
+ "protocol_id": 155
+ },
+ "minecraft:torchflower_crop": {
+ "protocol_id": 619
+ },
+ "minecraft:trapped_chest": {
+ "protocol_id": 427
+ },
+ "minecraft:trial_spawner": {
+ "protocol_id": 1078
+ },
+ "minecraft:tripwire": {
+ "protocol_id": 360
+ },
+ "minecraft:tripwire_hook": {
+ "protocol_id": 359
+ },
+ "minecraft:tube_coral": {
+ "protocol_id": 719
+ },
+ "minecraft:tube_coral_block": {
+ "protocol_id": 709
+ },
+ "minecraft:tube_coral_fan": {
+ "protocol_id": 729
+ },
+ "minecraft:tube_coral_wall_fan": {
+ "protocol_id": 739
+ },
+ "minecraft:tuff": {
+ "protocol_id": 930
+ },
+ "minecraft:tuff_brick_slab": {
+ "protocol_id": 940
+ },
+ "minecraft:tuff_brick_stairs": {
+ "protocol_id": 941
+ },
+ "minecraft:tuff_brick_wall": {
+ "protocol_id": 942
+ },
+ "minecraft:tuff_bricks": {
+ "protocol_id": 939
+ },
+ "minecraft:tuff_slab": {
+ "protocol_id": 931
+ },
+ "minecraft:tuff_stairs": {
+ "protocol_id": 932
+ },
+ "minecraft:tuff_wall": {
+ "protocol_id": 933
+ },
+ "minecraft:turtle_egg": {
+ "protocol_id": 702
+ },
+ "minecraft:twisting_vines": {
+ "protocol_id": 828
+ },
+ "minecraft:twisting_vines_plant": {
+ "protocol_id": 829
+ },
+ "minecraft:vault": {
+ "protocol_id": 1079
+ },
+ "minecraft:verdant_froglight": {
+ "protocol_id": 1072
+ },
+ "minecraft:vine": {
+ "protocol_id": 331
+ },
+ "minecraft:void_air": {
+ "protocol_id": 750
+ },
+ "minecraft:wall_torch": {
+ "protocol_id": 179
+ },
+ "minecraft:warped_button": {
+ "protocol_id": 846
+ },
+ "minecraft:warped_door": {
+ "protocol_id": 848
+ },
+ "minecraft:warped_fence": {
+ "protocol_id": 838
+ },
+ "minecraft:warped_fence_gate": {
+ "protocol_id": 842
+ },
+ "minecraft:warped_fungus": {
+ "protocol_id": 815
+ },
+ "minecraft:warped_hanging_sign": {
+ "protocol_id": 227
+ },
+ "minecraft:warped_hyphae": {
+ "protocol_id": 812
+ },
+ "minecraft:warped_nylium": {
+ "protocol_id": 814
+ },
+ "minecraft:warped_planks": {
+ "protocol_id": 832
+ },
+ "minecraft:warped_pressure_plate": {
+ "protocol_id": 836
+ },
+ "minecraft:warped_roots": {
+ "protocol_id": 817
+ },
+ "minecraft:warped_sign": {
+ "protocol_id": 850
+ },
+ "minecraft:warped_slab": {
+ "protocol_id": 834
+ },
+ "minecraft:warped_stairs": {
+ "protocol_id": 844
+ },
+ "minecraft:warped_stem": {
+ "protocol_id": 810
+ },
+ "minecraft:warped_trapdoor": {
+ "protocol_id": 840
+ },
+ "minecraft:warped_wall_hanging_sign": {
+ "protocol_id": 240
+ },
+ "minecraft:warped_wall_sign": {
+ "protocol_id": 852
+ },
+ "minecraft:warped_wart_block": {
+ "protocol_id": 816
+ },
+ "minecraft:water": {
+ "protocol_id": 35
+ },
+ "minecraft:water_cauldron": {
+ "protocol_id": 346
+ },
+ "minecraft:waxed_chiseled_copper": {
+ "protocol_id": 970
+ },
+ "minecraft:waxed_copper_block": {
+ "protocol_id": 979
+ },
+ "minecraft:waxed_copper_bulb": {
+ "protocol_id": 1023
+ },
+ "minecraft:waxed_copper_door": {
+ "protocol_id": 999
+ },
+ "minecraft:waxed_copper_grate": {
+ "protocol_id": 1015
+ },
+ "minecraft:waxed_copper_trapdoor": {
+ "protocol_id": 1007
+ },
+ "minecraft:waxed_cut_copper": {
+ "protocol_id": 986
+ },
+ "minecraft:waxed_cut_copper_slab": {
+ "protocol_id": 994
+ },
+ "minecraft:waxed_cut_copper_stairs": {
+ "protocol_id": 990
+ },
+ "minecraft:waxed_exposed_chiseled_copper": {
+ "protocol_id": 969
+ },
+ "minecraft:waxed_exposed_copper": {
+ "protocol_id": 981
+ },
+ "minecraft:waxed_exposed_copper_bulb": {
+ "protocol_id": 1024
+ },
+ "minecraft:waxed_exposed_copper_door": {
+ "protocol_id": 1000
+ },
+ "minecraft:waxed_exposed_copper_grate": {
+ "protocol_id": 1016
+ },
+ "minecraft:waxed_exposed_copper_trapdoor": {
+ "protocol_id": 1008
+ },
+ "minecraft:waxed_exposed_cut_copper": {
+ "protocol_id": 985
+ },
+ "minecraft:waxed_exposed_cut_copper_slab": {
+ "protocol_id": 993
+ },
+ "minecraft:waxed_exposed_cut_copper_stairs": {
+ "protocol_id": 989
+ },
+ "minecraft:waxed_oxidized_chiseled_copper": {
+ "protocol_id": 967
+ },
+ "minecraft:waxed_oxidized_copper": {
+ "protocol_id": 982
+ },
+ "minecraft:waxed_oxidized_copper_bulb": {
+ "protocol_id": 1026
+ },
+ "minecraft:waxed_oxidized_copper_door": {
+ "protocol_id": 1001
+ },
+ "minecraft:waxed_oxidized_copper_grate": {
+ "protocol_id": 1018
+ },
+ "minecraft:waxed_oxidized_copper_trapdoor": {
+ "protocol_id": 1009
+ },
+ "minecraft:waxed_oxidized_cut_copper": {
+ "protocol_id": 983
+ },
+ "minecraft:waxed_oxidized_cut_copper_slab": {
+ "protocol_id": 991
+ },
+ "minecraft:waxed_oxidized_cut_copper_stairs": {
+ "protocol_id": 987
+ },
+ "minecraft:waxed_weathered_chiseled_copper": {
+ "protocol_id": 968
+ },
+ "minecraft:waxed_weathered_copper": {
+ "protocol_id": 980
+ },
+ "minecraft:waxed_weathered_copper_bulb": {
+ "protocol_id": 1025
+ },
+ "minecraft:waxed_weathered_copper_door": {
+ "protocol_id": 1002
+ },
+ "minecraft:waxed_weathered_copper_grate": {
+ "protocol_id": 1017
+ },
+ "minecraft:waxed_weathered_copper_trapdoor": {
+ "protocol_id": 1010
+ },
+ "minecraft:waxed_weathered_cut_copper": {
+ "protocol_id": 984
+ },
+ "minecraft:waxed_weathered_cut_copper_slab": {
+ "protocol_id": 992
+ },
+ "minecraft:waxed_weathered_cut_copper_stairs": {
+ "protocol_id": 988
+ },
+ "minecraft:weathered_chiseled_copper": {
+ "protocol_id": 964
+ },
+ "minecraft:weathered_copper": {
+ "protocol_id": 955
+ },
+ "minecraft:weathered_copper_bulb": {
+ "protocol_id": 1021
+ },
+ "minecraft:weathered_copper_door": {
+ "protocol_id": 998
+ },
+ "minecraft:weathered_copper_grate": {
+ "protocol_id": 1013
+ },
+ "minecraft:weathered_copper_trapdoor": {
+ "protocol_id": 1006
+ },
+ "minecraft:weathered_cut_copper": {
+ "protocol_id": 960
+ },
+ "minecraft:weathered_cut_copper_slab": {
+ "protocol_id": 976
+ },
+ "minecraft:weathered_cut_copper_stairs": {
+ "protocol_id": 972
+ },
+ "minecraft:weeping_vines": {
+ "protocol_id": 826
+ },
+ "minecraft:weeping_vines_plant": {
+ "protocol_id": 827
+ },
+ "minecraft:wet_sponge": {
+ "protocol_id": 100
+ },
+ "minecraft:wheat": {
+ "protocol_id": 191
+ },
+ "minecraft:white_banner": {
+ "protocol_id": 520
+ },
+ "minecraft:white_bed": {
+ "protocol_id": 110
+ },
+ "minecraft:white_candle": {
+ "protocol_id": 891
+ },
+ "minecraft:white_candle_cake": {
+ "protocol_id": 908
+ },
+ "minecraft:white_carpet": {
+ "protocol_id": 495
+ },
+ "minecraft:white_concrete": {
+ "protocol_id": 667
+ },
+ "minecraft:white_concrete_powder": {
+ "protocol_id": 683
+ },
+ "minecraft:white_glazed_terracotta": {
+ "protocol_id": 651
+ },
+ "minecraft:white_shulker_box": {
+ "protocol_id": 635
+ },
+ "minecraft:white_stained_glass": {
+ "protocol_id": 281
+ },
+ "minecraft:white_stained_glass_pane": {
+ "protocol_id": 457
+ },
+ "minecraft:white_terracotta": {
+ "protocol_id": 441
+ },
+ "minecraft:white_tulip": {
+ "protocol_id": 162
+ },
+ "minecraft:white_wall_banner": {
+ "protocol_id": 536
+ },
+ "minecraft:white_wool": {
+ "protocol_id": 137
+ },
+ "minecraft:wither_rose": {
+ "protocol_id": 166
+ },
+ "minecraft:wither_skeleton_skull": {
+ "protocol_id": 412
+ },
+ "minecraft:wither_skeleton_wall_skull": {
+ "protocol_id": 413
+ },
+ "minecraft:yellow_banner": {
+ "protocol_id": 524
+ },
+ "minecraft:yellow_bed": {
+ "protocol_id": 114
+ },
+ "minecraft:yellow_candle": {
+ "protocol_id": 895
+ },
+ "minecraft:yellow_candle_cake": {
+ "protocol_id": 912
+ },
+ "minecraft:yellow_carpet": {
+ "protocol_id": 499
+ },
+ "minecraft:yellow_concrete": {
+ "protocol_id": 671
+ },
+ "minecraft:yellow_concrete_powder": {
+ "protocol_id": 687
+ },
+ "minecraft:yellow_glazed_terracotta": {
+ "protocol_id": 655
+ },
+ "minecraft:yellow_shulker_box": {
+ "protocol_id": 639
+ },
+ "minecraft:yellow_stained_glass": {
+ "protocol_id": 285
+ },
+ "minecraft:yellow_stained_glass_pane": {
+ "protocol_id": 461
+ },
+ "minecraft:yellow_terracotta": {
+ "protocol_id": 445
+ },
+ "minecraft:yellow_wall_banner": {
+ "protocol_id": 540
+ },
+ "minecraft:yellow_wool": {
+ "protocol_id": 141
+ },
"minecraft:zombie_head": {
- "protocol_id": 398
+ "protocol_id": 414
},
"minecraft:zombie_wall_head": {
- "protocol_id": 399
+ "protocol_id": 415
}
},
"protocol_id": 4
@@ -3398,61 +3444,64 @@
"minecraft:block_entity_type": {
"entries": {
"minecraft:banner": {
- "protocol_id": 19
+ "protocol_id": 20
},
"minecraft:barrel": {
- "protocol_id": 26
+ "protocol_id": 27
},
"minecraft:beacon": {
- "protocol_id": 14
+ "protocol_id": 15
},
"minecraft:bed": {
- "protocol_id": 24
+ "protocol_id": 25
},
"minecraft:beehive": {
- "protocol_id": 33
+ "protocol_id": 34
},
"minecraft:bell": {
- "protocol_id": 30
+ "protocol_id": 31
},
"minecraft:blast_furnace": {
- "protocol_id": 28
+ "protocol_id": 29
},
"minecraft:brewing_stand": {
- "protocol_id": 11
+ "protocol_id": 12
},
"minecraft:brushable_block": {
- "protocol_id": 39
+ "protocol_id": 40
},
"minecraft:calibrated_sculk_sensor": {
- "protocol_id": 35
+ "protocol_id": 36
},
"minecraft:campfire": {
- "protocol_id": 32
+ "protocol_id": 33
},
"minecraft:chest": {
"protocol_id": 1
},
"minecraft:chiseled_bookshelf": {
- "protocol_id": 38
+ "protocol_id": 39
},
"minecraft:command_block": {
- "protocol_id": 22
+ "protocol_id": 23
},
"minecraft:comparator": {
- "protocol_id": 18
+ "protocol_id": 19
},
"minecraft:conduit": {
- "protocol_id": 25
+ "protocol_id": 26
},
"minecraft:crafter": {
- "protocol_id": 41
+ "protocol_id": 42
+ },
+ "minecraft:creaking_heart": {
+ "protocol_id": 10
},
"minecraft:daylight_detector": {
- "protocol_id": 16
+ "protocol_id": 17
},
"minecraft:decorated_pot": {
- "protocol_id": 40
+ "protocol_id": 41
},
"minecraft:dispenser": {
"protocol_id": 5
@@ -3461,13 +3510,13 @@
"protocol_id": 6
},
"minecraft:enchanting_table": {
- "protocol_id": 12
+ "protocol_id": 13
},
"minecraft:end_gateway": {
- "protocol_id": 21
+ "protocol_id": 22
},
"minecraft:end_portal": {
- "protocol_id": 13
+ "protocol_id": 14
},
"minecraft:ender_chest": {
"protocol_id": 3
@@ -3479,55 +3528,55 @@
"protocol_id": 8
},
"minecraft:hopper": {
- "protocol_id": 17
+ "protocol_id": 18
},
"minecraft:jigsaw": {
- "protocol_id": 31
+ "protocol_id": 32
},
"minecraft:jukebox": {
"protocol_id": 4
},
"minecraft:lectern": {
- "protocol_id": 29
+ "protocol_id": 30
},
"minecraft:mob_spawner": {
"protocol_id": 9
},
"minecraft:piston": {
- "protocol_id": 10
+ "protocol_id": 11
},
"minecraft:sculk_catalyst": {
- "protocol_id": 36
- },
- "minecraft:sculk_sensor": {
- "protocol_id": 34
- },
- "minecraft:sculk_shrieker": {
"protocol_id": 37
},
+ "minecraft:sculk_sensor": {
+ "protocol_id": 35
+ },
+ "minecraft:sculk_shrieker": {
+ "protocol_id": 38
+ },
"minecraft:shulker_box": {
- "protocol_id": 23
+ "protocol_id": 24
},
"minecraft:sign": {
"protocol_id": 7
},
"minecraft:skull": {
- "protocol_id": 15
+ "protocol_id": 16
},
"minecraft:smoker": {
- "protocol_id": 27
+ "protocol_id": 28
},
"minecraft:structure_block": {
- "protocol_id": 20
+ "protocol_id": 21
},
"minecraft:trapped_chest": {
"protocol_id": 2
},
"minecraft:trial_spawner": {
- "protocol_id": 42
+ "protocol_id": 43
},
"minecraft:vault": {
- "protocol_id": 43
+ "protocol_id": 44
}
},
"protocol_id": 9
@@ -3647,6 +3696,9 @@
"minecraft:block": {
"protocol_id": 0
},
+ "minecraft:bonemealable_feature_placer": {
+ "protocol_id": 81
+ },
"minecraft:brewing_stand": {
"protocol_id": 23
},
@@ -3689,140 +3741,140 @@
"minecraft:cartography_table": {
"protocol_id": 36
},
- "minecraft:carved_pumpkin": {
+ "minecraft:cauldron": {
"protocol_id": 37
},
- "minecraft:cauldron": {
+ "minecraft:cave_vines": {
"protocol_id": 38
},
- "minecraft:cave_vines": {
+ "minecraft:cave_vines_plant": {
"protocol_id": 39
},
- "minecraft:cave_vines_plant": {
+ "minecraft:ceiling_hanging_sign": {
"protocol_id": 40
},
- "minecraft:ceiling_hanging_sign": {
+ "minecraft:chain": {
"protocol_id": 41
},
- "minecraft:chain": {
+ "minecraft:cherry_leaves": {
"protocol_id": 42
},
- "minecraft:cherry_leaves": {
+ "minecraft:chest": {
"protocol_id": 43
},
- "minecraft:chest": {
+ "minecraft:chiseled_book_shelf": {
"protocol_id": 44
},
- "minecraft:chiseled_book_shelf": {
+ "minecraft:chorus_flower": {
"protocol_id": 45
},
- "minecraft:chorus_flower": {
+ "minecraft:chorus_plant": {
"protocol_id": 46
},
- "minecraft:chorus_plant": {
+ "minecraft:cocoa": {
"protocol_id": 47
},
- "minecraft:cocoa": {
+ "minecraft:colored_falling": {
"protocol_id": 48
},
- "minecraft:colored_falling": {
+ "minecraft:command": {
"protocol_id": 49
},
- "minecraft:command": {
+ "minecraft:comparator": {
"protocol_id": 50
},
- "minecraft:comparator": {
+ "minecraft:composter": {
"protocol_id": 51
},
- "minecraft:composter": {
+ "minecraft:concrete_powder": {
"protocol_id": 52
},
- "minecraft:concrete_powder": {
+ "minecraft:conduit": {
"protocol_id": 53
},
- "minecraft:conduit": {
+ "minecraft:copper_bulb_block": {
"protocol_id": 54
},
- "minecraft:copper_bulb_block": {
+ "minecraft:coral": {
"protocol_id": 55
},
- "minecraft:coral": {
+ "minecraft:coral_fan": {
"protocol_id": 56
},
- "minecraft:coral_fan": {
+ "minecraft:coral_plant": {
"protocol_id": 57
},
- "minecraft:coral_plant": {
+ "minecraft:coral_wall_fan": {
"protocol_id": 58
},
- "minecraft:coral_wall_fan": {
+ "minecraft:crafter": {
"protocol_id": 59
},
- "minecraft:crafter": {
+ "minecraft:crafting_table": {
"protocol_id": 60
},
- "minecraft:crafting_table": {
- "protocol_id": 61
+ "minecraft:creaking_heart": {
+ "protocol_id": 187
},
"minecraft:crop": {
- "protocol_id": 62
+ "protocol_id": 61
},
"minecraft:crying_obsidian": {
- "protocol_id": 63
+ "protocol_id": 62
},
"minecraft:daylight_detector": {
- "protocol_id": 64
+ "protocol_id": 63
},
"minecraft:dead_bush": {
- "protocol_id": 65
+ "protocol_id": 64
},
"minecraft:decorated_pot": {
- "protocol_id": 66
+ "protocol_id": 65
},
"minecraft:detector_rail": {
- "protocol_id": 67
+ "protocol_id": 66
},
"minecraft:dirt_path": {
- "protocol_id": 68
+ "protocol_id": 67
},
"minecraft:dispenser": {
- "protocol_id": 69
+ "protocol_id": 68
},
"minecraft:door": {
- "protocol_id": 70
+ "protocol_id": 69
},
"minecraft:double_plant": {
- "protocol_id": 71
+ "protocol_id": 70
},
"minecraft:dragon_egg": {
- "protocol_id": 72
+ "protocol_id": 71
},
"minecraft:drop_experience": {
- "protocol_id": 73
+ "protocol_id": 72
},
"minecraft:dropper": {
- "protocol_id": 74
+ "protocol_id": 73
},
"minecraft:enchantment_table": {
- "protocol_id": 75
+ "protocol_id": 74
},
"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:end_portal": {
+ "protocol_id": 77
+ },
+ "minecraft:end_portal_frame": {
+ "protocol_id": 78
+ },
+ "minecraft:end_rod": {
+ "protocol_id": 79
+ },
+ "minecraft:ender_chest": {
+ "protocol_id": 75
+ },
"minecraft:farm": {
- "protocol_id": 81
+ "protocol_id": 80
},
"minecraft:fence": {
"protocol_id": 82
@@ -3869,437 +3921,440 @@
"minecraft:half_transparent": {
"protocol_id": 96
},
- "minecraft:hanging_roots": {
+ "minecraft:hanging_moss": {
"protocol_id": 97
},
- "minecraft:hay": {
+ "minecraft:hanging_roots": {
"protocol_id": 98
},
- "minecraft:heavy_core": {
+ "minecraft:hay": {
"protocol_id": 99
},
- "minecraft:honey": {
+ "minecraft:heavy_core": {
"protocol_id": 100
},
- "minecraft:hopper": {
+ "minecraft:honey": {
"protocol_id": 101
},
- "minecraft:huge_mushroom": {
+ "minecraft:hopper": {
"protocol_id": 102
},
- "minecraft:ice": {
+ "minecraft:huge_mushroom": {
"protocol_id": 103
},
- "minecraft:infested": {
+ "minecraft:ice": {
"protocol_id": 104
},
- "minecraft:infested_rotated_pillar": {
+ "minecraft:infested": {
"protocol_id": 105
},
- "minecraft:iron_bars": {
+ "minecraft:infested_rotated_pillar": {
"protocol_id": 106
},
- "minecraft:jack_o_lantern": {
+ "minecraft:iron_bars": {
"protocol_id": 107
},
- "minecraft:jigsaw": {
+ "minecraft:jack_o_lantern": {
"protocol_id": 108
},
- "minecraft:jukebox": {
+ "minecraft:jigsaw": {
"protocol_id": 109
},
- "minecraft:kelp": {
+ "minecraft:jukebox": {
"protocol_id": 110
},
- "minecraft:kelp_plant": {
+ "minecraft:kelp": {
"protocol_id": 111
},
- "minecraft:ladder": {
+ "minecraft:kelp_plant": {
"protocol_id": 112
},
- "minecraft:lantern": {
+ "minecraft:ladder": {
"protocol_id": 113
},
- "minecraft:lava_cauldron": {
+ "minecraft:lantern": {
"protocol_id": 114
},
- "minecraft:layered_cauldron": {
+ "minecraft:lava_cauldron": {
"protocol_id": 115
},
- "minecraft:leaves": {
+ "minecraft:layered_cauldron": {
"protocol_id": 116
},
- "minecraft:lectern": {
+ "minecraft:leaves": {
"protocol_id": 117
},
- "minecraft:lever": {
+ "minecraft:lectern": {
"protocol_id": 118
},
- "minecraft:light": {
+ "minecraft:lever": {
"protocol_id": 119
},
- "minecraft:lightning_rod": {
+ "minecraft:light": {
"protocol_id": 120
},
- "minecraft:liquid": {
+ "minecraft:lightning_rod": {
"protocol_id": 121
},
- "minecraft:loom": {
+ "minecraft:liquid": {
"protocol_id": 122
},
- "minecraft:magma": {
+ "minecraft:loom": {
"protocol_id": 123
},
- "minecraft:mangrove_leaves": {
+ "minecraft:magma": {
"protocol_id": 124
},
- "minecraft:mangrove_propagule": {
+ "minecraft:mangrove_leaves": {
"protocol_id": 125
},
- "minecraft:mangrove_roots": {
+ "minecraft:mangrove_propagule": {
"protocol_id": 126
},
- "minecraft:moss": {
+ "minecraft:mangrove_roots": {
"protocol_id": 127
},
- "minecraft:moving_piston": {
+ "minecraft:mossy_carpet": {
"protocol_id": 128
},
- "minecraft:mud": {
+ "minecraft:moving_piston": {
"protocol_id": 129
},
- "minecraft:mushroom": {
+ "minecraft:mud": {
"protocol_id": 130
},
- "minecraft:mycelium": {
+ "minecraft:mushroom": {
"protocol_id": 131
},
- "minecraft:nether_portal": {
+ "minecraft:mycelium": {
"protocol_id": 132
},
- "minecraft:nether_sprouts": {
- "protocol_id": 134
- },
- "minecraft:nether_wart": {
- "protocol_id": 135
- },
- "minecraft:netherrack": {
+ "minecraft:nether_portal": {
"protocol_id": 133
},
- "minecraft:note": {
+ "minecraft:nether_sprouts": {
+ "protocol_id": 135
+ },
+ "minecraft:nether_wart": {
"protocol_id": 136
},
- "minecraft:nylium": {
+ "minecraft:netherrack": {
+ "protocol_id": 134
+ },
+ "minecraft:note": {
"protocol_id": 137
},
- "minecraft:observer": {
+ "minecraft:nylium": {
"protocol_id": 138
},
- "minecraft:piglinwallskull": {
+ "minecraft:observer": {
"protocol_id": 139
},
- "minecraft:pink_petals": {
+ "minecraft:piglinwallskull": {
"protocol_id": 140
},
- "minecraft:piston_base": {
+ "minecraft:pink_petals": {
"protocol_id": 141
},
- "minecraft:piston_head": {
+ "minecraft:piston_base": {
"protocol_id": 142
},
- "minecraft:pitcher_crop": {
+ "minecraft:piston_head": {
"protocol_id": 143
},
- "minecraft:player_head": {
+ "minecraft:pitcher_crop": {
"protocol_id": 144
},
- "minecraft:player_wall_head": {
+ "minecraft:player_head": {
"protocol_id": 145
},
- "minecraft:pointed_dripstone": {
+ "minecraft:player_wall_head": {
"protocol_id": 146
},
- "minecraft:potato": {
+ "minecraft:pointed_dripstone": {
"protocol_id": 147
},
- "minecraft:powder_snow": {
+ "minecraft:potato": {
"protocol_id": 148
},
- "minecraft:powered": {
+ "minecraft:powder_snow": {
"protocol_id": 149
},
- "minecraft:powered_rail": {
+ "minecraft:powered": {
"protocol_id": 150
},
- "minecraft:pressure_plate": {
+ "minecraft:powered_rail": {
"protocol_id": 151
},
- "minecraft:pumpkin": {
+ "minecraft:pressure_plate": {
"protocol_id": 152
},
- "minecraft:rail": {
+ "minecraft:pumpkin": {
"protocol_id": 153
},
- "minecraft:redstone_lamp": {
+ "minecraft:rail": {
"protocol_id": 154
},
- "minecraft:redstone_ore": {
+ "minecraft:redstone_lamp": {
"protocol_id": 155
},
- "minecraft:redstone_torch": {
+ "minecraft:redstone_ore": {
"protocol_id": 156
},
- "minecraft:redstone_wall_torch": {
+ "minecraft:redstone_torch": {
"protocol_id": 157
},
- "minecraft:redstone_wire": {
+ "minecraft:redstone_wall_torch": {
"protocol_id": 158
},
- "minecraft:repeater": {
+ "minecraft:redstone_wire": {
"protocol_id": 159
},
- "minecraft:respawn_anchor": {
+ "minecraft:repeater": {
"protocol_id": 160
},
- "minecraft:rooted_dirt": {
+ "minecraft:respawn_anchor": {
"protocol_id": 161
},
- "minecraft:roots": {
+ "minecraft:rooted_dirt": {
"protocol_id": 162
},
- "minecraft:rotated_pillar": {
+ "minecraft:roots": {
"protocol_id": 163
},
- "minecraft:sapling": {
+ "minecraft:rotated_pillar": {
"protocol_id": 164
},
- "minecraft:scaffolding": {
+ "minecraft:sapling": {
"protocol_id": 165
},
- "minecraft:sculk": {
- "protocol_id": 167
- },
- "minecraft:sculk_catalyst": {
+ "minecraft:scaffolding": {
"protocol_id": 166
},
- "minecraft:sculk_sensor": {
+ "minecraft:sculk": {
"protocol_id": 168
},
- "minecraft:sculk_shrieker": {
+ "minecraft:sculk_catalyst": {
+ "protocol_id": 167
+ },
+ "minecraft:sculk_sensor": {
"protocol_id": 169
},
- "minecraft:sculk_vein": {
+ "minecraft:sculk_shrieker": {
"protocol_id": 170
},
- "minecraft:sea_pickle": {
- "protocol_id": 172
- },
- "minecraft:seagrass": {
+ "minecraft:sculk_vein": {
"protocol_id": 171
},
- "minecraft:shulker_box": {
+ "minecraft:sea_pickle": {
"protocol_id": 173
},
- "minecraft:skull": {
+ "minecraft:seagrass": {
+ "protocol_id": 172
+ },
+ "minecraft:shulker_box": {
"protocol_id": 174
},
- "minecraft:slab": {
+ "minecraft:skull": {
"protocol_id": 175
},
- "minecraft:slime": {
+ "minecraft:slab": {
"protocol_id": 176
},
- "minecraft:small_dripleaf": {
+ "minecraft:slime": {
"protocol_id": 177
},
- "minecraft:smithing_table": {
+ "minecraft:small_dripleaf": {
"protocol_id": 178
},
- "minecraft:smoker": {
+ "minecraft:smithing_table": {
"protocol_id": 179
},
- "minecraft:sniffer_egg": {
+ "minecraft:smoker": {
"protocol_id": 180
},
- "minecraft:snow_layer": {
+ "minecraft:sniffer_egg": {
"protocol_id": 181
},
- "minecraft:snowy_dirt": {
+ "minecraft:snow_layer": {
"protocol_id": 182
},
- "minecraft:soul_fire": {
+ "minecraft:snowy_dirt": {
"protocol_id": 183
},
- "minecraft:soul_sand": {
+ "minecraft:soul_fire": {
"protocol_id": 184
},
- "minecraft:spawner": {
+ "minecraft:soul_sand": {
"protocol_id": 185
},
- "minecraft:sponge": {
+ "minecraft:spawner": {
"protocol_id": 186
},
- "minecraft:spore_blossom": {
- "protocol_id": 187
- },
- "minecraft:stained_glass": {
- "protocol_id": 189
- },
- "minecraft:stained_glass_pane": {
+ "minecraft:sponge": {
"protocol_id": 188
},
- "minecraft:stair": {
- "protocol_id": 190
+ "minecraft:spore_blossom": {
+ "protocol_id": 189
},
- "minecraft:standing_sign": {
+ "minecraft:stained_glass": {
"protocol_id": 191
},
- "minecraft:stem": {
+ "minecraft:stained_glass_pane": {
+ "protocol_id": 190
+ },
+ "minecraft:stair": {
"protocol_id": 192
},
- "minecraft:stonecutter": {
+ "minecraft:standing_sign": {
"protocol_id": 193
},
- "minecraft:structure": {
+ "minecraft:stem": {
"protocol_id": 194
},
- "minecraft:structure_void": {
+ "minecraft:stonecutter": {
"protocol_id": 195
},
- "minecraft:sugar_cane": {
+ "minecraft:structure": {
"protocol_id": 196
},
- "minecraft:sweet_berry_bush": {
+ "minecraft:structure_void": {
"protocol_id": 197
},
- "minecraft:tall_flower": {
+ "minecraft:sugar_cane": {
"protocol_id": 198
},
- "minecraft:tall_grass": {
+ "minecraft:sweet_berry_bush": {
"protocol_id": 199
},
- "minecraft:tall_seagrass": {
+ "minecraft:tall_flower": {
"protocol_id": 200
},
- "minecraft:target": {
+ "minecraft:tall_grass": {
"protocol_id": 201
},
- "minecraft:tinted_glass": {
+ "minecraft:tall_seagrass": {
"protocol_id": 202
},
- "minecraft:tnt": {
+ "minecraft:target": {
"protocol_id": 203
},
- "minecraft:torch": {
- "protocol_id": 205
- },
- "minecraft:torchflower_crop": {
+ "minecraft:tinted_glass": {
"protocol_id": 204
},
- "minecraft:transparent": {
- "protocol_id": 206
+ "minecraft:tnt": {
+ "protocol_id": 205
},
- "minecraft:trapdoor": {
+ "minecraft:torch": {
"protocol_id": 207
},
- "minecraft:trapped_chest": {
+ "minecraft:torchflower_crop": {
+ "protocol_id": 206
+ },
+ "minecraft:transparent": {
"protocol_id": 208
},
- "minecraft:trial_spawner": {
+ "minecraft:trapdoor": {
"protocol_id": 209
},
- "minecraft:trip_wire_hook": {
+ "minecraft:trapped_chest": {
"protocol_id": 210
},
- "minecraft:tripwire": {
+ "minecraft:trial_spawner": {
"protocol_id": 211
},
- "minecraft:turtle_egg": {
+ "minecraft:trip_wire_hook": {
"protocol_id": 212
},
- "minecraft:twisting_vines": {
- "protocol_id": 214
- },
- "minecraft:twisting_vines_plant": {
+ "minecraft:tripwire": {
"protocol_id": 213
},
- "minecraft:vault": {
- "protocol_id": 215
+ "minecraft:turtle_egg": {
+ "protocol_id": 214
},
- "minecraft:vine": {
+ "minecraft:twisting_vines": {
"protocol_id": 216
},
- "minecraft:wall": {
- "protocol_id": 222
+ "minecraft:twisting_vines_plant": {
+ "protocol_id": 215
},
- "minecraft:wall_banner": {
+ "minecraft:vault": {
"protocol_id": 217
},
- "minecraft:wall_hanging_sign": {
+ "minecraft:vine": {
"protocol_id": 218
},
- "minecraft:wall_sign": {
- "protocol_id": 219
- },
- "minecraft:wall_skull": {
- "protocol_id": 220
- },
- "minecraft:wall_torch": {
- "protocol_id": 221
- },
- "minecraft:waterlily": {
- "protocol_id": 223
- },
- "minecraft:waterlogged_transparent": {
+ "minecraft:wall": {
"protocol_id": 224
},
- "minecraft:weathering_copper_bulb": {
+ "minecraft:wall_banner": {
+ "protocol_id": 219
+ },
+ "minecraft:wall_hanging_sign": {
+ "protocol_id": 220
+ },
+ "minecraft:wall_sign": {
+ "protocol_id": 221
+ },
+ "minecraft:wall_skull": {
+ "protocol_id": 222
+ },
+ "minecraft:wall_torch": {
+ "protocol_id": 223
+ },
+ "minecraft:waterlily": {
"protocol_id": 225
},
- "minecraft:weathering_copper_door": {
+ "minecraft:waterlogged_transparent": {
"protocol_id": 226
},
- "minecraft:weathering_copper_full": {
+ "minecraft:weathering_copper_bulb": {
"protocol_id": 227
},
- "minecraft:weathering_copper_grate": {
+ "minecraft:weathering_copper_door": {
"protocol_id": 228
},
- "minecraft:weathering_copper_slab": {
+ "minecraft:weathering_copper_full": {
"protocol_id": 229
},
- "minecraft:weathering_copper_stair": {
+ "minecraft:weathering_copper_grate": {
"protocol_id": 230
},
- "minecraft:weathering_copper_trap_door": {
+ "minecraft:weathering_copper_slab": {
"protocol_id": 231
},
- "minecraft:web": {
+ "minecraft:weathering_copper_stair": {
"protocol_id": 232
},
- "minecraft:weeping_vines": {
- "protocol_id": 234
- },
- "minecraft:weeping_vines_plant": {
+ "minecraft:weathering_copper_trap_door": {
"protocol_id": 233
},
- "minecraft:weighted_pressure_plate": {
- "protocol_id": 235
+ "minecraft:web": {
+ "protocol_id": 234
},
- "minecraft:wet_sponge": {
+ "minecraft:weeping_vines": {
"protocol_id": 236
},
- "minecraft:wither_rose": {
+ "minecraft:weeping_vines_plant": {
+ "protocol_id": 235
+ },
+ "minecraft:weighted_pressure_plate": {
"protocol_id": 237
},
- "minecraft:wither_skull": {
+ "minecraft:wet_sponge": {
"protocol_id": 238
},
- "minecraft:wither_wall_skull": {
+ "minecraft:wither_rose": {
"protocol_id": 239
},
- "minecraft:wool_carpet": {
+ "minecraft:wither_skull": {
"protocol_id": 240
+ },
+ "minecraft:wither_wall_skull": {
+ "protocol_id": 241
+ },
+ "minecraft:wool_carpet": {
+ "protocol_id": 242
}
},
"protocol_id": 56
@@ -4551,6 +4606,26 @@
},
"protocol_id": 20
},
+ "minecraft:consume_effect_type": {
+ "entries": {
+ "minecraft:apply_effects": {
+ "protocol_id": 0
+ },
+ "minecraft:clear_all_effects": {
+ "protocol_id": 2
+ },
+ "minecraft:play_sound": {
+ "protocol_id": 4
+ },
+ "minecraft:remove_effects": {
+ "protocol_id": 1
+ },
+ "minecraft:teleport_randomly": {
+ "protocol_id": 3
+ }
+ },
+ "protocol_id": 76
+ },
"minecraft:creative_mode_tab": {
"entries": {
"minecraft:building_blocks": {
@@ -4596,7 +4671,7 @@
"protocol_id": 7
}
},
- "protocol_id": 64
+ "protocol_id": 63
},
"minecraft:custom_stat": {
"entries": {
@@ -4831,52 +4906,55 @@
"minecraft:data_component_type": {
"entries": {
"minecraft:attribute_modifiers": {
- "protocol_id": 12
+ "protocol_id": 13
},
"minecraft:banner_patterns": {
- "protocol_id": 49
+ "protocol_id": 59
},
"minecraft:base_color": {
- "protocol_id": 50
+ "protocol_id": 60
},
"minecraft:bees": {
- "protocol_id": 54
+ "protocol_id": 64
},
"minecraft:block_entity_data": {
- "protocol_id": 39
+ "protocol_id": 49
},
"minecraft:block_state": {
- "protocol_id": 53
+ "protocol_id": 63
},
"minecraft:bucket_entity_data": {
- "protocol_id": 38
+ "protocol_id": 48
},
"minecraft:bundle_contents": {
- "protocol_id": 30
+ "protocol_id": 40
},
"minecraft:can_break": {
- "protocol_id": 11
+ "protocol_id": 12
},
"minecraft:can_place_on": {
- "protocol_id": 10
+ "protocol_id": 11
},
"minecraft:charged_projectiles": {
- "protocol_id": 29
+ "protocol_id": 39
+ },
+ "minecraft:consumable": {
+ "protocol_id": 22
},
"minecraft:container": {
- "protocol_id": 52
+ "protocol_id": 62
},
"minecraft:container_loot": {
- "protocol_id": 56
+ "protocol_id": 66
},
"minecraft:creative_slot_lock": {
- "protocol_id": 17
+ "protocol_id": 18
},
"minecraft:custom_data": {
"protocol_id": 0
},
"minecraft:custom_model_data": {
- "protocol_id": 13
+ "protocol_id": 14
},
"minecraft:custom_name": {
"protocol_id": 5
@@ -4884,71 +4962,86 @@
"minecraft:damage": {
"protocol_id": 3
},
+ "minecraft:damage_resistant": {
+ "protocol_id": 25
+ },
+ "minecraft:death_protection": {
+ "protocol_id": 32
+ },
"minecraft:debug_stick_state": {
- "protocol_id": 36
- },
- "minecraft:dyed_color": {
- "protocol_id": 24
- },
- "minecraft:enchantment_glint_override": {
- "protocol_id": 18
- },
- "minecraft:enchantments": {
- "protocol_id": 9
- },
- "minecraft:entity_data": {
- "protocol_id": 37
- },
- "minecraft:fire_resistant": {
- "protocol_id": 21
- },
- "minecraft:firework_explosion": {
- "protocol_id": 45
- },
- "minecraft:fireworks": {
"protocol_id": 46
},
+ "minecraft:dyed_color": {
+ "protocol_id": 34
+ },
+ "minecraft:enchantable": {
+ "protocol_id": 27
+ },
+ "minecraft:enchantment_glint_override": {
+ "protocol_id": 19
+ },
+ "minecraft:enchantments": {
+ "protocol_id": 10
+ },
+ "minecraft:entity_data": {
+ "protocol_id": 47
+ },
+ "minecraft:equippable": {
+ "protocol_id": 28
+ },
+ "minecraft:firework_explosion": {
+ "protocol_id": 55
+ },
+ "minecraft:fireworks": {
+ "protocol_id": 56
+ },
"minecraft:food": {
- "protocol_id": 20
+ "protocol_id": 21
+ },
+ "minecraft:glider": {
+ "protocol_id": 30
},
"minecraft:hide_additional_tooltip": {
- "protocol_id": 14
- },
- "minecraft:hide_tooltip": {
"protocol_id": 15
},
+ "minecraft:hide_tooltip": {
+ "protocol_id": 16
+ },
"minecraft:instrument": {
- "protocol_id": 40
+ "protocol_id": 50
},
"minecraft:intangible_projectile": {
- "protocol_id": 19
+ "protocol_id": 20
+ },
+ "minecraft:item_model": {
+ "protocol_id": 7
},
"minecraft:item_name": {
"protocol_id": 6
},
"minecraft:jukebox_playable": {
- "protocol_id": 42
+ "protocol_id": 52
},
"minecraft:lock": {
- "protocol_id": 55
+ "protocol_id": 65
},
"minecraft:lodestone_tracker": {
- "protocol_id": 44
+ "protocol_id": 54
},
"minecraft:lore": {
- "protocol_id": 7
+ "protocol_id": 8
},
"minecraft:map_color": {
- "protocol_id": 25
+ "protocol_id": 35
},
"minecraft:map_decorations": {
- "protocol_id": 27
+ "protocol_id": 37
},
"minecraft:map_id": {
- "protocol_id": 26
+ "protocol_id": 36
},
"minecraft:map_post_processing": {
- "protocol_id": 28
+ "protocol_id": 38
},
"minecraft:max_damage": {
"protocol_id": 2
@@ -4957,52 +5050,64 @@
"protocol_id": 1
},
"minecraft:note_block_sound": {
- "protocol_id": 48
+ "protocol_id": 58
},
"minecraft:ominous_bottle_amplifier": {
- "protocol_id": 41
- },
- "minecraft:pot_decorations": {
"protocol_id": 51
},
+ "minecraft:pot_decorations": {
+ "protocol_id": 61
+ },
"minecraft:potion_contents": {
- "protocol_id": 31
+ "protocol_id": 41
},
"minecraft:profile": {
- "protocol_id": 47
+ "protocol_id": 57
},
"minecraft:rarity": {
- "protocol_id": 8
+ "protocol_id": 9
},
"minecraft:recipes": {
- "protocol_id": 43
+ "protocol_id": 53
},
"minecraft:repair_cost": {
- "protocol_id": 16
+ "protocol_id": 17
+ },
+ "minecraft:repairable": {
+ "protocol_id": 29
},
"minecraft:stored_enchantments": {
- "protocol_id": 23
+ "protocol_id": 33
},
"minecraft:suspicious_stew_effects": {
- "protocol_id": 32
+ "protocol_id": 42
},
"minecraft:tool": {
- "protocol_id": 22
+ "protocol_id": 26
+ },
+ "minecraft:tooltip_style": {
+ "protocol_id": 31
},
"minecraft:trim": {
- "protocol_id": 35
+ "protocol_id": 45
},
"minecraft:unbreakable": {
"protocol_id": 4
},
+ "minecraft:use_cooldown": {
+ "protocol_id": 24
+ },
+ "minecraft:use_remainder": {
+ "protocol_id": 23
+ },
"minecraft:writable_book_content": {
- "protocol_id": 33
+ "protocol_id": 43
},
"minecraft:written_book_content": {
- "protocol_id": 34
+ "protocol_id": 44
}
},
- "protocol_id": 68
+ "protocol_id": 66
},
"minecraft:decorated_pot_pattern": {
"entries": {
@@ -5079,7 +5184,7 @@
"protocol_id": 22
}
},
- "protocol_id": 63
+ "protocol_id": 62
},
"minecraft:enchantment_effect_component_type": {
"entries": {
@@ -5174,7 +5279,7 @@
"protocol_id": 29
}
},
- "protocol_id": 72
+ "protocol_id": 70
},
"minecraft:enchantment_entity_effect_type": {
"entries": {
@@ -5184,10 +5289,10 @@
"minecraft:apply_mob_effect": {
"protocol_id": 1
},
- "minecraft:damage_entity": {
+ "minecraft:change_item_damage": {
"protocol_id": 2
},
- "minecraft:damage_item": {
+ "minecraft:damage_entity": {
"protocol_id": 3
},
"minecraft:explode": {
@@ -5218,7 +5323,7 @@
"protocol_id": 12
}
},
- "protocol_id": 74
+ "protocol_id": 72
},
"minecraft:enchantment_level_based_value_type": {
"entries": {
@@ -5238,7 +5343,7 @@
"protocol_id": 4
}
},
- "protocol_id": 73
+ "protocol_id": 71
},
"minecraft:enchantment_location_based_effect_type": {
"entries": {
@@ -5251,10 +5356,10 @@
"minecraft:attribute": {
"protocol_id": 2
},
- "minecraft:damage_entity": {
+ "minecraft:change_item_damage": {
"protocol_id": 3
},
- "minecraft:damage_item": {
+ "minecraft:damage_entity": {
"protocol_id": 4
},
"minecraft:explode": {
@@ -5285,7 +5390,7 @@
"protocol_id": 13
}
},
- "protocol_id": 75
+ "protocol_id": 73
},
"minecraft:enchantment_provider_type": {
"entries": {
@@ -5299,7 +5404,7 @@
"protocol_id": 2
}
},
- "protocol_id": 77
+ "protocol_id": 75
},
"minecraft:enchantment_value_effect_type": {
"entries": {
@@ -5319,18 +5424,15 @@
"protocol_id": 4
}
},
- "protocol_id": 76
+ "protocol_id": 74
},
"minecraft:entity_sub_predicate_type": {
"entries": {
"minecraft:axolotl": {
- "protocol_id": 5
- },
- "minecraft:boat": {
"protocol_id": 6
},
"minecraft:cat": {
- "protocol_id": 16
+ "protocol_id": 17
},
"minecraft:fishing_hook": {
"protocol_id": 1
@@ -5339,7 +5441,7 @@
"protocol_id": 7
},
"minecraft:frog": {
- "protocol_id": 17
+ "protocol_id": 18
},
"minecraft:horse": {
"protocol_id": 10
@@ -5354,7 +5456,7 @@
"protocol_id": 8
},
"minecraft:painting": {
- "protocol_id": 15
+ "protocol_id": 16
},
"minecraft:parrot": {
"protocol_id": 13
@@ -5368,413 +5470,479 @@
"minecraft:raider": {
"protocol_id": 4
},
+ "minecraft:salmon": {
+ "protocol_id": 14
+ },
+ "minecraft:sheep": {
+ "protocol_id": 5
+ },
"minecraft:slime": {
"protocol_id": 3
},
"minecraft:tropical_fish": {
- "protocol_id": 14
+ "protocol_id": 15
},
"minecraft:villager": {
"protocol_id": 12
},
"minecraft:wolf": {
- "protocol_id": 18
+ "protocol_id": 19
}
},
- "protocol_id": 69
+ "protocol_id": 67
},
"minecraft:entity_type": {
"default": "minecraft:pig",
"entries": {
- "minecraft:allay": {
+ "minecraft:acacia_boat": {
"protocol_id": 0
},
- "minecraft:area_effect_cloud": {
+ "minecraft:acacia_chest_boat": {
"protocol_id": 1
},
- "minecraft:armadillo": {
+ "minecraft:allay": {
"protocol_id": 2
},
- "minecraft:armor_stand": {
+ "minecraft:area_effect_cloud": {
"protocol_id": 3
},
- "minecraft:arrow": {
+ "minecraft:armadillo": {
"protocol_id": 4
},
- "minecraft:axolotl": {
+ "minecraft:armor_stand": {
"protocol_id": 5
},
- "minecraft:bat": {
+ "minecraft:arrow": {
"protocol_id": 6
},
- "minecraft:bee": {
+ "minecraft:axolotl": {
"protocol_id": 7
},
- "minecraft:blaze": {
+ "minecraft:bamboo_chest_raft": {
"protocol_id": 8
},
- "minecraft:block_display": {
+ "minecraft:bamboo_raft": {
"protocol_id": 9
},
- "minecraft:boat": {
+ "minecraft:bat": {
"protocol_id": 10
},
- "minecraft:bogged": {
+ "minecraft:bee": {
"protocol_id": 11
},
- "minecraft:breeze": {
+ "minecraft:birch_boat": {
"protocol_id": 12
},
- "minecraft:breeze_wind_charge": {
+ "minecraft:birch_chest_boat": {
"protocol_id": 13
},
- "minecraft:camel": {
+ "minecraft:blaze": {
"protocol_id": 14
},
- "minecraft:cat": {
+ "minecraft:block_display": {
"protocol_id": 15
},
- "minecraft:cave_spider": {
+ "minecraft:bogged": {
"protocol_id": 16
},
- "minecraft:chest_boat": {
+ "minecraft:breeze": {
"protocol_id": 17
},
- "minecraft:chest_minecart": {
+ "minecraft:breeze_wind_charge": {
"protocol_id": 18
},
- "minecraft:chicken": {
+ "minecraft:camel": {
"protocol_id": 19
},
- "minecraft:cod": {
+ "minecraft:cat": {
"protocol_id": 20
},
- "minecraft:command_block_minecart": {
+ "minecraft:cave_spider": {
"protocol_id": 21
},
- "minecraft:cow": {
+ "minecraft:cherry_boat": {
"protocol_id": 22
},
- "minecraft:creeper": {
+ "minecraft:cherry_chest_boat": {
"protocol_id": 23
},
- "minecraft:dolphin": {
+ "minecraft:chest_minecart": {
"protocol_id": 24
},
- "minecraft:donkey": {
+ "minecraft:chicken": {
"protocol_id": 25
},
- "minecraft:dragon_fireball": {
+ "minecraft:cod": {
"protocol_id": 26
},
- "minecraft:drowned": {
+ "minecraft:command_block_minecart": {
"protocol_id": 27
},
- "minecraft:egg": {
+ "minecraft:cow": {
"protocol_id": 28
},
- "minecraft:elder_guardian": {
+ "minecraft:creaking": {
"protocol_id": 29
},
- "minecraft:end_crystal": {
+ "minecraft:creaking_transient": {
"protocol_id": 30
},
- "minecraft:ender_dragon": {
+ "minecraft:creeper": {
"protocol_id": 31
},
- "minecraft:ender_pearl": {
+ "minecraft:dark_oak_boat": {
"protocol_id": 32
},
- "minecraft:enderman": {
+ "minecraft:dark_oak_chest_boat": {
"protocol_id": 33
},
- "minecraft:endermite": {
+ "minecraft:dolphin": {
"protocol_id": 34
},
- "minecraft:evoker": {
+ "minecraft:donkey": {
"protocol_id": 35
},
- "minecraft:evoker_fangs": {
+ "minecraft:dragon_fireball": {
"protocol_id": 36
},
- "minecraft:experience_bottle": {
+ "minecraft:drowned": {
"protocol_id": 37
},
- "minecraft:experience_orb": {
+ "minecraft:egg": {
"protocol_id": 38
},
- "minecraft:eye_of_ender": {
+ "minecraft:elder_guardian": {
"protocol_id": 39
},
- "minecraft:falling_block": {
- "protocol_id": 40
- },
- "minecraft:fireball": {
- "protocol_id": 62
- },
- "minecraft:firework_rocket": {
- "protocol_id": 41
- },
- "minecraft:fishing_bobber": {
- "protocol_id": 129
- },
- "minecraft:fox": {
- "protocol_id": 42
- },
- "minecraft:frog": {
- "protocol_id": 43
- },
- "minecraft:furnace_minecart": {
+ "minecraft:end_crystal": {
"protocol_id": 44
},
- "minecraft:ghast": {
+ "minecraft:ender_dragon": {
+ "protocol_id": 42
+ },
+ "minecraft:ender_pearl": {
+ "protocol_id": 43
+ },
+ "minecraft:enderman": {
+ "protocol_id": 40
+ },
+ "minecraft:endermite": {
+ "protocol_id": 41
+ },
+ "minecraft:evoker": {
"protocol_id": 45
},
- "minecraft:giant": {
+ "minecraft:evoker_fangs": {
"protocol_id": 46
},
- "minecraft:glow_item_frame": {
+ "minecraft:experience_bottle": {
"protocol_id": 47
},
- "minecraft:glow_squid": {
+ "minecraft:experience_orb": {
"protocol_id": 48
},
- "minecraft:goat": {
+ "minecraft:eye_of_ender": {
"protocol_id": 49
},
- "minecraft:guardian": {
+ "minecraft:falling_block": {
"protocol_id": 50
},
- "minecraft:hoglin": {
+ "minecraft:fireball": {
"protocol_id": 51
},
- "minecraft:hopper_minecart": {
+ "minecraft:firework_rocket": {
"protocol_id": 52
},
- "minecraft:horse": {
+ "minecraft:fishing_bobber": {
+ "protocol_id": 149
+ },
+ "minecraft:fox": {
"protocol_id": 53
},
- "minecraft:husk": {
+ "minecraft:frog": {
"protocol_id": 54
},
- "minecraft:illusioner": {
+ "minecraft:furnace_minecart": {
"protocol_id": 55
},
- "minecraft:interaction": {
+ "minecraft:ghast": {
"protocol_id": 56
},
- "minecraft:iron_golem": {
+ "minecraft:giant": {
"protocol_id": 57
},
- "minecraft:item": {
+ "minecraft:glow_item_frame": {
"protocol_id": 58
},
- "minecraft:item_display": {
+ "minecraft:glow_squid": {
"protocol_id": 59
},
- "minecraft:item_frame": {
+ "minecraft:goat": {
"protocol_id": 60
},
- "minecraft:leash_knot": {
- "protocol_id": 63
- },
- "minecraft:lightning_bolt": {
- "protocol_id": 64
- },
- "minecraft:llama": {
- "protocol_id": 65
- },
- "minecraft:llama_spit": {
- "protocol_id": 66
- },
- "minecraft:magma_cube": {
- "protocol_id": 67
- },
- "minecraft:marker": {
- "protocol_id": 68
- },
- "minecraft:minecart": {
- "protocol_id": 69
- },
- "minecraft:mooshroom": {
- "protocol_id": 70
- },
- "minecraft:mule": {
- "protocol_id": 71
- },
- "minecraft:ocelot": {
- "protocol_id": 72
- },
- "minecraft:ominous_item_spawner": {
+ "minecraft:guardian": {
"protocol_id": 61
},
- "minecraft:painting": {
+ "minecraft:hoglin": {
+ "protocol_id": 62
+ },
+ "minecraft:hopper_minecart": {
+ "protocol_id": 63
+ },
+ "minecraft:horse": {
+ "protocol_id": 64
+ },
+ "minecraft:husk": {
+ "protocol_id": 65
+ },
+ "minecraft:illusioner": {
+ "protocol_id": 66
+ },
+ "minecraft:interaction": {
+ "protocol_id": 67
+ },
+ "minecraft:iron_golem": {
+ "protocol_id": 68
+ },
+ "minecraft:item": {
+ "protocol_id": 69
+ },
+ "minecraft:item_display": {
+ "protocol_id": 70
+ },
+ "minecraft:item_frame": {
+ "protocol_id": 71
+ },
+ "minecraft:jungle_boat": {
+ "protocol_id": 72
+ },
+ "minecraft:jungle_chest_boat": {
"protocol_id": 73
},
- "minecraft:panda": {
+ "minecraft:leash_knot": {
"protocol_id": 74
},
- "minecraft:parrot": {
+ "minecraft:lightning_bolt": {
"protocol_id": 75
},
- "minecraft:phantom": {
+ "minecraft:llama": {
"protocol_id": 76
},
- "minecraft:pig": {
+ "minecraft:llama_spit": {
"protocol_id": 77
},
- "minecraft:piglin": {
+ "minecraft:magma_cube": {
"protocol_id": 78
},
- "minecraft:piglin_brute": {
+ "minecraft:mangrove_boat": {
"protocol_id": 79
},
- "minecraft:pillager": {
+ "minecraft:mangrove_chest_boat": {
"protocol_id": 80
},
- "minecraft:player": {
- "protocol_id": 128
- },
- "minecraft:polar_bear": {
+ "minecraft:marker": {
"protocol_id": 81
},
- "minecraft:potion": {
+ "minecraft:minecart": {
"protocol_id": 82
},
- "minecraft:pufferfish": {
+ "minecraft:mooshroom": {
"protocol_id": 83
},
- "minecraft:rabbit": {
+ "minecraft:mule": {
"protocol_id": 84
},
- "minecraft:ravager": {
+ "minecraft:oak_boat": {
"protocol_id": 85
},
- "minecraft:salmon": {
+ "minecraft:oak_chest_boat": {
"protocol_id": 86
},
- "minecraft:sheep": {
+ "minecraft:ocelot": {
"protocol_id": 87
},
- "minecraft:shulker": {
+ "minecraft:ominous_item_spawner": {
"protocol_id": 88
},
- "minecraft:shulker_bullet": {
+ "minecraft:painting": {
"protocol_id": 89
},
- "minecraft:silverfish": {
+ "minecraft:pale_oak_boat": {
"protocol_id": 90
},
- "minecraft:skeleton": {
+ "minecraft:pale_oak_chest_boat": {
"protocol_id": 91
},
- "minecraft:skeleton_horse": {
+ "minecraft:panda": {
"protocol_id": 92
},
- "minecraft:slime": {
+ "minecraft:parrot": {
"protocol_id": 93
},
- "minecraft:small_fireball": {
+ "minecraft:phantom": {
"protocol_id": 94
},
- "minecraft:sniffer": {
+ "minecraft:pig": {
"protocol_id": 95
},
- "minecraft:snow_golem": {
+ "minecraft:piglin": {
"protocol_id": 96
},
- "minecraft:snowball": {
+ "minecraft:piglin_brute": {
"protocol_id": 97
},
- "minecraft:spawner_minecart": {
+ "minecraft:pillager": {
"protocol_id": 98
},
- "minecraft:spectral_arrow": {
+ "minecraft:player": {
+ "protocol_id": 148
+ },
+ "minecraft:polar_bear": {
"protocol_id": 99
},
- "minecraft:spider": {
+ "minecraft:potion": {
"protocol_id": 100
},
- "minecraft:squid": {
+ "minecraft:pufferfish": {
"protocol_id": 101
},
- "minecraft:stray": {
+ "minecraft:rabbit": {
"protocol_id": 102
},
- "minecraft:strider": {
+ "minecraft:ravager": {
"protocol_id": 103
},
- "minecraft:tadpole": {
+ "minecraft:salmon": {
"protocol_id": 104
},
- "minecraft:text_display": {
+ "minecraft:sheep": {
"protocol_id": 105
},
- "minecraft:tnt": {
+ "minecraft:shulker": {
"protocol_id": 106
},
- "minecraft:tnt_minecart": {
+ "minecraft:shulker_bullet": {
"protocol_id": 107
},
- "minecraft:trader_llama": {
+ "minecraft:silverfish": {
"protocol_id": 108
},
- "minecraft:trident": {
+ "minecraft:skeleton": {
"protocol_id": 109
},
- "minecraft:tropical_fish": {
+ "minecraft:skeleton_horse": {
"protocol_id": 110
},
- "minecraft:turtle": {
+ "minecraft:slime": {
"protocol_id": 111
},
- "minecraft:vex": {
+ "minecraft:small_fireball": {
"protocol_id": 112
},
- "minecraft:villager": {
+ "minecraft:sniffer": {
"protocol_id": 113
},
- "minecraft:vindicator": {
- "protocol_id": 114
- },
- "minecraft:wandering_trader": {
+ "minecraft:snow_golem": {
"protocol_id": 115
},
- "minecraft:warden": {
+ "minecraft:snowball": {
+ "protocol_id": 114
+ },
+ "minecraft:spawner_minecart": {
"protocol_id": 116
},
- "minecraft:wind_charge": {
+ "minecraft:spectral_arrow": {
"protocol_id": 117
},
- "minecraft:witch": {
+ "minecraft:spider": {
"protocol_id": 118
},
- "minecraft:wither": {
+ "minecraft:spruce_boat": {
"protocol_id": 119
},
- "minecraft:wither_skeleton": {
+ "minecraft:spruce_chest_boat": {
"protocol_id": 120
},
- "minecraft:wither_skull": {
+ "minecraft:squid": {
"protocol_id": 121
},
- "minecraft:wolf": {
+ "minecraft:stray": {
"protocol_id": 122
},
- "minecraft:zoglin": {
+ "minecraft:strider": {
"protocol_id": 123
},
- "minecraft:zombie": {
+ "minecraft:tadpole": {
"protocol_id": 124
},
- "minecraft:zombie_horse": {
+ "minecraft:text_display": {
"protocol_id": 125
},
- "minecraft:zombie_villager": {
+ "minecraft:tnt": {
"protocol_id": 126
},
- "minecraft:zombified_piglin": {
+ "minecraft:tnt_minecart": {
"protocol_id": 127
+ },
+ "minecraft:trader_llama": {
+ "protocol_id": 128
+ },
+ "minecraft:trident": {
+ "protocol_id": 129
+ },
+ "minecraft:tropical_fish": {
+ "protocol_id": 130
+ },
+ "minecraft:turtle": {
+ "protocol_id": 131
+ },
+ "minecraft:vex": {
+ "protocol_id": 132
+ },
+ "minecraft:villager": {
+ "protocol_id": 133
+ },
+ "minecraft:vindicator": {
+ "protocol_id": 134
+ },
+ "minecraft:wandering_trader": {
+ "protocol_id": 135
+ },
+ "minecraft:warden": {
+ "protocol_id": 136
+ },
+ "minecraft:wind_charge": {
+ "protocol_id": 137
+ },
+ "minecraft:witch": {
+ "protocol_id": 138
+ },
+ "minecraft:wither": {
+ "protocol_id": 139
+ },
+ "minecraft:wither_skeleton": {
+ "protocol_id": 140
+ },
+ "minecraft:wither_skull": {
+ "protocol_id": 141
+ },
+ "minecraft:wolf": {
+ "protocol_id": 142
+ },
+ "minecraft:zoglin": {
+ "protocol_id": 143
+ },
+ "minecraft:zombie": {
+ "protocol_id": 144
+ },
+ "minecraft:zombie_horse": {
+ "protocol_id": 145
+ },
+ "minecraft:zombie_villager": {
+ "protocol_id": 146
+ },
+ "minecraft:zombified_piglin": {
+ "protocol_id": 147
}
},
"protocol_id": 5
@@ -6040,35 +6208,6 @@
},
"protocol_id": 37
},
- "minecraft:instrument": {
- "entries": {
- "minecraft:admire_goat_horn": {
- "protocol_id": 4
- },
- "minecraft:call_goat_horn": {
- "protocol_id": 5
- },
- "minecraft:dream_goat_horn": {
- "protocol_id": 7
- },
- "minecraft:feel_goat_horn": {
- "protocol_id": 3
- },
- "minecraft:ponder_goat_horn": {
- "protocol_id": 0
- },
- "minecraft:seek_goat_horn": {
- "protocol_id": 2
- },
- "minecraft:sing_goat_horn": {
- "protocol_id": 1
- },
- "minecraft:yearn_goat_horn": {
- "protocol_id": 6
- }
- },
- "protocol_id": 62
- },
"minecraft:int_provider_type": {
"entries": {
"minecraft:biased_to_bottom": {
@@ -6096,688 +6235,700 @@
"default": "minecraft:air",
"entries": {
"minecraft:acacia_boat": {
- "protocol_id": 782
+ "protocol_id": 802
},
"minecraft:acacia_button": {
- "protocol_id": 688
+ "protocol_id": 702
},
"minecraft:acacia_chest_boat": {
- "protocol_id": 783
+ "protocol_id": 803
},
"minecraft:acacia_door": {
- "protocol_id": 715
+ "protocol_id": 731
},
"minecraft:acacia_fence": {
- "protocol_id": 315
+ "protocol_id": 327
},
"minecraft:acacia_fence_gate": {
- "protocol_id": 754
+ "protocol_id": 772
},
"minecraft:acacia_hanging_sign": {
- "protocol_id": 901
+ "protocol_id": 924
},
"minecraft:acacia_leaves": {
- "protocol_id": 180
+ "protocol_id": 186
},
"minecraft:acacia_log": {
- "protocol_id": 136
+ "protocol_id": 138
},
"minecraft:acacia_planks": {
"protocol_id": 40
},
"minecraft:acacia_pressure_plate": {
- "protocol_id": 703
+ "protocol_id": 718
},
"minecraft:acacia_sapling": {
- "protocol_id": 52
+ "protocol_id": 53
},
"minecraft:acacia_sign": {
- "protocol_id": 890
+ "protocol_id": 912
},
"minecraft:acacia_slab": {
- "protocol_id": 256
+ "protocol_id": 266
},
"minecraft:acacia_stairs": {
- "protocol_id": 387
+ "protocol_id": 400
},
"minecraft:acacia_trapdoor": {
- "protocol_id": 735
+ "protocol_id": 752
},
"minecraft:acacia_wood": {
- "protocol_id": 170
+ "protocol_id": 175
},
"minecraft:activator_rail": {
- "protocol_id": 764
+ "protocol_id": 783
},
"minecraft:air": {
"protocol_id": 0
},
"minecraft:allay_spawn_egg": {
- "protocol_id": 1009
+ "protocol_id": 1049
},
"minecraft:allium": {
- "protocol_id": 221
+ "protocol_id": 228
},
"minecraft:amethyst_block": {
- "protocol_id": 86
+ "protocol_id": 88
},
"minecraft:amethyst_cluster": {
- "protocol_id": 1261
+ "protocol_id": 1304
},
"minecraft:amethyst_shard": {
- "protocol_id": 809
+ "protocol_id": 831
},
"minecraft:ancient_debris": {
- "protocol_id": 80
+ "protocol_id": 82
},
"minecraft:andesite": {
"protocol_id": 6
},
"minecraft:andesite_slab": {
- "protocol_id": 648
+ "protocol_id": 662
},
"minecraft:andesite_stairs": {
- "protocol_id": 631
+ "protocol_id": 645
},
"minecraft:andesite_wall": {
- "protocol_id": 407
+ "protocol_id": 421
},
"minecraft:angler_pottery_sherd": {
- "protocol_id": 1288
+ "protocol_id": 1331
},
"minecraft:anvil": {
- "protocol_id": 419
+ "protocol_id": 433
},
"minecraft:apple": {
- "protocol_id": 800
+ "protocol_id": 822
},
"minecraft:archer_pottery_sherd": {
- "protocol_id": 1289
+ "protocol_id": 1332
},
"minecraft:armadillo_scute": {
- "protocol_id": 796
+ "protocol_id": 818
},
"minecraft:armadillo_spawn_egg": {
- "protocol_id": 1008
+ "protocol_id": 1048
},
"minecraft:armor_stand": {
- "protocol_id": 1123
+ "protocol_id": 1165
},
"minecraft:arms_up_pottery_sherd": {
- "protocol_id": 1290
+ "protocol_id": 1333
},
"minecraft:arrow": {
- "protocol_id": 802
+ "protocol_id": 824
},
"minecraft:axolotl_bucket": {
- "protocol_id": 919
+ "protocol_id": 943
},
"minecraft:axolotl_spawn_egg": {
- "protocol_id": 1010
+ "protocol_id": 1050
},
"minecraft:azalea": {
- "protocol_id": 197
+ "protocol_id": 204
},
"minecraft:azalea_leaves": {
- "protocol_id": 184
+ "protocol_id": 191
},
"minecraft:azure_bluet": {
- "protocol_id": 222
+ "protocol_id": 229
},
"minecraft:baked_potato": {
- "protocol_id": 1099
+ "protocol_id": 1141
},
"minecraft:bamboo": {
- "protocol_id": 251
- },
- "minecraft:bamboo_block": {
- "protocol_id": 144
- },
- "minecraft:bamboo_button": {
- "protocol_id": 692
- },
- "minecraft:bamboo_chest_raft": {
- "protocol_id": 791
- },
- "minecraft:bamboo_door": {
- "protocol_id": 719
- },
- "minecraft:bamboo_fence": {
- "protocol_id": 319
- },
- "minecraft:bamboo_fence_gate": {
- "protocol_id": 758
- },
- "minecraft:bamboo_hanging_sign": {
- "protocol_id": 905
- },
- "minecraft:bamboo_mosaic": {
- "protocol_id": 47
- },
- "minecraft:bamboo_mosaic_slab": {
"protocol_id": 261
},
- "minecraft:bamboo_mosaic_stairs": {
- "protocol_id": 392
+ "minecraft:bamboo_block": {
+ "protocol_id": 147
},
- "minecraft:bamboo_planks": {
- "protocol_id": 44
- },
- "minecraft:bamboo_pressure_plate": {
+ "minecraft:bamboo_button": {
"protocol_id": 707
},
+ "minecraft:bamboo_chest_raft": {
+ "protocol_id": 813
+ },
+ "minecraft:bamboo_door": {
+ "protocol_id": 736
+ },
+ "minecraft:bamboo_fence": {
+ "protocol_id": 332
+ },
+ "minecraft:bamboo_fence_gate": {
+ "protocol_id": 777
+ },
+ "minecraft:bamboo_hanging_sign": {
+ "protocol_id": 929
+ },
+ "minecraft:bamboo_mosaic": {
+ "protocol_id": 48
+ },
+ "minecraft:bamboo_mosaic_slab": {
+ "protocol_id": 272
+ },
+ "minecraft:bamboo_mosaic_stairs": {
+ "protocol_id": 406
+ },
+ "minecraft:bamboo_planks": {
+ "protocol_id": 45
+ },
+ "minecraft:bamboo_pressure_plate": {
+ "protocol_id": 723
+ },
"minecraft:bamboo_raft": {
- "protocol_id": 790
+ "protocol_id": 812
},
"minecraft:bamboo_sign": {
- "protocol_id": 894
+ "protocol_id": 917
},
"minecraft:bamboo_slab": {
- "protocol_id": 260
+ "protocol_id": 271
},
"minecraft:bamboo_stairs": {
- "protocol_id": 391
+ "protocol_id": 405
},
"minecraft:bamboo_trapdoor": {
- "protocol_id": 739
+ "protocol_id": 757
},
"minecraft:barrel": {
- "protocol_id": 1205
+ "protocol_id": 1248
},
"minecraft:barrier": {
- "protocol_id": 443
+ "protocol_id": 457
},
"minecraft:basalt": {
- "protocol_id": 328
+ "protocol_id": 341
},
"minecraft:bat_spawn_egg": {
- "protocol_id": 1011
+ "protocol_id": 1051
},
"minecraft:beacon": {
- "protocol_id": 396
+ "protocol_id": 410
},
"minecraft:bedrock": {
- "protocol_id": 56
+ "protocol_id": 58
},
"minecraft:bee_nest": {
- "protocol_id": 1222
+ "protocol_id": 1265
},
"minecraft:bee_spawn_egg": {
- "protocol_id": 1012
+ "protocol_id": 1052
},
"minecraft:beef": {
- "protocol_id": 988
+ "protocol_id": 1028
},
"minecraft:beehive": {
- "protocol_id": 1223
+ "protocol_id": 1266
},
"minecraft:beetroot": {
- "protocol_id": 1154
+ "protocol_id": 1196
},
"minecraft:beetroot_seeds": {
- "protocol_id": 1155
+ "protocol_id": 1197
},
"minecraft:beetroot_soup": {
- "protocol_id": 1156
+ "protocol_id": 1198
},
"minecraft:bell": {
- "protocol_id": 1213
+ "protocol_id": 1256
},
"minecraft:big_dripleaf": {
- "protocol_id": 249
+ "protocol_id": 259
},
"minecraft:birch_boat": {
- "protocol_id": 778
+ "protocol_id": 798
},
"minecraft:birch_button": {
- "protocol_id": 686
+ "protocol_id": 700
},
"minecraft:birch_chest_boat": {
- "protocol_id": 779
+ "protocol_id": 799
},
"minecraft:birch_door": {
- "protocol_id": 713
+ "protocol_id": 729
},
"minecraft:birch_fence": {
- "protocol_id": 313
+ "protocol_id": 325
},
"minecraft:birch_fence_gate": {
- "protocol_id": 752
+ "protocol_id": 770
},
"minecraft:birch_hanging_sign": {
- "protocol_id": 899
+ "protocol_id": 922
},
"minecraft:birch_leaves": {
- "protocol_id": 178
+ "protocol_id": 184
},
"minecraft:birch_log": {
- "protocol_id": 134
+ "protocol_id": 136
},
"minecraft:birch_planks": {
"protocol_id": 38
},
"minecraft:birch_pressure_plate": {
- "protocol_id": 701
+ "protocol_id": 716
},
"minecraft:birch_sapling": {
- "protocol_id": 50
+ "protocol_id": 51
},
"minecraft:birch_sign": {
- "protocol_id": 888
+ "protocol_id": 910
},
"minecraft:birch_slab": {
- "protocol_id": 254
+ "protocol_id": 264
},
"minecraft:birch_stairs": {
- "protocol_id": 385
+ "protocol_id": 398
},
"minecraft:birch_trapdoor": {
- "protocol_id": 733
+ "protocol_id": 750
},
"minecraft:birch_wood": {
- "protocol_id": 168
+ "protocol_id": 173
},
"minecraft:black_banner": {
- "protocol_id": 1148
+ "protocol_id": 1190
},
"minecraft:black_bed": {
- "protocol_id": 979
+ "protocol_id": 1019
+ },
+ "minecraft:black_bundle": {
+ "protocol_id": 970
},
"minecraft:black_candle": {
- "protocol_id": 1257
+ "protocol_id": 1300
},
"minecraft:black_carpet": {
- "protocol_id": 461
+ "protocol_id": 475
},
"minecraft:black_concrete": {
- "protocol_id": 570
+ "protocol_id": 584
},
"minecraft:black_concrete_powder": {
- "protocol_id": 586
- },
- "minecraft:black_dye": {
- "protocol_id": 959
- },
- "minecraft:black_glazed_terracotta": {
- "protocol_id": 554
- },
- "minecraft:black_shulker_box": {
- "protocol_id": 538
- },
- "minecraft:black_stained_glass": {
- "protocol_id": 486
- },
- "minecraft:black_stained_glass_pane": {
- "protocol_id": 502
- },
- "minecraft:black_terracotta": {
- "protocol_id": 442
- },
- "minecraft:black_wool": {
- "protocol_id": 217
- },
- "minecraft:blackstone": {
- "protocol_id": 1228
- },
- "minecraft:blackstone_slab": {
- "protocol_id": 1229
- },
- "minecraft:blackstone_stairs": {
- "protocol_id": 1230
- },
- "minecraft:blackstone_wall": {
- "protocol_id": 412
- },
- "minecraft:blade_pottery_sherd": {
- "protocol_id": 1291
- },
- "minecraft:blast_furnace": {
- "protocol_id": 1207
- },
- "minecraft:blaze_powder": {
- "protocol_id": 1002
- },
- "minecraft:blaze_rod": {
- "protocol_id": 994
- },
- "minecraft:blaze_spawn_egg": {
- "protocol_id": 1013
- },
- "minecraft:blue_banner": {
- "protocol_id": 1144
- },
- "minecraft:blue_bed": {
- "protocol_id": 975
- },
- "minecraft:blue_candle": {
- "protocol_id": 1253
- },
- "minecraft:blue_carpet": {
- "protocol_id": 457
- },
- "minecraft:blue_concrete": {
- "protocol_id": 566
- },
- "minecraft:blue_concrete_powder": {
- "protocol_id": 582
- },
- "minecraft:blue_dye": {
- "protocol_id": 955
- },
- "minecraft:blue_glazed_terracotta": {
- "protocol_id": 550
- },
- "minecraft:blue_ice": {
- "protocol_id": 619
- },
- "minecraft:blue_orchid": {
- "protocol_id": 220
- },
- "minecraft:blue_shulker_box": {
- "protocol_id": 534
- },
- "minecraft:blue_stained_glass": {
- "protocol_id": 482
- },
- "minecraft:blue_stained_glass_pane": {
- "protocol_id": 498
- },
- "minecraft:blue_terracotta": {
- "protocol_id": 438
- },
- "minecraft:blue_wool": {
- "protocol_id": 213
- },
- "minecraft:bogged_spawn_egg": {
- "protocol_id": 1014
- },
- "minecraft:bolt_armor_trim_smithing_template": {
- "protocol_id": 1287
- },
- "minecraft:bone": {
- "protocol_id": 961
- },
- "minecraft:bone_block": {
- "protocol_id": 520
- },
- "minecraft:bone_meal": {
- "protocol_id": 960
- },
- "minecraft:book": {
- "protocol_id": 925
- },
- "minecraft:bookshelf": {
- "protocol_id": 286
- },
- "minecraft:bow": {
- "protocol_id": 801
- },
- "minecraft:bowl": {
- "protocol_id": 799
- },
- "minecraft:brain_coral": {
"protocol_id": 600
},
- "minecraft:brain_coral_block": {
- "protocol_id": 595
+ "minecraft:black_dye": {
+ "protocol_id": 999
},
- "minecraft:brain_coral_fan": {
- "protocol_id": 610
+ "minecraft:black_glazed_terracotta": {
+ "protocol_id": 568
},
- "minecraft:bread": {
- "protocol_id": 855
+ "minecraft:black_shulker_box": {
+ "protocol_id": 552
},
- "minecraft:breeze_rod": {
- "protocol_id": 1332
+ "minecraft:black_stained_glass": {
+ "protocol_id": 500
},
- "minecraft:breeze_spawn_egg": {
+ "minecraft:black_stained_glass_pane": {
+ "protocol_id": 516
+ },
+ "minecraft:black_terracotta": {
+ "protocol_id": 456
+ },
+ "minecraft:black_wool": {
+ "protocol_id": 224
+ },
+ "minecraft:blackstone": {
+ "protocol_id": 1271
+ },
+ "minecraft:blackstone_slab": {
+ "protocol_id": 1272
+ },
+ "minecraft:blackstone_stairs": {
+ "protocol_id": 1273
+ },
+ "minecraft:blackstone_wall": {
+ "protocol_id": 426
+ },
+ "minecraft:blade_pottery_sherd": {
+ "protocol_id": 1334
+ },
+ "minecraft:blast_furnace": {
+ "protocol_id": 1250
+ },
+ "minecraft:blaze_powder": {
+ "protocol_id": 1042
+ },
+ "minecraft:blaze_rod": {
+ "protocol_id": 1034
+ },
+ "minecraft:blaze_spawn_egg": {
+ "protocol_id": 1053
+ },
+ "minecraft:blue_banner": {
+ "protocol_id": 1186
+ },
+ "minecraft:blue_bed": {
"protocol_id": 1015
},
- "minecraft:brewer_pottery_sherd": {
- "protocol_id": 1292
+ "minecraft:blue_bundle": {
+ "protocol_id": 966
},
- "minecraft:brewing_stand": {
- "protocol_id": 1004
+ "minecraft:blue_candle": {
+ "protocol_id": 1296
},
- "minecraft:brick": {
- "protocol_id": 921
+ "minecraft:blue_carpet": {
+ "protocol_id": 471
},
- "minecraft:brick_slab": {
- "protocol_id": 270
+ "minecraft:blue_concrete": {
+ "protocol_id": 580
},
- "minecraft:brick_stairs": {
- "protocol_id": 361
- },
- "minecraft:brick_wall": {
- "protocol_id": 399
- },
- "minecraft:bricks": {
- "protocol_id": 285
- },
- "minecraft:brown_banner": {
- "protocol_id": 1145
- },
- "minecraft:brown_bed": {
- "protocol_id": 976
- },
- "minecraft:brown_candle": {
- "protocol_id": 1254
- },
- "minecraft:brown_carpet": {
- "protocol_id": 458
- },
- "minecraft:brown_concrete": {
- "protocol_id": 567
- },
- "minecraft:brown_concrete_powder": {
- "protocol_id": 583
- },
- "minecraft:brown_dye": {
- "protocol_id": 956
- },
- "minecraft:brown_glazed_terracotta": {
- "protocol_id": 551
- },
- "minecraft:brown_mushroom": {
- "protocol_id": 234
- },
- "minecraft:brown_mushroom_block": {
- "protocol_id": 352
- },
- "minecraft:brown_shulker_box": {
- "protocol_id": 535
- },
- "minecraft:brown_stained_glass": {
- "protocol_id": 483
- },
- "minecraft:brown_stained_glass_pane": {
- "protocol_id": 499
- },
- "minecraft:brown_terracotta": {
- "protocol_id": 439
- },
- "minecraft:brown_wool": {
- "protocol_id": 214
- },
- "minecraft:brush": {
- "protocol_id": 1268
- },
- "minecraft:bubble_coral": {
- "protocol_id": 601
- },
- "minecraft:bubble_coral_block": {
+ "minecraft:blue_concrete_powder": {
"protocol_id": 596
},
+ "minecraft:blue_dye": {
+ "protocol_id": 995
+ },
+ "minecraft:blue_glazed_terracotta": {
+ "protocol_id": 564
+ },
+ "minecraft:blue_ice": {
+ "protocol_id": 633
+ },
+ "minecraft:blue_orchid": {
+ "protocol_id": 227
+ },
+ "minecraft:blue_shulker_box": {
+ "protocol_id": 548
+ },
+ "minecraft:blue_stained_glass": {
+ "protocol_id": 496
+ },
+ "minecraft:blue_stained_glass_pane": {
+ "protocol_id": 512
+ },
+ "minecraft:blue_terracotta": {
+ "protocol_id": 452
+ },
+ "minecraft:blue_wool": {
+ "protocol_id": 220
+ },
+ "minecraft:bogged_spawn_egg": {
+ "protocol_id": 1054
+ },
+ "minecraft:bolt_armor_trim_smithing_template": {
+ "protocol_id": 1330
+ },
+ "minecraft:bone": {
+ "protocol_id": 1001
+ },
+ "minecraft:bone_block": {
+ "protocol_id": 534
+ },
+ "minecraft:bone_meal": {
+ "protocol_id": 1000
+ },
+ "minecraft:book": {
+ "protocol_id": 949
+ },
+ "minecraft:bookshelf": {
+ "protocol_id": 297
+ },
+ "minecraft:bordure_indented_banner_pattern": {
+ "protocol_id": 1245
+ },
+ "minecraft:bow": {
+ "protocol_id": 823
+ },
+ "minecraft:bowl": {
+ "protocol_id": 821
+ },
+ "minecraft:brain_coral": {
+ "protocol_id": 614
+ },
+ "minecraft:brain_coral_block": {
+ "protocol_id": 609
+ },
+ "minecraft:brain_coral_fan": {
+ "protocol_id": 624
+ },
+ "minecraft:bread": {
+ "protocol_id": 877
+ },
+ "minecraft:breeze_rod": {
+ "protocol_id": 1134
+ },
+ "minecraft:breeze_spawn_egg": {
+ "protocol_id": 1055
+ },
+ "minecraft:brewer_pottery_sherd": {
+ "protocol_id": 1335
+ },
+ "minecraft:brewing_stand": {
+ "protocol_id": 1044
+ },
+ "minecraft:brick": {
+ "protocol_id": 945
+ },
+ "minecraft:brick_slab": {
+ "protocol_id": 281
+ },
+ "minecraft:brick_stairs": {
+ "protocol_id": 374
+ },
+ "minecraft:brick_wall": {
+ "protocol_id": 413
+ },
+ "minecraft:bricks": {
+ "protocol_id": 296
+ },
+ "minecraft:brown_banner": {
+ "protocol_id": 1187
+ },
+ "minecraft:brown_bed": {
+ "protocol_id": 1016
+ },
+ "minecraft:brown_bundle": {
+ "protocol_id": 967
+ },
+ "minecraft:brown_candle": {
+ "protocol_id": 1297
+ },
+ "minecraft:brown_carpet": {
+ "protocol_id": 472
+ },
+ "minecraft:brown_concrete": {
+ "protocol_id": 581
+ },
+ "minecraft:brown_concrete_powder": {
+ "protocol_id": 597
+ },
+ "minecraft:brown_dye": {
+ "protocol_id": 996
+ },
+ "minecraft:brown_glazed_terracotta": {
+ "protocol_id": 565
+ },
+ "minecraft:brown_mushroom": {
+ "protocol_id": 241
+ },
+ "minecraft:brown_mushroom_block": {
+ "protocol_id": 365
+ },
+ "minecraft:brown_shulker_box": {
+ "protocol_id": 549
+ },
+ "minecraft:brown_stained_glass": {
+ "protocol_id": 497
+ },
+ "minecraft:brown_stained_glass_pane": {
+ "protocol_id": 513
+ },
+ "minecraft:brown_terracotta": {
+ "protocol_id": 453
+ },
+ "minecraft:brown_wool": {
+ "protocol_id": 221
+ },
+ "minecraft:brush": {
+ "protocol_id": 1311
+ },
+ "minecraft:bubble_coral": {
+ "protocol_id": 615
+ },
+ "minecraft:bubble_coral_block": {
+ "protocol_id": 610
+ },
"minecraft:bubble_coral_fan": {
- "protocol_id": 611
+ "protocol_id": 625
},
"minecraft:bucket": {
- "protocol_id": 908
+ "protocol_id": 932
},
"minecraft:budding_amethyst": {
- "protocol_id": 87
+ "protocol_id": 89
},
"minecraft:bundle": {
- "protocol_id": 930
+ "protocol_id": 954
},
"minecraft:burn_pottery_sherd": {
- "protocol_id": 1293
+ "protocol_id": 1336
},
"minecraft:cactus": {
- "protocol_id": 308
+ "protocol_id": 320
},
"minecraft:cake": {
- "protocol_id": 963
+ "protocol_id": 1003
},
"minecraft:calcite": {
"protocol_id": 11
},
"minecraft:calibrated_sculk_sensor": {
- "protocol_id": 676
+ "protocol_id": 690
},
"minecraft:camel_spawn_egg": {
- "protocol_id": 1017
+ "protocol_id": 1057
},
"minecraft:campfire": {
- "protocol_id": 1218
+ "protocol_id": 1261
},
"minecraft:candle": {
- "protocol_id": 1241
+ "protocol_id": 1284
},
"minecraft:carrot": {
- "protocol_id": 1097
+ "protocol_id": 1139
},
"minecraft:carrot_on_a_stick": {
- "protocol_id": 771
+ "protocol_id": 790
},
"minecraft:cartography_table": {
- "protocol_id": 1208
+ "protocol_id": 1251
},
"minecraft:carved_pumpkin": {
- "protocol_id": 323
+ "protocol_id": 336
},
"minecraft:cat_spawn_egg": {
- "protocol_id": 1016
+ "protocol_id": 1056
},
"minecraft:cauldron": {
- "protocol_id": 1005
+ "protocol_id": 1045
},
"minecraft:cave_spider_spawn_egg": {
- "protocol_id": 1018
+ "protocol_id": 1058
},
"minecraft:chain": {
- "protocol_id": 356
+ "protocol_id": 369
},
"minecraft:chain_command_block": {
- "protocol_id": 515
+ "protocol_id": 529
},
"minecraft:chainmail_boots": {
- "protocol_id": 863
+ "protocol_id": 885
},
"minecraft:chainmail_chestplate": {
- "protocol_id": 861
+ "protocol_id": 883
},
"minecraft:chainmail_helmet": {
- "protocol_id": 860
+ "protocol_id": 882
},
"minecraft:chainmail_leggings": {
- "protocol_id": 862
+ "protocol_id": 884
},
"minecraft:charcoal": {
- "protocol_id": 804
+ "protocol_id": 826
},
"minecraft:cherry_boat": {
- "protocol_id": 784
+ "protocol_id": 804
},
"minecraft:cherry_button": {
- "protocol_id": 689
+ "protocol_id": 703
},
"minecraft:cherry_chest_boat": {
- "protocol_id": 785
+ "protocol_id": 805
},
"minecraft:cherry_door": {
- "protocol_id": 716
+ "protocol_id": 732
},
"minecraft:cherry_fence": {
- "protocol_id": 316
+ "protocol_id": 328
},
"minecraft:cherry_fence_gate": {
- "protocol_id": 755
+ "protocol_id": 773
},
"minecraft:cherry_hanging_sign": {
- "protocol_id": 902
+ "protocol_id": 925
},
"minecraft:cherry_leaves": {
- "protocol_id": 181
+ "protocol_id": 187
},
"minecraft:cherry_log": {
- "protocol_id": 137
+ "protocol_id": 139
},
"minecraft:cherry_planks": {
"protocol_id": 41
},
"minecraft:cherry_pressure_plate": {
- "protocol_id": 704
+ "protocol_id": 719
},
"minecraft:cherry_sapling": {
- "protocol_id": 53
+ "protocol_id": 54
},
"minecraft:cherry_sign": {
- "protocol_id": 891
+ "protocol_id": 913
},
"minecraft:cherry_slab": {
- "protocol_id": 257
+ "protocol_id": 267
},
"minecraft:cherry_stairs": {
- "protocol_id": 388
+ "protocol_id": 401
},
"minecraft:cherry_trapdoor": {
- "protocol_id": 736
+ "protocol_id": 753
},
"minecraft:cherry_wood": {
- "protocol_id": 171
+ "protocol_id": 176
},
"minecraft:chest": {
- "protocol_id": 299
+ "protocol_id": 311
},
"minecraft:chest_minecart": {
- "protocol_id": 767
+ "protocol_id": 786
},
"minecraft:chicken": {
- "protocol_id": 990
+ "protocol_id": 1030
},
"minecraft:chicken_spawn_egg": {
- "protocol_id": 1019
+ "protocol_id": 1059
},
"minecraft:chipped_anvil": {
- "protocol_id": 420
+ "protocol_id": 434
},
"minecraft:chiseled_bookshelf": {
- "protocol_id": 287
+ "protocol_id": 298
},
"minecraft:chiseled_copper": {
- "protocol_id": 96
+ "protocol_id": 98
},
"minecraft:chiseled_deepslate": {
- "protocol_id": 350
+ "protocol_id": 363
},
"minecraft:chiseled_nether_bricks": {
- "protocol_id": 368
+ "protocol_id": 381
},
"minecraft:chiseled_polished_blackstone": {
- "protocol_id": 1235
+ "protocol_id": 1278
},
"minecraft:chiseled_quartz_block": {
- "protocol_id": 422
+ "protocol_id": 436
},
"minecraft:chiseled_red_sandstone": {
- "protocol_id": 511
+ "protocol_id": 525
},
"minecraft:chiseled_sandstone": {
- "protocol_id": 192
+ "protocol_id": 199
},
"minecraft:chiseled_stone_bricks": {
- "protocol_id": 343
+ "protocol_id": 356
},
"minecraft:chiseled_tuff": {
"protocol_id": 16
@@ -6786,2062 +6937,2158 @@
"protocol_id": 25
},
"minecraft:chorus_flower": {
- "protocol_id": 294
+ "protocol_id": 305
},
"minecraft:chorus_fruit": {
- "protocol_id": 1150
+ "protocol_id": 1192
},
"minecraft:chorus_plant": {
- "protocol_id": 293
+ "protocol_id": 304
},
"minecraft:clay": {
- "protocol_id": 309
+ "protocol_id": 321
},
"minecraft:clay_ball": {
- "protocol_id": 922
+ "protocol_id": 946
},
"minecraft:clock": {
- "protocol_id": 932
+ "protocol_id": 972
},
"minecraft:coal": {
- "protocol_id": 803
+ "protocol_id": 825
},
"minecraft:coal_block": {
- "protocol_id": 81
+ "protocol_id": 83
},
"minecraft:coal_ore": {
- "protocol_id": 62
+ "protocol_id": 64
},
"minecraft:coarse_dirt": {
"protocol_id": 29
},
"minecraft:coast_armor_trim_smithing_template": {
- "protocol_id": 1272
+ "protocol_id": 1315
},
"minecraft:cobbled_deepslate": {
"protocol_id": 9
},
"minecraft:cobbled_deepslate_slab": {
- "protocol_id": 652
+ "protocol_id": 666
},
"minecraft:cobbled_deepslate_stairs": {
- "protocol_id": 635
+ "protocol_id": 649
},
"minecraft:cobbled_deepslate_wall": {
- "protocol_id": 415
+ "protocol_id": 429
},
"minecraft:cobblestone": {
"protocol_id": 35
},
"minecraft:cobblestone_slab": {
- "protocol_id": 269
+ "protocol_id": 280
},
"minecraft:cobblestone_stairs": {
- "protocol_id": 304
+ "protocol_id": 316
},
"minecraft:cobblestone_wall": {
- "protocol_id": 397
+ "protocol_id": 411
},
"minecraft:cobweb": {
- "protocol_id": 194
+ "protocol_id": 201
},
"minecraft:cocoa_beans": {
- "protocol_id": 943
+ "protocol_id": 983
},
"minecraft:cod": {
- "protocol_id": 935
+ "protocol_id": 975
},
"minecraft:cod_bucket": {
- "protocol_id": 917
+ "protocol_id": 941
},
"minecraft:cod_spawn_egg": {
- "protocol_id": 1020
+ "protocol_id": 1060
},
"minecraft:command_block": {
- "protocol_id": 395
+ "protocol_id": 409
},
"minecraft:command_block_minecart": {
- "protocol_id": 1130
+ "protocol_id": 1172
},
"minecraft:comparator": {
- "protocol_id": 661
+ "protocol_id": 675
},
"minecraft:compass": {
- "protocol_id": 928
+ "protocol_id": 952
},
"minecraft:composter": {
- "protocol_id": 1204
+ "protocol_id": 1247
},
"minecraft:conduit": {
- "protocol_id": 620
+ "protocol_id": 634
},
"minecraft:cooked_beef": {
- "protocol_id": 989
+ "protocol_id": 1029
},
"minecraft:cooked_chicken": {
- "protocol_id": 991
+ "protocol_id": 1031
},
"minecraft:cooked_cod": {
- "protocol_id": 939
+ "protocol_id": 979
},
"minecraft:cooked_mutton": {
- "protocol_id": 1132
+ "protocol_id": 1174
},
"minecraft:cooked_porkchop": {
- "protocol_id": 882
+ "protocol_id": 904
},
"minecraft:cooked_rabbit": {
- "protocol_id": 1119
+ "protocol_id": 1161
},
"minecraft:cooked_salmon": {
- "protocol_id": 940
- },
- "minecraft:cookie": {
"protocol_id": 980
},
+ "minecraft:cookie": {
+ "protocol_id": 1020
+ },
"minecraft:copper_block": {
- "protocol_id": 89
+ "protocol_id": 91
},
"minecraft:copper_bulb": {
- "protocol_id": 1319
+ "protocol_id": 1362
},
"minecraft:copper_door": {
- "protocol_id": 722
+ "protocol_id": 739
},
"minecraft:copper_grate": {
- "protocol_id": 1311
+ "protocol_id": 1354
},
"minecraft:copper_ingot": {
- "protocol_id": 813
+ "protocol_id": 835
},
"minecraft:copper_ore": {
- "protocol_id": 66
+ "protocol_id": 68
},
"minecraft:copper_trapdoor": {
- "protocol_id": 742
+ "protocol_id": 760
},
"minecraft:cornflower": {
- "protocol_id": 228
+ "protocol_id": 235
},
"minecraft:cow_spawn_egg": {
- "protocol_id": 1021
+ "protocol_id": 1061
},
"minecraft:cracked_deepslate_bricks": {
- "protocol_id": 347
+ "protocol_id": 360
},
"minecraft:cracked_deepslate_tiles": {
- "protocol_id": 349
+ "protocol_id": 362
},
"minecraft:cracked_nether_bricks": {
- "protocol_id": 367
+ "protocol_id": 380
},
"minecraft:cracked_polished_blackstone_bricks": {
- "protocol_id": 1239
+ "protocol_id": 1282
},
"minecraft:cracked_stone_bricks": {
- "protocol_id": 342
+ "protocol_id": 355
},
"minecraft:crafter": {
- "protocol_id": 981
+ "protocol_id": 1021
},
"minecraft:crafting_table": {
- "protocol_id": 300
+ "protocol_id": 312
+ },
+ "minecraft:creaking_heart": {
+ "protocol_id": 310
+ },
+ "minecraft:creaking_spawn_egg": {
+ "protocol_id": 1124
},
"minecraft:creeper_banner_pattern": {
- "protocol_id": 1196
+ "protocol_id": 1237
},
"minecraft:creeper_head": {
- "protocol_id": 1107
+ "protocol_id": 1149
},
"minecraft:creeper_spawn_egg": {
- "protocol_id": 1022
+ "protocol_id": 1062
},
"minecraft:crimson_button": {
- "protocol_id": 693
+ "protocol_id": 708
},
"minecraft:crimson_door": {
- "protocol_id": 720
+ "protocol_id": 737
},
"minecraft:crimson_fence": {
- "protocol_id": 320
+ "protocol_id": 333
},
"minecraft:crimson_fence_gate": {
- "protocol_id": 759
+ "protocol_id": 778
},
"minecraft:crimson_fungus": {
- "protocol_id": 236
+ "protocol_id": 243
},
"minecraft:crimson_hanging_sign": {
- "protocol_id": 906
+ "protocol_id": 930
},
"minecraft:crimson_hyphae": {
- "protocol_id": 174
+ "protocol_id": 180
},
"minecraft:crimson_nylium": {
"protocol_id": 33
},
"minecraft:crimson_planks": {
- "protocol_id": 45
+ "protocol_id": 46
},
"minecraft:crimson_pressure_plate": {
- "protocol_id": 708
+ "protocol_id": 724
},
"minecraft:crimson_roots": {
- "protocol_id": 238
+ "protocol_id": 245
},
"minecraft:crimson_sign": {
- "protocol_id": 895
+ "protocol_id": 918
},
"minecraft:crimson_slab": {
- "protocol_id": 262
+ "protocol_id": 273
},
"minecraft:crimson_stairs": {
- "protocol_id": 393
+ "protocol_id": 407
},
"minecraft:crimson_stem": {
- "protocol_id": 142
+ "protocol_id": 145
},
"minecraft:crimson_trapdoor": {
- "protocol_id": 740
+ "protocol_id": 758
},
"minecraft:crossbow": {
- "protocol_id": 1192
+ "protocol_id": 1233
},
"minecraft:crying_obsidian": {
- "protocol_id": 1227
+ "protocol_id": 1270
},
"minecraft:cut_copper": {
- "protocol_id": 100
+ "protocol_id": 102
},
"minecraft:cut_copper_slab": {
- "protocol_id": 108
+ "protocol_id": 110
},
"minecraft:cut_copper_stairs": {
- "protocol_id": 104
+ "protocol_id": 106
},
"minecraft:cut_red_sandstone": {
- "protocol_id": 512
+ "protocol_id": 526
},
"minecraft:cut_red_sandstone_slab": {
- "protocol_id": 276
+ "protocol_id": 287
},
"minecraft:cut_sandstone": {
- "protocol_id": 193
+ "protocol_id": 200
},
"minecraft:cut_sandstone_slab": {
- "protocol_id": 267
+ "protocol_id": 278
},
"minecraft:cyan_banner": {
- "protocol_id": 1142
+ "protocol_id": 1184
},
"minecraft:cyan_bed": {
- "protocol_id": 973
+ "protocol_id": 1013
+ },
+ "minecraft:cyan_bundle": {
+ "protocol_id": 964
},
"minecraft:cyan_candle": {
- "protocol_id": 1251
- },
- "minecraft:cyan_carpet": {
- "protocol_id": 455
- },
- "minecraft:cyan_concrete": {
- "protocol_id": 564
- },
- "minecraft:cyan_concrete_powder": {
- "protocol_id": 580
- },
- "minecraft:cyan_dye": {
- "protocol_id": 953
- },
- "minecraft:cyan_glazed_terracotta": {
- "protocol_id": 548
- },
- "minecraft:cyan_shulker_box": {
- "protocol_id": 532
- },
- "minecraft:cyan_stained_glass": {
- "protocol_id": 480
- },
- "minecraft:cyan_stained_glass_pane": {
- "protocol_id": 496
- },
- "minecraft:cyan_terracotta": {
- "protocol_id": 436
- },
- "minecraft:cyan_wool": {
- "protocol_id": 211
- },
- "minecraft:damaged_anvil": {
- "protocol_id": 421
- },
- "minecraft:dandelion": {
- "protocol_id": 218
- },
- "minecraft:danger_pottery_sherd": {
"protocol_id": 1294
},
+ "minecraft:cyan_carpet": {
+ "protocol_id": 469
+ },
+ "minecraft:cyan_concrete": {
+ "protocol_id": 578
+ },
+ "minecraft:cyan_concrete_powder": {
+ "protocol_id": 594
+ },
+ "minecraft:cyan_dye": {
+ "protocol_id": 993
+ },
+ "minecraft:cyan_glazed_terracotta": {
+ "protocol_id": 562
+ },
+ "minecraft:cyan_shulker_box": {
+ "protocol_id": 546
+ },
+ "minecraft:cyan_stained_glass": {
+ "protocol_id": 494
+ },
+ "minecraft:cyan_stained_glass_pane": {
+ "protocol_id": 510
+ },
+ "minecraft:cyan_terracotta": {
+ "protocol_id": 450
+ },
+ "minecraft:cyan_wool": {
+ "protocol_id": 218
+ },
+ "minecraft:damaged_anvil": {
+ "protocol_id": 435
+ },
+ "minecraft:dandelion": {
+ "protocol_id": 225
+ },
+ "minecraft:danger_pottery_sherd": {
+ "protocol_id": 1337
+ },
"minecraft:dark_oak_boat": {
- "protocol_id": 786
+ "protocol_id": 806
},
"minecraft:dark_oak_button": {
- "protocol_id": 690
+ "protocol_id": 704
},
"minecraft:dark_oak_chest_boat": {
- "protocol_id": 787
+ "protocol_id": 807
},
"minecraft:dark_oak_door": {
- "protocol_id": 717
+ "protocol_id": 733
},
"minecraft:dark_oak_fence": {
- "protocol_id": 317
+ "protocol_id": 329
},
"minecraft:dark_oak_fence_gate": {
- "protocol_id": 756
+ "protocol_id": 774
},
"minecraft:dark_oak_hanging_sign": {
- "protocol_id": 903
+ "protocol_id": 926
},
"minecraft:dark_oak_leaves": {
- "protocol_id": 182
+ "protocol_id": 188
},
"minecraft:dark_oak_log": {
- "protocol_id": 138
+ "protocol_id": 141
},
"minecraft:dark_oak_planks": {
"protocol_id": 42
},
"minecraft:dark_oak_pressure_plate": {
- "protocol_id": 705
+ "protocol_id": 720
},
"minecraft:dark_oak_sapling": {
- "protocol_id": 54
+ "protocol_id": 55
},
"minecraft:dark_oak_sign": {
- "protocol_id": 892
+ "protocol_id": 914
},
"minecraft:dark_oak_slab": {
- "protocol_id": 258
+ "protocol_id": 268
},
"minecraft:dark_oak_stairs": {
- "protocol_id": 389
+ "protocol_id": 402
},
"minecraft:dark_oak_trapdoor": {
- "protocol_id": 737
+ "protocol_id": 754
},
"minecraft:dark_oak_wood": {
- "protocol_id": 172
+ "protocol_id": 178
},
"minecraft:dark_prismarine": {
- "protocol_id": 505
+ "protocol_id": 519
},
"minecraft:dark_prismarine_slab": {
- "protocol_id": 280
+ "protocol_id": 291
},
"minecraft:dark_prismarine_stairs": {
- "protocol_id": 508
+ "protocol_id": 522
},
"minecraft:daylight_detector": {
- "protocol_id": 674
+ "protocol_id": 688
},
"minecraft:dead_brain_coral": {
- "protocol_id": 604
- },
- "minecraft:dead_brain_coral_block": {
- "protocol_id": 590
- },
- "minecraft:dead_brain_coral_fan": {
- "protocol_id": 615
- },
- "minecraft:dead_bubble_coral": {
- "protocol_id": 605
- },
- "minecraft:dead_bubble_coral_block": {
- "protocol_id": 591
- },
- "minecraft:dead_bubble_coral_fan": {
- "protocol_id": 616
- },
- "minecraft:dead_bush": {
- "protocol_id": 199
- },
- "minecraft:dead_fire_coral": {
- "protocol_id": 606
- },
- "minecraft:dead_fire_coral_block": {
- "protocol_id": 592
- },
- "minecraft:dead_fire_coral_fan": {
- "protocol_id": 617
- },
- "minecraft:dead_horn_coral": {
- "protocol_id": 607
- },
- "minecraft:dead_horn_coral_block": {
- "protocol_id": 593
- },
- "minecraft:dead_horn_coral_fan": {
"protocol_id": 618
},
+ "minecraft:dead_brain_coral_block": {
+ "protocol_id": 604
+ },
+ "minecraft:dead_brain_coral_fan": {
+ "protocol_id": 629
+ },
+ "minecraft:dead_bubble_coral": {
+ "protocol_id": 619
+ },
+ "minecraft:dead_bubble_coral_block": {
+ "protocol_id": 605
+ },
+ "minecraft:dead_bubble_coral_fan": {
+ "protocol_id": 630
+ },
+ "minecraft:dead_bush": {
+ "protocol_id": 206
+ },
+ "minecraft:dead_fire_coral": {
+ "protocol_id": 620
+ },
+ "minecraft:dead_fire_coral_block": {
+ "protocol_id": 606
+ },
+ "minecraft:dead_fire_coral_fan": {
+ "protocol_id": 631
+ },
+ "minecraft:dead_horn_coral": {
+ "protocol_id": 621
+ },
+ "minecraft:dead_horn_coral_block": {
+ "protocol_id": 607
+ },
+ "minecraft:dead_horn_coral_fan": {
+ "protocol_id": 632
+ },
"minecraft:dead_tube_coral": {
- "protocol_id": 608
+ "protocol_id": 622
},
"minecraft:dead_tube_coral_block": {
- "protocol_id": 589
+ "protocol_id": 603
},
"minecraft:dead_tube_coral_fan": {
- "protocol_id": 614
+ "protocol_id": 628
},
"minecraft:debug_stick": {
- "protocol_id": 1167
+ "protocol_id": 1209
},
"minecraft:decorated_pot": {
- "protocol_id": 288
+ "protocol_id": 299
},
"minecraft:deepslate": {
"protocol_id": 8
},
"minecraft:deepslate_brick_slab": {
- "protocol_id": 654
+ "protocol_id": 668
},
"minecraft:deepslate_brick_stairs": {
- "protocol_id": 637
+ "protocol_id": 651
},
"minecraft:deepslate_brick_wall": {
- "protocol_id": 417
+ "protocol_id": 431
},
"minecraft:deepslate_bricks": {
- "protocol_id": 346
+ "protocol_id": 359
},
"minecraft:deepslate_coal_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": {
+ "minecraft:deepslate_copper_ore": {
+ "protocol_id": 69
+ },
+ "minecraft:deepslate_diamond_ore": {
+ "protocol_id": 79
+ },
+ "minecraft:deepslate_emerald_ore": {
"protocol_id": 75
},
- "minecraft:deepslate_redstone_ore": {
+ "minecraft:deepslate_gold_ore": {
"protocol_id": 71
},
+ "minecraft:deepslate_iron_ore": {
+ "protocol_id": 67
+ },
+ "minecraft:deepslate_lapis_ore": {
+ "protocol_id": 77
+ },
+ "minecraft:deepslate_redstone_ore": {
+ "protocol_id": 73
+ },
"minecraft:deepslate_tile_slab": {
- "protocol_id": 655
+ "protocol_id": 669
},
"minecraft:deepslate_tile_stairs": {
- "protocol_id": 638
+ "protocol_id": 652
},
"minecraft:deepslate_tile_wall": {
- "protocol_id": 418
+ "protocol_id": 432
},
"minecraft:deepslate_tiles": {
- "protocol_id": 348
+ "protocol_id": 361
},
"minecraft:detector_rail": {
- "protocol_id": 762
+ "protocol_id": 781
},
"minecraft:diamond": {
- "protocol_id": 805
+ "protocol_id": 827
},
"minecraft:diamond_axe": {
- "protocol_id": 841
+ "protocol_id": 863
},
"minecraft:diamond_block": {
- "protocol_id": 91
+ "protocol_id": 93
},
"minecraft:diamond_boots": {
- "protocol_id": 871
+ "protocol_id": 893
},
"minecraft:diamond_chestplate": {
- "protocol_id": 869
+ "protocol_id": 891
},
"minecraft:diamond_helmet": {
- "protocol_id": 868
+ "protocol_id": 890
},
"minecraft:diamond_hoe": {
- "protocol_id": 842
+ "protocol_id": 864
},
"minecraft:diamond_horse_armor": {
- "protocol_id": 1126
+ "protocol_id": 1168
},
"minecraft:diamond_leggings": {
- "protocol_id": 870
+ "protocol_id": 892
},
"minecraft:diamond_ore": {
- "protocol_id": 76
+ "protocol_id": 78
},
"minecraft:diamond_pickaxe": {
- "protocol_id": 840
+ "protocol_id": 862
},
"minecraft:diamond_shovel": {
- "protocol_id": 839
+ "protocol_id": 861
},
"minecraft:diamond_sword": {
- "protocol_id": 838
+ "protocol_id": 860
},
"minecraft:diorite": {
"protocol_id": 4
},
"minecraft:diorite_slab": {
- "protocol_id": 651
+ "protocol_id": 665
},
"minecraft:diorite_stairs": {
- "protocol_id": 634
+ "protocol_id": 648
},
"minecraft:diorite_wall": {
- "protocol_id": 411
+ "protocol_id": 425
},
"minecraft:dirt": {
"protocol_id": 28
},
"minecraft:dirt_path": {
- "protocol_id": 464
+ "protocol_id": 478
},
"minecraft:disc_fragment_5": {
- "protocol_id": 1187
+ "protocol_id": 1229
},
"minecraft:dispenser": {
- "protocol_id": 668
+ "protocol_id": 682
},
"minecraft:dolphin_spawn_egg": {
- "protocol_id": 1023
+ "protocol_id": 1063
},
"minecraft:donkey_spawn_egg": {
- "protocol_id": 1024
+ "protocol_id": 1064
},
"minecraft:dragon_breath": {
- "protocol_id": 1157
+ "protocol_id": 1199
},
"minecraft:dragon_egg": {
- "protocol_id": 379
+ "protocol_id": 392
},
"minecraft:dragon_head": {
- "protocol_id": 1108
+ "protocol_id": 1150
},
"minecraft:dried_kelp": {
- "protocol_id": 985
+ "protocol_id": 1025
},
"minecraft:dried_kelp_block": {
- "protocol_id": 923
+ "protocol_id": 947
},
"minecraft:dripstone_block": {
"protocol_id": 26
},
"minecraft:dropper": {
- "protocol_id": 669
+ "protocol_id": 683
},
"minecraft:drowned_spawn_egg": {
- "protocol_id": 1025
+ "protocol_id": 1065
},
"minecraft:dune_armor_trim_smithing_template": {
- "protocol_id": 1271
+ "protocol_id": 1314
},
"minecraft:echo_shard": {
- "protocol_id": 1267
+ "protocol_id": 1310
},
"minecraft:egg": {
- "protocol_id": 927
+ "protocol_id": 951
},
"minecraft:elder_guardian_spawn_egg": {
- "protocol_id": 1026
+ "protocol_id": 1066
},
"minecraft:elytra": {
- "protocol_id": 773
+ "protocol_id": 793
},
"minecraft:emerald": {
- "protocol_id": 806
+ "protocol_id": 828
},
"minecraft:emerald_block": {
- "protocol_id": 382
+ "protocol_id": 395
},
"minecraft:emerald_ore": {
- "protocol_id": 72
+ "protocol_id": 74
},
"minecraft:enchanted_book": {
- "protocol_id": 1114
+ "protocol_id": 1156
},
"minecraft:enchanted_golden_apple": {
- "protocol_id": 885
+ "protocol_id": 907
},
"minecraft:enchanting_table": {
- "protocol_id": 375
+ "protocol_id": 388
},
"minecraft:end_crystal": {
- "protocol_id": 1149
+ "protocol_id": 1191
},
"minecraft:end_portal_frame": {
- "protocol_id": 376
+ "protocol_id": 389
},
"minecraft:end_rod": {
- "protocol_id": 292
+ "protocol_id": 303
},
"minecraft:end_stone": {
- "protocol_id": 377
+ "protocol_id": 390
},
"minecraft:end_stone_brick_slab": {
- "protocol_id": 644
+ "protocol_id": 658
},
"minecraft:end_stone_brick_stairs": {
- "protocol_id": 626
+ "protocol_id": 640
},
"minecraft:end_stone_brick_wall": {
- "protocol_id": 410
+ "protocol_id": 424
},
"minecraft:end_stone_bricks": {
- "protocol_id": 378
+ "protocol_id": 391
},
"minecraft:ender_chest": {
- "protocol_id": 381
+ "protocol_id": 394
},
"minecraft:ender_dragon_spawn_egg": {
- "protocol_id": 1027
+ "protocol_id": 1067
},
"minecraft:ender_eye": {
- "protocol_id": 1006
+ "protocol_id": 1046
},
"minecraft:ender_pearl": {
- "protocol_id": 993
- },
- "minecraft:enderman_spawn_egg": {
- "protocol_id": 1028
- },
- "minecraft:endermite_spawn_egg": {
- "protocol_id": 1029
- },
- "minecraft:evoker_spawn_egg": {
- "protocol_id": 1030
- },
- "minecraft:experience_bottle": {
- "protocol_id": 1088
- },
- "minecraft:explorer_pottery_sherd": {
- "protocol_id": 1295
- },
- "minecraft:exposed_chiseled_copper": {
- "protocol_id": 97
- },
- "minecraft:exposed_copper": {
- "protocol_id": 93
- },
- "minecraft:exposed_copper_bulb": {
- "protocol_id": 1320
- },
- "minecraft:exposed_copper_door": {
- "protocol_id": 723
- },
- "minecraft:exposed_copper_grate": {
- "protocol_id": 1312
- },
- "minecraft:exposed_copper_trapdoor": {
- "protocol_id": 743
- },
- "minecraft:exposed_cut_copper": {
- "protocol_id": 101
- },
- "minecraft:exposed_cut_copper_slab": {
- "protocol_id": 109
- },
- "minecraft:exposed_cut_copper_stairs": {
- "protocol_id": 105
- },
- "minecraft:eye_armor_trim_smithing_template": {
- "protocol_id": 1275
- },
- "minecraft:farmland": {
- "protocol_id": 301
- },
- "minecraft:feather": {
- "protocol_id": 851
- },
- "minecraft:fermented_spider_eye": {
- "protocol_id": 1001
- },
- "minecraft:fern": {
- "protocol_id": 196
- },
- "minecraft:filled_map": {
- "protocol_id": 982
- },
- "minecraft:fire_charge": {
- "protocol_id": 1089
- },
- "minecraft:fire_coral": {
- "protocol_id": 602
- },
- "minecraft:fire_coral_block": {
- "protocol_id": 597
- },
- "minecraft:fire_coral_fan": {
- "protocol_id": 612
- },
- "minecraft:firework_rocket": {
- "protocol_id": 1112
- },
- "minecraft:firework_star": {
- "protocol_id": 1113
- },
- "minecraft:fishing_rod": {
- "protocol_id": 931
- },
- "minecraft:fletching_table": {
- "protocol_id": 1209
- },
- "minecraft:flint": {
- "protocol_id": 880
- },
- "minecraft:flint_and_steel": {
- "protocol_id": 798
- },
- "minecraft:flow_armor_trim_smithing_template": {
- "protocol_id": 1286
- },
- "minecraft:flow_banner_pattern": {
- "protocol_id": 1201
- },
- "minecraft:flow_pottery_sherd": {
- "protocol_id": 1296
- },
- "minecraft:flower_banner_pattern": {
- "protocol_id": 1195
- },
- "minecraft:flower_pot": {
- "protocol_id": 1096
- },
- "minecraft:flowering_azalea": {
- "protocol_id": 198
- },
- "minecraft:flowering_azalea_leaves": {
- "protocol_id": 185
- },
- "minecraft:fox_spawn_egg": {
- "protocol_id": 1031
- },
- "minecraft:friend_pottery_sherd": {
- "protocol_id": 1297
- },
- "minecraft:frog_spawn_egg": {
- "protocol_id": 1032
- },
- "minecraft:frogspawn": {
- "protocol_id": 1266
- },
- "minecraft:furnace": {
- "protocol_id": 302
- },
- "minecraft:furnace_minecart": {
- "protocol_id": 768
- },
- "minecraft:ghast_spawn_egg": {
"protocol_id": 1033
},
- "minecraft:ghast_tear": {
- "protocol_id": 995
+ "minecraft:enderman_spawn_egg": {
+ "protocol_id": 1068
},
- "minecraft:gilded_blackstone": {
- "protocol_id": 1231
+ "minecraft:endermite_spawn_egg": {
+ "protocol_id": 1069
},
- "minecraft:glass": {
- "protocol_id": 188
+ "minecraft:evoker_spawn_egg": {
+ "protocol_id": 1070
},
- "minecraft:glass_bottle": {
- "protocol_id": 999
+ "minecraft:experience_bottle": {
+ "protocol_id": 1129
},
- "minecraft:glass_pane": {
- "protocol_id": 357
+ "minecraft:explorer_pottery_sherd": {
+ "protocol_id": 1338
},
- "minecraft:glistering_melon_slice": {
- "protocol_id": 1007
+ "minecraft:exposed_chiseled_copper": {
+ "protocol_id": 99
},
- "minecraft:globe_banner_pattern": {
- "protocol_id": 1199
+ "minecraft:exposed_copper": {
+ "protocol_id": 95
},
- "minecraft:glow_berries": {
- "protocol_id": 1217
+ "minecraft:exposed_copper_bulb": {
+ "protocol_id": 1363
},
- "minecraft:glow_ink_sac": {
- "protocol_id": 942
+ "minecraft:exposed_copper_door": {
+ "protocol_id": 740
},
- "minecraft:glow_item_frame": {
- "protocol_id": 1095
+ "minecraft:exposed_copper_grate": {
+ "protocol_id": 1355
},
- "minecraft:glow_lichen": {
- "protocol_id": 360
+ "minecraft:exposed_copper_trapdoor": {
+ "protocol_id": 761
},
- "minecraft:glow_squid_spawn_egg": {
- "protocol_id": 1034
+ "minecraft:exposed_cut_copper": {
+ "protocol_id": 103
},
- "minecraft:glowstone": {
- "protocol_id": 332
+ "minecraft:exposed_cut_copper_slab": {
+ "protocol_id": 111
},
- "minecraft:glowstone_dust": {
- "protocol_id": 934
+ "minecraft:exposed_cut_copper_stairs": {
+ "protocol_id": 107
},
- "minecraft:goat_horn": {
- "protocol_id": 1203
+ "minecraft:eye_armor_trim_smithing_template": {
+ "protocol_id": 1318
},
- "minecraft:goat_spawn_egg": {
- "protocol_id": 1035
+ "minecraft:farmland": {
+ "protocol_id": 313
},
- "minecraft:gold_block": {
- "protocol_id": 90
- },
- "minecraft:gold_ingot": {
- "protocol_id": 815
- },
- "minecraft:gold_nugget": {
- "protocol_id": 996
- },
- "minecraft:gold_ore": {
- "protocol_id": 68
- },
- "minecraft:golden_apple": {
- "protocol_id": 884
- },
- "minecraft:golden_axe": {
- "protocol_id": 831
- },
- "minecraft:golden_boots": {
- "protocol_id": 875
- },
- "minecraft:golden_carrot": {
- "protocol_id": 1102
- },
- "minecraft:golden_chestplate": {
+ "minecraft:feather": {
"protocol_id": 873
},
+ "minecraft:fermented_spider_eye": {
+ "protocol_id": 1041
+ },
+ "minecraft:fern": {
+ "protocol_id": 203
+ },
+ "minecraft:field_masoned_banner_pattern": {
+ "protocol_id": 1244
+ },
+ "minecraft:filled_map": {
+ "protocol_id": 1022
+ },
+ "minecraft:fire_charge": {
+ "protocol_id": 1130
+ },
+ "minecraft:fire_coral": {
+ "protocol_id": 616
+ },
+ "minecraft:fire_coral_block": {
+ "protocol_id": 611
+ },
+ "minecraft:fire_coral_fan": {
+ "protocol_id": 626
+ },
+ "minecraft:firework_rocket": {
+ "protocol_id": 1154
+ },
+ "minecraft:firework_star": {
+ "protocol_id": 1155
+ },
+ "minecraft:fishing_rod": {
+ "protocol_id": 971
+ },
+ "minecraft:fletching_table": {
+ "protocol_id": 1252
+ },
+ "minecraft:flint": {
+ "protocol_id": 902
+ },
+ "minecraft:flint_and_steel": {
+ "protocol_id": 820
+ },
+ "minecraft:flow_armor_trim_smithing_template": {
+ "protocol_id": 1329
+ },
+ "minecraft:flow_banner_pattern": {
+ "protocol_id": 1242
+ },
+ "minecraft:flow_pottery_sherd": {
+ "protocol_id": 1339
+ },
+ "minecraft:flower_banner_pattern": {
+ "protocol_id": 1236
+ },
+ "minecraft:flower_pot": {
+ "protocol_id": 1138
+ },
+ "minecraft:flowering_azalea": {
+ "protocol_id": 205
+ },
+ "minecraft:flowering_azalea_leaves": {
+ "protocol_id": 192
+ },
+ "minecraft:fox_spawn_egg": {
+ "protocol_id": 1071
+ },
+ "minecraft:friend_pottery_sherd": {
+ "protocol_id": 1340
+ },
+ "minecraft:frog_spawn_egg": {
+ "protocol_id": 1072
+ },
+ "minecraft:frogspawn": {
+ "protocol_id": 1309
+ },
+ "minecraft:furnace": {
+ "protocol_id": 314
+ },
+ "minecraft:furnace_minecart": {
+ "protocol_id": 787
+ },
+ "minecraft:ghast_spawn_egg": {
+ "protocol_id": 1073
+ },
+ "minecraft:ghast_tear": {
+ "protocol_id": 1035
+ },
+ "minecraft:gilded_blackstone": {
+ "protocol_id": 1274
+ },
+ "minecraft:glass": {
+ "protocol_id": 195
+ },
+ "minecraft:glass_bottle": {
+ "protocol_id": 1038
+ },
+ "minecraft:glass_pane": {
+ "protocol_id": 370
+ },
+ "minecraft:glistering_melon_slice": {
+ "protocol_id": 1047
+ },
+ "minecraft:globe_banner_pattern": {
+ "protocol_id": 1240
+ },
+ "minecraft:glow_berries": {
+ "protocol_id": 1260
+ },
+ "minecraft:glow_ink_sac": {
+ "protocol_id": 982
+ },
+ "minecraft:glow_item_frame": {
+ "protocol_id": 1137
+ },
+ "minecraft:glow_lichen": {
+ "protocol_id": 373
+ },
+ "minecraft:glow_squid_spawn_egg": {
+ "protocol_id": 1074
+ },
+ "minecraft:glowstone": {
+ "protocol_id": 345
+ },
+ "minecraft:glowstone_dust": {
+ "protocol_id": 974
+ },
+ "minecraft:goat_horn": {
+ "protocol_id": 1246
+ },
+ "minecraft:goat_spawn_egg": {
+ "protocol_id": 1075
+ },
+ "minecraft:gold_block": {
+ "protocol_id": 92
+ },
+ "minecraft:gold_ingot": {
+ "protocol_id": 837
+ },
+ "minecraft:gold_nugget": {
+ "protocol_id": 1036
+ },
+ "minecraft:gold_ore": {
+ "protocol_id": 70
+ },
+ "minecraft:golden_apple": {
+ "protocol_id": 906
+ },
+ "minecraft:golden_axe": {
+ "protocol_id": 853
+ },
+ "minecraft:golden_boots": {
+ "protocol_id": 897
+ },
+ "minecraft:golden_carrot": {
+ "protocol_id": 1144
+ },
+ "minecraft:golden_chestplate": {
+ "protocol_id": 895
+ },
"minecraft:golden_helmet": {
- "protocol_id": 872
+ "protocol_id": 894
},
"minecraft:golden_hoe": {
- "protocol_id": 832
+ "protocol_id": 854
},
"minecraft:golden_horse_armor": {
- "protocol_id": 1125
+ "protocol_id": 1167
},
"minecraft:golden_leggings": {
- "protocol_id": 874
+ "protocol_id": 896
},
"minecraft:golden_pickaxe": {
- "protocol_id": 830
+ "protocol_id": 852
},
"minecraft:golden_shovel": {
- "protocol_id": 829
+ "protocol_id": 851
},
"minecraft:golden_sword": {
- "protocol_id": 828
+ "protocol_id": 850
},
"minecraft:granite": {
"protocol_id": 2
},
"minecraft:granite_slab": {
- "protocol_id": 647
+ "protocol_id": 661
},
"minecraft:granite_stairs": {
- "protocol_id": 630
+ "protocol_id": 644
},
"minecraft:granite_wall": {
- "protocol_id": 403
+ "protocol_id": 417
},
"minecraft:grass_block": {
"protocol_id": 27
},
"minecraft:gravel": {
- "protocol_id": 61
+ "protocol_id": 63
},
"minecraft:gray_banner": {
- "protocol_id": 1140
+ "protocol_id": 1182
},
"minecraft:gray_bed": {
- "protocol_id": 971
+ "protocol_id": 1011
+ },
+ "minecraft:gray_bundle": {
+ "protocol_id": 962
},
"minecraft:gray_candle": {
- "protocol_id": 1249
+ "protocol_id": 1292
},
"minecraft:gray_carpet": {
- "protocol_id": 453
+ "protocol_id": 467
},
"minecraft:gray_concrete": {
- "protocol_id": 562
+ "protocol_id": 576
},
"minecraft:gray_concrete_powder": {
- "protocol_id": 578
+ "protocol_id": 592
},
"minecraft:gray_dye": {
- "protocol_id": 951
+ "protocol_id": 991
},
"minecraft:gray_glazed_terracotta": {
- "protocol_id": 546
+ "protocol_id": 560
},
"minecraft:gray_shulker_box": {
- "protocol_id": 530
+ "protocol_id": 544
},
"minecraft:gray_stained_glass": {
- "protocol_id": 478
+ "protocol_id": 492
},
"minecraft:gray_stained_glass_pane": {
- "protocol_id": 494
+ "protocol_id": 508
},
"minecraft:gray_terracotta": {
- "protocol_id": 434
+ "protocol_id": 448
},
"minecraft:gray_wool": {
- "protocol_id": 209
+ "protocol_id": 216
},
"minecraft:green_banner": {
- "protocol_id": 1146
+ "protocol_id": 1188
},
"minecraft:green_bed": {
- "protocol_id": 977
+ "protocol_id": 1017
+ },
+ "minecraft:green_bundle": {
+ "protocol_id": 968
},
"minecraft:green_candle": {
- "protocol_id": 1255
- },
- "minecraft:green_carpet": {
- "protocol_id": 459
- },
- "minecraft:green_concrete": {
- "protocol_id": 568
- },
- "minecraft:green_concrete_powder": {
- "protocol_id": 584
- },
- "minecraft:green_dye": {
- "protocol_id": 957
- },
- "minecraft:green_glazed_terracotta": {
- "protocol_id": 552
- },
- "minecraft:green_shulker_box": {
- "protocol_id": 536
- },
- "minecraft:green_stained_glass": {
- "protocol_id": 484
- },
- "minecraft:green_stained_glass_pane": {
- "protocol_id": 500
- },
- "minecraft:green_terracotta": {
- "protocol_id": 440
- },
- "minecraft:green_wool": {
- "protocol_id": 215
- },
- "minecraft:grindstone": {
- "protocol_id": 1210
- },
- "minecraft:guardian_spawn_egg": {
- "protocol_id": 1036
- },
- "minecraft:gunpowder": {
- "protocol_id": 852
- },
- "minecraft:guster_banner_pattern": {
- "protocol_id": 1202
- },
- "minecraft:guster_pottery_sherd": {
"protocol_id": 1298
},
- "minecraft:hanging_roots": {
- "protocol_id": 248
+ "minecraft:green_carpet": {
+ "protocol_id": 473
},
- "minecraft:hay_block": {
- "protocol_id": 445
+ "minecraft:green_concrete": {
+ "protocol_id": 582
},
- "minecraft:heart_of_the_sea": {
- "protocol_id": 1191
- },
- "minecraft:heart_pottery_sherd": {
- "protocol_id": 1299
- },
- "minecraft:heartbreak_pottery_sherd": {
- "protocol_id": 1300
- },
- "minecraft:heavy_core": {
- "protocol_id": 85
- },
- "minecraft:heavy_weighted_pressure_plate": {
- "protocol_id": 698
- },
- "minecraft:hoglin_spawn_egg": {
- "protocol_id": 1037
- },
- "minecraft:honey_block": {
- "protocol_id": 665
- },
- "minecraft:honey_bottle": {
- "protocol_id": 1224
- },
- "minecraft:honeycomb": {
- "protocol_id": 1221
- },
- "minecraft:honeycomb_block": {
- "protocol_id": 1225
- },
- "minecraft:hopper": {
- "protocol_id": 667
- },
- "minecraft:hopper_minecart": {
- "protocol_id": 770
- },
- "minecraft:horn_coral": {
- "protocol_id": 603
- },
- "minecraft:horn_coral_block": {
+ "minecraft:green_concrete_powder": {
"protocol_id": 598
},
+ "minecraft:green_dye": {
+ "protocol_id": 997
+ },
+ "minecraft:green_glazed_terracotta": {
+ "protocol_id": 566
+ },
+ "minecraft:green_shulker_box": {
+ "protocol_id": 550
+ },
+ "minecraft:green_stained_glass": {
+ "protocol_id": 498
+ },
+ "minecraft:green_stained_glass_pane": {
+ "protocol_id": 514
+ },
+ "minecraft:green_terracotta": {
+ "protocol_id": 454
+ },
+ "minecraft:green_wool": {
+ "protocol_id": 222
+ },
+ "minecraft:grindstone": {
+ "protocol_id": 1253
+ },
+ "minecraft:guardian_spawn_egg": {
+ "protocol_id": 1076
+ },
+ "minecraft:gunpowder": {
+ "protocol_id": 874
+ },
+ "minecraft:guster_banner_pattern": {
+ "protocol_id": 1243
+ },
+ "minecraft:guster_pottery_sherd": {
+ "protocol_id": 1341
+ },
+ "minecraft:hanging_roots": {
+ "protocol_id": 258
+ },
+ "minecraft:hay_block": {
+ "protocol_id": 459
+ },
+ "minecraft:heart_of_the_sea": {
+ "protocol_id": 1232
+ },
+ "minecraft:heart_pottery_sherd": {
+ "protocol_id": 1342
+ },
+ "minecraft:heartbreak_pottery_sherd": {
+ "protocol_id": 1343
+ },
+ "minecraft:heavy_core": {
+ "protocol_id": 87
+ },
+ "minecraft:heavy_weighted_pressure_plate": {
+ "protocol_id": 713
+ },
+ "minecraft:hoglin_spawn_egg": {
+ "protocol_id": 1077
+ },
+ "minecraft:honey_block": {
+ "protocol_id": 679
+ },
+ "minecraft:honey_bottle": {
+ "protocol_id": 1267
+ },
+ "minecraft:honeycomb": {
+ "protocol_id": 1264
+ },
+ "minecraft:honeycomb_block": {
+ "protocol_id": 1268
+ },
+ "minecraft:hopper": {
+ "protocol_id": 681
+ },
+ "minecraft:hopper_minecart": {
+ "protocol_id": 789
+ },
+ "minecraft:horn_coral": {
+ "protocol_id": 617
+ },
+ "minecraft:horn_coral_block": {
+ "protocol_id": 612
+ },
"minecraft:horn_coral_fan": {
- "protocol_id": 613
+ "protocol_id": 627
},
"minecraft:horse_spawn_egg": {
- "protocol_id": 1038
+ "protocol_id": 1078
},
"minecraft:host_armor_trim_smithing_template": {
- "protocol_id": 1285
+ "protocol_id": 1328
},
"minecraft:howl_pottery_sherd": {
- "protocol_id": 1301
+ "protocol_id": 1344
},
"minecraft:husk_spawn_egg": {
- "protocol_id": 1039
+ "protocol_id": 1079
},
"minecraft:ice": {
- "protocol_id": 306
+ "protocol_id": 318
},
"minecraft:infested_chiseled_stone_bricks": {
- "protocol_id": 338
+ "protocol_id": 351
},
"minecraft:infested_cobblestone": {
- "protocol_id": 334
+ "protocol_id": 347
},
"minecraft:infested_cracked_stone_bricks": {
- "protocol_id": 337
+ "protocol_id": 350
},
"minecraft:infested_deepslate": {
- "protocol_id": 339
+ "protocol_id": 352
},
"minecraft:infested_mossy_stone_bricks": {
- "protocol_id": 336
+ "protocol_id": 349
},
"minecraft:infested_stone": {
- "protocol_id": 333
+ "protocol_id": 346
},
"minecraft:infested_stone_bricks": {
- "protocol_id": 335
+ "protocol_id": 348
},
"minecraft:ink_sac": {
- "protocol_id": 941
+ "protocol_id": 981
},
"minecraft:iron_axe": {
- "protocol_id": 836
+ "protocol_id": 858
},
"minecraft:iron_bars": {
- "protocol_id": 355
+ "protocol_id": 368
},
"minecraft:iron_block": {
- "protocol_id": 88
+ "protocol_id": 90
},
"minecraft:iron_boots": {
- "protocol_id": 867
+ "protocol_id": 889
},
"minecraft:iron_chestplate": {
- "protocol_id": 865
+ "protocol_id": 887
},
"minecraft:iron_door": {
- "protocol_id": 710
+ "protocol_id": 726
},
"minecraft:iron_golem_spawn_egg": {
- "protocol_id": 1040
+ "protocol_id": 1080
},
"minecraft:iron_helmet": {
- "protocol_id": 864
+ "protocol_id": 886
},
"minecraft:iron_hoe": {
- "protocol_id": 837
+ "protocol_id": 859
},
"minecraft:iron_horse_armor": {
- "protocol_id": 1124
+ "protocol_id": 1166
},
"minecraft:iron_ingot": {
- "protocol_id": 811
- },
- "minecraft:iron_leggings": {
- "protocol_id": 866
- },
- "minecraft:iron_nugget": {
- "protocol_id": 1165
- },
- "minecraft:iron_ore": {
- "protocol_id": 64
- },
- "minecraft:iron_pickaxe": {
- "protocol_id": 835
- },
- "minecraft:iron_shovel": {
- "protocol_id": 834
- },
- "minecraft:iron_sword": {
"protocol_id": 833
},
+ "minecraft:iron_leggings": {
+ "protocol_id": 888
+ },
+ "minecraft:iron_nugget": {
+ "protocol_id": 1207
+ },
+ "minecraft:iron_ore": {
+ "protocol_id": 66
+ },
+ "minecraft:iron_pickaxe": {
+ "protocol_id": 857
+ },
+ "minecraft:iron_shovel": {
+ "protocol_id": 856
+ },
+ "minecraft:iron_sword": {
+ "protocol_id": 855
+ },
"minecraft:iron_trapdoor": {
- "protocol_id": 730
+ "protocol_id": 747
},
"minecraft:item_frame": {
- "protocol_id": 1094
+ "protocol_id": 1136
},
"minecraft:jack_o_lantern": {
- "protocol_id": 324
+ "protocol_id": 337
},
"minecraft:jigsaw": {
- "protocol_id": 793
+ "protocol_id": 815
},
"minecraft:jukebox": {
- "protocol_id": 310
+ "protocol_id": 322
},
"minecraft:jungle_boat": {
- "protocol_id": 780
+ "protocol_id": 800
},
"minecraft:jungle_button": {
- "protocol_id": 687
+ "protocol_id": 701
},
"minecraft:jungle_chest_boat": {
- "protocol_id": 781
+ "protocol_id": 801
},
"minecraft:jungle_door": {
- "protocol_id": 714
+ "protocol_id": 730
},
"minecraft:jungle_fence": {
- "protocol_id": 314
+ "protocol_id": 326
},
"minecraft:jungle_fence_gate": {
- "protocol_id": 753
+ "protocol_id": 771
},
"minecraft:jungle_hanging_sign": {
- "protocol_id": 900
+ "protocol_id": 923
},
"minecraft:jungle_leaves": {
- "protocol_id": 179
+ "protocol_id": 185
},
"minecraft:jungle_log": {
- "protocol_id": 135
+ "protocol_id": 137
},
"minecraft:jungle_planks": {
"protocol_id": 39
},
"minecraft:jungle_pressure_plate": {
- "protocol_id": 702
+ "protocol_id": 717
},
"minecraft:jungle_sapling": {
- "protocol_id": 51
+ "protocol_id": 52
},
"minecraft:jungle_sign": {
- "protocol_id": 889
+ "protocol_id": 911
},
"minecraft:jungle_slab": {
- "protocol_id": 255
+ "protocol_id": 265
},
"minecraft:jungle_stairs": {
- "protocol_id": 386
+ "protocol_id": 399
},
"minecraft:jungle_trapdoor": {
- "protocol_id": 734
+ "protocol_id": 751
},
"minecraft:jungle_wood": {
- "protocol_id": 169
+ "protocol_id": 174
},
"minecraft:kelp": {
- "protocol_id": 244
+ "protocol_id": 251
},
"minecraft:knowledge_book": {
- "protocol_id": 1166
+ "protocol_id": 1208
},
"minecraft:ladder": {
- "protocol_id": 303
+ "protocol_id": 315
},
"minecraft:lantern": {
- "protocol_id": 1214
+ "protocol_id": 1257
},
"minecraft:lapis_block": {
- "protocol_id": 190
+ "protocol_id": 197
},
"minecraft:lapis_lazuli": {
- "protocol_id": 807
+ "protocol_id": 829
},
"minecraft:lapis_ore": {
- "protocol_id": 74
+ "protocol_id": 76
},
"minecraft:large_amethyst_bud": {
- "protocol_id": 1260
+ "protocol_id": 1303
},
"minecraft:large_fern": {
- "protocol_id": 470
+ "protocol_id": 484
},
"minecraft:lava_bucket": {
- "protocol_id": 910
+ "protocol_id": 934
},
"minecraft:lead": {
- "protocol_id": 1128
+ "protocol_id": 1170
},
"minecraft:leather": {
- "protocol_id": 913
+ "protocol_id": 937
},
"minecraft:leather_boots": {
- "protocol_id": 859
+ "protocol_id": 881
},
"minecraft:leather_chestplate": {
- "protocol_id": 857
+ "protocol_id": 879
},
"minecraft:leather_helmet": {
- "protocol_id": 856
+ "protocol_id": 878
},
"minecraft:leather_horse_armor": {
- "protocol_id": 1127
+ "protocol_id": 1169
},
"minecraft:leather_leggings": {
- "protocol_id": 858
+ "protocol_id": 880
},
"minecraft:lectern": {
- "protocol_id": 670
+ "protocol_id": 684
},
"minecraft:lever": {
- "protocol_id": 672
+ "protocol_id": 686
},
"minecraft:light": {
- "protocol_id": 444
+ "protocol_id": 458
},
"minecraft:light_blue_banner": {
- "protocol_id": 1136
+ "protocol_id": 1178
},
"minecraft:light_blue_bed": {
- "protocol_id": 967
+ "protocol_id": 1007
+ },
+ "minecraft:light_blue_bundle": {
+ "protocol_id": 958
},
"minecraft:light_blue_candle": {
- "protocol_id": 1245
+ "protocol_id": 1288
},
"minecraft:light_blue_carpet": {
- "protocol_id": 449
+ "protocol_id": 463
},
"minecraft:light_blue_concrete": {
- "protocol_id": 558
+ "protocol_id": 572
},
"minecraft:light_blue_concrete_powder": {
- "protocol_id": 574
+ "protocol_id": 588
},
"minecraft:light_blue_dye": {
- "protocol_id": 947
- },
- "minecraft:light_blue_glazed_terracotta": {
- "protocol_id": 542
- },
- "minecraft:light_blue_shulker_box": {
- "protocol_id": 526
- },
- "minecraft:light_blue_stained_glass": {
- "protocol_id": 474
- },
- "minecraft:light_blue_stained_glass_pane": {
- "protocol_id": 490
- },
- "minecraft:light_blue_terracotta": {
- "protocol_id": 430
- },
- "minecraft:light_blue_wool": {
- "protocol_id": 205
- },
- "minecraft:light_gray_banner": {
- "protocol_id": 1141
- },
- "minecraft:light_gray_bed": {
- "protocol_id": 972
- },
- "minecraft:light_gray_candle": {
- "protocol_id": 1250
- },
- "minecraft:light_gray_carpet": {
- "protocol_id": 454
- },
- "minecraft:light_gray_concrete": {
- "protocol_id": 563
- },
- "minecraft:light_gray_concrete_powder": {
- "protocol_id": 579
- },
- "minecraft:light_gray_dye": {
- "protocol_id": 952
- },
- "minecraft:light_gray_glazed_terracotta": {
- "protocol_id": 547
- },
- "minecraft:light_gray_shulker_box": {
- "protocol_id": 531
- },
- "minecraft:light_gray_stained_glass": {
- "protocol_id": 479
- },
- "minecraft:light_gray_stained_glass_pane": {
- "protocol_id": 495
- },
- "minecraft:light_gray_terracotta": {
- "protocol_id": 435
- },
- "minecraft:light_gray_wool": {
- "protocol_id": 210
- },
- "minecraft:light_weighted_pressure_plate": {
- "protocol_id": 697
- },
- "minecraft:lightning_rod": {
- "protocol_id": 673
- },
- "minecraft:lilac": {
- "protocol_id": 466
- },
- "minecraft:lily_of_the_valley": {
- "protocol_id": 229
- },
- "minecraft:lily_pad": {
- "protocol_id": 365
- },
- "minecraft:lime_banner": {
- "protocol_id": 1138
- },
- "minecraft:lime_bed": {
- "protocol_id": 969
- },
- "minecraft:lime_candle": {
- "protocol_id": 1247
- },
- "minecraft:lime_carpet": {
- "protocol_id": 451
- },
- "minecraft:lime_concrete": {
- "protocol_id": 560
- },
- "minecraft:lime_concrete_powder": {
- "protocol_id": 576
- },
- "minecraft:lime_dye": {
- "protocol_id": 949
- },
- "minecraft:lime_glazed_terracotta": {
- "protocol_id": 544
- },
- "minecraft:lime_shulker_box": {
- "protocol_id": 528
- },
- "minecraft:lime_stained_glass": {
- "protocol_id": 476
- },
- "minecraft:lime_stained_glass_pane": {
- "protocol_id": 492
- },
- "minecraft:lime_terracotta": {
- "protocol_id": 432
- },
- "minecraft:lime_wool": {
- "protocol_id": 207
- },
- "minecraft:lingering_potion": {
- "protocol_id": 1161
- },
- "minecraft:llama_spawn_egg": {
- "protocol_id": 1041
- },
- "minecraft:lodestone": {
- "protocol_id": 1226
- },
- "minecraft:loom": {
- "protocol_id": 1194
- },
- "minecraft:mace": {
- "protocol_id": 1093
- },
- "minecraft:magenta_banner": {
- "protocol_id": 1135
- },
- "minecraft:magenta_bed": {
- "protocol_id": 966
- },
- "minecraft:magenta_candle": {
- "protocol_id": 1244
- },
- "minecraft:magenta_carpet": {
- "protocol_id": 448
- },
- "minecraft:magenta_concrete": {
- "protocol_id": 557
- },
- "minecraft:magenta_concrete_powder": {
- "protocol_id": 573
- },
- "minecraft:magenta_dye": {
- "protocol_id": 946
- },
- "minecraft:magenta_glazed_terracotta": {
- "protocol_id": 541
- },
- "minecraft:magenta_shulker_box": {
- "protocol_id": 525
- },
- "minecraft:magenta_stained_glass": {
- "protocol_id": 473
- },
- "minecraft:magenta_stained_glass_pane": {
- "protocol_id": 489
- },
- "minecraft:magenta_terracotta": {
- "protocol_id": 429
- },
- "minecraft:magenta_wool": {
- "protocol_id": 204
- },
- "minecraft:magma_block": {
- "protocol_id": 516
- },
- "minecraft:magma_cream": {
- "protocol_id": 1003
- },
- "minecraft:magma_cube_spawn_egg": {
- "protocol_id": 1042
- },
- "minecraft:mangrove_boat": {
- "protocol_id": 788
- },
- "minecraft:mangrove_button": {
- "protocol_id": 691
- },
- "minecraft:mangrove_chest_boat": {
- "protocol_id": 789
- },
- "minecraft:mangrove_door": {
- "protocol_id": 718
- },
- "minecraft:mangrove_fence": {
- "protocol_id": 318
- },
- "minecraft:mangrove_fence_gate": {
- "protocol_id": 757
- },
- "minecraft:mangrove_hanging_sign": {
- "protocol_id": 904
- },
- "minecraft:mangrove_leaves": {
- "protocol_id": 183
- },
- "minecraft:mangrove_log": {
- "protocol_id": 139
- },
- "minecraft:mangrove_planks": {
- "protocol_id": 43
- },
- "minecraft:mangrove_pressure_plate": {
- "protocol_id": 706
- },
- "minecraft:mangrove_propagule": {
- "protocol_id": 55
- },
- "minecraft:mangrove_roots": {
- "protocol_id": 140
- },
- "minecraft:mangrove_sign": {
- "protocol_id": 893
- },
- "minecraft:mangrove_slab": {
- "protocol_id": 259
- },
- "minecraft:mangrove_stairs": {
- "protocol_id": 390
- },
- "minecraft:mangrove_trapdoor": {
- "protocol_id": 738
- },
- "minecraft:mangrove_wood": {
- "protocol_id": 173
- },
- "minecraft:map": {
- "protocol_id": 1101
- },
- "minecraft:medium_amethyst_bud": {
- "protocol_id": 1259
- },
- "minecraft:melon": {
- "protocol_id": 358
- },
- "minecraft:melon_seeds": {
"protocol_id": 987
},
- "minecraft:melon_slice": {
- "protocol_id": 984
+ "minecraft:light_blue_glazed_terracotta": {
+ "protocol_id": 556
},
- "minecraft:milk_bucket": {
- "protocol_id": 914
+ "minecraft:light_blue_shulker_box": {
+ "protocol_id": 540
},
- "minecraft:minecart": {
- "protocol_id": 766
+ "minecraft:light_blue_stained_glass": {
+ "protocol_id": 488
},
- "minecraft:miner_pottery_sherd": {
- "protocol_id": 1302
+ "minecraft:light_blue_stained_glass_pane": {
+ "protocol_id": 504
},
- "minecraft:mojang_banner_pattern": {
- "protocol_id": 1198
+ "minecraft:light_blue_terracotta": {
+ "protocol_id": 444
},
- "minecraft:mooshroom_spawn_egg": {
+ "minecraft:light_blue_wool": {
+ "protocol_id": 212
+ },
+ "minecraft:light_gray_banner": {
+ "protocol_id": 1183
+ },
+ "minecraft:light_gray_bed": {
+ "protocol_id": 1012
+ },
+ "minecraft:light_gray_bundle": {
+ "protocol_id": 963
+ },
+ "minecraft:light_gray_candle": {
+ "protocol_id": 1293
+ },
+ "minecraft:light_gray_carpet": {
+ "protocol_id": 468
+ },
+ "minecraft:light_gray_concrete": {
+ "protocol_id": 577
+ },
+ "minecraft:light_gray_concrete_powder": {
+ "protocol_id": 593
+ },
+ "minecraft:light_gray_dye": {
+ "protocol_id": 992
+ },
+ "minecraft:light_gray_glazed_terracotta": {
+ "protocol_id": 561
+ },
+ "minecraft:light_gray_shulker_box": {
+ "protocol_id": 545
+ },
+ "minecraft:light_gray_stained_glass": {
+ "protocol_id": 493
+ },
+ "minecraft:light_gray_stained_glass_pane": {
+ "protocol_id": 509
+ },
+ "minecraft:light_gray_terracotta": {
+ "protocol_id": 449
+ },
+ "minecraft:light_gray_wool": {
+ "protocol_id": 217
+ },
+ "minecraft:light_weighted_pressure_plate": {
+ "protocol_id": 712
+ },
+ "minecraft:lightning_rod": {
+ "protocol_id": 687
+ },
+ "minecraft:lilac": {
+ "protocol_id": 480
+ },
+ "minecraft:lily_of_the_valley": {
+ "protocol_id": 236
+ },
+ "minecraft:lily_pad": {
+ "protocol_id": 378
+ },
+ "minecraft:lime_banner": {
+ "protocol_id": 1180
+ },
+ "minecraft:lime_bed": {
+ "protocol_id": 1009
+ },
+ "minecraft:lime_bundle": {
+ "protocol_id": 960
+ },
+ "minecraft:lime_candle": {
+ "protocol_id": 1290
+ },
+ "minecraft:lime_carpet": {
+ "protocol_id": 465
+ },
+ "minecraft:lime_concrete": {
+ "protocol_id": 574
+ },
+ "minecraft:lime_concrete_powder": {
+ "protocol_id": 590
+ },
+ "minecraft:lime_dye": {
+ "protocol_id": 989
+ },
+ "minecraft:lime_glazed_terracotta": {
+ "protocol_id": 558
+ },
+ "minecraft:lime_shulker_box": {
+ "protocol_id": 542
+ },
+ "minecraft:lime_stained_glass": {
+ "protocol_id": 490
+ },
+ "minecraft:lime_stained_glass_pane": {
+ "protocol_id": 506
+ },
+ "minecraft:lime_terracotta": {
+ "protocol_id": 446
+ },
+ "minecraft:lime_wool": {
+ "protocol_id": 214
+ },
+ "minecraft:lingering_potion": {
+ "protocol_id": 1203
+ },
+ "minecraft:llama_spawn_egg": {
+ "protocol_id": 1081
+ },
+ "minecraft:lodestone": {
+ "protocol_id": 1269
+ },
+ "minecraft:loom": {
+ "protocol_id": 1235
+ },
+ "minecraft:mace": {
+ "protocol_id": 1135
+ },
+ "minecraft:magenta_banner": {
+ "protocol_id": 1177
+ },
+ "minecraft:magenta_bed": {
+ "protocol_id": 1006
+ },
+ "minecraft:magenta_bundle": {
+ "protocol_id": 957
+ },
+ "minecraft:magenta_candle": {
+ "protocol_id": 1287
+ },
+ "minecraft:magenta_carpet": {
+ "protocol_id": 462
+ },
+ "minecraft:magenta_concrete": {
+ "protocol_id": 571
+ },
+ "minecraft:magenta_concrete_powder": {
+ "protocol_id": 587
+ },
+ "minecraft:magenta_dye": {
+ "protocol_id": 986
+ },
+ "minecraft:magenta_glazed_terracotta": {
+ "protocol_id": 555
+ },
+ "minecraft:magenta_shulker_box": {
+ "protocol_id": 539
+ },
+ "minecraft:magenta_stained_glass": {
+ "protocol_id": 487
+ },
+ "minecraft:magenta_stained_glass_pane": {
+ "protocol_id": 503
+ },
+ "minecraft:magenta_terracotta": {
+ "protocol_id": 443
+ },
+ "minecraft:magenta_wool": {
+ "protocol_id": 211
+ },
+ "minecraft:magma_block": {
+ "protocol_id": 530
+ },
+ "minecraft:magma_cream": {
"protocol_id": 1043
},
+ "minecraft:magma_cube_spawn_egg": {
+ "protocol_id": 1082
+ },
+ "minecraft:mangrove_boat": {
+ "protocol_id": 810
+ },
+ "minecraft:mangrove_button": {
+ "protocol_id": 706
+ },
+ "minecraft:mangrove_chest_boat": {
+ "protocol_id": 811
+ },
+ "minecraft:mangrove_door": {
+ "protocol_id": 735
+ },
+ "minecraft:mangrove_fence": {
+ "protocol_id": 331
+ },
+ "minecraft:mangrove_fence_gate": {
+ "protocol_id": 776
+ },
+ "minecraft:mangrove_hanging_sign": {
+ "protocol_id": 928
+ },
+ "minecraft:mangrove_leaves": {
+ "protocol_id": 190
+ },
+ "minecraft:mangrove_log": {
+ "protocol_id": 142
+ },
+ "minecraft:mangrove_planks": {
+ "protocol_id": 44
+ },
+ "minecraft:mangrove_pressure_plate": {
+ "protocol_id": 722
+ },
+ "minecraft:mangrove_propagule": {
+ "protocol_id": 57
+ },
+ "minecraft:mangrove_roots": {
+ "protocol_id": 143
+ },
+ "minecraft:mangrove_sign": {
+ "protocol_id": 916
+ },
+ "minecraft:mangrove_slab": {
+ "protocol_id": 270
+ },
+ "minecraft:mangrove_stairs": {
+ "protocol_id": 404
+ },
+ "minecraft:mangrove_trapdoor": {
+ "protocol_id": 756
+ },
+ "minecraft:mangrove_wood": {
+ "protocol_id": 179
+ },
+ "minecraft:map": {
+ "protocol_id": 1143
+ },
+ "minecraft:medium_amethyst_bud": {
+ "protocol_id": 1302
+ },
+ "minecraft:melon": {
+ "protocol_id": 371
+ },
+ "minecraft:melon_seeds": {
+ "protocol_id": 1027
+ },
+ "minecraft:melon_slice": {
+ "protocol_id": 1024
+ },
+ "minecraft:milk_bucket": {
+ "protocol_id": 938
+ },
+ "minecraft:minecart": {
+ "protocol_id": 785
+ },
+ "minecraft:miner_pottery_sherd": {
+ "protocol_id": 1345
+ },
+ "minecraft:mojang_banner_pattern": {
+ "protocol_id": 1239
+ },
+ "minecraft:mooshroom_spawn_egg": {
+ "protocol_id": 1083
+ },
"minecraft:moss_block": {
- "protocol_id": 247
+ "protocol_id": 254
},
"minecraft:moss_carpet": {
- "protocol_id": 245
+ "protocol_id": 253
},
"minecraft:mossy_cobblestone": {
- "protocol_id": 289
+ "protocol_id": 300
},
"minecraft:mossy_cobblestone_slab": {
- "protocol_id": 643
+ "protocol_id": 657
},
"minecraft:mossy_cobblestone_stairs": {
- "protocol_id": 625
+ "protocol_id": 639
},
"minecraft:mossy_cobblestone_wall": {
- "protocol_id": 398
+ "protocol_id": 412
},
"minecraft:mossy_stone_brick_slab": {
- "protocol_id": 641
+ "protocol_id": 655
},
"minecraft:mossy_stone_brick_stairs": {
- "protocol_id": 623
+ "protocol_id": 637
},
"minecraft:mossy_stone_brick_wall": {
- "protocol_id": 402
+ "protocol_id": 416
},
"minecraft:mossy_stone_bricks": {
- "protocol_id": 341
+ "protocol_id": 354
},
"minecraft:mourner_pottery_sherd": {
- "protocol_id": 1303
+ "protocol_id": 1346
},
"minecraft:mud": {
"protocol_id": 32
},
"minecraft:mud_brick_slab": {
- "protocol_id": 272
+ "protocol_id": 283
},
"minecraft:mud_brick_stairs": {
- "protocol_id": 363
+ "protocol_id": 376
},
"minecraft:mud_brick_wall": {
- "protocol_id": 405
+ "protocol_id": 419
},
"minecraft:mud_bricks": {
- "protocol_id": 345
+ "protocol_id": 358
},
"minecraft:muddy_mangrove_roots": {
- "protocol_id": 141
+ "protocol_id": 144
},
"minecraft:mule_spawn_egg": {
- "protocol_id": 1044
+ "protocol_id": 1084
},
"minecraft:mushroom_stem": {
- "protocol_id": 354
+ "protocol_id": 367
},
"minecraft:mushroom_stew": {
- "protocol_id": 849
+ "protocol_id": 871
},
"minecraft:music_disc_11": {
- "protocol_id": 1180
+ "protocol_id": 1222
},
"minecraft:music_disc_13": {
- "protocol_id": 1168
+ "protocol_id": 1210
},
"minecraft:music_disc_5": {
- "protocol_id": 1184
+ "protocol_id": 1226
},
"minecraft:music_disc_blocks": {
- "protocol_id": 1170
+ "protocol_id": 1212
},
"minecraft:music_disc_cat": {
- "protocol_id": 1169
+ "protocol_id": 1211
},
"minecraft:music_disc_chirp": {
- "protocol_id": 1171
+ "protocol_id": 1213
},
"minecraft:music_disc_creator": {
- "protocol_id": 1172
+ "protocol_id": 1214
},
"minecraft:music_disc_creator_music_box": {
- "protocol_id": 1173
+ "protocol_id": 1215
},
"minecraft:music_disc_far": {
- "protocol_id": 1174
+ "protocol_id": 1216
},
"minecraft:music_disc_mall": {
- "protocol_id": 1175
+ "protocol_id": 1217
},
"minecraft:music_disc_mellohi": {
- "protocol_id": 1176
+ "protocol_id": 1218
},
"minecraft:music_disc_otherside": {
- "protocol_id": 1182
+ "protocol_id": 1224
},
"minecraft:music_disc_pigstep": {
- "protocol_id": 1185
+ "protocol_id": 1227
},
"minecraft:music_disc_precipice": {
- "protocol_id": 1186
+ "protocol_id": 1228
},
"minecraft:music_disc_relic": {
- "protocol_id": 1183
+ "protocol_id": 1225
},
"minecraft:music_disc_stal": {
- "protocol_id": 1177
+ "protocol_id": 1219
},
"minecraft:music_disc_strad": {
- "protocol_id": 1178
+ "protocol_id": 1220
},
"minecraft:music_disc_wait": {
- "protocol_id": 1181
+ "protocol_id": 1223
},
"minecraft:music_disc_ward": {
- "protocol_id": 1179
+ "protocol_id": 1221
},
"minecraft:mutton": {
- "protocol_id": 1131
+ "protocol_id": 1173
},
"minecraft:mycelium": {
- "protocol_id": 364
+ "protocol_id": 377
},
"minecraft:name_tag": {
- "protocol_id": 1129
+ "protocol_id": 1171
},
"minecraft:nautilus_shell": {
- "protocol_id": 1190
+ "protocol_id": 1231
},
"minecraft:nether_brick": {
- "protocol_id": 1115
+ "protocol_id": 1157
},
"minecraft:nether_brick_fence": {
- "protocol_id": 369
+ "protocol_id": 382
},
"minecraft:nether_brick_slab": {
- "protocol_id": 273
+ "protocol_id": 284
},
"minecraft:nether_brick_stairs": {
- "protocol_id": 370
+ "protocol_id": 383
},
"minecraft:nether_brick_wall": {
- "protocol_id": 406
+ "protocol_id": 420
},
"minecraft:nether_bricks": {
- "protocol_id": 366
+ "protocol_id": 379
},
"minecraft:nether_gold_ore": {
- "protocol_id": 78
+ "protocol_id": 80
},
"minecraft:nether_quartz_ore": {
- "protocol_id": 79
+ "protocol_id": 81
},
"minecraft:nether_sprouts": {
- "protocol_id": 240
+ "protocol_id": 247
},
"minecraft:nether_star": {
- "protocol_id": 1110
+ "protocol_id": 1152
},
"minecraft:nether_wart": {
- "protocol_id": 997
+ "protocol_id": 1037
},
"minecraft:nether_wart_block": {
- "protocol_id": 517
+ "protocol_id": 531
},
"minecraft:netherite_axe": {
- "protocol_id": 846
+ "protocol_id": 868
},
"minecraft:netherite_block": {
- "protocol_id": 92
+ "protocol_id": 94
},
"minecraft:netherite_boots": {
- "protocol_id": 879
+ "protocol_id": 901
},
"minecraft:netherite_chestplate": {
- "protocol_id": 877
+ "protocol_id": 899
},
"minecraft:netherite_helmet": {
- "protocol_id": 876
+ "protocol_id": 898
},
"minecraft:netherite_hoe": {
- "protocol_id": 847
+ "protocol_id": 869
},
"minecraft:netherite_ingot": {
- "protocol_id": 816
+ "protocol_id": 838
},
"minecraft:netherite_leggings": {
- "protocol_id": 878
+ "protocol_id": 900
},
"minecraft:netherite_pickaxe": {
- "protocol_id": 845
+ "protocol_id": 867
},
"minecraft:netherite_scrap": {
- "protocol_id": 817
+ "protocol_id": 839
},
"minecraft:netherite_shovel": {
- "protocol_id": 844
+ "protocol_id": 866
},
"minecraft:netherite_sword": {
- "protocol_id": 843
+ "protocol_id": 865
},
"minecraft:netherite_upgrade_smithing_template": {
- "protocol_id": 1269
+ "protocol_id": 1312
},
"minecraft:netherrack": {
- "protocol_id": 325
+ "protocol_id": 338
},
"minecraft:note_block": {
- "protocol_id": 681
+ "protocol_id": 695
},
"minecraft:oak_boat": {
- "protocol_id": 774
+ "protocol_id": 794
},
"minecraft:oak_button": {
- "protocol_id": 684
+ "protocol_id": 698
},
"minecraft:oak_chest_boat": {
- "protocol_id": 775
+ "protocol_id": 795
},
"minecraft:oak_door": {
- "protocol_id": 711
+ "protocol_id": 727
},
"minecraft:oak_fence": {
- "protocol_id": 311
+ "protocol_id": 323
},
"minecraft:oak_fence_gate": {
- "protocol_id": 750
+ "protocol_id": 768
},
"minecraft:oak_hanging_sign": {
- "protocol_id": 897
+ "protocol_id": 920
},
"minecraft:oak_leaves": {
- "protocol_id": 176
+ "protocol_id": 182
},
"minecraft:oak_log": {
- "protocol_id": 132
+ "protocol_id": 134
},
"minecraft:oak_planks": {
"protocol_id": 36
},
"minecraft:oak_pressure_plate": {
- "protocol_id": 699
+ "protocol_id": 714
},
"minecraft:oak_sapling": {
- "protocol_id": 48
+ "protocol_id": 49
},
"minecraft:oak_sign": {
- "protocol_id": 886
+ "protocol_id": 908
},
"minecraft:oak_slab": {
- "protocol_id": 252
+ "protocol_id": 262
},
"minecraft:oak_stairs": {
- "protocol_id": 383
+ "protocol_id": 396
},
"minecraft:oak_trapdoor": {
- "protocol_id": 731
+ "protocol_id": 748
},
"minecraft:oak_wood": {
- "protocol_id": 166
+ "protocol_id": 171
},
"minecraft:observer": {
- "protocol_id": 666
+ "protocol_id": 680
},
"minecraft:obsidian": {
- "protocol_id": 290
+ "protocol_id": 301
},
"minecraft:ocelot_spawn_egg": {
- "protocol_id": 1045
+ "protocol_id": 1085
},
"minecraft:ochre_froglight": {
- "protocol_id": 1263
+ "protocol_id": 1306
},
"minecraft:ominous_bottle": {
- "protocol_id": 1331
+ "protocol_id": 1374
},
"minecraft:ominous_trial_key": {
- "protocol_id": 1329
+ "protocol_id": 1372
},
"minecraft:orange_banner": {
- "protocol_id": 1134
+ "protocol_id": 1176
},
"minecraft:orange_bed": {
- "protocol_id": 965
+ "protocol_id": 1005
+ },
+ "minecraft:orange_bundle": {
+ "protocol_id": 956
},
"minecraft:orange_candle": {
- "protocol_id": 1243
+ "protocol_id": 1286
},
"minecraft:orange_carpet": {
- "protocol_id": 447
+ "protocol_id": 461
},
"minecraft:orange_concrete": {
- "protocol_id": 556
+ "protocol_id": 570
},
"minecraft:orange_concrete_powder": {
- "protocol_id": 572
+ "protocol_id": 586
},
"minecraft:orange_dye": {
- "protocol_id": 945
+ "protocol_id": 985
},
"minecraft:orange_glazed_terracotta": {
- "protocol_id": 540
+ "protocol_id": 554
},
"minecraft:orange_shulker_box": {
- "protocol_id": 524
+ "protocol_id": 538
},
"minecraft:orange_stained_glass": {
- "protocol_id": 472
+ "protocol_id": 486
},
"minecraft:orange_stained_glass_pane": {
- "protocol_id": 488
+ "protocol_id": 502
},
"minecraft:orange_terracotta": {
- "protocol_id": 428
+ "protocol_id": 442
},
"minecraft:orange_tulip": {
- "protocol_id": 224
+ "protocol_id": 231
},
"minecraft:orange_wool": {
- "protocol_id": 203
+ "protocol_id": 210
},
"minecraft:oxeye_daisy": {
- "protocol_id": 227
+ "protocol_id": 234
},
"minecraft:oxidized_chiseled_copper": {
- "protocol_id": 99
+ "protocol_id": 101
},
"minecraft:oxidized_copper": {
- "protocol_id": 95
+ "protocol_id": 97
},
"minecraft:oxidized_copper_bulb": {
- "protocol_id": 1322
+ "protocol_id": 1365
},
"minecraft:oxidized_copper_door": {
- "protocol_id": 725
+ "protocol_id": 742
},
"minecraft:oxidized_copper_grate": {
- "protocol_id": 1314
+ "protocol_id": 1357
},
"minecraft:oxidized_copper_trapdoor": {
- "protocol_id": 745
+ "protocol_id": 763
},
"minecraft:oxidized_cut_copper": {
- "protocol_id": 103
+ "protocol_id": 105
},
"minecraft:oxidized_cut_copper_slab": {
- "protocol_id": 111
+ "protocol_id": 113
},
"minecraft:oxidized_cut_copper_stairs": {
- "protocol_id": 107
+ "protocol_id": 109
},
"minecraft:packed_ice": {
- "protocol_id": 463
- },
- "minecraft:packed_mud": {
- "protocol_id": 344
- },
- "minecraft:painting": {
- "protocol_id": 883
- },
- "minecraft:panda_spawn_egg": {
- "protocol_id": 1046
- },
- "minecraft:paper": {
- "protocol_id": 924
- },
- "minecraft:parrot_spawn_egg": {
- "protocol_id": 1047
- },
- "minecraft:pearlescent_froglight": {
- "protocol_id": 1265
- },
- "minecraft:peony": {
- "protocol_id": 468
- },
- "minecraft:petrified_oak_slab": {
- "protocol_id": 268
- },
- "minecraft:phantom_membrane": {
- "protocol_id": 1189
- },
- "minecraft:phantom_spawn_egg": {
- "protocol_id": 1048
- },
- "minecraft:pig_spawn_egg": {
- "protocol_id": 1049
- },
- "minecraft:piglin_banner_pattern": {
- "protocol_id": 1200
- },
- "minecraft:piglin_brute_spawn_egg": {
- "protocol_id": 1051
- },
- "minecraft:piglin_head": {
- "protocol_id": 1109
- },
- "minecraft:piglin_spawn_egg": {
- "protocol_id": 1050
- },
- "minecraft:pillager_spawn_egg": {
- "protocol_id": 1052
- },
- "minecraft:pink_banner": {
- "protocol_id": 1139
- },
- "minecraft:pink_bed": {
- "protocol_id": 970
- },
- "minecraft:pink_candle": {
- "protocol_id": 1248
- },
- "minecraft:pink_carpet": {
- "protocol_id": 452
- },
- "minecraft:pink_concrete": {
- "protocol_id": 561
- },
- "minecraft:pink_concrete_powder": {
- "protocol_id": 577
- },
- "minecraft:pink_dye": {
- "protocol_id": 950
- },
- "minecraft:pink_glazed_terracotta": {
- "protocol_id": 545
- },
- "minecraft:pink_petals": {
- "protocol_id": 246
- },
- "minecraft:pink_shulker_box": {
- "protocol_id": 529
- },
- "minecraft:pink_stained_glass": {
"protocol_id": 477
},
+ "minecraft:packed_mud": {
+ "protocol_id": 357
+ },
+ "minecraft:painting": {
+ "protocol_id": 905
+ },
+ "minecraft:pale_hanging_moss": {
+ "protocol_id": 256
+ },
+ "minecraft:pale_moss_block": {
+ "protocol_id": 257
+ },
+ "minecraft:pale_moss_carpet": {
+ "protocol_id": 255
+ },
+ "minecraft:pale_oak_boat": {
+ "protocol_id": 808
+ },
+ "minecraft:pale_oak_button": {
+ "protocol_id": 705
+ },
+ "minecraft:pale_oak_chest_boat": {
+ "protocol_id": 809
+ },
+ "minecraft:pale_oak_door": {
+ "protocol_id": 734
+ },
+ "minecraft:pale_oak_fence": {
+ "protocol_id": 330
+ },
+ "minecraft:pale_oak_fence_gate": {
+ "protocol_id": 775
+ },
+ "minecraft:pale_oak_hanging_sign": {
+ "protocol_id": 927
+ },
+ "minecraft:pale_oak_leaves": {
+ "protocol_id": 189
+ },
+ "minecraft:pale_oak_log": {
+ "protocol_id": 140
+ },
+ "minecraft:pale_oak_planks": {
+ "protocol_id": 43
+ },
+ "minecraft:pale_oak_pressure_plate": {
+ "protocol_id": 721
+ },
+ "minecraft:pale_oak_sapling": {
+ "protocol_id": 56
+ },
+ "minecraft:pale_oak_sign": {
+ "protocol_id": 915
+ },
+ "minecraft:pale_oak_slab": {
+ "protocol_id": 269
+ },
+ "minecraft:pale_oak_stairs": {
+ "protocol_id": 403
+ },
+ "minecraft:pale_oak_trapdoor": {
+ "protocol_id": 755
+ },
+ "minecraft:pale_oak_wood": {
+ "protocol_id": 177
+ },
+ "minecraft:panda_spawn_egg": {
+ "protocol_id": 1086
+ },
+ "minecraft:paper": {
+ "protocol_id": 948
+ },
+ "minecraft:parrot_spawn_egg": {
+ "protocol_id": 1087
+ },
+ "minecraft:pearlescent_froglight": {
+ "protocol_id": 1308
+ },
+ "minecraft:peony": {
+ "protocol_id": 482
+ },
+ "minecraft:petrified_oak_slab": {
+ "protocol_id": 279
+ },
+ "minecraft:phantom_membrane": {
+ "protocol_id": 792
+ },
+ "minecraft:phantom_spawn_egg": {
+ "protocol_id": 1088
+ },
+ "minecraft:pig_spawn_egg": {
+ "protocol_id": 1089
+ },
+ "minecraft:piglin_banner_pattern": {
+ "protocol_id": 1241
+ },
+ "minecraft:piglin_brute_spawn_egg": {
+ "protocol_id": 1091
+ },
+ "minecraft:piglin_head": {
+ "protocol_id": 1151
+ },
+ "minecraft:piglin_spawn_egg": {
+ "protocol_id": 1090
+ },
+ "minecraft:pillager_spawn_egg": {
+ "protocol_id": 1092
+ },
+ "minecraft:pink_banner": {
+ "protocol_id": 1181
+ },
+ "minecraft:pink_bed": {
+ "protocol_id": 1010
+ },
+ "minecraft:pink_bundle": {
+ "protocol_id": 961
+ },
+ "minecraft:pink_candle": {
+ "protocol_id": 1291
+ },
+ "minecraft:pink_carpet": {
+ "protocol_id": 466
+ },
+ "minecraft:pink_concrete": {
+ "protocol_id": 575
+ },
+ "minecraft:pink_concrete_powder": {
+ "protocol_id": 591
+ },
+ "minecraft:pink_dye": {
+ "protocol_id": 990
+ },
+ "minecraft:pink_glazed_terracotta": {
+ "protocol_id": 559
+ },
+ "minecraft:pink_petals": {
+ "protocol_id": 252
+ },
+ "minecraft:pink_shulker_box": {
+ "protocol_id": 543
+ },
+ "minecraft:pink_stained_glass": {
+ "protocol_id": 491
+ },
"minecraft:pink_stained_glass_pane": {
- "protocol_id": 493
+ "protocol_id": 507
},
"minecraft:pink_terracotta": {
- "protocol_id": 433
+ "protocol_id": 447
},
"minecraft:pink_tulip": {
- "protocol_id": 226
+ "protocol_id": 233
},
"minecraft:pink_wool": {
- "protocol_id": 208
+ "protocol_id": 215
},
"minecraft:piston": {
- "protocol_id": 662
+ "protocol_id": 676
},
"minecraft:pitcher_plant": {
- "protocol_id": 232
+ "protocol_id": 239
},
"minecraft:pitcher_pod": {
- "protocol_id": 1153
+ "protocol_id": 1195
},
"minecraft:player_head": {
- "protocol_id": 1105
+ "protocol_id": 1147
},
"minecraft:plenty_pottery_sherd": {
- "protocol_id": 1304
+ "protocol_id": 1347
},
"minecraft:podzol": {
"protocol_id": 30
},
"minecraft:pointed_dripstone": {
- "protocol_id": 1262
+ "protocol_id": 1305
},
"minecraft:poisonous_potato": {
- "protocol_id": 1100
+ "protocol_id": 1142
},
"minecraft:polar_bear_spawn_egg": {
- "protocol_id": 1053
+ "protocol_id": 1093
},
"minecraft:polished_andesite": {
"protocol_id": 7
},
"minecraft:polished_andesite_slab": {
- "protocol_id": 650
+ "protocol_id": 664
},
"minecraft:polished_andesite_stairs": {
- "protocol_id": 633
+ "protocol_id": 647
},
"minecraft:polished_basalt": {
- "protocol_id": 329
+ "protocol_id": 342
},
"minecraft:polished_blackstone": {
- "protocol_id": 1232
+ "protocol_id": 1275
},
"minecraft:polished_blackstone_brick_slab": {
- "protocol_id": 1237
+ "protocol_id": 1280
},
"minecraft:polished_blackstone_brick_stairs": {
- "protocol_id": 1238
+ "protocol_id": 1281
},
"minecraft:polished_blackstone_brick_wall": {
- "protocol_id": 414
+ "protocol_id": 428
},
"minecraft:polished_blackstone_bricks": {
- "protocol_id": 1236
+ "protocol_id": 1279
},
"minecraft:polished_blackstone_button": {
- "protocol_id": 683
+ "protocol_id": 697
},
"minecraft:polished_blackstone_pressure_plate": {
- "protocol_id": 696
+ "protocol_id": 711
},
"minecraft:polished_blackstone_slab": {
- "protocol_id": 1233
+ "protocol_id": 1276
},
"minecraft:polished_blackstone_stairs": {
- "protocol_id": 1234
+ "protocol_id": 1277
},
"minecraft:polished_blackstone_wall": {
- "protocol_id": 413
+ "protocol_id": 427
},
"minecraft:polished_deepslate": {
"protocol_id": 10
},
"minecraft:polished_deepslate_slab": {
- "protocol_id": 653
+ "protocol_id": 667
},
"minecraft:polished_deepslate_stairs": {
- "protocol_id": 636
+ "protocol_id": 650
},
"minecraft:polished_deepslate_wall": {
- "protocol_id": 416
+ "protocol_id": 430
},
"minecraft:polished_diorite": {
"protocol_id": 5
},
"minecraft:polished_diorite_slab": {
- "protocol_id": 642
+ "protocol_id": 656
},
"minecraft:polished_diorite_stairs": {
- "protocol_id": 624
+ "protocol_id": 638
},
"minecraft:polished_granite": {
"protocol_id": 3
},
"minecraft:polished_granite_slab": {
- "protocol_id": 639
+ "protocol_id": 653
},
"minecraft:polished_granite_stairs": {
- "protocol_id": 621
+ "protocol_id": 635
},
"minecraft:polished_tuff": {
"protocol_id": 17
@@ -8856,820 +9103,832 @@
"protocol_id": 20
},
"minecraft:popped_chorus_fruit": {
- "protocol_id": 1151
+ "protocol_id": 1193
},
"minecraft:poppy": {
- "protocol_id": 219
+ "protocol_id": 226
},
"minecraft:porkchop": {
- "protocol_id": 881
+ "protocol_id": 903
},
"minecraft:potato": {
- "protocol_id": 1098
+ "protocol_id": 1140
},
"minecraft:potion": {
- "protocol_id": 998
+ "protocol_id": 1039
},
"minecraft:powder_snow_bucket": {
- "protocol_id": 911
+ "protocol_id": 935
},
"minecraft:powered_rail": {
- "protocol_id": 761
+ "protocol_id": 780
},
"minecraft:prismarine": {
- "protocol_id": 503
+ "protocol_id": 517
},
"minecraft:prismarine_brick_slab": {
- "protocol_id": 279
+ "protocol_id": 290
},
"minecraft:prismarine_brick_stairs": {
- "protocol_id": 507
+ "protocol_id": 521
},
"minecraft:prismarine_bricks": {
- "protocol_id": 504
+ "protocol_id": 518
},
"minecraft:prismarine_crystals": {
- "protocol_id": 1117
+ "protocol_id": 1159
},
"minecraft:prismarine_shard": {
- "protocol_id": 1116
+ "protocol_id": 1158
},
"minecraft:prismarine_slab": {
- "protocol_id": 278
+ "protocol_id": 289
},
"minecraft:prismarine_stairs": {
- "protocol_id": 506
+ "protocol_id": 520
},
"minecraft:prismarine_wall": {
- "protocol_id": 400
+ "protocol_id": 414
},
"minecraft:prize_pottery_sherd": {
- "protocol_id": 1305
+ "protocol_id": 1348
},
"minecraft:pufferfish": {
- "protocol_id": 938
- },
- "minecraft:pufferfish_bucket": {
- "protocol_id": 915
- },
- "minecraft:pufferfish_spawn_egg": {
- "protocol_id": 1054
- },
- "minecraft:pumpkin": {
- "protocol_id": 322
- },
- "minecraft:pumpkin_pie": {
- "protocol_id": 1111
- },
- "minecraft:pumpkin_seeds": {
- "protocol_id": 986
- },
- "minecraft:purple_banner": {
- "protocol_id": 1143
- },
- "minecraft:purple_bed": {
- "protocol_id": 974
- },
- "minecraft:purple_candle": {
- "protocol_id": 1252
- },
- "minecraft:purple_carpet": {
- "protocol_id": 456
- },
- "minecraft:purple_concrete": {
- "protocol_id": 565
- },
- "minecraft:purple_concrete_powder": {
- "protocol_id": 581
- },
- "minecraft:purple_dye": {
- "protocol_id": 954
- },
- "minecraft:purple_glazed_terracotta": {
- "protocol_id": 549
- },
- "minecraft:purple_shulker_box": {
- "protocol_id": 533
- },
- "minecraft:purple_stained_glass": {
- "protocol_id": 481
- },
- "minecraft:purple_stained_glass_pane": {
- "protocol_id": 497
- },
- "minecraft:purple_terracotta": {
- "protocol_id": 437
- },
- "minecraft:purple_wool": {
- "protocol_id": 212
- },
- "minecraft:purpur_block": {
- "protocol_id": 295
- },
- "minecraft:purpur_pillar": {
- "protocol_id": 296
- },
- "minecraft:purpur_slab": {
- "protocol_id": 277
- },
- "minecraft:purpur_stairs": {
- "protocol_id": 297
- },
- "minecraft:quartz": {
- "protocol_id": 808
- },
- "minecraft:quartz_block": {
- "protocol_id": 423
- },
- "minecraft:quartz_bricks": {
- "protocol_id": 424
- },
- "minecraft:quartz_pillar": {
- "protocol_id": 425
- },
- "minecraft:quartz_slab": {
- "protocol_id": 274
- },
- "minecraft:quartz_stairs": {
- "protocol_id": 426
- },
- "minecraft:rabbit": {
- "protocol_id": 1118
- },
- "minecraft:rabbit_foot": {
- "protocol_id": 1121
- },
- "minecraft:rabbit_hide": {
- "protocol_id": 1122
- },
- "minecraft:rabbit_spawn_egg": {
- "protocol_id": 1055
- },
- "minecraft:rabbit_stew": {
- "protocol_id": 1120
- },
- "minecraft:rail": {
- "protocol_id": 763
- },
- "minecraft:raiser_armor_trim_smithing_template": {
- "protocol_id": 1284
- },
- "minecraft:ravager_spawn_egg": {
- "protocol_id": 1056
- },
- "minecraft:raw_copper": {
- "protocol_id": 812
- },
- "minecraft:raw_copper_block": {
- "protocol_id": 83
- },
- "minecraft:raw_gold": {
- "protocol_id": 814
- },
- "minecraft:raw_gold_block": {
- "protocol_id": 84
- },
- "minecraft:raw_iron": {
- "protocol_id": 810
- },
- "minecraft:raw_iron_block": {
- "protocol_id": 82
- },
- "minecraft:recovery_compass": {
- "protocol_id": 929
- },
- "minecraft:red_banner": {
- "protocol_id": 1147
- },
- "minecraft:red_bed": {
"protocol_id": 978
},
+ "minecraft:pufferfish_bucket": {
+ "protocol_id": 939
+ },
+ "minecraft:pufferfish_spawn_egg": {
+ "protocol_id": 1094
+ },
+ "minecraft:pumpkin": {
+ "protocol_id": 335
+ },
+ "minecraft:pumpkin_pie": {
+ "protocol_id": 1153
+ },
+ "minecraft:pumpkin_seeds": {
+ "protocol_id": 1026
+ },
+ "minecraft:purple_banner": {
+ "protocol_id": 1185
+ },
+ "minecraft:purple_bed": {
+ "protocol_id": 1014
+ },
+ "minecraft:purple_bundle": {
+ "protocol_id": 965
+ },
+ "minecraft:purple_candle": {
+ "protocol_id": 1295
+ },
+ "minecraft:purple_carpet": {
+ "protocol_id": 470
+ },
+ "minecraft:purple_concrete": {
+ "protocol_id": 579
+ },
+ "minecraft:purple_concrete_powder": {
+ "protocol_id": 595
+ },
+ "minecraft:purple_dye": {
+ "protocol_id": 994
+ },
+ "minecraft:purple_glazed_terracotta": {
+ "protocol_id": 563
+ },
+ "minecraft:purple_shulker_box": {
+ "protocol_id": 547
+ },
+ "minecraft:purple_stained_glass": {
+ "protocol_id": 495
+ },
+ "minecraft:purple_stained_glass_pane": {
+ "protocol_id": 511
+ },
+ "minecraft:purple_terracotta": {
+ "protocol_id": 451
+ },
+ "minecraft:purple_wool": {
+ "protocol_id": 219
+ },
+ "minecraft:purpur_block": {
+ "protocol_id": 306
+ },
+ "minecraft:purpur_pillar": {
+ "protocol_id": 307
+ },
+ "minecraft:purpur_slab": {
+ "protocol_id": 288
+ },
+ "minecraft:purpur_stairs": {
+ "protocol_id": 308
+ },
+ "minecraft:quartz": {
+ "protocol_id": 830
+ },
+ "minecraft:quartz_block": {
+ "protocol_id": 437
+ },
+ "minecraft:quartz_bricks": {
+ "protocol_id": 438
+ },
+ "minecraft:quartz_pillar": {
+ "protocol_id": 439
+ },
+ "minecraft:quartz_slab": {
+ "protocol_id": 285
+ },
+ "minecraft:quartz_stairs": {
+ "protocol_id": 440
+ },
+ "minecraft:rabbit": {
+ "protocol_id": 1160
+ },
+ "minecraft:rabbit_foot": {
+ "protocol_id": 1163
+ },
+ "minecraft:rabbit_hide": {
+ "protocol_id": 1164
+ },
+ "minecraft:rabbit_spawn_egg": {
+ "protocol_id": 1095
+ },
+ "minecraft:rabbit_stew": {
+ "protocol_id": 1162
+ },
+ "minecraft:rail": {
+ "protocol_id": 782
+ },
+ "minecraft:raiser_armor_trim_smithing_template": {
+ "protocol_id": 1327
+ },
+ "minecraft:ravager_spawn_egg": {
+ "protocol_id": 1096
+ },
+ "minecraft:raw_copper": {
+ "protocol_id": 834
+ },
+ "minecraft:raw_copper_block": {
+ "protocol_id": 85
+ },
+ "minecraft:raw_gold": {
+ "protocol_id": 836
+ },
+ "minecraft:raw_gold_block": {
+ "protocol_id": 86
+ },
+ "minecraft:raw_iron": {
+ "protocol_id": 832
+ },
+ "minecraft:raw_iron_block": {
+ "protocol_id": 84
+ },
+ "minecraft:recovery_compass": {
+ "protocol_id": 953
+ },
+ "minecraft:red_banner": {
+ "protocol_id": 1189
+ },
+ "minecraft:red_bed": {
+ "protocol_id": 1018
+ },
+ "minecraft:red_bundle": {
+ "protocol_id": 969
+ },
"minecraft:red_candle": {
- "protocol_id": 1256
+ "protocol_id": 1299
},
"minecraft:red_carpet": {
- "protocol_id": 460
+ "protocol_id": 474
},
"minecraft:red_concrete": {
- "protocol_id": 569
+ "protocol_id": 583
},
"minecraft:red_concrete_powder": {
- "protocol_id": 585
+ "protocol_id": 599
},
"minecraft:red_dye": {
- "protocol_id": 958
+ "protocol_id": 998
},
"minecraft:red_glazed_terracotta": {
- "protocol_id": 553
+ "protocol_id": 567
},
"minecraft:red_mushroom": {
- "protocol_id": 235
+ "protocol_id": 242
},
"minecraft:red_mushroom_block": {
- "protocol_id": 353
+ "protocol_id": 366
},
"minecraft:red_nether_brick_slab": {
- "protocol_id": 649
+ "protocol_id": 663
},
"minecraft:red_nether_brick_stairs": {
- "protocol_id": 632
+ "protocol_id": 646
},
"minecraft:red_nether_brick_wall": {
- "protocol_id": 408
+ "protocol_id": 422
},
"minecraft:red_nether_bricks": {
- "protocol_id": 519
+ "protocol_id": 533
},
"minecraft:red_sand": {
- "protocol_id": 60
+ "protocol_id": 62
},
"minecraft:red_sandstone": {
- "protocol_id": 510
+ "protocol_id": 524
},
"minecraft:red_sandstone_slab": {
- "protocol_id": 275
+ "protocol_id": 286
},
"minecraft:red_sandstone_stairs": {
- "protocol_id": 513
+ "protocol_id": 527
},
"minecraft:red_sandstone_wall": {
- "protocol_id": 401
+ "protocol_id": 415
},
"minecraft:red_shulker_box": {
- "protocol_id": 537
+ "protocol_id": 551
},
"minecraft:red_stained_glass": {
- "protocol_id": 485
+ "protocol_id": 499
},
"minecraft:red_stained_glass_pane": {
- "protocol_id": 501
+ "protocol_id": 515
},
"minecraft:red_terracotta": {
- "protocol_id": 441
+ "protocol_id": 455
},
"minecraft:red_tulip": {
- "protocol_id": 223
+ "protocol_id": 230
},
"minecraft:red_wool": {
- "protocol_id": 216
+ "protocol_id": 223
},
"minecraft:redstone": {
- "protocol_id": 657
+ "protocol_id": 671
},
"minecraft:redstone_block": {
- "protocol_id": 659
+ "protocol_id": 673
},
"minecraft:redstone_lamp": {
- "protocol_id": 680
+ "protocol_id": 694
},
"minecraft:redstone_ore": {
- "protocol_id": 70
+ "protocol_id": 72
},
"minecraft:redstone_torch": {
- "protocol_id": 658
+ "protocol_id": 672
},
"minecraft:reinforced_deepslate": {
- "protocol_id": 351
+ "protocol_id": 364
},
"minecraft:repeater": {
- "protocol_id": 660
+ "protocol_id": 674
},
"minecraft:repeating_command_block": {
- "protocol_id": 514
+ "protocol_id": 528
},
"minecraft:respawn_anchor": {
- "protocol_id": 1240
+ "protocol_id": 1283
},
"minecraft:rib_armor_trim_smithing_template": {
- "protocol_id": 1279
+ "protocol_id": 1322
},
"minecraft:rooted_dirt": {
"protocol_id": 31
},
"minecraft:rose_bush": {
- "protocol_id": 467
+ "protocol_id": 481
},
"minecraft:rotten_flesh": {
- "protocol_id": 992
+ "protocol_id": 1032
},
"minecraft:saddle": {
- "protocol_id": 765
+ "protocol_id": 784
},
"minecraft:salmon": {
- "protocol_id": 936
+ "protocol_id": 976
},
"minecraft:salmon_bucket": {
- "protocol_id": 916
+ "protocol_id": 940
},
"minecraft:salmon_spawn_egg": {
- "protocol_id": 1057
+ "protocol_id": 1097
},
"minecraft:sand": {
- "protocol_id": 57
+ "protocol_id": 59
},
"minecraft:sandstone": {
- "protocol_id": 191
+ "protocol_id": 198
},
"minecraft:sandstone_slab": {
- "protocol_id": 266
+ "protocol_id": 277
},
"minecraft:sandstone_stairs": {
- "protocol_id": 380
+ "protocol_id": 393
},
"minecraft:sandstone_wall": {
- "protocol_id": 409
+ "protocol_id": 423
},
"minecraft:scaffolding": {
- "protocol_id": 656
+ "protocol_id": 670
},
"minecraft:scrape_pottery_sherd": {
- "protocol_id": 1306
+ "protocol_id": 1349
},
"minecraft:sculk": {
- "protocol_id": 371
+ "protocol_id": 384
},
"minecraft:sculk_catalyst": {
- "protocol_id": 373
+ "protocol_id": 386
},
"minecraft:sculk_sensor": {
- "protocol_id": 675
+ "protocol_id": 689
},
"minecraft:sculk_shrieker": {
- "protocol_id": 374
+ "protocol_id": 387
},
"minecraft:sculk_vein": {
- "protocol_id": 372
+ "protocol_id": 385
},
"minecraft:sea_lantern": {
- "protocol_id": 509
+ "protocol_id": 523
},
"minecraft:sea_pickle": {
- "protocol_id": 201
+ "protocol_id": 208
},
"minecraft:seagrass": {
- "protocol_id": 200
+ "protocol_id": 207
},
"minecraft:sentry_armor_trim_smithing_template": {
- "protocol_id": 1270
+ "protocol_id": 1313
},
"minecraft:shaper_armor_trim_smithing_template": {
- "protocol_id": 1282
+ "protocol_id": 1325
},
"minecraft:sheaf_pottery_sherd": {
- "protocol_id": 1307
+ "protocol_id": 1350
},
"minecraft:shears": {
- "protocol_id": 983
+ "protocol_id": 1023
},
"minecraft:sheep_spawn_egg": {
- "protocol_id": 1058
+ "protocol_id": 1098
},
"minecraft:shelter_pottery_sherd": {
- "protocol_id": 1308
+ "protocol_id": 1351
},
"minecraft:shield": {
- "protocol_id": 1162
+ "protocol_id": 1204
},
"minecraft:short_grass": {
- "protocol_id": 195
+ "protocol_id": 202
},
"minecraft:shroomlight": {
- "protocol_id": 1220
+ "protocol_id": 1263
},
"minecraft:shulker_box": {
- "protocol_id": 522
+ "protocol_id": 536
},
"minecraft:shulker_shell": {
- "protocol_id": 1164
- },
- "minecraft:shulker_spawn_egg": {
- "protocol_id": 1059
- },
- "minecraft:silence_armor_trim_smithing_template": {
- "protocol_id": 1283
- },
- "minecraft:silverfish_spawn_egg": {
- "protocol_id": 1060
- },
- "minecraft:skeleton_horse_spawn_egg": {
- "protocol_id": 1062
- },
- "minecraft:skeleton_skull": {
- "protocol_id": 1103
- },
- "minecraft:skeleton_spawn_egg": {
- "protocol_id": 1061
- },
- "minecraft:skull_banner_pattern": {
- "protocol_id": 1197
- },
- "minecraft:skull_pottery_sherd": {
- "protocol_id": 1309
- },
- "minecraft:slime_ball": {
- "protocol_id": 926
- },
- "minecraft:slime_block": {
- "protocol_id": 664
- },
- "minecraft:slime_spawn_egg": {
- "protocol_id": 1063
- },
- "minecraft:small_amethyst_bud": {
- "protocol_id": 1258
- },
- "minecraft:small_dripleaf": {
- "protocol_id": 250
- },
- "minecraft:smithing_table": {
- "protocol_id": 1211
- },
- "minecraft:smoker": {
"protocol_id": 1206
},
+ "minecraft:shulker_spawn_egg": {
+ "protocol_id": 1099
+ },
+ "minecraft:silence_armor_trim_smithing_template": {
+ "protocol_id": 1326
+ },
+ "minecraft:silverfish_spawn_egg": {
+ "protocol_id": 1100
+ },
+ "minecraft:skeleton_horse_spawn_egg": {
+ "protocol_id": 1102
+ },
+ "minecraft:skeleton_skull": {
+ "protocol_id": 1145
+ },
+ "minecraft:skeleton_spawn_egg": {
+ "protocol_id": 1101
+ },
+ "minecraft:skull_banner_pattern": {
+ "protocol_id": 1238
+ },
+ "minecraft:skull_pottery_sherd": {
+ "protocol_id": 1352
+ },
+ "minecraft:slime_ball": {
+ "protocol_id": 950
+ },
+ "minecraft:slime_block": {
+ "protocol_id": 678
+ },
+ "minecraft:slime_spawn_egg": {
+ "protocol_id": 1103
+ },
+ "minecraft:small_amethyst_bud": {
+ "protocol_id": 1301
+ },
+ "minecraft:small_dripleaf": {
+ "protocol_id": 260
+ },
+ "minecraft:smithing_table": {
+ "protocol_id": 1254
+ },
+ "minecraft:smoker": {
+ "protocol_id": 1249
+ },
"minecraft:smooth_basalt": {
- "protocol_id": 330
+ "protocol_id": 343
},
"minecraft:smooth_quartz": {
- "protocol_id": 281
+ "protocol_id": 292
},
"minecraft:smooth_quartz_slab": {
- "protocol_id": 646
+ "protocol_id": 660
},
"minecraft:smooth_quartz_stairs": {
- "protocol_id": 629
+ "protocol_id": 643
},
"minecraft:smooth_red_sandstone": {
- "protocol_id": 282
+ "protocol_id": 293
},
"minecraft:smooth_red_sandstone_slab": {
- "protocol_id": 640
+ "protocol_id": 654
},
"minecraft:smooth_red_sandstone_stairs": {
- "protocol_id": 622
+ "protocol_id": 636
},
"minecraft:smooth_sandstone": {
- "protocol_id": 283
+ "protocol_id": 294
},
"minecraft:smooth_sandstone_slab": {
- "protocol_id": 645
+ "protocol_id": 659
},
"minecraft:smooth_sandstone_stairs": {
- "protocol_id": 628
+ "protocol_id": 642
},
"minecraft:smooth_stone": {
- "protocol_id": 284
+ "protocol_id": 295
},
"minecraft:smooth_stone_slab": {
- "protocol_id": 265
+ "protocol_id": 276
},
"minecraft:sniffer_egg": {
- "protocol_id": 588
+ "protocol_id": 602
},
"minecraft:sniffer_spawn_egg": {
- "protocol_id": 1064
+ "protocol_id": 1104
},
"minecraft:snort_pottery_sherd": {
- "protocol_id": 1310
+ "protocol_id": 1353
},
"minecraft:snout_armor_trim_smithing_template": {
- "protocol_id": 1278
+ "protocol_id": 1321
},
"minecraft:snow": {
- "protocol_id": 305
+ "protocol_id": 317
},
"minecraft:snow_block": {
- "protocol_id": 307
+ "protocol_id": 319
},
"minecraft:snow_golem_spawn_egg": {
- "protocol_id": 1065
+ "protocol_id": 1105
},
"minecraft:snowball": {
- "protocol_id": 912
+ "protocol_id": 936
},
"minecraft:soul_campfire": {
- "protocol_id": 1219
+ "protocol_id": 1262
},
"minecraft:soul_lantern": {
- "protocol_id": 1215
+ "protocol_id": 1258
},
"minecraft:soul_sand": {
- "protocol_id": 326
+ "protocol_id": 339
},
"minecraft:soul_soil": {
- "protocol_id": 327
+ "protocol_id": 340
},
"minecraft:soul_torch": {
- "protocol_id": 331
+ "protocol_id": 344
},
"minecraft:spawner": {
- "protocol_id": 298
+ "protocol_id": 309
},
"minecraft:spectral_arrow": {
- "protocol_id": 1159
+ "protocol_id": 1201
},
"minecraft:spider_eye": {
- "protocol_id": 1000
+ "protocol_id": 1040
},
"minecraft:spider_spawn_egg": {
- "protocol_id": 1066
+ "protocol_id": 1106
},
"minecraft:spire_armor_trim_smithing_template": {
- "protocol_id": 1280
+ "protocol_id": 1323
},
"minecraft:splash_potion": {
- "protocol_id": 1158
+ "protocol_id": 1200
},
"minecraft:sponge": {
- "protocol_id": 186
+ "protocol_id": 193
},
"minecraft:spore_blossom": {
- "protocol_id": 233
+ "protocol_id": 240
},
"minecraft:spruce_boat": {
- "protocol_id": 776
+ "protocol_id": 796
},
"minecraft:spruce_button": {
- "protocol_id": 685
+ "protocol_id": 699
},
"minecraft:spruce_chest_boat": {
- "protocol_id": 777
+ "protocol_id": 797
},
"minecraft:spruce_door": {
- "protocol_id": 712
+ "protocol_id": 728
},
"minecraft:spruce_fence": {
- "protocol_id": 312
+ "protocol_id": 324
},
"minecraft:spruce_fence_gate": {
- "protocol_id": 751
+ "protocol_id": 769
},
"minecraft:spruce_hanging_sign": {
- "protocol_id": 898
+ "protocol_id": 921
},
"minecraft:spruce_leaves": {
- "protocol_id": 177
+ "protocol_id": 183
},
"minecraft:spruce_log": {
- "protocol_id": 133
+ "protocol_id": 135
},
"minecraft:spruce_planks": {
"protocol_id": 37
},
"minecraft:spruce_pressure_plate": {
- "protocol_id": 700
+ "protocol_id": 715
},
"minecraft:spruce_sapling": {
- "protocol_id": 49
+ "protocol_id": 50
},
"minecraft:spruce_sign": {
- "protocol_id": 887
+ "protocol_id": 909
},
"minecraft:spruce_slab": {
- "protocol_id": 253
+ "protocol_id": 263
},
"minecraft:spruce_stairs": {
- "protocol_id": 384
+ "protocol_id": 397
},
"minecraft:spruce_trapdoor": {
- "protocol_id": 732
+ "protocol_id": 749
},
"minecraft:spruce_wood": {
- "protocol_id": 167
+ "protocol_id": 172
},
"minecraft:spyglass": {
- "protocol_id": 933
+ "protocol_id": 973
},
"minecraft:squid_spawn_egg": {
- "protocol_id": 1067
+ "protocol_id": 1107
},
"minecraft:stick": {
- "protocol_id": 848
+ "protocol_id": 870
},
"minecraft:sticky_piston": {
- "protocol_id": 663
+ "protocol_id": 677
},
"minecraft:stone": {
"protocol_id": 1
},
"minecraft:stone_axe": {
- "protocol_id": 826
+ "protocol_id": 848
},
"minecraft:stone_brick_slab": {
- "protocol_id": 271
+ "protocol_id": 282
},
"minecraft:stone_brick_stairs": {
- "protocol_id": 362
+ "protocol_id": 375
},
"minecraft:stone_brick_wall": {
- "protocol_id": 404
+ "protocol_id": 418
},
"minecraft:stone_bricks": {
- "protocol_id": 340
+ "protocol_id": 353
},
"minecraft:stone_button": {
- "protocol_id": 682
+ "protocol_id": 696
},
"minecraft:stone_hoe": {
- "protocol_id": 827
+ "protocol_id": 849
},
"minecraft:stone_pickaxe": {
- "protocol_id": 825
+ "protocol_id": 847
},
"minecraft:stone_pressure_plate": {
- "protocol_id": 695
+ "protocol_id": 710
},
"minecraft:stone_shovel": {
- "protocol_id": 824
+ "protocol_id": 846
},
"minecraft:stone_slab": {
- "protocol_id": 264
+ "protocol_id": 275
},
"minecraft:stone_stairs": {
- "protocol_id": 627
+ "protocol_id": 641
},
"minecraft:stone_sword": {
- "protocol_id": 823
+ "protocol_id": 845
},
"minecraft:stonecutter": {
- "protocol_id": 1212
+ "protocol_id": 1255
},
"minecraft:stray_spawn_egg": {
- "protocol_id": 1068
+ "protocol_id": 1108
},
"minecraft:strider_spawn_egg": {
- "protocol_id": 1069
+ "protocol_id": 1109
},
"minecraft:string": {
- "protocol_id": 850
+ "protocol_id": 872
},
"minecraft:stripped_acacia_log": {
- "protocol_id": 149
- },
- "minecraft:stripped_acacia_wood": {
- "protocol_id": 159
- },
- "minecraft:stripped_bamboo_block": {
- "protocol_id": 165
- },
- "minecraft:stripped_birch_log": {
- "protocol_id": 147
- },
- "minecraft:stripped_birch_wood": {
- "protocol_id": 157
- },
- "minecraft:stripped_cherry_log": {
- "protocol_id": 150
- },
- "minecraft:stripped_cherry_wood": {
- "protocol_id": 160
- },
- "minecraft:stripped_crimson_hyphae": {
- "protocol_id": 163
- },
- "minecraft:stripped_crimson_stem": {
- "protocol_id": 153
- },
- "minecraft:stripped_dark_oak_log": {
- "protocol_id": 151
- },
- "minecraft:stripped_dark_oak_wood": {
- "protocol_id": 161
- },
- "minecraft:stripped_jungle_log": {
- "protocol_id": 148
- },
- "minecraft:stripped_jungle_wood": {
- "protocol_id": 158
- },
- "minecraft:stripped_mangrove_log": {
"protocol_id": 152
},
- "minecraft:stripped_mangrove_wood": {
- "protocol_id": 162
+ "minecraft:stripped_acacia_wood": {
+ "protocol_id": 163
},
- "minecraft:stripped_oak_log": {
- "protocol_id": 145
+ "minecraft:stripped_bamboo_block": {
+ "protocol_id": 170
},
- "minecraft:stripped_oak_wood": {
- "protocol_id": 155
+ "minecraft:stripped_birch_log": {
+ "protocol_id": 150
},
- "minecraft:stripped_spruce_log": {
- "protocol_id": 146
+ "minecraft:stripped_birch_wood": {
+ "protocol_id": 161
},
- "minecraft:stripped_spruce_wood": {
- "protocol_id": 156
+ "minecraft:stripped_cherry_log": {
+ "protocol_id": 153
},
- "minecraft:stripped_warped_hyphae": {
+ "minecraft:stripped_cherry_wood": {
"protocol_id": 164
},
- "minecraft:stripped_warped_stem": {
+ "minecraft:stripped_crimson_hyphae": {
+ "protocol_id": 168
+ },
+ "minecraft:stripped_crimson_stem": {
+ "protocol_id": 157
+ },
+ "minecraft:stripped_dark_oak_log": {
"protocol_id": 154
},
+ "minecraft:stripped_dark_oak_wood": {
+ "protocol_id": 165
+ },
+ "minecraft:stripped_jungle_log": {
+ "protocol_id": 151
+ },
+ "minecraft:stripped_jungle_wood": {
+ "protocol_id": 162
+ },
+ "minecraft:stripped_mangrove_log": {
+ "protocol_id": 156
+ },
+ "minecraft:stripped_mangrove_wood": {
+ "protocol_id": 167
+ },
+ "minecraft:stripped_oak_log": {
+ "protocol_id": 148
+ },
+ "minecraft:stripped_oak_wood": {
+ "protocol_id": 159
+ },
+ "minecraft:stripped_pale_oak_log": {
+ "protocol_id": 155
+ },
+ "minecraft:stripped_pale_oak_wood": {
+ "protocol_id": 166
+ },
+ "minecraft:stripped_spruce_log": {
+ "protocol_id": 149
+ },
+ "minecraft:stripped_spruce_wood": {
+ "protocol_id": 160
+ },
+ "minecraft:stripped_warped_hyphae": {
+ "protocol_id": 169
+ },
+ "minecraft:stripped_warped_stem": {
+ "protocol_id": 158
+ },
"minecraft:structure_block": {
- "protocol_id": 792
+ "protocol_id": 814
},
"minecraft:structure_void": {
- "protocol_id": 521
+ "protocol_id": 535
},
"minecraft:sugar": {
- "protocol_id": 962
+ "protocol_id": 1002
},
"minecraft:sugar_cane": {
- "protocol_id": 243
+ "protocol_id": 250
},
"minecraft:sunflower": {
- "protocol_id": 465
+ "protocol_id": 479
},
"minecraft:suspicious_gravel": {
- "protocol_id": 59
+ "protocol_id": 61
},
"minecraft:suspicious_sand": {
- "protocol_id": 58
+ "protocol_id": 60
},
"minecraft:suspicious_stew": {
- "protocol_id": 1193
+ "protocol_id": 1234
},
"minecraft:sweet_berries": {
- "protocol_id": 1216
+ "protocol_id": 1259
},
"minecraft:tadpole_bucket": {
- "protocol_id": 920
+ "protocol_id": 944
},
"minecraft:tadpole_spawn_egg": {
- "protocol_id": 1070
+ "protocol_id": 1110
},
"minecraft:tall_grass": {
- "protocol_id": 469
+ "protocol_id": 483
},
"minecraft:target": {
- "protocol_id": 671
+ "protocol_id": 685
},
"minecraft:terracotta": {
- "protocol_id": 462
+ "protocol_id": 476
},
"minecraft:tide_armor_trim_smithing_template": {
- "protocol_id": 1277
+ "protocol_id": 1320
},
"minecraft:tinted_glass": {
- "protocol_id": 189
+ "protocol_id": 196
},
"minecraft:tipped_arrow": {
- "protocol_id": 1160
+ "protocol_id": 1202
},
"minecraft:tnt": {
- "protocol_id": 679
+ "protocol_id": 693
},
"minecraft:tnt_minecart": {
- "protocol_id": 769
+ "protocol_id": 788
},
"minecraft:torch": {
- "protocol_id": 291
+ "protocol_id": 302
},
"minecraft:torchflower": {
- "protocol_id": 231
+ "protocol_id": 238
},
"minecraft:torchflower_seeds": {
- "protocol_id": 1152
+ "protocol_id": 1194
},
"minecraft:totem_of_undying": {
- "protocol_id": 1163
+ "protocol_id": 1205
},
"minecraft:trader_llama_spawn_egg": {
- "protocol_id": 1071
+ "protocol_id": 1111
},
"minecraft:trapped_chest": {
- "protocol_id": 678
+ "protocol_id": 692
},
"minecraft:trial_key": {
- "protocol_id": 1328
+ "protocol_id": 1371
},
"minecraft:trial_spawner": {
- "protocol_id": 1327
+ "protocol_id": 1370
},
"minecraft:trident": {
- "protocol_id": 1188
+ "protocol_id": 1230
},
"minecraft:tripwire_hook": {
- "protocol_id": 677
+ "protocol_id": 691
},
"minecraft:tropical_fish": {
- "protocol_id": 937
+ "protocol_id": 977
},
"minecraft:tropical_fish_bucket": {
- "protocol_id": 918
+ "protocol_id": 942
},
"minecraft:tropical_fish_spawn_egg": {
- "protocol_id": 1072
+ "protocol_id": 1112
},
"minecraft:tube_coral": {
- "protocol_id": 599
+ "protocol_id": 613
},
"minecraft:tube_coral_block": {
- "protocol_id": 594
+ "protocol_id": 608
},
"minecraft:tube_coral_fan": {
- "protocol_id": 609
+ "protocol_id": 623
},
"minecraft:tuff": {
"protocol_id": 12
@@ -9696,403 +9955,409 @@
"protocol_id": 15
},
"minecraft:turtle_egg": {
- "protocol_id": 587
+ "protocol_id": 601
},
"minecraft:turtle_helmet": {
- "protocol_id": 794
+ "protocol_id": 816
},
"minecraft:turtle_scute": {
- "protocol_id": 795
+ "protocol_id": 817
},
"minecraft:turtle_spawn_egg": {
- "protocol_id": 1073
+ "protocol_id": 1113
},
"minecraft:twisting_vines": {
- "protocol_id": 242
+ "protocol_id": 249
},
"minecraft:vault": {
- "protocol_id": 1330
+ "protocol_id": 1373
},
"minecraft:verdant_froglight": {
- "protocol_id": 1264
+ "protocol_id": 1307
},
"minecraft:vex_armor_trim_smithing_template": {
- "protocol_id": 1276
+ "protocol_id": 1319
},
"minecraft:vex_spawn_egg": {
- "protocol_id": 1074
+ "protocol_id": 1114
},
"minecraft:villager_spawn_egg": {
- "protocol_id": 1075
+ "protocol_id": 1115
},
"minecraft:vindicator_spawn_egg": {
- "protocol_id": 1076
+ "protocol_id": 1116
},
"minecraft:vine": {
- "protocol_id": 359
+ "protocol_id": 372
},
"minecraft:wandering_trader_spawn_egg": {
- "protocol_id": 1077
+ "protocol_id": 1117
},
"minecraft:ward_armor_trim_smithing_template": {
- "protocol_id": 1274
+ "protocol_id": 1317
},
"minecraft:warden_spawn_egg": {
- "protocol_id": 1078
+ "protocol_id": 1118
},
"minecraft:warped_button": {
- "protocol_id": 694
+ "protocol_id": 709
},
"minecraft:warped_door": {
- "protocol_id": 721
+ "protocol_id": 738
},
"minecraft:warped_fence": {
- "protocol_id": 321
+ "protocol_id": 334
},
"minecraft:warped_fence_gate": {
- "protocol_id": 760
+ "protocol_id": 779
},
"minecraft:warped_fungus": {
- "protocol_id": 237
+ "protocol_id": 244
},
"minecraft:warped_fungus_on_a_stick": {
- "protocol_id": 772
+ "protocol_id": 791
},
"minecraft:warped_hanging_sign": {
- "protocol_id": 907
+ "protocol_id": 931
},
"minecraft:warped_hyphae": {
- "protocol_id": 175
+ "protocol_id": 181
},
"minecraft:warped_nylium": {
"protocol_id": 34
},
"minecraft:warped_planks": {
- "protocol_id": 46
+ "protocol_id": 47
},
"minecraft:warped_pressure_plate": {
- "protocol_id": 709
+ "protocol_id": 725
},
"minecraft:warped_roots": {
- "protocol_id": 239
+ "protocol_id": 246
},
"minecraft:warped_sign": {
- "protocol_id": 896
+ "protocol_id": 919
},
"minecraft:warped_slab": {
- "protocol_id": 263
+ "protocol_id": 274
},
"minecraft:warped_stairs": {
- "protocol_id": 394
+ "protocol_id": 408
},
"minecraft:warped_stem": {
- "protocol_id": 143
+ "protocol_id": 146
},
"minecraft:warped_trapdoor": {
- "protocol_id": 741
+ "protocol_id": 759
},
"minecraft:warped_wart_block": {
- "protocol_id": 518
+ "protocol_id": 532
},
"minecraft:water_bucket": {
- "protocol_id": 909
+ "protocol_id": 933
},
"minecraft:waxed_chiseled_copper": {
- "protocol_id": 116
- },
- "minecraft:waxed_copper_block": {
- "protocol_id": 112
- },
- "minecraft:waxed_copper_bulb": {
- "protocol_id": 1323
- },
- "minecraft:waxed_copper_door": {
- "protocol_id": 726
- },
- "minecraft:waxed_copper_grate": {
- "protocol_id": 1315
- },
- "minecraft:waxed_copper_trapdoor": {
- "protocol_id": 746
- },
- "minecraft:waxed_cut_copper": {
- "protocol_id": 120
- },
- "minecraft:waxed_cut_copper_slab": {
- "protocol_id": 128
- },
- "minecraft:waxed_cut_copper_stairs": {
- "protocol_id": 124
- },
- "minecraft:waxed_exposed_chiseled_copper": {
- "protocol_id": 117
- },
- "minecraft:waxed_exposed_copper": {
- "protocol_id": 113
- },
- "minecraft:waxed_exposed_copper_bulb": {
- "protocol_id": 1324
- },
- "minecraft:waxed_exposed_copper_door": {
- "protocol_id": 727
- },
- "minecraft:waxed_exposed_copper_grate": {
- "protocol_id": 1316
- },
- "minecraft:waxed_exposed_copper_trapdoor": {
- "protocol_id": 747
- },
- "minecraft:waxed_exposed_cut_copper": {
- "protocol_id": 121
- },
- "minecraft:waxed_exposed_cut_copper_slab": {
- "protocol_id": 129
- },
- "minecraft:waxed_exposed_cut_copper_stairs": {
- "protocol_id": 125
- },
- "minecraft:waxed_oxidized_chiseled_copper": {
- "protocol_id": 119
- },
- "minecraft:waxed_oxidized_copper": {
- "protocol_id": 115
- },
- "minecraft:waxed_oxidized_copper_bulb": {
- "protocol_id": 1326
- },
- "minecraft:waxed_oxidized_copper_door": {
- "protocol_id": 729
- },
- "minecraft:waxed_oxidized_copper_grate": {
- "protocol_id": 1318
- },
- "minecraft:waxed_oxidized_copper_trapdoor": {
- "protocol_id": 749
- },
- "minecraft:waxed_oxidized_cut_copper": {
- "protocol_id": 123
- },
- "minecraft:waxed_oxidized_cut_copper_slab": {
- "protocol_id": 131
- },
- "minecraft:waxed_oxidized_cut_copper_stairs": {
- "protocol_id": 127
- },
- "minecraft:waxed_weathered_chiseled_copper": {
"protocol_id": 118
},
- "minecraft:waxed_weathered_copper": {
+ "minecraft:waxed_copper_block": {
"protocol_id": 114
},
- "minecraft:waxed_weathered_copper_bulb": {
- "protocol_id": 1325
+ "minecraft:waxed_copper_bulb": {
+ "protocol_id": 1366
},
- "minecraft:waxed_weathered_copper_door": {
- "protocol_id": 728
+ "minecraft:waxed_copper_door": {
+ "protocol_id": 743
},
- "minecraft:waxed_weathered_copper_grate": {
- "protocol_id": 1317
+ "minecraft:waxed_copper_grate": {
+ "protocol_id": 1358
},
- "minecraft:waxed_weathered_copper_trapdoor": {
- "protocol_id": 748
+ "minecraft:waxed_copper_trapdoor": {
+ "protocol_id": 764
},
- "minecraft:waxed_weathered_cut_copper": {
+ "minecraft:waxed_cut_copper": {
"protocol_id": 122
},
- "minecraft:waxed_weathered_cut_copper_slab": {
+ "minecraft:waxed_cut_copper_slab": {
"protocol_id": 130
},
- "minecraft:waxed_weathered_cut_copper_stairs": {
+ "minecraft:waxed_cut_copper_stairs": {
"protocol_id": 126
},
- "minecraft:wayfinder_armor_trim_smithing_template": {
- "protocol_id": 1281
+ "minecraft:waxed_exposed_chiseled_copper": {
+ "protocol_id": 119
},
- "minecraft:weathered_chiseled_copper": {
- "protocol_id": 98
+ "minecraft:waxed_exposed_copper": {
+ "protocol_id": 115
},
- "minecraft:weathered_copper": {
- "protocol_id": 94
+ "minecraft:waxed_exposed_copper_bulb": {
+ "protocol_id": 1367
},
- "minecraft:weathered_copper_bulb": {
- "protocol_id": 1321
- },
- "minecraft:weathered_copper_door": {
- "protocol_id": 724
- },
- "minecraft:weathered_copper_grate": {
- "protocol_id": 1313
- },
- "minecraft:weathered_copper_trapdoor": {
+ "minecraft:waxed_exposed_copper_door": {
"protocol_id": 744
},
+ "minecraft:waxed_exposed_copper_grate": {
+ "protocol_id": 1359
+ },
+ "minecraft:waxed_exposed_copper_trapdoor": {
+ "protocol_id": 765
+ },
+ "minecraft:waxed_exposed_cut_copper": {
+ "protocol_id": 123
+ },
+ "minecraft:waxed_exposed_cut_copper_slab": {
+ "protocol_id": 131
+ },
+ "minecraft:waxed_exposed_cut_copper_stairs": {
+ "protocol_id": 127
+ },
+ "minecraft:waxed_oxidized_chiseled_copper": {
+ "protocol_id": 121
+ },
+ "minecraft:waxed_oxidized_copper": {
+ "protocol_id": 117
+ },
+ "minecraft:waxed_oxidized_copper_bulb": {
+ "protocol_id": 1369
+ },
+ "minecraft:waxed_oxidized_copper_door": {
+ "protocol_id": 746
+ },
+ "minecraft:waxed_oxidized_copper_grate": {
+ "protocol_id": 1361
+ },
+ "minecraft:waxed_oxidized_copper_trapdoor": {
+ "protocol_id": 767
+ },
+ "minecraft:waxed_oxidized_cut_copper": {
+ "protocol_id": 125
+ },
+ "minecraft:waxed_oxidized_cut_copper_slab": {
+ "protocol_id": 133
+ },
+ "minecraft:waxed_oxidized_cut_copper_stairs": {
+ "protocol_id": 129
+ },
+ "minecraft:waxed_weathered_chiseled_copper": {
+ "protocol_id": 120
+ },
+ "minecraft:waxed_weathered_copper": {
+ "protocol_id": 116
+ },
+ "minecraft:waxed_weathered_copper_bulb": {
+ "protocol_id": 1368
+ },
+ "minecraft:waxed_weathered_copper_door": {
+ "protocol_id": 745
+ },
+ "minecraft:waxed_weathered_copper_grate": {
+ "protocol_id": 1360
+ },
+ "minecraft:waxed_weathered_copper_trapdoor": {
+ "protocol_id": 766
+ },
+ "minecraft:waxed_weathered_cut_copper": {
+ "protocol_id": 124
+ },
+ "minecraft:waxed_weathered_cut_copper_slab": {
+ "protocol_id": 132
+ },
+ "minecraft:waxed_weathered_cut_copper_stairs": {
+ "protocol_id": 128
+ },
+ "minecraft:wayfinder_armor_trim_smithing_template": {
+ "protocol_id": 1324
+ },
+ "minecraft:weathered_chiseled_copper": {
+ "protocol_id": 100
+ },
+ "minecraft:weathered_copper": {
+ "protocol_id": 96
+ },
+ "minecraft:weathered_copper_bulb": {
+ "protocol_id": 1364
+ },
+ "minecraft:weathered_copper_door": {
+ "protocol_id": 741
+ },
+ "minecraft:weathered_copper_grate": {
+ "protocol_id": 1356
+ },
+ "minecraft:weathered_copper_trapdoor": {
+ "protocol_id": 762
+ },
"minecraft:weathered_cut_copper": {
- "protocol_id": 102
+ "protocol_id": 104
},
"minecraft:weathered_cut_copper_slab": {
- "protocol_id": 110
+ "protocol_id": 112
},
"minecraft:weathered_cut_copper_stairs": {
- "protocol_id": 106
+ "protocol_id": 108
},
"minecraft:weeping_vines": {
- "protocol_id": 241
+ "protocol_id": 248
},
"minecraft:wet_sponge": {
- "protocol_id": 187
+ "protocol_id": 194
},
"minecraft:wheat": {
- "protocol_id": 854
+ "protocol_id": 876
},
"minecraft:wheat_seeds": {
- "protocol_id": 853
+ "protocol_id": 875
},
"minecraft:white_banner": {
- "protocol_id": 1133
+ "protocol_id": 1175
},
"minecraft:white_bed": {
- "protocol_id": 964
+ "protocol_id": 1004
+ },
+ "minecraft:white_bundle": {
+ "protocol_id": 955
},
"minecraft:white_candle": {
- "protocol_id": 1242
+ "protocol_id": 1285
},
"minecraft:white_carpet": {
- "protocol_id": 446
+ "protocol_id": 460
},
"minecraft:white_concrete": {
- "protocol_id": 555
+ "protocol_id": 569
},
"minecraft:white_concrete_powder": {
- "protocol_id": 571
+ "protocol_id": 585
},
"minecraft:white_dye": {
- "protocol_id": 944
+ "protocol_id": 984
},
"minecraft:white_glazed_terracotta": {
- "protocol_id": 539
+ "protocol_id": 553
},
"minecraft:white_shulker_box": {
- "protocol_id": 523
+ "protocol_id": 537
},
"minecraft:white_stained_glass": {
- "protocol_id": 471
+ "protocol_id": 485
},
"minecraft:white_stained_glass_pane": {
- "protocol_id": 487
+ "protocol_id": 501
},
"minecraft:white_terracotta": {
- "protocol_id": 427
+ "protocol_id": 441
},
"minecraft:white_tulip": {
- "protocol_id": 225
+ "protocol_id": 232
},
"minecraft:white_wool": {
- "protocol_id": 202
+ "protocol_id": 209
},
"minecraft:wild_armor_trim_smithing_template": {
- "protocol_id": 1273
+ "protocol_id": 1316
},
"minecraft:wind_charge": {
- "protocol_id": 1090
+ "protocol_id": 1131
},
"minecraft:witch_spawn_egg": {
- "protocol_id": 1079
+ "protocol_id": 1119
},
"minecraft:wither_rose": {
- "protocol_id": 230
+ "protocol_id": 237
},
"minecraft:wither_skeleton_skull": {
- "protocol_id": 1104
+ "protocol_id": 1146
},
"minecraft:wither_skeleton_spawn_egg": {
- "protocol_id": 1081
+ "protocol_id": 1121
},
"minecraft:wither_spawn_egg": {
- "protocol_id": 1080
+ "protocol_id": 1120
},
"minecraft:wolf_armor": {
- "protocol_id": 797
- },
- "minecraft:wolf_spawn_egg": {
- "protocol_id": 1082
- },
- "minecraft:wooden_axe": {
- "protocol_id": 821
- },
- "minecraft:wooden_hoe": {
- "protocol_id": 822
- },
- "minecraft:wooden_pickaxe": {
- "protocol_id": 820
- },
- "minecraft:wooden_shovel": {
"protocol_id": 819
},
+ "minecraft:wolf_spawn_egg": {
+ "protocol_id": 1122
+ },
+ "minecraft:wooden_axe": {
+ "protocol_id": 843
+ },
+ "minecraft:wooden_hoe": {
+ "protocol_id": 844
+ },
+ "minecraft:wooden_pickaxe": {
+ "protocol_id": 842
+ },
+ "minecraft:wooden_shovel": {
+ "protocol_id": 841
+ },
"minecraft:wooden_sword": {
- "protocol_id": 818
+ "protocol_id": 840
},
"minecraft:writable_book": {
- "protocol_id": 1091
+ "protocol_id": 1132
},
"minecraft:written_book": {
- "protocol_id": 1092
+ "protocol_id": 1133
},
"minecraft:yellow_banner": {
- "protocol_id": 1137
+ "protocol_id": 1179
},
"minecraft:yellow_bed": {
- "protocol_id": 968
+ "protocol_id": 1008
+ },
+ "minecraft:yellow_bundle": {
+ "protocol_id": 959
},
"minecraft:yellow_candle": {
- "protocol_id": 1246
+ "protocol_id": 1289
},
"minecraft:yellow_carpet": {
- "protocol_id": 450
+ "protocol_id": 464
},
"minecraft:yellow_concrete": {
- "protocol_id": 559
+ "protocol_id": 573
},
"minecraft:yellow_concrete_powder": {
- "protocol_id": 575
+ "protocol_id": 589
},
"minecraft:yellow_dye": {
- "protocol_id": 948
+ "protocol_id": 988
},
"minecraft:yellow_glazed_terracotta": {
- "protocol_id": 543
+ "protocol_id": 557
},
"minecraft:yellow_shulker_box": {
- "protocol_id": 527
+ "protocol_id": 541
},
"minecraft:yellow_stained_glass": {
- "protocol_id": 475
+ "protocol_id": 489
},
"minecraft:yellow_stained_glass_pane": {
- "protocol_id": 491
+ "protocol_id": 505
},
"minecraft:yellow_terracotta": {
- "protocol_id": 431
+ "protocol_id": 445
},
"minecraft:yellow_wool": {
- "protocol_id": 206
+ "protocol_id": 213
},
"minecraft:zoglin_spawn_egg": {
- "protocol_id": 1083
+ "protocol_id": 1123
},
"minecraft:zombie_head": {
- "protocol_id": 1106
+ "protocol_id": 1148
},
"minecraft:zombie_horse_spawn_egg": {
- "protocol_id": 1085
+ "protocol_id": 1126
},
"minecraft:zombie_spawn_egg": {
- "protocol_id": 1084
+ "protocol_id": 1125
},
"minecraft:zombie_villager_spawn_egg": {
- "protocol_id": 1086
+ "protocol_id": 1127
},
"minecraft:zombified_piglin_spawn_egg": {
- "protocol_id": 1087
+ "protocol_id": 1128
}
},
"protocol_id": 6
@@ -10142,7 +10407,7 @@
"protocol_id": 10
}
},
- "protocol_id": 70
+ "protocol_id": 68
},
"minecraft:loot_condition_type": {
"entries": {
@@ -10513,7 +10778,7 @@
"protocol_id": 31
}
},
- "protocol_id": 71
+ "protocol_id": 69
},
"minecraft:memory_module_type": {
"default": "minecraft:dummy",
@@ -11053,7 +11318,7 @@
"protocol_id": 1
}
},
- "protocol_id": 66
+ "protocol_id": 65
},
"minecraft:particle_type": {
"entries": {
@@ -11061,11 +11326,14 @@
"protocol_id": 0
},
"minecraft:ash": {
- "protocol_id": 78
+ "protocol_id": 79
},
"minecraft:block": {
"protocol_id": 1
},
+ "minecraft:block_crumble": {
+ "protocol_id": 110
+ },
"minecraft:block_marker": {
"protocol_id": 2
},
@@ -11073,16 +11341,16 @@
"protocol_id": 3
},
"minecraft:bubble_column_up": {
- "protocol_id": 68
+ "protocol_id": 69
},
"minecraft:bubble_pop": {
- "protocol_id": 66
+ "protocol_id": 67
},
"minecraft:campfire_cosy_smoke": {
- "protocol_id": 71
+ "protocol_id": 72
},
"minecraft:campfire_signal_smoke": {
- "protocol_id": 72
+ "protocol_id": 73
},
"minecraft:cherry_leaves": {
"protocol_id": 33
@@ -11094,37 +11362,37 @@
"protocol_id": 41
},
"minecraft:crimson_spore": {
- "protocol_id": 79
+ "protocol_id": 80
},
"minecraft:crit": {
"protocol_id": 5
},
"minecraft:current_down": {
- "protocol_id": 67
+ "protocol_id": 68
},
"minecraft:damage_indicator": {
"protocol_id": 6
},
"minecraft:dolphin": {
- "protocol_id": 70
+ "protocol_id": 71
},
"minecraft:dragon_breath": {
"protocol_id": 7
},
"minecraft:dripping_dripstone_lava": {
- "protocol_id": 89
+ "protocol_id": 90
},
"minecraft:dripping_dripstone_water": {
- "protocol_id": 91
+ "protocol_id": 92
},
"minecraft:dripping_honey": {
- "protocol_id": 73
+ "protocol_id": 74
},
"minecraft:dripping_lava": {
"protocol_id": 8
},
"minecraft:dripping_obsidian_tear": {
- "protocol_id": 82
+ "protocol_id": 83
},
"minecraft:dripping_water": {
"protocol_id": 11
@@ -11136,22 +11404,22 @@
"protocol_id": 14
},
"minecraft:dust_pillar": {
- "protocol_id": 105
+ "protocol_id": 106
},
"minecraft:dust_plume": {
- "protocol_id": 101
+ "protocol_id": 102
},
"minecraft:effect": {
"protocol_id": 15
},
"minecraft:egg_crack": {
- "protocol_id": 100
+ "protocol_id": 101
},
"minecraft:elder_guardian": {
"protocol_id": 16
},
"minecraft:electric_spark": {
- "protocol_id": 97
+ "protocol_id": 98
},
"minecraft:enchant": {
"protocol_id": 18
@@ -11172,28 +11440,28 @@
"protocol_id": 21
},
"minecraft:falling_dripstone_lava": {
- "protocol_id": 90
+ "protocol_id": 91
},
"minecraft:falling_dripstone_water": {
- "protocol_id": 92
+ "protocol_id": 93
},
"minecraft:falling_dust": {
"protocol_id": 28
},
"minecraft:falling_honey": {
- "protocol_id": 74
+ "protocol_id": 75
},
"minecraft:falling_lava": {
"protocol_id": 9
},
"minecraft:falling_nectar": {
- "protocol_id": 76
+ "protocol_id": 77
},
"minecraft:falling_obsidian_tear": {
- "protocol_id": 83
+ "protocol_id": 84
},
"minecraft:falling_spore_blossom": {
- "protocol_id": 77
+ "protocol_id": 78
},
"minecraft:falling_water": {
"protocol_id": 12
@@ -11211,10 +11479,10 @@
"protocol_id": 39
},
"minecraft:glow": {
- "protocol_id": 94
+ "protocol_id": 95
},
"minecraft:glow_squid_ink": {
- "protocol_id": 93
+ "protocol_id": 94
},
"minecraft:gust": {
"protocol_id": 23
@@ -11241,58 +11509,58 @@
"protocol_id": 44
},
"minecraft:item_cobweb": {
- "protocol_id": 47
- },
- "minecraft:item_slime": {
- "protocol_id": 46
- },
- "minecraft:item_snowball": {
"protocol_id": 48
},
+ "minecraft:item_slime": {
+ "protocol_id": 47
+ },
+ "minecraft:item_snowball": {
+ "protocol_id": 49
+ },
"minecraft:landing_honey": {
- "protocol_id": 75
+ "protocol_id": 76
},
"minecraft:landing_lava": {
"protocol_id": 10
},
"minecraft:landing_obsidian_tear": {
- "protocol_id": 84
- },
- "minecraft:large_smoke": {
- "protocol_id": 49
- },
- "minecraft:lava": {
- "protocol_id": 50
- },
- "minecraft:mycelium": {
- "protocol_id": 51
- },
- "minecraft:nautilus": {
- "protocol_id": 69
- },
- "minecraft:note": {
- "protocol_id": 52
- },
- "minecraft:ominous_spawning": {
- "protocol_id": 106
- },
- "minecraft:poof": {
- "protocol_id": 53
- },
- "minecraft:portal": {
- "protocol_id": 54
- },
- "minecraft:raid_omen": {
- "protocol_id": 107
- },
- "minecraft:rain": {
- "protocol_id": 55
- },
- "minecraft:reverse_portal": {
"protocol_id": 85
},
+ "minecraft:large_smoke": {
+ "protocol_id": 50
+ },
+ "minecraft:lava": {
+ "protocol_id": 51
+ },
+ "minecraft:mycelium": {
+ "protocol_id": 52
+ },
+ "minecraft:nautilus": {
+ "protocol_id": 70
+ },
+ "minecraft:note": {
+ "protocol_id": 53
+ },
+ "minecraft:ominous_spawning": {
+ "protocol_id": 107
+ },
+ "minecraft:poof": {
+ "protocol_id": 54
+ },
+ "minecraft:portal": {
+ "protocol_id": 55
+ },
+ "minecraft:raid_omen": {
+ "protocol_id": 108
+ },
+ "minecraft:rain": {
+ "protocol_id": 56
+ },
+ "minecraft:reverse_portal": {
+ "protocol_id": 86
+ },
"minecraft:scrape": {
- "protocol_id": 98
+ "protocol_id": 99
},
"minecraft:sculk_charge": {
"protocol_id": 35
@@ -11304,22 +11572,22 @@
"protocol_id": 34
},
"minecraft:shriek": {
- "protocol_id": 99
+ "protocol_id": 100
},
"minecraft:small_flame": {
- "protocol_id": 87
+ "protocol_id": 88
},
"minecraft:small_gust": {
"protocol_id": 24
},
"minecraft:smoke": {
- "protocol_id": 56
+ "protocol_id": 57
},
"minecraft:sneeze": {
- "protocol_id": 58
+ "protocol_id": 59
},
"minecraft:snowflake": {
- "protocol_id": 88
+ "protocol_id": 89
},
"minecraft:sonic_boom": {
"protocol_id": 27
@@ -11331,58 +11599,61 @@
"protocol_id": 37
},
"minecraft:spit": {
- "protocol_id": 59
- },
- "minecraft:splash": {
- "protocol_id": 64
- },
- "minecraft:spore_blossom_air": {
- "protocol_id": 81
- },
- "minecraft:squid_ink": {
"protocol_id": 60
},
- "minecraft:sweep_attack": {
+ "minecraft:splash": {
+ "protocol_id": 65
+ },
+ "minecraft:spore_blossom_air": {
+ "protocol_id": 82
+ },
+ "minecraft:squid_ink": {
"protocol_id": 61
},
- "minecraft:totem_of_undying": {
+ "minecraft:sweep_attack": {
"protocol_id": 62
},
- "minecraft:trial_omen": {
- "protocol_id": 108
- },
- "minecraft:trial_spawner_detection": {
- "protocol_id": 102
- },
- "minecraft:trial_spawner_detection_ominous": {
- "protocol_id": 103
- },
- "minecraft:underwater": {
+ "minecraft:totem_of_undying": {
"protocol_id": 63
},
- "minecraft:vault_connection": {
+ "minecraft:trail": {
+ "protocol_id": 46
+ },
+ "minecraft:trial_omen": {
+ "protocol_id": 109
+ },
+ "minecraft:trial_spawner_detection": {
+ "protocol_id": 103
+ },
+ "minecraft:trial_spawner_detection_ominous": {
"protocol_id": 104
},
+ "minecraft:underwater": {
+ "protocol_id": 64
+ },
+ "minecraft:vault_connection": {
+ "protocol_id": 105
+ },
"minecraft:vibration": {
"protocol_id": 45
},
"minecraft:warped_spore": {
- "protocol_id": 80
+ "protocol_id": 81
},
"minecraft:wax_off": {
- "protocol_id": 96
+ "protocol_id": 97
},
"minecraft:wax_on": {
- "protocol_id": 95
+ "protocol_id": 96
},
"minecraft:white_ash": {
- "protocol_id": 86
+ "protocol_id": 87
},
"minecraft:white_smoke": {
- "protocol_id": 57
+ "protocol_id": 58
},
"minecraft:witch": {
- "protocol_id": 65
+ "protocol_id": 66
}
},
"protocol_id": 8
@@ -11620,16 +11891,80 @@
},
"protocol_id": 7
},
+ "minecraft:recipe_book_category": {
+ "entries": {
+ "minecraft:blast_furnace_blocks": {
+ "protocol_id": 7
+ },
+ "minecraft:blast_furnace_misc": {
+ "protocol_id": 8
+ },
+ "minecraft:campfire": {
+ "protocol_id": 12
+ },
+ "minecraft:crafting_building_blocks": {
+ "protocol_id": 0
+ },
+ "minecraft:crafting_equipment": {
+ "protocol_id": 2
+ },
+ "minecraft:crafting_misc": {
+ "protocol_id": 3
+ },
+ "minecraft:crafting_redstone": {
+ "protocol_id": 1
+ },
+ "minecraft:furnace_blocks": {
+ "protocol_id": 5
+ },
+ "minecraft:furnace_food": {
+ "protocol_id": 4
+ },
+ "minecraft:furnace_misc": {
+ "protocol_id": 6
+ },
+ "minecraft:smithing": {
+ "protocol_id": 11
+ },
+ "minecraft:smoker_food": {
+ "protocol_id": 9
+ },
+ "minecraft:stonecutter": {
+ "protocol_id": 10
+ }
+ },
+ "protocol_id": 79
+ },
+ "minecraft:recipe_display": {
+ "entries": {
+ "minecraft:crafting_shaped": {
+ "protocol_id": 1
+ },
+ "minecraft:crafting_shapeless": {
+ "protocol_id": 0
+ },
+ "minecraft:furnace": {
+ "protocol_id": 2
+ },
+ "minecraft:smithing": {
+ "protocol_id": 4
+ },
+ "minecraft:stonecutter": {
+ "protocol_id": 3
+ }
+ },
+ "protocol_id": 77
+ },
"minecraft:recipe_serializer": {
"entries": {
"minecraft:blasting": {
- "protocol_id": 16
+ "protocol_id": 15
},
"minecraft:campfire_cooking": {
- "protocol_id": 18
+ "protocol_id": 17
},
"minecraft:crafting_decorated_pot": {
- "protocol_id": 22
+ "protocol_id": 21
},
"minecraft:crafting_shaped": {
"protocol_id": 0
@@ -11662,34 +11997,31 @@
"protocol_id": 5
},
"minecraft:crafting_special_repairitem": {
- "protocol_id": 14
+ "protocol_id": 13
},
"minecraft:crafting_special_shielddecoration": {
"protocol_id": 11
},
- "minecraft:crafting_special_shulkerboxcoloring": {
- "protocol_id": 12
- },
- "minecraft:crafting_special_suspiciousstew": {
- "protocol_id": 13
- },
"minecraft:crafting_special_tippedarrow": {
"protocol_id": 9
},
+ "minecraft:crafting_transmute": {
+ "protocol_id": 12
+ },
"minecraft:smelting": {
- "protocol_id": 15
+ "protocol_id": 14
},
"minecraft:smithing_transform": {
- "protocol_id": 20
+ "protocol_id": 19
},
"minecraft:smithing_trim": {
- "protocol_id": 21
+ "protocol_id": 20
},
"minecraft:smoking": {
- "protocol_id": 17
+ "protocol_id": 16
},
"minecraft:stonecutting": {
- "protocol_id": 19
+ "protocol_id": 18
}
},
"protocol_id": 17
@@ -11861,6 +12193,35 @@
},
"protocol_id": 26
},
+ "minecraft:slot_display": {
+ "entries": {
+ "minecraft:any_fuel": {
+ "protocol_id": 1
+ },
+ "minecraft:composite": {
+ "protocol_id": 7
+ },
+ "minecraft:empty": {
+ "protocol_id": 0
+ },
+ "minecraft:item": {
+ "protocol_id": 2
+ },
+ "minecraft:item_stack": {
+ "protocol_id": 3
+ },
+ "minecraft:smithing_trim": {
+ "protocol_id": 5
+ },
+ "minecraft:tag": {
+ "protocol_id": 4
+ },
+ "minecraft:with_remainder": {
+ "protocol_id": 6
+ }
+ },
+ "protocol_id": 78
+ },
"minecraft:sound_event": {
"entries": {
"minecraft:ambient.basalt_deltas.additions": {
@@ -12092,19 +12453,19 @@
"protocol_id": 127
},
"minecraft:block.bamboo_wood_hanging_sign.break": {
- "protocol_id": 669
+ "protocol_id": 687
},
"minecraft:block.bamboo_wood_hanging_sign.fall": {
- "protocol_id": 670
+ "protocol_id": 688
},
"minecraft:block.bamboo_wood_hanging_sign.hit": {
- "protocol_id": 671
+ "protocol_id": 689
},
"minecraft:block.bamboo_wood_hanging_sign.place": {
- "protocol_id": 672
+ "protocol_id": 690
},
"minecraft:block.bamboo_wood_hanging_sign.step": {
- "protocol_id": 668
+ "protocol_id": 686
},
"minecraft:block.bamboo_wood_pressure_plate.click_off": {
"protocol_id": 124
@@ -12188,10 +12549,10 @@
"protocol_id": 161
},
"minecraft:block.big_dripleaf.tilt_down": {
- "protocol_id": 443
+ "protocol_id": 463
},
"minecraft:block.big_dripleaf.tilt_up": {
- "protocol_id": 444
+ "protocol_id": 464
},
"minecraft:block.blastfurnace.fire_crackle": {
"protocol_id": 182
@@ -12230,1888 +12591,1930 @@
"protocol_id": 209
},
"minecraft:block.cake.add_candle": {
- "protocol_id": 225
- },
- "minecraft:block.calcite.break": {
- "protocol_id": 226
- },
- "minecraft:block.calcite.fall": {
- "protocol_id": 230
- },
- "minecraft:block.calcite.hit": {
- "protocol_id": 229
- },
- "minecraft:block.calcite.place": {
- "protocol_id": 228
- },
- "minecraft:block.calcite.step": {
"protocol_id": 227
},
+ "minecraft:block.calcite.break": {
+ "protocol_id": 228
+ },
+ "minecraft:block.calcite.fall": {
+ "protocol_id": 232
+ },
+ "minecraft:block.calcite.hit": {
+ "protocol_id": 231
+ },
+ "minecraft:block.calcite.place": {
+ "protocol_id": 230
+ },
+ "minecraft:block.calcite.step": {
+ "protocol_id": 229
+ },
"minecraft:block.campfire.crackle": {
- "protocol_id": 242
- },
- "minecraft:block.candle.ambient": {
- "protocol_id": 243
- },
- "minecraft:block.candle.break": {
"protocol_id": 244
},
- "minecraft:block.candle.extinguish": {
+ "minecraft:block.candle.ambient": {
"protocol_id": 245
},
- "minecraft:block.candle.fall": {
+ "minecraft:block.candle.break": {
"protocol_id": 246
},
- "minecraft:block.candle.hit": {
+ "minecraft:block.candle.extinguish": {
"protocol_id": 247
},
- "minecraft:block.candle.place": {
+ "minecraft:block.candle.fall": {
"protocol_id": 248
},
- "minecraft:block.candle.step": {
+ "minecraft:block.candle.hit": {
"protocol_id": 249
},
+ "minecraft:block.candle.place": {
+ "protocol_id": 250
+ },
+ "minecraft:block.candle.step": {
+ "protocol_id": 251
+ },
"minecraft:block.cave_vines.break": {
- "protocol_id": 259
- },
- "minecraft:block.cave_vines.fall": {
- "protocol_id": 260
- },
- "minecraft:block.cave_vines.hit": {
"protocol_id": 261
},
- "minecraft:block.cave_vines.pick_berries": {
- "protocol_id": 264
- },
- "minecraft:block.cave_vines.place": {
+ "minecraft:block.cave_vines.fall": {
"protocol_id": 262
},
- "minecraft:block.cave_vines.step": {
+ "minecraft:block.cave_vines.hit": {
"protocol_id": 263
},
- "minecraft:block.chain.break": {
- "protocol_id": 265
- },
- "minecraft:block.chain.fall": {
+ "minecraft:block.cave_vines.pick_berries": {
"protocol_id": 266
},
- "minecraft:block.chain.hit": {
+ "minecraft:block.cave_vines.place": {
+ "protocol_id": 264
+ },
+ "minecraft:block.cave_vines.step": {
+ "protocol_id": 265
+ },
+ "minecraft:block.chain.break": {
"protocol_id": 267
},
- "minecraft:block.chain.place": {
+ "minecraft:block.chain.fall": {
"protocol_id": 268
},
- "minecraft:block.chain.step": {
+ "minecraft:block.chain.hit": {
"protocol_id": 269
},
- "minecraft:block.cherry_leaves.break": {
- "protocol_id": 280
- },
- "minecraft:block.cherry_leaves.fall": {
- "protocol_id": 281
- },
- "minecraft:block.cherry_leaves.hit": {
- "protocol_id": 282
- },
- "minecraft:block.cherry_leaves.place": {
- "protocol_id": 283
- },
- "minecraft:block.cherry_leaves.step": {
- "protocol_id": 284
- },
- "minecraft:block.cherry_sapling.break": {
- "protocol_id": 275
- },
- "minecraft:block.cherry_sapling.fall": {
- "protocol_id": 276
- },
- "minecraft:block.cherry_sapling.hit": {
- "protocol_id": 277
- },
- "minecraft:block.cherry_sapling.place": {
- "protocol_id": 278
- },
- "minecraft:block.cherry_sapling.step": {
- "protocol_id": 279
- },
- "minecraft:block.cherry_wood.break": {
+ "minecraft:block.chain.place": {
"protocol_id": 270
},
- "minecraft:block.cherry_wood.fall": {
+ "minecraft:block.chain.step": {
"protocol_id": 271
},
- "minecraft:block.cherry_wood.hit": {
- "protocol_id": 272
+ "minecraft:block.cherry_leaves.break": {
+ "protocol_id": 282
},
- "minecraft:block.cherry_wood.place": {
- "protocol_id": 273
+ "minecraft:block.cherry_leaves.fall": {
+ "protocol_id": 283
},
- "minecraft:block.cherry_wood.step": {
- "protocol_id": 274
+ "minecraft:block.cherry_leaves.hit": {
+ "protocol_id": 284
},
- "minecraft:block.cherry_wood_button.click_off": {
- "protocol_id": 294
- },
- "minecraft:block.cherry_wood_button.click_on": {
- "protocol_id": 295
- },
- "minecraft:block.cherry_wood_door.close": {
- "protocol_id": 290
- },
- "minecraft:block.cherry_wood_door.open": {
- "protocol_id": 291
- },
- "minecraft:block.cherry_wood_fence_gate.close": {
- "protocol_id": 298
- },
- "minecraft:block.cherry_wood_fence_gate.open": {
- "protocol_id": 299
- },
- "minecraft:block.cherry_wood_hanging_sign.break": {
- "protocol_id": 286
- },
- "minecraft:block.cherry_wood_hanging_sign.fall": {
- "protocol_id": 287
- },
- "minecraft:block.cherry_wood_hanging_sign.hit": {
- "protocol_id": 288
- },
- "minecraft:block.cherry_wood_hanging_sign.place": {
- "protocol_id": 289
- },
- "minecraft:block.cherry_wood_hanging_sign.step": {
+ "minecraft:block.cherry_leaves.place": {
"protocol_id": 285
},
- "minecraft:block.cherry_wood_pressure_plate.click_off": {
+ "minecraft:block.cherry_leaves.step": {
+ "protocol_id": 286
+ },
+ "minecraft:block.cherry_sapling.break": {
+ "protocol_id": 277
+ },
+ "minecraft:block.cherry_sapling.fall": {
+ "protocol_id": 278
+ },
+ "minecraft:block.cherry_sapling.hit": {
+ "protocol_id": 279
+ },
+ "minecraft:block.cherry_sapling.place": {
+ "protocol_id": 280
+ },
+ "minecraft:block.cherry_sapling.step": {
+ "protocol_id": 281
+ },
+ "minecraft:block.cherry_wood.break": {
+ "protocol_id": 272
+ },
+ "minecraft:block.cherry_wood.fall": {
+ "protocol_id": 273
+ },
+ "minecraft:block.cherry_wood.hit": {
+ "protocol_id": 274
+ },
+ "minecraft:block.cherry_wood.place": {
+ "protocol_id": 275
+ },
+ "minecraft:block.cherry_wood.step": {
+ "protocol_id": 276
+ },
+ "minecraft:block.cherry_wood_button.click_off": {
"protocol_id": 296
},
- "minecraft:block.cherry_wood_pressure_plate.click_on": {
+ "minecraft:block.cherry_wood_button.click_on": {
"protocol_id": 297
},
- "minecraft:block.cherry_wood_trapdoor.close": {
+ "minecraft:block.cherry_wood_door.close": {
"protocol_id": 292
},
- "minecraft:block.cherry_wood_trapdoor.open": {
+ "minecraft:block.cherry_wood_door.open": {
"protocol_id": 293
},
- "minecraft:block.chest.close": {
+ "minecraft:block.cherry_wood_fence_gate.close": {
"protocol_id": 300
},
- "minecraft:block.chest.locked": {
+ "minecraft:block.cherry_wood_fence_gate.open": {
"protocol_id": 301
},
- "minecraft:block.chest.open": {
+ "minecraft:block.cherry_wood_hanging_sign.break": {
+ "protocol_id": 288
+ },
+ "minecraft:block.cherry_wood_hanging_sign.fall": {
+ "protocol_id": 289
+ },
+ "minecraft:block.cherry_wood_hanging_sign.hit": {
+ "protocol_id": 290
+ },
+ "minecraft:block.cherry_wood_hanging_sign.place": {
+ "protocol_id": 291
+ },
+ "minecraft:block.cherry_wood_hanging_sign.step": {
+ "protocol_id": 287
+ },
+ "minecraft:block.cherry_wood_pressure_plate.click_off": {
+ "protocol_id": 298
+ },
+ "minecraft:block.cherry_wood_pressure_plate.click_on": {
+ "protocol_id": 299
+ },
+ "minecraft:block.cherry_wood_trapdoor.close": {
+ "protocol_id": 294
+ },
+ "minecraft:block.cherry_wood_trapdoor.open": {
+ "protocol_id": 295
+ },
+ "minecraft:block.chest.close": {
"protocol_id": 302
},
+ "minecraft:block.chest.locked": {
+ "protocol_id": 303
+ },
+ "minecraft:block.chest.open": {
+ "protocol_id": 304
+ },
"minecraft:block.chiseled_bookshelf.break": {
- "protocol_id": 308
- },
- "minecraft:block.chiseled_bookshelf.fall": {
- "protocol_id": 309
- },
- "minecraft:block.chiseled_bookshelf.hit": {
"protocol_id": 310
},
- "minecraft:block.chiseled_bookshelf.insert": {
+ "minecraft:block.chiseled_bookshelf.fall": {
"protocol_id": 311
},
- "minecraft:block.chiseled_bookshelf.insert.enchanted": {
+ "minecraft:block.chiseled_bookshelf.hit": {
"protocol_id": 312
},
- "minecraft:block.chiseled_bookshelf.pickup": {
- "protocol_id": 314
- },
- "minecraft:block.chiseled_bookshelf.pickup.enchanted": {
- "protocol_id": 315
- },
- "minecraft:block.chiseled_bookshelf.place": {
- "protocol_id": 316
- },
- "minecraft:block.chiseled_bookshelf.step": {
+ "minecraft:block.chiseled_bookshelf.insert": {
"protocol_id": 313
},
- "minecraft:block.chorus_flower.death": {
+ "minecraft:block.chiseled_bookshelf.insert.enchanted": {
+ "protocol_id": 314
+ },
+ "minecraft:block.chiseled_bookshelf.pickup": {
+ "protocol_id": 316
+ },
+ "minecraft:block.chiseled_bookshelf.pickup.enchanted": {
"protocol_id": 317
},
- "minecraft:block.chorus_flower.grow": {
+ "minecraft:block.chiseled_bookshelf.place": {
"protocol_id": 318
},
- "minecraft:block.cobweb.break": {
+ "minecraft:block.chiseled_bookshelf.step": {
+ "protocol_id": 315
+ },
+ "minecraft:block.chorus_flower.death": {
+ "protocol_id": 319
+ },
+ "minecraft:block.chorus_flower.grow": {
"protocol_id": 320
},
- "minecraft:block.cobweb.fall": {
- "protocol_id": 324
- },
- "minecraft:block.cobweb.hit": {
- "protocol_id": 323
- },
- "minecraft:block.cobweb.place": {
+ "minecraft:block.cobweb.break": {
"protocol_id": 322
},
+ "minecraft:block.cobweb.fall": {
+ "protocol_id": 326
+ },
+ "minecraft:block.cobweb.hit": {
+ "protocol_id": 325
+ },
+ "minecraft:block.cobweb.place": {
+ "protocol_id": 324
+ },
"minecraft:block.cobweb.step": {
- "protocol_id": 321
+ "protocol_id": 323
},
"minecraft:block.comparator.click": {
- "protocol_id": 329
- },
- "minecraft:block.composter.empty": {
- "protocol_id": 330
- },
- "minecraft:block.composter.fill": {
"protocol_id": 331
},
- "minecraft:block.composter.fill_success": {
+ "minecraft:block.composter.empty": {
"protocol_id": 332
},
- "minecraft:block.composter.ready": {
+ "minecraft:block.composter.fill": {
"protocol_id": 333
},
- "minecraft:block.conduit.activate": {
+ "minecraft:block.composter.fill_success": {
"protocol_id": 334
},
- "minecraft:block.conduit.ambient": {
+ "minecraft:block.composter.ready": {
"protocol_id": 335
},
- "minecraft:block.conduit.ambient.short": {
+ "minecraft:block.conduit.activate": {
"protocol_id": 336
},
- "minecraft:block.conduit.attack.target": {
+ "minecraft:block.conduit.ambient": {
"protocol_id": 337
},
- "minecraft:block.conduit.deactivate": {
+ "minecraft:block.conduit.ambient.short": {
"protocol_id": 338
},
- "minecraft:block.copper.break": {
- "protocol_id": 346
- },
- "minecraft:block.copper.fall": {
- "protocol_id": 350
- },
- "minecraft:block.copper.hit": {
- "protocol_id": 349
- },
- "minecraft:block.copper.place": {
- "protocol_id": 348
- },
- "minecraft:block.copper.step": {
- "protocol_id": 347
- },
- "minecraft:block.copper_bulb.break": {
+ "minecraft:block.conduit.attack.target": {
"protocol_id": 339
},
- "minecraft:block.copper_bulb.fall": {
- "protocol_id": 343
- },
- "minecraft:block.copper_bulb.hit": {
- "protocol_id": 342
- },
- "minecraft:block.copper_bulb.place": {
- "protocol_id": 341
- },
- "minecraft:block.copper_bulb.step": {
+ "minecraft:block.conduit.deactivate": {
"protocol_id": 340
},
- "minecraft:block.copper_bulb.turn_off": {
- "protocol_id": 345
+ "minecraft:block.copper.break": {
+ "protocol_id": 348
},
- "minecraft:block.copper_bulb.turn_on": {
- "protocol_id": 344
- },
- "minecraft:block.copper_door.close": {
- "protocol_id": 351
- },
- "minecraft:block.copper_door.open": {
+ "minecraft:block.copper.fall": {
"protocol_id": 352
},
- "minecraft:block.copper_grate.break": {
+ "minecraft:block.copper.hit": {
+ "protocol_id": 351
+ },
+ "minecraft:block.copper.place": {
+ "protocol_id": 350
+ },
+ "minecraft:block.copper.step": {
+ "protocol_id": 349
+ },
+ "minecraft:block.copper_bulb.break": {
+ "protocol_id": 341
+ },
+ "minecraft:block.copper_bulb.fall": {
+ "protocol_id": 345
+ },
+ "minecraft:block.copper_bulb.hit": {
+ "protocol_id": 344
+ },
+ "minecraft:block.copper_bulb.place": {
+ "protocol_id": 343
+ },
+ "minecraft:block.copper_bulb.step": {
+ "protocol_id": 342
+ },
+ "minecraft:block.copper_bulb.turn_off": {
+ "protocol_id": 347
+ },
+ "minecraft:block.copper_bulb.turn_on": {
+ "protocol_id": 346
+ },
+ "minecraft:block.copper_door.close": {
"protocol_id": 353
},
- "minecraft:block.copper_grate.fall": {
- "protocol_id": 357
- },
- "minecraft:block.copper_grate.hit": {
- "protocol_id": 356
- },
- "minecraft:block.copper_grate.place": {
- "protocol_id": 355
- },
- "minecraft:block.copper_grate.step": {
+ "minecraft:block.copper_door.open": {
"protocol_id": 354
},
- "minecraft:block.copper_trapdoor.close": {
- "protocol_id": 358
+ "minecraft:block.copper_grate.break": {
+ "protocol_id": 355
},
- "minecraft:block.copper_trapdoor.open": {
+ "minecraft:block.copper_grate.fall": {
"protocol_id": 359
},
- "minecraft:block.coral_block.break": {
+ "minecraft:block.copper_grate.hit": {
+ "protocol_id": 358
+ },
+ "minecraft:block.copper_grate.place": {
+ "protocol_id": 357
+ },
+ "minecraft:block.copper_grate.step": {
+ "protocol_id": 356
+ },
+ "minecraft:block.copper_trapdoor.close": {
"protocol_id": 360
},
- "minecraft:block.coral_block.fall": {
+ "minecraft:block.copper_trapdoor.open": {
"protocol_id": 361
},
- "minecraft:block.coral_block.hit": {
+ "minecraft:block.coral_block.break": {
"protocol_id": 362
},
- "minecraft:block.coral_block.place": {
+ "minecraft:block.coral_block.fall": {
"protocol_id": 363
},
- "minecraft:block.coral_block.step": {
+ "minecraft:block.coral_block.hit": {
"protocol_id": 364
},
+ "minecraft:block.coral_block.place": {
+ "protocol_id": 365
+ },
+ "minecraft:block.coral_block.step": {
+ "protocol_id": 366
+ },
"minecraft:block.crafter.craft": {
- "protocol_id": 370
+ "protocol_id": 372
},
"minecraft:block.crafter.fail": {
- "protocol_id": 371
+ "protocol_id": 373
},
- "minecraft:block.crop.break": {
- "protocol_id": 375
+ "minecraft:block.creaking_heart.break": {
+ "protocol_id": 384
},
- "minecraft:block.decorated_pot.break": {
+ "minecraft:block.creaking_heart.fall": {
"protocol_id": 385
},
- "minecraft:block.decorated_pot.fall": {
+ "minecraft:block.creaking_heart.hit": {
"protocol_id": 386
},
- "minecraft:block.decorated_pot.hit": {
+ "minecraft:block.creaking_heart.hurt": {
"protocol_id": 387
},
- "minecraft:block.decorated_pot.insert": {
- "protocol_id": 388
- },
- "minecraft:block.decorated_pot.insert_fail": {
- "protocol_id": 389
- },
- "minecraft:block.decorated_pot.place": {
- "protocol_id": 391
- },
- "minecraft:block.decorated_pot.shatter": {
- "protocol_id": 392
- },
- "minecraft:block.decorated_pot.step": {
+ "minecraft:block.creaking_heart.idle": {
"protocol_id": 390
},
- "minecraft:block.deepslate.break": {
- "protocol_id": 398
+ "minecraft:block.creaking_heart.place": {
+ "protocol_id": 388
},
- "minecraft:block.deepslate.fall": {
- "protocol_id": 399
+ "minecraft:block.creaking_heart.spawn": {
+ "protocol_id": 391
},
- "minecraft:block.deepslate.hit": {
- "protocol_id": 400
+ "minecraft:block.creaking_heart.step": {
+ "protocol_id": 389
},
- "minecraft:block.deepslate.place": {
- "protocol_id": 401
- },
- "minecraft:block.deepslate.step": {
- "protocol_id": 402
- },
- "minecraft:block.deepslate_bricks.break": {
- "protocol_id": 393
- },
- "minecraft:block.deepslate_bricks.fall": {
- "protocol_id": 394
- },
- "minecraft:block.deepslate_bricks.hit": {
+ "minecraft:block.crop.break": {
"protocol_id": 395
},
- "minecraft:block.deepslate_bricks.place": {
- "protocol_id": 396
- },
- "minecraft:block.deepslate_bricks.step": {
- "protocol_id": 397
- },
- "minecraft:block.deepslate_tiles.break": {
- "protocol_id": 403
- },
- "minecraft:block.deepslate_tiles.fall": {
- "protocol_id": 404
- },
- "minecraft:block.deepslate_tiles.hit": {
+ "minecraft:block.decorated_pot.break": {
"protocol_id": 405
},
- "minecraft:block.deepslate_tiles.place": {
+ "minecraft:block.decorated_pot.fall": {
"protocol_id": 406
},
- "minecraft:block.deepslate_tiles.step": {
+ "minecraft:block.decorated_pot.hit": {
"protocol_id": 407
},
- "minecraft:block.dispenser.dispense": {
+ "minecraft:block.decorated_pot.insert": {
"protocol_id": 408
},
- "minecraft:block.dispenser.fail": {
+ "minecraft:block.decorated_pot.insert_fail": {
"protocol_id": 409
},
- "minecraft:block.dispenser.launch": {
+ "minecraft:block.decorated_pot.place": {
+ "protocol_id": 411
+ },
+ "minecraft:block.decorated_pot.shatter": {
+ "protocol_id": 412
+ },
+ "minecraft:block.decorated_pot.step": {
"protocol_id": 410
},
- "minecraft:block.dripstone_block.break": {
+ "minecraft:block.deepslate.break": {
+ "protocol_id": 418
+ },
+ "minecraft:block.deepslate.fall": {
+ "protocol_id": 419
+ },
+ "minecraft:block.deepslate.hit": {
+ "protocol_id": 420
+ },
+ "minecraft:block.deepslate.place": {
+ "protocol_id": 421
+ },
+ "minecraft:block.deepslate.step": {
+ "protocol_id": 422
+ },
+ "minecraft:block.deepslate_bricks.break": {
+ "protocol_id": 413
+ },
+ "minecraft:block.deepslate_bricks.fall": {
+ "protocol_id": 414
+ },
+ "minecraft:block.deepslate_bricks.hit": {
+ "protocol_id": 415
+ },
+ "minecraft:block.deepslate_bricks.place": {
+ "protocol_id": 416
+ },
+ "minecraft:block.deepslate_bricks.step": {
+ "protocol_id": 417
+ },
+ "minecraft:block.deepslate_tiles.break": {
+ "protocol_id": 423
+ },
+ "minecraft:block.deepslate_tiles.fall": {
+ "protocol_id": 424
+ },
+ "minecraft:block.deepslate_tiles.hit": {
+ "protocol_id": 425
+ },
+ "minecraft:block.deepslate_tiles.place": {
+ "protocol_id": 426
+ },
+ "minecraft:block.deepslate_tiles.step": {
+ "protocol_id": 427
+ },
+ "minecraft:block.dispenser.dispense": {
"protocol_id": 428
},
- "minecraft:block.dripstone_block.fall": {
- "protocol_id": 432
- },
- "minecraft:block.dripstone_block.hit": {
- "protocol_id": 431
- },
- "minecraft:block.dripstone_block.place": {
- "protocol_id": 430
- },
- "minecraft:block.dripstone_block.step": {
+ "minecraft:block.dispenser.fail": {
"protocol_id": 429
},
+ "minecraft:block.dispenser.launch": {
+ "protocol_id": 430
+ },
+ "minecraft:block.dripstone_block.break": {
+ "protocol_id": 448
+ },
+ "minecraft:block.dripstone_block.fall": {
+ "protocol_id": 452
+ },
+ "minecraft:block.dripstone_block.hit": {
+ "protocol_id": 451
+ },
+ "minecraft:block.dripstone_block.place": {
+ "protocol_id": 450
+ },
+ "minecraft:block.dripstone_block.step": {
+ "protocol_id": 449
+ },
"minecraft:block.enchantment_table.use": {
- "protocol_id": 465
+ "protocol_id": 485
},
"minecraft:block.end_gateway.spawn": {
- "protocol_id": 488
+ "protocol_id": 508
},
"minecraft:block.end_portal.spawn": {
- "protocol_id": 490
+ "protocol_id": 510
},
"minecraft:block.end_portal_frame.fill": {
- "protocol_id": 489
+ "protocol_id": 509
},
"minecraft:block.ender_chest.close": {
- "protocol_id": 466
+ "protocol_id": 486
},
"minecraft:block.ender_chest.open": {
- "protocol_id": 467
+ "protocol_id": 487
},
"minecraft:block.fence_gate.close": {
- "protocol_id": 502
- },
- "minecraft:block.fence_gate.open": {
- "protocol_id": 503
- },
- "minecraft:block.fire.ambient": {
- "protocol_id": 513
- },
- "minecraft:block.fire.extinguish": {
- "protocol_id": 514
- },
- "minecraft:block.flowering_azalea.break": {
- "protocol_id": 520
- },
- "minecraft:block.flowering_azalea.fall": {
- "protocol_id": 521
- },
- "minecraft:block.flowering_azalea.hit": {
"protocol_id": 522
},
- "minecraft:block.flowering_azalea.place": {
+ "minecraft:block.fence_gate.open": {
"protocol_id": 523
},
- "minecraft:block.flowering_azalea.step": {
- "protocol_id": 524
+ "minecraft:block.fire.ambient": {
+ "protocol_id": 533
},
- "minecraft:block.froglight.break": {
- "protocol_id": 546
+ "minecraft:block.fire.extinguish": {
+ "protocol_id": 534
},
- "minecraft:block.froglight.fall": {
- "protocol_id": 547
- },
- "minecraft:block.froglight.hit": {
- "protocol_id": 548
- },
- "minecraft:block.froglight.place": {
- "protocol_id": 549
- },
- "minecraft:block.froglight.step": {
- "protocol_id": 550
- },
- "minecraft:block.frogspawn.break": {
- "protocol_id": 552
- },
- "minecraft:block.frogspawn.fall": {
- "protocol_id": 553
- },
- "minecraft:block.frogspawn.hatch": {
- "protocol_id": 554
- },
- "minecraft:block.frogspawn.hit": {
- "protocol_id": 555
- },
- "minecraft:block.frogspawn.place": {
- "protocol_id": 556
- },
- "minecraft:block.frogspawn.step": {
- "protocol_id": 551
- },
- "minecraft:block.fungus.break": {
- "protocol_id": 961
- },
- "minecraft:block.fungus.fall": {
- "protocol_id": 965
- },
- "minecraft:block.fungus.hit": {
- "protocol_id": 964
- },
- "minecraft:block.fungus.place": {
- "protocol_id": 963
- },
- "minecraft:block.fungus.step": {
- "protocol_id": 962
- },
- "minecraft:block.furnace.fire_crackle": {
- "protocol_id": 570
- },
- "minecraft:block.gilded_blackstone.break": {
- "protocol_id": 588
- },
- "minecraft:block.gilded_blackstone.fall": {
- "protocol_id": 589
- },
- "minecraft:block.gilded_blackstone.hit": {
- "protocol_id": 590
- },
- "minecraft:block.gilded_blackstone.place": {
- "protocol_id": 591
- },
- "minecraft:block.gilded_blackstone.step": {
- "protocol_id": 592
- },
- "minecraft:block.glass.break": {
- "protocol_id": 593
- },
- "minecraft:block.glass.fall": {
- "protocol_id": 594
- },
- "minecraft:block.glass.hit": {
- "protocol_id": 595
- },
- "minecraft:block.glass.place": {
- "protocol_id": 596
- },
- "minecraft:block.glass.step": {
- "protocol_id": 597
- },
- "minecraft:block.grass.break": {
- "protocol_id": 628
- },
- "minecraft:block.grass.fall": {
- "protocol_id": 629
- },
- "minecraft:block.grass.hit": {
- "protocol_id": 630
- },
- "minecraft:block.grass.place": {
- "protocol_id": 631
- },
- "minecraft:block.grass.step": {
- "protocol_id": 632
- },
- "minecraft:block.gravel.break": {
- "protocol_id": 633
- },
- "minecraft:block.gravel.fall": {
- "protocol_id": 634
- },
- "minecraft:block.gravel.hit": {
- "protocol_id": 635
- },
- "minecraft:block.gravel.place": {
- "protocol_id": 636
- },
- "minecraft:block.gravel.step": {
- "protocol_id": 637
- },
- "minecraft:block.grindstone.use": {
- "protocol_id": 638
- },
- "minecraft:block.growing_plant.crop": {
- "protocol_id": 639
- },
- "minecraft:block.hanging_roots.break": {
- "protocol_id": 648
- },
- "minecraft:block.hanging_roots.fall": {
- "protocol_id": 649
- },
- "minecraft:block.hanging_roots.hit": {
- "protocol_id": 650
- },
- "minecraft:block.hanging_roots.place": {
- "protocol_id": 651
- },
- "minecraft:block.hanging_roots.step": {
- "protocol_id": 652
- },
- "minecraft:block.hanging_sign.break": {
- "protocol_id": 654
- },
- "minecraft:block.hanging_sign.fall": {
- "protocol_id": 655
- },
- "minecraft:block.hanging_sign.hit": {
- "protocol_id": 656
- },
- "minecraft:block.hanging_sign.place": {
- "protocol_id": 657
- },
- "minecraft:block.hanging_sign.step": {
- "protocol_id": 653
- },
- "minecraft:block.hanging_sign.waxed_interact_fail": {
- "protocol_id": 1514
- },
- "minecraft:block.heavy_core.break": {
- "protocol_id": 658
- },
- "minecraft:block.heavy_core.fall": {
- "protocol_id": 659
- },
- "minecraft:block.heavy_core.hit": {
- "protocol_id": 660
- },
- "minecraft:block.heavy_core.place": {
- "protocol_id": 661
- },
- "minecraft:block.heavy_core.step": {
- "protocol_id": 662
- },
- "minecraft:block.honey_block.break": {
- "protocol_id": 698
- },
- "minecraft:block.honey_block.fall": {
- "protocol_id": 699
- },
- "minecraft:block.honey_block.hit": {
- "protocol_id": 700
- },
- "minecraft:block.honey_block.place": {
- "protocol_id": 701
- },
- "minecraft:block.honey_block.slide": {
- "protocol_id": 702
- },
- "minecraft:block.honey_block.step": {
- "protocol_id": 703
- },
- "minecraft:block.iron_door.close": {
- "protocol_id": 746
- },
- "minecraft:block.iron_door.open": {
- "protocol_id": 747
- },
- "minecraft:block.iron_trapdoor.close": {
- "protocol_id": 754
- },
- "minecraft:block.iron_trapdoor.open": {
- "protocol_id": 755
- },
- "minecraft:block.ladder.break": {
- "protocol_id": 763
- },
- "minecraft:block.ladder.fall": {
- "protocol_id": 764
- },
- "minecraft:block.ladder.hit": {
- "protocol_id": 765
- },
- "minecraft:block.ladder.place": {
- "protocol_id": 766
- },
- "minecraft:block.ladder.step": {
- "protocol_id": 767
- },
- "minecraft:block.lantern.break": {
- "protocol_id": 768
- },
- "minecraft:block.lantern.fall": {
- "protocol_id": 769
- },
- "minecraft:block.lantern.hit": {
- "protocol_id": 770
- },
- "minecraft:block.lantern.place": {
- "protocol_id": 771
- },
- "minecraft:block.lantern.step": {
- "protocol_id": 772
- },
- "minecraft:block.large_amethyst_bud.break": {
- "protocol_id": 773
- },
- "minecraft:block.large_amethyst_bud.place": {
- "protocol_id": 774
- },
- "minecraft:block.lava.ambient": {
- "protocol_id": 775
- },
- "minecraft:block.lava.extinguish": {
- "protocol_id": 776
- },
- "minecraft:block.lava.pop": {
- "protocol_id": 777
- },
- "minecraft:block.lever.click": {
- "protocol_id": 780
- },
- "minecraft:block.lily_pad.place": {
- "protocol_id": 1483
- },
- "minecraft:block.lodestone.break": {
- "protocol_id": 794
- },
- "minecraft:block.lodestone.fall": {
- "protocol_id": 798
- },
- "minecraft:block.lodestone.hit": {
- "protocol_id": 797
- },
- "minecraft:block.lodestone.place": {
- "protocol_id": 796
- },
- "minecraft:block.lodestone.step": {
- "protocol_id": 795
- },
- "minecraft:block.mangrove_roots.break": {
- "protocol_id": 809
- },
- "minecraft:block.mangrove_roots.fall": {
- "protocol_id": 810
- },
- "minecraft:block.mangrove_roots.hit": {
- "protocol_id": 811
- },
- "minecraft:block.mangrove_roots.place": {
- "protocol_id": 812
- },
- "minecraft:block.mangrove_roots.step": {
- "protocol_id": 813
- },
- "minecraft:block.medium_amethyst_bud.break": {
- "protocol_id": 814
- },
- "minecraft:block.medium_amethyst_bud.place": {
- "protocol_id": 815
- },
- "minecraft:block.metal.break": {
- "protocol_id": 816
- },
- "minecraft:block.metal.fall": {
- "protocol_id": 817
- },
- "minecraft:block.metal.hit": {
- "protocol_id": 818
- },
- "minecraft:block.metal.place": {
- "protocol_id": 819
- },
- "minecraft:block.metal.step": {
- "protocol_id": 822
- },
- "minecraft:block.metal_pressure_plate.click_off": {
- "protocol_id": 820
- },
- "minecraft:block.metal_pressure_plate.click_on": {
- "protocol_id": 821
- },
- "minecraft:block.moss.break": {
- "protocol_id": 841
- },
- "minecraft:block.moss.fall": {
- "protocol_id": 842
- },
- "minecraft:block.moss.hit": {
- "protocol_id": 843
- },
- "minecraft:block.moss.place": {
- "protocol_id": 844
- },
- "minecraft:block.moss.step": {
- "protocol_id": 845
- },
- "minecraft:block.moss_carpet.break": {
- "protocol_id": 831
- },
- "minecraft:block.moss_carpet.fall": {
- "protocol_id": 832
- },
- "minecraft:block.moss_carpet.hit": {
- "protocol_id": 833
- },
- "minecraft:block.moss_carpet.place": {
- "protocol_id": 834
- },
- "minecraft:block.moss_carpet.step": {
- "protocol_id": 835
- },
- "minecraft:block.mud.break": {
- "protocol_id": 846
- },
- "minecraft:block.mud.fall": {
- "protocol_id": 847
- },
- "minecraft:block.mud.hit": {
- "protocol_id": 848
- },
- "minecraft:block.mud.place": {
- "protocol_id": 849
- },
- "minecraft:block.mud.step": {
- "protocol_id": 850
- },
- "minecraft:block.mud_bricks.break": {
- "protocol_id": 851
- },
- "minecraft:block.mud_bricks.fall": {
- "protocol_id": 852
- },
- "minecraft:block.mud_bricks.hit": {
- "protocol_id": 853
- },
- "minecraft:block.mud_bricks.place": {
- "protocol_id": 854
- },
- "minecraft:block.mud_bricks.step": {
- "protocol_id": 855
- },
- "minecraft:block.muddy_mangrove_roots.break": {
- "protocol_id": 856
- },
- "minecraft:block.muddy_mangrove_roots.fall": {
- "protocol_id": 857
- },
- "minecraft:block.muddy_mangrove_roots.hit": {
- "protocol_id": 858
- },
- "minecraft:block.muddy_mangrove_roots.place": {
- "protocol_id": 859
- },
- "minecraft:block.muddy_mangrove_roots.step": {
- "protocol_id": 860
- },
- "minecraft:block.nether_bricks.break": {
- "protocol_id": 918
- },
- "minecraft:block.nether_bricks.fall": {
- "protocol_id": 922
- },
- "minecraft:block.nether_bricks.hit": {
- "protocol_id": 921
- },
- "minecraft:block.nether_bricks.place": {
- "protocol_id": 920
- },
- "minecraft:block.nether_bricks.step": {
- "protocol_id": 919
- },
- "minecraft:block.nether_gold_ore.break": {
- "protocol_id": 1161
- },
- "minecraft:block.nether_gold_ore.fall": {
- "protocol_id": 1162
- },
- "minecraft:block.nether_gold_ore.hit": {
- "protocol_id": 1163
- },
- "minecraft:block.nether_gold_ore.place": {
- "protocol_id": 1164
- },
- "minecraft:block.nether_gold_ore.step": {
- "protocol_id": 1165
- },
- "minecraft:block.nether_ore.break": {
- "protocol_id": 1166
- },
- "minecraft:block.nether_ore.fall": {
- "protocol_id": 1167
- },
- "minecraft:block.nether_ore.hit": {
- "protocol_id": 1168
- },
- "minecraft:block.nether_ore.place": {
- "protocol_id": 1169
- },
- "minecraft:block.nether_ore.step": {
- "protocol_id": 1170
- },
- "minecraft:block.nether_sprouts.break": {
- "protocol_id": 956
- },
- "minecraft:block.nether_sprouts.fall": {
- "protocol_id": 960
- },
- "minecraft:block.nether_sprouts.hit": {
- "protocol_id": 959
- },
- "minecraft:block.nether_sprouts.place": {
- "protocol_id": 958
- },
- "minecraft:block.nether_sprouts.step": {
- "protocol_id": 957
- },
- "minecraft:block.nether_wart.break": {
- "protocol_id": 923
- },
- "minecraft:block.nether_wood.break": {
- "protocol_id": 925
- },
- "minecraft:block.nether_wood.fall": {
- "protocol_id": 926
- },
- "minecraft:block.nether_wood.hit": {
- "protocol_id": 927
- },
- "minecraft:block.nether_wood.place": {
- "protocol_id": 928
- },
- "minecraft:block.nether_wood.step": {
- "protocol_id": 929
- },
- "minecraft:block.nether_wood_button.click_off": {
- "protocol_id": 934
- },
- "minecraft:block.nether_wood_button.click_on": {
- "protocol_id": 935
- },
- "minecraft:block.nether_wood_door.close": {
- "protocol_id": 930
- },
- "minecraft:block.nether_wood_door.open": {
- "protocol_id": 931
- },
- "minecraft:block.nether_wood_fence_gate.close": {
- "protocol_id": 938
- },
- "minecraft:block.nether_wood_fence_gate.open": {
- "protocol_id": 939
- },
- "minecraft:block.nether_wood_hanging_sign.break": {
- "protocol_id": 664
- },
- "minecraft:block.nether_wood_hanging_sign.fall": {
- "protocol_id": 665
- },
- "minecraft:block.nether_wood_hanging_sign.hit": {
- "protocol_id": 666
- },
- "minecraft:block.nether_wood_hanging_sign.place": {
- "protocol_id": 667
- },
- "minecraft:block.nether_wood_hanging_sign.step": {
- "protocol_id": 663
- },
- "minecraft:block.nether_wood_pressure_plate.click_off": {
- "protocol_id": 936
- },
- "minecraft:block.nether_wood_pressure_plate.click_on": {
- "protocol_id": 937
- },
- "minecraft:block.nether_wood_trapdoor.close": {
- "protocol_id": 932
- },
- "minecraft:block.nether_wood_trapdoor.open": {
- "protocol_id": 933
- },
- "minecraft:block.netherite_block.break": {
- "protocol_id": 976
- },
- "minecraft:block.netherite_block.fall": {
- "protocol_id": 980
- },
- "minecraft:block.netherite_block.hit": {
- "protocol_id": 979
- },
- "minecraft:block.netherite_block.place": {
- "protocol_id": 978
- },
- "minecraft:block.netherite_block.step": {
- "protocol_id": 977
- },
- "minecraft:block.netherrack.break": {
- "protocol_id": 981
- },
- "minecraft:block.netherrack.fall": {
- "protocol_id": 985
- },
- "minecraft:block.netherrack.hit": {
- "protocol_id": 984
- },
- "minecraft:block.netherrack.place": {
- "protocol_id": 983
- },
- "minecraft:block.netherrack.step": {
- "protocol_id": 982
- },
- "minecraft:block.note_block.banjo": {
- "protocol_id": 1001
- },
- "minecraft:block.note_block.basedrum": {
- "protocol_id": 986
- },
- "minecraft:block.note_block.bass": {
- "protocol_id": 987
- },
- "minecraft:block.note_block.bell": {
- "protocol_id": 988
- },
- "minecraft:block.note_block.bit": {
- "protocol_id": 1000
- },
- "minecraft:block.note_block.chime": {
- "protocol_id": 989
- },
- "minecraft:block.note_block.cow_bell": {
- "protocol_id": 998
- },
- "minecraft:block.note_block.didgeridoo": {
- "protocol_id": 999
- },
- "minecraft:block.note_block.flute": {
- "protocol_id": 990
- },
- "minecraft:block.note_block.guitar": {
- "protocol_id": 991
- },
- "minecraft:block.note_block.harp": {
- "protocol_id": 992
- },
- "minecraft:block.note_block.hat": {
- "protocol_id": 993
- },
- "minecraft:block.note_block.imitate.creeper": {
- "protocol_id": 1004
- },
- "minecraft:block.note_block.imitate.ender_dragon": {
- "protocol_id": 1005
- },
- "minecraft:block.note_block.imitate.piglin": {
- "protocol_id": 1007
- },
- "minecraft:block.note_block.imitate.skeleton": {
- "protocol_id": 1003
- },
- "minecraft:block.note_block.imitate.wither_skeleton": {
- "protocol_id": 1006
- },
- "minecraft:block.note_block.imitate.zombie": {
- "protocol_id": 1002
- },
- "minecraft:block.note_block.iron_xylophone": {
- "protocol_id": 997
- },
- "minecraft:block.note_block.pling": {
- "protocol_id": 994
- },
- "minecraft:block.note_block.snare": {
- "protocol_id": 995
- },
- "minecraft:block.note_block.xylophone": {
- "protocol_id": 996
- },
- "minecraft:block.nylium.break": {
- "protocol_id": 951
- },
- "minecraft:block.nylium.fall": {
- "protocol_id": 955
- },
- "minecraft:block.nylium.hit": {
- "protocol_id": 954
- },
- "minecraft:block.nylium.place": {
- "protocol_id": 953
- },
- "minecraft:block.nylium.step": {
- "protocol_id": 952
- },
- "minecraft:block.packed_mud.break": {
- "protocol_id": 941
- },
- "minecraft:block.packed_mud.fall": {
- "protocol_id": 942
- },
- "minecraft:block.packed_mud.hit": {
- "protocol_id": 943
- },
- "minecraft:block.packed_mud.place": {
- "protocol_id": 944
- },
- "minecraft:block.packed_mud.step": {
- "protocol_id": 945
- },
- "minecraft:block.pink_petals.break": {
- "protocol_id": 836
- },
- "minecraft:block.pink_petals.fall": {
- "protocol_id": 837
- },
- "minecraft:block.pink_petals.hit": {
- "protocol_id": 838
- },
- "minecraft:block.pink_petals.place": {
- "protocol_id": 839
- },
- "minecraft:block.pink_petals.step": {
- "protocol_id": 840
- },
- "minecraft:block.piston.contract": {
- "protocol_id": 1097
- },
- "minecraft:block.piston.extend": {
- "protocol_id": 1098
- },
- "minecraft:block.pointed_dripstone.break": {
- "protocol_id": 433
- },
- "minecraft:block.pointed_dripstone.drip_lava": {
- "protocol_id": 439
- },
- "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": {
- "protocol_id": 441
- },
- "minecraft:block.pointed_dripstone.drip_water": {
- "protocol_id": 440
- },
- "minecraft:block.pointed_dripstone.drip_water_into_cauldron": {
- "protocol_id": 442
- },
- "minecraft:block.pointed_dripstone.fall": {
- "protocol_id": 437
- },
- "minecraft:block.pointed_dripstone.hit": {
- "protocol_id": 436
- },
- "minecraft:block.pointed_dripstone.land": {
- "protocol_id": 438
- },
- "minecraft:block.pointed_dripstone.place": {
- "protocol_id": 435
- },
- "minecraft:block.pointed_dripstone.step": {
- "protocol_id": 434
- },
- "minecraft:block.polished_deepslate.break": {
- "protocol_id": 1126
- },
- "minecraft:block.polished_deepslate.fall": {
- "protocol_id": 1127
- },
- "minecraft:block.polished_deepslate.hit": {
- "protocol_id": 1128
- },
- "minecraft:block.polished_deepslate.place": {
- "protocol_id": 1129
- },
- "minecraft:block.polished_deepslate.step": {
- "protocol_id": 1130
- },
- "minecraft:block.polished_tuff.break": {
- "protocol_id": 1410
- },
- "minecraft:block.polished_tuff.fall": {
- "protocol_id": 1411
- },
- "minecraft:block.polished_tuff.hit": {
- "protocol_id": 1412
- },
- "minecraft:block.polished_tuff.place": {
- "protocol_id": 1413
- },
- "minecraft:block.polished_tuff.step": {
- "protocol_id": 1414
- },
- "minecraft:block.portal.ambient": {
- "protocol_id": 1131
- },
- "minecraft:block.portal.travel": {
- "protocol_id": 1132
- },
- "minecraft:block.portal.trigger": {
- "protocol_id": 1133
- },
- "minecraft:block.powder_snow.break": {
- "protocol_id": 1134
- },
- "minecraft:block.powder_snow.fall": {
- "protocol_id": 1135
- },
- "minecraft:block.powder_snow.hit": {
- "protocol_id": 1136
- },
- "minecraft:block.powder_snow.place": {
- "protocol_id": 1137
- },
- "minecraft:block.powder_snow.step": {
- "protocol_id": 1138
- },
- "minecraft:block.pumpkin.carve": {
- "protocol_id": 1146
- },
- "minecraft:block.redstone_torch.burnout": {
- "protocol_id": 1171
- },
- "minecraft:block.respawn_anchor.ambient": {
- "protocol_id": 1172
- },
- "minecraft:block.respawn_anchor.charge": {
- "protocol_id": 1173
- },
- "minecraft:block.respawn_anchor.deplete": {
- "protocol_id": 1174
- },
- "minecraft:block.respawn_anchor.set_spawn": {
- "protocol_id": 1175
- },
- "minecraft:block.rooted_dirt.break": {
- "protocol_id": 1176
- },
- "minecraft:block.rooted_dirt.fall": {
- "protocol_id": 1177
- },
- "minecraft:block.rooted_dirt.hit": {
- "protocol_id": 1178
- },
- "minecraft:block.rooted_dirt.place": {
- "protocol_id": 1179
- },
- "minecraft:block.rooted_dirt.step": {
- "protocol_id": 1180
- },
- "minecraft:block.roots.break": {
- "protocol_id": 565
- },
- "minecraft:block.roots.fall": {
- "protocol_id": 569
- },
- "minecraft:block.roots.hit": {
- "protocol_id": 568
- },
- "minecraft:block.roots.place": {
- "protocol_id": 567
- },
- "minecraft:block.roots.step": {
- "protocol_id": 566
- },
- "minecraft:block.sand.break": {
- "protocol_id": 1185
- },
- "minecraft:block.sand.fall": {
- "protocol_id": 1186
- },
- "minecraft:block.sand.hit": {
- "protocol_id": 1187
- },
- "minecraft:block.sand.place": {
- "protocol_id": 1188
- },
- "minecraft:block.sand.step": {
- "protocol_id": 1189
- },
- "minecraft:block.scaffolding.break": {
- "protocol_id": 1190
- },
- "minecraft:block.scaffolding.fall": {
- "protocol_id": 1191
- },
- "minecraft:block.scaffolding.hit": {
- "protocol_id": 1192
- },
- "minecraft:block.scaffolding.place": {
- "protocol_id": 1193
- },
- "minecraft:block.scaffolding.step": {
- "protocol_id": 1194
- },
- "minecraft:block.sculk.break": {
- "protocol_id": 1197
- },
- "minecraft:block.sculk.charge": {
- "protocol_id": 1196
- },
- "minecraft:block.sculk.fall": {
- "protocol_id": 1198
- },
- "minecraft:block.sculk.hit": {
- "protocol_id": 1199
- },
- "minecraft:block.sculk.place": {
- "protocol_id": 1200
- },
- "minecraft:block.sculk.spread": {
- "protocol_id": 1195
- },
- "minecraft:block.sculk.step": {
- "protocol_id": 1201
- },
- "minecraft:block.sculk_catalyst.bloom": {
- "protocol_id": 1202
- },
- "minecraft:block.sculk_catalyst.break": {
- "protocol_id": 1203
- },
- "minecraft:block.sculk_catalyst.fall": {
- "protocol_id": 1204
- },
- "minecraft:block.sculk_catalyst.hit": {
- "protocol_id": 1205
- },
- "minecraft:block.sculk_catalyst.place": {
- "protocol_id": 1206
- },
- "minecraft:block.sculk_catalyst.step": {
- "protocol_id": 1207
- },
- "minecraft:block.sculk_sensor.break": {
- "protocol_id": 1210
- },
- "minecraft:block.sculk_sensor.clicking": {
- "protocol_id": 1208
- },
- "minecraft:block.sculk_sensor.clicking_stop": {
- "protocol_id": 1209
- },
- "minecraft:block.sculk_sensor.fall": {
- "protocol_id": 1211
- },
- "minecraft:block.sculk_sensor.hit": {
- "protocol_id": 1212
- },
- "minecraft:block.sculk_sensor.place": {
- "protocol_id": 1213
- },
- "minecraft:block.sculk_sensor.step": {
- "protocol_id": 1214
- },
- "minecraft:block.sculk_shrieker.break": {
- "protocol_id": 1215
- },
- "minecraft:block.sculk_shrieker.fall": {
- "protocol_id": 1216
- },
- "minecraft:block.sculk_shrieker.hit": {
- "protocol_id": 1217
- },
- "minecraft:block.sculk_shrieker.place": {
- "protocol_id": 1218
- },
- "minecraft:block.sculk_shrieker.shriek": {
- "protocol_id": 1219
- },
- "minecraft:block.sculk_shrieker.step": {
- "protocol_id": 1220
- },
- "minecraft:block.sculk_vein.break": {
- "protocol_id": 1221
- },
- "minecraft:block.sculk_vein.fall": {
- "protocol_id": 1222
- },
- "minecraft:block.sculk_vein.hit": {
- "protocol_id": 1223
- },
- "minecraft:block.sculk_vein.place": {
- "protocol_id": 1224
- },
- "minecraft:block.sculk_vein.step": {
- "protocol_id": 1225
- },
- "minecraft:block.shroomlight.break": {
- "protocol_id": 1233
- },
- "minecraft:block.shroomlight.fall": {
- "protocol_id": 1237
- },
- "minecraft:block.shroomlight.hit": {
- "protocol_id": 1236
- },
- "minecraft:block.shroomlight.place": {
- "protocol_id": 1235
- },
- "minecraft:block.shroomlight.step": {
- "protocol_id": 1234
- },
- "minecraft:block.shulker_box.close": {
- "protocol_id": 1240
- },
- "minecraft:block.shulker_box.open": {
- "protocol_id": 1241
- },
- "minecraft:block.sign.waxed_interact_fail": {
- "protocol_id": 1515
- },
- "minecraft:block.slime_block.break": {
- "protocol_id": 1274
- },
- "minecraft:block.slime_block.fall": {
- "protocol_id": 1275
- },
- "minecraft:block.slime_block.hit": {
- "protocol_id": 1276
- },
- "minecraft:block.slime_block.place": {
- "protocol_id": 1277
- },
- "minecraft:block.slime_block.step": {
- "protocol_id": 1278
- },
- "minecraft:block.small_amethyst_bud.break": {
- "protocol_id": 1279
- },
- "minecraft:block.small_amethyst_bud.place": {
- "protocol_id": 1280
- },
- "minecraft:block.small_dripleaf.break": {
- "protocol_id": 1281
- },
- "minecraft:block.small_dripleaf.fall": {
- "protocol_id": 1282
- },
- "minecraft:block.small_dripleaf.hit": {
- "protocol_id": 1283
- },
- "minecraft:block.small_dripleaf.place": {
- "protocol_id": 1284
- },
- "minecraft:block.small_dripleaf.step": {
- "protocol_id": 1285
- },
- "minecraft:block.smithing_table.use": {
- "protocol_id": 1315
- },
- "minecraft:block.smoker.smoke": {
- "protocol_id": 1316
- },
- "minecraft:block.sniffer_egg.crack": {
- "protocol_id": 1330
- },
- "minecraft:block.sniffer_egg.hatch": {
- "protocol_id": 1331
- },
- "minecraft:block.sniffer_egg.plop": {
- "protocol_id": 1329
- },
- "minecraft:block.snow.break": {
- "protocol_id": 1333
- },
- "minecraft:block.snow.fall": {
- "protocol_id": 1334
- },
- "minecraft:block.snow.hit": {
- "protocol_id": 1340
- },
- "minecraft:block.snow.place": {
- "protocol_id": 1341
- },
- "minecraft:block.snow.step": {
- "protocol_id": 1342
- },
- "minecraft:block.soul_sand.break": {
- "protocol_id": 1286
- },
- "minecraft:block.soul_sand.fall": {
- "protocol_id": 1290
- },
- "minecraft:block.soul_sand.hit": {
- "protocol_id": 1289
- },
- "minecraft:block.soul_sand.place": {
- "protocol_id": 1288
- },
- "minecraft:block.soul_sand.step": {
- "protocol_id": 1287
- },
- "minecraft:block.soul_soil.break": {
- "protocol_id": 1291
- },
- "minecraft:block.soul_soil.fall": {
- "protocol_id": 1295
- },
- "minecraft:block.soul_soil.hit": {
- "protocol_id": 1294
- },
- "minecraft:block.soul_soil.place": {
- "protocol_id": 1293
- },
- "minecraft:block.soul_soil.step": {
- "protocol_id": 1292
- },
- "minecraft:block.sponge.absorb": {
- "protocol_id": 1354
- },
- "minecraft:block.sponge.break": {
- "protocol_id": 1349
- },
- "minecraft:block.sponge.fall": {
- "protocol_id": 1350
- },
- "minecraft:block.sponge.hit": {
- "protocol_id": 1351
- },
- "minecraft:block.sponge.place": {
- "protocol_id": 1352
- },
- "minecraft:block.sponge.step": {
- "protocol_id": 1353
- },
- "minecraft:block.spore_blossom.break": {
- "protocol_id": 1297
- },
- "minecraft:block.spore_blossom.fall": {
- "protocol_id": 1298
- },
- "minecraft:block.spore_blossom.hit": {
- "protocol_id": 1299
- },
- "minecraft:block.spore_blossom.place": {
- "protocol_id": 1300
- },
- "minecraft:block.spore_blossom.step": {
- "protocol_id": 1301
- },
- "minecraft:block.stem.break": {
- "protocol_id": 946
- },
- "minecraft:block.stem.fall": {
- "protocol_id": 950
- },
- "minecraft:block.stem.hit": {
- "protocol_id": 949
- },
- "minecraft:block.stem.place": {
- "protocol_id": 948
- },
- "minecraft:block.stem.step": {
- "protocol_id": 947
- },
- "minecraft:block.stone.break": {
- "protocol_id": 1361
- },
- "minecraft:block.stone.fall": {
- "protocol_id": 1364
- },
- "minecraft:block.stone.hit": {
- "protocol_id": 1365
- },
- "minecraft:block.stone.place": {
- "protocol_id": 1366
- },
- "minecraft:block.stone.step": {
- "protocol_id": 1369
- },
- "minecraft:block.stone_button.click_off": {
- "protocol_id": 1362
- },
- "minecraft:block.stone_button.click_on": {
- "protocol_id": 1363
- },
- "minecraft:block.stone_pressure_plate.click_off": {
- "protocol_id": 1367
- },
- "minecraft:block.stone_pressure_plate.click_on": {
- "protocol_id": 1368
- },
- "minecraft:block.suspicious_gravel.break": {
- "protocol_id": 541
- },
- "minecraft:block.suspicious_gravel.fall": {
- "protocol_id": 545
- },
- "minecraft:block.suspicious_gravel.hit": {
- "protocol_id": 544
- },
- "minecraft:block.suspicious_gravel.place": {
- "protocol_id": 543
- },
- "minecraft:block.suspicious_gravel.step": {
- "protocol_id": 542
- },
- "minecraft:block.suspicious_sand.break": {
- "protocol_id": 536
- },
- "minecraft:block.suspicious_sand.fall": {
+ "minecraft:block.flowering_azalea.break": {
"protocol_id": 540
},
- "minecraft:block.suspicious_sand.hit": {
- "protocol_id": 539
+ "minecraft:block.flowering_azalea.fall": {
+ "protocol_id": 541
},
- "minecraft:block.suspicious_sand.place": {
- "protocol_id": 538
+ "minecraft:block.flowering_azalea.hit": {
+ "protocol_id": 542
},
- "minecraft:block.suspicious_sand.step": {
- "protocol_id": 537
+ "minecraft:block.flowering_azalea.place": {
+ "protocol_id": 543
},
- "minecraft:block.sweet_berry_bush.break": {
- "protocol_id": 1374
+ "minecraft:block.flowering_azalea.step": {
+ "protocol_id": 544
},
- "minecraft:block.sweet_berry_bush.pick_berries": {
- "protocol_id": 1376
+ "minecraft:block.froglight.break": {
+ "protocol_id": 566
},
- "minecraft:block.sweet_berry_bush.place": {
- "protocol_id": 1375
+ "minecraft:block.froglight.fall": {
+ "protocol_id": 567
},
- "minecraft:block.trial_spawner.about_to_spawn_item": {
- "protocol_id": 679
+ "minecraft:block.froglight.hit": {
+ "protocol_id": 568
},
- "minecraft:block.trial_spawner.ambient": {
- "protocol_id": 684
+ "minecraft:block.froglight.place": {
+ "protocol_id": 569
},
- "minecraft:block.trial_spawner.ambient_ominous": {
- "protocol_id": 685
+ "minecraft:block.froglight.step": {
+ "protocol_id": 570
},
- "minecraft:block.trial_spawner.break": {
+ "minecraft:block.frogspawn.break": {
+ "protocol_id": 572
+ },
+ "minecraft:block.frogspawn.fall": {
+ "protocol_id": 573
+ },
+ "minecraft:block.frogspawn.hatch": {
+ "protocol_id": 574
+ },
+ "minecraft:block.frogspawn.hit": {
+ "protocol_id": 575
+ },
+ "minecraft:block.frogspawn.place": {
+ "protocol_id": 576
+ },
+ "minecraft:block.frogspawn.step": {
+ "protocol_id": 571
+ },
+ "minecraft:block.fungus.break": {
+ "protocol_id": 979
+ },
+ "minecraft:block.fungus.fall": {
+ "protocol_id": 983
+ },
+ "minecraft:block.fungus.hit": {
+ "protocol_id": 982
+ },
+ "minecraft:block.fungus.place": {
+ "protocol_id": 981
+ },
+ "minecraft:block.fungus.step": {
+ "protocol_id": 980
+ },
+ "minecraft:block.furnace.fire_crackle": {
+ "protocol_id": 590
+ },
+ "minecraft:block.gilded_blackstone.break": {
+ "protocol_id": 608
+ },
+ "minecraft:block.gilded_blackstone.fall": {
+ "protocol_id": 609
+ },
+ "minecraft:block.gilded_blackstone.hit": {
+ "protocol_id": 610
+ },
+ "minecraft:block.gilded_blackstone.place": {
+ "protocol_id": 611
+ },
+ "minecraft:block.gilded_blackstone.step": {
+ "protocol_id": 612
+ },
+ "minecraft:block.glass.break": {
+ "protocol_id": 613
+ },
+ "minecraft:block.glass.fall": {
+ "protocol_id": 614
+ },
+ "minecraft:block.glass.hit": {
+ "protocol_id": 615
+ },
+ "minecraft:block.glass.place": {
+ "protocol_id": 616
+ },
+ "minecraft:block.glass.step": {
+ "protocol_id": 617
+ },
+ "minecraft:block.grass.break": {
+ "protocol_id": 646
+ },
+ "minecraft:block.grass.fall": {
+ "protocol_id": 647
+ },
+ "minecraft:block.grass.hit": {
+ "protocol_id": 648
+ },
+ "minecraft:block.grass.place": {
+ "protocol_id": 649
+ },
+ "minecraft:block.grass.step": {
+ "protocol_id": 650
+ },
+ "minecraft:block.gravel.break": {
+ "protocol_id": 651
+ },
+ "minecraft:block.gravel.fall": {
+ "protocol_id": 652
+ },
+ "minecraft:block.gravel.hit": {
+ "protocol_id": 653
+ },
+ "minecraft:block.gravel.place": {
+ "protocol_id": 654
+ },
+ "minecraft:block.gravel.step": {
+ "protocol_id": 655
+ },
+ "minecraft:block.grindstone.use": {
+ "protocol_id": 656
+ },
+ "minecraft:block.growing_plant.crop": {
+ "protocol_id": 657
+ },
+ "minecraft:block.hanging_roots.break": {
+ "protocol_id": 666
+ },
+ "minecraft:block.hanging_roots.fall": {
+ "protocol_id": 667
+ },
+ "minecraft:block.hanging_roots.hit": {
+ "protocol_id": 668
+ },
+ "minecraft:block.hanging_roots.place": {
+ "protocol_id": 669
+ },
+ "minecraft:block.hanging_roots.step": {
+ "protocol_id": 670
+ },
+ "minecraft:block.hanging_sign.break": {
+ "protocol_id": 672
+ },
+ "minecraft:block.hanging_sign.fall": {
"protocol_id": 673
},
- "minecraft:block.trial_spawner.close_shutter": {
- "protocol_id": 687
- },
- "minecraft:block.trial_spawner.detect_player": {
- "protocol_id": 682
- },
- "minecraft:block.trial_spawner.eject_item": {
- "protocol_id": 688
- },
- "minecraft:block.trial_spawner.fall": {
- "protocol_id": 677
- },
- "minecraft:block.trial_spawner.hit": {
- "protocol_id": 676
- },
- "minecraft:block.trial_spawner.ominous_activate": {
- "protocol_id": 683
- },
- "minecraft:block.trial_spawner.open_shutter": {
- "protocol_id": 686
- },
- "minecraft:block.trial_spawner.place": {
- "protocol_id": 675
- },
- "minecraft:block.trial_spawner.spawn_item": {
- "protocol_id": 680
- },
- "minecraft:block.trial_spawner.spawn_item_begin": {
- "protocol_id": 681
- },
- "minecraft:block.trial_spawner.spawn_mob": {
- "protocol_id": 678
- },
- "minecraft:block.trial_spawner.step": {
+ "minecraft:block.hanging_sign.hit": {
"protocol_id": 674
},
- "minecraft:block.tripwire.attach": {
- "protocol_id": 1392
+ "minecraft:block.hanging_sign.place": {
+ "protocol_id": 675
},
- "minecraft:block.tripwire.click_off": {
- "protocol_id": 1393
+ "minecraft:block.hanging_sign.step": {
+ "protocol_id": 671
},
- "minecraft:block.tripwire.click_on": {
- "protocol_id": 1394
+ "minecraft:block.hanging_sign.waxed_interact_fail": {
+ "protocol_id": 1539
},
- "minecraft:block.tripwire.detach": {
- "protocol_id": 1395
+ "minecraft:block.heavy_core.break": {
+ "protocol_id": 676
},
- "minecraft:block.tuff.break": {
- "protocol_id": 1400
+ "minecraft:block.heavy_core.fall": {
+ "protocol_id": 677
},
- "minecraft:block.tuff.fall": {
- "protocol_id": 1404
+ "minecraft:block.heavy_core.hit": {
+ "protocol_id": 678
},
- "minecraft:block.tuff.hit": {
- "protocol_id": 1403
+ "minecraft:block.heavy_core.place": {
+ "protocol_id": 679
},
- "minecraft:block.tuff.place": {
- "protocol_id": 1402
+ "minecraft:block.heavy_core.step": {
+ "protocol_id": 680
},
- "minecraft:block.tuff.step": {
- "protocol_id": 1401
+ "minecraft:block.honey_block.break": {
+ "protocol_id": 716
},
- "minecraft:block.tuff_bricks.break": {
- "protocol_id": 1405
+ "minecraft:block.honey_block.fall": {
+ "protocol_id": 717
},
- "minecraft:block.tuff_bricks.fall": {
- "protocol_id": 1406
+ "minecraft:block.honey_block.hit": {
+ "protocol_id": 718
},
- "minecraft:block.tuff_bricks.hit": {
- "protocol_id": 1407
+ "minecraft:block.honey_block.place": {
+ "protocol_id": 719
},
- "minecraft:block.tuff_bricks.place": {
- "protocol_id": 1408
+ "minecraft:block.honey_block.slide": {
+ "protocol_id": 720
},
- "minecraft:block.tuff_bricks.step": {
- "protocol_id": 1409
+ "minecraft:block.honey_block.step": {
+ "protocol_id": 721
},
- "minecraft:block.vault.activate": {
- "protocol_id": 1436
+ "minecraft:block.iron_door.close": {
+ "protocol_id": 764
},
- "minecraft:block.vault.ambient": {
- "protocol_id": 1437
+ "minecraft:block.iron_door.open": {
+ "protocol_id": 765
},
- "minecraft:block.vault.break": {
- "protocol_id": 1438
+ "minecraft:block.iron_trapdoor.close": {
+ "protocol_id": 772
},
- "minecraft:block.vault.close_shutter": {
- "protocol_id": 1439
+ "minecraft:block.iron_trapdoor.open": {
+ "protocol_id": 773
},
- "minecraft:block.vault.deactivate": {
- "protocol_id": 1440
+ "minecraft:block.ladder.break": {
+ "protocol_id": 781
},
- "minecraft:block.vault.eject_item": {
- "protocol_id": 1441
+ "minecraft:block.ladder.fall": {
+ "protocol_id": 782
},
- "minecraft:block.vault.fall": {
- "protocol_id": 1443
+ "minecraft:block.ladder.hit": {
+ "protocol_id": 783
},
- "minecraft:block.vault.hit": {
- "protocol_id": 1444
+ "minecraft:block.ladder.place": {
+ "protocol_id": 784
},
- "minecraft:block.vault.insert_item": {
- "protocol_id": 1445
+ "minecraft:block.ladder.step": {
+ "protocol_id": 785
},
- "minecraft:block.vault.insert_item_fail": {
- "protocol_id": 1446
+ "minecraft:block.lantern.break": {
+ "protocol_id": 786
},
- "minecraft:block.vault.open_shutter": {
- "protocol_id": 1447
+ "minecraft:block.lantern.fall": {
+ "protocol_id": 787
},
- "minecraft:block.vault.place": {
- "protocol_id": 1448
+ "minecraft:block.lantern.hit": {
+ "protocol_id": 788
},
- "minecraft:block.vault.reject_rewarded_player": {
- "protocol_id": 1442
+ "minecraft:block.lantern.place": {
+ "protocol_id": 789
},
- "minecraft:block.vault.step": {
- "protocol_id": 1449
+ "minecraft:block.lantern.step": {
+ "protocol_id": 790
},
- "minecraft:block.vine.break": {
- "protocol_id": 1478
+ "minecraft:block.large_amethyst_bud.break": {
+ "protocol_id": 791
},
- "minecraft:block.vine.fall": {
- "protocol_id": 1479
+ "minecraft:block.large_amethyst_bud.place": {
+ "protocol_id": 792
},
- "minecraft:block.vine.hit": {
- "protocol_id": 1480
+ "minecraft:block.lava.ambient": {
+ "protocol_id": 793
},
- "minecraft:block.vine.place": {
- "protocol_id": 1481
+ "minecraft:block.lava.extinguish": {
+ "protocol_id": 794
},
- "minecraft:block.vine.step": {
- "protocol_id": 1482
+ "minecraft:block.lava.pop": {
+ "protocol_id": 795
},
- "minecraft:block.wart_block.break": {
- "protocol_id": 971
+ "minecraft:block.lever.click": {
+ "protocol_id": 798
},
- "minecraft:block.wart_block.fall": {
- "protocol_id": 975
+ "minecraft:block.lily_pad.place": {
+ "protocol_id": 1508
},
- "minecraft:block.wart_block.hit": {
+ "minecraft:block.lodestone.break": {
+ "protocol_id": 812
+ },
+ "minecraft:block.lodestone.fall": {
+ "protocol_id": 816
+ },
+ "minecraft:block.lodestone.hit": {
+ "protocol_id": 815
+ },
+ "minecraft:block.lodestone.place": {
+ "protocol_id": 814
+ },
+ "minecraft:block.lodestone.step": {
+ "protocol_id": 813
+ },
+ "minecraft:block.mangrove_roots.break": {
+ "protocol_id": 827
+ },
+ "minecraft:block.mangrove_roots.fall": {
+ "protocol_id": 828
+ },
+ "minecraft:block.mangrove_roots.hit": {
+ "protocol_id": 829
+ },
+ "minecraft:block.mangrove_roots.place": {
+ "protocol_id": 830
+ },
+ "minecraft:block.mangrove_roots.step": {
+ "protocol_id": 831
+ },
+ "minecraft:block.medium_amethyst_bud.break": {
+ "protocol_id": 832
+ },
+ "minecraft:block.medium_amethyst_bud.place": {
+ "protocol_id": 833
+ },
+ "minecraft:block.metal.break": {
+ "protocol_id": 834
+ },
+ "minecraft:block.metal.fall": {
+ "protocol_id": 835
+ },
+ "minecraft:block.metal.hit": {
+ "protocol_id": 836
+ },
+ "minecraft:block.metal.place": {
+ "protocol_id": 837
+ },
+ "minecraft:block.metal.step": {
+ "protocol_id": 840
+ },
+ "minecraft:block.metal_pressure_plate.click_off": {
+ "protocol_id": 838
+ },
+ "minecraft:block.metal_pressure_plate.click_on": {
+ "protocol_id": 839
+ },
+ "minecraft:block.moss.break": {
+ "protocol_id": 859
+ },
+ "minecraft:block.moss.fall": {
+ "protocol_id": 860
+ },
+ "minecraft:block.moss.hit": {
+ "protocol_id": 861
+ },
+ "minecraft:block.moss.place": {
+ "protocol_id": 862
+ },
+ "minecraft:block.moss.step": {
+ "protocol_id": 863
+ },
+ "minecraft:block.moss_carpet.break": {
+ "protocol_id": 849
+ },
+ "minecraft:block.moss_carpet.fall": {
+ "protocol_id": 850
+ },
+ "minecraft:block.moss_carpet.hit": {
+ "protocol_id": 851
+ },
+ "minecraft:block.moss_carpet.place": {
+ "protocol_id": 852
+ },
+ "minecraft:block.moss_carpet.step": {
+ "protocol_id": 853
+ },
+ "minecraft:block.mud.break": {
+ "protocol_id": 864
+ },
+ "minecraft:block.mud.fall": {
+ "protocol_id": 865
+ },
+ "minecraft:block.mud.hit": {
+ "protocol_id": 866
+ },
+ "minecraft:block.mud.place": {
+ "protocol_id": 867
+ },
+ "minecraft:block.mud.step": {
+ "protocol_id": 868
+ },
+ "minecraft:block.mud_bricks.break": {
+ "protocol_id": 869
+ },
+ "minecraft:block.mud_bricks.fall": {
+ "protocol_id": 870
+ },
+ "minecraft:block.mud_bricks.hit": {
+ "protocol_id": 871
+ },
+ "minecraft:block.mud_bricks.place": {
+ "protocol_id": 872
+ },
+ "minecraft:block.mud_bricks.step": {
+ "protocol_id": 873
+ },
+ "minecraft:block.muddy_mangrove_roots.break": {
+ "protocol_id": 874
+ },
+ "minecraft:block.muddy_mangrove_roots.fall": {
+ "protocol_id": 875
+ },
+ "minecraft:block.muddy_mangrove_roots.hit": {
+ "protocol_id": 876
+ },
+ "minecraft:block.muddy_mangrove_roots.place": {
+ "protocol_id": 877
+ },
+ "minecraft:block.muddy_mangrove_roots.step": {
+ "protocol_id": 878
+ },
+ "minecraft:block.nether_bricks.break": {
+ "protocol_id": 936
+ },
+ "minecraft:block.nether_bricks.fall": {
+ "protocol_id": 940
+ },
+ "minecraft:block.nether_bricks.hit": {
+ "protocol_id": 939
+ },
+ "minecraft:block.nether_bricks.place": {
+ "protocol_id": 938
+ },
+ "minecraft:block.nether_bricks.step": {
+ "protocol_id": 937
+ },
+ "minecraft:block.nether_gold_ore.break": {
+ "protocol_id": 1181
+ },
+ "minecraft:block.nether_gold_ore.fall": {
+ "protocol_id": 1182
+ },
+ "minecraft:block.nether_gold_ore.hit": {
+ "protocol_id": 1183
+ },
+ "minecraft:block.nether_gold_ore.place": {
+ "protocol_id": 1184
+ },
+ "minecraft:block.nether_gold_ore.step": {
+ "protocol_id": 1185
+ },
+ "minecraft:block.nether_ore.break": {
+ "protocol_id": 1186
+ },
+ "minecraft:block.nether_ore.fall": {
+ "protocol_id": 1187
+ },
+ "minecraft:block.nether_ore.hit": {
+ "protocol_id": 1188
+ },
+ "minecraft:block.nether_ore.place": {
+ "protocol_id": 1189
+ },
+ "minecraft:block.nether_ore.step": {
+ "protocol_id": 1190
+ },
+ "minecraft:block.nether_sprouts.break": {
"protocol_id": 974
},
- "minecraft:block.wart_block.place": {
- "protocol_id": 973
+ "minecraft:block.nether_sprouts.fall": {
+ "protocol_id": 978
},
- "minecraft:block.wart_block.step": {
- "protocol_id": 972
+ "minecraft:block.nether_sprouts.hit": {
+ "protocol_id": 977
},
- "minecraft:block.water.ambient": {
- "protocol_id": 1516
+ "minecraft:block.nether_sprouts.place": {
+ "protocol_id": 976
},
- "minecraft:block.weeping_vines.break": {
- "protocol_id": 966
+ "minecraft:block.nether_sprouts.step": {
+ "protocol_id": 975
},
- "minecraft:block.weeping_vines.fall": {
- "protocol_id": 970
+ "minecraft:block.nether_wart.break": {
+ "protocol_id": 941
},
- "minecraft:block.weeping_vines.hit": {
+ "minecraft:block.nether_wood.break": {
+ "protocol_id": 943
+ },
+ "minecraft:block.nether_wood.fall": {
+ "protocol_id": 944
+ },
+ "minecraft:block.nether_wood.hit": {
+ "protocol_id": 945
+ },
+ "minecraft:block.nether_wood.place": {
+ "protocol_id": 946
+ },
+ "minecraft:block.nether_wood.step": {
+ "protocol_id": 947
+ },
+ "minecraft:block.nether_wood_button.click_off": {
+ "protocol_id": 952
+ },
+ "minecraft:block.nether_wood_button.click_on": {
+ "protocol_id": 953
+ },
+ "minecraft:block.nether_wood_door.close": {
+ "protocol_id": 948
+ },
+ "minecraft:block.nether_wood_door.open": {
+ "protocol_id": 949
+ },
+ "minecraft:block.nether_wood_fence_gate.close": {
+ "protocol_id": 956
+ },
+ "minecraft:block.nether_wood_fence_gate.open": {
+ "protocol_id": 957
+ },
+ "minecraft:block.nether_wood_hanging_sign.break": {
+ "protocol_id": 682
+ },
+ "minecraft:block.nether_wood_hanging_sign.fall": {
+ "protocol_id": 683
+ },
+ "minecraft:block.nether_wood_hanging_sign.hit": {
+ "protocol_id": 684
+ },
+ "minecraft:block.nether_wood_hanging_sign.place": {
+ "protocol_id": 685
+ },
+ "minecraft:block.nether_wood_hanging_sign.step": {
+ "protocol_id": 681
+ },
+ "minecraft:block.nether_wood_pressure_plate.click_off": {
+ "protocol_id": 954
+ },
+ "minecraft:block.nether_wood_pressure_plate.click_on": {
+ "protocol_id": 955
+ },
+ "minecraft:block.nether_wood_trapdoor.close": {
+ "protocol_id": 950
+ },
+ "minecraft:block.nether_wood_trapdoor.open": {
+ "protocol_id": 951
+ },
+ "minecraft:block.netherite_block.break": {
+ "protocol_id": 994
+ },
+ "minecraft:block.netherite_block.fall": {
+ "protocol_id": 998
+ },
+ "minecraft:block.netherite_block.hit": {
+ "protocol_id": 997
+ },
+ "minecraft:block.netherite_block.place": {
+ "protocol_id": 996
+ },
+ "minecraft:block.netherite_block.step": {
+ "protocol_id": 995
+ },
+ "minecraft:block.netherrack.break": {
+ "protocol_id": 999
+ },
+ "minecraft:block.netherrack.fall": {
+ "protocol_id": 1003
+ },
+ "minecraft:block.netherrack.hit": {
+ "protocol_id": 1002
+ },
+ "minecraft:block.netherrack.place": {
+ "protocol_id": 1001
+ },
+ "minecraft:block.netherrack.step": {
+ "protocol_id": 1000
+ },
+ "minecraft:block.note_block.banjo": {
+ "protocol_id": 1019
+ },
+ "minecraft:block.note_block.basedrum": {
+ "protocol_id": 1004
+ },
+ "minecraft:block.note_block.bass": {
+ "protocol_id": 1005
+ },
+ "minecraft:block.note_block.bell": {
+ "protocol_id": 1006
+ },
+ "minecraft:block.note_block.bit": {
+ "protocol_id": 1018
+ },
+ "minecraft:block.note_block.chime": {
+ "protocol_id": 1007
+ },
+ "minecraft:block.note_block.cow_bell": {
+ "protocol_id": 1016
+ },
+ "minecraft:block.note_block.didgeridoo": {
+ "protocol_id": 1017
+ },
+ "minecraft:block.note_block.flute": {
+ "protocol_id": 1008
+ },
+ "minecraft:block.note_block.guitar": {
+ "protocol_id": 1009
+ },
+ "minecraft:block.note_block.harp": {
+ "protocol_id": 1010
+ },
+ "minecraft:block.note_block.hat": {
+ "protocol_id": 1011
+ },
+ "minecraft:block.note_block.imitate.creeper": {
+ "protocol_id": 1022
+ },
+ "minecraft:block.note_block.imitate.ender_dragon": {
+ "protocol_id": 1023
+ },
+ "minecraft:block.note_block.imitate.piglin": {
+ "protocol_id": 1025
+ },
+ "minecraft:block.note_block.imitate.skeleton": {
+ "protocol_id": 1021
+ },
+ "minecraft:block.note_block.imitate.wither_skeleton": {
+ "protocol_id": 1024
+ },
+ "minecraft:block.note_block.imitate.zombie": {
+ "protocol_id": 1020
+ },
+ "minecraft:block.note_block.iron_xylophone": {
+ "protocol_id": 1015
+ },
+ "minecraft:block.note_block.pling": {
+ "protocol_id": 1012
+ },
+ "minecraft:block.note_block.snare": {
+ "protocol_id": 1013
+ },
+ "minecraft:block.note_block.xylophone": {
+ "protocol_id": 1014
+ },
+ "minecraft:block.nylium.break": {
"protocol_id": 969
},
- "minecraft:block.weeping_vines.place": {
+ "minecraft:block.nylium.fall": {
+ "protocol_id": 973
+ },
+ "minecraft:block.nylium.hit": {
+ "protocol_id": 972
+ },
+ "minecraft:block.nylium.place": {
+ "protocol_id": 971
+ },
+ "minecraft:block.nylium.step": {
+ "protocol_id": 970
+ },
+ "minecraft:block.packed_mud.break": {
+ "protocol_id": 959
+ },
+ "minecraft:block.packed_mud.fall": {
+ "protocol_id": 960
+ },
+ "minecraft:block.packed_mud.hit": {
+ "protocol_id": 961
+ },
+ "minecraft:block.packed_mud.place": {
+ "protocol_id": 962
+ },
+ "minecraft:block.packed_mud.step": {
+ "protocol_id": 963
+ },
+ "minecraft:block.pale_hanging_moss.idle": {
+ "protocol_id": 1032
+ },
+ "minecraft:block.pink_petals.break": {
+ "protocol_id": 854
+ },
+ "minecraft:block.pink_petals.fall": {
+ "protocol_id": 855
+ },
+ "minecraft:block.pink_petals.hit": {
+ "protocol_id": 856
+ },
+ "minecraft:block.pink_petals.place": {
+ "protocol_id": 857
+ },
+ "minecraft:block.pink_petals.step": {
+ "protocol_id": 858
+ },
+ "minecraft:block.piston.contract": {
+ "protocol_id": 1117
+ },
+ "minecraft:block.piston.extend": {
+ "protocol_id": 1118
+ },
+ "minecraft:block.pointed_dripstone.break": {
+ "protocol_id": 453
+ },
+ "minecraft:block.pointed_dripstone.drip_lava": {
+ "protocol_id": 459
+ },
+ "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": {
+ "protocol_id": 461
+ },
+ "minecraft:block.pointed_dripstone.drip_water": {
+ "protocol_id": 460
+ },
+ "minecraft:block.pointed_dripstone.drip_water_into_cauldron": {
+ "protocol_id": 462
+ },
+ "minecraft:block.pointed_dripstone.fall": {
+ "protocol_id": 457
+ },
+ "minecraft:block.pointed_dripstone.hit": {
+ "protocol_id": 456
+ },
+ "minecraft:block.pointed_dripstone.land": {
+ "protocol_id": 458
+ },
+ "minecraft:block.pointed_dripstone.place": {
+ "protocol_id": 455
+ },
+ "minecraft:block.pointed_dripstone.step": {
+ "protocol_id": 454
+ },
+ "minecraft:block.polished_deepslate.break": {
+ "protocol_id": 1146
+ },
+ "minecraft:block.polished_deepslate.fall": {
+ "protocol_id": 1147
+ },
+ "minecraft:block.polished_deepslate.hit": {
+ "protocol_id": 1148
+ },
+ "minecraft:block.polished_deepslate.place": {
+ "protocol_id": 1149
+ },
+ "minecraft:block.polished_deepslate.step": {
+ "protocol_id": 1150
+ },
+ "minecraft:block.polished_tuff.break": {
+ "protocol_id": 1435
+ },
+ "minecraft:block.polished_tuff.fall": {
+ "protocol_id": 1436
+ },
+ "minecraft:block.polished_tuff.hit": {
+ "protocol_id": 1437
+ },
+ "minecraft:block.polished_tuff.place": {
+ "protocol_id": 1438
+ },
+ "minecraft:block.polished_tuff.step": {
+ "protocol_id": 1439
+ },
+ "minecraft:block.portal.ambient": {
+ "protocol_id": 1151
+ },
+ "minecraft:block.portal.travel": {
+ "protocol_id": 1152
+ },
+ "minecraft:block.portal.trigger": {
+ "protocol_id": 1153
+ },
+ "minecraft:block.powder_snow.break": {
+ "protocol_id": 1154
+ },
+ "minecraft:block.powder_snow.fall": {
+ "protocol_id": 1155
+ },
+ "minecraft:block.powder_snow.hit": {
+ "protocol_id": 1156
+ },
+ "minecraft:block.powder_snow.place": {
+ "protocol_id": 1157
+ },
+ "minecraft:block.powder_snow.step": {
+ "protocol_id": 1158
+ },
+ "minecraft:block.pumpkin.carve": {
+ "protocol_id": 1166
+ },
+ "minecraft:block.redstone_torch.burnout": {
+ "protocol_id": 1191
+ },
+ "minecraft:block.respawn_anchor.ambient": {
+ "protocol_id": 1192
+ },
+ "minecraft:block.respawn_anchor.charge": {
+ "protocol_id": 1193
+ },
+ "minecraft:block.respawn_anchor.deplete": {
+ "protocol_id": 1194
+ },
+ "minecraft:block.respawn_anchor.set_spawn": {
+ "protocol_id": 1195
+ },
+ "minecraft:block.rooted_dirt.break": {
+ "protocol_id": 1196
+ },
+ "minecraft:block.rooted_dirt.fall": {
+ "protocol_id": 1197
+ },
+ "minecraft:block.rooted_dirt.hit": {
+ "protocol_id": 1198
+ },
+ "minecraft:block.rooted_dirt.place": {
+ "protocol_id": 1199
+ },
+ "minecraft:block.rooted_dirt.step": {
+ "protocol_id": 1200
+ },
+ "minecraft:block.roots.break": {
+ "protocol_id": 585
+ },
+ "minecraft:block.roots.fall": {
+ "protocol_id": 589
+ },
+ "minecraft:block.roots.hit": {
+ "protocol_id": 588
+ },
+ "minecraft:block.roots.place": {
+ "protocol_id": 587
+ },
+ "minecraft:block.roots.step": {
+ "protocol_id": 586
+ },
+ "minecraft:block.sand.break": {
+ "protocol_id": 1205
+ },
+ "minecraft:block.sand.fall": {
+ "protocol_id": 1206
+ },
+ "minecraft:block.sand.hit": {
+ "protocol_id": 1207
+ },
+ "minecraft:block.sand.place": {
+ "protocol_id": 1208
+ },
+ "minecraft:block.sand.step": {
+ "protocol_id": 1209
+ },
+ "minecraft:block.scaffolding.break": {
+ "protocol_id": 1210
+ },
+ "minecraft:block.scaffolding.fall": {
+ "protocol_id": 1211
+ },
+ "minecraft:block.scaffolding.hit": {
+ "protocol_id": 1212
+ },
+ "minecraft:block.scaffolding.place": {
+ "protocol_id": 1213
+ },
+ "minecraft:block.scaffolding.step": {
+ "protocol_id": 1214
+ },
+ "minecraft:block.sculk.break": {
+ "protocol_id": 1217
+ },
+ "minecraft:block.sculk.charge": {
+ "protocol_id": 1216
+ },
+ "minecraft:block.sculk.fall": {
+ "protocol_id": 1218
+ },
+ "minecraft:block.sculk.hit": {
+ "protocol_id": 1219
+ },
+ "minecraft:block.sculk.place": {
+ "protocol_id": 1220
+ },
+ "minecraft:block.sculk.spread": {
+ "protocol_id": 1215
+ },
+ "minecraft:block.sculk.step": {
+ "protocol_id": 1221
+ },
+ "minecraft:block.sculk_catalyst.bloom": {
+ "protocol_id": 1222
+ },
+ "minecraft:block.sculk_catalyst.break": {
+ "protocol_id": 1223
+ },
+ "minecraft:block.sculk_catalyst.fall": {
+ "protocol_id": 1224
+ },
+ "minecraft:block.sculk_catalyst.hit": {
+ "protocol_id": 1225
+ },
+ "minecraft:block.sculk_catalyst.place": {
+ "protocol_id": 1226
+ },
+ "minecraft:block.sculk_catalyst.step": {
+ "protocol_id": 1227
+ },
+ "minecraft:block.sculk_sensor.break": {
+ "protocol_id": 1230
+ },
+ "minecraft:block.sculk_sensor.clicking": {
+ "protocol_id": 1228
+ },
+ "minecraft:block.sculk_sensor.clicking_stop": {
+ "protocol_id": 1229
+ },
+ "minecraft:block.sculk_sensor.fall": {
+ "protocol_id": 1231
+ },
+ "minecraft:block.sculk_sensor.hit": {
+ "protocol_id": 1232
+ },
+ "minecraft:block.sculk_sensor.place": {
+ "protocol_id": 1233
+ },
+ "minecraft:block.sculk_sensor.step": {
+ "protocol_id": 1234
+ },
+ "minecraft:block.sculk_shrieker.break": {
+ "protocol_id": 1235
+ },
+ "minecraft:block.sculk_shrieker.fall": {
+ "protocol_id": 1236
+ },
+ "minecraft:block.sculk_shrieker.hit": {
+ "protocol_id": 1237
+ },
+ "minecraft:block.sculk_shrieker.place": {
+ "protocol_id": 1238
+ },
+ "minecraft:block.sculk_shrieker.shriek": {
+ "protocol_id": 1239
+ },
+ "minecraft:block.sculk_shrieker.step": {
+ "protocol_id": 1240
+ },
+ "minecraft:block.sculk_vein.break": {
+ "protocol_id": 1241
+ },
+ "minecraft:block.sculk_vein.fall": {
+ "protocol_id": 1242
+ },
+ "minecraft:block.sculk_vein.hit": {
+ "protocol_id": 1243
+ },
+ "minecraft:block.sculk_vein.place": {
+ "protocol_id": 1244
+ },
+ "minecraft:block.sculk_vein.step": {
+ "protocol_id": 1245
+ },
+ "minecraft:block.shroomlight.break": {
+ "protocol_id": 1253
+ },
+ "minecraft:block.shroomlight.fall": {
+ "protocol_id": 1257
+ },
+ "minecraft:block.shroomlight.hit": {
+ "protocol_id": 1256
+ },
+ "minecraft:block.shroomlight.place": {
+ "protocol_id": 1255
+ },
+ "minecraft:block.shroomlight.step": {
+ "protocol_id": 1254
+ },
+ "minecraft:block.shulker_box.close": {
+ "protocol_id": 1260
+ },
+ "minecraft:block.shulker_box.open": {
+ "protocol_id": 1261
+ },
+ "minecraft:block.sign.waxed_interact_fail": {
+ "protocol_id": 1540
+ },
+ "minecraft:block.slime_block.break": {
+ "protocol_id": 1294
+ },
+ "minecraft:block.slime_block.fall": {
+ "protocol_id": 1295
+ },
+ "minecraft:block.slime_block.hit": {
+ "protocol_id": 1296
+ },
+ "minecraft:block.slime_block.place": {
+ "protocol_id": 1297
+ },
+ "minecraft:block.slime_block.step": {
+ "protocol_id": 1298
+ },
+ "minecraft:block.small_amethyst_bud.break": {
+ "protocol_id": 1299
+ },
+ "minecraft:block.small_amethyst_bud.place": {
+ "protocol_id": 1300
+ },
+ "minecraft:block.small_dripleaf.break": {
+ "protocol_id": 1301
+ },
+ "minecraft:block.small_dripleaf.fall": {
+ "protocol_id": 1302
+ },
+ "minecraft:block.small_dripleaf.hit": {
+ "protocol_id": 1303
+ },
+ "minecraft:block.small_dripleaf.place": {
+ "protocol_id": 1304
+ },
+ "minecraft:block.small_dripleaf.step": {
+ "protocol_id": 1305
+ },
+ "minecraft:block.smithing_table.use": {
+ "protocol_id": 1340
+ },
+ "minecraft:block.smoker.smoke": {
+ "protocol_id": 1341
+ },
+ "minecraft:block.sniffer_egg.crack": {
+ "protocol_id": 1355
+ },
+ "minecraft:block.sniffer_egg.hatch": {
+ "protocol_id": 1356
+ },
+ "minecraft:block.sniffer_egg.plop": {
+ "protocol_id": 1354
+ },
+ "minecraft:block.snow.break": {
+ "protocol_id": 1358
+ },
+ "minecraft:block.snow.fall": {
+ "protocol_id": 1359
+ },
+ "minecraft:block.snow.hit": {
+ "protocol_id": 1365
+ },
+ "minecraft:block.snow.place": {
+ "protocol_id": 1366
+ },
+ "minecraft:block.snow.step": {
+ "protocol_id": 1367
+ },
+ "minecraft:block.soul_sand.break": {
+ "protocol_id": 1306
+ },
+ "minecraft:block.soul_sand.fall": {
+ "protocol_id": 1310
+ },
+ "minecraft:block.soul_sand.hit": {
+ "protocol_id": 1309
+ },
+ "minecraft:block.soul_sand.place": {
+ "protocol_id": 1308
+ },
+ "minecraft:block.soul_sand.step": {
+ "protocol_id": 1307
+ },
+ "minecraft:block.soul_soil.break": {
+ "protocol_id": 1311
+ },
+ "minecraft:block.soul_soil.fall": {
+ "protocol_id": 1315
+ },
+ "minecraft:block.soul_soil.hit": {
+ "protocol_id": 1314
+ },
+ "minecraft:block.soul_soil.place": {
+ "protocol_id": 1313
+ },
+ "minecraft:block.soul_soil.step": {
+ "protocol_id": 1312
+ },
+ "minecraft:block.spawner.break": {
+ "protocol_id": 1317
+ },
+ "minecraft:block.spawner.fall": {
+ "protocol_id": 1318
+ },
+ "minecraft:block.spawner.hit": {
+ "protocol_id": 1319
+ },
+ "minecraft:block.spawner.place": {
+ "protocol_id": 1320
+ },
+ "minecraft:block.spawner.step": {
+ "protocol_id": 1321
+ },
+ "minecraft:block.sponge.absorb": {
+ "protocol_id": 1379
+ },
+ "minecraft:block.sponge.break": {
+ "protocol_id": 1374
+ },
+ "minecraft:block.sponge.fall": {
+ "protocol_id": 1375
+ },
+ "minecraft:block.sponge.hit": {
+ "protocol_id": 1376
+ },
+ "minecraft:block.sponge.place": {
+ "protocol_id": 1377
+ },
+ "minecraft:block.sponge.step": {
+ "protocol_id": 1378
+ },
+ "minecraft:block.spore_blossom.break": {
+ "protocol_id": 1322
+ },
+ "minecraft:block.spore_blossom.fall": {
+ "protocol_id": 1323
+ },
+ "minecraft:block.spore_blossom.hit": {
+ "protocol_id": 1324
+ },
+ "minecraft:block.spore_blossom.place": {
+ "protocol_id": 1325
+ },
+ "minecraft:block.spore_blossom.step": {
+ "protocol_id": 1326
+ },
+ "minecraft:block.stem.break": {
+ "protocol_id": 964
+ },
+ "minecraft:block.stem.fall": {
"protocol_id": 968
},
- "minecraft:block.weeping_vines.step": {
+ "minecraft:block.stem.hit": {
"protocol_id": 967
},
+ "minecraft:block.stem.place": {
+ "protocol_id": 966
+ },
+ "minecraft:block.stem.step": {
+ "protocol_id": 965
+ },
+ "minecraft:block.stone.break": {
+ "protocol_id": 1386
+ },
+ "minecraft:block.stone.fall": {
+ "protocol_id": 1389
+ },
+ "minecraft:block.stone.hit": {
+ "protocol_id": 1390
+ },
+ "minecraft:block.stone.place": {
+ "protocol_id": 1391
+ },
+ "minecraft:block.stone.step": {
+ "protocol_id": 1394
+ },
+ "minecraft:block.stone_button.click_off": {
+ "protocol_id": 1387
+ },
+ "minecraft:block.stone_button.click_on": {
+ "protocol_id": 1388
+ },
+ "minecraft:block.stone_pressure_plate.click_off": {
+ "protocol_id": 1392
+ },
+ "minecraft:block.stone_pressure_plate.click_on": {
+ "protocol_id": 1393
+ },
+ "minecraft:block.suspicious_gravel.break": {
+ "protocol_id": 561
+ },
+ "minecraft:block.suspicious_gravel.fall": {
+ "protocol_id": 565
+ },
+ "minecraft:block.suspicious_gravel.hit": {
+ "protocol_id": 564
+ },
+ "minecraft:block.suspicious_gravel.place": {
+ "protocol_id": 563
+ },
+ "minecraft:block.suspicious_gravel.step": {
+ "protocol_id": 562
+ },
+ "minecraft:block.suspicious_sand.break": {
+ "protocol_id": 556
+ },
+ "minecraft:block.suspicious_sand.fall": {
+ "protocol_id": 560
+ },
+ "minecraft:block.suspicious_sand.hit": {
+ "protocol_id": 559
+ },
+ "minecraft:block.suspicious_sand.place": {
+ "protocol_id": 558
+ },
+ "minecraft:block.suspicious_sand.step": {
+ "protocol_id": 557
+ },
+ "minecraft:block.sweet_berry_bush.break": {
+ "protocol_id": 1399
+ },
+ "minecraft:block.sweet_berry_bush.pick_berries": {
+ "protocol_id": 1401
+ },
+ "minecraft:block.sweet_berry_bush.place": {
+ "protocol_id": 1400
+ },
+ "minecraft:block.trial_spawner.about_to_spawn_item": {
+ "protocol_id": 697
+ },
+ "minecraft:block.trial_spawner.ambient": {
+ "protocol_id": 702
+ },
+ "minecraft:block.trial_spawner.ambient_ominous": {
+ "protocol_id": 703
+ },
+ "minecraft:block.trial_spawner.break": {
+ "protocol_id": 691
+ },
+ "minecraft:block.trial_spawner.close_shutter": {
+ "protocol_id": 705
+ },
+ "minecraft:block.trial_spawner.detect_player": {
+ "protocol_id": 700
+ },
+ "minecraft:block.trial_spawner.eject_item": {
+ "protocol_id": 706
+ },
+ "minecraft:block.trial_spawner.fall": {
+ "protocol_id": 695
+ },
+ "minecraft:block.trial_spawner.hit": {
+ "protocol_id": 694
+ },
+ "minecraft:block.trial_spawner.ominous_activate": {
+ "protocol_id": 701
+ },
+ "minecraft:block.trial_spawner.open_shutter": {
+ "protocol_id": 704
+ },
+ "minecraft:block.trial_spawner.place": {
+ "protocol_id": 693
+ },
+ "minecraft:block.trial_spawner.spawn_item": {
+ "protocol_id": 698
+ },
+ "minecraft:block.trial_spawner.spawn_item_begin": {
+ "protocol_id": 699
+ },
+ "minecraft:block.trial_spawner.spawn_mob": {
+ "protocol_id": 696
+ },
+ "minecraft:block.trial_spawner.step": {
+ "protocol_id": 692
+ },
+ "minecraft:block.tripwire.attach": {
+ "protocol_id": 1417
+ },
+ "minecraft:block.tripwire.click_off": {
+ "protocol_id": 1418
+ },
+ "minecraft:block.tripwire.click_on": {
+ "protocol_id": 1419
+ },
+ "minecraft:block.tripwire.detach": {
+ "protocol_id": 1420
+ },
+ "minecraft:block.tuff.break": {
+ "protocol_id": 1425
+ },
+ "minecraft:block.tuff.fall": {
+ "protocol_id": 1429
+ },
+ "minecraft:block.tuff.hit": {
+ "protocol_id": 1428
+ },
+ "minecraft:block.tuff.place": {
+ "protocol_id": 1427
+ },
+ "minecraft:block.tuff.step": {
+ "protocol_id": 1426
+ },
+ "minecraft:block.tuff_bricks.break": {
+ "protocol_id": 1430
+ },
+ "minecraft:block.tuff_bricks.fall": {
+ "protocol_id": 1431
+ },
+ "minecraft:block.tuff_bricks.hit": {
+ "protocol_id": 1432
+ },
+ "minecraft:block.tuff_bricks.place": {
+ "protocol_id": 1433
+ },
+ "minecraft:block.tuff_bricks.step": {
+ "protocol_id": 1434
+ },
+ "minecraft:block.vault.activate": {
+ "protocol_id": 1461
+ },
+ "minecraft:block.vault.ambient": {
+ "protocol_id": 1462
+ },
+ "minecraft:block.vault.break": {
+ "protocol_id": 1463
+ },
+ "minecraft:block.vault.close_shutter": {
+ "protocol_id": 1464
+ },
+ "minecraft:block.vault.deactivate": {
+ "protocol_id": 1465
+ },
+ "minecraft:block.vault.eject_item": {
+ "protocol_id": 1466
+ },
+ "minecraft:block.vault.fall": {
+ "protocol_id": 1468
+ },
+ "minecraft:block.vault.hit": {
+ "protocol_id": 1469
+ },
+ "minecraft:block.vault.insert_item": {
+ "protocol_id": 1470
+ },
+ "minecraft:block.vault.insert_item_fail": {
+ "protocol_id": 1471
+ },
+ "minecraft:block.vault.open_shutter": {
+ "protocol_id": 1472
+ },
+ "minecraft:block.vault.place": {
+ "protocol_id": 1473
+ },
+ "minecraft:block.vault.reject_rewarded_player": {
+ "protocol_id": 1467
+ },
+ "minecraft:block.vault.step": {
+ "protocol_id": 1474
+ },
+ "minecraft:block.vine.break": {
+ "protocol_id": 1503
+ },
+ "minecraft:block.vine.fall": {
+ "protocol_id": 1504
+ },
+ "minecraft:block.vine.hit": {
+ "protocol_id": 1505
+ },
+ "minecraft:block.vine.place": {
+ "protocol_id": 1506
+ },
+ "minecraft:block.vine.step": {
+ "protocol_id": 1507
+ },
+ "minecraft:block.wart_block.break": {
+ "protocol_id": 989
+ },
+ "minecraft:block.wart_block.fall": {
+ "protocol_id": 993
+ },
+ "minecraft:block.wart_block.hit": {
+ "protocol_id": 992
+ },
+ "minecraft:block.wart_block.place": {
+ "protocol_id": 991
+ },
+ "minecraft:block.wart_block.step": {
+ "protocol_id": 990
+ },
+ "minecraft:block.water.ambient": {
+ "protocol_id": 1541
+ },
+ "minecraft:block.weeping_vines.break": {
+ "protocol_id": 984
+ },
+ "minecraft:block.weeping_vines.fall": {
+ "protocol_id": 988
+ },
+ "minecraft:block.weeping_vines.hit": {
+ "protocol_id": 987
+ },
+ "minecraft:block.weeping_vines.place": {
+ "protocol_id": 986
+ },
+ "minecraft:block.weeping_vines.step": {
+ "protocol_id": 985
+ },
"minecraft:block.wet_grass.break": {
- "protocol_id": 1519
+ "protocol_id": 1544
},
"minecraft:block.wet_grass.fall": {
- "protocol_id": 1520
+ "protocol_id": 1545
},
"minecraft:block.wet_grass.hit": {
- "protocol_id": 1521
+ "protocol_id": 1546
},
"minecraft:block.wet_grass.place": {
- "protocol_id": 1522
+ "protocol_id": 1547
},
"minecraft:block.wet_grass.step": {
- "protocol_id": 1523
+ "protocol_id": 1548
},
"minecraft:block.wet_sponge.break": {
- "protocol_id": 1524
+ "protocol_id": 1549
},
"minecraft:block.wet_sponge.dries": {
- "protocol_id": 1525
+ "protocol_id": 1550
},
"minecraft:block.wet_sponge.fall": {
- "protocol_id": 1526
+ "protocol_id": 1551
},
"minecraft:block.wet_sponge.hit": {
- "protocol_id": 1527
+ "protocol_id": 1552
},
"minecraft:block.wet_sponge.place": {
- "protocol_id": 1528
+ "protocol_id": 1553
},
"minecraft:block.wet_sponge.step": {
- "protocol_id": 1529
+ "protocol_id": 1554
},
"minecraft:block.wood.break": {
- "protocol_id": 1569
+ "protocol_id": 1594
},
"minecraft:block.wood.fall": {
- "protocol_id": 1570
+ "protocol_id": 1595
},
"minecraft:block.wood.hit": {
- "protocol_id": 1571
+ "protocol_id": 1596
},
"minecraft:block.wood.place": {
- "protocol_id": 1572
+ "protocol_id": 1597
},
"minecraft:block.wood.step": {
- "protocol_id": 1573
+ "protocol_id": 1598
},
"minecraft:block.wooden_button.click_off": {
- "protocol_id": 1565
+ "protocol_id": 1590
},
"minecraft:block.wooden_button.click_on": {
- "protocol_id": 1566
+ "protocol_id": 1591
},
"minecraft:block.wooden_door.close": {
- "protocol_id": 1561
+ "protocol_id": 1586
},
"minecraft:block.wooden_door.open": {
- "protocol_id": 1562
+ "protocol_id": 1587
},
"minecraft:block.wooden_pressure_plate.click_off": {
- "protocol_id": 1567
+ "protocol_id": 1592
},
"minecraft:block.wooden_pressure_plate.click_on": {
- "protocol_id": 1568
+ "protocol_id": 1593
},
"minecraft:block.wooden_trapdoor.close": {
- "protocol_id": 1563
+ "protocol_id": 1588
},
"minecraft:block.wooden_trapdoor.open": {
- "protocol_id": 1564
+ "protocol_id": 1589
},
"minecraft:block.wool.break": {
- "protocol_id": 1574
+ "protocol_id": 1599
},
"minecraft:block.wool.fall": {
- "protocol_id": 1575
+ "protocol_id": 1600
},
"minecraft:block.wool.hit": {
- "protocol_id": 1576
+ "protocol_id": 1601
},
"minecraft:block.wool.place": {
- "protocol_id": 1577
+ "protocol_id": 1602
},
"minecraft:block.wool.step": {
- "protocol_id": 1578
+ "protocol_id": 1603
},
"minecraft:enchant.thorns.hit": {
- "protocol_id": 1381
+ "protocol_id": 1406
},
"minecraft:entity.allay.ambient_with_item": {
"protocol_id": 0
@@ -14324,1915 +14727,1945 @@
"protocol_id": 198
},
"minecraft:entity.camel.ambient": {
- "protocol_id": 231
- },
- "minecraft:entity.camel.dash": {
- "protocol_id": 232
- },
- "minecraft:entity.camel.dash_ready": {
"protocol_id": 233
},
- "minecraft:entity.camel.death": {
+ "minecraft:entity.camel.dash": {
"protocol_id": 234
},
- "minecraft:entity.camel.eat": {
+ "minecraft:entity.camel.dash_ready": {
"protocol_id": 235
},
- "minecraft:entity.camel.hurt": {
+ "minecraft:entity.camel.death": {
"protocol_id": 236
},
- "minecraft:entity.camel.saddle": {
+ "minecraft:entity.camel.eat": {
"protocol_id": 237
},
- "minecraft:entity.camel.sit": {
+ "minecraft:entity.camel.hurt": {
"protocol_id": 238
},
- "minecraft:entity.camel.stand": {
+ "minecraft:entity.camel.saddle": {
"protocol_id": 239
},
- "minecraft:entity.camel.step": {
+ "minecraft:entity.camel.sit": {
"protocol_id": 240
},
- "minecraft:entity.camel.step_sand": {
+ "minecraft:entity.camel.stand": {
"protocol_id": 241
},
+ "minecraft:entity.camel.step": {
+ "protocol_id": 242
+ },
+ "minecraft:entity.camel.step_sand": {
+ "protocol_id": 243
+ },
"minecraft:entity.cat.ambient": {
- "protocol_id": 250
- },
- "minecraft:entity.cat.beg_for_food": {
- "protocol_id": 255
- },
- "minecraft:entity.cat.death": {
"protocol_id": 252
},
- "minecraft:entity.cat.eat": {
- "protocol_id": 253
- },
- "minecraft:entity.cat.hiss": {
- "protocol_id": 254
- },
- "minecraft:entity.cat.hurt": {
- "protocol_id": 256
- },
- "minecraft:entity.cat.purr": {
+ "minecraft:entity.cat.beg_for_food": {
"protocol_id": 257
},
- "minecraft:entity.cat.purreow": {
+ "minecraft:entity.cat.death": {
+ "protocol_id": 254
+ },
+ "minecraft:entity.cat.eat": {
+ "protocol_id": 255
+ },
+ "minecraft:entity.cat.hiss": {
+ "protocol_id": 256
+ },
+ "minecraft:entity.cat.hurt": {
"protocol_id": 258
},
+ "minecraft:entity.cat.purr": {
+ "protocol_id": 259
+ },
+ "minecraft:entity.cat.purreow": {
+ "protocol_id": 260
+ },
"minecraft:entity.cat.stray_ambient": {
- "protocol_id": 251
+ "protocol_id": 253
},
"minecraft:entity.chicken.ambient": {
- "protocol_id": 303
- },
- "minecraft:entity.chicken.death": {
- "protocol_id": 304
- },
- "minecraft:entity.chicken.egg": {
"protocol_id": 305
},
- "minecraft:entity.chicken.hurt": {
+ "minecraft:entity.chicken.death": {
"protocol_id": 306
},
- "minecraft:entity.chicken.step": {
+ "minecraft:entity.chicken.egg": {
"protocol_id": 307
},
+ "minecraft:entity.chicken.hurt": {
+ "protocol_id": 308
+ },
+ "minecraft:entity.chicken.step": {
+ "protocol_id": 309
+ },
"minecraft:entity.cod.ambient": {
- "protocol_id": 325
- },
- "minecraft:entity.cod.death": {
- "protocol_id": 326
- },
- "minecraft:entity.cod.flop": {
"protocol_id": 327
},
- "minecraft:entity.cod.hurt": {
+ "minecraft:entity.cod.death": {
"protocol_id": 328
},
+ "minecraft:entity.cod.flop": {
+ "protocol_id": 329
+ },
+ "minecraft:entity.cod.hurt": {
+ "protocol_id": 330
+ },
"minecraft:entity.cow.ambient": {
- "protocol_id": 365
- },
- "minecraft:entity.cow.death": {
- "protocol_id": 366
- },
- "minecraft:entity.cow.hurt": {
"protocol_id": 367
},
- "minecraft:entity.cow.milk": {
+ "minecraft:entity.cow.death": {
"protocol_id": 368
},
- "minecraft:entity.cow.step": {
+ "minecraft:entity.cow.hurt": {
"protocol_id": 369
},
- "minecraft:entity.creeper.death": {
- "protocol_id": 372
+ "minecraft:entity.cow.milk": {
+ "protocol_id": 370
},
- "minecraft:entity.creeper.hurt": {
- "protocol_id": 373
+ "minecraft:entity.cow.step": {
+ "protocol_id": 371
},
- "minecraft:entity.creeper.primed": {
+ "minecraft:entity.creaking.activate": {
+ "protocol_id": 375
+ },
+ "minecraft:entity.creaking.ambient": {
"protocol_id": 374
},
+ "minecraft:entity.creaking.attack": {
+ "protocol_id": 377
+ },
+ "minecraft:entity.creaking.deactivate": {
+ "protocol_id": 376
+ },
+ "minecraft:entity.creaking.death": {
+ "protocol_id": 378
+ },
+ "minecraft:entity.creaking.freeze": {
+ "protocol_id": 380
+ },
+ "minecraft:entity.creaking.spawn": {
+ "protocol_id": 382
+ },
+ "minecraft:entity.creaking.step": {
+ "protocol_id": 379
+ },
+ "minecraft:entity.creaking.sway": {
+ "protocol_id": 383
+ },
+ "minecraft:entity.creaking.unfreeze": {
+ "protocol_id": 381
+ },
+ "minecraft:entity.creeper.death": {
+ "protocol_id": 392
+ },
+ "minecraft:entity.creeper.hurt": {
+ "protocol_id": 393
+ },
+ "minecraft:entity.creeper.primed": {
+ "protocol_id": 394
+ },
"minecraft:entity.dolphin.ambient": {
- "protocol_id": 411
+ "protocol_id": 431
},
"minecraft:entity.dolphin.ambient_water": {
- "protocol_id": 412
+ "protocol_id": 432
},
"minecraft:entity.dolphin.attack": {
- "protocol_id": 413
+ "protocol_id": 433
},
"minecraft:entity.dolphin.death": {
- "protocol_id": 414
+ "protocol_id": 434
},
"minecraft:entity.dolphin.eat": {
- "protocol_id": 415
+ "protocol_id": 435
},
"minecraft:entity.dolphin.hurt": {
- "protocol_id": 416
+ "protocol_id": 436
},
"minecraft:entity.dolphin.jump": {
- "protocol_id": 417
+ "protocol_id": 437
},
"minecraft:entity.dolphin.play": {
- "protocol_id": 418
+ "protocol_id": 438
},
"minecraft:entity.dolphin.splash": {
- "protocol_id": 419
+ "protocol_id": 439
},
"minecraft:entity.dolphin.swim": {
- "protocol_id": 420
+ "protocol_id": 440
},
"minecraft:entity.donkey.ambient": {
- "protocol_id": 421
+ "protocol_id": 441
},
"minecraft:entity.donkey.angry": {
- "protocol_id": 422
+ "protocol_id": 442
},
"minecraft:entity.donkey.chest": {
- "protocol_id": 423
+ "protocol_id": 443
},
"minecraft:entity.donkey.death": {
- "protocol_id": 424
+ "protocol_id": 444
},
"minecraft:entity.donkey.eat": {
- "protocol_id": 425
- },
- "minecraft:entity.donkey.hurt": {
- "protocol_id": 426
- },
- "minecraft:entity.donkey.jump": {
- "protocol_id": 427
- },
- "minecraft:entity.dragon_fireball.explode": {
- "protocol_id": 470
- },
- "minecraft:entity.drowned.ambient": {
"protocol_id": 445
},
- "minecraft:entity.drowned.ambient_water": {
+ "minecraft:entity.donkey.hurt": {
"protocol_id": 446
},
- "minecraft:entity.drowned.death": {
+ "minecraft:entity.donkey.jump": {
"protocol_id": 447
},
+ "minecraft:entity.dragon_fireball.explode": {
+ "protocol_id": 490
+ },
+ "minecraft:entity.drowned.ambient": {
+ "protocol_id": 465
+ },
+ "minecraft:entity.drowned.ambient_water": {
+ "protocol_id": 466
+ },
+ "minecraft:entity.drowned.death": {
+ "protocol_id": 467
+ },
"minecraft:entity.drowned.death_water": {
- "protocol_id": 448
- },
- "minecraft:entity.drowned.hurt": {
- "protocol_id": 449
- },
- "minecraft:entity.drowned.hurt_water": {
- "protocol_id": 450
- },
- "minecraft:entity.drowned.shoot": {
- "protocol_id": 451
- },
- "minecraft:entity.drowned.step": {
- "protocol_id": 452
- },
- "minecraft:entity.drowned.swim": {
- "protocol_id": 453
- },
- "minecraft:entity.egg.throw": {
- "protocol_id": 455
- },
- "minecraft:entity.elder_guardian.ambient": {
- "protocol_id": 456
- },
- "minecraft:entity.elder_guardian.ambient_land": {
- "protocol_id": 457
- },
- "minecraft:entity.elder_guardian.curse": {
- "protocol_id": 458
- },
- "minecraft:entity.elder_guardian.death": {
- "protocol_id": 459
- },
- "minecraft:entity.elder_guardian.death_land": {
- "protocol_id": 460
- },
- "minecraft:entity.elder_guardian.flop": {
- "protocol_id": 461
- },
- "minecraft:entity.elder_guardian.hurt": {
- "protocol_id": 462
- },
- "minecraft:entity.elder_guardian.hurt_land": {
- "protocol_id": 463
- },
- "minecraft:entity.ender_dragon.ambient": {
"protocol_id": 468
},
- "minecraft:entity.ender_dragon.death": {
+ "minecraft:entity.drowned.hurt": {
"protocol_id": 469
},
- "minecraft:entity.ender_dragon.flap": {
+ "minecraft:entity.drowned.hurt_water": {
+ "protocol_id": 470
+ },
+ "minecraft:entity.drowned.shoot": {
"protocol_id": 471
},
- "minecraft:entity.ender_dragon.growl": {
+ "minecraft:entity.drowned.step": {
"protocol_id": 472
},
- "minecraft:entity.ender_dragon.hurt": {
+ "minecraft:entity.drowned.swim": {
"protocol_id": 473
},
- "minecraft:entity.ender_dragon.shoot": {
- "protocol_id": 474
- },
- "minecraft:entity.ender_eye.death": {
+ "minecraft:entity.egg.throw": {
"protocol_id": 475
},
- "minecraft:entity.ender_eye.launch": {
+ "minecraft:entity.elder_guardian.ambient": {
"protocol_id": 476
},
- "minecraft:entity.ender_pearl.throw": {
- "protocol_id": 487
- },
- "minecraft:entity.enderman.ambient": {
+ "minecraft:entity.elder_guardian.ambient_land": {
"protocol_id": 477
},
- "minecraft:entity.enderman.death": {
+ "minecraft:entity.elder_guardian.curse": {
"protocol_id": 478
},
- "minecraft:entity.enderman.hurt": {
+ "minecraft:entity.elder_guardian.death": {
"protocol_id": 479
},
- "minecraft:entity.enderman.scream": {
+ "minecraft:entity.elder_guardian.death_land": {
"protocol_id": 480
},
- "minecraft:entity.enderman.stare": {
+ "minecraft:entity.elder_guardian.flop": {
"protocol_id": 481
},
- "minecraft:entity.enderman.teleport": {
+ "minecraft:entity.elder_guardian.hurt": {
"protocol_id": 482
},
- "minecraft:entity.endermite.ambient": {
+ "minecraft:entity.elder_guardian.hurt_land": {
"protocol_id": 483
},
- "minecraft:entity.endermite.death": {
- "protocol_id": 484
+ "minecraft:entity.ender_dragon.ambient": {
+ "protocol_id": 488
},
- "minecraft:entity.endermite.hurt": {
- "protocol_id": 485
+ "minecraft:entity.ender_dragon.death": {
+ "protocol_id": 489
},
- "minecraft:entity.endermite.step": {
- "protocol_id": 486
- },
- "minecraft:entity.evoker.ambient": {
+ "minecraft:entity.ender_dragon.flap": {
"protocol_id": 491
},
- "minecraft:entity.evoker.cast_spell": {
+ "minecraft:entity.ender_dragon.growl": {
"protocol_id": 492
},
- "minecraft:entity.evoker.celebrate": {
+ "minecraft:entity.ender_dragon.hurt": {
"protocol_id": 493
},
- "minecraft:entity.evoker.death": {
+ "minecraft:entity.ender_dragon.shoot": {
"protocol_id": 494
},
- "minecraft:entity.evoker.hurt": {
- "protocol_id": 496
- },
- "minecraft:entity.evoker.prepare_attack": {
- "protocol_id": 497
- },
- "minecraft:entity.evoker.prepare_summon": {
- "protocol_id": 498
- },
- "minecraft:entity.evoker.prepare_wololo": {
- "protocol_id": 499
- },
- "minecraft:entity.evoker_fangs.attack": {
+ "minecraft:entity.ender_eye.death": {
"protocol_id": 495
},
- "minecraft:entity.experience_bottle.throw": {
- "protocol_id": 500
+ "minecraft:entity.ender_eye.launch": {
+ "protocol_id": 496
},
- "minecraft:entity.experience_orb.pickup": {
- "protocol_id": 501
- },
- "minecraft:entity.firework_rocket.blast": {
- "protocol_id": 505
- },
- "minecraft:entity.firework_rocket.blast_far": {
- "protocol_id": 506
- },
- "minecraft:entity.firework_rocket.large_blast": {
+ "minecraft:entity.ender_pearl.throw": {
"protocol_id": 507
},
- "minecraft:entity.firework_rocket.large_blast_far": {
- "protocol_id": 508
+ "minecraft:entity.enderman.ambient": {
+ "protocol_id": 497
},
- "minecraft:entity.firework_rocket.launch": {
- "protocol_id": 509
+ "minecraft:entity.enderman.death": {
+ "protocol_id": 498
},
- "minecraft:entity.firework_rocket.shoot": {
- "protocol_id": 510
+ "minecraft:entity.enderman.hurt": {
+ "protocol_id": 499
},
- "minecraft:entity.firework_rocket.twinkle": {
+ "minecraft:entity.enderman.scream": {
+ "protocol_id": 500
+ },
+ "minecraft:entity.enderman.stare": {
+ "protocol_id": 501
+ },
+ "minecraft:entity.enderman.teleport": {
+ "protocol_id": 502
+ },
+ "minecraft:entity.endermite.ambient": {
+ "protocol_id": 503
+ },
+ "minecraft:entity.endermite.death": {
+ "protocol_id": 504
+ },
+ "minecraft:entity.endermite.hurt": {
+ "protocol_id": 505
+ },
+ "minecraft:entity.endermite.step": {
+ "protocol_id": 506
+ },
+ "minecraft:entity.evoker.ambient": {
"protocol_id": 511
},
- "minecraft:entity.firework_rocket.twinkle_far": {
+ "minecraft:entity.evoker.cast_spell": {
"protocol_id": 512
},
- "minecraft:entity.fish.swim": {
- "protocol_id": 515
+ "minecraft:entity.evoker.celebrate": {
+ "protocol_id": 513
},
- "minecraft:entity.fishing_bobber.retrieve": {
+ "minecraft:entity.evoker.death": {
+ "protocol_id": 514
+ },
+ "minecraft:entity.evoker.hurt": {
"protocol_id": 516
},
- "minecraft:entity.fishing_bobber.splash": {
+ "minecraft:entity.evoker.prepare_attack": {
"protocol_id": 517
},
- "minecraft:entity.fishing_bobber.throw": {
+ "minecraft:entity.evoker.prepare_summon": {
"protocol_id": 518
},
- "minecraft:entity.fox.aggro": {
+ "minecraft:entity.evoker.prepare_wololo": {
+ "protocol_id": 519
+ },
+ "minecraft:entity.evoker_fangs.attack": {
+ "protocol_id": 515
+ },
+ "minecraft:entity.experience_bottle.throw": {
+ "protocol_id": 520
+ },
+ "minecraft:entity.experience_orb.pickup": {
+ "protocol_id": 521
+ },
+ "minecraft:entity.firework_rocket.blast": {
"protocol_id": 525
},
- "minecraft:entity.fox.ambient": {
+ "minecraft:entity.firework_rocket.blast_far": {
"protocol_id": 526
},
- "minecraft:entity.fox.bite": {
+ "minecraft:entity.firework_rocket.large_blast": {
"protocol_id": 527
},
- "minecraft:entity.fox.death": {
+ "minecraft:entity.firework_rocket.large_blast_far": {
"protocol_id": 528
},
- "minecraft:entity.fox.eat": {
+ "minecraft:entity.firework_rocket.launch": {
"protocol_id": 529
},
- "minecraft:entity.fox.hurt": {
+ "minecraft:entity.firework_rocket.shoot": {
"protocol_id": 530
},
- "minecraft:entity.fox.screech": {
+ "minecraft:entity.firework_rocket.twinkle": {
"protocol_id": 531
},
- "minecraft:entity.fox.sleep": {
+ "minecraft:entity.firework_rocket.twinkle_far": {
"protocol_id": 532
},
- "minecraft:entity.fox.sniff": {
- "protocol_id": 533
- },
- "minecraft:entity.fox.spit": {
- "protocol_id": 534
- },
- "minecraft:entity.fox.teleport": {
+ "minecraft:entity.fish.swim": {
"protocol_id": 535
},
+ "minecraft:entity.fishing_bobber.retrieve": {
+ "protocol_id": 536
+ },
+ "minecraft:entity.fishing_bobber.splash": {
+ "protocol_id": 537
+ },
+ "minecraft:entity.fishing_bobber.throw": {
+ "protocol_id": 538
+ },
+ "minecraft:entity.fox.aggro": {
+ "protocol_id": 545
+ },
+ "minecraft:entity.fox.ambient": {
+ "protocol_id": 546
+ },
+ "minecraft:entity.fox.bite": {
+ "protocol_id": 547
+ },
+ "minecraft:entity.fox.death": {
+ "protocol_id": 548
+ },
+ "minecraft:entity.fox.eat": {
+ "protocol_id": 549
+ },
+ "minecraft:entity.fox.hurt": {
+ "protocol_id": 550
+ },
+ "minecraft:entity.fox.screech": {
+ "protocol_id": 551
+ },
+ "minecraft:entity.fox.sleep": {
+ "protocol_id": 552
+ },
+ "minecraft:entity.fox.sniff": {
+ "protocol_id": 553
+ },
+ "minecraft:entity.fox.spit": {
+ "protocol_id": 554
+ },
+ "minecraft:entity.fox.teleport": {
+ "protocol_id": 555
+ },
"minecraft:entity.frog.ambient": {
- "protocol_id": 557
- },
- "minecraft:entity.frog.death": {
- "protocol_id": 558
- },
- "minecraft:entity.frog.eat": {
- "protocol_id": 559
- },
- "minecraft:entity.frog.hurt": {
- "protocol_id": 560
- },
- "minecraft:entity.frog.lay_spawn": {
- "protocol_id": 561
- },
- "minecraft:entity.frog.long_jump": {
- "protocol_id": 562
- },
- "minecraft:entity.frog.step": {
- "protocol_id": 563
- },
- "minecraft:entity.frog.tongue": {
- "protocol_id": 564
- },
- "minecraft:entity.generic.big_fall": {
- "protocol_id": 571
- },
- "minecraft:entity.generic.burn": {
- "protocol_id": 572
- },
- "minecraft:entity.generic.death": {
- "protocol_id": 573
- },
- "minecraft:entity.generic.drink": {
- "protocol_id": 574
- },
- "minecraft:entity.generic.eat": {
- "protocol_id": 575
- },
- "minecraft:entity.generic.explode": {
- "protocol_id": 576
- },
- "minecraft:entity.generic.extinguish_fire": {
"protocol_id": 577
},
- "minecraft:entity.generic.hurt": {
+ "minecraft:entity.frog.death": {
"protocol_id": 578
},
- "minecraft:entity.generic.small_fall": {
+ "minecraft:entity.frog.eat": {
"protocol_id": 579
},
- "minecraft:entity.generic.splash": {
+ "minecraft:entity.frog.hurt": {
"protocol_id": 580
},
- "minecraft:entity.generic.swim": {
+ "minecraft:entity.frog.lay_spawn": {
"protocol_id": 581
},
- "minecraft:entity.ghast.ambient": {
+ "minecraft:entity.frog.long_jump": {
"protocol_id": 582
},
- "minecraft:entity.ghast.death": {
+ "minecraft:entity.frog.step": {
"protocol_id": 583
},
- "minecraft:entity.ghast.hurt": {
+ "minecraft:entity.frog.tongue": {
"protocol_id": 584
},
- "minecraft:entity.ghast.scream": {
- "protocol_id": 585
+ "minecraft:entity.generic.big_fall": {
+ "protocol_id": 591
},
- "minecraft:entity.ghast.shoot": {
- "protocol_id": 586
+ "minecraft:entity.generic.burn": {
+ "protocol_id": 592
},
- "minecraft:entity.ghast.warn": {
- "protocol_id": 587
+ "minecraft:entity.generic.death": {
+ "protocol_id": 593
},
- "minecraft:entity.glow_item_frame.add_item": {
+ "minecraft:entity.generic.drink": {
+ "protocol_id": 594
+ },
+ "minecraft:entity.generic.eat": {
+ "protocol_id": 595
+ },
+ "minecraft:entity.generic.explode": {
+ "protocol_id": 596
+ },
+ "minecraft:entity.generic.extinguish_fire": {
+ "protocol_id": 597
+ },
+ "minecraft:entity.generic.hurt": {
+ "protocol_id": 598
+ },
+ "minecraft:entity.generic.small_fall": {
"protocol_id": 599
},
- "minecraft:entity.glow_item_frame.break": {
+ "minecraft:entity.generic.splash": {
"protocol_id": 600
},
- "minecraft:entity.glow_item_frame.place": {
+ "minecraft:entity.generic.swim": {
"protocol_id": 601
},
- "minecraft:entity.glow_item_frame.remove_item": {
+ "minecraft:entity.ghast.ambient": {
"protocol_id": 602
},
- "minecraft:entity.glow_item_frame.rotate_item": {
+ "minecraft:entity.ghast.death": {
"protocol_id": 603
},
- "minecraft:entity.glow_squid.ambient": {
+ "minecraft:entity.ghast.hurt": {
"protocol_id": 604
},
- "minecraft:entity.glow_squid.death": {
+ "minecraft:entity.ghast.scream": {
"protocol_id": 605
},
- "minecraft:entity.glow_squid.hurt": {
+ "minecraft:entity.ghast.shoot": {
"protocol_id": 606
},
- "minecraft:entity.glow_squid.squirt": {
+ "minecraft:entity.ghast.warn": {
"protocol_id": 607
},
- "minecraft:entity.goat.ambient": {
- "protocol_id": 608
- },
- "minecraft:entity.goat.death": {
- "protocol_id": 609
- },
- "minecraft:entity.goat.eat": {
- "protocol_id": 610
- },
- "minecraft:entity.goat.horn_break": {
- "protocol_id": 616
- },
- "minecraft:entity.goat.hurt": {
- "protocol_id": 611
- },
- "minecraft:entity.goat.long_jump": {
- "protocol_id": 612
- },
- "minecraft:entity.goat.milk": {
- "protocol_id": 613
- },
- "minecraft:entity.goat.prepare_ram": {
- "protocol_id": 614
- },
- "minecraft:entity.goat.ram_impact": {
- "protocol_id": 615
- },
- "minecraft:entity.goat.screaming.ambient": {
- "protocol_id": 618
- },
- "minecraft:entity.goat.screaming.death": {
+ "minecraft:entity.glow_item_frame.add_item": {
"protocol_id": 619
},
- "minecraft:entity.goat.screaming.eat": {
+ "minecraft:entity.glow_item_frame.break": {
"protocol_id": 620
},
- "minecraft:entity.goat.screaming.horn_break": {
- "protocol_id": 626
- },
- "minecraft:entity.goat.screaming.hurt": {
+ "minecraft:entity.glow_item_frame.place": {
"protocol_id": 621
},
- "minecraft:entity.goat.screaming.long_jump": {
+ "minecraft:entity.glow_item_frame.remove_item": {
"protocol_id": 622
},
- "minecraft:entity.goat.screaming.milk": {
+ "minecraft:entity.glow_item_frame.rotate_item": {
"protocol_id": 623
},
- "minecraft:entity.goat.screaming.prepare_ram": {
+ "minecraft:entity.glow_squid.ambient": {
"protocol_id": 624
},
- "minecraft:entity.goat.screaming.ram_impact": {
+ "minecraft:entity.glow_squid.death": {
"protocol_id": 625
},
- "minecraft:entity.goat.step": {
+ "minecraft:entity.glow_squid.hurt": {
+ "protocol_id": 626
+ },
+ "minecraft:entity.glow_squid.squirt": {
"protocol_id": 627
},
- "minecraft:entity.guardian.ambient": {
+ "minecraft:entity.goat.ambient": {
+ "protocol_id": 628
+ },
+ "minecraft:entity.goat.death": {
+ "protocol_id": 629
+ },
+ "minecraft:entity.goat.eat": {
+ "protocol_id": 630
+ },
+ "minecraft:entity.goat.horn_break": {
+ "protocol_id": 636
+ },
+ "minecraft:entity.goat.hurt": {
+ "protocol_id": 631
+ },
+ "minecraft:entity.goat.long_jump": {
+ "protocol_id": 632
+ },
+ "minecraft:entity.goat.milk": {
+ "protocol_id": 633
+ },
+ "minecraft:entity.goat.prepare_ram": {
+ "protocol_id": 634
+ },
+ "minecraft:entity.goat.ram_impact": {
+ "protocol_id": 635
+ },
+ "minecraft:entity.goat.screaming.ambient": {
+ "protocol_id": 637
+ },
+ "minecraft:entity.goat.screaming.death": {
+ "protocol_id": 638
+ },
+ "minecraft:entity.goat.screaming.eat": {
+ "protocol_id": 639
+ },
+ "minecraft:entity.goat.screaming.hurt": {
"protocol_id": 640
},
- "minecraft:entity.guardian.ambient_land": {
+ "minecraft:entity.goat.screaming.long_jump": {
"protocol_id": 641
},
- "minecraft:entity.guardian.attack": {
+ "minecraft:entity.goat.screaming.milk": {
"protocol_id": 642
},
- "minecraft:entity.guardian.death": {
+ "minecraft:entity.goat.screaming.prepare_ram": {
"protocol_id": 643
},
- "minecraft:entity.guardian.death_land": {
+ "minecraft:entity.goat.screaming.ram_impact": {
"protocol_id": 644
},
- "minecraft:entity.guardian.flop": {
+ "minecraft:entity.goat.step": {
"protocol_id": 645
},
+ "minecraft:entity.guardian.ambient": {
+ "protocol_id": 658
+ },
+ "minecraft:entity.guardian.ambient_land": {
+ "protocol_id": 659
+ },
+ "minecraft:entity.guardian.attack": {
+ "protocol_id": 660
+ },
+ "minecraft:entity.guardian.death": {
+ "protocol_id": 661
+ },
+ "minecraft:entity.guardian.death_land": {
+ "protocol_id": 662
+ },
+ "minecraft:entity.guardian.flop": {
+ "protocol_id": 663
+ },
"minecraft:entity.guardian.hurt": {
- "protocol_id": 646
+ "protocol_id": 664
},
"minecraft:entity.guardian.hurt_land": {
- "protocol_id": 647
+ "protocol_id": 665
},
"minecraft:entity.hoglin.ambient": {
- "protocol_id": 690
+ "protocol_id": 708
},
"minecraft:entity.hoglin.angry": {
- "protocol_id": 691
+ "protocol_id": 709
},
"minecraft:entity.hoglin.attack": {
- "protocol_id": 692
+ "protocol_id": 710
},
"minecraft:entity.hoglin.converted_to_zombified": {
- "protocol_id": 693
+ "protocol_id": 711
},
"minecraft:entity.hoglin.death": {
- "protocol_id": 694
+ "protocol_id": 712
},
"minecraft:entity.hoglin.hurt": {
- "protocol_id": 695
+ "protocol_id": 713
},
"minecraft:entity.hoglin.retreat": {
- "protocol_id": 696
- },
- "minecraft:entity.hoglin.step": {
- "protocol_id": 697
- },
- "minecraft:entity.horse.ambient": {
"protocol_id": 714
},
- "minecraft:entity.horse.angry": {
+ "minecraft:entity.hoglin.step": {
"protocol_id": 715
},
- "minecraft:entity.horse.armor": {
- "protocol_id": 716
- },
- "minecraft:entity.horse.breathe": {
- "protocol_id": 717
- },
- "minecraft:entity.horse.death": {
- "protocol_id": 718
- },
- "minecraft:entity.horse.eat": {
- "protocol_id": 719
- },
- "minecraft:entity.horse.gallop": {
- "protocol_id": 720
- },
- "minecraft:entity.horse.hurt": {
- "protocol_id": 721
- },
- "minecraft:entity.horse.jump": {
- "protocol_id": 722
- },
- "minecraft:entity.horse.land": {
- "protocol_id": 723
- },
- "minecraft:entity.horse.saddle": {
- "protocol_id": 724
- },
- "minecraft:entity.horse.step": {
- "protocol_id": 725
- },
- "minecraft:entity.horse.step_wood": {
- "protocol_id": 726
- },
- "minecraft:entity.hostile.big_fall": {
- "protocol_id": 727
- },
- "minecraft:entity.hostile.death": {
- "protocol_id": 728
- },
- "minecraft:entity.hostile.hurt": {
- "protocol_id": 729
- },
- "minecraft:entity.hostile.small_fall": {
- "protocol_id": 730
- },
- "minecraft:entity.hostile.splash": {
- "protocol_id": 731
- },
- "minecraft:entity.hostile.swim": {
+ "minecraft:entity.horse.ambient": {
"protocol_id": 732
},
- "minecraft:entity.husk.ambient": {
+ "minecraft:entity.horse.angry": {
"protocol_id": 733
},
- "minecraft:entity.husk.converted_to_zombie": {
+ "minecraft:entity.horse.armor": {
"protocol_id": 734
},
- "minecraft:entity.husk.death": {
+ "minecraft:entity.horse.breathe": {
"protocol_id": 735
},
- "minecraft:entity.husk.hurt": {
+ "minecraft:entity.horse.death": {
"protocol_id": 736
},
- "minecraft:entity.husk.step": {
+ "minecraft:entity.horse.eat": {
"protocol_id": 737
},
- "minecraft:entity.illusioner.ambient": {
+ "minecraft:entity.horse.gallop": {
"protocol_id": 738
},
- "minecraft:entity.illusioner.cast_spell": {
+ "minecraft:entity.horse.hurt": {
"protocol_id": 739
},
- "minecraft:entity.illusioner.death": {
+ "minecraft:entity.horse.jump": {
"protocol_id": 740
},
- "minecraft:entity.illusioner.hurt": {
+ "minecraft:entity.horse.land": {
"protocol_id": 741
},
- "minecraft:entity.illusioner.mirror_move": {
+ "minecraft:entity.horse.saddle": {
"protocol_id": 742
},
- "minecraft:entity.illusioner.prepare_blindness": {
+ "minecraft:entity.horse.step": {
"protocol_id": 743
},
- "minecraft:entity.illusioner.prepare_mirror": {
+ "minecraft:entity.horse.step_wood": {
"protocol_id": 744
},
- "minecraft:entity.iron_golem.attack": {
+ "minecraft:entity.hostile.big_fall": {
+ "protocol_id": 745
+ },
+ "minecraft:entity.hostile.death": {
+ "protocol_id": 746
+ },
+ "minecraft:entity.hostile.hurt": {
+ "protocol_id": 747
+ },
+ "minecraft:entity.hostile.small_fall": {
"protocol_id": 748
},
- "minecraft:entity.iron_golem.damage": {
+ "minecraft:entity.hostile.splash": {
"protocol_id": 749
},
- "minecraft:entity.iron_golem.death": {
+ "minecraft:entity.hostile.swim": {
"protocol_id": 750
},
- "minecraft:entity.iron_golem.hurt": {
+ "minecraft:entity.husk.ambient": {
"protocol_id": 751
},
- "minecraft:entity.iron_golem.repair": {
+ "minecraft:entity.husk.converted_to_zombie": {
"protocol_id": 752
},
- "minecraft:entity.iron_golem.step": {
+ "minecraft:entity.husk.death": {
"protocol_id": 753
},
- "minecraft:entity.item.break": {
- "protocol_id": 761
+ "minecraft:entity.husk.hurt": {
+ "protocol_id": 754
},
- "minecraft:entity.item.pickup": {
- "protocol_id": 762
+ "minecraft:entity.husk.step": {
+ "protocol_id": 755
},
- "minecraft:entity.item_frame.add_item": {
+ "minecraft:entity.illusioner.ambient": {
"protocol_id": 756
},
- "minecraft:entity.item_frame.break": {
+ "minecraft:entity.illusioner.cast_spell": {
"protocol_id": 757
},
- "minecraft:entity.item_frame.place": {
+ "minecraft:entity.illusioner.death": {
"protocol_id": 758
},
- "minecraft:entity.item_frame.remove_item": {
+ "minecraft:entity.illusioner.hurt": {
"protocol_id": 759
},
- "minecraft:entity.item_frame.rotate_item": {
+ "minecraft:entity.illusioner.mirror_move": {
"protocol_id": 760
},
- "minecraft:entity.leash_knot.break": {
- "protocol_id": 778
+ "minecraft:entity.illusioner.prepare_blindness": {
+ "protocol_id": 761
},
- "minecraft:entity.leash_knot.place": {
+ "minecraft:entity.illusioner.prepare_mirror": {
+ "protocol_id": 762
+ },
+ "minecraft:entity.iron_golem.attack": {
+ "protocol_id": 766
+ },
+ "minecraft:entity.iron_golem.damage": {
+ "protocol_id": 767
+ },
+ "minecraft:entity.iron_golem.death": {
+ "protocol_id": 768
+ },
+ "minecraft:entity.iron_golem.hurt": {
+ "protocol_id": 769
+ },
+ "minecraft:entity.iron_golem.repair": {
+ "protocol_id": 770
+ },
+ "minecraft:entity.iron_golem.step": {
+ "protocol_id": 771
+ },
+ "minecraft:entity.item.break": {
"protocol_id": 779
},
+ "minecraft:entity.item.pickup": {
+ "protocol_id": 780
+ },
+ "minecraft:entity.item_frame.add_item": {
+ "protocol_id": 774
+ },
+ "minecraft:entity.item_frame.break": {
+ "protocol_id": 775
+ },
+ "minecraft:entity.item_frame.place": {
+ "protocol_id": 776
+ },
+ "minecraft:entity.item_frame.remove_item": {
+ "protocol_id": 777
+ },
+ "minecraft:entity.item_frame.rotate_item": {
+ "protocol_id": 778
+ },
+ "minecraft:entity.leash_knot.break": {
+ "protocol_id": 796
+ },
+ "minecraft:entity.leash_knot.place": {
+ "protocol_id": 797
+ },
"minecraft:entity.lightning_bolt.impact": {
- "protocol_id": 781
+ "protocol_id": 799
},
"minecraft:entity.lightning_bolt.thunder": {
- "protocol_id": 782
+ "protocol_id": 800
},
"minecraft:entity.lingering_potion.throw": {
- "protocol_id": 783
+ "protocol_id": 801
},
"minecraft:entity.llama.ambient": {
- "protocol_id": 784
+ "protocol_id": 802
},
"minecraft:entity.llama.angry": {
- "protocol_id": 785
- },
- "minecraft:entity.llama.chest": {
- "protocol_id": 786
- },
- "minecraft:entity.llama.death": {
- "protocol_id": 787
- },
- "minecraft:entity.llama.eat": {
- "protocol_id": 788
- },
- "minecraft:entity.llama.hurt": {
- "protocol_id": 789
- },
- "minecraft:entity.llama.spit": {
- "protocol_id": 790
- },
- "minecraft:entity.llama.step": {
- "protocol_id": 791
- },
- "minecraft:entity.llama.swag": {
- "protocol_id": 792
- },
- "minecraft:entity.magma_cube.death": {
"protocol_id": 803
},
- "minecraft:entity.magma_cube.death_small": {
- "protocol_id": 793
- },
- "minecraft:entity.magma_cube.hurt": {
+ "minecraft:entity.llama.chest": {
"protocol_id": 804
},
- "minecraft:entity.magma_cube.hurt_small": {
+ "minecraft:entity.llama.death": {
"protocol_id": 805
},
- "minecraft:entity.magma_cube.jump": {
+ "minecraft:entity.llama.eat": {
"protocol_id": 806
},
- "minecraft:entity.magma_cube.squish": {
+ "minecraft:entity.llama.hurt": {
"protocol_id": 807
},
- "minecraft:entity.magma_cube.squish_small": {
+ "minecraft:entity.llama.spit": {
"protocol_id": 808
},
- "minecraft:entity.minecart.inside": {
- "protocol_id": 824
+ "minecraft:entity.llama.step": {
+ "protocol_id": 809
},
- "minecraft:entity.minecart.inside.underwater": {
+ "minecraft:entity.llama.swag": {
+ "protocol_id": 810
+ },
+ "minecraft:entity.magma_cube.death": {
+ "protocol_id": 821
+ },
+ "minecraft:entity.magma_cube.death_small": {
+ "protocol_id": 811
+ },
+ "minecraft:entity.magma_cube.hurt": {
+ "protocol_id": 822
+ },
+ "minecraft:entity.magma_cube.hurt_small": {
"protocol_id": 823
},
- "minecraft:entity.minecart.riding": {
+ "minecraft:entity.magma_cube.jump": {
+ "protocol_id": 824
+ },
+ "minecraft:entity.magma_cube.squish": {
"protocol_id": 825
},
- "minecraft:entity.mooshroom.convert": {
+ "minecraft:entity.magma_cube.squish_small": {
"protocol_id": 826
},
+ "minecraft:entity.minecart.inside": {
+ "protocol_id": 842
+ },
+ "minecraft:entity.minecart.inside.underwater": {
+ "protocol_id": 841
+ },
+ "minecraft:entity.minecart.riding": {
+ "protocol_id": 843
+ },
+ "minecraft:entity.mooshroom.convert": {
+ "protocol_id": 844
+ },
"minecraft:entity.mooshroom.eat": {
- "protocol_id": 827
+ "protocol_id": 845
},
"minecraft:entity.mooshroom.milk": {
- "protocol_id": 828
+ "protocol_id": 846
},
"minecraft:entity.mooshroom.shear": {
- "protocol_id": 830
+ "protocol_id": 848
},
"minecraft:entity.mooshroom.suspicious_milk": {
- "protocol_id": 829
+ "protocol_id": 847
},
"minecraft:entity.mule.ambient": {
- "protocol_id": 861
+ "protocol_id": 879
},
"minecraft:entity.mule.angry": {
- "protocol_id": 862
+ "protocol_id": 880
},
"minecraft:entity.mule.chest": {
- "protocol_id": 863
+ "protocol_id": 881
},
"minecraft:entity.mule.death": {
- "protocol_id": 864
+ "protocol_id": 882
},
"minecraft:entity.mule.eat": {
- "protocol_id": 865
+ "protocol_id": 883
},
"minecraft:entity.mule.hurt": {
- "protocol_id": 866
+ "protocol_id": 884
},
"minecraft:entity.mule.jump": {
- "protocol_id": 867
+ "protocol_id": 885
},
"minecraft:entity.ocelot.ambient": {
- "protocol_id": 1009
- },
- "minecraft:entity.ocelot.death": {
- "protocol_id": 1010
- },
- "minecraft:entity.ocelot.hurt": {
- "protocol_id": 1008
- },
- "minecraft:entity.painting.break": {
- "protocol_id": 1012
- },
- "minecraft:entity.painting.place": {
- "protocol_id": 1013
- },
- "minecraft:entity.panda.aggressive_ambient": {
- "protocol_id": 1021
- },
- "minecraft:entity.panda.ambient": {
- "protocol_id": 1016
- },
- "minecraft:entity.panda.bite": {
- "protocol_id": 1024
- },
- "minecraft:entity.panda.cant_breed": {
- "protocol_id": 1020
- },
- "minecraft:entity.panda.death": {
- "protocol_id": 1017
- },
- "minecraft:entity.panda.eat": {
- "protocol_id": 1018
- },
- "minecraft:entity.panda.hurt": {
- "protocol_id": 1023
- },
- "minecraft:entity.panda.pre_sneeze": {
- "protocol_id": 1014
- },
- "minecraft:entity.panda.sneeze": {
- "protocol_id": 1015
- },
- "minecraft:entity.panda.step": {
- "protocol_id": 1019
- },
- "minecraft:entity.panda.worried_ambient": {
- "protocol_id": 1022
- },
- "minecraft:entity.parrot.ambient": {
- "protocol_id": 1025
- },
- "minecraft:entity.parrot.death": {
- "protocol_id": 1026
- },
- "minecraft:entity.parrot.eat": {
"protocol_id": 1027
},
- "minecraft:entity.parrot.fly": {
+ "minecraft:entity.ocelot.death": {
"protocol_id": 1028
},
- "minecraft:entity.parrot.hurt": {
- "protocol_id": 1029
+ "minecraft:entity.ocelot.hurt": {
+ "protocol_id": 1026
},
- "minecraft:entity.parrot.imitate.blaze": {
+ "minecraft:entity.painting.break": {
"protocol_id": 1030
},
- "minecraft:entity.parrot.imitate.bogged": {
+ "minecraft:entity.painting.place": {
"protocol_id": 1031
},
- "minecraft:entity.parrot.imitate.breeze": {
- "protocol_id": 1032
- },
- "minecraft:entity.parrot.imitate.creeper": {
- "protocol_id": 1033
- },
- "minecraft:entity.parrot.imitate.drowned": {
- "protocol_id": 1034
- },
- "minecraft:entity.parrot.imitate.elder_guardian": {
- "protocol_id": 1035
- },
- "minecraft:entity.parrot.imitate.ender_dragon": {
- "protocol_id": 1036
- },
- "minecraft:entity.parrot.imitate.endermite": {
- "protocol_id": 1037
- },
- "minecraft:entity.parrot.imitate.evoker": {
- "protocol_id": 1038
- },
- "minecraft:entity.parrot.imitate.ghast": {
- "protocol_id": 1039
- },
- "minecraft:entity.parrot.imitate.guardian": {
+ "minecraft:entity.panda.aggressive_ambient": {
"protocol_id": 1040
},
- "minecraft:entity.parrot.imitate.hoglin": {
- "protocol_id": 1041
+ "minecraft:entity.panda.ambient": {
+ "protocol_id": 1035
},
- "minecraft:entity.parrot.imitate.husk": {
- "protocol_id": 1042
- },
- "minecraft:entity.parrot.imitate.illusioner": {
+ "minecraft:entity.panda.bite": {
"protocol_id": 1043
},
- "minecraft:entity.parrot.imitate.magma_cube": {
+ "minecraft:entity.panda.cant_breed": {
+ "protocol_id": 1039
+ },
+ "minecraft:entity.panda.death": {
+ "protocol_id": 1036
+ },
+ "minecraft:entity.panda.eat": {
+ "protocol_id": 1037
+ },
+ "minecraft:entity.panda.hurt": {
+ "protocol_id": 1042
+ },
+ "minecraft:entity.panda.pre_sneeze": {
+ "protocol_id": 1033
+ },
+ "minecraft:entity.panda.sneeze": {
+ "protocol_id": 1034
+ },
+ "minecraft:entity.panda.step": {
+ "protocol_id": 1038
+ },
+ "minecraft:entity.panda.worried_ambient": {
+ "protocol_id": 1041
+ },
+ "minecraft:entity.parrot.ambient": {
"protocol_id": 1044
},
- "minecraft:entity.parrot.imitate.phantom": {
+ "minecraft:entity.parrot.death": {
"protocol_id": 1045
},
- "minecraft:entity.parrot.imitate.piglin": {
+ "minecraft:entity.parrot.eat": {
"protocol_id": 1046
},
- "minecraft:entity.parrot.imitate.piglin_brute": {
+ "minecraft:entity.parrot.fly": {
"protocol_id": 1047
},
- "minecraft:entity.parrot.imitate.pillager": {
+ "minecraft:entity.parrot.hurt": {
"protocol_id": 1048
},
- "minecraft:entity.parrot.imitate.ravager": {
+ "minecraft:entity.parrot.imitate.blaze": {
"protocol_id": 1049
},
- "minecraft:entity.parrot.imitate.shulker": {
+ "minecraft:entity.parrot.imitate.bogged": {
"protocol_id": 1050
},
- "minecraft:entity.parrot.imitate.silverfish": {
+ "minecraft:entity.parrot.imitate.breeze": {
"protocol_id": 1051
},
- "minecraft:entity.parrot.imitate.skeleton": {
+ "minecraft:entity.parrot.imitate.creaking": {
"protocol_id": 1052
},
- "minecraft:entity.parrot.imitate.slime": {
+ "minecraft:entity.parrot.imitate.creeper": {
"protocol_id": 1053
},
- "minecraft:entity.parrot.imitate.spider": {
+ "minecraft:entity.parrot.imitate.drowned": {
"protocol_id": 1054
},
- "minecraft:entity.parrot.imitate.stray": {
+ "minecraft:entity.parrot.imitate.elder_guardian": {
"protocol_id": 1055
},
- "minecraft:entity.parrot.imitate.vex": {
+ "minecraft:entity.parrot.imitate.ender_dragon": {
"protocol_id": 1056
},
- "minecraft:entity.parrot.imitate.vindicator": {
+ "minecraft:entity.parrot.imitate.endermite": {
"protocol_id": 1057
},
- "minecraft:entity.parrot.imitate.warden": {
+ "minecraft:entity.parrot.imitate.evoker": {
"protocol_id": 1058
},
- "minecraft:entity.parrot.imitate.witch": {
+ "minecraft:entity.parrot.imitate.ghast": {
"protocol_id": 1059
},
- "minecraft:entity.parrot.imitate.wither": {
+ "minecraft:entity.parrot.imitate.guardian": {
"protocol_id": 1060
},
- "minecraft:entity.parrot.imitate.wither_skeleton": {
+ "minecraft:entity.parrot.imitate.hoglin": {
"protocol_id": 1061
},
- "minecraft:entity.parrot.imitate.zoglin": {
+ "minecraft:entity.parrot.imitate.husk": {
"protocol_id": 1062
},
- "minecraft:entity.parrot.imitate.zombie": {
+ "minecraft:entity.parrot.imitate.illusioner": {
"protocol_id": 1063
},
- "minecraft:entity.parrot.imitate.zombie_villager": {
+ "minecraft:entity.parrot.imitate.magma_cube": {
"protocol_id": 1064
},
- "minecraft:entity.parrot.step": {
+ "minecraft:entity.parrot.imitate.phantom": {
"protocol_id": 1065
},
- "minecraft:entity.phantom.ambient": {
+ "minecraft:entity.parrot.imitate.piglin": {
"protocol_id": 1066
},
- "minecraft:entity.phantom.bite": {
+ "minecraft:entity.parrot.imitate.piglin_brute": {
"protocol_id": 1067
},
- "minecraft:entity.phantom.death": {
+ "minecraft:entity.parrot.imitate.pillager": {
"protocol_id": 1068
},
- "minecraft:entity.phantom.flap": {
+ "minecraft:entity.parrot.imitate.ravager": {
"protocol_id": 1069
},
- "minecraft:entity.phantom.hurt": {
+ "minecraft:entity.parrot.imitate.shulker": {
"protocol_id": 1070
},
- "minecraft:entity.phantom.swoop": {
+ "minecraft:entity.parrot.imitate.silverfish": {
"protocol_id": 1071
},
- "minecraft:entity.pig.ambient": {
+ "minecraft:entity.parrot.imitate.skeleton": {
"protocol_id": 1072
},
- "minecraft:entity.pig.death": {
+ "minecraft:entity.parrot.imitate.slime": {
"protocol_id": 1073
},
- "minecraft:entity.pig.hurt": {
+ "minecraft:entity.parrot.imitate.spider": {
"protocol_id": 1074
},
- "minecraft:entity.pig.saddle": {
+ "minecraft:entity.parrot.imitate.stray": {
"protocol_id": 1075
},
- "minecraft:entity.pig.step": {
+ "minecraft:entity.parrot.imitate.vex": {
"protocol_id": 1076
},
- "minecraft:entity.piglin.admiring_item": {
+ "minecraft:entity.parrot.imitate.vindicator": {
"protocol_id": 1077
},
- "minecraft:entity.piglin.ambient": {
+ "minecraft:entity.parrot.imitate.warden": {
"protocol_id": 1078
},
- "minecraft:entity.piglin.angry": {
+ "minecraft:entity.parrot.imitate.witch": {
"protocol_id": 1079
},
- "minecraft:entity.piglin.celebrate": {
+ "minecraft:entity.parrot.imitate.wither": {
"protocol_id": 1080
},
- "minecraft:entity.piglin.converted_to_zombified": {
- "protocol_id": 1086
- },
- "minecraft:entity.piglin.death": {
+ "minecraft:entity.parrot.imitate.wither_skeleton": {
"protocol_id": 1081
},
- "minecraft:entity.piglin.hurt": {
- "protocol_id": 1083
- },
- "minecraft:entity.piglin.jealous": {
+ "minecraft:entity.parrot.imitate.zoglin": {
"protocol_id": 1082
},
- "minecraft:entity.piglin.retreat": {
+ "minecraft:entity.parrot.imitate.zombie": {
+ "protocol_id": 1083
+ },
+ "minecraft:entity.parrot.imitate.zombie_villager": {
"protocol_id": 1084
},
- "minecraft:entity.piglin.step": {
+ "minecraft:entity.parrot.step": {
"protocol_id": 1085
},
- "minecraft:entity.piglin_brute.ambient": {
+ "minecraft:entity.phantom.ambient": {
+ "protocol_id": 1086
+ },
+ "minecraft:entity.phantom.bite": {
"protocol_id": 1087
},
- "minecraft:entity.piglin_brute.angry": {
+ "minecraft:entity.phantom.death": {
"protocol_id": 1088
},
- "minecraft:entity.piglin_brute.converted_to_zombified": {
- "protocol_id": 1092
- },
- "minecraft:entity.piglin_brute.death": {
+ "minecraft:entity.phantom.flap": {
"protocol_id": 1089
},
- "minecraft:entity.piglin_brute.hurt": {
+ "minecraft:entity.phantom.hurt": {
"protocol_id": 1090
},
- "minecraft:entity.piglin_brute.step": {
+ "minecraft:entity.phantom.swoop": {
"protocol_id": 1091
},
- "minecraft:entity.pillager.ambient": {
+ "minecraft:entity.pig.ambient": {
+ "protocol_id": 1092
+ },
+ "minecraft:entity.pig.death": {
"protocol_id": 1093
},
- "minecraft:entity.pillager.celebrate": {
+ "minecraft:entity.pig.hurt": {
"protocol_id": 1094
},
- "minecraft:entity.pillager.death": {
+ "minecraft:entity.pig.saddle": {
"protocol_id": 1095
},
- "minecraft:entity.pillager.hurt": {
+ "minecraft:entity.pig.step": {
"protocol_id": 1096
},
- "minecraft:entity.player.attack.crit": {
+ "minecraft:entity.piglin.admiring_item": {
+ "protocol_id": 1097
+ },
+ "minecraft:entity.piglin.ambient": {
+ "protocol_id": 1098
+ },
+ "minecraft:entity.piglin.angry": {
"protocol_id": 1099
},
- "minecraft:entity.player.attack.knockback": {
+ "minecraft:entity.piglin.celebrate": {
"protocol_id": 1100
},
- "minecraft:entity.player.attack.nodamage": {
- "protocol_id": 1101
- },
- "minecraft:entity.player.attack.strong": {
- "protocol_id": 1102
- },
- "minecraft:entity.player.attack.sweep": {
- "protocol_id": 1103
- },
- "minecraft:entity.player.attack.weak": {
- "protocol_id": 1104
- },
- "minecraft:entity.player.big_fall": {
- "protocol_id": 1105
- },
- "minecraft:entity.player.breath": {
+ "minecraft:entity.piglin.converted_to_zombified": {
"protocol_id": 1106
},
- "minecraft:entity.player.burp": {
+ "minecraft:entity.piglin.death": {
+ "protocol_id": 1101
+ },
+ "minecraft:entity.piglin.hurt": {
+ "protocol_id": 1103
+ },
+ "minecraft:entity.piglin.jealous": {
+ "protocol_id": 1102
+ },
+ "minecraft:entity.piglin.retreat": {
+ "protocol_id": 1104
+ },
+ "minecraft:entity.piglin.step": {
+ "protocol_id": 1105
+ },
+ "minecraft:entity.piglin_brute.ambient": {
"protocol_id": 1107
},
- "minecraft:entity.player.death": {
+ "minecraft:entity.piglin_brute.angry": {
"protocol_id": 1108
},
- "minecraft:entity.player.hurt": {
- "protocol_id": 1109
- },
- "minecraft:entity.player.hurt_drown": {
- "protocol_id": 1110
- },
- "minecraft:entity.player.hurt_freeze": {
- "protocol_id": 1111
- },
- "minecraft:entity.player.hurt_on_fire": {
+ "minecraft:entity.piglin_brute.converted_to_zombified": {
"protocol_id": 1112
},
- "minecraft:entity.player.hurt_sweet_berry_bush": {
+ "minecraft:entity.piglin_brute.death": {
+ "protocol_id": 1109
+ },
+ "minecraft:entity.piglin_brute.hurt": {
+ "protocol_id": 1110
+ },
+ "minecraft:entity.piglin_brute.step": {
+ "protocol_id": 1111
+ },
+ "minecraft:entity.pillager.ambient": {
"protocol_id": 1113
},
- "minecraft:entity.player.levelup": {
+ "minecraft:entity.pillager.celebrate": {
"protocol_id": 1114
},
- "minecraft:entity.player.small_fall": {
+ "minecraft:entity.pillager.death": {
"protocol_id": 1115
},
- "minecraft:entity.player.splash": {
+ "minecraft:entity.pillager.hurt": {
"protocol_id": 1116
},
- "minecraft:entity.player.splash.high_speed": {
- "protocol_id": 1117
- },
- "minecraft:entity.player.swim": {
- "protocol_id": 1118
- },
- "minecraft:entity.player.teleport": {
+ "minecraft:entity.player.attack.crit": {
"protocol_id": 1119
},
- "minecraft:entity.polar_bear.ambient": {
+ "minecraft:entity.player.attack.knockback": {
"protocol_id": 1120
},
- "minecraft:entity.polar_bear.ambient_baby": {
+ "minecraft:entity.player.attack.nodamage": {
"protocol_id": 1121
},
- "minecraft:entity.polar_bear.death": {
+ "minecraft:entity.player.attack.strong": {
"protocol_id": 1122
},
- "minecraft:entity.polar_bear.hurt": {
+ "minecraft:entity.player.attack.sweep": {
"protocol_id": 1123
},
- "minecraft:entity.polar_bear.step": {
+ "minecraft:entity.player.attack.weak": {
"protocol_id": 1124
},
- "minecraft:entity.polar_bear.warning": {
+ "minecraft:entity.player.big_fall": {
"protocol_id": 1125
},
- "minecraft:entity.puffer_fish.ambient": {
+ "minecraft:entity.player.breath": {
+ "protocol_id": 1126
+ },
+ "minecraft:entity.player.burp": {
+ "protocol_id": 1127
+ },
+ "minecraft:entity.player.death": {
+ "protocol_id": 1128
+ },
+ "minecraft:entity.player.hurt": {
+ "protocol_id": 1129
+ },
+ "minecraft:entity.player.hurt_drown": {
+ "protocol_id": 1130
+ },
+ "minecraft:entity.player.hurt_freeze": {
+ "protocol_id": 1131
+ },
+ "minecraft:entity.player.hurt_on_fire": {
+ "protocol_id": 1132
+ },
+ "minecraft:entity.player.hurt_sweet_berry_bush": {
+ "protocol_id": 1133
+ },
+ "minecraft:entity.player.levelup": {
+ "protocol_id": 1134
+ },
+ "minecraft:entity.player.small_fall": {
+ "protocol_id": 1135
+ },
+ "minecraft:entity.player.splash": {
+ "protocol_id": 1136
+ },
+ "minecraft:entity.player.splash.high_speed": {
+ "protocol_id": 1137
+ },
+ "minecraft:entity.player.swim": {
+ "protocol_id": 1138
+ },
+ "minecraft:entity.player.teleport": {
"protocol_id": 1139
},
- "minecraft:entity.puffer_fish.blow_out": {
+ "minecraft:entity.polar_bear.ambient": {
"protocol_id": 1140
},
- "minecraft:entity.puffer_fish.blow_up": {
+ "minecraft:entity.polar_bear.ambient_baby": {
"protocol_id": 1141
},
- "minecraft:entity.puffer_fish.death": {
+ "minecraft:entity.polar_bear.death": {
"protocol_id": 1142
},
- "minecraft:entity.puffer_fish.flop": {
+ "minecraft:entity.polar_bear.hurt": {
"protocol_id": 1143
},
- "minecraft:entity.puffer_fish.hurt": {
+ "minecraft:entity.polar_bear.step": {
"protocol_id": 1144
},
- "minecraft:entity.puffer_fish.sting": {
+ "minecraft:entity.polar_bear.warning": {
"protocol_id": 1145
},
- "minecraft:entity.rabbit.ambient": {
- "protocol_id": 1147
- },
- "minecraft:entity.rabbit.attack": {
- "protocol_id": 1148
- },
- "minecraft:entity.rabbit.death": {
- "protocol_id": 1149
- },
- "minecraft:entity.rabbit.hurt": {
- "protocol_id": 1150
- },
- "minecraft:entity.rabbit.jump": {
- "protocol_id": 1151
- },
- "minecraft:entity.ravager.ambient": {
- "protocol_id": 1153
- },
- "minecraft:entity.ravager.attack": {
- "protocol_id": 1154
- },
- "minecraft:entity.ravager.celebrate": {
- "protocol_id": 1155
- },
- "minecraft:entity.ravager.death": {
- "protocol_id": 1156
- },
- "minecraft:entity.ravager.hurt": {
- "protocol_id": 1157
- },
- "minecraft:entity.ravager.roar": {
- "protocol_id": 1160
- },
- "minecraft:entity.ravager.step": {
- "protocol_id": 1158
- },
- "minecraft:entity.ravager.stunned": {
+ "minecraft:entity.puffer_fish.ambient": {
"protocol_id": 1159
},
+ "minecraft:entity.puffer_fish.blow_out": {
+ "protocol_id": 1160
+ },
+ "minecraft:entity.puffer_fish.blow_up": {
+ "protocol_id": 1161
+ },
+ "minecraft:entity.puffer_fish.death": {
+ "protocol_id": 1162
+ },
+ "minecraft:entity.puffer_fish.flop": {
+ "protocol_id": 1163
+ },
+ "minecraft:entity.puffer_fish.hurt": {
+ "protocol_id": 1164
+ },
+ "minecraft:entity.puffer_fish.sting": {
+ "protocol_id": 1165
+ },
+ "minecraft:entity.rabbit.ambient": {
+ "protocol_id": 1167
+ },
+ "minecraft:entity.rabbit.attack": {
+ "protocol_id": 1168
+ },
+ "minecraft:entity.rabbit.death": {
+ "protocol_id": 1169
+ },
+ "minecraft:entity.rabbit.hurt": {
+ "protocol_id": 1170
+ },
+ "minecraft:entity.rabbit.jump": {
+ "protocol_id": 1171
+ },
+ "minecraft:entity.ravager.ambient": {
+ "protocol_id": 1173
+ },
+ "minecraft:entity.ravager.attack": {
+ "protocol_id": 1174
+ },
+ "minecraft:entity.ravager.celebrate": {
+ "protocol_id": 1175
+ },
+ "minecraft:entity.ravager.death": {
+ "protocol_id": 1176
+ },
+ "minecraft:entity.ravager.hurt": {
+ "protocol_id": 1177
+ },
+ "minecraft:entity.ravager.roar": {
+ "protocol_id": 1180
+ },
+ "minecraft:entity.ravager.step": {
+ "protocol_id": 1178
+ },
+ "minecraft:entity.ravager.stunned": {
+ "protocol_id": 1179
+ },
"minecraft:entity.salmon.ambient": {
- "protocol_id": 1181
+ "protocol_id": 1201
},
"minecraft:entity.salmon.death": {
- "protocol_id": 1182
+ "protocol_id": 1202
},
"minecraft:entity.salmon.flop": {
- "protocol_id": 1183
+ "protocol_id": 1203
},
"minecraft:entity.salmon.hurt": {
- "protocol_id": 1184
+ "protocol_id": 1204
},
"minecraft:entity.sheep.ambient": {
- "protocol_id": 1226
- },
- "minecraft:entity.sheep.death": {
- "protocol_id": 1227
- },
- "minecraft:entity.sheep.hurt": {
- "protocol_id": 1228
- },
- "minecraft:entity.sheep.shear": {
- "protocol_id": 1229
- },
- "minecraft:entity.sheep.step": {
- "protocol_id": 1230
- },
- "minecraft:entity.shulker.ambient": {
- "protocol_id": 1239
- },
- "minecraft:entity.shulker.close": {
- "protocol_id": 1244
- },
- "minecraft:entity.shulker.death": {
- "protocol_id": 1245
- },
- "minecraft:entity.shulker.hurt": {
"protocol_id": 1246
},
- "minecraft:entity.shulker.hurt_closed": {
+ "minecraft:entity.sheep.death": {
"protocol_id": 1247
},
- "minecraft:entity.shulker.open": {
+ "minecraft:entity.sheep.hurt": {
"protocol_id": 1248
},
- "minecraft:entity.shulker.shoot": {
+ "minecraft:entity.sheep.shear": {
"protocol_id": 1249
},
- "minecraft:entity.shulker.teleport": {
+ "minecraft:entity.sheep.step": {
"protocol_id": 1250
},
- "minecraft:entity.shulker_bullet.hit": {
- "protocol_id": 1242
- },
- "minecraft:entity.shulker_bullet.hurt": {
- "protocol_id": 1243
- },
- "minecraft:entity.silverfish.ambient": {
- "protocol_id": 1251
- },
- "minecraft:entity.silverfish.death": {
- "protocol_id": 1252
- },
- "minecraft:entity.silverfish.hurt": {
- "protocol_id": 1253
- },
- "minecraft:entity.silverfish.step": {
- "protocol_id": 1254
- },
- "minecraft:entity.skeleton.ambient": {
- "protocol_id": 1255
- },
- "minecraft:entity.skeleton.converted_to_stray": {
- "protocol_id": 1256
- },
- "minecraft:entity.skeleton.death": {
- "protocol_id": 1257
- },
- "minecraft:entity.skeleton.hurt": {
- "protocol_id": 1266
- },
- "minecraft:entity.skeleton.shoot": {
- "protocol_id": 1267
- },
- "minecraft:entity.skeleton.step": {
- "protocol_id": 1268
- },
- "minecraft:entity.skeleton_horse.ambient": {
- "protocol_id": 1258
- },
- "minecraft:entity.skeleton_horse.ambient_water": {
- "protocol_id": 1262
- },
- "minecraft:entity.skeleton_horse.death": {
+ "minecraft:entity.shulker.ambient": {
"protocol_id": 1259
},
- "minecraft:entity.skeleton_horse.gallop_water": {
- "protocol_id": 1263
- },
- "minecraft:entity.skeleton_horse.hurt": {
- "protocol_id": 1260
- },
- "minecraft:entity.skeleton_horse.jump_water": {
+ "minecraft:entity.shulker.close": {
"protocol_id": 1264
},
- "minecraft:entity.skeleton_horse.step_water": {
+ "minecraft:entity.shulker.death": {
"protocol_id": 1265
},
- "minecraft:entity.skeleton_horse.swim": {
- "protocol_id": 1261
+ "minecraft:entity.shulker.hurt": {
+ "protocol_id": 1266
},
- "minecraft:entity.slime.attack": {
+ "minecraft:entity.shulker.hurt_closed": {
+ "protocol_id": 1267
+ },
+ "minecraft:entity.shulker.open": {
+ "protocol_id": 1268
+ },
+ "minecraft:entity.shulker.shoot": {
"protocol_id": 1269
},
- "minecraft:entity.slime.death": {
+ "minecraft:entity.shulker.teleport": {
"protocol_id": 1270
},
- "minecraft:entity.slime.death_small": {
- "protocol_id": 1311
+ "minecraft:entity.shulker_bullet.hit": {
+ "protocol_id": 1262
},
- "minecraft:entity.slime.hurt": {
+ "minecraft:entity.shulker_bullet.hurt": {
+ "protocol_id": 1263
+ },
+ "minecraft:entity.silverfish.ambient": {
"protocol_id": 1271
},
- "minecraft:entity.slime.hurt_small": {
- "protocol_id": 1312
- },
- "minecraft:entity.slime.jump": {
+ "minecraft:entity.silverfish.death": {
"protocol_id": 1272
},
- "minecraft:entity.slime.jump_small": {
- "protocol_id": 1313
- },
- "minecraft:entity.slime.squish": {
+ "minecraft:entity.silverfish.hurt": {
"protocol_id": 1273
},
- "minecraft:entity.slime.squish_small": {
- "protocol_id": 1314
+ "minecraft:entity.silverfish.step": {
+ "protocol_id": 1274
},
- "minecraft:entity.sniffer.death": {
- "protocol_id": 1321
+ "minecraft:entity.skeleton.ambient": {
+ "protocol_id": 1275
},
- "minecraft:entity.sniffer.digging": {
- "protocol_id": 1326
+ "minecraft:entity.skeleton.converted_to_stray": {
+ "protocol_id": 1276
},
- "minecraft:entity.sniffer.digging_stop": {
- "protocol_id": 1327
+ "minecraft:entity.skeleton.death": {
+ "protocol_id": 1277
},
- "minecraft:entity.sniffer.drop_seed": {
- "protocol_id": 1322
+ "minecraft:entity.skeleton.hurt": {
+ "protocol_id": 1286
},
- "minecraft:entity.sniffer.eat": {
- "protocol_id": 1318
+ "minecraft:entity.skeleton.shoot": {
+ "protocol_id": 1287
},
- "minecraft:entity.sniffer.happy": {
- "protocol_id": 1328
+ "minecraft:entity.skeleton.step": {
+ "protocol_id": 1288
},
- "minecraft:entity.sniffer.hurt": {
- "protocol_id": 1320
+ "minecraft:entity.skeleton_horse.ambient": {
+ "protocol_id": 1278
},
- "minecraft:entity.sniffer.idle": {
- "protocol_id": 1319
+ "minecraft:entity.skeleton_horse.ambient_water": {
+ "protocol_id": 1282
},
- "minecraft:entity.sniffer.scenting": {
- "protocol_id": 1323
+ "minecraft:entity.skeleton_horse.death": {
+ "protocol_id": 1279
},
- "minecraft:entity.sniffer.searching": {
- "protocol_id": 1325
+ "minecraft:entity.skeleton_horse.gallop_water": {
+ "protocol_id": 1283
},
- "minecraft:entity.sniffer.sniffing": {
- "protocol_id": 1324
+ "minecraft:entity.skeleton_horse.hurt": {
+ "protocol_id": 1280
},
- "minecraft:entity.sniffer.step": {
- "protocol_id": 1317
+ "minecraft:entity.skeleton_horse.jump_water": {
+ "protocol_id": 1284
},
- "minecraft:entity.snow_golem.ambient": {
- "protocol_id": 1335
+ "minecraft:entity.skeleton_horse.step_water": {
+ "protocol_id": 1285
},
- "minecraft:entity.snow_golem.death": {
+ "minecraft:entity.skeleton_horse.swim": {
+ "protocol_id": 1281
+ },
+ "minecraft:entity.slime.attack": {
+ "protocol_id": 1289
+ },
+ "minecraft:entity.slime.death": {
+ "protocol_id": 1290
+ },
+ "minecraft:entity.slime.death_small": {
"protocol_id": 1336
},
- "minecraft:entity.snow_golem.hurt": {
+ "minecraft:entity.slime.hurt": {
+ "protocol_id": 1291
+ },
+ "minecraft:entity.slime.hurt_small": {
"protocol_id": 1337
},
- "minecraft:entity.snow_golem.shear": {
- "protocol_id": 1339
+ "minecraft:entity.slime.jump": {
+ "protocol_id": 1292
},
- "minecraft:entity.snow_golem.shoot": {
+ "minecraft:entity.slime.jump_small": {
"protocol_id": 1338
},
- "minecraft:entity.snowball.throw": {
- "protocol_id": 1332
+ "minecraft:entity.slime.squish": {
+ "protocol_id": 1293
},
- "minecraft:entity.spider.ambient": {
- "protocol_id": 1343
+ "minecraft:entity.slime.squish_small": {
+ "protocol_id": 1339
},
- "minecraft:entity.spider.death": {
- "protocol_id": 1344
- },
- "minecraft:entity.spider.hurt": {
- "protocol_id": 1345
- },
- "minecraft:entity.spider.step": {
+ "minecraft:entity.sniffer.death": {
"protocol_id": 1346
},
- "minecraft:entity.splash_potion.break": {
+ "minecraft:entity.sniffer.digging": {
+ "protocol_id": 1351
+ },
+ "minecraft:entity.sniffer.digging_stop": {
+ "protocol_id": 1352
+ },
+ "minecraft:entity.sniffer.drop_seed": {
"protocol_id": 1347
},
- "minecraft:entity.splash_potion.throw": {
+ "minecraft:entity.sniffer.eat": {
+ "protocol_id": 1343
+ },
+ "minecraft:entity.sniffer.happy": {
+ "protocol_id": 1353
+ },
+ "minecraft:entity.sniffer.hurt": {
+ "protocol_id": 1345
+ },
+ "minecraft:entity.sniffer.idle": {
+ "protocol_id": 1344
+ },
+ "minecraft:entity.sniffer.scenting": {
"protocol_id": 1348
},
- "minecraft:entity.squid.ambient": {
- "protocol_id": 1357
+ "minecraft:entity.sniffer.searching": {
+ "protocol_id": 1350
},
- "minecraft:entity.squid.death": {
- "protocol_id": 1358
+ "minecraft:entity.sniffer.sniffing": {
+ "protocol_id": 1349
},
- "minecraft:entity.squid.hurt": {
- "protocol_id": 1359
+ "minecraft:entity.sniffer.step": {
+ "protocol_id": 1342
},
- "minecraft:entity.squid.squirt": {
+ "minecraft:entity.snow_golem.ambient": {
"protocol_id": 1360
},
- "minecraft:entity.stray.ambient": {
+ "minecraft:entity.snow_golem.death": {
+ "protocol_id": 1361
+ },
+ "minecraft:entity.snow_golem.hurt": {
+ "protocol_id": 1362
+ },
+ "minecraft:entity.snow_golem.shear": {
+ "protocol_id": 1364
+ },
+ "minecraft:entity.snow_golem.shoot": {
+ "protocol_id": 1363
+ },
+ "minecraft:entity.snowball.throw": {
+ "protocol_id": 1357
+ },
+ "minecraft:entity.spider.ambient": {
+ "protocol_id": 1368
+ },
+ "minecraft:entity.spider.death": {
+ "protocol_id": 1369
+ },
+ "minecraft:entity.spider.hurt": {
"protocol_id": 1370
},
- "minecraft:entity.stray.death": {
+ "minecraft:entity.spider.step": {
"protocol_id": 1371
},
- "minecraft:entity.stray.hurt": {
+ "minecraft:entity.splash_potion.break": {
"protocol_id": 1372
},
- "minecraft:entity.stray.step": {
+ "minecraft:entity.splash_potion.throw": {
"protocol_id": 1373
},
- "minecraft:entity.strider.ambient": {
- "protocol_id": 1302
- },
- "minecraft:entity.strider.death": {
- "protocol_id": 1305
- },
- "minecraft:entity.strider.eat": {
- "protocol_id": 1309
- },
- "minecraft:entity.strider.happy": {
- "protocol_id": 1303
- },
- "minecraft:entity.strider.hurt": {
- "protocol_id": 1306
- },
- "minecraft:entity.strider.retreat": {
- "protocol_id": 1304
- },
- "minecraft:entity.strider.saddle": {
- "protocol_id": 1310
- },
- "minecraft:entity.strider.step": {
- "protocol_id": 1307
- },
- "minecraft:entity.strider.step_lava": {
- "protocol_id": 1308
- },
- "minecraft:entity.tadpole.death": {
- "protocol_id": 1377
- },
- "minecraft:entity.tadpole.flop": {
- "protocol_id": 1378
- },
- "minecraft:entity.tadpole.grow_up": {
- "protocol_id": 1379
- },
- "minecraft:entity.tadpole.hurt": {
- "protocol_id": 1380
- },
- "minecraft:entity.tnt.primed": {
+ "minecraft:entity.squid.ambient": {
"protocol_id": 1382
},
- "minecraft:entity.tropical_fish.ambient": {
+ "minecraft:entity.squid.death": {
+ "protocol_id": 1383
+ },
+ "minecraft:entity.squid.hurt": {
+ "protocol_id": 1384
+ },
+ "minecraft:entity.squid.squirt": {
+ "protocol_id": 1385
+ },
+ "minecraft:entity.stray.ambient": {
+ "protocol_id": 1395
+ },
+ "minecraft:entity.stray.death": {
"protocol_id": 1396
},
- "minecraft:entity.tropical_fish.death": {
+ "minecraft:entity.stray.hurt": {
"protocol_id": 1397
},
- "minecraft:entity.tropical_fish.flop": {
+ "minecraft:entity.stray.step": {
"protocol_id": 1398
},
- "minecraft:entity.tropical_fish.hurt": {
- "protocol_id": 1399
+ "minecraft:entity.strider.ambient": {
+ "protocol_id": 1327
},
- "minecraft:entity.turtle.ambient_land": {
- "protocol_id": 1415
+ "minecraft:entity.strider.death": {
+ "protocol_id": 1330
},
- "minecraft:entity.turtle.death": {
- "protocol_id": 1416
+ "minecraft:entity.strider.eat": {
+ "protocol_id": 1334
},
- "minecraft:entity.turtle.death_baby": {
- "protocol_id": 1417
+ "minecraft:entity.strider.happy": {
+ "protocol_id": 1328
},
- "minecraft:entity.turtle.egg_break": {
- "protocol_id": 1418
+ "minecraft:entity.strider.hurt": {
+ "protocol_id": 1331
},
- "minecraft:entity.turtle.egg_crack": {
- "protocol_id": 1419
+ "minecraft:entity.strider.retreat": {
+ "protocol_id": 1329
},
- "minecraft:entity.turtle.egg_hatch": {
- "protocol_id": 1420
+ "minecraft:entity.strider.saddle": {
+ "protocol_id": 1335
},
- "minecraft:entity.turtle.hurt": {
+ "minecraft:entity.strider.step": {
+ "protocol_id": 1332
+ },
+ "minecraft:entity.strider.step_lava": {
+ "protocol_id": 1333
+ },
+ "minecraft:entity.tadpole.death": {
+ "protocol_id": 1402
+ },
+ "minecraft:entity.tadpole.flop": {
+ "protocol_id": 1403
+ },
+ "minecraft:entity.tadpole.grow_up": {
+ "protocol_id": 1404
+ },
+ "minecraft:entity.tadpole.hurt": {
+ "protocol_id": 1405
+ },
+ "minecraft:entity.tnt.primed": {
+ "protocol_id": 1407
+ },
+ "minecraft:entity.tropical_fish.ambient": {
"protocol_id": 1421
},
- "minecraft:entity.turtle.hurt_baby": {
+ "minecraft:entity.tropical_fish.death": {
"protocol_id": 1422
},
- "minecraft:entity.turtle.lay_egg": {
+ "minecraft:entity.tropical_fish.flop": {
"protocol_id": 1423
},
- "minecraft:entity.turtle.shamble": {
+ "minecraft:entity.tropical_fish.hurt": {
"protocol_id": 1424
},
+ "minecraft:entity.turtle.ambient_land": {
+ "protocol_id": 1440
+ },
+ "minecraft:entity.turtle.death": {
+ "protocol_id": 1441
+ },
+ "minecraft:entity.turtle.death_baby": {
+ "protocol_id": 1442
+ },
+ "minecraft:entity.turtle.egg_break": {
+ "protocol_id": 1443
+ },
+ "minecraft:entity.turtle.egg_crack": {
+ "protocol_id": 1444
+ },
+ "minecraft:entity.turtle.egg_hatch": {
+ "protocol_id": 1445
+ },
+ "minecraft:entity.turtle.hurt": {
+ "protocol_id": 1446
+ },
+ "minecraft:entity.turtle.hurt_baby": {
+ "protocol_id": 1447
+ },
+ "minecraft:entity.turtle.lay_egg": {
+ "protocol_id": 1448
+ },
+ "minecraft:entity.turtle.shamble": {
+ "protocol_id": 1449
+ },
"minecraft:entity.turtle.shamble_baby": {
- "protocol_id": 1425
- },
- "minecraft:entity.turtle.swim": {
- "protocol_id": 1426
- },
- "minecraft:entity.vex.ambient": {
"protocol_id": 1450
},
- "minecraft:entity.vex.charge": {
+ "minecraft:entity.turtle.swim": {
"protocol_id": 1451
},
- "minecraft:entity.vex.death": {
- "protocol_id": 1452
- },
- "minecraft:entity.vex.hurt": {
- "protocol_id": 1453
- },
- "minecraft:entity.villager.ambient": {
- "protocol_id": 1454
- },
- "minecraft:entity.villager.celebrate": {
- "protocol_id": 1455
- },
- "minecraft:entity.villager.death": {
- "protocol_id": 1456
- },
- "minecraft:entity.villager.hurt": {
- "protocol_id": 1457
- },
- "minecraft:entity.villager.no": {
- "protocol_id": 1458
- },
- "minecraft:entity.villager.trade": {
- "protocol_id": 1459
- },
- "minecraft:entity.villager.work_armorer": {
- "protocol_id": 1461
- },
- "minecraft:entity.villager.work_butcher": {
- "protocol_id": 1462
- },
- "minecraft:entity.villager.work_cartographer": {
- "protocol_id": 1463
- },
- "minecraft:entity.villager.work_cleric": {
- "protocol_id": 1464
- },
- "minecraft:entity.villager.work_farmer": {
- "protocol_id": 1465
- },
- "minecraft:entity.villager.work_fisherman": {
- "protocol_id": 1466
- },
- "minecraft:entity.villager.work_fletcher": {
- "protocol_id": 1467
- },
- "minecraft:entity.villager.work_leatherworker": {
- "protocol_id": 1468
- },
- "minecraft:entity.villager.work_librarian": {
- "protocol_id": 1469
- },
- "minecraft:entity.villager.work_mason": {
- "protocol_id": 1470
- },
- "minecraft:entity.villager.work_shepherd": {
- "protocol_id": 1471
- },
- "minecraft:entity.villager.work_toolsmith": {
- "protocol_id": 1472
- },
- "minecraft:entity.villager.work_weaponsmith": {
- "protocol_id": 1473
- },
- "minecraft:entity.villager.yes": {
- "protocol_id": 1460
- },
- "minecraft:entity.vindicator.ambient": {
- "protocol_id": 1474
- },
- "minecraft:entity.vindicator.celebrate": {
+ "minecraft:entity.vex.ambient": {
"protocol_id": 1475
},
- "minecraft:entity.vindicator.death": {
+ "minecraft:entity.vex.charge": {
"protocol_id": 1476
},
- "minecraft:entity.vindicator.hurt": {
+ "minecraft:entity.vex.death": {
"protocol_id": 1477
},
- "minecraft:entity.wandering_trader.ambient": {
+ "minecraft:entity.vex.hurt": {
+ "protocol_id": 1478
+ },
+ "minecraft:entity.villager.ambient": {
+ "protocol_id": 1479
+ },
+ "minecraft:entity.villager.celebrate": {
+ "protocol_id": 1480
+ },
+ "minecraft:entity.villager.death": {
+ "protocol_id": 1481
+ },
+ "minecraft:entity.villager.hurt": {
+ "protocol_id": 1482
+ },
+ "minecraft:entity.villager.no": {
+ "protocol_id": 1483
+ },
+ "minecraft:entity.villager.trade": {
"protocol_id": 1484
},
- "minecraft:entity.wandering_trader.death": {
- "protocol_id": 1485
- },
- "minecraft:entity.wandering_trader.disappeared": {
+ "minecraft:entity.villager.work_armorer": {
"protocol_id": 1486
},
- "minecraft:entity.wandering_trader.drink_milk": {
+ "minecraft:entity.villager.work_butcher": {
"protocol_id": 1487
},
- "minecraft:entity.wandering_trader.drink_potion": {
+ "minecraft:entity.villager.work_cartographer": {
"protocol_id": 1488
},
- "minecraft:entity.wandering_trader.hurt": {
+ "minecraft:entity.villager.work_cleric": {
"protocol_id": 1489
},
- "minecraft:entity.wandering_trader.no": {
+ "minecraft:entity.villager.work_farmer": {
"protocol_id": 1490
},
- "minecraft:entity.wandering_trader.reappeared": {
+ "minecraft:entity.villager.work_fisherman": {
"protocol_id": 1491
},
- "minecraft:entity.wandering_trader.trade": {
+ "minecraft:entity.villager.work_fletcher": {
"protocol_id": 1492
},
- "minecraft:entity.wandering_trader.yes": {
+ "minecraft:entity.villager.work_leatherworker": {
"protocol_id": 1493
},
- "minecraft:entity.warden.agitated": {
+ "minecraft:entity.villager.work_librarian": {
"protocol_id": 1494
},
- "minecraft:entity.warden.ambient": {
+ "minecraft:entity.villager.work_mason": {
"protocol_id": 1495
},
- "minecraft:entity.warden.angry": {
+ "minecraft:entity.villager.work_shepherd": {
"protocol_id": 1496
},
- "minecraft:entity.warden.attack_impact": {
+ "minecraft:entity.villager.work_toolsmith": {
"protocol_id": 1497
},
- "minecraft:entity.warden.death": {
+ "minecraft:entity.villager.work_weaponsmith": {
"protocol_id": 1498
},
- "minecraft:entity.warden.dig": {
+ "minecraft:entity.villager.yes": {
+ "protocol_id": 1485
+ },
+ "minecraft:entity.vindicator.ambient": {
"protocol_id": 1499
},
- "minecraft:entity.warden.emerge": {
+ "minecraft:entity.vindicator.celebrate": {
"protocol_id": 1500
},
- "minecraft:entity.warden.heartbeat": {
+ "minecraft:entity.vindicator.death": {
"protocol_id": 1501
},
- "minecraft:entity.warden.hurt": {
+ "minecraft:entity.vindicator.hurt": {
"protocol_id": 1502
},
- "minecraft:entity.warden.listening": {
- "protocol_id": 1503
- },
- "minecraft:entity.warden.listening_angry": {
- "protocol_id": 1504
- },
- "minecraft:entity.warden.nearby_close": {
- "protocol_id": 1505
- },
- "minecraft:entity.warden.nearby_closer": {
- "protocol_id": 1506
- },
- "minecraft:entity.warden.nearby_closest": {
- "protocol_id": 1507
- },
- "minecraft:entity.warden.roar": {
- "protocol_id": 1508
- },
- "minecraft:entity.warden.sniff": {
+ "minecraft:entity.wandering_trader.ambient": {
"protocol_id": 1509
},
- "minecraft:entity.warden.sonic_boom": {
+ "minecraft:entity.wandering_trader.death": {
"protocol_id": 1510
},
- "minecraft:entity.warden.sonic_charge": {
+ "minecraft:entity.wandering_trader.disappeared": {
"protocol_id": 1511
},
- "minecraft:entity.warden.step": {
+ "minecraft:entity.wandering_trader.drink_milk": {
"protocol_id": 1512
},
- "minecraft:entity.warden.tendril_clicks": {
+ "minecraft:entity.wandering_trader.drink_potion": {
"protocol_id": 1513
},
- "minecraft:entity.wind_charge.throw": {
- "protocol_id": 1531
+ "minecraft:entity.wandering_trader.hurt": {
+ "protocol_id": 1514
},
- "minecraft:entity.wind_charge.wind_burst": {
+ "minecraft:entity.wandering_trader.no": {
+ "protocol_id": 1515
+ },
+ "minecraft:entity.wandering_trader.reappeared": {
+ "protocol_id": 1516
+ },
+ "minecraft:entity.wandering_trader.trade": {
+ "protocol_id": 1517
+ },
+ "minecraft:entity.wandering_trader.yes": {
+ "protocol_id": 1518
+ },
+ "minecraft:entity.warden.agitated": {
+ "protocol_id": 1519
+ },
+ "minecraft:entity.warden.ambient": {
+ "protocol_id": 1520
+ },
+ "minecraft:entity.warden.angry": {
+ "protocol_id": 1521
+ },
+ "minecraft:entity.warden.attack_impact": {
+ "protocol_id": 1522
+ },
+ "minecraft:entity.warden.death": {
+ "protocol_id": 1523
+ },
+ "minecraft:entity.warden.dig": {
+ "protocol_id": 1524
+ },
+ "minecraft:entity.warden.emerge": {
+ "protocol_id": 1525
+ },
+ "minecraft:entity.warden.heartbeat": {
+ "protocol_id": 1526
+ },
+ "minecraft:entity.warden.hurt": {
+ "protocol_id": 1527
+ },
+ "minecraft:entity.warden.listening": {
+ "protocol_id": 1528
+ },
+ "minecraft:entity.warden.listening_angry": {
+ "protocol_id": 1529
+ },
+ "minecraft:entity.warden.nearby_close": {
"protocol_id": 1530
},
- "minecraft:entity.witch.ambient": {
+ "minecraft:entity.warden.nearby_closer": {
+ "protocol_id": 1531
+ },
+ "minecraft:entity.warden.nearby_closest": {
"protocol_id": 1532
},
- "minecraft:entity.witch.celebrate": {
+ "minecraft:entity.warden.roar": {
"protocol_id": 1533
},
- "minecraft:entity.witch.death": {
+ "minecraft:entity.warden.sniff": {
"protocol_id": 1534
},
- "minecraft:entity.witch.drink": {
+ "minecraft:entity.warden.sonic_boom": {
"protocol_id": 1535
},
- "minecraft:entity.witch.hurt": {
+ "minecraft:entity.warden.sonic_charge": {
"protocol_id": 1536
},
- "minecraft:entity.witch.throw": {
+ "minecraft:entity.warden.step": {
"protocol_id": 1537
},
- "minecraft:entity.wither.ambient": {
+ "minecraft:entity.warden.tendril_clicks": {
"protocol_id": 1538
},
- "minecraft:entity.wither.break_block": {
- "protocol_id": 1539
- },
- "minecraft:entity.wither.death": {
- "protocol_id": 1540
- },
- "minecraft:entity.wither.hurt": {
- "protocol_id": 1541
- },
- "minecraft:entity.wither.shoot": {
- "protocol_id": 1542
- },
- "minecraft:entity.wither.spawn": {
- "protocol_id": 1547
- },
- "minecraft:entity.wither_skeleton.ambient": {
- "protocol_id": 1543
- },
- "minecraft:entity.wither_skeleton.death": {
- "protocol_id": 1544
- },
- "minecraft:entity.wither_skeleton.hurt": {
- "protocol_id": 1545
- },
- "minecraft:entity.wither_skeleton.step": {
- "protocol_id": 1546
- },
- "minecraft:entity.wolf.ambient": {
- "protocol_id": 1552
- },
- "minecraft:entity.wolf.death": {
- "protocol_id": 1553
- },
- "minecraft:entity.wolf.growl": {
- "protocol_id": 1554
- },
- "minecraft:entity.wolf.howl": {
- "protocol_id": 1555
- },
- "minecraft:entity.wolf.hurt": {
+ "minecraft:entity.wind_charge.throw": {
"protocol_id": 1556
},
- "minecraft:entity.wolf.pant": {
+ "minecraft:entity.wind_charge.wind_burst": {
+ "protocol_id": 1555
+ },
+ "minecraft:entity.witch.ambient": {
"protocol_id": 1557
},
- "minecraft:entity.wolf.shake": {
+ "minecraft:entity.witch.celebrate": {
"protocol_id": 1558
},
- "minecraft:entity.wolf.step": {
+ "minecraft:entity.witch.death": {
"protocol_id": 1559
},
- "minecraft:entity.wolf.whine": {
+ "minecraft:entity.witch.drink": {
"protocol_id": 1560
},
- "minecraft:entity.zoglin.ambient": {
+ "minecraft:entity.witch.hurt": {
+ "protocol_id": 1561
+ },
+ "minecraft:entity.witch.throw": {
+ "protocol_id": 1562
+ },
+ "minecraft:entity.wither.ambient": {
+ "protocol_id": 1563
+ },
+ "minecraft:entity.wither.break_block": {
+ "protocol_id": 1564
+ },
+ "minecraft:entity.wither.death": {
+ "protocol_id": 1565
+ },
+ "minecraft:entity.wither.hurt": {
+ "protocol_id": 1566
+ },
+ "minecraft:entity.wither.shoot": {
+ "protocol_id": 1567
+ },
+ "minecraft:entity.wither.spawn": {
+ "protocol_id": 1572
+ },
+ "minecraft:entity.wither_skeleton.ambient": {
+ "protocol_id": 1568
+ },
+ "minecraft:entity.wither_skeleton.death": {
+ "protocol_id": 1569
+ },
+ "minecraft:entity.wither_skeleton.hurt": {
+ "protocol_id": 1570
+ },
+ "minecraft:entity.wither_skeleton.step": {
+ "protocol_id": 1571
+ },
+ "minecraft:entity.wolf.ambient": {
+ "protocol_id": 1577
+ },
+ "minecraft:entity.wolf.death": {
+ "protocol_id": 1578
+ },
+ "minecraft:entity.wolf.growl": {
"protocol_id": 1579
},
- "minecraft:entity.zoglin.angry": {
+ "minecraft:entity.wolf.howl": {
"protocol_id": 1580
},
- "minecraft:entity.zoglin.attack": {
+ "minecraft:entity.wolf.hurt": {
"protocol_id": 1581
},
- "minecraft:entity.zoglin.death": {
+ "minecraft:entity.wolf.pant": {
"protocol_id": 1582
},
- "minecraft:entity.zoglin.hurt": {
+ "minecraft:entity.wolf.shake": {
"protocol_id": 1583
},
- "minecraft:entity.zoglin.step": {
+ "minecraft:entity.wolf.step": {
"protocol_id": 1584
},
- "minecraft:entity.zombie.ambient": {
+ "minecraft:entity.wolf.whine": {
"protocol_id": 1585
},
- "minecraft:entity.zombie.attack_iron_door": {
- "protocol_id": 1587
- },
- "minecraft:entity.zombie.attack_wooden_door": {
- "protocol_id": 1586
- },
- "minecraft:entity.zombie.break_wooden_door": {
- "protocol_id": 1588
- },
- "minecraft:entity.zombie.converted_to_drowned": {
- "protocol_id": 1589
- },
- "minecraft:entity.zombie.death": {
- "protocol_id": 1590
- },
- "minecraft:entity.zombie.destroy_egg": {
- "protocol_id": 1591
- },
- "minecraft:entity.zombie.hurt": {
- "protocol_id": 1595
- },
- "minecraft:entity.zombie.infect": {
- "protocol_id": 1596
- },
- "minecraft:entity.zombie.step": {
- "protocol_id": 1601
- },
- "minecraft:entity.zombie_horse.ambient": {
- "protocol_id": 1592
- },
- "minecraft:entity.zombie_horse.death": {
- "protocol_id": 1593
- },
- "minecraft:entity.zombie_horse.hurt": {
- "protocol_id": 1594
- },
- "minecraft:entity.zombie_villager.ambient": {
- "protocol_id": 1602
- },
- "minecraft:entity.zombie_villager.converted": {
- "protocol_id": 1603
- },
- "minecraft:entity.zombie_villager.cure": {
+ "minecraft:entity.zoglin.ambient": {
"protocol_id": 1604
},
- "minecraft:entity.zombie_villager.death": {
+ "minecraft:entity.zoglin.angry": {
"protocol_id": 1605
},
- "minecraft:entity.zombie_villager.hurt": {
+ "minecraft:entity.zoglin.attack": {
"protocol_id": 1606
},
- "minecraft:entity.zombie_villager.step": {
+ "minecraft:entity.zoglin.death": {
"protocol_id": 1607
},
- "minecraft:entity.zombified_piglin.ambient": {
- "protocol_id": 1597
- },
- "minecraft:entity.zombified_piglin.angry": {
- "protocol_id": 1598
- },
- "minecraft:entity.zombified_piglin.death": {
- "protocol_id": 1599
- },
- "minecraft:entity.zombified_piglin.hurt": {
- "protocol_id": 1600
- },
- "minecraft:event.mob_effect.bad_omen": {
+ "minecraft:entity.zoglin.hurt": {
"protocol_id": 1608
},
- "minecraft:event.mob_effect.raid_omen": {
- "protocol_id": 1610
- },
- "minecraft:event.mob_effect.trial_omen": {
+ "minecraft:entity.zoglin.step": {
"protocol_id": 1609
},
+ "minecraft:entity.zombie.ambient": {
+ "protocol_id": 1610
+ },
+ "minecraft:entity.zombie.attack_iron_door": {
+ "protocol_id": 1612
+ },
+ "minecraft:entity.zombie.attack_wooden_door": {
+ "protocol_id": 1611
+ },
+ "minecraft:entity.zombie.break_wooden_door": {
+ "protocol_id": 1613
+ },
+ "minecraft:entity.zombie.converted_to_drowned": {
+ "protocol_id": 1614
+ },
+ "minecraft:entity.zombie.death": {
+ "protocol_id": 1615
+ },
+ "minecraft:entity.zombie.destroy_egg": {
+ "protocol_id": 1616
+ },
+ "minecraft:entity.zombie.hurt": {
+ "protocol_id": 1620
+ },
+ "minecraft:entity.zombie.infect": {
+ "protocol_id": 1621
+ },
+ "minecraft:entity.zombie.step": {
+ "protocol_id": 1626
+ },
+ "minecraft:entity.zombie_horse.ambient": {
+ "protocol_id": 1617
+ },
+ "minecraft:entity.zombie_horse.death": {
+ "protocol_id": 1618
+ },
+ "minecraft:entity.zombie_horse.hurt": {
+ "protocol_id": 1619
+ },
+ "minecraft:entity.zombie_villager.ambient": {
+ "protocol_id": 1627
+ },
+ "minecraft:entity.zombie_villager.converted": {
+ "protocol_id": 1628
+ },
+ "minecraft:entity.zombie_villager.cure": {
+ "protocol_id": 1629
+ },
+ "minecraft:entity.zombie_villager.death": {
+ "protocol_id": 1630
+ },
+ "minecraft:entity.zombie_villager.hurt": {
+ "protocol_id": 1631
+ },
+ "minecraft:entity.zombie_villager.step": {
+ "protocol_id": 1632
+ },
+ "minecraft:entity.zombified_piglin.ambient": {
+ "protocol_id": 1622
+ },
+ "minecraft:entity.zombified_piglin.angry": {
+ "protocol_id": 1623
+ },
+ "minecraft:entity.zombified_piglin.death": {
+ "protocol_id": 1624
+ },
+ "minecraft:entity.zombified_piglin.hurt": {
+ "protocol_id": 1625
+ },
+ "minecraft:event.mob_effect.bad_omen": {
+ "protocol_id": 1633
+ },
+ "minecraft:event.mob_effect.raid_omen": {
+ "protocol_id": 1635
+ },
+ "minecraft:event.mob_effect.trial_omen": {
+ "protocol_id": 1634
+ },
"minecraft:event.raid.horn": {
- "protocol_id": 1152
+ "protocol_id": 1172
},
"minecraft:intentionally_empty": {
- "protocol_id": 940
+ "protocol_id": 958
},
"minecraft:item.armor.equip_chain": {
"protocol_id": 67
@@ -16310,391 +16743,394 @@
"protocol_id": 203
},
"minecraft:item.bucket.empty": {
- "protocol_id": 210
- },
- "minecraft:item.bucket.empty_axolotl": {
"protocol_id": 211
},
- "minecraft:item.bucket.empty_fish": {
+ "minecraft:item.bucket.empty_axolotl": {
"protocol_id": 212
},
- "minecraft:item.bucket.empty_lava": {
+ "minecraft:item.bucket.empty_fish": {
"protocol_id": 213
},
- "minecraft:item.bucket.empty_powder_snow": {
+ "minecraft:item.bucket.empty_lava": {
"protocol_id": 214
},
- "minecraft:item.bucket.empty_tadpole": {
+ "minecraft:item.bucket.empty_powder_snow": {
"protocol_id": 215
},
- "minecraft:item.bucket.fill": {
+ "minecraft:item.bucket.empty_tadpole": {
"protocol_id": 216
},
- "minecraft:item.bucket.fill_axolotl": {
+ "minecraft:item.bucket.fill": {
"protocol_id": 217
},
- "minecraft:item.bucket.fill_fish": {
+ "minecraft:item.bucket.fill_axolotl": {
"protocol_id": 218
},
- "minecraft:item.bucket.fill_lava": {
+ "minecraft:item.bucket.fill_fish": {
"protocol_id": 219
},
- "minecraft:item.bucket.fill_powder_snow": {
+ "minecraft:item.bucket.fill_lava": {
"protocol_id": 220
},
- "minecraft:item.bucket.fill_tadpole": {
+ "minecraft:item.bucket.fill_powder_snow": {
"protocol_id": 221
},
- "minecraft:item.bundle.drop_contents": {
+ "minecraft:item.bucket.fill_tadpole": {
"protocol_id": 222
},
- "minecraft:item.bundle.insert": {
+ "minecraft:item.bundle.drop_contents": {
"protocol_id": 223
},
- "minecraft:item.bundle.remove_one": {
+ "minecraft:item.bundle.insert": {
"protocol_id": 224
},
+ "minecraft:item.bundle.insert_fail": {
+ "protocol_id": 225
+ },
+ "minecraft:item.bundle.remove_one": {
+ "protocol_id": 226
+ },
"minecraft:item.chorus_fruit.teleport": {
- "protocol_id": 319
+ "protocol_id": 321
},
"minecraft:item.crop.plant": {
- "protocol_id": 376
+ "protocol_id": 396
},
"minecraft:item.crossbow.hit": {
- "protocol_id": 377
+ "protocol_id": 397
},
"minecraft:item.crossbow.loading_end": {
- "protocol_id": 378
+ "protocol_id": 398
},
"minecraft:item.crossbow.loading_middle": {
- "protocol_id": 379
+ "protocol_id": 399
},
"minecraft:item.crossbow.loading_start": {
- "protocol_id": 380
+ "protocol_id": 400
},
"minecraft:item.crossbow.quick_charge_1": {
- "protocol_id": 381
+ "protocol_id": 401
},
"minecraft:item.crossbow.quick_charge_2": {
- "protocol_id": 382
+ "protocol_id": 402
},
"minecraft:item.crossbow.quick_charge_3": {
- "protocol_id": 383
+ "protocol_id": 403
},
"minecraft:item.crossbow.shoot": {
- "protocol_id": 384
+ "protocol_id": 404
},
"minecraft:item.dye.use": {
- "protocol_id": 454
+ "protocol_id": 474
},
"minecraft:item.elytra.flying": {
- "protocol_id": 464
+ "protocol_id": 484
},
"minecraft:item.firecharge.use": {
- "protocol_id": 504
+ "protocol_id": 524
},
"minecraft:item.flintandsteel.use": {
- "protocol_id": 519
+ "protocol_id": 539
},
"minecraft:item.glow_ink_sac.use": {
- "protocol_id": 598
- },
- "minecraft:item.goat_horn.play": {
- "protocol_id": 617
+ "protocol_id": 618
},
"minecraft:item.goat_horn.sound.0": {
- "protocol_id": 706
+ "protocol_id": 724
},
"minecraft:item.goat_horn.sound.1": {
- "protocol_id": 707
+ "protocol_id": 725
},
"minecraft:item.goat_horn.sound.2": {
- "protocol_id": 708
+ "protocol_id": 726
},
"minecraft:item.goat_horn.sound.3": {
- "protocol_id": 709
+ "protocol_id": 727
},
"minecraft:item.goat_horn.sound.4": {
- "protocol_id": 710
+ "protocol_id": 728
},
"minecraft:item.goat_horn.sound.5": {
- "protocol_id": 711
+ "protocol_id": 729
},
"minecraft:item.goat_horn.sound.6": {
- "protocol_id": 712
+ "protocol_id": 730
},
"minecraft:item.goat_horn.sound.7": {
- "protocol_id": 713
+ "protocol_id": 731
},
"minecraft:item.hoe.till": {
- "protocol_id": 689
+ "protocol_id": 707
},
"minecraft:item.honey_bottle.drink": {
- "protocol_id": 705
+ "protocol_id": 723
},
"minecraft:item.honeycomb.wax_on": {
- "protocol_id": 704
+ "protocol_id": 722
},
"minecraft:item.ink_sac.use": {
- "protocol_id": 745
+ "protocol_id": 763
},
"minecraft:item.lodestone_compass.lock": {
- "protocol_id": 799
+ "protocol_id": 817
},
"minecraft:item.mace.smash_air": {
- "protocol_id": 800
+ "protocol_id": 818
},
"minecraft:item.mace.smash_ground": {
- "protocol_id": 801
+ "protocol_id": 819
},
"minecraft:item.mace.smash_ground_heavy": {
- "protocol_id": 802
+ "protocol_id": 820
},
"minecraft:item.nether_wart.plant": {
- "protocol_id": 924
+ "protocol_id": 942
},
"minecraft:item.ominous_bottle.dispose": {
- "protocol_id": 1011
+ "protocol_id": 1029
},
"minecraft:item.shield.block": {
- "protocol_id": 1231
+ "protocol_id": 1251
},
"minecraft:item.shield.break": {
- "protocol_id": 1232
+ "protocol_id": 1252
},
"minecraft:item.shovel.flatten": {
- "protocol_id": 1238
+ "protocol_id": 1258
},
"minecraft:item.spyglass.stop_using": {
- "protocol_id": 1356
+ "protocol_id": 1381
},
"minecraft:item.spyglass.use": {
- "protocol_id": 1355
+ "protocol_id": 1380
},
"minecraft:item.totem.use": {
- "protocol_id": 1383
+ "protocol_id": 1408
},
"minecraft:item.trident.hit": {
- "protocol_id": 1384
+ "protocol_id": 1409
},
"minecraft:item.trident.hit_ground": {
- "protocol_id": 1385
+ "protocol_id": 1410
},
"minecraft:item.trident.return": {
- "protocol_id": 1386
+ "protocol_id": 1411
},
"minecraft:item.trident.riptide_1": {
- "protocol_id": 1387
+ "protocol_id": 1412
},
"minecraft:item.trident.riptide_2": {
- "protocol_id": 1388
+ "protocol_id": 1413
},
"minecraft:item.trident.riptide_3": {
- "protocol_id": 1389
+ "protocol_id": 1414
},
"minecraft:item.trident.throw": {
- "protocol_id": 1390
+ "protocol_id": 1415
},
"minecraft:item.trident.thunder": {
- "protocol_id": 1391
+ "protocol_id": 1416
},
"minecraft:item.wolf_armor.break": {
- "protocol_id": 1548
+ "protocol_id": 1573
},
"minecraft:item.wolf_armor.crack": {
- "protocol_id": 1549
+ "protocol_id": 1574
},
"minecraft:item.wolf_armor.damage": {
- "protocol_id": 1550
+ "protocol_id": 1575
},
"minecraft:item.wolf_armor.repair": {
- "protocol_id": 1551
+ "protocol_id": 1576
},
"minecraft:music.creative": {
- "protocol_id": 868
- },
- "minecraft:music.credits": {
- "protocol_id": 869
- },
- "minecraft:music.dragon": {
- "protocol_id": 889
- },
- "minecraft:music.end": {
- "protocol_id": 890
- },
- "minecraft:music.game": {
- "protocol_id": 891
- },
- "minecraft:music.menu": {
- "protocol_id": 892
- },
- "minecraft:music.nether.basalt_deltas": {
- "protocol_id": 893
- },
- "minecraft:music.nether.crimson_forest": {
- "protocol_id": 894
- },
- "minecraft:music.nether.nether_wastes": {
- "protocol_id": 905
- },
- "minecraft:music.nether.soul_sand_valley": {
- "protocol_id": 908
- },
- "minecraft:music.nether.warped_forest": {
- "protocol_id": 910
- },
- "minecraft:music.overworld.badlands": {
- "protocol_id": 913
- },
- "minecraft:music.overworld.bamboo_jungle": {
- "protocol_id": 916
- },
- "minecraft:music.overworld.cherry_grove": {
- "protocol_id": 904
- },
- "minecraft:music.overworld.deep_dark": {
- "protocol_id": 895
- },
- "minecraft:music.overworld.desert": {
- "protocol_id": 912
- },
- "minecraft:music.overworld.dripstone_caves": {
- "protocol_id": 896
- },
- "minecraft:music.overworld.flower_forest": {
- "protocol_id": 911
- },
- "minecraft:music.overworld.forest": {
- "protocol_id": 901
- },
- "minecraft:music.overworld.frozen_peaks": {
- "protocol_id": 906
- },
- "minecraft:music.overworld.grove": {
- "protocol_id": 897
- },
- "minecraft:music.overworld.jagged_peaks": {
- "protocol_id": 898
- },
- "minecraft:music.overworld.jungle": {
- "protocol_id": 914
- },
- "minecraft:music.overworld.lush_caves": {
- "protocol_id": 899
- },
- "minecraft:music.overworld.meadow": {
- "protocol_id": 903
- },
- "minecraft:music.overworld.old_growth_taiga": {
- "protocol_id": 902
- },
- "minecraft:music.overworld.snowy_slopes": {
- "protocol_id": 907
- },
- "minecraft:music.overworld.sparse_jungle": {
- "protocol_id": 915
- },
- "minecraft:music.overworld.stony_peaks": {
- "protocol_id": 909
- },
- "minecraft:music.overworld.swamp": {
- "protocol_id": 900
- },
- "minecraft:music.under_water": {
- "protocol_id": 917
- },
- "minecraft:music_disc.11": {
- "protocol_id": 871
- },
- "minecraft:music_disc.13": {
- "protocol_id": 872
- },
- "minecraft:music_disc.5": {
- "protocol_id": 870
- },
- "minecraft:music_disc.blocks": {
- "protocol_id": 873
- },
- "minecraft:music_disc.cat": {
- "protocol_id": 874
- },
- "minecraft:music_disc.chirp": {
- "protocol_id": 875
- },
- "minecraft:music_disc.creator": {
"protocol_id": 886
},
- "minecraft:music_disc.creator_music_box": {
+ "minecraft:music.credits": {
"protocol_id": 887
},
- "minecraft:music_disc.far": {
- "protocol_id": 876
+ "minecraft:music.dragon": {
+ "protocol_id": 907
},
- "minecraft:music_disc.mall": {
- "protocol_id": 877
+ "minecraft:music.end": {
+ "protocol_id": 908
},
- "minecraft:music_disc.mellohi": {
- "protocol_id": 878
+ "minecraft:music.game": {
+ "protocol_id": 909
},
- "minecraft:music_disc.otherside": {
- "protocol_id": 884
+ "minecraft:music.menu": {
+ "protocol_id": 910
},
- "minecraft:music_disc.pigstep": {
- "protocol_id": 879
+ "minecraft:music.nether.basalt_deltas": {
+ "protocol_id": 911
},
- "minecraft:music_disc.precipice": {
+ "minecraft:music.nether.crimson_forest": {
+ "protocol_id": 912
+ },
+ "minecraft:music.nether.nether_wastes": {
+ "protocol_id": 923
+ },
+ "minecraft:music.nether.soul_sand_valley": {
+ "protocol_id": 926
+ },
+ "minecraft:music.nether.warped_forest": {
+ "protocol_id": 928
+ },
+ "minecraft:music.overworld.badlands": {
+ "protocol_id": 931
+ },
+ "minecraft:music.overworld.bamboo_jungle": {
+ "protocol_id": 934
+ },
+ "minecraft:music.overworld.cherry_grove": {
+ "protocol_id": 922
+ },
+ "minecraft:music.overworld.deep_dark": {
+ "protocol_id": 913
+ },
+ "minecraft:music.overworld.desert": {
+ "protocol_id": 930
+ },
+ "minecraft:music.overworld.dripstone_caves": {
+ "protocol_id": 914
+ },
+ "minecraft:music.overworld.flower_forest": {
+ "protocol_id": 929
+ },
+ "minecraft:music.overworld.forest": {
+ "protocol_id": 919
+ },
+ "minecraft:music.overworld.frozen_peaks": {
+ "protocol_id": 924
+ },
+ "minecraft:music.overworld.grove": {
+ "protocol_id": 915
+ },
+ "minecraft:music.overworld.jagged_peaks": {
+ "protocol_id": 916
+ },
+ "minecraft:music.overworld.jungle": {
+ "protocol_id": 932
+ },
+ "minecraft:music.overworld.lush_caves": {
+ "protocol_id": 917
+ },
+ "minecraft:music.overworld.meadow": {
+ "protocol_id": 921
+ },
+ "minecraft:music.overworld.old_growth_taiga": {
+ "protocol_id": 920
+ },
+ "minecraft:music.overworld.snowy_slopes": {
+ "protocol_id": 925
+ },
+ "minecraft:music.overworld.sparse_jungle": {
+ "protocol_id": 933
+ },
+ "minecraft:music.overworld.stony_peaks": {
+ "protocol_id": 927
+ },
+ "minecraft:music.overworld.swamp": {
+ "protocol_id": 918
+ },
+ "minecraft:music.under_water": {
+ "protocol_id": 935
+ },
+ "minecraft:music_disc.11": {
+ "protocol_id": 889
+ },
+ "minecraft:music_disc.13": {
+ "protocol_id": 890
+ },
+ "minecraft:music_disc.5": {
"protocol_id": 888
},
+ "minecraft:music_disc.blocks": {
+ "protocol_id": 891
+ },
+ "minecraft:music_disc.cat": {
+ "protocol_id": 892
+ },
+ "minecraft:music_disc.chirp": {
+ "protocol_id": 893
+ },
+ "minecraft:music_disc.creator": {
+ "protocol_id": 904
+ },
+ "minecraft:music_disc.creator_music_box": {
+ "protocol_id": 905
+ },
+ "minecraft:music_disc.far": {
+ "protocol_id": 894
+ },
+ "minecraft:music_disc.mall": {
+ "protocol_id": 895
+ },
+ "minecraft:music_disc.mellohi": {
+ "protocol_id": 896
+ },
+ "minecraft:music_disc.otherside": {
+ "protocol_id": 902
+ },
+ "minecraft:music_disc.pigstep": {
+ "protocol_id": 897
+ },
+ "minecraft:music_disc.precipice": {
+ "protocol_id": 906
+ },
"minecraft:music_disc.relic": {
- "protocol_id": 885
+ "protocol_id": 903
},
"minecraft:music_disc.stal": {
- "protocol_id": 880
+ "protocol_id": 898
},
"minecraft:music_disc.strad": {
- "protocol_id": 881
+ "protocol_id": 899
},
"minecraft:music_disc.wait": {
- "protocol_id": 882
+ "protocol_id": 900
},
"minecraft:music_disc.ward": {
- "protocol_id": 883
+ "protocol_id": 901
},
"minecraft:particle.soul_escape": {
- "protocol_id": 1296
+ "protocol_id": 1316
},
"minecraft:ui.button.click": {
- "protocol_id": 1427
+ "protocol_id": 1452
},
"minecraft:ui.cartography_table.take_result": {
- "protocol_id": 1430
+ "protocol_id": 1455
+ },
+ "minecraft:ui.hud.bubble_pop": {
+ "protocol_id": 210
},
"minecraft:ui.loom.select_pattern": {
- "protocol_id": 1428
+ "protocol_id": 1453
},
"minecraft:ui.loom.take_result": {
- "protocol_id": 1429
+ "protocol_id": 1454
},
"minecraft:ui.stonecutter.select_recipe": {
- "protocol_id": 1432
+ "protocol_id": 1457
},
"minecraft:ui.stonecutter.take_result": {
- "protocol_id": 1431
+ "protocol_id": 1456
},
"minecraft:ui.toast.challenge_complete": {
- "protocol_id": 1433
+ "protocol_id": 1458
},
"minecraft:ui.toast.in": {
- "protocol_id": 1434
+ "protocol_id": 1459
},
"minecraft:ui.toast.out": {
- "protocol_id": 1435
+ "protocol_id": 1460
},
"minecraft:weather.rain": {
- "protocol_id": 1517
+ "protocol_id": 1542
},
"minecraft:weather.rain.above": {
- "protocol_id": 1518
+ "protocol_id": 1543
}
},
"protocol_id": 1
@@ -16817,7 +17253,7 @@
"minecraft:kill_mob_near_sculk_catalyst": {
"protocol_id": 50
},
- "minecraft:killed_by_crossbow": {
+ "minecraft:killed_by_arrow": {
"protocol_id": 32
},
"minecraft:levitation": {
@@ -16902,7 +17338,7 @@
"protocol_id": 34
}
},
- "protocol_id": 65
+ "protocol_id": 64
},
"minecraft:villager_profession": {
"default": "minecraft:none",
@@ -17457,9 +17893,6 @@
"minecraft:block_predicate_filter": {
"protocol_id": 0
},
- "minecraft:carving_mask": {
- "protocol_id": 14
- },
"minecraft:count": {
"protocol_id": 5
},
@@ -17470,7 +17903,7 @@
"protocol_id": 9
},
"minecraft:fixed_placement": {
- "protocol_id": 15
+ "protocol_id": 14
},
"minecraft:height_range": {
"protocol_id": 11
@@ -17822,20 +18255,26 @@
"minecraft:worldgen/tree_decorator_type": {
"entries": {
"minecraft:alter_ground": {
- "protocol_id": 4
+ "protocol_id": 6
},
"minecraft:attached_to_leaves": {
- "protocol_id": 5
+ "protocol_id": 7
},
"minecraft:beehive": {
- "protocol_id": 3
+ "protocol_id": 5
},
"minecraft:cocoa": {
- "protocol_id": 2
+ "protocol_id": 4
+ },
+ "minecraft:creaking_heart": {
+ "protocol_id": 3
},
"minecraft:leave_vine": {
"protocol_id": 1
},
+ "minecraft:pale_moss": {
+ "protocol_id": 2
+ },
"minecraft:trunk_vine": {
"protocol_id": 0
}