diff --git a/pom.xml b/pom.xml index 24e0194..94c84c7 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ com.loohp Limbo Limbo - 2026.0.1-ALPHA + 2026.0.2-ALPHA Standalone Limbo Minecraft Server. https://github.com/LOOHP/Limbo @@ -136,7 +136,7 @@ - ${project.artifactId}-${project.version}-26.1.2 + ${project.artifactId}-${project.version}-26.2 diff --git a/src/main/java/com/loohp/limbo/Limbo.java b/src/main/java/com/loohp/limbo/Limbo.java index 4affdd4..0bfe4be 100644 --- a/src/main/java/com/loohp/limbo/Limbo.java +++ b/src/main/java/com/loohp/limbo/Limbo.java @@ -132,8 +132,9 @@ public final class Limbo { //=========================== - public final String SERVER_IMPLEMENTATION_VERSION = "26.1.2"; - public final int SERVER_IMPLEMENTATION_PROTOCOL = 775; + public final String SERVER_IMPLEMENTATION_VERSION = "26.2"; + public final int SERVER_IMPLEMENTATION_PROTOCOL = 776; + public final UUID SERVER_SESSION_ID = UUID.randomUUID(); public final String LIMBO_IMPLEMENTATION_VERSION; private final AtomicBoolean isRunning; @@ -487,7 +488,7 @@ public final class Limbo { } public int getNextEntityId() { - return entityIdCount.getAndUpdate(i -> i == Integer.MAX_VALUE ? 0 : ++i); + return entityIdCount.updateAndGet(i -> i == Integer.MAX_VALUE ? 1 : i + 1); } public void dispatchCommand(CommandSender sender, String str) { diff --git a/src/main/java/com/loohp/limbo/network/ClientConnection.java b/src/main/java/com/loohp/limbo/network/ClientConnection.java index af3e5cb..8f71857 100644 --- a/src/main/java/com/loohp/limbo/network/ClientConnection.java +++ b/src/main/java/com/loohp/limbo/network/ClientConnection.java @@ -518,7 +518,7 @@ public class ClientConnection implements Runnable { break; } - PacketLoginOutLoginSuccess success = new PacketLoginOutLoginSuccess(uuid, username); + PacketLoginOutLoginSuccess success = new PacketLoginOutLoginSuccess(uuid, username, Limbo.getInstance().SERVER_SESSION_ID); sendPacket(success); player = new Player(this, username, uuid, Limbo.getInstance().getNextEntityId(), Limbo.getInstance().getServerProperties().getWorldSpawn(), new PlayerInteractManager()); @@ -542,7 +542,7 @@ public class ClientConnection implements Runnable { inetAddress = InetAddress.getByName(data.getIpAddress()); forwardedSkin = data.getSkinResponse(); - PacketLoginOutLoginSuccess success = new PacketLoginOutLoginSuccess(data.getUuid(), data.getUsername()); + PacketLoginOutLoginSuccess success = new PacketLoginOutLoginSuccess(data.getUuid(), data.getUsername(), Limbo.getInstance().SERVER_SESSION_ID); sendPacket(success); player = new Player(this, data.getUsername(), data.getUuid(), Limbo.getInstance().getNextEntityId(), Limbo.getInstance().getServerProperties().getWorldSpawn(), new PlayerInteractManager()); @@ -595,7 +595,7 @@ public class ClientConnection implements Runnable { 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, 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, false); sendPacket(join); Limbo.getInstance().getUnsafe().a(player, properties.getDefaultGamemode()); diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundUpdateTagsPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundUpdateTagsPacket.java index 420a3a2..f3a005c 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundUpdateTagsPacket.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundUpdateTagsPacket.java @@ -51,8 +51,15 @@ public class ClientboundUpdateTagsPacket extends PacketOut { DataOutputStream output = new DataOutputStream(buffer); output.writeByte(PacketRegistry.getPacketId(getClass())); - DataTypeIO.writeVarInt(output, registries.size()); + List registriesWithTags = new ArrayList<>(); for (RegistryCustom registry : registries) { + if (!registry.getTags().isEmpty()) { + registriesWithTags.add(registry); + } + } + + DataTypeIO.writeVarInt(output, registriesWithTags.size()); + for (RegistryCustom registry : registriesWithTags) { DataTypeIO.writeString(output, registry.getIdentifier().asString(), StandardCharsets.UTF_8); DataTypeIO.writeVarInt(output, registry.getTags().size()); for (Map.Entry> entry : registry.getTags().entrySet()) { 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 e54a024..1a2f8a1 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,10 +32,12 @@ public class PacketLoginOutLoginSuccess extends PacketOut { private final UUID uuid; private final String username; + private final UUID sessionId; - public PacketLoginOutLoginSuccess(UUID uuid, String username) { + public PacketLoginOutLoginSuccess(UUID uuid, String username, UUID sessionId) { this.uuid = uuid; this.username = username; + this.sessionId = sessionId; } public UUID getUuid() { @@ -46,6 +48,10 @@ public class PacketLoginOutLoginSuccess extends PacketOut { return username; } + public UUID getSessionId() { + return sessionId; + } + @Override public byte[] serializePacket() throws IOException { ByteArrayOutputStream buffer = new ByteArrayOutputStream(); @@ -55,6 +61,7 @@ public class PacketLoginOutLoginSuccess extends PacketOut { DataTypeIO.writeUUID(output, uuid); DataTypeIO.writeString(output, username, StandardCharsets.UTF_8); DataTypeIO.writeVarInt(output, 0); + DataTypeIO.writeUUID(output, sessionId); 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 a365d91..0bda46b 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 @@ -52,9 +52,10 @@ public class PacketPlayOutLogin extends PacketOut { private final boolean isFlat; private final int portalCooldown; private final int seaLevel; + private final boolean onlineMode; 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, int seaLevel, 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 onlineMode, boolean enforcesSecureChat) { this.entityId = entityId; this.isHardcore = isHardcore; this.worlds = worlds; @@ -72,6 +73,7 @@ public class PacketPlayOutLogin extends PacketOut { this.isFlat = isFlat; this.portalCooldown = portalCooldown; this.seaLevel = seaLevel; + this.onlineMode = onlineMode; this.enforcesSecureChat = enforcesSecureChat; } @@ -143,6 +145,10 @@ public class PacketPlayOutLogin extends PacketOut { return seaLevel; } + public boolean isOnlineMode() { + return onlineMode; + } + public boolean isEnforcesSecureChat() { return enforcesSecureChat; } @@ -175,6 +181,7 @@ public class PacketPlayOutLogin extends PacketOut { output.writeBoolean(false); DataTypeIO.writeVarInt(output, portalCooldown); DataTypeIO.writeVarInt(output, seaLevel); + output.writeBoolean(onlineMode); output.writeBoolean(enforcesSecureChat); return buffer.toByteArray(); diff --git a/src/main/java/com/loohp/limbo/registry/RegistryCustom.java b/src/main/java/com/loohp/limbo/registry/RegistryCustom.java index 927e20b..a7ac9cf 100644 --- a/src/main/java/com/loohp/limbo/registry/RegistryCustom.java +++ b/src/main/java/com/loohp/limbo/registry/RegistryCustom.java @@ -131,7 +131,7 @@ public class RegistryCustom { for (String path : ClasspathResourcesUtils.getResources(pattern)) { if (path.endsWith(".json")) { try (InputStream inputStream = Limbo.class.getClassLoader().getResourceAsStream(path)) { - Key entryKey = Key.key(identifier.namespace(), path.substring(path.indexOf(identifier.value()) + identifier.value().length() + 1, path.lastIndexOf("."))); + Key entryKey = Key.key(identifier.namespace(), path.substring(pathStart.length(), path.lastIndexOf("."))); JSONObject jsonObject = (JSONObject) new JSONParser().parse(new InputStreamReader(inputStream, StandardCharsets.UTF_8)); JSONArray valuesArray = (JSONArray) jsonObject.get("values"); List values = new ArrayList<>(); diff --git a/src/main/resources/data/minecraft/cat_variant/all_black.json b/src/main/resources/data/minecraft/cat_variant/all_black.json index 07453da..52673dc 100644 --- a/src/main/resources/data/minecraft/cat_variant/all_black.json +++ b/src/main/resources/data/minecraft/cat_variant/all_black.json @@ -5,7 +5,9 @@ { "condition": { "type": "minecraft:structure", - "structures": "#minecraft:cats_spawn_as_black" + "structures": [ + "minecraft:swamp_hut" + ] }, "priority": 1 }, @@ -19,4 +21,4 @@ "priority": 0 } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/minecraft/chicken_variant/cold.json b/src/main/resources/data/minecraft/chicken_variant/cold.json index 883832a..5f63b51 100644 --- a/src/main/resources/data/minecraft/chicken_variant/cold.json +++ b/src/main/resources/data/minecraft/chicken_variant/cold.json @@ -6,9 +6,36 @@ { "condition": { "type": "minecraft:biome", - "biomes": "#minecraft:spawns_cold_variant_farm_animals" + "biomes": [ + "minecraft:snowy_plains", + "minecraft:ice_spikes", + "minecraft:frozen_peaks", + "minecraft:jagged_peaks", + "minecraft:snowy_slopes", + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean", + "minecraft:grove", + "minecraft:deep_dark", + "minecraft:frozen_river", + "minecraft:snowy_taiga", + "minecraft:snowy_beach", + "minecraft:the_end", + "minecraft:end_highlands", + "minecraft:end_midlands", + "minecraft:small_end_islands", + "minecraft:end_barrens", + "minecraft:cold_ocean", + "minecraft:deep_cold_ocean", + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga", + "minecraft:taiga", + "minecraft:windswept_forest", + "minecraft:windswept_gravelly_hills", + "minecraft:windswept_hills", + "minecraft:stony_peaks" + ] }, "priority": 1 } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/minecraft/chicken_variant/warm.json b/src/main/resources/data/minecraft/chicken_variant/warm.json index 347b57d..04d144b 100644 --- a/src/main/resources/data/minecraft/chicken_variant/warm.json +++ b/src/main/resources/data/minecraft/chicken_variant/warm.json @@ -5,9 +5,29 @@ { "condition": { "type": "minecraft:biome", - "biomes": "#minecraft:spawns_warm_variant_farm_animals" + "biomes": [ + "minecraft:desert", + "minecraft:warm_ocean", + "minecraft:bamboo_jungle", + "minecraft:jungle", + "minecraft:sparse_jungle", + "minecraft:savanna", + "minecraft:savanna_plateau", + "minecraft:windswept_savanna", + "minecraft:nether_wastes", + "minecraft:soul_sand_valley", + "minecraft:crimson_forest", + "minecraft:warped_forest", + "minecraft:basalt_deltas", + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands", + "minecraft:mangrove_swamp", + "minecraft:deep_lukewarm_ocean", + "minecraft:lukewarm_ocean" + ] }, "priority": 1 } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/minecraft/cow_variant/cold.json b/src/main/resources/data/minecraft/cow_variant/cold.json index 3254eb5..92a5578 100644 --- a/src/main/resources/data/minecraft/cow_variant/cold.json +++ b/src/main/resources/data/minecraft/cow_variant/cold.json @@ -6,9 +6,36 @@ { "condition": { "type": "minecraft:biome", - "biomes": "#minecraft:spawns_cold_variant_farm_animals" + "biomes": [ + "minecraft:snowy_plains", + "minecraft:ice_spikes", + "minecraft:frozen_peaks", + "minecraft:jagged_peaks", + "minecraft:snowy_slopes", + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean", + "minecraft:grove", + "minecraft:deep_dark", + "minecraft:frozen_river", + "minecraft:snowy_taiga", + "minecraft:snowy_beach", + "minecraft:the_end", + "minecraft:end_highlands", + "minecraft:end_midlands", + "minecraft:small_end_islands", + "minecraft:end_barrens", + "minecraft:cold_ocean", + "minecraft:deep_cold_ocean", + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga", + "minecraft:taiga", + "minecraft:windswept_forest", + "minecraft:windswept_gravelly_hills", + "minecraft:windswept_hills", + "minecraft:stony_peaks" + ] }, "priority": 1 } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/minecraft/cow_variant/warm.json b/src/main/resources/data/minecraft/cow_variant/warm.json index 28fa95f..2618465 100644 --- a/src/main/resources/data/minecraft/cow_variant/warm.json +++ b/src/main/resources/data/minecraft/cow_variant/warm.json @@ -6,9 +6,29 @@ { "condition": { "type": "minecraft:biome", - "biomes": "#minecraft:spawns_warm_variant_farm_animals" + "biomes": [ + "minecraft:desert", + "minecraft:warm_ocean", + "minecraft:bamboo_jungle", + "minecraft:jungle", + "minecraft:sparse_jungle", + "minecraft:savanna", + "minecraft:savanna_plateau", + "minecraft:windswept_savanna", + "minecraft:nether_wastes", + "minecraft:soul_sand_valley", + "minecraft:crimson_forest", + "minecraft:warped_forest", + "minecraft:basalt_deltas", + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands", + "minecraft:mangrove_swamp", + "minecraft:deep_lukewarm_ocean", + "minecraft:lukewarm_ocean" + ] }, "priority": 1 } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/minecraft/damage_type/sulfur_cube_hot.json b/src/main/resources/data/minecraft/damage_type/sulfur_cube_hot.json new file mode 100644 index 0000000..61cea73 --- /dev/null +++ b/src/main/resources/data/minecraft/damage_type/sulfur_cube_hot.json @@ -0,0 +1,6 @@ +{ + "effects": "burning", + "exhaustion": 0.1, + "message_id": "sulfurCubeHot", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/dimension_type/overworld.json b/src/main/resources/data/minecraft/dimension_type/overworld.json index 1fa75f4..d2d40eb 100644 --- a/src/main/resources/data/minecraft/dimension_type/overworld.json +++ b/src/main/resources/data/minecraft/dimension_type/overworld.json @@ -41,7 +41,10 @@ "has_ender_dragon_fight": false, "has_skylight": true, "height": 256, - "infiniburn": "#minecraft:infiniburn_overworld", + "infiniburn": [ + "minecraft:netherrack", + "minecraft:magma_block" + ], "logical_height": 256, "min_y": 0, "monster_spawn_block_light_limit": 0, @@ -50,4 +53,4 @@ "max_inclusive": 7, "min_inclusive": 0 } -} \ No newline at end of file +} diff --git a/src/main/resources/data/minecraft/dimension_type/overworld_caves.json b/src/main/resources/data/minecraft/dimension_type/overworld_caves.json index d463662..e804477 100644 --- a/src/main/resources/data/minecraft/dimension_type/overworld_caves.json +++ b/src/main/resources/data/minecraft/dimension_type/overworld_caves.json @@ -41,7 +41,10 @@ "has_ender_dragon_fight": false, "has_skylight": true, "height": 256, - "infiniburn": "#minecraft:infiniburn_overworld", + "infiniburn": [ + "minecraft:netherrack", + "minecraft:magma_block" + ], "logical_height": 256, "min_y": 0, "monster_spawn_block_light_limit": 0, @@ -50,4 +53,4 @@ "max_inclusive": 7, "min_inclusive": 0 } -} \ No newline at end of file +} diff --git a/src/main/resources/data/minecraft/dimension_type/the_end.json b/src/main/resources/data/minecraft/dimension_type/the_end.json index 5db166f..b7690c3 100644 --- a/src/main/resources/data/minecraft/dimension_type/the_end.json +++ b/src/main/resources/data/minecraft/dimension_type/the_end.json @@ -35,10 +35,14 @@ "has_fixed_time": true, "has_skylight": true, "height": 256, - "infiniburn": "#minecraft:infiniburn_end", + "infiniburn": [ + "minecraft:netherrack", + "minecraft:magma_block", + "minecraft:bedrock" + ], "logical_height": 256, "min_y": 0, "monster_spawn_block_light_limit": 0, "monster_spawn_light_level": 15, "skybox": "end" -} \ No newline at end of file +} diff --git a/src/main/resources/data/minecraft/dimension_type/the_nether.json b/src/main/resources/data/minecraft/dimension_type/the_nether.json index 3f242c8..a24d5fb 100644 --- a/src/main/resources/data/minecraft/dimension_type/the_nether.json +++ b/src/main/resources/data/minecraft/dimension_type/the_nether.json @@ -29,10 +29,13 @@ "has_fixed_time": true, "has_skylight": false, "height": 256, - "infiniburn": "#minecraft:infiniburn_nether", + "infiniburn": [ + "minecraft:netherrack", + "minecraft:magma_block" + ], "logical_height": 128, "min_y": 0, "monster_spawn_block_light_limit": 15, "monster_spawn_light_level": 7, "skybox": "none" -} \ No newline at end of file +} diff --git a/src/main/resources/data/minecraft/frog_variant/cold.json b/src/main/resources/data/minecraft/frog_variant/cold.json index 860e01f..48d7348 100644 --- a/src/main/resources/data/minecraft/frog_variant/cold.json +++ b/src/main/resources/data/minecraft/frog_variant/cold.json @@ -4,9 +4,27 @@ { "condition": { "type": "minecraft:biome", - "biomes": "#minecraft:spawns_cold_variant_frogs" + "biomes": [ + "minecraft:snowy_plains", + "minecraft:ice_spikes", + "minecraft:frozen_peaks", + "minecraft:jagged_peaks", + "minecraft:snowy_slopes", + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean", + "minecraft:grove", + "minecraft:deep_dark", + "minecraft:frozen_river", + "minecraft:snowy_taiga", + "minecraft:snowy_beach", + "minecraft:the_end", + "minecraft:end_highlands", + "minecraft:end_midlands", + "minecraft:small_end_islands", + "minecraft:end_barrens" + ] }, "priority": 1 } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/minecraft/frog_variant/warm.json b/src/main/resources/data/minecraft/frog_variant/warm.json index 598e929..119f471 100644 --- a/src/main/resources/data/minecraft/frog_variant/warm.json +++ b/src/main/resources/data/minecraft/frog_variant/warm.json @@ -4,9 +4,27 @@ { "condition": { "type": "minecraft:biome", - "biomes": "#minecraft:spawns_warm_variant_frogs" + "biomes": [ + "minecraft:desert", + "minecraft:warm_ocean", + "minecraft:bamboo_jungle", + "minecraft:jungle", + "minecraft:sparse_jungle", + "minecraft:savanna", + "minecraft:savanna_plateau", + "minecraft:windswept_savanna", + "minecraft:nether_wastes", + "minecraft:soul_sand_valley", + "minecraft:crimson_forest", + "minecraft:warped_forest", + "minecraft:basalt_deltas", + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands", + "minecraft:mangrove_swamp" + ] }, "priority": 1 } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/minecraft/jukebox_song/bounce.json b/src/main/resources/data/minecraft/jukebox_song/bounce.json new file mode 100644 index 0000000..aa115f6 --- /dev/null +++ b/src/main/resources/data/minecraft/jukebox_song/bounce.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 8, + "description": { + "translate": "jukebox_song.minecraft.bounce" + }, + "length_in_seconds": 234.0, + "sound_event": "minecraft:music_disc.bounce" +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/pig_variant/cold.json b/src/main/resources/data/minecraft/pig_variant/cold.json index 3d62fdd..4d9a0f5 100644 --- a/src/main/resources/data/minecraft/pig_variant/cold.json +++ b/src/main/resources/data/minecraft/pig_variant/cold.json @@ -6,9 +6,36 @@ { "condition": { "type": "minecraft:biome", - "biomes": "#minecraft:spawns_cold_variant_farm_animals" + "biomes": [ + "minecraft:snowy_plains", + "minecraft:ice_spikes", + "minecraft:frozen_peaks", + "minecraft:jagged_peaks", + "minecraft:snowy_slopes", + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean", + "minecraft:grove", + "minecraft:deep_dark", + "minecraft:frozen_river", + "minecraft:snowy_taiga", + "minecraft:snowy_beach", + "minecraft:the_end", + "minecraft:end_highlands", + "minecraft:end_midlands", + "minecraft:small_end_islands", + "minecraft:end_barrens", + "minecraft:cold_ocean", + "minecraft:deep_cold_ocean", + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga", + "minecraft:taiga", + "minecraft:windswept_forest", + "minecraft:windswept_gravelly_hills", + "minecraft:windswept_hills", + "minecraft:stony_peaks" + ] }, "priority": 1 } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/minecraft/pig_variant/warm.json b/src/main/resources/data/minecraft/pig_variant/warm.json index 491ec46..2fb9e73 100644 --- a/src/main/resources/data/minecraft/pig_variant/warm.json +++ b/src/main/resources/data/minecraft/pig_variant/warm.json @@ -5,9 +5,29 @@ { "condition": { "type": "minecraft:biome", - "biomes": "#minecraft:spawns_warm_variant_farm_animals" + "biomes": [ + "minecraft:desert", + "minecraft:warm_ocean", + "minecraft:bamboo_jungle", + "minecraft:jungle", + "minecraft:sparse_jungle", + "minecraft:savanna", + "minecraft:savanna_plateau", + "minecraft:windswept_savanna", + "minecraft:nether_wastes", + "minecraft:soul_sand_valley", + "minecraft:crimson_forest", + "minecraft:warped_forest", + "minecraft:basalt_deltas", + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands", + "minecraft:mangrove_swamp", + "minecraft:deep_lukewarm_ocean", + "minecraft:lukewarm_ocean" + ] }, "priority": 1 } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/minecraft/tags/block/acacia_logs.json b/src/main/resources/data/minecraft/tags/block/acacia_logs.json deleted file mode 100644 index 84a0bc4..0000000 --- a/src/main/resources/data/minecraft/tags/block/acacia_logs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:acacia_log", - "minecraft:acacia_wood", - "minecraft:stripped_acacia_log", - "minecraft:stripped_acacia_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/air.json b/src/main/resources/data/minecraft/tags/block/air.json deleted file mode 100644 index fb634b5..0000000 --- a/src/main/resources/data/minecraft/tags/block/air.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:air", - "minecraft:void_air", - "minecraft:cave_air" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/all_hanging_signs.json b/src/main/resources/data/minecraft/tags/block/all_hanging_signs.json deleted file mode 100644 index c77b75c..0000000 --- a/src/main/resources/data/minecraft/tags/block/all_hanging_signs.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:ceiling_hanging_signs", - "#minecraft:wall_hanging_signs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/all_signs.json b/src/main/resources/data/minecraft/tags/block/all_signs.json deleted file mode 100644 index d7987eb..0000000 --- a/src/main/resources/data/minecraft/tags/block/all_signs.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:signs", - "#minecraft:all_hanging_signs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/ancient_city_replaceable.json b/src/main/resources/data/minecraft/tags/block/ancient_city_replaceable.json deleted file mode 100644 index 23e7a6e..0000000 --- a/src/main/resources/data/minecraft/tags/block/ancient_city_replaceable.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:deepslate", - "minecraft:deepslate_bricks", - "minecraft:deepslate_tiles", - "minecraft:deepslate_brick_slab", - "minecraft:deepslate_tile_slab", - "minecraft:deepslate_brick_stairs", - "minecraft:deepslate_tile_wall", - "minecraft:deepslate_brick_wall", - "minecraft:cobbled_deepslate", - "minecraft:cracked_deepslate_bricks", - "minecraft:cracked_deepslate_tiles", - "minecraft:gray_wool" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/animals_spawnable_on.json b/src/main/resources/data/minecraft/tags/block/animals_spawnable_on.json deleted file mode 100644 index ce2108c..0000000 --- a/src/main/resources/data/minecraft/tags/block/animals_spawnable_on.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:grass_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/anvil.json b/src/main/resources/data/minecraft/tags/block/anvil.json deleted file mode 100644 index 84ef65a..0000000 --- a/src/main/resources/data/minecraft/tags/block/anvil.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:anvil", - "minecraft:chipped_anvil", - "minecraft:damaged_anvil" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/armadillo_spawnable_on.json b/src/main/resources/data/minecraft/tags/block/armadillo_spawnable_on.json deleted file mode 100644 index 10d73ff..0000000 --- a/src/main/resources/data/minecraft/tags/block/armadillo_spawnable_on.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "#minecraft:animals_spawnable_on", - "#minecraft:badlands_terracotta", - "minecraft:red_sand", - "minecraft:coarse_dirt" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/axolotls_spawnable_on.json b/src/main/resources/data/minecraft/tags/block/axolotls_spawnable_on.json deleted file mode 100644 index 957a556..0000000 --- a/src/main/resources/data/minecraft/tags/block/axolotls_spawnable_on.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:clay" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/azalea_grows_on.json b/src/main/resources/data/minecraft/tags/block/azalea_grows_on.json deleted file mode 100644 index d892094..0000000 --- a/src/main/resources/data/minecraft/tags/block/azalea_grows_on.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "#minecraft:substrate_overworld", - "#minecraft:sand", - "#minecraft:terracotta", - "minecraft:snow_block", - "minecraft:powder_snow" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/azalea_root_replaceable.json b/src/main/resources/data/minecraft/tags/block/azalea_root_replaceable.json deleted file mode 100644 index bfea95a..0000000 --- a/src/main/resources/data/minecraft/tags/block/azalea_root_replaceable.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "values": [ - "#minecraft:base_stone_overworld", - "#minecraft:substrate_overworld", - "#minecraft:terracotta", - "minecraft:red_sand", - "minecraft:clay", - "minecraft:gravel", - "minecraft:sand", - "minecraft:snow_block", - "minecraft:powder_snow" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/badlands_terracotta.json b/src/main/resources/data/minecraft/tags/block/badlands_terracotta.json deleted file mode 100644 index 095749c..0000000 --- a/src/main/resources/data/minecraft/tags/block/badlands_terracotta.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:terracotta", - "minecraft:white_terracotta", - "minecraft:yellow_terracotta", - "minecraft:orange_terracotta", - "minecraft:red_terracotta", - "minecraft:brown_terracotta", - "minecraft:light_gray_terracotta" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/bamboo_blocks.json b/src/main/resources/data/minecraft/tags/block/bamboo_blocks.json deleted file mode 100644 index 347c0af..0000000 --- a/src/main/resources/data/minecraft/tags/block/bamboo_blocks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:bamboo_block", - "minecraft:stripped_bamboo_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/banners.json b/src/main/resources/data/minecraft/tags/block/banners.json deleted file mode 100644 index 6cab5e0..0000000 --- a/src/main/resources/data/minecraft/tags/block/banners.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "values": [ - "minecraft:white_banner", - "minecraft:orange_banner", - "minecraft:magenta_banner", - "minecraft:light_blue_banner", - "minecraft:yellow_banner", - "minecraft:lime_banner", - "minecraft:pink_banner", - "minecraft:gray_banner", - "minecraft:light_gray_banner", - "minecraft:cyan_banner", - "minecraft:purple_banner", - "minecraft:blue_banner", - "minecraft:brown_banner", - "minecraft:green_banner", - "minecraft:red_banner", - "minecraft:black_banner", - "minecraft:white_wall_banner", - "minecraft:orange_wall_banner", - "minecraft:magenta_wall_banner", - "minecraft:light_blue_wall_banner", - "minecraft:yellow_wall_banner", - "minecraft:lime_wall_banner", - "minecraft:pink_wall_banner", - "minecraft:gray_wall_banner", - "minecraft:light_gray_wall_banner", - "minecraft:cyan_wall_banner", - "minecraft:purple_wall_banner", - "minecraft:blue_wall_banner", - "minecraft:brown_wall_banner", - "minecraft:green_wall_banner", - "minecraft:red_wall_banner", - "minecraft:black_wall_banner" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/bars.json b/src/main/resources/data/minecraft/tags/block/bars.json deleted file mode 100644 index 72d1f40..0000000 --- a/src/main/resources/data/minecraft/tags/block/bars.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "values": [ - "minecraft:iron_bars", - "minecraft:copper_bars", - "minecraft:waxed_copper_bars", - "minecraft:exposed_copper_bars", - "minecraft:waxed_exposed_copper_bars", - "minecraft:weathered_copper_bars", - "minecraft:waxed_weathered_copper_bars", - "minecraft:oxidized_copper_bars", - "minecraft:waxed_oxidized_copper_bars" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/base_stone_nether.json b/src/main/resources/data/minecraft/tags/block/base_stone_nether.json deleted file mode 100644 index 082e785..0000000 --- a/src/main/resources/data/minecraft/tags/block/base_stone_nether.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:netherrack", - "minecraft:basalt", - "minecraft:blackstone" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/base_stone_overworld.json b/src/main/resources/data/minecraft/tags/block/base_stone_overworld.json deleted file mode 100644 index dfa496a..0000000 --- a/src/main/resources/data/minecraft/tags/block/base_stone_overworld.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "minecraft:stone", - "minecraft:granite", - "minecraft:diorite", - "minecraft:andesite", - "minecraft:tuff", - "minecraft:deepslate" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/bats_spawnable_on.json b/src/main/resources/data/minecraft/tags/block/bats_spawnable_on.json deleted file mode 100644 index 511ad97..0000000 --- a/src/main/resources/data/minecraft/tags/block/bats_spawnable_on.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:base_stone_overworld" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/beacon_base_blocks.json b/src/main/resources/data/minecraft/tags/block/beacon_base_blocks.json deleted file mode 100644 index a44cd4a..0000000 --- a/src/main/resources/data/minecraft/tags/block/beacon_base_blocks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "minecraft:netherite_block", - "minecraft:emerald_block", - "minecraft:diamond_block", - "minecraft:gold_block", - "minecraft:iron_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/beds.json b/src/main/resources/data/minecraft/tags/block/beds.json deleted file mode 100644 index 77c2242..0000000 --- a/src/main/resources/data/minecraft/tags/block/beds.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "values": [ - "minecraft:red_bed", - "minecraft:black_bed", - "minecraft:blue_bed", - "minecraft:brown_bed", - "minecraft:cyan_bed", - "minecraft:gray_bed", - "minecraft:green_bed", - "minecraft:light_blue_bed", - "minecraft:light_gray_bed", - "minecraft:lime_bed", - "minecraft:magenta_bed", - "minecraft:orange_bed", - "minecraft:pink_bed", - "minecraft:purple_bed", - "minecraft:white_bed", - "minecraft:yellow_bed" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/bee_attractive.json b/src/main/resources/data/minecraft/tags/block/bee_attractive.json deleted file mode 100644 index f2851d5..0000000 --- a/src/main/resources/data/minecraft/tags/block/bee_attractive.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "values": [ - "minecraft:dandelion", - "minecraft:open_eyeblossom", - "minecraft:poppy", - "minecraft:blue_orchid", - "minecraft:allium", - "minecraft:azure_bluet", - "minecraft:red_tulip", - "minecraft:orange_tulip", - "minecraft:white_tulip", - "minecraft:pink_tulip", - "minecraft:oxeye_daisy", - "minecraft:cornflower", - "minecraft:lily_of_the_valley", - "minecraft:wither_rose", - "minecraft:torchflower", - "minecraft:sunflower", - "minecraft:lilac", - "minecraft:peony", - "minecraft:rose_bush", - "minecraft:pitcher_plant", - "minecraft:flowering_azalea_leaves", - "minecraft:flowering_azalea", - "minecraft:mangrove_propagule", - "minecraft:cherry_leaves", - "minecraft:pink_petals", - "minecraft:wildflowers", - "minecraft:chorus_flower", - "minecraft:spore_blossom", - "minecraft:cactus_flower" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/bee_growables.json b/src/main/resources/data/minecraft/tags/block/bee_growables.json deleted file mode 100644 index 50f6d61..0000000 --- a/src/main/resources/data/minecraft/tags/block/bee_growables.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "#minecraft:crops", - "minecraft:sweet_berry_bush", - "minecraft:cave_vines", - "minecraft:cave_vines_plant" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/beehives.json b/src/main/resources/data/minecraft/tags/block/beehives.json deleted file mode 100644 index 434e455..0000000 --- a/src/main/resources/data/minecraft/tags/block/beehives.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:bee_nest", - "minecraft:beehive" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/beneath_bamboo_podzol_replaceable.json b/src/main/resources/data/minecraft/tags/block/beneath_bamboo_podzol_replaceable.json deleted file mode 100644 index bcb6a3d..0000000 --- a/src/main/resources/data/minecraft/tags/block/beneath_bamboo_podzol_replaceable.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:substrate_overworld" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/beneath_tree_podzol_replaceable.json b/src/main/resources/data/minecraft/tags/block/beneath_tree_podzol_replaceable.json deleted file mode 100644 index bcb6a3d..0000000 --- a/src/main/resources/data/minecraft/tags/block/beneath_tree_podzol_replaceable.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:substrate_overworld" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/birch_logs.json b/src/main/resources/data/minecraft/tags/block/birch_logs.json deleted file mode 100644 index 9203a57..0000000 --- a/src/main/resources/data/minecraft/tags/block/birch_logs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:birch_log", - "minecraft:birch_wood", - "minecraft:stripped_birch_log", - "minecraft:stripped_birch_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/blocks_wind_charge_explosions.json b/src/main/resources/data/minecraft/tags/block/blocks_wind_charge_explosions.json deleted file mode 100644 index 934e827..0000000 --- a/src/main/resources/data/minecraft/tags/block/blocks_wind_charge_explosions.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:barrier", - "minecraft:bedrock" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/buttons.json b/src/main/resources/data/minecraft/tags/block/buttons.json deleted file mode 100644 index 3400bf3..0000000 --- a/src/main/resources/data/minecraft/tags/block/buttons.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:wooden_buttons", - "#minecraft:stone_buttons" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/camel_sand_step_sound_blocks.json b/src/main/resources/data/minecraft/tags/block/camel_sand_step_sound_blocks.json deleted file mode 100644 index 8e2b714..0000000 --- a/src/main/resources/data/minecraft/tags/block/camel_sand_step_sound_blocks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:sand", - "#minecraft:concrete_powder" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/camels_spawnable_on.json b/src/main/resources/data/minecraft/tags/block/camels_spawnable_on.json deleted file mode 100644 index 3dd992b..0000000 --- a/src/main/resources/data/minecraft/tags/block/camels_spawnable_on.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:sand" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/campfires.json b/src/main/resources/data/minecraft/tags/block/campfires.json deleted file mode 100644 index 30f946d..0000000 --- a/src/main/resources/data/minecraft/tags/block/campfires.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:campfire", - "minecraft:soul_campfire" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/can_glide_through.json b/src/main/resources/data/minecraft/tags/block/can_glide_through.json deleted file mode 100644 index 0946f19..0000000 --- a/src/main/resources/data/minecraft/tags/block/can_glide_through.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "minecraft:vine", - "minecraft:twisting_vines", - "minecraft:twisting_vines_plant", - "minecraft:weeping_vines", - "minecraft:weeping_vines_plant", - "#minecraft:cave_vines" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/candle_cakes.json b/src/main/resources/data/minecraft/tags/block/candle_cakes.json deleted file mode 100644 index f7d0a93..0000000 --- a/src/main/resources/data/minecraft/tags/block/candle_cakes.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "values": [ - "minecraft:candle_cake", - "minecraft:white_candle_cake", - "minecraft:orange_candle_cake", - "minecraft:magenta_candle_cake", - "minecraft:light_blue_candle_cake", - "minecraft:yellow_candle_cake", - "minecraft:lime_candle_cake", - "minecraft:pink_candle_cake", - "minecraft:gray_candle_cake", - "minecraft:light_gray_candle_cake", - "minecraft:cyan_candle_cake", - "minecraft:purple_candle_cake", - "minecraft:blue_candle_cake", - "minecraft:brown_candle_cake", - "minecraft:green_candle_cake", - "minecraft:red_candle_cake", - "minecraft:black_candle_cake" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/candles.json b/src/main/resources/data/minecraft/tags/block/candles.json deleted file mode 100644 index a7b2b62..0000000 --- a/src/main/resources/data/minecraft/tags/block/candles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "values": [ - "minecraft:candle", - "minecraft:white_candle", - "minecraft:orange_candle", - "minecraft:magenta_candle", - "minecraft:light_blue_candle", - "minecraft:yellow_candle", - "minecraft:lime_candle", - "minecraft:pink_candle", - "minecraft:gray_candle", - "minecraft:light_gray_candle", - "minecraft:cyan_candle", - "minecraft:purple_candle", - "minecraft:blue_candle", - "minecraft:brown_candle", - "minecraft:green_candle", - "minecraft:red_candle", - "minecraft:black_candle" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/cannot_replace_below_tree_trunk.json b/src/main/resources/data/minecraft/tags/block/cannot_replace_below_tree_trunk.json deleted file mode 100644 index 7f8e050..0000000 --- a/src/main/resources/data/minecraft/tags/block/cannot_replace_below_tree_trunk.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "#minecraft:dirt", - "#minecraft:mud", - "#minecraft:moss_blocks", - "minecraft:podzol" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/cannot_support_kelp.json b/src/main/resources/data/minecraft/tags/block/cannot_support_kelp.json deleted file mode 100644 index 3bf0a87..0000000 --- a/src/main/resources/data/minecraft/tags/block/cannot_support_kelp.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:magma_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/cannot_support_seagrass.json b/src/main/resources/data/minecraft/tags/block/cannot_support_seagrass.json deleted file mode 100644 index 3bf0a87..0000000 --- a/src/main/resources/data/minecraft/tags/block/cannot_support_seagrass.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:magma_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/cannot_support_snow_layer.json b/src/main/resources/data/minecraft/tags/block/cannot_support_snow_layer.json deleted file mode 100644 index 3c125af..0000000 --- a/src/main/resources/data/minecraft/tags/block/cannot_support_snow_layer.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:ice", - "minecraft:packed_ice", - "minecraft:barrier" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/cauldrons.json b/src/main/resources/data/minecraft/tags/block/cauldrons.json deleted file mode 100644 index d527a7b..0000000 --- a/src/main/resources/data/minecraft/tags/block/cauldrons.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:cauldron", - "minecraft:water_cauldron", - "minecraft:lava_cauldron", - "minecraft:powder_snow_cauldron" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/cave_vines.json b/src/main/resources/data/minecraft/tags/block/cave_vines.json deleted file mode 100644 index 806b27c..0000000 --- a/src/main/resources/data/minecraft/tags/block/cave_vines.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:cave_vines_plant", - "minecraft:cave_vines" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/ceiling_hanging_signs.json b/src/main/resources/data/minecraft/tags/block/ceiling_hanging_signs.json deleted file mode 100644 index b55f67b..0000000 --- a/src/main/resources/data/minecraft/tags/block/ceiling_hanging_signs.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_hanging_sign", - "minecraft:spruce_hanging_sign", - "minecraft:birch_hanging_sign", - "minecraft:acacia_hanging_sign", - "minecraft:cherry_hanging_sign", - "minecraft:jungle_hanging_sign", - "minecraft:dark_oak_hanging_sign", - "minecraft:pale_oak_hanging_sign", - "minecraft:crimson_hanging_sign", - "minecraft:warped_hanging_sign", - "minecraft:mangrove_hanging_sign", - "minecraft:bamboo_hanging_sign" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/chains.json b/src/main/resources/data/minecraft/tags/block/chains.json deleted file mode 100644 index 58c2b30..0000000 --- a/src/main/resources/data/minecraft/tags/block/chains.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "values": [ - "minecraft:iron_chain", - "minecraft:copper_chain", - "minecraft:waxed_copper_chain", - "minecraft:exposed_copper_chain", - "minecraft:waxed_exposed_copper_chain", - "minecraft:weathered_copper_chain", - "minecraft:waxed_weathered_copper_chain", - "minecraft:oxidized_copper_chain", - "minecraft:waxed_oxidized_copper_chain" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/cherry_logs.json b/src/main/resources/data/minecraft/tags/block/cherry_logs.json deleted file mode 100644 index 4295e05..0000000 --- a/src/main/resources/data/minecraft/tags/block/cherry_logs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:cherry_log", - "minecraft:cherry_wood", - "minecraft:stripped_cherry_log", - "minecraft:stripped_cherry_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/climbable.json b/src/main/resources/data/minecraft/tags/block/climbable.json deleted file mode 100644 index de2e0a7..0000000 --- a/src/main/resources/data/minecraft/tags/block/climbable.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "values": [ - "minecraft:ladder", - "minecraft:vine", - "minecraft:scaffolding", - "minecraft:weeping_vines", - "minecraft:weeping_vines_plant", - "minecraft:twisting_vines", - "minecraft:twisting_vines_plant", - "minecraft:cave_vines", - "minecraft:cave_vines_plant" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/coal_ores.json b/src/main/resources/data/minecraft/tags/block/coal_ores.json deleted file mode 100644 index aaa7628..0000000 --- a/src/main/resources/data/minecraft/tags/block/coal_ores.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:coal_ore", - "minecraft:deepslate_coal_ore" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/combination_step_sound_blocks.json b/src/main/resources/data/minecraft/tags/block/combination_step_sound_blocks.json deleted file mode 100644 index 71da841..0000000 --- a/src/main/resources/data/minecraft/tags/block/combination_step_sound_blocks.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "values": [ - "#minecraft:wool_carpets", - "minecraft:moss_carpet", - "minecraft:pale_moss_carpet", - "minecraft:snow", - "minecraft:nether_sprouts", - "minecraft:warped_roots", - "minecraft:crimson_roots", - "minecraft:resin_clump" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/completes_find_tree_tutorial.json b/src/main/resources/data/minecraft/tags/block/completes_find_tree_tutorial.json deleted file mode 100644 index 74701c2..0000000 --- a/src/main/resources/data/minecraft/tags/block/completes_find_tree_tutorial.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:logs", - "#minecraft:leaves", - "#minecraft:wart_blocks" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/concrete_powder.json b/src/main/resources/data/minecraft/tags/block/concrete_powder.json deleted file mode 100644 index 57a09c9..0000000 --- a/src/main/resources/data/minecraft/tags/block/concrete_powder.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "values": [ - "minecraft:white_concrete_powder", - "minecraft:orange_concrete_powder", - "minecraft:magenta_concrete_powder", - "minecraft:light_blue_concrete_powder", - "minecraft:yellow_concrete_powder", - "minecraft:lime_concrete_powder", - "minecraft:pink_concrete_powder", - "minecraft:gray_concrete_powder", - "minecraft:light_gray_concrete_powder", - "minecraft:cyan_concrete_powder", - "minecraft:purple_concrete_powder", - "minecraft:blue_concrete_powder", - "minecraft:brown_concrete_powder", - "minecraft:green_concrete_powder", - "minecraft:red_concrete_powder", - "minecraft:black_concrete_powder" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/convertable_to_mud.json b/src/main/resources/data/minecraft/tags/block/convertable_to_mud.json deleted file mode 100644 index 9b5e54a..0000000 --- a/src/main/resources/data/minecraft/tags/block/convertable_to_mud.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:dirt", - "minecraft:coarse_dirt", - "minecraft:rooted_dirt" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/copper.json b/src/main/resources/data/minecraft/tags/block/copper.json deleted file mode 100644 index 5384865..0000000 --- a/src/main/resources/data/minecraft/tags/block/copper.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "values": [ - "minecraft:copper_block", - "minecraft:exposed_copper", - "minecraft:weathered_copper", - "minecraft:oxidized_copper", - "minecraft:waxed_copper_block", - "minecraft:waxed_exposed_copper", - "minecraft:waxed_weathered_copper", - "minecraft:waxed_oxidized_copper" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/copper_chests.json b/src/main/resources/data/minecraft/tags/block/copper_chests.json deleted file mode 100644 index 90d0a9a..0000000 --- a/src/main/resources/data/minecraft/tags/block/copper_chests.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "values": [ - "minecraft:copper_chest", - "minecraft:exposed_copper_chest", - "minecraft:weathered_copper_chest", - "minecraft:oxidized_copper_chest", - "minecraft:waxed_copper_chest", - "minecraft:waxed_exposed_copper_chest", - "minecraft:waxed_weathered_copper_chest", - "minecraft:waxed_oxidized_copper_chest" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/copper_golem_statues.json b/src/main/resources/data/minecraft/tags/block/copper_golem_statues.json deleted file mode 100644 index 531fc95..0000000 --- a/src/main/resources/data/minecraft/tags/block/copper_golem_statues.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "values": [ - "minecraft:copper_golem_statue", - "minecraft:exposed_copper_golem_statue", - "minecraft:weathered_copper_golem_statue", - "minecraft:oxidized_copper_golem_statue", - "minecraft:waxed_copper_golem_statue", - "minecraft:waxed_exposed_copper_golem_statue", - "minecraft:waxed_weathered_copper_golem_statue", - "minecraft:waxed_oxidized_copper_golem_statue" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/copper_ores.json b/src/main/resources/data/minecraft/tags/block/copper_ores.json deleted file mode 100644 index 5d76012..0000000 --- a/src/main/resources/data/minecraft/tags/block/copper_ores.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:copper_ore", - "minecraft:deepslate_copper_ore" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/coral_blocks.json b/src/main/resources/data/minecraft/tags/block/coral_blocks.json deleted file mode 100644 index 70f4b9e..0000000 --- a/src/main/resources/data/minecraft/tags/block/coral_blocks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "minecraft:tube_coral_block", - "minecraft:brain_coral_block", - "minecraft:bubble_coral_block", - "minecraft:fire_coral_block", - "minecraft:horn_coral_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/coral_plants.json b/src/main/resources/data/minecraft/tags/block/coral_plants.json deleted file mode 100644 index 7870068..0000000 --- a/src/main/resources/data/minecraft/tags/block/coral_plants.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "minecraft:tube_coral", - "minecraft:brain_coral", - "minecraft:bubble_coral", - "minecraft:fire_coral", - "minecraft:horn_coral" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/corals.json b/src/main/resources/data/minecraft/tags/block/corals.json deleted file mode 100644 index c38a95a..0000000 --- a/src/main/resources/data/minecraft/tags/block/corals.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "#minecraft:coral_plants", - "minecraft:tube_coral_fan", - "minecraft:brain_coral_fan", - "minecraft:bubble_coral_fan", - "minecraft:fire_coral_fan", - "minecraft:horn_coral_fan" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/crimson_stems.json b/src/main/resources/data/minecraft/tags/block/crimson_stems.json deleted file mode 100644 index f78c7a3..0000000 --- a/src/main/resources/data/minecraft/tags/block/crimson_stems.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:crimson_stem", - "minecraft:stripped_crimson_stem", - "minecraft:crimson_hyphae", - "minecraft:stripped_crimson_hyphae" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/crops.json b/src/main/resources/data/minecraft/tags/block/crops.json deleted file mode 100644 index b808e76..0000000 --- a/src/main/resources/data/minecraft/tags/block/crops.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "values": [ - "minecraft:beetroots", - "minecraft:carrots", - "minecraft:potatoes", - "minecraft:wheat", - "minecraft:melon_stem", - "minecraft:pumpkin_stem", - "minecraft:torchflower_crop", - "minecraft:pitcher_crop" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/crystal_sound_blocks.json b/src/main/resources/data/minecraft/tags/block/crystal_sound_blocks.json deleted file mode 100644 index cb3685b..0000000 --- a/src/main/resources/data/minecraft/tags/block/crystal_sound_blocks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:amethyst_block", - "minecraft:budding_amethyst" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/dampens_vibrations.json b/src/main/resources/data/minecraft/tags/block/dampens_vibrations.json deleted file mode 100644 index 89eab86..0000000 --- a/src/main/resources/data/minecraft/tags/block/dampens_vibrations.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:wool", - "#minecraft:wool_carpets" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/dark_oak_logs.json b/src/main/resources/data/minecraft/tags/block/dark_oak_logs.json deleted file mode 100644 index f7f5a28..0000000 --- a/src/main/resources/data/minecraft/tags/block/dark_oak_logs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:dark_oak_log", - "minecraft:dark_oak_wood", - "minecraft:stripped_dark_oak_log", - "minecraft:stripped_dark_oak_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/deepslate_ore_replaceables.json b/src/main/resources/data/minecraft/tags/block/deepslate_ore_replaceables.json deleted file mode 100644 index 4c51c37..0000000 --- a/src/main/resources/data/minecraft/tags/block/deepslate_ore_replaceables.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:deepslate", - "minecraft:tuff" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/diamond_ores.json b/src/main/resources/data/minecraft/tags/block/diamond_ores.json deleted file mode 100644 index cfa6e09..0000000 --- a/src/main/resources/data/minecraft/tags/block/diamond_ores.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:diamond_ore", - "minecraft:deepslate_diamond_ore" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/dirt.json b/src/main/resources/data/minecraft/tags/block/dirt.json deleted file mode 100644 index 9b5e54a..0000000 --- a/src/main/resources/data/minecraft/tags/block/dirt.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:dirt", - "minecraft:coarse_dirt", - "minecraft:rooted_dirt" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/does_not_block_hoppers.json b/src/main/resources/data/minecraft/tags/block/does_not_block_hoppers.json deleted file mode 100644 index 919ecda..0000000 --- a/src/main/resources/data/minecraft/tags/block/does_not_block_hoppers.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:beehives" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/doors.json b/src/main/resources/data/minecraft/tags/block/doors.json deleted file mode 100644 index 9ca24fc..0000000 --- a/src/main/resources/data/minecraft/tags/block/doors.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "values": [ - "#minecraft:wooden_doors", - "minecraft:copper_door", - "minecraft:exposed_copper_door", - "minecraft:weathered_copper_door", - "minecraft:oxidized_copper_door", - "minecraft:waxed_copper_door", - "minecraft:waxed_exposed_copper_door", - "minecraft:waxed_weathered_copper_door", - "minecraft:waxed_oxidized_copper_door", - "minecraft:iron_door" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/dragon_immune.json b/src/main/resources/data/minecraft/tags/block/dragon_immune.json deleted file mode 100644 index a04c3db..0000000 --- a/src/main/resources/data/minecraft/tags/block/dragon_immune.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "values": [ - "minecraft:barrier", - "minecraft:bedrock", - "minecraft:end_portal", - "minecraft:end_portal_frame", - "minecraft:end_gateway", - "minecraft:command_block", - "minecraft:repeating_command_block", - "minecraft:chain_command_block", - "minecraft:structure_block", - "minecraft:jigsaw", - "minecraft:moving_piston", - "minecraft:obsidian", - "minecraft:crying_obsidian", - "minecraft:end_stone", - "minecraft:iron_bars", - "minecraft:respawn_anchor", - "minecraft:reinforced_deepslate", - "minecraft:test_block", - "minecraft:test_instance_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/dragon_transparent.json b/src/main/resources/data/minecraft/tags/block/dragon_transparent.json deleted file mode 100644 index 394ae3b..0000000 --- a/src/main/resources/data/minecraft/tags/block/dragon_transparent.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:light", - "#minecraft:fire" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/dripstone_replaceable_blocks.json b/src/main/resources/data/minecraft/tags/block/dripstone_replaceable_blocks.json deleted file mode 100644 index 511ad97..0000000 --- a/src/main/resources/data/minecraft/tags/block/dripstone_replaceable_blocks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:base_stone_overworld" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/edible_for_sheep.json b/src/main/resources/data/minecraft/tags/block/edible_for_sheep.json deleted file mode 100644 index 91cc71b..0000000 --- a/src/main/resources/data/minecraft/tags/block/edible_for_sheep.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:short_grass", - "minecraft:short_dry_grass", - "minecraft:tall_dry_grass", - "minecraft:fern" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/emerald_ores.json b/src/main/resources/data/minecraft/tags/block/emerald_ores.json deleted file mode 100644 index 063d8e6..0000000 --- a/src/main/resources/data/minecraft/tags/block/emerald_ores.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:emerald_ore", - "minecraft:deepslate_emerald_ore" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/enables_bubble_column_drag_down.json b/src/main/resources/data/minecraft/tags/block/enables_bubble_column_drag_down.json deleted file mode 100644 index 3bf0a87..0000000 --- a/src/main/resources/data/minecraft/tags/block/enables_bubble_column_drag_down.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:magma_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/enables_bubble_column_push_up.json b/src/main/resources/data/minecraft/tags/block/enables_bubble_column_push_up.json deleted file mode 100644 index 355a91f..0000000 --- a/src/main/resources/data/minecraft/tags/block/enables_bubble_column_push_up.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:soul_sand" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/enchantment_power_provider.json b/src/main/resources/data/minecraft/tags/block/enchantment_power_provider.json deleted file mode 100644 index c09b218..0000000 --- a/src/main/resources/data/minecraft/tags/block/enchantment_power_provider.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:bookshelf" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/enchantment_power_transmitter.json b/src/main/resources/data/minecraft/tags/block/enchantment_power_transmitter.json deleted file mode 100644 index f64881b..0000000 --- a/src/main/resources/data/minecraft/tags/block/enchantment_power_transmitter.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:replaceable" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/enderman_holdable.json b/src/main/resources/data/minecraft/tags/block/enderman_holdable.json deleted file mode 100644 index cbbf1d3..0000000 --- a/src/main/resources/data/minecraft/tags/block/enderman_holdable.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "values": [ - "#minecraft:small_flowers", - "#minecraft:dirt", - "#minecraft:mud", - "#minecraft:moss_blocks", - "#minecraft:grass_blocks", - "minecraft:sand", - "minecraft:red_sand", - "minecraft:gravel", - "minecraft:brown_mushroom", - "minecraft:red_mushroom", - "minecraft:tnt", - "minecraft:cactus", - "minecraft:clay", - "minecraft:pumpkin", - "minecraft:carved_pumpkin", - "minecraft:melon", - "minecraft:crimson_fungus", - "minecraft:crimson_nylium", - "minecraft:crimson_roots", - "minecraft:warped_fungus", - "minecraft:warped_nylium", - "minecraft:warped_roots", - "minecraft:cactus_flower" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/fall_damage_resetting.json b/src/main/resources/data/minecraft/tags/block/fall_damage_resetting.json deleted file mode 100644 index 21b20b2..0000000 --- a/src/main/resources/data/minecraft/tags/block/fall_damage_resetting.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:climbable", - "minecraft:sweet_berry_bush", - "minecraft:cobweb" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/features_cannot_replace.json b/src/main/resources/data/minecraft/tags/block/features_cannot_replace.json deleted file mode 100644 index e437875..0000000 --- a/src/main/resources/data/minecraft/tags/block/features_cannot_replace.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:bedrock", - "minecraft:spawner", - "minecraft:chest", - "minecraft:end_portal_frame", - "minecraft:reinforced_deepslate", - "minecraft:trial_spawner", - "minecraft:vault" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/fence_gates.json b/src/main/resources/data/minecraft/tags/block/fence_gates.json deleted file mode 100644 index 9904fc9..0000000 --- a/src/main/resources/data/minecraft/tags/block/fence_gates.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:acacia_fence_gate", - "minecraft:birch_fence_gate", - "minecraft:dark_oak_fence_gate", - "minecraft:pale_oak_fence_gate", - "minecraft:jungle_fence_gate", - "minecraft:oak_fence_gate", - "minecraft:spruce_fence_gate", - "minecraft:crimson_fence_gate", - "minecraft:warped_fence_gate", - "minecraft:mangrove_fence_gate", - "minecraft:bamboo_fence_gate", - "minecraft:cherry_fence_gate" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/fences.json b/src/main/resources/data/minecraft/tags/block/fences.json deleted file mode 100644 index 045fa7d..0000000 --- a/src/main/resources/data/minecraft/tags/block/fences.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:wooden_fences", - "minecraft:nether_brick_fence" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/fire.json b/src/main/resources/data/minecraft/tags/block/fire.json deleted file mode 100644 index fb8f0fb..0000000 --- a/src/main/resources/data/minecraft/tags/block/fire.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:fire", - "minecraft:soul_fire" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/flower_pots.json b/src/main/resources/data/minecraft/tags/block/flower_pots.json deleted file mode 100644 index 7e57b9d..0000000 --- a/src/main/resources/data/minecraft/tags/block/flower_pots.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "values": [ - "minecraft:flower_pot", - "minecraft:potted_open_eyeblossom", - "minecraft:potted_closed_eyeblossom", - "minecraft:potted_poppy", - "minecraft:potted_blue_orchid", - "minecraft:potted_allium", - "minecraft:potted_azure_bluet", - "minecraft:potted_red_tulip", - "minecraft:potted_orange_tulip", - "minecraft:potted_white_tulip", - "minecraft:potted_pink_tulip", - "minecraft:potted_oxeye_daisy", - "minecraft:potted_dandelion", - "minecraft:potted_oak_sapling", - "minecraft:potted_spruce_sapling", - "minecraft:potted_birch_sapling", - "minecraft:potted_jungle_sapling", - "minecraft:potted_acacia_sapling", - "minecraft:potted_dark_oak_sapling", - "minecraft:potted_pale_oak_sapling", - "minecraft:potted_red_mushroom", - "minecraft:potted_brown_mushroom", - "minecraft:potted_dead_bush", - "minecraft:potted_fern", - "minecraft:potted_cactus", - "minecraft:potted_cornflower", - "minecraft:potted_lily_of_the_valley", - "minecraft:potted_wither_rose", - "minecraft:potted_bamboo", - "minecraft:potted_crimson_fungus", - "minecraft:potted_warped_fungus", - "minecraft:potted_crimson_roots", - "minecraft:potted_warped_roots", - "minecraft:potted_azalea_bush", - "minecraft:potted_flowering_azalea_bush", - "minecraft:potted_mangrove_propagule", - "minecraft:potted_cherry_sapling", - "minecraft:potted_torchflower", - "minecraft:potted_golden_dandelion" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/flowers.json b/src/main/resources/data/minecraft/tags/block/flowers.json deleted file mode 100644 index e0095f6..0000000 --- a/src/main/resources/data/minecraft/tags/block/flowers.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "values": [ - "#minecraft:small_flowers", - "minecraft:sunflower", - "minecraft:lilac", - "minecraft:peony", - "minecraft:rose_bush", - "minecraft:pitcher_plant", - "minecraft:flowering_azalea_leaves", - "minecraft:flowering_azalea", - "minecraft:mangrove_propagule", - "minecraft:cherry_leaves", - "minecraft:pink_petals", - "minecraft:wildflowers", - "minecraft:chorus_flower", - "minecraft:spore_blossom", - "minecraft:cactus_flower" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/forest_rock_can_place_on.json b/src/main/resources/data/minecraft/tags/block/forest_rock_can_place_on.json deleted file mode 100644 index 8ac22b1..0000000 --- a/src/main/resources/data/minecraft/tags/block/forest_rock_can_place_on.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:substrate_overworld", - "#minecraft:base_stone_overworld" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/foxes_spawnable_on.json b/src/main/resources/data/minecraft/tags/block/foxes_spawnable_on.json deleted file mode 100644 index cffc85c..0000000 --- a/src/main/resources/data/minecraft/tags/block/foxes_spawnable_on.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "minecraft:grass_block", - "minecraft:snow", - "minecraft:snow_block", - "minecraft:podzol", - "minecraft:coarse_dirt" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/frog_prefer_jump_to.json b/src/main/resources/data/minecraft/tags/block/frog_prefer_jump_to.json deleted file mode 100644 index 213cbab..0000000 --- a/src/main/resources/data/minecraft/tags/block/frog_prefer_jump_to.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:lily_pad", - "minecraft:big_dripleaf" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/frogs_spawnable_on.json b/src/main/resources/data/minecraft/tags/block/frogs_spawnable_on.json deleted file mode 100644 index 2499843..0000000 --- a/src/main/resources/data/minecraft/tags/block/frogs_spawnable_on.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:grass_block", - "minecraft:mud", - "minecraft:mangrove_roots", - "minecraft:muddy_mangrove_roots" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/geode_invalid_blocks.json b/src/main/resources/data/minecraft/tags/block/geode_invalid_blocks.json deleted file mode 100644 index 3ffe7ac..0000000 --- a/src/main/resources/data/minecraft/tags/block/geode_invalid_blocks.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "minecraft:bedrock", - "minecraft:water", - "minecraft:lava", - "minecraft:ice", - "minecraft:packed_ice", - "minecraft:blue_ice" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/goats_spawnable_on.json b/src/main/resources/data/minecraft/tags/block/goats_spawnable_on.json deleted file mode 100644 index 8376d7c..0000000 --- a/src/main/resources/data/minecraft/tags/block/goats_spawnable_on.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "#minecraft:animals_spawnable_on", - "minecraft:stone", - "minecraft:snow", - "minecraft:snow_block", - "minecraft:packed_ice", - "minecraft:gravel" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/gold_ores.json b/src/main/resources/data/minecraft/tags/block/gold_ores.json deleted file mode 100644 index 279f354..0000000 --- a/src/main/resources/data/minecraft/tags/block/gold_ores.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:gold_ore", - "minecraft:nether_gold_ore", - "minecraft:deepslate_gold_ore" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/grass_blocks.json b/src/main/resources/data/minecraft/tags/block/grass_blocks.json deleted file mode 100644 index e7e86f7..0000000 --- a/src/main/resources/data/minecraft/tags/block/grass_blocks.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:grass_block", - "minecraft:podzol", - "minecraft:mycelium" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/grows_crops.json b/src/main/resources/data/minecraft/tags/block/grows_crops.json deleted file mode 100644 index ea3a8d6..0000000 --- a/src/main/resources/data/minecraft/tags/block/grows_crops.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:farmland" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/guarded_by_piglins.json b/src/main/resources/data/minecraft/tags/block/guarded_by_piglins.json deleted file mode 100644 index 42e54c2..0000000 --- a/src/main/resources/data/minecraft/tags/block/guarded_by_piglins.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "values": [ - "#minecraft:copper_chests", - "minecraft:gold_block", - "minecraft:barrel", - "minecraft:chest", - "minecraft:ender_chest", - "minecraft:gilded_blackstone", - "minecraft:trapped_chest", - "minecraft:raw_gold_block", - "#minecraft:shulker_boxes", - "#minecraft:gold_ores" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/happy_ghast_avoids.json b/src/main/resources/data/minecraft/tags/block/happy_ghast_avoids.json deleted file mode 100644 index 7051ac9..0000000 --- a/src/main/resources/data/minecraft/tags/block/happy_ghast_avoids.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "minecraft:sweet_berry_bush", - "minecraft:cactus", - "minecraft:wither_rose", - "minecraft:magma_block", - "minecraft:fire", - "minecraft:pointed_dripstone" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/hoglin_repellents.json b/src/main/resources/data/minecraft/tags/block/hoglin_repellents.json deleted file mode 100644 index 25bbcb5..0000000 --- a/src/main/resources/data/minecraft/tags/block/hoglin_repellents.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:warped_fungus", - "minecraft:potted_warped_fungus", - "minecraft:nether_portal", - "minecraft:respawn_anchor" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/huge_brown_mushroom_can_place_on.json b/src/main/resources/data/minecraft/tags/block/huge_brown_mushroom_can_place_on.json deleted file mode 100644 index a2e728c..0000000 --- a/src/main/resources/data/minecraft/tags/block/huge_brown_mushroom_can_place_on.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "#minecraft:substrate_overworld", - "minecraft:mycelium", - "minecraft:podzol", - "minecraft:crimson_nylium", - "minecraft:warped_nylium" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/huge_red_mushroom_can_place_on.json b/src/main/resources/data/minecraft/tags/block/huge_red_mushroom_can_place_on.json deleted file mode 100644 index a2e728c..0000000 --- a/src/main/resources/data/minecraft/tags/block/huge_red_mushroom_can_place_on.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "#minecraft:substrate_overworld", - "minecraft:mycelium", - "minecraft:podzol", - "minecraft:crimson_nylium", - "minecraft:warped_nylium" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/ice.json b/src/main/resources/data/minecraft/tags/block/ice.json deleted file mode 100644 index 71c9326..0000000 --- a/src/main/resources/data/minecraft/tags/block/ice.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:ice", - "minecraft:packed_ice", - "minecraft:blue_ice", - "minecraft:frosted_ice" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/ice_spike_replaceable.json b/src/main/resources/data/minecraft/tags/block/ice_spike_replaceable.json deleted file mode 100644 index 4ce8ee9..0000000 --- a/src/main/resources/data/minecraft/tags/block/ice_spike_replaceable.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:substrate_overworld", - "minecraft:snow_block", - "minecraft:ice" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/impermeable.json b/src/main/resources/data/minecraft/tags/block/impermeable.json deleted file mode 100644 index bd1eaab..0000000 --- a/src/main/resources/data/minecraft/tags/block/impermeable.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "values": [ - "minecraft:glass", - "minecraft:white_stained_glass", - "minecraft:orange_stained_glass", - "minecraft:magenta_stained_glass", - "minecraft:light_blue_stained_glass", - "minecraft:yellow_stained_glass", - "minecraft:lime_stained_glass", - "minecraft:pink_stained_glass", - "minecraft:gray_stained_glass", - "minecraft:light_gray_stained_glass", - "minecraft:cyan_stained_glass", - "minecraft:purple_stained_glass", - "minecraft:blue_stained_glass", - "minecraft:brown_stained_glass", - "minecraft:green_stained_glass", - "minecraft:red_stained_glass", - "minecraft:black_stained_glass", - "minecraft:tinted_glass", - "minecraft:barrier" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/incorrect_for_copper_tool.json b/src/main/resources/data/minecraft/tags/block/incorrect_for_copper_tool.json deleted file mode 100644 index 1f5e3de..0000000 --- a/src/main/resources/data/minecraft/tags/block/incorrect_for_copper_tool.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:needs_diamond_tool", - "#minecraft:needs_iron_tool" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/incorrect_for_diamond_tool.json b/src/main/resources/data/minecraft/tags/block/incorrect_for_diamond_tool.json deleted file mode 100644 index f72d209..0000000 --- a/src/main/resources/data/minecraft/tags/block/incorrect_for_diamond_tool.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "values": [] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/incorrect_for_gold_tool.json b/src/main/resources/data/minecraft/tags/block/incorrect_for_gold_tool.json deleted file mode 100644 index 3cecdc7..0000000 --- a/src/main/resources/data/minecraft/tags/block/incorrect_for_gold_tool.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:needs_diamond_tool", - "#minecraft:needs_iron_tool", - "#minecraft:needs_stone_tool" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/incorrect_for_iron_tool.json b/src/main/resources/data/minecraft/tags/block/incorrect_for_iron_tool.json deleted file mode 100644 index 094771e..0000000 --- a/src/main/resources/data/minecraft/tags/block/incorrect_for_iron_tool.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:needs_diamond_tool" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/incorrect_for_netherite_tool.json b/src/main/resources/data/minecraft/tags/block/incorrect_for_netherite_tool.json deleted file mode 100644 index f72d209..0000000 --- a/src/main/resources/data/minecraft/tags/block/incorrect_for_netherite_tool.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "values": [] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/incorrect_for_stone_tool.json b/src/main/resources/data/minecraft/tags/block/incorrect_for_stone_tool.json deleted file mode 100644 index 1f5e3de..0000000 --- a/src/main/resources/data/minecraft/tags/block/incorrect_for_stone_tool.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:needs_diamond_tool", - "#minecraft:needs_iron_tool" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/incorrect_for_wooden_tool.json b/src/main/resources/data/minecraft/tags/block/incorrect_for_wooden_tool.json deleted file mode 100644 index 3cecdc7..0000000 --- a/src/main/resources/data/minecraft/tags/block/incorrect_for_wooden_tool.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:needs_diamond_tool", - "#minecraft:needs_iron_tool", - "#minecraft:needs_stone_tool" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/infiniburn_end.json b/src/main/resources/data/minecraft/tags/block/infiniburn_end.json deleted file mode 100644 index 10ebb05..0000000 --- a/src/main/resources/data/minecraft/tags/block/infiniburn_end.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:infiniburn_overworld", - "minecraft:bedrock" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/infiniburn_nether.json b/src/main/resources/data/minecraft/tags/block/infiniburn_nether.json deleted file mode 100644 index ba38973..0000000 --- a/src/main/resources/data/minecraft/tags/block/infiniburn_nether.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:infiniburn_overworld" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/infiniburn_overworld.json b/src/main/resources/data/minecraft/tags/block/infiniburn_overworld.json deleted file mode 100644 index d6c76a1..0000000 --- a/src/main/resources/data/minecraft/tags/block/infiniburn_overworld.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:netherrack", - "minecraft:magma_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/inside_step_sound_blocks.json b/src/main/resources/data/minecraft/tags/block/inside_step_sound_blocks.json deleted file mode 100644 index c376c71..0000000 --- a/src/main/resources/data/minecraft/tags/block/inside_step_sound_blocks.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "values": [ - "minecraft:powder_snow", - "minecraft:sculk_vein", - "minecraft:glow_lichen", - "minecraft:lily_pad", - "minecraft:small_amethyst_bud", - "minecraft:pink_petals", - "minecraft:wildflowers", - "minecraft:leaf_litter" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/invalid_spawn_inside.json b/src/main/resources/data/minecraft/tags/block/invalid_spawn_inside.json deleted file mode 100644 index 82f8056..0000000 --- a/src/main/resources/data/minecraft/tags/block/invalid_spawn_inside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:end_portal", - "minecraft:end_gateway" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/iron_ores.json b/src/main/resources/data/minecraft/tags/block/iron_ores.json deleted file mode 100644 index 0566d8a..0000000 --- a/src/main/resources/data/minecraft/tags/block/iron_ores.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:iron_ore", - "minecraft:deepslate_iron_ore" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/jungle_logs.json b/src/main/resources/data/minecraft/tags/block/jungle_logs.json deleted file mode 100644 index 437efbf..0000000 --- a/src/main/resources/data/minecraft/tags/block/jungle_logs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:jungle_log", - "minecraft:jungle_wood", - "minecraft:stripped_jungle_log", - "minecraft:stripped_jungle_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/lanterns.json b/src/main/resources/data/minecraft/tags/block/lanterns.json deleted file mode 100644 index fa358d4..0000000 --- a/src/main/resources/data/minecraft/tags/block/lanterns.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "values": [ - "minecraft:lantern", - "minecraft:soul_lantern", - "minecraft:copper_lantern", - "minecraft:waxed_copper_lantern", - "minecraft:exposed_copper_lantern", - "minecraft:waxed_exposed_copper_lantern", - "minecraft:weathered_copper_lantern", - "minecraft:waxed_weathered_copper_lantern", - "minecraft:oxidized_copper_lantern", - "minecraft:waxed_oxidized_copper_lantern" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/lapis_ores.json b/src/main/resources/data/minecraft/tags/block/lapis_ores.json deleted file mode 100644 index a041526..0000000 --- a/src/main/resources/data/minecraft/tags/block/lapis_ores.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:lapis_ore", - "minecraft:deepslate_lapis_ore" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/lava_pool_stone_cannot_replace.json b/src/main/resources/data/minecraft/tags/block/lava_pool_stone_cannot_replace.json deleted file mode 100644 index e252649..0000000 --- a/src/main/resources/data/minecraft/tags/block/lava_pool_stone_cannot_replace.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:features_cannot_replace", - "#minecraft:leaves", - "#minecraft:logs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/leaves.json b/src/main/resources/data/minecraft/tags/block/leaves.json deleted file mode 100644 index 523787f..0000000 --- a/src/main/resources/data/minecraft/tags/block/leaves.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "values": [ - "minecraft:jungle_leaves", - "minecraft:oak_leaves", - "minecraft:spruce_leaves", - "minecraft:pale_oak_leaves", - "minecraft:dark_oak_leaves", - "minecraft:acacia_leaves", - "minecraft:birch_leaves", - "minecraft:azalea_leaves", - "minecraft:flowering_azalea_leaves", - "minecraft:mangrove_leaves", - "minecraft:cherry_leaves" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/lightning_rods.json b/src/main/resources/data/minecraft/tags/block/lightning_rods.json deleted file mode 100644 index 73469e2..0000000 --- a/src/main/resources/data/minecraft/tags/block/lightning_rods.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "values": [ - "minecraft:lightning_rod", - "minecraft:exposed_lightning_rod", - "minecraft:weathered_lightning_rod", - "minecraft:oxidized_lightning_rod", - "minecraft:waxed_lightning_rod", - "minecraft:waxed_exposed_lightning_rod", - "minecraft:waxed_weathered_lightning_rod", - "minecraft:waxed_oxidized_lightning_rod" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/logs.json b/src/main/resources/data/minecraft/tags/block/logs.json deleted file mode 100644 index 234e4fe..0000000 --- a/src/main/resources/data/minecraft/tags/block/logs.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:logs_that_burn", - "#minecraft:crimson_stems", - "#minecraft:warped_stems" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/logs_that_burn.json b/src/main/resources/data/minecraft/tags/block/logs_that_burn.json deleted file mode 100644 index 00f0e7f..0000000 --- a/src/main/resources/data/minecraft/tags/block/logs_that_burn.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "values": [ - "#minecraft:dark_oak_logs", - "#minecraft:pale_oak_logs", - "#minecraft:oak_logs", - "#minecraft:acacia_logs", - "#minecraft:birch_logs", - "#minecraft:jungle_logs", - "#minecraft:spruce_logs", - "#minecraft:mangrove_logs", - "#minecraft:cherry_logs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/lush_ground_replaceable.json b/src/main/resources/data/minecraft/tags/block/lush_ground_replaceable.json deleted file mode 100644 index 8230f62..0000000 --- a/src/main/resources/data/minecraft/tags/block/lush_ground_replaceable.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "#minecraft:moss_replaceable", - "minecraft:clay", - "minecraft:gravel", - "minecraft:sand" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/maintains_farmland.json b/src/main/resources/data/minecraft/tags/block/maintains_farmland.json deleted file mode 100644 index c908578..0000000 --- a/src/main/resources/data/minecraft/tags/block/maintains_farmland.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "values": [ - "minecraft:pumpkin_stem", - "minecraft:attached_pumpkin_stem", - "minecraft:melon_stem", - "minecraft:attached_melon_stem", - "minecraft:beetroots", - "minecraft:carrots", - "minecraft:potatoes", - "minecraft:torchflower_crop", - "minecraft:torchflower", - "minecraft:pitcher_crop", - "minecraft:wheat", - "minecraft:moving_piston", - "#minecraft:fence_gates" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/mangrove_logs.json b/src/main/resources/data/minecraft/tags/block/mangrove_logs.json deleted file mode 100644 index d69fadf..0000000 --- a/src/main/resources/data/minecraft/tags/block/mangrove_logs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:mangrove_log", - "minecraft:mangrove_wood", - "minecraft:stripped_mangrove_log", - "minecraft:stripped_mangrove_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/mangrove_logs_can_grow_through.json b/src/main/resources/data/minecraft/tags/block/mangrove_logs_can_grow_through.json deleted file mode 100644 index ab32376..0000000 --- a/src/main/resources/data/minecraft/tags/block/mangrove_logs_can_grow_through.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "values": [ - "minecraft:mud", - "minecraft:muddy_mangrove_roots", - "minecraft:mangrove_roots", - "minecraft:mangrove_leaves", - "minecraft:mangrove_log", - "minecraft:mangrove_propagule", - "minecraft:moss_carpet", - "minecraft:vine" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/mangrove_roots_can_grow_through.json b/src/main/resources/data/minecraft/tags/block/mangrove_roots_can_grow_through.json deleted file mode 100644 index 07eb0f3..0000000 --- a/src/main/resources/data/minecraft/tags/block/mangrove_roots_can_grow_through.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:mud", - "minecraft:muddy_mangrove_roots", - "minecraft:mangrove_roots", - "minecraft:moss_carpet", - "minecraft:vine", - "minecraft:mangrove_propagule", - "minecraft:snow" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/mineable/axe.json b/src/main/resources/data/minecraft/tags/block/mineable/axe.json deleted file mode 100644 index 414687a..0000000 --- a/src/main/resources/data/minecraft/tags/block/mineable/axe.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "values": [ - "minecraft:note_block", - "minecraft:bamboo", - "minecraft:barrel", - "minecraft:bee_nest", - "minecraft:beehive", - "minecraft:big_dripleaf_stem", - "minecraft:big_dripleaf", - "minecraft:bookshelf", - "minecraft:brown_mushroom_block", - "minecraft:campfire", - "minecraft:cartography_table", - "minecraft:carved_pumpkin", - "minecraft:chest", - "minecraft:chorus_flower", - "minecraft:chorus_plant", - "minecraft:cocoa", - "minecraft:composter", - "minecraft:crafting_table", - "minecraft:daylight_detector", - "minecraft:fletching_table", - "minecraft:glow_lichen", - "minecraft:jack_o_lantern", - "minecraft:jukebox", - "minecraft:ladder", - "minecraft:lectern", - "minecraft:loom", - "minecraft:melon", - "minecraft:mushroom_stem", - "minecraft:pumpkin", - "minecraft:red_mushroom_block", - "minecraft:smithing_table", - "minecraft:soul_campfire", - "minecraft:trapped_chest", - "minecraft:vine", - "#minecraft:banners", - "#minecraft:fence_gates", - "#minecraft:logs", - "#minecraft:planks", - "#minecraft:signs", - "#minecraft:wooden_buttons", - "#minecraft:wooden_doors", - "#minecraft:wooden_fences", - "#minecraft:wooden_pressure_plates", - "#minecraft:wooden_slabs", - "#minecraft:wooden_stairs", - "#minecraft:wooden_trapdoors", - "minecraft:mangrove_roots", - "#minecraft:all_hanging_signs", - "minecraft:bamboo_mosaic", - "minecraft:bamboo_mosaic_slab", - "minecraft:bamboo_mosaic_stairs", - "#minecraft:bamboo_blocks", - "minecraft:chiseled_bookshelf", - "#minecraft:wooden_shelves", - "minecraft:creaking_heart" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/mineable/hoe.json b/src/main/resources/data/minecraft/tags/block/mineable/hoe.json deleted file mode 100644 index ed7b791..0000000 --- a/src/main/resources/data/minecraft/tags/block/mineable/hoe.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "values": [ - "#minecraft:leaves", - "minecraft:nether_wart_block", - "minecraft:warped_wart_block", - "minecraft:hay_block", - "minecraft:dried_kelp_block", - "minecraft:target", - "minecraft:shroomlight", - "minecraft:sponge", - "minecraft:wet_sponge", - "minecraft:sculk_sensor", - "minecraft:calibrated_sculk_sensor", - "minecraft:moss_block", - "minecraft:moss_carpet", - "minecraft:pale_moss_block", - "minecraft:pale_moss_carpet", - "minecraft:sculk", - "minecraft:sculk_catalyst", - "minecraft:sculk_vein", - "minecraft:sculk_shrieker" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/mineable/pickaxe.json b/src/main/resources/data/minecraft/tags/block/mineable/pickaxe.json deleted file mode 100644 index 45148f2..0000000 --- a/src/main/resources/data/minecraft/tags/block/mineable/pickaxe.json +++ /dev/null @@ -1,394 +0,0 @@ -{ - "values": [ - "minecraft:stone", - "minecraft:granite", - "minecraft:polished_granite", - "minecraft:diorite", - "minecraft:polished_diorite", - "minecraft:andesite", - "minecraft:polished_andesite", - "minecraft:cobblestone", - "minecraft:gold_ore", - "minecraft:deepslate_gold_ore", - "minecraft:iron_ore", - "minecraft:deepslate_iron_ore", - "minecraft:coal_ore", - "minecraft:deepslate_coal_ore", - "minecraft:nether_gold_ore", - "minecraft:lapis_ore", - "minecraft:deepslate_lapis_ore", - "minecraft:lapis_block", - "minecraft:dispenser", - "minecraft:sandstone", - "minecraft:chiseled_sandstone", - "minecraft:cut_sandstone", - "minecraft:gold_block", - "minecraft:iron_block", - "minecraft:bricks", - "minecraft:mossy_cobblestone", - "minecraft:obsidian", - "minecraft:spawner", - "minecraft:diamond_ore", - "minecraft:deepslate_diamond_ore", - "minecraft:diamond_block", - "minecraft:furnace", - "minecraft:cobblestone_stairs", - "minecraft:stone_pressure_plate", - "minecraft:iron_door", - "minecraft:redstone_ore", - "minecraft:deepslate_redstone_ore", - "minecraft:netherrack", - "minecraft:basalt", - "minecraft:polished_basalt", - "minecraft:stone_bricks", - "minecraft:mossy_stone_bricks", - "minecraft:cracked_stone_bricks", - "minecraft:chiseled_stone_bricks", - "minecraft:brick_stairs", - "minecraft:stone_brick_stairs", - "minecraft:nether_bricks", - "minecraft:nether_brick_fence", - "minecraft:nether_brick_stairs", - "minecraft:enchanting_table", - "minecraft:brewing_stand", - "minecraft:end_stone", - "minecraft:sandstone_stairs", - "minecraft:emerald_ore", - "minecraft:deepslate_emerald_ore", - "minecraft:ender_chest", - "minecraft:emerald_block", - "minecraft:light_weighted_pressure_plate", - "minecraft:heavy_weighted_pressure_plate", - "minecraft:redstone_block", - "minecraft:nether_quartz_ore", - "minecraft:hopper", - "minecraft:quartz_block", - "minecraft:chiseled_quartz_block", - "minecraft:quartz_pillar", - "minecraft:quartz_stairs", - "minecraft:dropper", - "minecraft:white_terracotta", - "minecraft:orange_terracotta", - "minecraft:magenta_terracotta", - "minecraft:light_blue_terracotta", - "minecraft:yellow_terracotta", - "minecraft:lime_terracotta", - "minecraft:pink_terracotta", - "minecraft:gray_terracotta", - "minecraft:light_gray_terracotta", - "minecraft:cyan_terracotta", - "minecraft:purple_terracotta", - "minecraft:blue_terracotta", - "minecraft:brown_terracotta", - "minecraft:green_terracotta", - "minecraft:red_terracotta", - "minecraft:black_terracotta", - "minecraft:iron_trapdoor", - "minecraft:prismarine", - "minecraft:prismarine_bricks", - "minecraft:dark_prismarine", - "minecraft:prismarine_stairs", - "minecraft:prismarine_brick_stairs", - "minecraft:dark_prismarine_stairs", - "minecraft:prismarine_slab", - "minecraft:prismarine_brick_slab", - "minecraft:dark_prismarine_slab", - "minecraft:terracotta", - "minecraft:coal_block", - "minecraft:red_sandstone", - "minecraft:chiseled_red_sandstone", - "minecraft:cut_red_sandstone", - "minecraft:red_sandstone_stairs", - "minecraft:stone_slab", - "minecraft:smooth_stone_slab", - "minecraft:sandstone_slab", - "minecraft:cut_sandstone_slab", - "minecraft:petrified_oak_slab", - "minecraft:cobblestone_slab", - "minecraft:brick_slab", - "minecraft:stone_brick_slab", - "minecraft:nether_brick_slab", - "minecraft:quartz_slab", - "minecraft:red_sandstone_slab", - "minecraft:cut_red_sandstone_slab", - "minecraft:purpur_slab", - "minecraft:smooth_stone", - "minecraft:smooth_sandstone", - "minecraft:smooth_quartz", - "minecraft:smooth_red_sandstone", - "minecraft:purpur_block", - "minecraft:purpur_pillar", - "minecraft:purpur_stairs", - "minecraft:end_stone_bricks", - "minecraft:magma_block", - "minecraft:red_nether_bricks", - "minecraft:bone_block", - "minecraft:observer", - "minecraft:white_glazed_terracotta", - "minecraft:orange_glazed_terracotta", - "minecraft:magenta_glazed_terracotta", - "minecraft:light_blue_glazed_terracotta", - "minecraft:yellow_glazed_terracotta", - "minecraft:lime_glazed_terracotta", - "minecraft:pink_glazed_terracotta", - "minecraft:gray_glazed_terracotta", - "minecraft:light_gray_glazed_terracotta", - "minecraft:cyan_glazed_terracotta", - "minecraft:purple_glazed_terracotta", - "minecraft:blue_glazed_terracotta", - "minecraft:brown_glazed_terracotta", - "minecraft:green_glazed_terracotta", - "minecraft:red_glazed_terracotta", - "minecraft:black_glazed_terracotta", - "minecraft:white_concrete", - "minecraft:orange_concrete", - "minecraft:magenta_concrete", - "minecraft:light_blue_concrete", - "minecraft:yellow_concrete", - "minecraft:lime_concrete", - "minecraft:pink_concrete", - "minecraft:gray_concrete", - "minecraft:light_gray_concrete", - "minecraft:cyan_concrete", - "minecraft:purple_concrete", - "minecraft:blue_concrete", - "minecraft:brown_concrete", - "minecraft:green_concrete", - "minecraft:red_concrete", - "minecraft:black_concrete", - "minecraft:dead_tube_coral_block", - "minecraft:dead_brain_coral_block", - "minecraft:dead_bubble_coral_block", - "minecraft:dead_fire_coral_block", - "minecraft:dead_horn_coral_block", - "minecraft:tube_coral_block", - "minecraft:brain_coral_block", - "minecraft:bubble_coral_block", - "minecraft:fire_coral_block", - "minecraft:horn_coral_block", - "minecraft:dead_tube_coral", - "minecraft:dead_brain_coral", - "minecraft:dead_bubble_coral", - "minecraft:dead_fire_coral", - "minecraft:dead_horn_coral", - "minecraft:dead_tube_coral_fan", - "minecraft:dead_brain_coral_fan", - "minecraft:dead_bubble_coral_fan", - "minecraft:dead_fire_coral_fan", - "minecraft:dead_horn_coral_fan", - "minecraft:dead_tube_coral_wall_fan", - "minecraft:dead_brain_coral_wall_fan", - "minecraft:dead_bubble_coral_wall_fan", - "minecraft:dead_fire_coral_wall_fan", - "minecraft:dead_horn_coral_wall_fan", - "minecraft:polished_granite_stairs", - "minecraft:smooth_red_sandstone_stairs", - "minecraft:mossy_stone_brick_stairs", - "minecraft:polished_diorite_stairs", - "minecraft:mossy_cobblestone_stairs", - "minecraft:end_stone_brick_stairs", - "minecraft:stone_stairs", - "minecraft:smooth_sandstone_stairs", - "minecraft:smooth_quartz_stairs", - "minecraft:granite_stairs", - "minecraft:andesite_stairs", - "minecraft:red_nether_brick_stairs", - "minecraft:polished_andesite_stairs", - "minecraft:diorite_stairs", - "minecraft:polished_granite_slab", - "minecraft:smooth_red_sandstone_slab", - "minecraft:mossy_stone_brick_slab", - "minecraft:polished_diorite_slab", - "minecraft:mossy_cobblestone_slab", - "minecraft:end_stone_brick_slab", - "minecraft:smooth_sandstone_slab", - "minecraft:smooth_quartz_slab", - "minecraft:granite_slab", - "minecraft:andesite_slab", - "minecraft:red_nether_brick_slab", - "minecraft:polished_andesite_slab", - "minecraft:diorite_slab", - "minecraft:smoker", - "minecraft:blast_furnace", - "minecraft:grindstone", - "minecraft:stonecutter", - "minecraft:bell", - "minecraft:warped_nylium", - "minecraft:crimson_nylium", - "minecraft:netherite_block", - "minecraft:ancient_debris", - "minecraft:crying_obsidian", - "minecraft:respawn_anchor", - "minecraft:lodestone", - "minecraft:blackstone", - "minecraft:blackstone_stairs", - "minecraft:blackstone_slab", - "minecraft:polished_blackstone", - "minecraft:polished_blackstone_bricks", - "minecraft:cracked_polished_blackstone_bricks", - "minecraft:chiseled_polished_blackstone", - "minecraft:polished_blackstone_brick_slab", - "minecraft:polished_blackstone_brick_stairs", - "minecraft:gilded_blackstone", - "minecraft:polished_blackstone_stairs", - "minecraft:polished_blackstone_slab", - "minecraft:polished_blackstone_pressure_plate", - "minecraft:chiseled_nether_bricks", - "minecraft:cracked_nether_bricks", - "minecraft:quartz_bricks", - "minecraft:tuff", - "minecraft:calcite", - "minecraft:oxidized_copper", - "minecraft:weathered_copper", - "minecraft:exposed_copper", - "minecraft:copper_block", - "minecraft:copper_ore", - "minecraft:deepslate_copper_ore", - "minecraft:oxidized_cut_copper", - "minecraft:weathered_cut_copper", - "minecraft:exposed_cut_copper", - "minecraft:cut_copper", - "minecraft:oxidized_cut_copper_stairs", - "minecraft:weathered_cut_copper_stairs", - "minecraft:exposed_cut_copper_stairs", - "minecraft:cut_copper_stairs", - "minecraft:oxidized_cut_copper_slab", - "minecraft:weathered_cut_copper_slab", - "minecraft:exposed_cut_copper_slab", - "minecraft:cut_copper_slab", - "minecraft:waxed_copper_block", - "minecraft:waxed_weathered_copper", - "minecraft:waxed_exposed_copper", - "minecraft:waxed_oxidized_copper", - "minecraft:waxed_oxidized_cut_copper", - "minecraft:waxed_weathered_cut_copper", - "minecraft:waxed_exposed_cut_copper", - "minecraft:waxed_cut_copper", - "minecraft:waxed_oxidized_cut_copper_stairs", - "minecraft:waxed_weathered_cut_copper_stairs", - "minecraft:waxed_exposed_cut_copper_stairs", - "minecraft:waxed_cut_copper_stairs", - "minecraft:waxed_oxidized_cut_copper_slab", - "minecraft:waxed_weathered_cut_copper_slab", - "minecraft:waxed_exposed_cut_copper_slab", - "minecraft:waxed_cut_copper_slab", - "minecraft:pointed_dripstone", - "minecraft:dripstone_block", - "minecraft:deepslate", - "minecraft:cobbled_deepslate", - "minecraft:cobbled_deepslate_stairs", - "minecraft:cobbled_deepslate_slab", - "minecraft:polished_deepslate", - "minecraft:polished_deepslate_stairs", - "minecraft:polished_deepslate_slab", - "minecraft:deepslate_tiles", - "minecraft:deepslate_tile_stairs", - "minecraft:deepslate_tile_slab", - "minecraft:deepslate_bricks", - "minecraft:deepslate_brick_stairs", - "minecraft:deepslate_brick_slab", - "minecraft:chiseled_deepslate", - "minecraft:cracked_deepslate_bricks", - "minecraft:cracked_deepslate_tiles", - "minecraft:smooth_basalt", - "minecraft:raw_iron_block", - "minecraft:raw_copper_block", - "minecraft:raw_gold_block", - "minecraft:ice", - "minecraft:packed_ice", - "minecraft:blue_ice", - "minecraft:piston", - "minecraft:sticky_piston", - "minecraft:piston_head", - "minecraft:amethyst_cluster", - "minecraft:small_amethyst_bud", - "minecraft:medium_amethyst_bud", - "minecraft:large_amethyst_bud", - "minecraft:amethyst_block", - "minecraft:budding_amethyst", - "minecraft:infested_cobblestone", - "minecraft:infested_chiseled_stone_bricks", - "minecraft:infested_cracked_stone_bricks", - "minecraft:infested_deepslate", - "minecraft:infested_stone", - "minecraft:infested_mossy_stone_bricks", - "minecraft:infested_stone_bricks", - "#minecraft:stone_buttons", - "#minecraft:walls", - "#minecraft:shulker_boxes", - "#minecraft:anvil", - "#minecraft:cauldrons", - "#minecraft:rails", - "minecraft:conduit", - "minecraft:mud_bricks", - "minecraft:mud_brick_stairs", - "minecraft:mud_brick_slab", - "minecraft:packed_mud", - "minecraft:crafter", - "minecraft:tuff_slab", - "minecraft:tuff_stairs", - "minecraft:tuff_wall", - "minecraft:chiseled_tuff", - "minecraft:polished_tuff", - "minecraft:polished_tuff_slab", - "minecraft:polished_tuff_stairs", - "minecraft:polished_tuff_wall", - "minecraft:tuff_bricks", - "minecraft:tuff_brick_slab", - "minecraft:tuff_brick_stairs", - "minecraft:tuff_brick_wall", - "minecraft:chiseled_tuff_bricks", - "minecraft:chiseled_copper", - "minecraft:exposed_chiseled_copper", - "minecraft:weathered_chiseled_copper", - "minecraft:oxidized_chiseled_copper", - "minecraft:waxed_chiseled_copper", - "minecraft:waxed_exposed_chiseled_copper", - "minecraft:waxed_weathered_chiseled_copper", - "minecraft:waxed_oxidized_chiseled_copper", - "minecraft:copper_grate", - "minecraft:exposed_copper_grate", - "minecraft:weathered_copper_grate", - "minecraft:oxidized_copper_grate", - "minecraft:waxed_copper_grate", - "minecraft:waxed_exposed_copper_grate", - "minecraft:waxed_weathered_copper_grate", - "minecraft:waxed_oxidized_copper_grate", - "minecraft:copper_bulb", - "minecraft:exposed_copper_bulb", - "minecraft:weathered_copper_bulb", - "minecraft:oxidized_copper_bulb", - "minecraft:waxed_copper_bulb", - "minecraft:waxed_exposed_copper_bulb", - "minecraft:waxed_weathered_copper_bulb", - "minecraft:waxed_oxidized_copper_bulb", - "minecraft:copper_door", - "minecraft:exposed_copper_door", - "minecraft:weathered_copper_door", - "minecraft:oxidized_copper_door", - "minecraft:waxed_copper_door", - "minecraft:waxed_exposed_copper_door", - "minecraft:waxed_weathered_copper_door", - "minecraft:waxed_oxidized_copper_door", - "minecraft:copper_trapdoor", - "minecraft:exposed_copper_trapdoor", - "minecraft:weathered_copper_trapdoor", - "minecraft:oxidized_copper_trapdoor", - "minecraft:waxed_copper_trapdoor", - "minecraft:waxed_exposed_copper_trapdoor", - "minecraft:waxed_weathered_copper_trapdoor", - "minecraft:waxed_oxidized_copper_trapdoor", - "minecraft:heavy_core", - "minecraft:resin_bricks", - "minecraft:resin_brick_slab", - "minecraft:resin_brick_wall", - "minecraft:resin_brick_stairs", - "minecraft:chiseled_resin_bricks", - "#minecraft:copper_chests", - "#minecraft:copper_golem_statues", - "#minecraft:lightning_rods", - "#minecraft:lanterns", - "#minecraft:chains", - "#minecraft:bars" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/mineable/shovel.json b/src/main/resources/data/minecraft/tags/block/mineable/shovel.json deleted file mode 100644 index 2660e22..0000000 --- a/src/main/resources/data/minecraft/tags/block/mineable/shovel.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "values": [ - "minecraft:clay", - "minecraft:dirt", - "minecraft:coarse_dirt", - "minecraft:podzol", - "minecraft:farmland", - "minecraft:grass_block", - "minecraft:gravel", - "minecraft:mycelium", - "minecraft:sand", - "minecraft:red_sand", - "minecraft:snow_block", - "minecraft:snow", - "minecraft:soul_sand", - "minecraft:dirt_path", - "minecraft:soul_soil", - "minecraft:rooted_dirt", - "minecraft:muddy_mangrove_roots", - "minecraft:mud", - "minecraft:suspicious_sand", - "minecraft:suspicious_gravel", - "#minecraft:concrete_powder" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/mob_interactable_doors.json b/src/main/resources/data/minecraft/tags/block/mob_interactable_doors.json deleted file mode 100644 index fe5c57d..0000000 --- a/src/main/resources/data/minecraft/tags/block/mob_interactable_doors.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "values": [ - "#minecraft:wooden_doors", - "minecraft:copper_door", - "minecraft:exposed_copper_door", - "minecraft:weathered_copper_door", - "minecraft:oxidized_copper_door", - "minecraft:waxed_copper_door", - "minecraft:waxed_exposed_copper_door", - "minecraft:waxed_weathered_copper_door", - "minecraft:waxed_oxidized_copper_door" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/mooshrooms_spawnable_on.json b/src/main/resources/data/minecraft/tags/block/mooshrooms_spawnable_on.json deleted file mode 100644 index a5e4042..0000000 --- a/src/main/resources/data/minecraft/tags/block/mooshrooms_spawnable_on.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:mycelium" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/moss_blocks.json b/src/main/resources/data/minecraft/tags/block/moss_blocks.json deleted file mode 100644 index 2774bdf..0000000 --- a/src/main/resources/data/minecraft/tags/block/moss_blocks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:moss_block", - "minecraft:pale_moss_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/moss_replaceable.json b/src/main/resources/data/minecraft/tags/block/moss_replaceable.json deleted file mode 100644 index aded58c..0000000 --- a/src/main/resources/data/minecraft/tags/block/moss_replaceable.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "#minecraft:base_stone_overworld", - "#minecraft:cave_vines", - "#minecraft:dirt", - "#minecraft:mud", - "#minecraft:moss_blocks", - "#minecraft:grass_blocks" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/mud.json b/src/main/resources/data/minecraft/tags/block/mud.json deleted file mode 100644 index 0ac1535..0000000 --- a/src/main/resources/data/minecraft/tags/block/mud.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:mud", - "minecraft:muddy_mangrove_roots" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/needs_diamond_tool.json b/src/main/resources/data/minecraft/tags/block/needs_diamond_tool.json deleted file mode 100644 index f3c60ba..0000000 --- a/src/main/resources/data/minecraft/tags/block/needs_diamond_tool.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "minecraft:obsidian", - "minecraft:crying_obsidian", - "minecraft:netherite_block", - "minecraft:respawn_anchor", - "minecraft:ancient_debris" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/needs_iron_tool.json b/src/main/resources/data/minecraft/tags/block/needs_iron_tool.json deleted file mode 100644 index 7a21ba4..0000000 --- a/src/main/resources/data/minecraft/tags/block/needs_iron_tool.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:diamond_block", - "minecraft:diamond_ore", - "minecraft:deepslate_diamond_ore", - "minecraft:emerald_ore", - "minecraft:deepslate_emerald_ore", - "minecraft:emerald_block", - "minecraft:gold_block", - "minecraft:raw_gold_block", - "minecraft:gold_ore", - "minecraft:deepslate_gold_ore", - "minecraft:redstone_ore", - "minecraft:deepslate_redstone_ore" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/needs_stone_tool.json b/src/main/resources/data/minecraft/tags/block/needs_stone_tool.json deleted file mode 100644 index 5390074..0000000 --- a/src/main/resources/data/minecraft/tags/block/needs_stone_tool.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "values": [ - "minecraft:iron_block", - "minecraft:raw_iron_block", - "minecraft:iron_ore", - "minecraft:deepslate_iron_ore", - "minecraft:lapis_block", - "minecraft:lapis_ore", - "minecraft:deepslate_lapis_ore", - "minecraft:copper_block", - "minecraft:raw_copper_block", - "minecraft:copper_ore", - "minecraft:deepslate_copper_ore", - "minecraft:cut_copper_slab", - "minecraft:cut_copper_stairs", - "minecraft:cut_copper", - "minecraft:weathered_copper", - "minecraft:weathered_cut_copper_slab", - "minecraft:weathered_cut_copper_stairs", - "minecraft:weathered_cut_copper", - "minecraft:oxidized_copper", - "minecraft:oxidized_cut_copper_slab", - "minecraft:oxidized_cut_copper_stairs", - "minecraft:oxidized_cut_copper", - "minecraft:exposed_copper", - "minecraft:exposed_cut_copper_slab", - "minecraft:exposed_cut_copper_stairs", - "minecraft:exposed_cut_copper", - "minecraft:waxed_copper_block", - "minecraft:waxed_cut_copper_slab", - "minecraft:waxed_cut_copper_stairs", - "minecraft:waxed_cut_copper", - "minecraft:waxed_weathered_copper", - "minecraft:waxed_weathered_cut_copper_slab", - "minecraft:waxed_weathered_cut_copper_stairs", - "minecraft:waxed_weathered_cut_copper", - "minecraft:waxed_exposed_copper", - "minecraft:waxed_exposed_cut_copper_slab", - "minecraft:waxed_exposed_cut_copper_stairs", - "minecraft:waxed_exposed_cut_copper", - "minecraft:waxed_oxidized_copper", - "minecraft:waxed_oxidized_cut_copper_slab", - "minecraft:waxed_oxidized_cut_copper_stairs", - "minecraft:waxed_oxidized_cut_copper", - "minecraft:crafter", - "minecraft:chiseled_copper", - "minecraft:exposed_chiseled_copper", - "minecraft:weathered_chiseled_copper", - "minecraft:oxidized_chiseled_copper", - "minecraft:waxed_chiseled_copper", - "minecraft:waxed_exposed_chiseled_copper", - "minecraft:waxed_weathered_chiseled_copper", - "minecraft:waxed_oxidized_chiseled_copper", - "minecraft:copper_grate", - "minecraft:exposed_copper_grate", - "minecraft:weathered_copper_grate", - "minecraft:oxidized_copper_grate", - "minecraft:waxed_copper_grate", - "minecraft:waxed_exposed_copper_grate", - "minecraft:waxed_weathered_copper_grate", - "minecraft:waxed_oxidized_copper_grate", - "minecraft:copper_bulb", - "minecraft:exposed_copper_bulb", - "minecraft:weathered_copper_bulb", - "minecraft:oxidized_copper_bulb", - "minecraft:waxed_copper_bulb", - "minecraft:waxed_exposed_copper_bulb", - "minecraft:waxed_weathered_copper_bulb", - "minecraft:waxed_oxidized_copper_bulb", - "minecraft:copper_trapdoor", - "minecraft:exposed_copper_trapdoor", - "minecraft:weathered_copper_trapdoor", - "minecraft:oxidized_copper_trapdoor", - "minecraft:waxed_copper_trapdoor", - "minecraft:waxed_exposed_copper_trapdoor", - "minecraft:waxed_weathered_copper_trapdoor", - "minecraft:waxed_oxidized_copper_trapdoor", - "#minecraft:copper_chests", - "#minecraft:lightning_rods" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/nether_carver_replaceables.json b/src/main/resources/data/minecraft/tags/block/nether_carver_replaceables.json deleted file mode 100644 index 6d2f67a..0000000 --- a/src/main/resources/data/minecraft/tags/block/nether_carver_replaceables.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "#minecraft:base_stone_overworld", - "#minecraft:base_stone_nether", - "#minecraft:substrate_overworld", - "#minecraft:nylium", - "#minecraft:wart_blocks", - "minecraft:soul_sand", - "minecraft:soul_soil" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/nylium.json b/src/main/resources/data/minecraft/tags/block/nylium.json deleted file mode 100644 index 7fbae3c..0000000 --- a/src/main/resources/data/minecraft/tags/block/nylium.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:crimson_nylium", - "minecraft:warped_nylium" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/oak_logs.json b/src/main/resources/data/minecraft/tags/block/oak_logs.json deleted file mode 100644 index d4bae2a..0000000 --- a/src/main/resources/data/minecraft/tags/block/oak_logs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:oak_log", - "minecraft:oak_wood", - "minecraft:stripped_oak_log", - "minecraft:stripped_oak_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/occludes_vibration_signals.json b/src/main/resources/data/minecraft/tags/block/occludes_vibration_signals.json deleted file mode 100644 index 495a1df..0000000 --- a/src/main/resources/data/minecraft/tags/block/occludes_vibration_signals.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:wool" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/overrides_mushroom_light_requirement.json b/src/main/resources/data/minecraft/tags/block/overrides_mushroom_light_requirement.json deleted file mode 100644 index a65b470..0000000 --- a/src/main/resources/data/minecraft/tags/block/overrides_mushroom_light_requirement.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:mycelium", - "minecraft:podzol", - "minecraft:crimson_nylium", - "minecraft:warped_nylium" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/overworld_carver_replaceables.json b/src/main/resources/data/minecraft/tags/block/overworld_carver_replaceables.json deleted file mode 100644 index b623467..0000000 --- a/src/main/resources/data/minecraft/tags/block/overworld_carver_replaceables.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "values": [ - "#minecraft:base_stone_overworld", - "#minecraft:substrate_overworld", - "#minecraft:sand", - "#minecraft:terracotta", - "#minecraft:iron_ores", - "#minecraft:copper_ores", - "#minecraft:snow", - "minecraft:water", - "minecraft:gravel", - "minecraft:suspicious_gravel", - "minecraft:sandstone", - "minecraft:red_sandstone", - "minecraft:calcite", - "minecraft:packed_ice", - "minecraft:raw_iron_block", - "minecraft:raw_copper_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/overworld_natural_logs.json b/src/main/resources/data/minecraft/tags/block/overworld_natural_logs.json deleted file mode 100644 index 940bdb7..0000000 --- a/src/main/resources/data/minecraft/tags/block/overworld_natural_logs.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "values": [ - "minecraft:acacia_log", - "minecraft:birch_log", - "minecraft:oak_log", - "minecraft:jungle_log", - "minecraft:spruce_log", - "minecraft:dark_oak_log", - "minecraft:pale_oak_log", - "minecraft:mangrove_log", - "minecraft:cherry_log" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/pale_oak_logs.json b/src/main/resources/data/minecraft/tags/block/pale_oak_logs.json deleted file mode 100644 index 928a458..0000000 --- a/src/main/resources/data/minecraft/tags/block/pale_oak_logs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:pale_oak_log", - "minecraft:pale_oak_wood", - "minecraft:stripped_pale_oak_log", - "minecraft:stripped_pale_oak_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/parrots_spawnable_on.json b/src/main/resources/data/minecraft/tags/block/parrots_spawnable_on.json deleted file mode 100644 index aaa88e4..0000000 --- a/src/main/resources/data/minecraft/tags/block/parrots_spawnable_on.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:grass_block", - "minecraft:air", - "#minecraft:leaves", - "#minecraft:logs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/piglin_repellents.json b/src/main/resources/data/minecraft/tags/block/piglin_repellents.json deleted file mode 100644 index 7382053..0000000 --- a/src/main/resources/data/minecraft/tags/block/piglin_repellents.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "minecraft:soul_fire", - "minecraft:soul_torch", - "minecraft:soul_lantern", - "minecraft:soul_wall_torch", - "minecraft:soul_campfire" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/planks.json b/src/main/resources/data/minecraft/tags/block/planks.json deleted file mode 100644 index 55fa6f3..0000000 --- a/src/main/resources/data/minecraft/tags/block/planks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_planks", - "minecraft:spruce_planks", - "minecraft:birch_planks", - "minecraft:jungle_planks", - "minecraft:acacia_planks", - "minecraft:dark_oak_planks", - "minecraft:pale_oak_planks", - "minecraft:crimson_planks", - "minecraft:warped_planks", - "minecraft:mangrove_planks", - "minecraft:bamboo_planks", - "minecraft:cherry_planks" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/polar_bears_spawnable_on_alternate.json b/src/main/resources/data/minecraft/tags/block/polar_bears_spawnable_on_alternate.json deleted file mode 100644 index d08f7cc..0000000 --- a/src/main/resources/data/minecraft/tags/block/polar_bears_spawnable_on_alternate.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:ice" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/portals.json b/src/main/resources/data/minecraft/tags/block/portals.json deleted file mode 100644 index bb47430..0000000 --- a/src/main/resources/data/minecraft/tags/block/portals.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:nether_portal", - "minecraft:end_portal", - "minecraft:end_gateway" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/pressure_plates.json b/src/main/resources/data/minecraft/tags/block/pressure_plates.json deleted file mode 100644 index dbcd3df..0000000 --- a/src/main/resources/data/minecraft/tags/block/pressure_plates.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:light_weighted_pressure_plate", - "minecraft:heavy_weighted_pressure_plate", - "#minecraft:wooden_pressure_plates", - "#minecraft:stone_pressure_plates" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/prevent_mob_spawning_inside.json b/src/main/resources/data/minecraft/tags/block/prevent_mob_spawning_inside.json deleted file mode 100644 index 69f0511..0000000 --- a/src/main/resources/data/minecraft/tags/block/prevent_mob_spawning_inside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:rails" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/prevents_nearby_leaf_decay.json b/src/main/resources/data/minecraft/tags/block/prevents_nearby_leaf_decay.json deleted file mode 100644 index ff878bd..0000000 --- a/src/main/resources/data/minecraft/tags/block/prevents_nearby_leaf_decay.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:logs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/rabbits_spawnable_on.json b/src/main/resources/data/minecraft/tags/block/rabbits_spawnable_on.json deleted file mode 100644 index 4618ed4..0000000 --- a/src/main/resources/data/minecraft/tags/block/rabbits_spawnable_on.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:grass_block", - "minecraft:snow", - "minecraft:snow_block", - "minecraft:sand" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/rails.json b/src/main/resources/data/minecraft/tags/block/rails.json deleted file mode 100644 index ba7e2c1..0000000 --- a/src/main/resources/data/minecraft/tags/block/rails.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:rail", - "minecraft:powered_rail", - "minecraft:detector_rail", - "minecraft:activator_rail" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/redstone_ores.json b/src/main/resources/data/minecraft/tags/block/redstone_ores.json deleted file mode 100644 index 2fd184d..0000000 --- a/src/main/resources/data/minecraft/tags/block/redstone_ores.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:redstone_ore", - "minecraft:deepslate_redstone_ore" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/replaceable.json b/src/main/resources/data/minecraft/tags/block/replaceable.json deleted file mode 100644 index da05243..0000000 --- a/src/main/resources/data/minecraft/tags/block/replaceable.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "values": [ - "minecraft:air", - "minecraft:water", - "minecraft:lava", - "minecraft:short_grass", - "minecraft:fern", - "minecraft:dead_bush", - "minecraft:bush", - "minecraft:short_dry_grass", - "minecraft:tall_dry_grass", - "minecraft:seagrass", - "minecraft:tall_seagrass", - "minecraft:fire", - "minecraft:soul_fire", - "minecraft:snow", - "minecraft:vine", - "minecraft:glow_lichen", - "minecraft:resin_clump", - "minecraft:light", - "minecraft:tall_grass", - "minecraft:large_fern", - "minecraft:structure_void", - "minecraft:void_air", - "minecraft:cave_air", - "minecraft:bubble_column", - "minecraft:warped_roots", - "minecraft:nether_sprouts", - "minecraft:crimson_roots", - "minecraft:leaf_litter", - "minecraft:hanging_roots" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/replaceable_by_mushrooms.json b/src/main/resources/data/minecraft/tags/block/replaceable_by_mushrooms.json deleted file mode 100644 index d2894ad..0000000 --- a/src/main/resources/data/minecraft/tags/block/replaceable_by_mushrooms.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "values": [ - "#minecraft:leaves", - "#minecraft:small_flowers", - "minecraft:pale_moss_carpet", - "minecraft:short_grass", - "minecraft:fern", - "minecraft:dead_bush", - "minecraft:vine", - "minecraft:glow_lichen", - "minecraft:sunflower", - "minecraft:lilac", - "minecraft:rose_bush", - "minecraft:peony", - "minecraft:tall_grass", - "minecraft:large_fern", - "minecraft:hanging_roots", - "minecraft:pitcher_plant", - "minecraft:water", - "minecraft:seagrass", - "minecraft:tall_seagrass", - "minecraft:brown_mushroom", - "minecraft:red_mushroom", - "minecraft:brown_mushroom_block", - "minecraft:red_mushroom_block", - "minecraft:warped_roots", - "minecraft:nether_sprouts", - "minecraft:crimson_roots", - "minecraft:leaf_litter", - "minecraft:short_dry_grass", - "minecraft:tall_dry_grass", - "minecraft:bush", - "minecraft:firefly_bush" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/replaceable_by_trees.json b/src/main/resources/data/minecraft/tags/block/replaceable_by_trees.json deleted file mode 100644 index c04ade8..0000000 --- a/src/main/resources/data/minecraft/tags/block/replaceable_by_trees.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "values": [ - "#minecraft:leaves", - "#minecraft:small_flowers", - "minecraft:pale_moss_carpet", - "minecraft:short_grass", - "minecraft:fern", - "minecraft:dead_bush", - "minecraft:vine", - "minecraft:glow_lichen", - "minecraft:sunflower", - "minecraft:lilac", - "minecraft:rose_bush", - "minecraft:peony", - "minecraft:tall_grass", - "minecraft:large_fern", - "minecraft:hanging_roots", - "minecraft:pitcher_plant", - "minecraft:water", - "minecraft:seagrass", - "minecraft:tall_seagrass", - "minecraft:bush", - "minecraft:firefly_bush", - "minecraft:warped_roots", - "minecraft:nether_sprouts", - "minecraft:crimson_roots", - "minecraft:leaf_litter", - "minecraft:short_dry_grass", - "minecraft:tall_dry_grass" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/sand.json b/src/main/resources/data/minecraft/tags/block/sand.json deleted file mode 100644 index 43f90f3..0000000 --- a/src/main/resources/data/minecraft/tags/block/sand.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:sand", - "minecraft:red_sand", - "minecraft:suspicious_sand" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/saplings.json b/src/main/resources/data/minecraft/tags/block/saplings.json deleted file mode 100644 index 286497b..0000000 --- a/src/main/resources/data/minecraft/tags/block/saplings.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "values": [ - "minecraft:oak_sapling", - "minecraft:spruce_sapling", - "minecraft:birch_sapling", - "minecraft:jungle_sapling", - "minecraft:acacia_sapling", - "minecraft:dark_oak_sapling", - "minecraft:pale_oak_sapling", - "minecraft:azalea", - "minecraft:flowering_azalea", - "minecraft:mangrove_propagule", - "minecraft:cherry_sapling" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/sculk_replaceable.json b/src/main/resources/data/minecraft/tags/block/sculk_replaceable.json deleted file mode 100644 index 82ff632..0000000 --- a/src/main/resources/data/minecraft/tags/block/sculk_replaceable.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "values": [ - "#minecraft:base_stone_overworld", - "#minecraft:substrate_overworld", - "#minecraft:terracotta", - "#minecraft:nylium", - "#minecraft:base_stone_nether", - "minecraft:sand", - "minecraft:red_sand", - "minecraft:gravel", - "minecraft:soul_sand", - "minecraft:soul_soil", - "minecraft:calcite", - "minecraft:smooth_basalt", - "minecraft:clay", - "minecraft:dripstone_block", - "minecraft:end_stone", - "minecraft:red_sandstone", - "minecraft:sandstone" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/sculk_replaceable_world_gen.json b/src/main/resources/data/minecraft/tags/block/sculk_replaceable_world_gen.json deleted file mode 100644 index d1ee265..0000000 --- a/src/main/resources/data/minecraft/tags/block/sculk_replaceable_world_gen.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "#minecraft:sculk_replaceable", - "minecraft:deepslate_bricks", - "minecraft:deepslate_tiles", - "minecraft:cobbled_deepslate", - "minecraft:cracked_deepslate_bricks", - "minecraft:cracked_deepslate_tiles", - "minecraft:polished_deepslate" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/shulker_boxes.json b/src/main/resources/data/minecraft/tags/block/shulker_boxes.json deleted file mode 100644 index 525e33e..0000000 --- a/src/main/resources/data/minecraft/tags/block/shulker_boxes.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "values": [ - "minecraft:shulker_box", - "minecraft:black_shulker_box", - "minecraft:blue_shulker_box", - "minecraft:brown_shulker_box", - "minecraft:cyan_shulker_box", - "minecraft:gray_shulker_box", - "minecraft:green_shulker_box", - "minecraft:light_blue_shulker_box", - "minecraft:light_gray_shulker_box", - "minecraft:lime_shulker_box", - "minecraft:magenta_shulker_box", - "minecraft:orange_shulker_box", - "minecraft:pink_shulker_box", - "minecraft:purple_shulker_box", - "minecraft:red_shulker_box", - "minecraft:white_shulker_box", - "minecraft:yellow_shulker_box" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/signs.json b/src/main/resources/data/minecraft/tags/block/signs.json deleted file mode 100644 index 78c89c1..0000000 --- a/src/main/resources/data/minecraft/tags/block/signs.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:standing_signs", - "#minecraft:wall_signs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/slabs.json b/src/main/resources/data/minecraft/tags/block/slabs.json deleted file mode 100644 index ebc3f8e..0000000 --- a/src/main/resources/data/minecraft/tags/block/slabs.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "values": [ - "#minecraft:wooden_slabs", - "minecraft:bamboo_mosaic_slab", - "minecraft:stone_slab", - "minecraft:smooth_stone_slab", - "minecraft:stone_brick_slab", - "minecraft:sandstone_slab", - "minecraft:purpur_slab", - "minecraft:quartz_slab", - "minecraft:red_sandstone_slab", - "minecraft:brick_slab", - "minecraft:cobblestone_slab", - "minecraft:nether_brick_slab", - "minecraft:petrified_oak_slab", - "minecraft:prismarine_slab", - "minecraft:prismarine_brick_slab", - "minecraft:dark_prismarine_slab", - "minecraft:polished_granite_slab", - "minecraft:smooth_red_sandstone_slab", - "minecraft:mossy_stone_brick_slab", - "minecraft:polished_diorite_slab", - "minecraft:mossy_cobblestone_slab", - "minecraft:end_stone_brick_slab", - "minecraft:smooth_sandstone_slab", - "minecraft:smooth_quartz_slab", - "minecraft:granite_slab", - "minecraft:andesite_slab", - "minecraft:red_nether_brick_slab", - "minecraft:polished_andesite_slab", - "minecraft:diorite_slab", - "minecraft:cut_sandstone_slab", - "minecraft:cut_red_sandstone_slab", - "minecraft:blackstone_slab", - "minecraft:polished_blackstone_brick_slab", - "minecraft:polished_blackstone_slab", - "minecraft:cobbled_deepslate_slab", - "minecraft:polished_deepslate_slab", - "minecraft:deepslate_tile_slab", - "minecraft:deepslate_brick_slab", - "minecraft:waxed_weathered_cut_copper_slab", - "minecraft:waxed_exposed_cut_copper_slab", - "minecraft:waxed_cut_copper_slab", - "minecraft:oxidized_cut_copper_slab", - "minecraft:weathered_cut_copper_slab", - "minecraft:exposed_cut_copper_slab", - "minecraft:cut_copper_slab", - "minecraft:waxed_oxidized_cut_copper_slab", - "minecraft:mud_brick_slab", - "minecraft:tuff_slab", - "minecraft:polished_tuff_slab", - "minecraft:tuff_brick_slab", - "minecraft:resin_brick_slab" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/small_flowers.json b/src/main/resources/data/minecraft/tags/block/small_flowers.json deleted file mode 100644 index 14472b0..0000000 --- a/src/main/resources/data/minecraft/tags/block/small_flowers.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "values": [ - "minecraft:dandelion", - "minecraft:open_eyeblossom", - "minecraft:poppy", - "minecraft:blue_orchid", - "minecraft:allium", - "minecraft:azure_bluet", - "minecraft:red_tulip", - "minecraft:orange_tulip", - "minecraft:white_tulip", - "minecraft:pink_tulip", - "minecraft:oxeye_daisy", - "minecraft:cornflower", - "minecraft:lily_of_the_valley", - "minecraft:wither_rose", - "minecraft:torchflower", - "minecraft:closed_eyeblossom", - "minecraft:golden_dandelion" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/smelts_to_glass.json b/src/main/resources/data/minecraft/tags/block/smelts_to_glass.json deleted file mode 100644 index 3d8220e..0000000 --- a/src/main/resources/data/minecraft/tags/block/smelts_to_glass.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:sand", - "minecraft:red_sand" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/snaps_goat_horn.json b/src/main/resources/data/minecraft/tags/block/snaps_goat_horn.json deleted file mode 100644 index 910be36..0000000 --- a/src/main/resources/data/minecraft/tags/block/snaps_goat_horn.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "#minecraft:overworld_natural_logs", - "minecraft:stone", - "minecraft:packed_ice", - "minecraft:iron_ore", - "minecraft:coal_ore", - "minecraft:copper_ore", - "minecraft:emerald_ore" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/sniffer_diggable_block.json b/src/main/resources/data/minecraft/tags/block/sniffer_diggable_block.json deleted file mode 100644 index c6868b4..0000000 --- a/src/main/resources/data/minecraft/tags/block/sniffer_diggable_block.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "#minecraft:dirt", - "#minecraft:mud", - "#minecraft:moss_blocks", - "minecraft:grass_block", - "minecraft:podzol" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/sniffer_egg_hatch_boost.json b/src/main/resources/data/minecraft/tags/block/sniffer_egg_hatch_boost.json deleted file mode 100644 index a7ff8e1..0000000 --- a/src/main/resources/data/minecraft/tags/block/sniffer_egg_hatch_boost.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:moss_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/snow.json b/src/main/resources/data/minecraft/tags/block/snow.json deleted file mode 100644 index 498129d..0000000 --- a/src/main/resources/data/minecraft/tags/block/snow.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:snow", - "minecraft:snow_block", - "minecraft:powder_snow" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/soul_fire_base_blocks.json b/src/main/resources/data/minecraft/tags/block/soul_fire_base_blocks.json deleted file mode 100644 index e8aa4af..0000000 --- a/src/main/resources/data/minecraft/tags/block/soul_fire_base_blocks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:soul_sand", - "minecraft:soul_soil" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/soul_speed_blocks.json b/src/main/resources/data/minecraft/tags/block/soul_speed_blocks.json deleted file mode 100644 index e8aa4af..0000000 --- a/src/main/resources/data/minecraft/tags/block/soul_speed_blocks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:soul_sand", - "minecraft:soul_soil" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/spruce_logs.json b/src/main/resources/data/minecraft/tags/block/spruce_logs.json deleted file mode 100644 index a800842..0000000 --- a/src/main/resources/data/minecraft/tags/block/spruce_logs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:spruce_log", - "minecraft:spruce_wood", - "minecraft:stripped_spruce_log", - "minecraft:stripped_spruce_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/stairs.json b/src/main/resources/data/minecraft/tags/block/stairs.json deleted file mode 100644 index fd135fc..0000000 --- a/src/main/resources/data/minecraft/tags/block/stairs.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "values": [ - "#minecraft:wooden_stairs", - "minecraft:bamboo_mosaic_stairs", - "minecraft:cobblestone_stairs", - "minecraft:sandstone_stairs", - "minecraft:nether_brick_stairs", - "minecraft:stone_brick_stairs", - "minecraft:brick_stairs", - "minecraft:purpur_stairs", - "minecraft:quartz_stairs", - "minecraft:red_sandstone_stairs", - "minecraft:prismarine_brick_stairs", - "minecraft:prismarine_stairs", - "minecraft:dark_prismarine_stairs", - "minecraft:polished_granite_stairs", - "minecraft:smooth_red_sandstone_stairs", - "minecraft:mossy_stone_brick_stairs", - "minecraft:polished_diorite_stairs", - "minecraft:mossy_cobblestone_stairs", - "minecraft:end_stone_brick_stairs", - "minecraft:stone_stairs", - "minecraft:smooth_sandstone_stairs", - "minecraft:smooth_quartz_stairs", - "minecraft:granite_stairs", - "minecraft:andesite_stairs", - "minecraft:red_nether_brick_stairs", - "minecraft:polished_andesite_stairs", - "minecraft:diorite_stairs", - "minecraft:blackstone_stairs", - "minecraft:polished_blackstone_brick_stairs", - "minecraft:polished_blackstone_stairs", - "minecraft:cobbled_deepslate_stairs", - "minecraft:polished_deepslate_stairs", - "minecraft:deepslate_tile_stairs", - "minecraft:deepslate_brick_stairs", - "minecraft:oxidized_cut_copper_stairs", - "minecraft:weathered_cut_copper_stairs", - "minecraft:exposed_cut_copper_stairs", - "minecraft:cut_copper_stairs", - "minecraft:waxed_weathered_cut_copper_stairs", - "minecraft:waxed_exposed_cut_copper_stairs", - "minecraft:waxed_cut_copper_stairs", - "minecraft:waxed_oxidized_cut_copper_stairs", - "minecraft:mud_brick_stairs", - "minecraft:tuff_stairs", - "minecraft:polished_tuff_stairs", - "minecraft:tuff_brick_stairs", - "minecraft:resin_brick_stairs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/standing_signs.json b/src/main/resources/data/minecraft/tags/block/standing_signs.json deleted file mode 100644 index 84fda37..0000000 --- a/src/main/resources/data/minecraft/tags/block/standing_signs.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_sign", - "minecraft:spruce_sign", - "minecraft:birch_sign", - "minecraft:acacia_sign", - "minecraft:jungle_sign", - "minecraft:dark_oak_sign", - "minecraft:pale_oak_sign", - "minecraft:crimson_sign", - "minecraft:warped_sign", - "minecraft:mangrove_sign", - "minecraft:bamboo_sign", - "minecraft:cherry_sign" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/stone_bricks.json b/src/main/resources/data/minecraft/tags/block/stone_bricks.json deleted file mode 100644 index 973064b..0000000 --- a/src/main/resources/data/minecraft/tags/block/stone_bricks.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:stone_bricks", - "minecraft:mossy_stone_bricks", - "minecraft:cracked_stone_bricks", - "minecraft:chiseled_stone_bricks" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/stone_buttons.json b/src/main/resources/data/minecraft/tags/block/stone_buttons.json deleted file mode 100644 index decb592..0000000 --- a/src/main/resources/data/minecraft/tags/block/stone_buttons.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:stone_button", - "minecraft:polished_blackstone_button" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/stone_ore_replaceables.json b/src/main/resources/data/minecraft/tags/block/stone_ore_replaceables.json deleted file mode 100644 index 0269200..0000000 --- a/src/main/resources/data/minecraft/tags/block/stone_ore_replaceables.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:stone", - "minecraft:granite", - "minecraft:diorite", - "minecraft:andesite" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/stone_pressure_plates.json b/src/main/resources/data/minecraft/tags/block/stone_pressure_plates.json deleted file mode 100644 index ca6a4e9..0000000 --- a/src/main/resources/data/minecraft/tags/block/stone_pressure_plates.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:stone_pressure_plate", - "minecraft:polished_blackstone_pressure_plate" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/strider_warm_blocks.json b/src/main/resources/data/minecraft/tags/block/strider_warm_blocks.json deleted file mode 100644 index 2756283..0000000 --- a/src/main/resources/data/minecraft/tags/block/strider_warm_blocks.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:lava" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/substrate_overworld.json b/src/main/resources/data/minecraft/tags/block/substrate_overworld.json deleted file mode 100644 index 275f8ba..0000000 --- a/src/main/resources/data/minecraft/tags/block/substrate_overworld.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "#minecraft:dirt", - "#minecraft:mud", - "#minecraft:moss_blocks", - "#minecraft:grass_blocks" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/support_override_cactus_flower.json b/src/main/resources/data/minecraft/tags/block/support_override_cactus_flower.json deleted file mode 100644 index 7c4a3eb..0000000 --- a/src/main/resources/data/minecraft/tags/block/support_override_cactus_flower.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:cactus", - "minecraft:farmland" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/support_override_snow_layer.json b/src/main/resources/data/minecraft/tags/block/support_override_snow_layer.json deleted file mode 100644 index a06843a..0000000 --- a/src/main/resources/data/minecraft/tags/block/support_override_snow_layer.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:honey_block", - "minecraft:soul_sand", - "minecraft:mud" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_azalea.json b/src/main/resources/data/minecraft/tags/block/supports_azalea.json deleted file mode 100644 index a546599..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_azalea.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:supports_vegetation", - "minecraft:clay" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_bamboo.json b/src/main/resources/data/minecraft/tags/block/supports_bamboo.json deleted file mode 100644 index 50f3cb5..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_bamboo.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "#minecraft:sand", - "#minecraft:substrate_overworld", - "minecraft:bamboo", - "minecraft:bamboo_sapling", - "minecraft:gravel", - "minecraft:suspicious_gravel" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_big_dripleaf.json b/src/main/resources/data/minecraft/tags/block/supports_big_dripleaf.json deleted file mode 100644 index 5993a4a..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_big_dripleaf.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "values": [ - "#minecraft:supports_small_dripleaf", - "minecraft:dirt", - "minecraft:grass_block", - "minecraft:podzol", - "minecraft:coarse_dirt", - "minecraft:mycelium", - "minecraft:rooted_dirt", - "minecraft:moss_block", - "minecraft:mud", - "minecraft:muddy_mangrove_roots", - "minecraft:farmland" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_cactus.json b/src/main/resources/data/minecraft/tags/block/supports_cactus.json deleted file mode 100644 index 3dd992b..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_cactus.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:sand" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_chorus_flower.json b/src/main/resources/data/minecraft/tags/block/supports_chorus_flower.json deleted file mode 100644 index f2d1137..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_chorus_flower.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:end_stone" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_chorus_plant.json b/src/main/resources/data/minecraft/tags/block/supports_chorus_plant.json deleted file mode 100644 index f2d1137..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_chorus_plant.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:end_stone" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_cocoa.json b/src/main/resources/data/minecraft/tags/block/supports_cocoa.json deleted file mode 100644 index ea0a45e..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_cocoa.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:jungle_logs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_crimson_fungus.json b/src/main/resources/data/minecraft/tags/block/supports_crimson_fungus.json deleted file mode 100644 index 4cd14f3..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_crimson_fungus.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:supports_warped_fungus" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_crimson_roots.json b/src/main/resources/data/minecraft/tags/block/supports_crimson_roots.json deleted file mode 100644 index a910714..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_crimson_roots.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:supports_warped_roots" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_crops.json b/src/main/resources/data/minecraft/tags/block/supports_crops.json deleted file mode 100644 index ea3a8d6..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_crops.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:farmland" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_dry_vegetation.json b/src/main/resources/data/minecraft/tags/block/supports_dry_vegetation.json deleted file mode 100644 index d554c50..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_dry_vegetation.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:sand", - "#minecraft:terracotta", - "#minecraft:supports_vegetation" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_frogspawn.json b/src/main/resources/data/minecraft/tags/block/supports_frogspawn.json deleted file mode 100644 index f72d209..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_frogspawn.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "values": [] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_hanging_mangrove_propagule.json b/src/main/resources/data/minecraft/tags/block/supports_hanging_mangrove_propagule.json deleted file mode 100644 index badb3d3..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_hanging_mangrove_propagule.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:mangrove_leaves" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_lily_pad.json b/src/main/resources/data/minecraft/tags/block/supports_lily_pad.json deleted file mode 100644 index 234e533..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_lily_pad.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:ice", - "minecraft:frosted_ice" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_mangrove_propagule.json b/src/main/resources/data/minecraft/tags/block/supports_mangrove_propagule.json deleted file mode 100644 index a546599..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_mangrove_propagule.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:supports_vegetation", - "minecraft:clay" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_melon_stem.json b/src/main/resources/data/minecraft/tags/block/supports_melon_stem.json deleted file mode 100644 index 93e7563..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_melon_stem.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:supports_stem_crops" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_melon_stem_fruit.json b/src/main/resources/data/minecraft/tags/block/supports_melon_stem_fruit.json deleted file mode 100644 index 204ae8f..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_melon_stem_fruit.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:supports_stem_fruit" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_nether_sprouts.json b/src/main/resources/data/minecraft/tags/block/supports_nether_sprouts.json deleted file mode 100644 index 09c95c6..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_nether_sprouts.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:supports_vegetation", - "#minecraft:nylium", - "minecraft:soul_soil" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_nether_wart.json b/src/main/resources/data/minecraft/tags/block/supports_nether_wart.json deleted file mode 100644 index 355a91f..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_nether_wart.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:soul_sand" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_pumpkin_stem.json b/src/main/resources/data/minecraft/tags/block/supports_pumpkin_stem.json deleted file mode 100644 index 93e7563..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_pumpkin_stem.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:supports_stem_crops" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_pumpkin_stem_fruit.json b/src/main/resources/data/minecraft/tags/block/supports_pumpkin_stem_fruit.json deleted file mode 100644 index 204ae8f..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_pumpkin_stem_fruit.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:supports_stem_fruit" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_small_dripleaf.json b/src/main/resources/data/minecraft/tags/block/supports_small_dripleaf.json deleted file mode 100644 index 57fb031..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_small_dripleaf.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:clay", - "minecraft:moss_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_stem_crops.json b/src/main/resources/data/minecraft/tags/block/supports_stem_crops.json deleted file mode 100644 index 16c9e50..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_stem_crops.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:supports_crops" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_stem_fruit.json b/src/main/resources/data/minecraft/tags/block/supports_stem_fruit.json deleted file mode 100644 index f3fadb4..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_stem_fruit.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:supports_vegetation" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_sugar_cane.json b/src/main/resources/data/minecraft/tags/block/supports_sugar_cane.json deleted file mode 100644 index 07e6f7e..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_sugar_cane.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:substrate_overworld", - "#minecraft:sand" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_sugar_cane_adjacently.json b/src/main/resources/data/minecraft/tags/block/supports_sugar_cane_adjacently.json deleted file mode 100644 index 3434ccf..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_sugar_cane_adjacently.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:frosted_ice" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_vegetation.json b/src/main/resources/data/minecraft/tags/block/supports_vegetation.json deleted file mode 100644 index 8d67645..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_vegetation.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:substrate_overworld", - "minecraft:farmland" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_warped_fungus.json b/src/main/resources/data/minecraft/tags/block/supports_warped_fungus.json deleted file mode 100644 index 0f115fa..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_warped_fungus.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "#minecraft:supports_vegetation", - "#minecraft:nylium", - "minecraft:mycelium", - "minecraft:soul_soil" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_warped_roots.json b/src/main/resources/data/minecraft/tags/block/supports_warped_roots.json deleted file mode 100644 index 09c95c6..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_warped_roots.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:supports_vegetation", - "#minecraft:nylium", - "minecraft:soul_soil" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/supports_wither_rose.json b/src/main/resources/data/minecraft/tags/block/supports_wither_rose.json deleted file mode 100644 index f028c89..0000000 --- a/src/main/resources/data/minecraft/tags/block/supports_wither_rose.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "#minecraft:supports_vegetation", - "minecraft:netherrack", - "minecraft:soul_sand", - "minecraft:soul_soil" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/sword_efficient.json b/src/main/resources/data/minecraft/tags/block/sword_efficient.json deleted file mode 100644 index bdfcc89..0000000 --- a/src/main/resources/data/minecraft/tags/block/sword_efficient.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "#minecraft:leaves", - "minecraft:vine", - "minecraft:glow_lichen", - "minecraft:pumpkin", - "minecraft:carved_pumpkin", - "minecraft:jack_o_lantern", - "minecraft:melon", - "minecraft:cocoa", - "minecraft:big_dripleaf", - "minecraft:big_dripleaf_stem", - "minecraft:chorus_plant", - "minecraft:chorus_flower" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/sword_instantly_mines.json b/src/main/resources/data/minecraft/tags/block/sword_instantly_mines.json deleted file mode 100644 index 5059beb..0000000 --- a/src/main/resources/data/minecraft/tags/block/sword_instantly_mines.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:bamboo", - "minecraft:bamboo_sapling" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/terracotta.json b/src/main/resources/data/minecraft/tags/block/terracotta.json deleted file mode 100644 index 27aac67..0000000 --- a/src/main/resources/data/minecraft/tags/block/terracotta.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "values": [ - "minecraft:terracotta", - "minecraft:white_terracotta", - "minecraft:orange_terracotta", - "minecraft:magenta_terracotta", - "minecraft:light_blue_terracotta", - "minecraft:yellow_terracotta", - "minecraft:lime_terracotta", - "minecraft:pink_terracotta", - "minecraft:gray_terracotta", - "minecraft:light_gray_terracotta", - "minecraft:cyan_terracotta", - "minecraft:purple_terracotta", - "minecraft:blue_terracotta", - "minecraft:brown_terracotta", - "minecraft:green_terracotta", - "minecraft:red_terracotta", - "minecraft:black_terracotta" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/trail_ruins_replaceable.json b/src/main/resources/data/minecraft/tags/block/trail_ruins_replaceable.json deleted file mode 100644 index f6968bf..0000000 --- a/src/main/resources/data/minecraft/tags/block/trail_ruins_replaceable.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:gravel" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/trapdoors.json b/src/main/resources/data/minecraft/tags/block/trapdoors.json deleted file mode 100644 index 269e4b8..0000000 --- a/src/main/resources/data/minecraft/tags/block/trapdoors.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "values": [ - "#minecraft:wooden_trapdoors", - "minecraft:iron_trapdoor", - "minecraft:copper_trapdoor", - "minecraft:exposed_copper_trapdoor", - "minecraft:weathered_copper_trapdoor", - "minecraft:oxidized_copper_trapdoor", - "minecraft:waxed_copper_trapdoor", - "minecraft:waxed_exposed_copper_trapdoor", - "minecraft:waxed_weathered_copper_trapdoor", - "minecraft:waxed_oxidized_copper_trapdoor" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/triggers_ambient_desert_dry_vegetation_block_sounds.json b/src/main/resources/data/minecraft/tags/block/triggers_ambient_desert_dry_vegetation_block_sounds.json deleted file mode 100644 index abb9757..0000000 --- a/src/main/resources/data/minecraft/tags/block/triggers_ambient_desert_dry_vegetation_block_sounds.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:terracotta", - "minecraft:sand", - "minecraft:red_sand" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/triggers_ambient_desert_sand_block_sounds.json b/src/main/resources/data/minecraft/tags/block/triggers_ambient_desert_sand_block_sounds.json deleted file mode 100644 index 3d8220e..0000000 --- a/src/main/resources/data/minecraft/tags/block/triggers_ambient_desert_sand_block_sounds.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:sand", - "minecraft:red_sand" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/triggers_ambient_dried_ghast_block_sounds.json b/src/main/resources/data/minecraft/tags/block/triggers_ambient_dried_ghast_block_sounds.json deleted file mode 100644 index e8aa4af..0000000 --- a/src/main/resources/data/minecraft/tags/block/triggers_ambient_dried_ghast_block_sounds.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:soul_sand", - "minecraft:soul_soil" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/underwater_bonemeals.json b/src/main/resources/data/minecraft/tags/block/underwater_bonemeals.json deleted file mode 100644 index 9115b1b..0000000 --- a/src/main/resources/data/minecraft/tags/block/underwater_bonemeals.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:seagrass", - "#minecraft:corals", - "#minecraft:wall_corals" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/unstable_bottom_center.json b/src/main/resources/data/minecraft/tags/block/unstable_bottom_center.json deleted file mode 100644 index 4a5113e..0000000 --- a/src/main/resources/data/minecraft/tags/block/unstable_bottom_center.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:fence_gates" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/valid_spawn.json b/src/main/resources/data/minecraft/tags/block/valid_spawn.json deleted file mode 100644 index 00f8571..0000000 --- a/src/main/resources/data/minecraft/tags/block/valid_spawn.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:grass_block", - "minecraft:podzol" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/vibration_resonators.json b/src/main/resources/data/minecraft/tags/block/vibration_resonators.json deleted file mode 100644 index 7f66725..0000000 --- a/src/main/resources/data/minecraft/tags/block/vibration_resonators.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:amethyst_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/wall_corals.json b/src/main/resources/data/minecraft/tags/block/wall_corals.json deleted file mode 100644 index 632d46a..0000000 --- a/src/main/resources/data/minecraft/tags/block/wall_corals.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "minecraft:tube_coral_wall_fan", - "minecraft:brain_coral_wall_fan", - "minecraft:bubble_coral_wall_fan", - "minecraft:fire_coral_wall_fan", - "minecraft:horn_coral_wall_fan" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/wall_hanging_signs.json b/src/main/resources/data/minecraft/tags/block/wall_hanging_signs.json deleted file mode 100644 index 4afc13d..0000000 --- a/src/main/resources/data/minecraft/tags/block/wall_hanging_signs.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_wall_hanging_sign", - "minecraft:spruce_wall_hanging_sign", - "minecraft:birch_wall_hanging_sign", - "minecraft:acacia_wall_hanging_sign", - "minecraft:cherry_wall_hanging_sign", - "minecraft:jungle_wall_hanging_sign", - "minecraft:dark_oak_wall_hanging_sign", - "minecraft:pale_oak_wall_hanging_sign", - "minecraft:crimson_wall_hanging_sign", - "minecraft:warped_wall_hanging_sign", - "minecraft:mangrove_wall_hanging_sign", - "minecraft:bamboo_wall_hanging_sign" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/wall_post_override.json b/src/main/resources/data/minecraft/tags/block/wall_post_override.json deleted file mode 100644 index f0b8ac0..0000000 --- a/src/main/resources/data/minecraft/tags/block/wall_post_override.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "values": [ - "minecraft:torch", - "minecraft:soul_torch", - "minecraft:redstone_torch", - "minecraft:copper_torch", - "minecraft:tripwire", - "#minecraft:signs", - "#minecraft:banners", - "#minecraft:pressure_plates", - "minecraft:cactus_flower" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/wall_signs.json b/src/main/resources/data/minecraft/tags/block/wall_signs.json deleted file mode 100644 index 6f430df..0000000 --- a/src/main/resources/data/minecraft/tags/block/wall_signs.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_wall_sign", - "minecraft:spruce_wall_sign", - "minecraft:birch_wall_sign", - "minecraft:acacia_wall_sign", - "minecraft:jungle_wall_sign", - "minecraft:dark_oak_wall_sign", - "minecraft:pale_oak_wall_sign", - "minecraft:crimson_wall_sign", - "minecraft:warped_wall_sign", - "minecraft:mangrove_wall_sign", - "minecraft:bamboo_wall_sign", - "minecraft:cherry_wall_sign" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/walls.json b/src/main/resources/data/minecraft/tags/block/walls.json deleted file mode 100644 index aa80022..0000000 --- a/src/main/resources/data/minecraft/tags/block/walls.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "values": [ - "minecraft:cobblestone_wall", - "minecraft:mossy_cobblestone_wall", - "minecraft:brick_wall", - "minecraft:prismarine_wall", - "minecraft:red_sandstone_wall", - "minecraft:mossy_stone_brick_wall", - "minecraft:granite_wall", - "minecraft:stone_brick_wall", - "minecraft:nether_brick_wall", - "minecraft:andesite_wall", - "minecraft:red_nether_brick_wall", - "minecraft:sandstone_wall", - "minecraft:end_stone_brick_wall", - "minecraft:diorite_wall", - "minecraft:blackstone_wall", - "minecraft:polished_blackstone_brick_wall", - "minecraft:polished_blackstone_wall", - "minecraft:cobbled_deepslate_wall", - "minecraft:polished_deepslate_wall", - "minecraft:deepslate_tile_wall", - "minecraft:deepslate_brick_wall", - "minecraft:mud_brick_wall", - "minecraft:tuff_wall", - "minecraft:polished_tuff_wall", - "minecraft:tuff_brick_wall", - "minecraft:resin_brick_wall" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/warped_stems.json b/src/main/resources/data/minecraft/tags/block/warped_stems.json deleted file mode 100644 index 4da6386..0000000 --- a/src/main/resources/data/minecraft/tags/block/warped_stems.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:warped_stem", - "minecraft:stripped_warped_stem", - "minecraft:warped_hyphae", - "minecraft:stripped_warped_hyphae" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/wart_blocks.json b/src/main/resources/data/minecraft/tags/block/wart_blocks.json deleted file mode 100644 index bab2679..0000000 --- a/src/main/resources/data/minecraft/tags/block/wart_blocks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:nether_wart_block", - "minecraft:warped_wart_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/wither_immune.json b/src/main/resources/data/minecraft/tags/block/wither_immune.json deleted file mode 100644 index 5c14361..0000000 --- a/src/main/resources/data/minecraft/tags/block/wither_immune.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "values": [ - "minecraft:barrier", - "minecraft:bedrock", - "minecraft:end_portal", - "minecraft:end_portal_frame", - "minecraft:end_gateway", - "minecraft:command_block", - "minecraft:repeating_command_block", - "minecraft:chain_command_block", - "minecraft:structure_block", - "minecraft:jigsaw", - "minecraft:moving_piston", - "minecraft:light", - "minecraft:reinforced_deepslate", - "minecraft:test_block", - "minecraft:test_instance_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/wither_summon_base_blocks.json b/src/main/resources/data/minecraft/tags/block/wither_summon_base_blocks.json deleted file mode 100644 index e8aa4af..0000000 --- a/src/main/resources/data/minecraft/tags/block/wither_summon_base_blocks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:soul_sand", - "minecraft:soul_soil" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/wolves_spawnable_on.json b/src/main/resources/data/minecraft/tags/block/wolves_spawnable_on.json deleted file mode 100644 index 8a9f41e..0000000 --- a/src/main/resources/data/minecraft/tags/block/wolves_spawnable_on.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "minecraft:grass_block", - "minecraft:snow", - "minecraft:snow_block", - "minecraft:coarse_dirt", - "minecraft:podzol" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/wooden_buttons.json b/src/main/resources/data/minecraft/tags/block/wooden_buttons.json deleted file mode 100644 index f6646d7..0000000 --- a/src/main/resources/data/minecraft/tags/block/wooden_buttons.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_button", - "minecraft:spruce_button", - "minecraft:birch_button", - "minecraft:jungle_button", - "minecraft:acacia_button", - "minecraft:dark_oak_button", - "minecraft:pale_oak_button", - "minecraft:crimson_button", - "minecraft:warped_button", - "minecraft:mangrove_button", - "minecraft:bamboo_button", - "minecraft:cherry_button" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/wooden_doors.json b/src/main/resources/data/minecraft/tags/block/wooden_doors.json deleted file mode 100644 index be8b7de..0000000 --- a/src/main/resources/data/minecraft/tags/block/wooden_doors.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_door", - "minecraft:spruce_door", - "minecraft:birch_door", - "minecraft:jungle_door", - "minecraft:acacia_door", - "minecraft:dark_oak_door", - "minecraft:pale_oak_door", - "minecraft:crimson_door", - "minecraft:warped_door", - "minecraft:mangrove_door", - "minecraft:bamboo_door", - "minecraft:cherry_door" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/wooden_fences.json b/src/main/resources/data/minecraft/tags/block/wooden_fences.json deleted file mode 100644 index dc05158..0000000 --- a/src/main/resources/data/minecraft/tags/block/wooden_fences.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_fence", - "minecraft:acacia_fence", - "minecraft:dark_oak_fence", - "minecraft:pale_oak_fence", - "minecraft:spruce_fence", - "minecraft:birch_fence", - "minecraft:jungle_fence", - "minecraft:crimson_fence", - "minecraft:warped_fence", - "minecraft:mangrove_fence", - "minecraft:bamboo_fence", - "minecraft:cherry_fence" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/wooden_pressure_plates.json b/src/main/resources/data/minecraft/tags/block/wooden_pressure_plates.json deleted file mode 100644 index 008f006..0000000 --- a/src/main/resources/data/minecraft/tags/block/wooden_pressure_plates.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_pressure_plate", - "minecraft:spruce_pressure_plate", - "minecraft:birch_pressure_plate", - "minecraft:jungle_pressure_plate", - "minecraft:acacia_pressure_plate", - "minecraft:dark_oak_pressure_plate", - "minecraft:pale_oak_pressure_plate", - "minecraft:crimson_pressure_plate", - "minecraft:warped_pressure_plate", - "minecraft:mangrove_pressure_plate", - "minecraft:bamboo_pressure_plate", - "minecraft:cherry_pressure_plate" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/wooden_shelves.json b/src/main/resources/data/minecraft/tags/block/wooden_shelves.json deleted file mode 100644 index eb26547..0000000 --- a/src/main/resources/data/minecraft/tags/block/wooden_shelves.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:acacia_shelf", - "minecraft:bamboo_shelf", - "minecraft:birch_shelf", - "minecraft:cherry_shelf", - "minecraft:crimson_shelf", - "minecraft:dark_oak_shelf", - "minecraft:jungle_shelf", - "minecraft:mangrove_shelf", - "minecraft:oak_shelf", - "minecraft:pale_oak_shelf", - "minecraft:spruce_shelf", - "minecraft:warped_shelf" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/wooden_slabs.json b/src/main/resources/data/minecraft/tags/block/wooden_slabs.json deleted file mode 100644 index 795bd3b..0000000 --- a/src/main/resources/data/minecraft/tags/block/wooden_slabs.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_slab", - "minecraft:spruce_slab", - "minecraft:birch_slab", - "minecraft:jungle_slab", - "minecraft:acacia_slab", - "minecraft:dark_oak_slab", - "minecraft:pale_oak_slab", - "minecraft:crimson_slab", - "minecraft:warped_slab", - "minecraft:mangrove_slab", - "minecraft:bamboo_slab", - "minecraft:cherry_slab" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/wooden_stairs.json b/src/main/resources/data/minecraft/tags/block/wooden_stairs.json deleted file mode 100644 index 86239e4..0000000 --- a/src/main/resources/data/minecraft/tags/block/wooden_stairs.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_stairs", - "minecraft:spruce_stairs", - "minecraft:birch_stairs", - "minecraft:jungle_stairs", - "minecraft:acacia_stairs", - "minecraft:dark_oak_stairs", - "minecraft:pale_oak_stairs", - "minecraft:crimson_stairs", - "minecraft:warped_stairs", - "minecraft:mangrove_stairs", - "minecraft:bamboo_stairs", - "minecraft:cherry_stairs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/wooden_trapdoors.json b/src/main/resources/data/minecraft/tags/block/wooden_trapdoors.json deleted file mode 100644 index 050e05f..0000000 --- a/src/main/resources/data/minecraft/tags/block/wooden_trapdoors.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:acacia_trapdoor", - "minecraft:birch_trapdoor", - "minecraft:dark_oak_trapdoor", - "minecraft:pale_oak_trapdoor", - "minecraft:jungle_trapdoor", - "minecraft:oak_trapdoor", - "minecraft:spruce_trapdoor", - "minecraft:crimson_trapdoor", - "minecraft:warped_trapdoor", - "minecraft:mangrove_trapdoor", - "minecraft:bamboo_trapdoor", - "minecraft:cherry_trapdoor" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/wool.json b/src/main/resources/data/minecraft/tags/block/wool.json deleted file mode 100644 index bb52fac..0000000 --- a/src/main/resources/data/minecraft/tags/block/wool.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "values": [ - "minecraft:white_wool", - "minecraft:orange_wool", - "minecraft:magenta_wool", - "minecraft:light_blue_wool", - "minecraft:yellow_wool", - "minecraft:lime_wool", - "minecraft:pink_wool", - "minecraft:gray_wool", - "minecraft:light_gray_wool", - "minecraft:cyan_wool", - "minecraft:purple_wool", - "minecraft:blue_wool", - "minecraft:brown_wool", - "minecraft:green_wool", - "minecraft:red_wool", - "minecraft:black_wool" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/block/wool_carpets.json b/src/main/resources/data/minecraft/tags/block/wool_carpets.json deleted file mode 100644 index 4dec465..0000000 --- a/src/main/resources/data/minecraft/tags/block/wool_carpets.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "values": [ - "minecraft:white_carpet", - "minecraft:orange_carpet", - "minecraft:magenta_carpet", - "minecraft:light_blue_carpet", - "minecraft:yellow_carpet", - "minecraft:lime_carpet", - "minecraft:pink_carpet", - "minecraft:gray_carpet", - "minecraft:light_gray_carpet", - "minecraft:cyan_carpet", - "minecraft:purple_carpet", - "minecraft:blue_carpet", - "minecraft:brown_carpet", - "minecraft:green_carpet", - "minecraft:red_carpet", - "minecraft:black_carpet" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/damage_type/burn_from_stepping.json b/src/main/resources/data/minecraft/tags/damage_type/burn_from_stepping.json index 3cebb3f..785b433 100644 --- a/src/main/resources/data/minecraft/tags/damage_type/burn_from_stepping.json +++ b/src/main/resources/data/minecraft/tags/damage_type/burn_from_stepping.json @@ -1,6 +1,7 @@ { "values": [ "minecraft:campfire", - "minecraft:hot_floor" + "minecraft:hot_floor", + "minecraft:sulfur_cube_hot" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/damage_type/bypasses_shield.json b/src/main/resources/data/minecraft/tags/damage_type/bypasses_shield.json index e5c6ff1..85b61a2 100644 --- a/src/main/resources/data/minecraft/tags/damage_type/bypasses_shield.json +++ b/src/main/resources/data/minecraft/tags/damage_type/bypasses_shield.json @@ -7,6 +7,7 @@ "minecraft:falling_anvil", "minecraft:falling_stalactite", "minecraft:hot_floor", + "minecraft:sulfur_cube_hot", "minecraft:in_fire", "minecraft:lava", "minecraft:lightning_bolt", diff --git a/src/main/resources/data/minecraft/tags/damage_type/is_fire.json b/src/main/resources/data/minecraft/tags/damage_type/is_fire.json index 3333f2d..af154e9 100644 --- a/src/main/resources/data/minecraft/tags/damage_type/is_fire.json +++ b/src/main/resources/data/minecraft/tags/damage_type/is_fire.json @@ -5,6 +5,7 @@ "minecraft:on_fire", "minecraft:lava", "minecraft:hot_floor", + "minecraft:sulfur_cube_hot", "minecraft:unattributed_fireball", "minecraft:fireball" ] diff --git a/src/main/resources/data/minecraft/tags/damage_type/no_knockback.json b/src/main/resources/data/minecraft/tags/damage_type/no_knockback.json index e78fba7..1fd4ffa 100644 --- a/src/main/resources/data/minecraft/tags/damage_type/no_knockback.json +++ b/src/main/resources/data/minecraft/tags/damage_type/no_knockback.json @@ -8,6 +8,7 @@ "minecraft:on_fire", "minecraft:lava", "minecraft:hot_floor", + "minecraft:sulfur_cube_hot", "minecraft:in_wall", "minecraft:cramming", "minecraft:drown", diff --git a/src/main/resources/data/minecraft/tags/damage_type/panic_environmental_causes.json b/src/main/resources/data/minecraft/tags/damage_type/panic_environmental_causes.json index fb87211..f48368a 100644 --- a/src/main/resources/data/minecraft/tags/damage_type/panic_environmental_causes.json +++ b/src/main/resources/data/minecraft/tags/damage_type/panic_environmental_causes.json @@ -3,6 +3,7 @@ "minecraft:cactus", "minecraft:freeze", "minecraft:hot_floor", + "minecraft:sulfur_cube_hot", "minecraft:in_fire", "minecraft:lava", "minecraft:lightning_bolt", diff --git a/src/main/resources/data/minecraft/tags/damage_type/sulfur_cube_with_block_immune_to.json b/src/main/resources/data/minecraft/tags/damage_type/sulfur_cube_with_block_immune_to.json new file mode 100644 index 0000000..39b2652 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/damage_type/sulfur_cube_with_block_immune_to.json @@ -0,0 +1,28 @@ +{ + "values": [ + "minecraft:arrow", + "minecraft:cactus", + "minecraft:dry_out", + "minecraft:fall", + "minecraft:falling_anvil", + "minecraft:falling_block", + "minecraft:falling_stalactite", + "minecraft:freeze", + "minecraft:mace_smash", + "minecraft:hot_floor", + "minecraft:mob_attack", + "minecraft:mob_attack_no_aggro", + "minecraft:mob_projectile", + "minecraft:player_attack", + "minecraft:spear", + "minecraft:spit", + "minecraft:stalagmite", + "minecraft:sting", + "minecraft:sulfur_cube_hot", + "minecraft:sweet_berry_bush", + "minecraft:thrown", + "minecraft:trident", + "minecraft:wind_charge", + "#minecraft:is_explosion" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/dialog/pause_screen_additions.json b/src/main/resources/data/minecraft/tags/dialog/pause_screen_additions.json deleted file mode 100644 index f72d209..0000000 --- a/src/main/resources/data/minecraft/tags/dialog/pause_screen_additions.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "values": [] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/dialog/quick_actions.json b/src/main/resources/data/minecraft/tags/dialog/quick_actions.json deleted file mode 100644 index f72d209..0000000 --- a/src/main/resources/data/minecraft/tags/dialog/quick_actions.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "values": [] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/curse.json b/src/main/resources/data/minecraft/tags/enchantment/curse.json deleted file mode 100644 index 0c7d611..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/curse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:binding_curse", - "minecraft:vanishing_curse" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/double_trade_price.json b/src/main/resources/data/minecraft/tags/enchantment/double_trade_price.json deleted file mode 100644 index 0e924c6..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/double_trade_price.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:treasure" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/armor.json b/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/armor.json deleted file mode 100644 index 965552f..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/armor.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:protection", - "minecraft:blast_protection", - "minecraft:fire_protection", - "minecraft:projectile_protection" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/boots.json b/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/boots.json deleted file mode 100644 index 837664e..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/boots.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:frost_walker", - "minecraft:depth_strider" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/bow.json b/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/bow.json deleted file mode 100644 index ad52736..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/bow.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:infinity", - "minecraft:mending" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/crossbow.json b/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/crossbow.json deleted file mode 100644 index d743740..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/crossbow.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:multishot", - "minecraft:piercing" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/damage.json b/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/damage.json deleted file mode 100644 index e95a319..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/damage.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "minecraft:sharpness", - "minecraft:smite", - "minecraft:bane_of_arthropods", - "minecraft:impaling", - "minecraft:density", - "minecraft:breach" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/mining.json b/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/mining.json deleted file mode 100644 index 8413d0b..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/mining.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:fortune", - "minecraft:silk_touch" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/riptide.json b/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/riptide.json deleted file mode 100644 index c11a2f9..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/exclusive_set/riptide.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:loyalty", - "minecraft:channeling" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/in_enchanting_table.json b/src/main/resources/data/minecraft/tags/enchantment/in_enchanting_table.json deleted file mode 100644 index 3965674..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/in_enchanting_table.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:non_treasure" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/non_treasure.json b/src/main/resources/data/minecraft/tags/enchantment/non_treasure.json deleted file mode 100644 index 677c594..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/non_treasure.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "values": [ - "minecraft:protection", - "minecraft:fire_protection", - "minecraft:feather_falling", - "minecraft:blast_protection", - "minecraft:projectile_protection", - "minecraft:respiration", - "minecraft:aqua_affinity", - "minecraft:thorns", - "minecraft:depth_strider", - "minecraft:sharpness", - "minecraft:smite", - "minecraft:bane_of_arthropods", - "minecraft:knockback", - "minecraft:fire_aspect", - "minecraft:looting", - "minecraft:sweeping_edge", - "minecraft:efficiency", - "minecraft:silk_touch", - "minecraft:unbreaking", - "minecraft:fortune", - "minecraft:power", - "minecraft:punch", - "minecraft:flame", - "minecraft:infinity", - "minecraft:luck_of_the_sea", - "minecraft:lure", - "minecraft:loyalty", - "minecraft:impaling", - "minecraft:riptide", - "minecraft:channeling", - "minecraft:multishot", - "minecraft:quick_charge", - "minecraft:piercing", - "minecraft:density", - "minecraft:breach", - "minecraft:lunge" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/on_mob_spawn_equipment.json b/src/main/resources/data/minecraft/tags/enchantment/on_mob_spawn_equipment.json deleted file mode 100644 index 3965674..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/on_mob_spawn_equipment.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:non_treasure" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/on_random_loot.json b/src/main/resources/data/minecraft/tags/enchantment/on_random_loot.json deleted file mode 100644 index e20b008..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/on_random_loot.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "#minecraft:non_treasure", - "minecraft:binding_curse", - "minecraft:vanishing_curse", - "minecraft:frost_walker", - "minecraft:mending" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/on_traded_equipment.json b/src/main/resources/data/minecraft/tags/enchantment/on_traded_equipment.json deleted file mode 100644 index 3965674..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/on_traded_equipment.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:non_treasure" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/prevents_bee_spawns_when_mining.json b/src/main/resources/data/minecraft/tags/enchantment/prevents_bee_spawns_when_mining.json deleted file mode 100644 index 9fe019a..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/prevents_bee_spawns_when_mining.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:silk_touch" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/prevents_decorated_pot_shattering.json b/src/main/resources/data/minecraft/tags/enchantment/prevents_decorated_pot_shattering.json deleted file mode 100644 index 9fe019a..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/prevents_decorated_pot_shattering.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:silk_touch" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/prevents_ice_melting.json b/src/main/resources/data/minecraft/tags/enchantment/prevents_ice_melting.json deleted file mode 100644 index 9fe019a..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/prevents_ice_melting.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:silk_touch" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/prevents_infested_spawns.json b/src/main/resources/data/minecraft/tags/enchantment/prevents_infested_spawns.json deleted file mode 100644 index 9fe019a..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/prevents_infested_spawns.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:silk_touch" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/smelts_loot.json b/src/main/resources/data/minecraft/tags/enchantment/smelts_loot.json deleted file mode 100644 index bc4d782..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/smelts_loot.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:fire_aspect" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/tooltip_order.json b/src/main/resources/data/minecraft/tags/enchantment/tooltip_order.json deleted file mode 100644 index 129e9f9..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/tooltip_order.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "values": [ - "minecraft:binding_curse", - "minecraft:vanishing_curse", - "minecraft:riptide", - "minecraft:channeling", - "minecraft:wind_burst", - "minecraft:frost_walker", - "minecraft:lunge", - "minecraft:sharpness", - "minecraft:smite", - "minecraft:bane_of_arthropods", - "minecraft:impaling", - "minecraft:power", - "minecraft:density", - "minecraft:breach", - "minecraft:piercing", - "minecraft:sweeping_edge", - "minecraft:multishot", - "minecraft:fire_aspect", - "minecraft:flame", - "minecraft:knockback", - "minecraft:punch", - "minecraft:protection", - "minecraft:blast_protection", - "minecraft:fire_protection", - "minecraft:projectile_protection", - "minecraft:feather_falling", - "minecraft:fortune", - "minecraft:looting", - "minecraft:silk_touch", - "minecraft:luck_of_the_sea", - "minecraft:efficiency", - "minecraft:quick_charge", - "minecraft:lure", - "minecraft:respiration", - "minecraft:aqua_affinity", - "minecraft:soul_speed", - "minecraft:swift_sneak", - "minecraft:depth_strider", - "minecraft:thorns", - "minecraft:loyalty", - "minecraft:unbreaking", - "minecraft:infinity", - "minecraft:mending" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/tradeable.json b/src/main/resources/data/minecraft/tags/enchantment/tradeable.json deleted file mode 100644 index e20b008..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/tradeable.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "#minecraft:non_treasure", - "minecraft:binding_curse", - "minecraft:vanishing_curse", - "minecraft:frost_walker", - "minecraft:mending" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/enchantment/treasure.json b/src/main/resources/data/minecraft/tags/enchantment/treasure.json deleted file mode 100644 index a2712dd..0000000 --- a/src/main/resources/data/minecraft/tags/enchantment/treasure.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:binding_curse", - "minecraft:vanishing_curse", - "minecraft:swift_sneak", - "minecraft:soul_speed", - "minecraft:frost_walker", - "minecraft:mending", - "minecraft:wind_burst" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/accepts_iron_golem_gift.json b/src/main/resources/data/minecraft/tags/entity_type/accepts_iron_golem_gift.json deleted file mode 100644 index eb3b6b3..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/accepts_iron_golem_gift.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:copper_golem" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/aquatic.json b/src/main/resources/data/minecraft/tags/entity_type/aquatic.json deleted file mode 100644 index caa1040..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/aquatic.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "values": [ - "minecraft:turtle", - "minecraft:axolotl", - "minecraft:guardian", - "minecraft:elder_guardian", - "minecraft:cod", - "minecraft:pufferfish", - "minecraft:salmon", - "minecraft:tropical_fish", - "minecraft:dolphin", - "minecraft:squid", - "minecraft:glow_squid", - "minecraft:tadpole", - "minecraft:nautilus", - "minecraft:zombie_nautilus" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/arrows.json b/src/main/resources/data/minecraft/tags/entity_type/arrows.json deleted file mode 100644 index 8421d31..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/arrows.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:arrow", - "minecraft:spectral_arrow" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/arthropod.json b/src/main/resources/data/minecraft/tags/entity_type/arthropod.json deleted file mode 100644 index 4d51ee2..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/arthropod.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "minecraft:bee", - "minecraft:endermite", - "minecraft:silverfish", - "minecraft:spider", - "minecraft:cave_spider" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/axolotl_always_hostiles.json b/src/main/resources/data/minecraft/tags/entity_type/axolotl_always_hostiles.json deleted file mode 100644 index 811f076..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/axolotl_always_hostiles.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:drowned", - "minecraft:guardian", - "minecraft:elder_guardian" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/axolotl_hunt_targets.json b/src/main/resources/data/minecraft/tags/entity_type/axolotl_hunt_targets.json deleted file mode 100644 index 531dcb8..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/axolotl_hunt_targets.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:tropical_fish", - "minecraft:pufferfish", - "minecraft:salmon", - "minecraft:cod", - "minecraft:squid", - "minecraft:glow_squid", - "minecraft:tadpole" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/beehive_inhabitors.json b/src/main/resources/data/minecraft/tags/entity_type/beehive_inhabitors.json deleted file mode 100644 index a5a951b..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/beehive_inhabitors.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:bee" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/boat.json b/src/main/resources/data/minecraft/tags/entity_type/boat.json deleted file mode 100644 index 252370c..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/boat.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "values": [ - "minecraft:oak_boat", - "minecraft:spruce_boat", - "minecraft:birch_boat", - "minecraft:jungle_boat", - "minecraft:acacia_boat", - "minecraft:cherry_boat", - "minecraft:dark_oak_boat", - "minecraft:pale_oak_boat", - "minecraft:mangrove_boat", - "minecraft:bamboo_raft" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/burn_in_daylight.json b/src/main/resources/data/minecraft/tags/entity_type/burn_in_daylight.json deleted file mode 100644 index 8f54dc8..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/burn_in_daylight.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "values": [ - "minecraft:skeleton", - "minecraft:stray", - "minecraft:wither_skeleton", - "minecraft:bogged", - "minecraft:zombie", - "minecraft:zombie_horse", - "minecraft:zombie_villager", - "minecraft:drowned", - "minecraft:zombie_nautilus", - "minecraft:phantom" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/can_breathe_under_water.json b/src/main/resources/data/minecraft/tags/entity_type/can_breathe_under_water.json deleted file mode 100644 index 35476b0..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/can_breathe_under_water.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "values": [ - "#minecraft:undead", - "minecraft:axolotl", - "minecraft:frog", - "minecraft:guardian", - "minecraft:elder_guardian", - "minecraft:turtle", - "minecraft:glow_squid", - "minecraft:cod", - "minecraft:pufferfish", - "minecraft:salmon", - "minecraft:squid", - "minecraft:tropical_fish", - "minecraft:tadpole", - "minecraft:armor_stand", - "minecraft:copper_golem", - "minecraft:nautilus" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/can_equip_harness.json b/src/main/resources/data/minecraft/tags/entity_type/can_equip_harness.json deleted file mode 100644 index bf784bb..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/can_equip_harness.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:happy_ghast" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/can_equip_saddle.json b/src/main/resources/data/minecraft/tags/entity_type/can_equip_saddle.json deleted file mode 100644 index eb053a3..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/can_equip_saddle.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "values": [ - "minecraft:horse", - "minecraft:skeleton_horse", - "minecraft:zombie_horse", - "minecraft:donkey", - "minecraft:mule", - "minecraft:pig", - "minecraft:strider", - "minecraft:camel", - "minecraft:camel_husk", - "minecraft:nautilus", - "minecraft:zombie_nautilus" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/can_float_while_ridden.json b/src/main/resources/data/minecraft/tags/entity_type/can_float_while_ridden.json deleted file mode 100644 index 2c6da42..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/can_float_while_ridden.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "minecraft:horse", - "minecraft:zombie_horse", - "minecraft:mule", - "minecraft:donkey", - "minecraft:camel", - "minecraft:camel_husk" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/can_turn_in_boats.json b/src/main/resources/data/minecraft/tags/entity_type/can_turn_in_boats.json deleted file mode 100644 index 21945c2..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/can_turn_in_boats.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:breeze" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/can_wear_horse_armor.json b/src/main/resources/data/minecraft/tags/entity_type/can_wear_horse_armor.json deleted file mode 100644 index c1546f0..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/can_wear_horse_armor.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:horse", - "minecraft:zombie_horse" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/can_wear_nautilus_armor.json b/src/main/resources/data/minecraft/tags/entity_type/can_wear_nautilus_armor.json deleted file mode 100644 index 4ec1ffa..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/can_wear_nautilus_armor.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:nautilus", - "minecraft:zombie_nautilus" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/candidate_for_iron_golem_gift.json b/src/main/resources/data/minecraft/tags/entity_type/candidate_for_iron_golem_gift.json deleted file mode 100644 index 4903d37..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/candidate_for_iron_golem_gift.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:villager", - "#minecraft:accepts_iron_golem_gift" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/cannot_be_age_locked.json b/src/main/resources/data/minecraft/tags/entity_type/cannot_be_age_locked.json deleted file mode 100644 index 92c9655..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/cannot_be_age_locked.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:zombie_horse", - "minecraft:skeleton_horse", - "minecraft:villager" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/cannot_be_pushed_onto_boats.json b/src/main/resources/data/minecraft/tags/entity_type/cannot_be_pushed_onto_boats.json deleted file mode 100644 index 0fde680..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/cannot_be_pushed_onto_boats.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "values": [ - "minecraft:player", - "minecraft:elder_guardian", - "minecraft:cod", - "minecraft:pufferfish", - "minecraft:salmon", - "minecraft:tropical_fish", - "minecraft:dolphin", - "minecraft:squid", - "minecraft:glow_squid", - "minecraft:tadpole", - "minecraft:creaking", - "minecraft:nautilus", - "minecraft:zombie_nautilus" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/deflects_projectiles.json b/src/main/resources/data/minecraft/tags/entity_type/deflects_projectiles.json deleted file mode 100644 index 21945c2..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/deflects_projectiles.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:breeze" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/dismounts_underwater.json b/src/main/resources/data/minecraft/tags/entity_type/dismounts_underwater.json deleted file mode 100644 index 9c53e26..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/dismounts_underwater.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "values": [ - "minecraft:camel", - "minecraft:chicken", - "minecraft:donkey", - "minecraft:happy_ghast", - "minecraft:horse", - "minecraft:llama", - "minecraft:mule", - "minecraft:pig", - "minecraft:ravager", - "minecraft:spider", - "minecraft:strider", - "minecraft:trader_llama", - "minecraft:zombie_horse" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/fall_damage_immune.json b/src/main/resources/data/minecraft/tags/entity_type/fall_damage_immune.json deleted file mode 100644 index 3d1830c..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/fall_damage_immune.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "values": [ - "minecraft:copper_golem", - "minecraft:iron_golem", - "minecraft:snow_golem", - "minecraft:shulker", - "minecraft:allay", - "minecraft:bat", - "minecraft:bee", - "minecraft:blaze", - "minecraft:cat", - "minecraft:chicken", - "minecraft:ghast", - "minecraft:happy_ghast", - "minecraft:phantom", - "minecraft:magma_cube", - "minecraft:ocelot", - "minecraft:parrot", - "minecraft:wither", - "minecraft:breeze" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/followable_friendly_mobs.json b/src/main/resources/data/minecraft/tags/entity_type/followable_friendly_mobs.json deleted file mode 100644 index 26848cc..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/followable_friendly_mobs.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "values": [ - "minecraft:armadillo", - "minecraft:bee", - "minecraft:camel", - "minecraft:cat", - "minecraft:chicken", - "minecraft:cow", - "minecraft:donkey", - "minecraft:fox", - "minecraft:goat", - "minecraft:happy_ghast", - "minecraft:horse", - "minecraft:skeleton_horse", - "minecraft:llama", - "minecraft:mule", - "minecraft:ocelot", - "minecraft:panda", - "minecraft:parrot", - "minecraft:pig", - "minecraft:polar_bear", - "minecraft:rabbit", - "minecraft:sheep", - "minecraft:sniffer", - "minecraft:strider", - "minecraft:villager", - "minecraft:wolf" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/freeze_hurts_extra_types.json b/src/main/resources/data/minecraft/tags/entity_type/freeze_hurts_extra_types.json deleted file mode 100644 index e4cdb51..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/freeze_hurts_extra_types.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:strider", - "minecraft:blaze", - "minecraft:magma_cube" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/freeze_immune_entity_types.json b/src/main/resources/data/minecraft/tags/entity_type/freeze_immune_entity_types.json deleted file mode 100644 index e1063a6..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/freeze_immune_entity_types.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:stray", - "minecraft:polar_bear", - "minecraft:snow_golem", - "minecraft:wither" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/frog_food.json b/src/main/resources/data/minecraft/tags/entity_type/frog_food.json deleted file mode 100644 index 858f48c..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/frog_food.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:slime", - "minecraft:magma_cube" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/ignores_poison_and_regen.json b/src/main/resources/data/minecraft/tags/entity_type/ignores_poison_and_regen.json deleted file mode 100644 index b77400e..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/ignores_poison_and_regen.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:undead" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/illager.json b/src/main/resources/data/minecraft/tags/entity_type/illager.json deleted file mode 100644 index 437d952..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/illager.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:evoker", - "minecraft:illusioner", - "minecraft:pillager", - "minecraft:vindicator" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/illager_friends.json b/src/main/resources/data/minecraft/tags/entity_type/illager_friends.json deleted file mode 100644 index 0f27c0b..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/illager_friends.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:illager" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/immune_to_infested.json b/src/main/resources/data/minecraft/tags/entity_type/immune_to_infested.json deleted file mode 100644 index 06dc7c0..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/immune_to_infested.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:silverfish" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/immune_to_oozing.json b/src/main/resources/data/minecraft/tags/entity_type/immune_to_oozing.json deleted file mode 100644 index 90c32b4..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/immune_to_oozing.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:slime" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/impact_projectiles.json b/src/main/resources/data/minecraft/tags/entity_type/impact_projectiles.json deleted file mode 100644 index 2d4eb4e..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/impact_projectiles.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "values": [ - "#minecraft:arrows", - "minecraft:firework_rocket", - "minecraft:snowball", - "minecraft:fireball", - "minecraft:small_fireball", - "minecraft:egg", - "minecraft:trident", - "minecraft:dragon_fireball", - "minecraft:wither_skull", - "minecraft:wind_charge", - "minecraft:breeze_wind_charge" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/inverted_healing_and_harm.json b/src/main/resources/data/minecraft/tags/entity_type/inverted_healing_and_harm.json deleted file mode 100644 index b77400e..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/inverted_healing_and_harm.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:undead" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/nautilus_hostiles.json b/src/main/resources/data/minecraft/tags/entity_type/nautilus_hostiles.json deleted file mode 100644 index 6a4ad94..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/nautilus_hostiles.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:pufferfish" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/no_anger_from_wind_charge.json b/src/main/resources/data/minecraft/tags/entity_type/no_anger_from_wind_charge.json deleted file mode 100644 index 7cc30fb..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/no_anger_from_wind_charge.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "values": [ - "minecraft:breeze", - "minecraft:skeleton", - "minecraft:bogged", - "minecraft:stray", - "minecraft:zombie", - "minecraft:husk", - "minecraft:spider", - "minecraft:cave_spider", - "minecraft:slime" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/non_controlling_rider.json b/src/main/resources/data/minecraft/tags/entity_type/non_controlling_rider.json deleted file mode 100644 index 858f48c..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/non_controlling_rider.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:slime", - "minecraft:magma_cube" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/not_scary_for_pufferfish.json b/src/main/resources/data/minecraft/tags/entity_type/not_scary_for_pufferfish.json deleted file mode 100644 index a554229..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/not_scary_for_pufferfish.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "values": [ - "minecraft:turtle", - "minecraft:guardian", - "minecraft:elder_guardian", - "minecraft:cod", - "minecraft:pufferfish", - "minecraft:salmon", - "minecraft:tropical_fish", - "minecraft:dolphin", - "minecraft:squid", - "minecraft:glow_squid", - "minecraft:tadpole", - "minecraft:nautilus", - "minecraft:zombie_nautilus" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/powder_snow_walkable_mobs.json b/src/main/resources/data/minecraft/tags/entity_type/powder_snow_walkable_mobs.json deleted file mode 100644 index e8db267..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/powder_snow_walkable_mobs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:rabbit", - "minecraft:endermite", - "minecraft:silverfish", - "minecraft:fox" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/raiders.json b/src/main/resources/data/minecraft/tags/entity_type/raiders.json deleted file mode 100644 index 9548830..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/raiders.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "minecraft:evoker", - "minecraft:pillager", - "minecraft:ravager", - "minecraft:vindicator", - "minecraft:illusioner", - "minecraft:witch" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/redirectable_projectile.json b/src/main/resources/data/minecraft/tags/entity_type/redirectable_projectile.json deleted file mode 100644 index 5fb9fd4..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/redirectable_projectile.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:fireball", - "minecraft:wind_charge", - "minecraft:breeze_wind_charge" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/sensitive_to_bane_of_arthropods.json b/src/main/resources/data/minecraft/tags/entity_type/sensitive_to_bane_of_arthropods.json deleted file mode 100644 index e357096..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/sensitive_to_bane_of_arthropods.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:arthropod" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/sensitive_to_impaling.json b/src/main/resources/data/minecraft/tags/entity_type/sensitive_to_impaling.json deleted file mode 100644 index 203a8af..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/sensitive_to_impaling.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:aquatic" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/sensitive_to_smite.json b/src/main/resources/data/minecraft/tags/entity_type/sensitive_to_smite.json deleted file mode 100644 index b77400e..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/sensitive_to_smite.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:undead" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/skeletons.json b/src/main/resources/data/minecraft/tags/entity_type/skeletons.json deleted file mode 100644 index d722688..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/skeletons.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "minecraft:skeleton", - "minecraft:stray", - "minecraft:wither_skeleton", - "minecraft:skeleton_horse", - "minecraft:bogged", - "minecraft:parched" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/undead.json b/src/main/resources/data/minecraft/tags/entity_type/undead.json deleted file mode 100644 index f00edb9..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/undead.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "#minecraft:skeletons", - "#minecraft:zombies", - "minecraft:wither", - "minecraft:phantom" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/wither_friends.json b/src/main/resources/data/minecraft/tags/entity_type/wither_friends.json deleted file mode 100644 index b77400e..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/wither_friends.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:undead" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/entity_type/zombies.json b/src/main/resources/data/minecraft/tags/entity_type/zombies.json deleted file mode 100644 index ca3355d..0000000 --- a/src/main/resources/data/minecraft/tags/entity_type/zombies.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "values": [ - "minecraft:zombie_horse", - "minecraft:camel_husk", - "minecraft:zombie", - "minecraft:zombie_villager", - "minecraft:zombified_piglin", - "minecraft:zoglin", - "minecraft:drowned", - "minecraft:husk", - "minecraft:zombie_nautilus" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/fluid/bubble_column_can_occupy.json b/src/main/resources/data/minecraft/tags/fluid/bubble_column_can_occupy.json deleted file mode 100644 index d1e7f7c..0000000 --- a/src/main/resources/data/minecraft/tags/fluid/bubble_column_can_occupy.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:water" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/fluid/lava.json b/src/main/resources/data/minecraft/tags/fluid/lava.json deleted file mode 100644 index c4953e8..0000000 --- a/src/main/resources/data/minecraft/tags/fluid/lava.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:lava", - "minecraft:flowing_lava" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/fluid/supports_frogspawn.json b/src/main/resources/data/minecraft/tags/fluid/supports_frogspawn.json deleted file mode 100644 index d1e7f7c..0000000 --- a/src/main/resources/data/minecraft/tags/fluid/supports_frogspawn.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:water" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/fluid/supports_lily_pad.json b/src/main/resources/data/minecraft/tags/fluid/supports_lily_pad.json deleted file mode 100644 index d1e7f7c..0000000 --- a/src/main/resources/data/minecraft/tags/fluid/supports_lily_pad.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:water" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/fluid/supports_sugar_cane_adjacently.json b/src/main/resources/data/minecraft/tags/fluid/supports_sugar_cane_adjacently.json deleted file mode 100644 index 387e410..0000000 --- a/src/main/resources/data/minecraft/tags/fluid/supports_sugar_cane_adjacently.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:water" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/fluid/water.json b/src/main/resources/data/minecraft/tags/fluid/water.json deleted file mode 100644 index dbfbaa8..0000000 --- a/src/main/resources/data/minecraft/tags/fluid/water.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:water", - "minecraft:flowing_water" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/game_event/allay_can_listen.json b/src/main/resources/data/minecraft/tags/game_event/allay_can_listen.json deleted file mode 100644 index 916088c..0000000 --- a/src/main/resources/data/minecraft/tags/game_event/allay_can_listen.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:note_block_play" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/game_event/ignore_vibrations_sneaking.json b/src/main/resources/data/minecraft/tags/game_event/ignore_vibrations_sneaking.json deleted file mode 100644 index 6bf4071..0000000 --- a/src/main/resources/data/minecraft/tags/game_event/ignore_vibrations_sneaking.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "minecraft:hit_ground", - "minecraft:projectile_shoot", - "minecraft:step", - "minecraft:swim", - "minecraft:item_interact_start", - "minecraft:item_interact_finish" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/game_event/shrieker_can_listen.json b/src/main/resources/data/minecraft/tags/game_event/shrieker_can_listen.json deleted file mode 100644 index a5cddd8..0000000 --- a/src/main/resources/data/minecraft/tags/game_event/shrieker_can_listen.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:sculk_sensor_tendrils_clicking" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/game_event/vibrations.json b/src/main/resources/data/minecraft/tags/game_event/vibrations.json deleted file mode 100644 index da6da8a..0000000 --- a/src/main/resources/data/minecraft/tags/game_event/vibrations.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "values": [ - "minecraft:block_attach", - "minecraft:block_change", - "minecraft:block_close", - "minecraft:block_destroy", - "minecraft:block_detach", - "minecraft:block_open", - "minecraft:block_place", - "minecraft:block_activate", - "minecraft:block_deactivate", - "minecraft:container_close", - "minecraft:container_open", - "minecraft:drink", - "minecraft:eat", - "minecraft:elytra_glide", - "minecraft:entity_damage", - "minecraft:entity_die", - "minecraft:entity_dismount", - "minecraft:entity_interact", - "minecraft:entity_mount", - "minecraft:entity_place", - "minecraft:entity_action", - "minecraft:equip", - "minecraft:explode", - "minecraft:fluid_pickup", - "minecraft:fluid_place", - "minecraft:hit_ground", - "minecraft:instrument_play", - "minecraft:item_interact_finish", - "minecraft:lightning_strike", - "minecraft:note_block_play", - "minecraft:prime_fuse", - "minecraft:projectile_land", - "minecraft:projectile_shoot", - "minecraft:shear", - "minecraft:splash", - "minecraft:step", - "minecraft:swim", - "minecraft:teleport", - "minecraft:unequip", - "minecraft:resonate_1", - "minecraft:resonate_2", - "minecraft:resonate_3", - "minecraft:resonate_4", - "minecraft:resonate_5", - "minecraft:resonate_6", - "minecraft:resonate_7", - "minecraft:resonate_8", - "minecraft:resonate_9", - "minecraft:resonate_10", - "minecraft:resonate_11", - "minecraft:resonate_12", - "minecraft:resonate_13", - "minecraft:resonate_14", - "minecraft:resonate_15", - "minecraft:flap" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/game_event/warden_can_listen.json b/src/main/resources/data/minecraft/tags/game_event/warden_can_listen.json deleted file mode 100644 index 42e5957..0000000 --- a/src/main/resources/data/minecraft/tags/game_event/warden_can_listen.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "values": [ - "minecraft:block_attach", - "minecraft:block_change", - "minecraft:block_close", - "minecraft:block_destroy", - "minecraft:block_detach", - "minecraft:block_open", - "minecraft:block_place", - "minecraft:block_activate", - "minecraft:block_deactivate", - "minecraft:container_close", - "minecraft:container_open", - "minecraft:drink", - "minecraft:eat", - "minecraft:elytra_glide", - "minecraft:entity_damage", - "minecraft:entity_die", - "minecraft:entity_dismount", - "minecraft:entity_interact", - "minecraft:entity_mount", - "minecraft:entity_place", - "minecraft:entity_action", - "minecraft:equip", - "minecraft:explode", - "minecraft:fluid_pickup", - "minecraft:fluid_place", - "minecraft:hit_ground", - "minecraft:instrument_play", - "minecraft:item_interact_finish", - "minecraft:lightning_strike", - "minecraft:note_block_play", - "minecraft:prime_fuse", - "minecraft:projectile_land", - "minecraft:projectile_shoot", - "minecraft:shear", - "minecraft:splash", - "minecraft:step", - "minecraft:swim", - "minecraft:teleport", - "minecraft:unequip", - "minecraft:resonate_1", - "minecraft:resonate_2", - "minecraft:resonate_3", - "minecraft:resonate_4", - "minecraft:resonate_5", - "minecraft:resonate_6", - "minecraft:resonate_7", - "minecraft:resonate_8", - "minecraft:resonate_9", - "minecraft:resonate_10", - "minecraft:resonate_11", - "minecraft:resonate_12", - "minecraft:resonate_13", - "minecraft:resonate_14", - "minecraft:resonate_15", - "minecraft:shriek", - "#minecraft:shrieker_can_listen" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/acacia_logs.json b/src/main/resources/data/minecraft/tags/item/acacia_logs.json deleted file mode 100644 index 84a0bc4..0000000 --- a/src/main/resources/data/minecraft/tags/item/acacia_logs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:acacia_log", - "minecraft:acacia_wood", - "minecraft:stripped_acacia_log", - "minecraft:stripped_acacia_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/anvil.json b/src/main/resources/data/minecraft/tags/item/anvil.json deleted file mode 100644 index 84ef65a..0000000 --- a/src/main/resources/data/minecraft/tags/item/anvil.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:anvil", - "minecraft:chipped_anvil", - "minecraft:damaged_anvil" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/armadillo_food.json b/src/main/resources/data/minecraft/tags/item/armadillo_food.json deleted file mode 100644 index fb33a5c..0000000 --- a/src/main/resources/data/minecraft/tags/item/armadillo_food.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:spider_eye" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/arrows.json b/src/main/resources/data/minecraft/tags/item/arrows.json deleted file mode 100644 index 4ebac71..0000000 --- a/src/main/resources/data/minecraft/tags/item/arrows.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:arrow", - "minecraft:tipped_arrow", - "minecraft:spectral_arrow" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/axes.json b/src/main/resources/data/minecraft/tags/item/axes.json deleted file mode 100644 index 55b3892..0000000 --- a/src/main/resources/data/minecraft/tags/item/axes.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:diamond_axe", - "minecraft:stone_axe", - "minecraft:golden_axe", - "minecraft:netherite_axe", - "minecraft:wooden_axe", - "minecraft:iron_axe", - "minecraft:copper_axe" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/axolotl_food.json b/src/main/resources/data/minecraft/tags/item/axolotl_food.json deleted file mode 100644 index 62859aa..0000000 --- a/src/main/resources/data/minecraft/tags/item/axolotl_food.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:tropical_fish_bucket" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/bamboo_blocks.json b/src/main/resources/data/minecraft/tags/item/bamboo_blocks.json deleted file mode 100644 index 347c0af..0000000 --- a/src/main/resources/data/minecraft/tags/item/bamboo_blocks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:bamboo_block", - "minecraft:stripped_bamboo_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/banners.json b/src/main/resources/data/minecraft/tags/item/banners.json deleted file mode 100644 index e2efe3d..0000000 --- a/src/main/resources/data/minecraft/tags/item/banners.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "values": [ - "minecraft:white_banner", - "minecraft:orange_banner", - "minecraft:magenta_banner", - "minecraft:light_blue_banner", - "minecraft:yellow_banner", - "minecraft:lime_banner", - "minecraft:pink_banner", - "minecraft:gray_banner", - "minecraft:light_gray_banner", - "minecraft:cyan_banner", - "minecraft:purple_banner", - "minecraft:blue_banner", - "minecraft:brown_banner", - "minecraft:green_banner", - "minecraft:red_banner", - "minecraft:black_banner" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/bars.json b/src/main/resources/data/minecraft/tags/item/bars.json deleted file mode 100644 index 72d1f40..0000000 --- a/src/main/resources/data/minecraft/tags/item/bars.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "values": [ - "minecraft:iron_bars", - "minecraft:copper_bars", - "minecraft:waxed_copper_bars", - "minecraft:exposed_copper_bars", - "minecraft:waxed_exposed_copper_bars", - "minecraft:weathered_copper_bars", - "minecraft:waxed_weathered_copper_bars", - "minecraft:oxidized_copper_bars", - "minecraft:waxed_oxidized_copper_bars" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/beacon_payment_items.json b/src/main/resources/data/minecraft/tags/item/beacon_payment_items.json deleted file mode 100644 index 802967c..0000000 --- a/src/main/resources/data/minecraft/tags/item/beacon_payment_items.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "minecraft:netherite_ingot", - "minecraft:emerald", - "minecraft:diamond", - "minecraft:gold_ingot", - "minecraft:iron_ingot" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/beds.json b/src/main/resources/data/minecraft/tags/item/beds.json deleted file mode 100644 index 77c2242..0000000 --- a/src/main/resources/data/minecraft/tags/item/beds.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "values": [ - "minecraft:red_bed", - "minecraft:black_bed", - "minecraft:blue_bed", - "minecraft:brown_bed", - "minecraft:cyan_bed", - "minecraft:gray_bed", - "minecraft:green_bed", - "minecraft:light_blue_bed", - "minecraft:light_gray_bed", - "minecraft:lime_bed", - "minecraft:magenta_bed", - "minecraft:orange_bed", - "minecraft:pink_bed", - "minecraft:purple_bed", - "minecraft:white_bed", - "minecraft:yellow_bed" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/bee_food.json b/src/main/resources/data/minecraft/tags/item/bee_food.json deleted file mode 100644 index f2851d5..0000000 --- a/src/main/resources/data/minecraft/tags/item/bee_food.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "values": [ - "minecraft:dandelion", - "minecraft:open_eyeblossom", - "minecraft:poppy", - "minecraft:blue_orchid", - "minecraft:allium", - "minecraft:azure_bluet", - "minecraft:red_tulip", - "minecraft:orange_tulip", - "minecraft:white_tulip", - "minecraft:pink_tulip", - "minecraft:oxeye_daisy", - "minecraft:cornflower", - "minecraft:lily_of_the_valley", - "minecraft:wither_rose", - "minecraft:torchflower", - "minecraft:sunflower", - "minecraft:lilac", - "minecraft:peony", - "minecraft:rose_bush", - "minecraft:pitcher_plant", - "minecraft:flowering_azalea_leaves", - "minecraft:flowering_azalea", - "minecraft:mangrove_propagule", - "minecraft:cherry_leaves", - "minecraft:pink_petals", - "minecraft:wildflowers", - "minecraft:chorus_flower", - "minecraft:spore_blossom", - "minecraft:cactus_flower" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/birch_logs.json b/src/main/resources/data/minecraft/tags/item/birch_logs.json deleted file mode 100644 index 9203a57..0000000 --- a/src/main/resources/data/minecraft/tags/item/birch_logs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:birch_log", - "minecraft:birch_wood", - "minecraft:stripped_birch_log", - "minecraft:stripped_birch_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/boats.json b/src/main/resources/data/minecraft/tags/item/boats.json deleted file mode 100644 index c04cb9a..0000000 --- a/src/main/resources/data/minecraft/tags/item/boats.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "values": [ - "minecraft:oak_boat", - "minecraft:spruce_boat", - "minecraft:birch_boat", - "minecraft:jungle_boat", - "minecraft:acacia_boat", - "minecraft:dark_oak_boat", - "minecraft:pale_oak_boat", - "minecraft:mangrove_boat", - "minecraft:bamboo_raft", - "minecraft:cherry_boat", - "#minecraft:chest_boats" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/book_cloning_target.json b/src/main/resources/data/minecraft/tags/item/book_cloning_target.json deleted file mode 100644 index 0fdf7a2..0000000 --- a/src/main/resources/data/minecraft/tags/item/book_cloning_target.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:writable_book" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/bookshelf_books.json b/src/main/resources/data/minecraft/tags/item/bookshelf_books.json deleted file mode 100644 index 66dc551..0000000 --- a/src/main/resources/data/minecraft/tags/item/bookshelf_books.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "minecraft:book", - "minecraft:written_book", - "minecraft:enchanted_book", - "minecraft:writable_book", - "minecraft:knowledge_book" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/breaks_decorated_pots.json b/src/main/resources/data/minecraft/tags/item/breaks_decorated_pots.json deleted file mode 100644 index 9b99abb..0000000 --- a/src/main/resources/data/minecraft/tags/item/breaks_decorated_pots.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "#minecraft:swords", - "#minecraft:axes", - "#minecraft:pickaxes", - "#minecraft:shovels", - "#minecraft:hoes", - "minecraft:trident", - "minecraft:mace" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/brewing_fuel.json b/src/main/resources/data/minecraft/tags/item/brewing_fuel.json deleted file mode 100644 index 10d5c86..0000000 --- a/src/main/resources/data/minecraft/tags/item/brewing_fuel.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:blaze_powder" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/bundles.json b/src/main/resources/data/minecraft/tags/item/bundles.json deleted file mode 100644 index b59d146..0000000 --- a/src/main/resources/data/minecraft/tags/item/bundles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "values": [ - "minecraft:bundle", - "minecraft:black_bundle", - "minecraft:blue_bundle", - "minecraft:brown_bundle", - "minecraft:cyan_bundle", - "minecraft:gray_bundle", - "minecraft:green_bundle", - "minecraft:light_blue_bundle", - "minecraft:light_gray_bundle", - "minecraft:lime_bundle", - "minecraft:magenta_bundle", - "minecraft:orange_bundle", - "minecraft:pink_bundle", - "minecraft:purple_bundle", - "minecraft:red_bundle", - "minecraft:yellow_bundle", - "minecraft:white_bundle" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/buttons.json b/src/main/resources/data/minecraft/tags/item/buttons.json deleted file mode 100644 index 3400bf3..0000000 --- a/src/main/resources/data/minecraft/tags/item/buttons.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:wooden_buttons", - "#minecraft:stone_buttons" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/camel_food.json b/src/main/resources/data/minecraft/tags/item/camel_food.json deleted file mode 100644 index 2624ccf..0000000 --- a/src/main/resources/data/minecraft/tags/item/camel_food.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:cactus" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/camel_husk_food.json b/src/main/resources/data/minecraft/tags/item/camel_husk_food.json deleted file mode 100644 index 8c07282..0000000 --- a/src/main/resources/data/minecraft/tags/item/camel_husk_food.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:rabbit_foot" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/candles.json b/src/main/resources/data/minecraft/tags/item/candles.json deleted file mode 100644 index a7b2b62..0000000 --- a/src/main/resources/data/minecraft/tags/item/candles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "values": [ - "minecraft:candle", - "minecraft:white_candle", - "minecraft:orange_candle", - "minecraft:magenta_candle", - "minecraft:light_blue_candle", - "minecraft:yellow_candle", - "minecraft:lime_candle", - "minecraft:pink_candle", - "minecraft:gray_candle", - "minecraft:light_gray_candle", - "minecraft:cyan_candle", - "minecraft:purple_candle", - "minecraft:blue_candle", - "minecraft:brown_candle", - "minecraft:green_candle", - "minecraft:red_candle", - "minecraft:black_candle" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/cat_collar_dyes.json b/src/main/resources/data/minecraft/tags/item/cat_collar_dyes.json deleted file mode 100644 index 9902cb0..0000000 --- a/src/main/resources/data/minecraft/tags/item/cat_collar_dyes.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:dyes" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/cat_food.json b/src/main/resources/data/minecraft/tags/item/cat_food.json deleted file mode 100644 index 7869b40..0000000 --- a/src/main/resources/data/minecraft/tags/item/cat_food.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:cod", - "minecraft:salmon" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/cauldron_can_remove_dye.json b/src/main/resources/data/minecraft/tags/item/cauldron_can_remove_dye.json deleted file mode 100644 index e70da38..0000000 --- a/src/main/resources/data/minecraft/tags/item/cauldron_can_remove_dye.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "minecraft:leather_helmet", - "minecraft:leather_chestplate", - "minecraft:leather_leggings", - "minecraft:leather_boots", - "minecraft:leather_horse_armor", - "minecraft:wolf_armor" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/chains.json b/src/main/resources/data/minecraft/tags/item/chains.json deleted file mode 100644 index 58c2b30..0000000 --- a/src/main/resources/data/minecraft/tags/item/chains.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "values": [ - "minecraft:iron_chain", - "minecraft:copper_chain", - "minecraft:waxed_copper_chain", - "minecraft:exposed_copper_chain", - "minecraft:waxed_exposed_copper_chain", - "minecraft:weathered_copper_chain", - "minecraft:waxed_weathered_copper_chain", - "minecraft:oxidized_copper_chain", - "minecraft:waxed_oxidized_copper_chain" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/cherry_logs.json b/src/main/resources/data/minecraft/tags/item/cherry_logs.json deleted file mode 100644 index 4295e05..0000000 --- a/src/main/resources/data/minecraft/tags/item/cherry_logs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:cherry_log", - "minecraft:cherry_wood", - "minecraft:stripped_cherry_log", - "minecraft:stripped_cherry_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/chest_armor.json b/src/main/resources/data/minecraft/tags/item/chest_armor.json deleted file mode 100644 index f46b289..0000000 --- a/src/main/resources/data/minecraft/tags/item/chest_armor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:leather_chestplate", - "minecraft:copper_chestplate", - "minecraft:chainmail_chestplate", - "minecraft:golden_chestplate", - "minecraft:iron_chestplate", - "minecraft:diamond_chestplate", - "minecraft:netherite_chestplate" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/chest_boats.json b/src/main/resources/data/minecraft/tags/item/chest_boats.json deleted file mode 100644 index ab1b5c0..0000000 --- a/src/main/resources/data/minecraft/tags/item/chest_boats.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "values": [ - "minecraft:oak_chest_boat", - "minecraft:spruce_chest_boat", - "minecraft:birch_chest_boat", - "minecraft:jungle_chest_boat", - "minecraft:acacia_chest_boat", - "minecraft:dark_oak_chest_boat", - "minecraft:pale_oak_chest_boat", - "minecraft:mangrove_chest_boat", - "minecraft:bamboo_chest_raft", - "minecraft:cherry_chest_boat" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/chicken_food.json b/src/main/resources/data/minecraft/tags/item/chicken_food.json deleted file mode 100644 index 295a67c..0000000 --- a/src/main/resources/data/minecraft/tags/item/chicken_food.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "minecraft:wheat_seeds", - "minecraft:melon_seeds", - "minecraft:pumpkin_seeds", - "minecraft:beetroot_seeds", - "minecraft:torchflower_seeds", - "minecraft:pitcher_pod" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/cluster_max_harvestables.json b/src/main/resources/data/minecraft/tags/item/cluster_max_harvestables.json deleted file mode 100644 index 5e6fc1b..0000000 --- a/src/main/resources/data/minecraft/tags/item/cluster_max_harvestables.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:diamond_pickaxe", - "minecraft:golden_pickaxe", - "minecraft:iron_pickaxe", - "minecraft:netherite_pickaxe", - "minecraft:stone_pickaxe", - "minecraft:wooden_pickaxe", - "minecraft:copper_pickaxe" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/coal_ores.json b/src/main/resources/data/minecraft/tags/item/coal_ores.json deleted file mode 100644 index aaa7628..0000000 --- a/src/main/resources/data/minecraft/tags/item/coal_ores.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:coal_ore", - "minecraft:deepslate_coal_ore" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/coals.json b/src/main/resources/data/minecraft/tags/item/coals.json deleted file mode 100644 index 43868c8..0000000 --- a/src/main/resources/data/minecraft/tags/item/coals.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:coal", - "minecraft:charcoal" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/compasses.json b/src/main/resources/data/minecraft/tags/item/compasses.json deleted file mode 100644 index e0f422f..0000000 --- a/src/main/resources/data/minecraft/tags/item/compasses.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:compass", - "minecraft:recovery_compass" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/completes_find_tree_tutorial.json b/src/main/resources/data/minecraft/tags/item/completes_find_tree_tutorial.json deleted file mode 100644 index 74701c2..0000000 --- a/src/main/resources/data/minecraft/tags/item/completes_find_tree_tutorial.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:logs", - "#minecraft:leaves", - "#minecraft:wart_blocks" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/copper.json b/src/main/resources/data/minecraft/tags/item/copper.json deleted file mode 100644 index 5384865..0000000 --- a/src/main/resources/data/minecraft/tags/item/copper.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "values": [ - "minecraft:copper_block", - "minecraft:exposed_copper", - "minecraft:weathered_copper", - "minecraft:oxidized_copper", - "minecraft:waxed_copper_block", - "minecraft:waxed_exposed_copper", - "minecraft:waxed_weathered_copper", - "minecraft:waxed_oxidized_copper" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/copper_chests.json b/src/main/resources/data/minecraft/tags/item/copper_chests.json deleted file mode 100644 index 90d0a9a..0000000 --- a/src/main/resources/data/minecraft/tags/item/copper_chests.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "values": [ - "minecraft:copper_chest", - "minecraft:exposed_copper_chest", - "minecraft:weathered_copper_chest", - "minecraft:oxidized_copper_chest", - "minecraft:waxed_copper_chest", - "minecraft:waxed_exposed_copper_chest", - "minecraft:waxed_weathered_copper_chest", - "minecraft:waxed_oxidized_copper_chest" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/copper_golem_statues.json b/src/main/resources/data/minecraft/tags/item/copper_golem_statues.json deleted file mode 100644 index 531fc95..0000000 --- a/src/main/resources/data/minecraft/tags/item/copper_golem_statues.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "values": [ - "minecraft:copper_golem_statue", - "minecraft:exposed_copper_golem_statue", - "minecraft:weathered_copper_golem_statue", - "minecraft:oxidized_copper_golem_statue", - "minecraft:waxed_copper_golem_statue", - "minecraft:waxed_exposed_copper_golem_statue", - "minecraft:waxed_weathered_copper_golem_statue", - "minecraft:waxed_oxidized_copper_golem_statue" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/copper_ores.json b/src/main/resources/data/minecraft/tags/item/copper_ores.json deleted file mode 100644 index 5d76012..0000000 --- a/src/main/resources/data/minecraft/tags/item/copper_ores.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:copper_ore", - "minecraft:deepslate_copper_ore" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/copper_tool_materials.json b/src/main/resources/data/minecraft/tags/item/copper_tool_materials.json deleted file mode 100644 index 1cc1f06..0000000 --- a/src/main/resources/data/minecraft/tags/item/copper_tool_materials.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:copper_ingot" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/cow_food.json b/src/main/resources/data/minecraft/tags/item/cow_food.json deleted file mode 100644 index 498cb44..0000000 --- a/src/main/resources/data/minecraft/tags/item/cow_food.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:wheat" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/creeper_drop_music_discs.json b/src/main/resources/data/minecraft/tags/item/creeper_drop_music_discs.json deleted file mode 100644 index d79c2be..0000000 --- a/src/main/resources/data/minecraft/tags/item/creeper_drop_music_discs.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:music_disc_13", - "minecraft:music_disc_cat", - "minecraft:music_disc_blocks", - "minecraft:music_disc_chirp", - "minecraft:music_disc_far", - "minecraft:music_disc_mall", - "minecraft:music_disc_mellohi", - "minecraft:music_disc_stal", - "minecraft:music_disc_strad", - "minecraft:music_disc_ward", - "minecraft:music_disc_11", - "minecraft:music_disc_wait" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/creeper_igniters.json b/src/main/resources/data/minecraft/tags/item/creeper_igniters.json deleted file mode 100644 index d30efcd..0000000 --- a/src/main/resources/data/minecraft/tags/item/creeper_igniters.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:flint_and_steel", - "minecraft:fire_charge" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/crimson_stems.json b/src/main/resources/data/minecraft/tags/item/crimson_stems.json deleted file mode 100644 index f78c7a3..0000000 --- a/src/main/resources/data/minecraft/tags/item/crimson_stems.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:crimson_stem", - "minecraft:stripped_crimson_stem", - "minecraft:crimson_hyphae", - "minecraft:stripped_crimson_hyphae" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/dampens_vibrations.json b/src/main/resources/data/minecraft/tags/item/dampens_vibrations.json deleted file mode 100644 index 89eab86..0000000 --- a/src/main/resources/data/minecraft/tags/item/dampens_vibrations.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:wool", - "#minecraft:wool_carpets" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/dark_oak_logs.json b/src/main/resources/data/minecraft/tags/item/dark_oak_logs.json deleted file mode 100644 index f7f5a28..0000000 --- a/src/main/resources/data/minecraft/tags/item/dark_oak_logs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:dark_oak_log", - "minecraft:dark_oak_wood", - "minecraft:stripped_dark_oak_log", - "minecraft:stripped_dark_oak_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/decorated_pot_ingredients.json b/src/main/resources/data/minecraft/tags/item/decorated_pot_ingredients.json deleted file mode 100644 index 98e5e88..0000000 --- a/src/main/resources/data/minecraft/tags/item/decorated_pot_ingredients.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:brick", - "#minecraft:decorated_pot_sherds" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/decorated_pot_sherds.json b/src/main/resources/data/minecraft/tags/item/decorated_pot_sherds.json deleted file mode 100644 index 0ef9aa8..0000000 --- a/src/main/resources/data/minecraft/tags/item/decorated_pot_sherds.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "values": [ - "minecraft:angler_pottery_sherd", - "minecraft:archer_pottery_sherd", - "minecraft:arms_up_pottery_sherd", - "minecraft:blade_pottery_sherd", - "minecraft:brewer_pottery_sherd", - "minecraft:burn_pottery_sherd", - "minecraft:danger_pottery_sherd", - "minecraft:explorer_pottery_sherd", - "minecraft:friend_pottery_sherd", - "minecraft:heart_pottery_sherd", - "minecraft:heartbreak_pottery_sherd", - "minecraft:howl_pottery_sherd", - "minecraft:miner_pottery_sherd", - "minecraft:mourner_pottery_sherd", - "minecraft:plenty_pottery_sherd", - "minecraft:prize_pottery_sherd", - "minecraft:sheaf_pottery_sherd", - "minecraft:shelter_pottery_sherd", - "minecraft:skull_pottery_sherd", - "minecraft:snort_pottery_sherd", - "minecraft:flow_pottery_sherd", - "minecraft:guster_pottery_sherd", - "minecraft:scrape_pottery_sherd" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/diamond_ores.json b/src/main/resources/data/minecraft/tags/item/diamond_ores.json deleted file mode 100644 index cfa6e09..0000000 --- a/src/main/resources/data/minecraft/tags/item/diamond_ores.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:diamond_ore", - "minecraft:deepslate_diamond_ore" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/diamond_tool_materials.json b/src/main/resources/data/minecraft/tags/item/diamond_tool_materials.json deleted file mode 100644 index f44f30d..0000000 --- a/src/main/resources/data/minecraft/tags/item/diamond_tool_materials.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:diamond" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/dirt.json b/src/main/resources/data/minecraft/tags/item/dirt.json deleted file mode 100644 index 9b5e54a..0000000 --- a/src/main/resources/data/minecraft/tags/item/dirt.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:dirt", - "minecraft:coarse_dirt", - "minecraft:rooted_dirt" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/doors.json b/src/main/resources/data/minecraft/tags/item/doors.json deleted file mode 100644 index 9ca24fc..0000000 --- a/src/main/resources/data/minecraft/tags/item/doors.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "values": [ - "#minecraft:wooden_doors", - "minecraft:copper_door", - "minecraft:exposed_copper_door", - "minecraft:weathered_copper_door", - "minecraft:oxidized_copper_door", - "minecraft:waxed_copper_door", - "minecraft:waxed_exposed_copper_door", - "minecraft:waxed_weathered_copper_door", - "minecraft:waxed_oxidized_copper_door", - "minecraft:iron_door" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/drowned_preferred_weapons.json b/src/main/resources/data/minecraft/tags/item/drowned_preferred_weapons.json deleted file mode 100644 index 7a2c450..0000000 --- a/src/main/resources/data/minecraft/tags/item/drowned_preferred_weapons.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:trident" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/duplicates_allays.json b/src/main/resources/data/minecraft/tags/item/duplicates_allays.json deleted file mode 100644 index 742ef89..0000000 --- a/src/main/resources/data/minecraft/tags/item/duplicates_allays.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:amethyst_shard" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/dyes.json b/src/main/resources/data/minecraft/tags/item/dyes.json deleted file mode 100644 index f6474de..0000000 --- a/src/main/resources/data/minecraft/tags/item/dyes.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "values": [ - "minecraft:white_dye", - "minecraft:orange_dye", - "minecraft:magenta_dye", - "minecraft:light_blue_dye", - "minecraft:yellow_dye", - "minecraft:lime_dye", - "minecraft:pink_dye", - "minecraft:gray_dye", - "minecraft:light_gray_dye", - "minecraft:cyan_dye", - "minecraft:purple_dye", - "minecraft:blue_dye", - "minecraft:brown_dye", - "minecraft:green_dye", - "minecraft:red_dye", - "minecraft:black_dye" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/eggs.json b/src/main/resources/data/minecraft/tags/item/eggs.json deleted file mode 100644 index 828fbcc..0000000 --- a/src/main/resources/data/minecraft/tags/item/eggs.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:egg", - "minecraft:blue_egg", - "minecraft:brown_egg" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/emerald_ores.json b/src/main/resources/data/minecraft/tags/item/emerald_ores.json deleted file mode 100644 index 063d8e6..0000000 --- a/src/main/resources/data/minecraft/tags/item/emerald_ores.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:emerald_ore", - "minecraft:deepslate_emerald_ore" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/armor.json b/src/main/resources/data/minecraft/tags/item/enchantable/armor.json deleted file mode 100644 index 0040505..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/armor.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "#minecraft:enchantable/foot_armor", - "#minecraft:enchantable/leg_armor", - "#minecraft:enchantable/chest_armor", - "#minecraft:enchantable/head_armor" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/bow.json b/src/main/resources/data/minecraft/tags/item/enchantable/bow.json deleted file mode 100644 index a1c8a44..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/bow.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:bow" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/chest_armor.json b/src/main/resources/data/minecraft/tags/item/enchantable/chest_armor.json deleted file mode 100644 index 913ce1b..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/chest_armor.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:chest_armor" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/crossbow.json b/src/main/resources/data/minecraft/tags/item/enchantable/crossbow.json deleted file mode 100644 index 848f97b..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/crossbow.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:crossbow" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/durability.json b/src/main/resources/data/minecraft/tags/item/enchantable/durability.json deleted file mode 100644 index 2304e0f..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/durability.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "values": [ - "#minecraft:foot_armor", - "#minecraft:leg_armor", - "#minecraft:chest_armor", - "#minecraft:head_armor", - "minecraft:elytra", - "minecraft:shield", - "#minecraft:swords", - "#minecraft:axes", - "#minecraft:pickaxes", - "#minecraft:shovels", - "#minecraft:hoes", - "minecraft:bow", - "minecraft:crossbow", - "minecraft:trident", - "minecraft:flint_and_steel", - "minecraft:shears", - "minecraft:brush", - "minecraft:fishing_rod", - "minecraft:carrot_on_a_stick", - "minecraft:warped_fungus_on_a_stick", - "minecraft:mace", - "#minecraft:spears" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/equippable.json b/src/main/resources/data/minecraft/tags/item/enchantable/equippable.json deleted file mode 100644 index 653c557..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/equippable.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "#minecraft:foot_armor", - "#minecraft:leg_armor", - "#minecraft:chest_armor", - "#minecraft:head_armor", - "minecraft:elytra", - "#minecraft:skulls", - "minecraft:carved_pumpkin" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/fire_aspect.json b/src/main/resources/data/minecraft/tags/item/enchantable/fire_aspect.json deleted file mode 100644 index a93e5ff..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/fire_aspect.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:enchantable/melee_weapon", - "minecraft:mace" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/fishing.json b/src/main/resources/data/minecraft/tags/item/enchantable/fishing.json deleted file mode 100644 index e97941e..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/fishing.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:fishing_rod" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/foot_armor.json b/src/main/resources/data/minecraft/tags/item/enchantable/foot_armor.json deleted file mode 100644 index 9dc9d4c..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/foot_armor.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:foot_armor" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/head_armor.json b/src/main/resources/data/minecraft/tags/item/enchantable/head_armor.json deleted file mode 100644 index 027283b..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/head_armor.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:head_armor" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/leg_armor.json b/src/main/resources/data/minecraft/tags/item/enchantable/leg_armor.json deleted file mode 100644 index af44f45..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/leg_armor.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:leg_armor" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/lunge.json b/src/main/resources/data/minecraft/tags/item/enchantable/lunge.json deleted file mode 100644 index 1f3b3aa..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/lunge.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:spears" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/mace.json b/src/main/resources/data/minecraft/tags/item/enchantable/mace.json deleted file mode 100644 index c149f0e..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/mace.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:mace" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/melee_weapon.json b/src/main/resources/data/minecraft/tags/item/enchantable/melee_weapon.json deleted file mode 100644 index 21b32ef..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/melee_weapon.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:swords", - "#minecraft:spears" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/mining.json b/src/main/resources/data/minecraft/tags/item/enchantable/mining.json deleted file mode 100644 index a2cc0e4..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/mining.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "#minecraft:axes", - "#minecraft:pickaxes", - "#minecraft:shovels", - "#minecraft:hoes", - "minecraft:shears" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/mining_loot.json b/src/main/resources/data/minecraft/tags/item/enchantable/mining_loot.json deleted file mode 100644 index 753a5b3..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/mining_loot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "#minecraft:axes", - "#minecraft:pickaxes", - "#minecraft:shovels", - "#minecraft:hoes" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/sharp_weapon.json b/src/main/resources/data/minecraft/tags/item/enchantable/sharp_weapon.json deleted file mode 100644 index 5838ae4..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/sharp_weapon.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:enchantable/melee_weapon", - "#minecraft:axes" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/sweeping.json b/src/main/resources/data/minecraft/tags/item/enchantable/sweeping.json deleted file mode 100644 index 6637089..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/sweeping.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:swords" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/trident.json b/src/main/resources/data/minecraft/tags/item/enchantable/trident.json deleted file mode 100644 index 7a2c450..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/trident.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:trident" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/vanishing.json b/src/main/resources/data/minecraft/tags/item/enchantable/vanishing.json deleted file mode 100644 index dae3ff8..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/vanishing.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "#minecraft:enchantable/durability", - "minecraft:compass", - "minecraft:carved_pumpkin", - "#minecraft:skulls" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/enchantable/weapon.json b/src/main/resources/data/minecraft/tags/item/enchantable/weapon.json deleted file mode 100644 index 4cda09f..0000000 --- a/src/main/resources/data/minecraft/tags/item/enchantable/weapon.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:enchantable/sharp_weapon", - "minecraft:mace" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/fence_gates.json b/src/main/resources/data/minecraft/tags/item/fence_gates.json deleted file mode 100644 index 9904fc9..0000000 --- a/src/main/resources/data/minecraft/tags/item/fence_gates.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:acacia_fence_gate", - "minecraft:birch_fence_gate", - "minecraft:dark_oak_fence_gate", - "minecraft:pale_oak_fence_gate", - "minecraft:jungle_fence_gate", - "minecraft:oak_fence_gate", - "minecraft:spruce_fence_gate", - "minecraft:crimson_fence_gate", - "minecraft:warped_fence_gate", - "minecraft:mangrove_fence_gate", - "minecraft:bamboo_fence_gate", - "minecraft:cherry_fence_gate" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/fences.json b/src/main/resources/data/minecraft/tags/item/fences.json deleted file mode 100644 index 045fa7d..0000000 --- a/src/main/resources/data/minecraft/tags/item/fences.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:wooden_fences", - "minecraft:nether_brick_fence" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/fishes.json b/src/main/resources/data/minecraft/tags/item/fishes.json deleted file mode 100644 index 434e937..0000000 --- a/src/main/resources/data/minecraft/tags/item/fishes.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "minecraft:cod", - "minecraft:cooked_cod", - "minecraft:salmon", - "minecraft:cooked_salmon", - "minecraft:pufferfish", - "minecraft:tropical_fish" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/flowers.json b/src/main/resources/data/minecraft/tags/item/flowers.json deleted file mode 100644 index e0095f6..0000000 --- a/src/main/resources/data/minecraft/tags/item/flowers.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "values": [ - "#minecraft:small_flowers", - "minecraft:sunflower", - "minecraft:lilac", - "minecraft:peony", - "minecraft:rose_bush", - "minecraft:pitcher_plant", - "minecraft:flowering_azalea_leaves", - "minecraft:flowering_azalea", - "minecraft:mangrove_propagule", - "minecraft:cherry_leaves", - "minecraft:pink_petals", - "minecraft:wildflowers", - "minecraft:chorus_flower", - "minecraft:spore_blossom", - "minecraft:cactus_flower" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/foot_armor.json b/src/main/resources/data/minecraft/tags/item/foot_armor.json deleted file mode 100644 index 47593a5..0000000 --- a/src/main/resources/data/minecraft/tags/item/foot_armor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:leather_boots", - "minecraft:copper_boots", - "minecraft:chainmail_boots", - "minecraft:golden_boots", - "minecraft:iron_boots", - "minecraft:diamond_boots", - "minecraft:netherite_boots" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/fox_food.json b/src/main/resources/data/minecraft/tags/item/fox_food.json deleted file mode 100644 index 500bd94..0000000 --- a/src/main/resources/data/minecraft/tags/item/fox_food.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:sweet_berries", - "minecraft:glow_berries" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/freeze_immune_wearables.json b/src/main/resources/data/minecraft/tags/item/freeze_immune_wearables.json deleted file mode 100644 index 1e8a642..0000000 --- a/src/main/resources/data/minecraft/tags/item/freeze_immune_wearables.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "minecraft:leather_boots", - "minecraft:leather_leggings", - "minecraft:leather_chestplate", - "minecraft:leather_helmet", - "minecraft:leather_horse_armor" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/frog_food.json b/src/main/resources/data/minecraft/tags/item/frog_food.json deleted file mode 100644 index 533c25d..0000000 --- a/src/main/resources/data/minecraft/tags/item/frog_food.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:slime_ball" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/furnace_minecart_fuel.json b/src/main/resources/data/minecraft/tags/item/furnace_minecart_fuel.json deleted file mode 100644 index 43868c8..0000000 --- a/src/main/resources/data/minecraft/tags/item/furnace_minecart_fuel.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:coal", - "minecraft:charcoal" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/gaze_disguise_equipment.json b/src/main/resources/data/minecraft/tags/item/gaze_disguise_equipment.json deleted file mode 100644 index 1a0f6d3..0000000 --- a/src/main/resources/data/minecraft/tags/item/gaze_disguise_equipment.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:carved_pumpkin" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/goat_food.json b/src/main/resources/data/minecraft/tags/item/goat_food.json deleted file mode 100644 index 498cb44..0000000 --- a/src/main/resources/data/minecraft/tags/item/goat_food.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:wheat" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/gold_ores.json b/src/main/resources/data/minecraft/tags/item/gold_ores.json deleted file mode 100644 index 279f354..0000000 --- a/src/main/resources/data/minecraft/tags/item/gold_ores.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:gold_ore", - "minecraft:nether_gold_ore", - "minecraft:deepslate_gold_ore" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/gold_tool_materials.json b/src/main/resources/data/minecraft/tags/item/gold_tool_materials.json deleted file mode 100644 index 07e9f66..0000000 --- a/src/main/resources/data/minecraft/tags/item/gold_tool_materials.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:gold_ingot" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/grass_blocks.json b/src/main/resources/data/minecraft/tags/item/grass_blocks.json deleted file mode 100644 index e7e86f7..0000000 --- a/src/main/resources/data/minecraft/tags/item/grass_blocks.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:grass_block", - "minecraft:podzol", - "minecraft:mycelium" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/hanging_signs.json b/src/main/resources/data/minecraft/tags/item/hanging_signs.json deleted file mode 100644 index b55f67b..0000000 --- a/src/main/resources/data/minecraft/tags/item/hanging_signs.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_hanging_sign", - "minecraft:spruce_hanging_sign", - "minecraft:birch_hanging_sign", - "minecraft:acacia_hanging_sign", - "minecraft:cherry_hanging_sign", - "minecraft:jungle_hanging_sign", - "minecraft:dark_oak_hanging_sign", - "minecraft:pale_oak_hanging_sign", - "minecraft:crimson_hanging_sign", - "minecraft:warped_hanging_sign", - "minecraft:mangrove_hanging_sign", - "minecraft:bamboo_hanging_sign" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/happy_ghast_food.json b/src/main/resources/data/minecraft/tags/item/happy_ghast_food.json deleted file mode 100644 index 952b6ca..0000000 --- a/src/main/resources/data/minecraft/tags/item/happy_ghast_food.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:snowball" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/happy_ghast_tempt_items.json b/src/main/resources/data/minecraft/tags/item/happy_ghast_tempt_items.json deleted file mode 100644 index 141ba10..0000000 --- a/src/main/resources/data/minecraft/tags/item/happy_ghast_tempt_items.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:happy_ghast_food", - "#minecraft:harnesses" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/harnesses.json b/src/main/resources/data/minecraft/tags/item/harnesses.json deleted file mode 100644 index 2592da6..0000000 --- a/src/main/resources/data/minecraft/tags/item/harnesses.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "values": [ - "minecraft:white_harness", - "minecraft:orange_harness", - "minecraft:magenta_harness", - "minecraft:light_blue_harness", - "minecraft:yellow_harness", - "minecraft:lime_harness", - "minecraft:pink_harness", - "minecraft:gray_harness", - "minecraft:light_gray_harness", - "minecraft:cyan_harness", - "minecraft:purple_harness", - "minecraft:blue_harness", - "minecraft:brown_harness", - "minecraft:green_harness", - "minecraft:red_harness", - "minecraft:black_harness" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/head_armor.json b/src/main/resources/data/minecraft/tags/item/head_armor.json deleted file mode 100644 index a0074af..0000000 --- a/src/main/resources/data/minecraft/tags/item/head_armor.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "values": [ - "minecraft:leather_helmet", - "minecraft:copper_helmet", - "minecraft:chainmail_helmet", - "minecraft:golden_helmet", - "minecraft:iron_helmet", - "minecraft:diamond_helmet", - "minecraft:netherite_helmet", - "minecraft:turtle_helmet" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/hoes.json b/src/main/resources/data/minecraft/tags/item/hoes.json deleted file mode 100644 index b0da60a..0000000 --- a/src/main/resources/data/minecraft/tags/item/hoes.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:diamond_hoe", - "minecraft:stone_hoe", - "minecraft:golden_hoe", - "minecraft:netherite_hoe", - "minecraft:wooden_hoe", - "minecraft:iron_hoe", - "minecraft:copper_hoe" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/hoglin_food.json b/src/main/resources/data/minecraft/tags/item/hoglin_food.json deleted file mode 100644 index cca7408..0000000 --- a/src/main/resources/data/minecraft/tags/item/hoglin_food.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:crimson_fungus" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/horse_food.json b/src/main/resources/data/minecraft/tags/item/horse_food.json deleted file mode 100644 index a7adf36..0000000 --- a/src/main/resources/data/minecraft/tags/item/horse_food.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "values": [ - "minecraft:wheat", - "minecraft:sugar", - "minecraft:hay_block", - "minecraft:apple", - "minecraft:carrot", - "minecraft:golden_carrot", - "minecraft:golden_apple", - "minecraft:enchanted_golden_apple" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/horse_tempt_items.json b/src/main/resources/data/minecraft/tags/item/horse_tempt_items.json deleted file mode 100644 index 9e7e81d..0000000 --- a/src/main/resources/data/minecraft/tags/item/horse_tempt_items.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:golden_carrot", - "minecraft:golden_apple", - "minecraft:enchanted_golden_apple" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/ignored_by_piglin_babies.json b/src/main/resources/data/minecraft/tags/item/ignored_by_piglin_babies.json deleted file mode 100644 index 71b797d..0000000 --- a/src/main/resources/data/minecraft/tags/item/ignored_by_piglin_babies.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:leather" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/iron_ores.json b/src/main/resources/data/minecraft/tags/item/iron_ores.json deleted file mode 100644 index 0566d8a..0000000 --- a/src/main/resources/data/minecraft/tags/item/iron_ores.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:iron_ore", - "minecraft:deepslate_iron_ore" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/iron_tool_materials.json b/src/main/resources/data/minecraft/tags/item/iron_tool_materials.json deleted file mode 100644 index c656021..0000000 --- a/src/main/resources/data/minecraft/tags/item/iron_tool_materials.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:iron_ingot" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/jungle_logs.json b/src/main/resources/data/minecraft/tags/item/jungle_logs.json deleted file mode 100644 index 437efbf..0000000 --- a/src/main/resources/data/minecraft/tags/item/jungle_logs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:jungle_log", - "minecraft:jungle_wood", - "minecraft:stripped_jungle_log", - "minecraft:stripped_jungle_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/lanterns.json b/src/main/resources/data/minecraft/tags/item/lanterns.json deleted file mode 100644 index fa358d4..0000000 --- a/src/main/resources/data/minecraft/tags/item/lanterns.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "values": [ - "minecraft:lantern", - "minecraft:soul_lantern", - "minecraft:copper_lantern", - "minecraft:waxed_copper_lantern", - "minecraft:exposed_copper_lantern", - "minecraft:waxed_exposed_copper_lantern", - "minecraft:weathered_copper_lantern", - "minecraft:waxed_weathered_copper_lantern", - "minecraft:oxidized_copper_lantern", - "minecraft:waxed_oxidized_copper_lantern" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/lapis_ores.json b/src/main/resources/data/minecraft/tags/item/lapis_ores.json deleted file mode 100644 index a041526..0000000 --- a/src/main/resources/data/minecraft/tags/item/lapis_ores.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:lapis_ore", - "minecraft:deepslate_lapis_ore" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/leaves.json b/src/main/resources/data/minecraft/tags/item/leaves.json deleted file mode 100644 index 523787f..0000000 --- a/src/main/resources/data/minecraft/tags/item/leaves.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "values": [ - "minecraft:jungle_leaves", - "minecraft:oak_leaves", - "minecraft:spruce_leaves", - "minecraft:pale_oak_leaves", - "minecraft:dark_oak_leaves", - "minecraft:acacia_leaves", - "minecraft:birch_leaves", - "minecraft:azalea_leaves", - "minecraft:flowering_azalea_leaves", - "minecraft:mangrove_leaves", - "minecraft:cherry_leaves" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/lectern_books.json b/src/main/resources/data/minecraft/tags/item/lectern_books.json deleted file mode 100644 index d34a332..0000000 --- a/src/main/resources/data/minecraft/tags/item/lectern_books.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:written_book", - "minecraft:writable_book" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/leg_armor.json b/src/main/resources/data/minecraft/tags/item/leg_armor.json deleted file mode 100644 index 0aed881..0000000 --- a/src/main/resources/data/minecraft/tags/item/leg_armor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:leather_leggings", - "minecraft:copper_leggings", - "minecraft:chainmail_leggings", - "minecraft:golden_leggings", - "minecraft:iron_leggings", - "minecraft:diamond_leggings", - "minecraft:netherite_leggings" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/lightning_rods.json b/src/main/resources/data/minecraft/tags/item/lightning_rods.json deleted file mode 100644 index 73469e2..0000000 --- a/src/main/resources/data/minecraft/tags/item/lightning_rods.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "values": [ - "minecraft:lightning_rod", - "minecraft:exposed_lightning_rod", - "minecraft:weathered_lightning_rod", - "minecraft:oxidized_lightning_rod", - "minecraft:waxed_lightning_rod", - "minecraft:waxed_exposed_lightning_rod", - "minecraft:waxed_weathered_lightning_rod", - "minecraft:waxed_oxidized_lightning_rod" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/llama_food.json b/src/main/resources/data/minecraft/tags/item/llama_food.json deleted file mode 100644 index a80c607..0000000 --- a/src/main/resources/data/minecraft/tags/item/llama_food.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:wheat", - "minecraft:hay_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/llama_tempt_items.json b/src/main/resources/data/minecraft/tags/item/llama_tempt_items.json deleted file mode 100644 index ea92d03..0000000 --- a/src/main/resources/data/minecraft/tags/item/llama_tempt_items.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:hay_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/logs.json b/src/main/resources/data/minecraft/tags/item/logs.json deleted file mode 100644 index 234e4fe..0000000 --- a/src/main/resources/data/minecraft/tags/item/logs.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:logs_that_burn", - "#minecraft:crimson_stems", - "#minecraft:warped_stems" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/logs_that_burn.json b/src/main/resources/data/minecraft/tags/item/logs_that_burn.json deleted file mode 100644 index 00f0e7f..0000000 --- a/src/main/resources/data/minecraft/tags/item/logs_that_burn.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "values": [ - "#minecraft:dark_oak_logs", - "#minecraft:pale_oak_logs", - "#minecraft:oak_logs", - "#minecraft:acacia_logs", - "#minecraft:birch_logs", - "#minecraft:jungle_logs", - "#minecraft:spruce_logs", - "#minecraft:mangrove_logs", - "#minecraft:cherry_logs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/loom_dyes.json b/src/main/resources/data/minecraft/tags/item/loom_dyes.json deleted file mode 100644 index 9902cb0..0000000 --- a/src/main/resources/data/minecraft/tags/item/loom_dyes.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:dyes" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/loom_patterns.json b/src/main/resources/data/minecraft/tags/item/loom_patterns.json deleted file mode 100644 index 9c3adc4..0000000 --- a/src/main/resources/data/minecraft/tags/item/loom_patterns.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "values": [ - "minecraft:flower_banner_pattern", - "minecraft:creeper_banner_pattern", - "minecraft:skull_banner_pattern", - "minecraft:mojang_banner_pattern", - "minecraft:globe_banner_pattern", - "minecraft:piglin_banner_pattern", - "minecraft:flow_banner_pattern", - "minecraft:guster_banner_pattern", - "minecraft:field_masoned_banner_pattern", - "minecraft:bordure_indented_banner_pattern" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/mangrove_logs.json b/src/main/resources/data/minecraft/tags/item/mangrove_logs.json deleted file mode 100644 index d69fadf..0000000 --- a/src/main/resources/data/minecraft/tags/item/mangrove_logs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:mangrove_log", - "minecraft:mangrove_wood", - "minecraft:stripped_mangrove_log", - "minecraft:stripped_mangrove_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/map_invisibility_equipment.json b/src/main/resources/data/minecraft/tags/item/map_invisibility_equipment.json deleted file mode 100644 index 1a0f6d3..0000000 --- a/src/main/resources/data/minecraft/tags/item/map_invisibility_equipment.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:carved_pumpkin" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/meat.json b/src/main/resources/data/minecraft/tags/item/meat.json deleted file mode 100644 index df33994..0000000 --- a/src/main/resources/data/minecraft/tags/item/meat.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "values": [ - "minecraft:beef", - "minecraft:chicken", - "minecraft:cooked_beef", - "minecraft:cooked_chicken", - "minecraft:cooked_mutton", - "minecraft:cooked_porkchop", - "minecraft:cooked_rabbit", - "minecraft:mutton", - "minecraft:porkchop", - "minecraft:rabbit", - "minecraft:rotten_flesh" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/metal_nuggets.json b/src/main/resources/data/minecraft/tags/item/metal_nuggets.json deleted file mode 100644 index f8807c6..0000000 --- a/src/main/resources/data/minecraft/tags/item/metal_nuggets.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:copper_nugget", - "minecraft:iron_nugget", - "minecraft:gold_nugget" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/moss_blocks.json b/src/main/resources/data/minecraft/tags/item/moss_blocks.json deleted file mode 100644 index 2774bdf..0000000 --- a/src/main/resources/data/minecraft/tags/item/moss_blocks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:moss_block", - "minecraft:pale_moss_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/mud.json b/src/main/resources/data/minecraft/tags/item/mud.json deleted file mode 100644 index 0ac1535..0000000 --- a/src/main/resources/data/minecraft/tags/item/mud.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:mud", - "minecraft:muddy_mangrove_roots" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/nautilus_bucket_food.json b/src/main/resources/data/minecraft/tags/item/nautilus_bucket_food.json deleted file mode 100644 index d390054..0000000 --- a/src/main/resources/data/minecraft/tags/item/nautilus_bucket_food.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:pufferfish_bucket", - "minecraft:cod_bucket", - "minecraft:salmon_bucket", - "minecraft:tropical_fish_bucket" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/nautilus_food.json b/src/main/resources/data/minecraft/tags/item/nautilus_food.json deleted file mode 100644 index a6fe3fe..0000000 --- a/src/main/resources/data/minecraft/tags/item/nautilus_food.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:fishes", - "#minecraft:nautilus_bucket_food" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/nautilus_taming_items.json b/src/main/resources/data/minecraft/tags/item/nautilus_taming_items.json deleted file mode 100644 index 4192297..0000000 --- a/src/main/resources/data/minecraft/tags/item/nautilus_taming_items.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:pufferfish_bucket", - "minecraft:pufferfish" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/netherite_tool_materials.json b/src/main/resources/data/minecraft/tags/item/netherite_tool_materials.json deleted file mode 100644 index bd6929d..0000000 --- a/src/main/resources/data/minecraft/tags/item/netherite_tool_materials.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:netherite_ingot" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/non_flammable_wood.json b/src/main/resources/data/minecraft/tags/item/non_flammable_wood.json deleted file mode 100644 index 41c8d15..0000000 --- a/src/main/resources/data/minecraft/tags/item/non_flammable_wood.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "values": [ - "minecraft:warped_stem", - "minecraft:stripped_warped_stem", - "minecraft:warped_hyphae", - "minecraft:stripped_warped_hyphae", - "minecraft:crimson_stem", - "minecraft:stripped_crimson_stem", - "minecraft:crimson_hyphae", - "minecraft:stripped_crimson_hyphae", - "minecraft:crimson_planks", - "minecraft:warped_planks", - "minecraft:crimson_slab", - "minecraft:warped_slab", - "minecraft:crimson_pressure_plate", - "minecraft:warped_pressure_plate", - "minecraft:crimson_fence", - "minecraft:warped_fence", - "minecraft:crimson_trapdoor", - "minecraft:warped_trapdoor", - "minecraft:crimson_fence_gate", - "minecraft:warped_fence_gate", - "minecraft:crimson_stairs", - "minecraft:warped_stairs", - "minecraft:crimson_button", - "minecraft:warped_button", - "minecraft:crimson_door", - "minecraft:warped_door", - "minecraft:crimson_sign", - "minecraft:warped_sign", - "minecraft:warped_hanging_sign", - "minecraft:crimson_hanging_sign", - "minecraft:warped_shelf", - "minecraft:crimson_shelf" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/noteblock_top_instruments.json b/src/main/resources/data/minecraft/tags/item/noteblock_top_instruments.json deleted file mode 100644 index b32f59c..0000000 --- a/src/main/resources/data/minecraft/tags/item/noteblock_top_instruments.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:zombie_head", - "minecraft:skeleton_skull", - "minecraft:creeper_head", - "minecraft:dragon_head", - "minecraft:wither_skeleton_skull", - "minecraft:piglin_head", - "minecraft:player_head" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/oak_logs.json b/src/main/resources/data/minecraft/tags/item/oak_logs.json deleted file mode 100644 index d4bae2a..0000000 --- a/src/main/resources/data/minecraft/tags/item/oak_logs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:oak_log", - "minecraft:oak_wood", - "minecraft:stripped_oak_log", - "minecraft:stripped_oak_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/ocelot_food.json b/src/main/resources/data/minecraft/tags/item/ocelot_food.json deleted file mode 100644 index 7869b40..0000000 --- a/src/main/resources/data/minecraft/tags/item/ocelot_food.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:cod", - "minecraft:salmon" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/pale_oak_logs.json b/src/main/resources/data/minecraft/tags/item/pale_oak_logs.json deleted file mode 100644 index 928a458..0000000 --- a/src/main/resources/data/minecraft/tags/item/pale_oak_logs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:pale_oak_log", - "minecraft:pale_oak_wood", - "minecraft:stripped_pale_oak_log", - "minecraft:stripped_pale_oak_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/panda_eats_from_ground.json b/src/main/resources/data/minecraft/tags/item/panda_eats_from_ground.json deleted file mode 100644 index 421a2fc..0000000 --- a/src/main/resources/data/minecraft/tags/item/panda_eats_from_ground.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:panda_food", - "minecraft:cake" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/panda_food.json b/src/main/resources/data/minecraft/tags/item/panda_food.json deleted file mode 100644 index acf1b10..0000000 --- a/src/main/resources/data/minecraft/tags/item/panda_food.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:bamboo" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/parrot_food.json b/src/main/resources/data/minecraft/tags/item/parrot_food.json deleted file mode 100644 index 295a67c..0000000 --- a/src/main/resources/data/minecraft/tags/item/parrot_food.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "minecraft:wheat_seeds", - "minecraft:melon_seeds", - "minecraft:pumpkin_seeds", - "minecraft:beetroot_seeds", - "minecraft:torchflower_seeds", - "minecraft:pitcher_pod" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/parrot_poisonous_food.json b/src/main/resources/data/minecraft/tags/item/parrot_poisonous_food.json deleted file mode 100644 index a7c0dc9..0000000 --- a/src/main/resources/data/minecraft/tags/item/parrot_poisonous_food.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:cookie" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/pickaxes.json b/src/main/resources/data/minecraft/tags/item/pickaxes.json deleted file mode 100644 index 3902c55..0000000 --- a/src/main/resources/data/minecraft/tags/item/pickaxes.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:diamond_pickaxe", - "minecraft:stone_pickaxe", - "minecraft:golden_pickaxe", - "minecraft:netherite_pickaxe", - "minecraft:wooden_pickaxe", - "minecraft:iron_pickaxe", - "minecraft:copper_pickaxe" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/pig_food.json b/src/main/resources/data/minecraft/tags/item/pig_food.json deleted file mode 100644 index 204b4ab..0000000 --- a/src/main/resources/data/minecraft/tags/item/pig_food.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:carrot", - "minecraft:potato", - "minecraft:beetroot" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/piglin_food.json b/src/main/resources/data/minecraft/tags/item/piglin_food.json deleted file mode 100644 index 0dde9b4..0000000 --- a/src/main/resources/data/minecraft/tags/item/piglin_food.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:porkchop", - "minecraft:cooked_porkchop" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/piglin_loved.json b/src/main/resources/data/minecraft/tags/item/piglin_loved.json deleted file mode 100644 index 1d06ec6..0000000 --- a/src/main/resources/data/minecraft/tags/item/piglin_loved.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "values": [ - "#minecraft:gold_ores", - "minecraft:gold_block", - "minecraft:gilded_blackstone", - "minecraft:light_weighted_pressure_plate", - "minecraft:gold_ingot", - "minecraft:bell", - "minecraft:clock", - "minecraft:golden_carrot", - "minecraft:glistering_melon_slice", - "minecraft:golden_apple", - "minecraft:enchanted_golden_apple", - "minecraft:golden_helmet", - "minecraft:golden_chestplate", - "minecraft:golden_leggings", - "minecraft:golden_boots", - "minecraft:golden_horse_armor", - "minecraft:golden_nautilus_armor", - "minecraft:golden_sword", - "minecraft:golden_spear", - "minecraft:golden_pickaxe", - "minecraft:golden_shovel", - "minecraft:golden_axe", - "minecraft:golden_hoe", - "minecraft:raw_gold", - "minecraft:raw_gold_block", - "minecraft:golden_dandelion" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/piglin_preferred_weapons.json b/src/main/resources/data/minecraft/tags/item/piglin_preferred_weapons.json deleted file mode 100644 index 4623c70..0000000 --- a/src/main/resources/data/minecraft/tags/item/piglin_preferred_weapons.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:crossbow", - "minecraft:golden_spear" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/piglin_repellents.json b/src/main/resources/data/minecraft/tags/item/piglin_repellents.json deleted file mode 100644 index 1538a80..0000000 --- a/src/main/resources/data/minecraft/tags/item/piglin_repellents.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:soul_torch", - "minecraft:soul_lantern", - "minecraft:soul_campfire" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/piglin_safe_armor.json b/src/main/resources/data/minecraft/tags/item/piglin_safe_armor.json deleted file mode 100644 index 656c3b2..0000000 --- a/src/main/resources/data/minecraft/tags/item/piglin_safe_armor.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:golden_helmet", - "minecraft:golden_chestplate", - "minecraft:golden_leggings", - "minecraft:golden_boots" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/pillager_preferred_weapons.json b/src/main/resources/data/minecraft/tags/item/pillager_preferred_weapons.json deleted file mode 100644 index 848f97b..0000000 --- a/src/main/resources/data/minecraft/tags/item/pillager_preferred_weapons.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:crossbow" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/planks.json b/src/main/resources/data/minecraft/tags/item/planks.json deleted file mode 100644 index 55fa6f3..0000000 --- a/src/main/resources/data/minecraft/tags/item/planks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_planks", - "minecraft:spruce_planks", - "minecraft:birch_planks", - "minecraft:jungle_planks", - "minecraft:acacia_planks", - "minecraft:dark_oak_planks", - "minecraft:pale_oak_planks", - "minecraft:crimson_planks", - "minecraft:warped_planks", - "minecraft:mangrove_planks", - "minecraft:bamboo_planks", - "minecraft:cherry_planks" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/rabbit_food.json b/src/main/resources/data/minecraft/tags/item/rabbit_food.json deleted file mode 100644 index a67d532..0000000 --- a/src/main/resources/data/minecraft/tags/item/rabbit_food.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:carrot", - "minecraft:golden_carrot", - "minecraft:dandelion" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/rails.json b/src/main/resources/data/minecraft/tags/item/rails.json deleted file mode 100644 index ba7e2c1..0000000 --- a/src/main/resources/data/minecraft/tags/item/rails.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:rail", - "minecraft:powered_rail", - "minecraft:detector_rail", - "minecraft:activator_rail" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/redstone_ores.json b/src/main/resources/data/minecraft/tags/item/redstone_ores.json deleted file mode 100644 index 2fd184d..0000000 --- a/src/main/resources/data/minecraft/tags/item/redstone_ores.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:redstone_ore", - "minecraft:deepslate_redstone_ore" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/repairs_chain_armor.json b/src/main/resources/data/minecraft/tags/item/repairs_chain_armor.json deleted file mode 100644 index c656021..0000000 --- a/src/main/resources/data/minecraft/tags/item/repairs_chain_armor.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:iron_ingot" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/repairs_copper_armor.json b/src/main/resources/data/minecraft/tags/item/repairs_copper_armor.json deleted file mode 100644 index 1cc1f06..0000000 --- a/src/main/resources/data/minecraft/tags/item/repairs_copper_armor.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:copper_ingot" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/repairs_diamond_armor.json b/src/main/resources/data/minecraft/tags/item/repairs_diamond_armor.json deleted file mode 100644 index f44f30d..0000000 --- a/src/main/resources/data/minecraft/tags/item/repairs_diamond_armor.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:diamond" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/repairs_gold_armor.json b/src/main/resources/data/minecraft/tags/item/repairs_gold_armor.json deleted file mode 100644 index 07e9f66..0000000 --- a/src/main/resources/data/minecraft/tags/item/repairs_gold_armor.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:gold_ingot" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/repairs_iron_armor.json b/src/main/resources/data/minecraft/tags/item/repairs_iron_armor.json deleted file mode 100644 index c656021..0000000 --- a/src/main/resources/data/minecraft/tags/item/repairs_iron_armor.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:iron_ingot" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/repairs_leather_armor.json b/src/main/resources/data/minecraft/tags/item/repairs_leather_armor.json deleted file mode 100644 index 71b797d..0000000 --- a/src/main/resources/data/minecraft/tags/item/repairs_leather_armor.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:leather" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/repairs_netherite_armor.json b/src/main/resources/data/minecraft/tags/item/repairs_netherite_armor.json deleted file mode 100644 index bd6929d..0000000 --- a/src/main/resources/data/minecraft/tags/item/repairs_netherite_armor.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:netherite_ingot" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/repairs_turtle_helmet.json b/src/main/resources/data/minecraft/tags/item/repairs_turtle_helmet.json deleted file mode 100644 index d1d4c27..0000000 --- a/src/main/resources/data/minecraft/tags/item/repairs_turtle_helmet.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:turtle_scute" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/repairs_wolf_armor.json b/src/main/resources/data/minecraft/tags/item/repairs_wolf_armor.json deleted file mode 100644 index ad5988f..0000000 --- a/src/main/resources/data/minecraft/tags/item/repairs_wolf_armor.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:armadillo_scute" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/sand.json b/src/main/resources/data/minecraft/tags/item/sand.json deleted file mode 100644 index 43f90f3..0000000 --- a/src/main/resources/data/minecraft/tags/item/sand.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:sand", - "minecraft:red_sand", - "minecraft:suspicious_sand" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/saplings.json b/src/main/resources/data/minecraft/tags/item/saplings.json deleted file mode 100644 index 286497b..0000000 --- a/src/main/resources/data/minecraft/tags/item/saplings.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "values": [ - "minecraft:oak_sapling", - "minecraft:spruce_sapling", - "minecraft:birch_sapling", - "minecraft:jungle_sapling", - "minecraft:acacia_sapling", - "minecraft:dark_oak_sapling", - "minecraft:pale_oak_sapling", - "minecraft:azalea", - "minecraft:flowering_azalea", - "minecraft:mangrove_propagule", - "minecraft:cherry_sapling" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/shearable_from_copper_golem.json b/src/main/resources/data/minecraft/tags/item/shearable_from_copper_golem.json deleted file mode 100644 index fcef1af..0000000 --- a/src/main/resources/data/minecraft/tags/item/shearable_from_copper_golem.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:poppy" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/sheep_food.json b/src/main/resources/data/minecraft/tags/item/sheep_food.json deleted file mode 100644 index 498cb44..0000000 --- a/src/main/resources/data/minecraft/tags/item/sheep_food.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:wheat" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/shovels.json b/src/main/resources/data/minecraft/tags/item/shovels.json deleted file mode 100644 index 3c03a43..0000000 --- a/src/main/resources/data/minecraft/tags/item/shovels.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:diamond_shovel", - "minecraft:stone_shovel", - "minecraft:golden_shovel", - "minecraft:netherite_shovel", - "minecraft:wooden_shovel", - "minecraft:iron_shovel", - "minecraft:copper_shovel" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/shulker_boxes.json b/src/main/resources/data/minecraft/tags/item/shulker_boxes.json deleted file mode 100644 index 525e33e..0000000 --- a/src/main/resources/data/minecraft/tags/item/shulker_boxes.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "values": [ - "minecraft:shulker_box", - "minecraft:black_shulker_box", - "minecraft:blue_shulker_box", - "minecraft:brown_shulker_box", - "minecraft:cyan_shulker_box", - "minecraft:gray_shulker_box", - "minecraft:green_shulker_box", - "minecraft:light_blue_shulker_box", - "minecraft:light_gray_shulker_box", - "minecraft:lime_shulker_box", - "minecraft:magenta_shulker_box", - "minecraft:orange_shulker_box", - "minecraft:pink_shulker_box", - "minecraft:purple_shulker_box", - "minecraft:red_shulker_box", - "minecraft:white_shulker_box", - "minecraft:yellow_shulker_box" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/signs.json b/src/main/resources/data/minecraft/tags/item/signs.json deleted file mode 100644 index 84fda37..0000000 --- a/src/main/resources/data/minecraft/tags/item/signs.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_sign", - "minecraft:spruce_sign", - "minecraft:birch_sign", - "minecraft:acacia_sign", - "minecraft:jungle_sign", - "minecraft:dark_oak_sign", - "minecraft:pale_oak_sign", - "minecraft:crimson_sign", - "minecraft:warped_sign", - "minecraft:mangrove_sign", - "minecraft:bamboo_sign", - "minecraft:cherry_sign" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/skeleton_preferred_weapons.json b/src/main/resources/data/minecraft/tags/item/skeleton_preferred_weapons.json deleted file mode 100644 index a1c8a44..0000000 --- a/src/main/resources/data/minecraft/tags/item/skeleton_preferred_weapons.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:bow" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/skulls.json b/src/main/resources/data/minecraft/tags/item/skulls.json deleted file mode 100644 index 1e76c2e..0000000 --- a/src/main/resources/data/minecraft/tags/item/skulls.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:player_head", - "minecraft:creeper_head", - "minecraft:zombie_head", - "minecraft:skeleton_skull", - "minecraft:wither_skeleton_skull", - "minecraft:dragon_head", - "minecraft:piglin_head" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/slabs.json b/src/main/resources/data/minecraft/tags/item/slabs.json deleted file mode 100644 index ebc3f8e..0000000 --- a/src/main/resources/data/minecraft/tags/item/slabs.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "values": [ - "#minecraft:wooden_slabs", - "minecraft:bamboo_mosaic_slab", - "minecraft:stone_slab", - "minecraft:smooth_stone_slab", - "minecraft:stone_brick_slab", - "minecraft:sandstone_slab", - "minecraft:purpur_slab", - "minecraft:quartz_slab", - "minecraft:red_sandstone_slab", - "minecraft:brick_slab", - "minecraft:cobblestone_slab", - "minecraft:nether_brick_slab", - "minecraft:petrified_oak_slab", - "minecraft:prismarine_slab", - "minecraft:prismarine_brick_slab", - "minecraft:dark_prismarine_slab", - "minecraft:polished_granite_slab", - "minecraft:smooth_red_sandstone_slab", - "minecraft:mossy_stone_brick_slab", - "minecraft:polished_diorite_slab", - "minecraft:mossy_cobblestone_slab", - "minecraft:end_stone_brick_slab", - "minecraft:smooth_sandstone_slab", - "minecraft:smooth_quartz_slab", - "minecraft:granite_slab", - "minecraft:andesite_slab", - "minecraft:red_nether_brick_slab", - "minecraft:polished_andesite_slab", - "minecraft:diorite_slab", - "minecraft:cut_sandstone_slab", - "minecraft:cut_red_sandstone_slab", - "minecraft:blackstone_slab", - "minecraft:polished_blackstone_brick_slab", - "minecraft:polished_blackstone_slab", - "minecraft:cobbled_deepslate_slab", - "minecraft:polished_deepslate_slab", - "minecraft:deepslate_tile_slab", - "minecraft:deepslate_brick_slab", - "minecraft:waxed_weathered_cut_copper_slab", - "minecraft:waxed_exposed_cut_copper_slab", - "minecraft:waxed_cut_copper_slab", - "minecraft:oxidized_cut_copper_slab", - "minecraft:weathered_cut_copper_slab", - "minecraft:exposed_cut_copper_slab", - "minecraft:cut_copper_slab", - "minecraft:waxed_oxidized_cut_copper_slab", - "minecraft:mud_brick_slab", - "minecraft:tuff_slab", - "minecraft:polished_tuff_slab", - "minecraft:tuff_brick_slab", - "minecraft:resin_brick_slab" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/small_flowers.json b/src/main/resources/data/minecraft/tags/item/small_flowers.json deleted file mode 100644 index 14472b0..0000000 --- a/src/main/resources/data/minecraft/tags/item/small_flowers.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "values": [ - "minecraft:dandelion", - "minecraft:open_eyeblossom", - "minecraft:poppy", - "minecraft:blue_orchid", - "minecraft:allium", - "minecraft:azure_bluet", - "minecraft:red_tulip", - "minecraft:orange_tulip", - "minecraft:white_tulip", - "minecraft:pink_tulip", - "minecraft:oxeye_daisy", - "minecraft:cornflower", - "minecraft:lily_of_the_valley", - "minecraft:wither_rose", - "minecraft:torchflower", - "minecraft:closed_eyeblossom", - "minecraft:golden_dandelion" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/smelts_to_glass.json b/src/main/resources/data/minecraft/tags/item/smelts_to_glass.json deleted file mode 100644 index 3d8220e..0000000 --- a/src/main/resources/data/minecraft/tags/item/smelts_to_glass.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:sand", - "minecraft:red_sand" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/sniffer_food.json b/src/main/resources/data/minecraft/tags/item/sniffer_food.json deleted file mode 100644 index e02282a..0000000 --- a/src/main/resources/data/minecraft/tags/item/sniffer_food.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:torchflower_seeds" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/soul_fire_base_blocks.json b/src/main/resources/data/minecraft/tags/item/soul_fire_base_blocks.json deleted file mode 100644 index e8aa4af..0000000 --- a/src/main/resources/data/minecraft/tags/item/soul_fire_base_blocks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:soul_sand", - "minecraft:soul_soil" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/spears.json b/src/main/resources/data/minecraft/tags/item/spears.json deleted file mode 100644 index 61999a5..0000000 --- a/src/main/resources/data/minecraft/tags/item/spears.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:diamond_spear", - "minecraft:stone_spear", - "minecraft:golden_spear", - "minecraft:netherite_spear", - "minecraft:wooden_spear", - "minecraft:iron_spear", - "minecraft:copper_spear" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/spruce_logs.json b/src/main/resources/data/minecraft/tags/item/spruce_logs.json deleted file mode 100644 index a800842..0000000 --- a/src/main/resources/data/minecraft/tags/item/spruce_logs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:spruce_log", - "minecraft:spruce_wood", - "minecraft:stripped_spruce_log", - "minecraft:stripped_spruce_wood" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/stairs.json b/src/main/resources/data/minecraft/tags/item/stairs.json deleted file mode 100644 index fd135fc..0000000 --- a/src/main/resources/data/minecraft/tags/item/stairs.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "values": [ - "#minecraft:wooden_stairs", - "minecraft:bamboo_mosaic_stairs", - "minecraft:cobblestone_stairs", - "minecraft:sandstone_stairs", - "minecraft:nether_brick_stairs", - "minecraft:stone_brick_stairs", - "minecraft:brick_stairs", - "minecraft:purpur_stairs", - "minecraft:quartz_stairs", - "minecraft:red_sandstone_stairs", - "minecraft:prismarine_brick_stairs", - "minecraft:prismarine_stairs", - "minecraft:dark_prismarine_stairs", - "minecraft:polished_granite_stairs", - "minecraft:smooth_red_sandstone_stairs", - "minecraft:mossy_stone_brick_stairs", - "minecraft:polished_diorite_stairs", - "minecraft:mossy_cobblestone_stairs", - "minecraft:end_stone_brick_stairs", - "minecraft:stone_stairs", - "minecraft:smooth_sandstone_stairs", - "minecraft:smooth_quartz_stairs", - "minecraft:granite_stairs", - "minecraft:andesite_stairs", - "minecraft:red_nether_brick_stairs", - "minecraft:polished_andesite_stairs", - "minecraft:diorite_stairs", - "minecraft:blackstone_stairs", - "minecraft:polished_blackstone_brick_stairs", - "minecraft:polished_blackstone_stairs", - "minecraft:cobbled_deepslate_stairs", - "minecraft:polished_deepslate_stairs", - "minecraft:deepslate_tile_stairs", - "minecraft:deepslate_brick_stairs", - "minecraft:oxidized_cut_copper_stairs", - "minecraft:weathered_cut_copper_stairs", - "minecraft:exposed_cut_copper_stairs", - "minecraft:cut_copper_stairs", - "minecraft:waxed_weathered_cut_copper_stairs", - "minecraft:waxed_exposed_cut_copper_stairs", - "minecraft:waxed_cut_copper_stairs", - "minecraft:waxed_oxidized_cut_copper_stairs", - "minecraft:mud_brick_stairs", - "minecraft:tuff_stairs", - "minecraft:polished_tuff_stairs", - "minecraft:tuff_brick_stairs", - "minecraft:resin_brick_stairs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/stone_bricks.json b/src/main/resources/data/minecraft/tags/item/stone_bricks.json deleted file mode 100644 index 973064b..0000000 --- a/src/main/resources/data/minecraft/tags/item/stone_bricks.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:stone_bricks", - "minecraft:mossy_stone_bricks", - "minecraft:cracked_stone_bricks", - "minecraft:chiseled_stone_bricks" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/stone_buttons.json b/src/main/resources/data/minecraft/tags/item/stone_buttons.json deleted file mode 100644 index decb592..0000000 --- a/src/main/resources/data/minecraft/tags/item/stone_buttons.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:stone_button", - "minecraft:polished_blackstone_button" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/stone_crafting_materials.json b/src/main/resources/data/minecraft/tags/item/stone_crafting_materials.json deleted file mode 100644 index e579c14..0000000 --- a/src/main/resources/data/minecraft/tags/item/stone_crafting_materials.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:cobblestone", - "minecraft:blackstone", - "minecraft:cobbled_deepslate" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/stone_tool_materials.json b/src/main/resources/data/minecraft/tags/item/stone_tool_materials.json deleted file mode 100644 index e579c14..0000000 --- a/src/main/resources/data/minecraft/tags/item/stone_tool_materials.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:cobblestone", - "minecraft:blackstone", - "minecraft:cobbled_deepslate" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/strider_food.json b/src/main/resources/data/minecraft/tags/item/strider_food.json deleted file mode 100644 index af616fb..0000000 --- a/src/main/resources/data/minecraft/tags/item/strider_food.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:warped_fungus" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/strider_tempt_items.json b/src/main/resources/data/minecraft/tags/item/strider_tempt_items.json deleted file mode 100644 index f9c9349..0000000 --- a/src/main/resources/data/minecraft/tags/item/strider_tempt_items.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:strider_food", - "minecraft:warped_fungus_on_a_stick" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/swords.json b/src/main/resources/data/minecraft/tags/item/swords.json deleted file mode 100644 index 1483ad5..0000000 --- a/src/main/resources/data/minecraft/tags/item/swords.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:diamond_sword", - "minecraft:stone_sword", - "minecraft:golden_sword", - "minecraft:netherite_sword", - "minecraft:wooden_sword", - "minecraft:iron_sword", - "minecraft:copper_sword" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/terracotta.json b/src/main/resources/data/minecraft/tags/item/terracotta.json deleted file mode 100644 index 27aac67..0000000 --- a/src/main/resources/data/minecraft/tags/item/terracotta.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "values": [ - "minecraft:terracotta", - "minecraft:white_terracotta", - "minecraft:orange_terracotta", - "minecraft:magenta_terracotta", - "minecraft:light_blue_terracotta", - "minecraft:yellow_terracotta", - "minecraft:lime_terracotta", - "minecraft:pink_terracotta", - "minecraft:gray_terracotta", - "minecraft:light_gray_terracotta", - "minecraft:cyan_terracotta", - "minecraft:purple_terracotta", - "minecraft:blue_terracotta", - "minecraft:brown_terracotta", - "minecraft:green_terracotta", - "minecraft:red_terracotta", - "minecraft:black_terracotta" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/trapdoors.json b/src/main/resources/data/minecraft/tags/item/trapdoors.json deleted file mode 100644 index 269e4b8..0000000 --- a/src/main/resources/data/minecraft/tags/item/trapdoors.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "values": [ - "#minecraft:wooden_trapdoors", - "minecraft:iron_trapdoor", - "minecraft:copper_trapdoor", - "minecraft:exposed_copper_trapdoor", - "minecraft:weathered_copper_trapdoor", - "minecraft:oxidized_copper_trapdoor", - "minecraft:waxed_copper_trapdoor", - "minecraft:waxed_exposed_copper_trapdoor", - "minecraft:waxed_weathered_copper_trapdoor", - "minecraft:waxed_oxidized_copper_trapdoor" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/trim_materials.json b/src/main/resources/data/minecraft/tags/item/trim_materials.json deleted file mode 100644 index c2fc877..0000000 --- a/src/main/resources/data/minecraft/tags/item/trim_materials.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "values": [ - "minecraft:amethyst_shard", - "minecraft:copper_ingot", - "minecraft:diamond", - "minecraft:emerald", - "minecraft:gold_ingot", - "minecraft:iron_ingot", - "minecraft:lapis_lazuli", - "minecraft:netherite_ingot", - "minecraft:quartz", - "minecraft:redstone", - "minecraft:resin_brick" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/trimmable_armor.json b/src/main/resources/data/minecraft/tags/item/trimmable_armor.json deleted file mode 100644 index 00a2352..0000000 --- a/src/main/resources/data/minecraft/tags/item/trimmable_armor.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "#minecraft:foot_armor", - "#minecraft:leg_armor", - "#minecraft:chest_armor", - "#minecraft:head_armor" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/turtle_food.json b/src/main/resources/data/minecraft/tags/item/turtle_food.json deleted file mode 100644 index 92433f7..0000000 --- a/src/main/resources/data/minecraft/tags/item/turtle_food.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:seagrass" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/villager_picks_up.json b/src/main/resources/data/minecraft/tags/item/villager_picks_up.json deleted file mode 100644 index 24e9da3..0000000 --- a/src/main/resources/data/minecraft/tags/item/villager_picks_up.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "#minecraft:villager_plantable_seeds", - "minecraft:bread", - "minecraft:wheat", - "minecraft:beetroot" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/villager_plantable_seeds.json b/src/main/resources/data/minecraft/tags/item/villager_plantable_seeds.json deleted file mode 100644 index 00a0c22..0000000 --- a/src/main/resources/data/minecraft/tags/item/villager_plantable_seeds.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "minecraft:wheat_seeds", - "minecraft:potato", - "minecraft:carrot", - "minecraft:beetroot_seeds", - "minecraft:torchflower_seeds", - "minecraft:pitcher_pod" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/walls.json b/src/main/resources/data/minecraft/tags/item/walls.json deleted file mode 100644 index aa80022..0000000 --- a/src/main/resources/data/minecraft/tags/item/walls.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "values": [ - "minecraft:cobblestone_wall", - "minecraft:mossy_cobblestone_wall", - "minecraft:brick_wall", - "minecraft:prismarine_wall", - "minecraft:red_sandstone_wall", - "minecraft:mossy_stone_brick_wall", - "minecraft:granite_wall", - "minecraft:stone_brick_wall", - "minecraft:nether_brick_wall", - "minecraft:andesite_wall", - "minecraft:red_nether_brick_wall", - "minecraft:sandstone_wall", - "minecraft:end_stone_brick_wall", - "minecraft:diorite_wall", - "minecraft:blackstone_wall", - "minecraft:polished_blackstone_brick_wall", - "minecraft:polished_blackstone_wall", - "minecraft:cobbled_deepslate_wall", - "minecraft:polished_deepslate_wall", - "minecraft:deepslate_tile_wall", - "minecraft:deepslate_brick_wall", - "minecraft:mud_brick_wall", - "minecraft:tuff_wall", - "minecraft:polished_tuff_wall", - "minecraft:tuff_brick_wall", - "minecraft:resin_brick_wall" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/warped_stems.json b/src/main/resources/data/minecraft/tags/item/warped_stems.json deleted file mode 100644 index 4da6386..0000000 --- a/src/main/resources/data/minecraft/tags/item/warped_stems.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:warped_stem", - "minecraft:stripped_warped_stem", - "minecraft:warped_hyphae", - "minecraft:stripped_warped_hyphae" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/wart_blocks.json b/src/main/resources/data/minecraft/tags/item/wart_blocks.json deleted file mode 100644 index bab2679..0000000 --- a/src/main/resources/data/minecraft/tags/item/wart_blocks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:nether_wart_block", - "minecraft:warped_wart_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/wither_skeleton_disliked_weapons.json b/src/main/resources/data/minecraft/tags/item/wither_skeleton_disliked_weapons.json deleted file mode 100644 index 0783487..0000000 --- a/src/main/resources/data/minecraft/tags/item/wither_skeleton_disliked_weapons.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:bow", - "minecraft:crossbow" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/wolf_collar_dyes.json b/src/main/resources/data/minecraft/tags/item/wolf_collar_dyes.json deleted file mode 100644 index 9902cb0..0000000 --- a/src/main/resources/data/minecraft/tags/item/wolf_collar_dyes.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:dyes" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/wolf_food.json b/src/main/resources/data/minecraft/tags/item/wolf_food.json deleted file mode 100644 index 2dfd95a..0000000 --- a/src/main/resources/data/minecraft/tags/item/wolf_food.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "values": [ - "#minecraft:meat", - "minecraft:cod", - "minecraft:cooked_cod", - "minecraft:salmon", - "minecraft:cooked_salmon", - "minecraft:tropical_fish", - "minecraft:pufferfish", - "minecraft:rabbit_stew" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/wooden_buttons.json b/src/main/resources/data/minecraft/tags/item/wooden_buttons.json deleted file mode 100644 index f6646d7..0000000 --- a/src/main/resources/data/minecraft/tags/item/wooden_buttons.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_button", - "minecraft:spruce_button", - "minecraft:birch_button", - "minecraft:jungle_button", - "minecraft:acacia_button", - "minecraft:dark_oak_button", - "minecraft:pale_oak_button", - "minecraft:crimson_button", - "minecraft:warped_button", - "minecraft:mangrove_button", - "minecraft:bamboo_button", - "minecraft:cherry_button" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/wooden_doors.json b/src/main/resources/data/minecraft/tags/item/wooden_doors.json deleted file mode 100644 index be8b7de..0000000 --- a/src/main/resources/data/minecraft/tags/item/wooden_doors.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_door", - "minecraft:spruce_door", - "minecraft:birch_door", - "minecraft:jungle_door", - "minecraft:acacia_door", - "minecraft:dark_oak_door", - "minecraft:pale_oak_door", - "minecraft:crimson_door", - "minecraft:warped_door", - "minecraft:mangrove_door", - "minecraft:bamboo_door", - "minecraft:cherry_door" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/wooden_fences.json b/src/main/resources/data/minecraft/tags/item/wooden_fences.json deleted file mode 100644 index dc05158..0000000 --- a/src/main/resources/data/minecraft/tags/item/wooden_fences.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_fence", - "minecraft:acacia_fence", - "minecraft:dark_oak_fence", - "minecraft:pale_oak_fence", - "minecraft:spruce_fence", - "minecraft:birch_fence", - "minecraft:jungle_fence", - "minecraft:crimson_fence", - "minecraft:warped_fence", - "minecraft:mangrove_fence", - "minecraft:bamboo_fence", - "minecraft:cherry_fence" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/wooden_pressure_plates.json b/src/main/resources/data/minecraft/tags/item/wooden_pressure_plates.json deleted file mode 100644 index 008f006..0000000 --- a/src/main/resources/data/minecraft/tags/item/wooden_pressure_plates.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_pressure_plate", - "minecraft:spruce_pressure_plate", - "minecraft:birch_pressure_plate", - "minecraft:jungle_pressure_plate", - "minecraft:acacia_pressure_plate", - "minecraft:dark_oak_pressure_plate", - "minecraft:pale_oak_pressure_plate", - "minecraft:crimson_pressure_plate", - "minecraft:warped_pressure_plate", - "minecraft:mangrove_pressure_plate", - "minecraft:bamboo_pressure_plate", - "minecraft:cherry_pressure_plate" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/wooden_shelves.json b/src/main/resources/data/minecraft/tags/item/wooden_shelves.json deleted file mode 100644 index eb26547..0000000 --- a/src/main/resources/data/minecraft/tags/item/wooden_shelves.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:acacia_shelf", - "minecraft:bamboo_shelf", - "minecraft:birch_shelf", - "minecraft:cherry_shelf", - "minecraft:crimson_shelf", - "minecraft:dark_oak_shelf", - "minecraft:jungle_shelf", - "minecraft:mangrove_shelf", - "minecraft:oak_shelf", - "minecraft:pale_oak_shelf", - "minecraft:spruce_shelf", - "minecraft:warped_shelf" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/wooden_slabs.json b/src/main/resources/data/minecraft/tags/item/wooden_slabs.json deleted file mode 100644 index 795bd3b..0000000 --- a/src/main/resources/data/minecraft/tags/item/wooden_slabs.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_slab", - "minecraft:spruce_slab", - "minecraft:birch_slab", - "minecraft:jungle_slab", - "minecraft:acacia_slab", - "minecraft:dark_oak_slab", - "minecraft:pale_oak_slab", - "minecraft:crimson_slab", - "minecraft:warped_slab", - "minecraft:mangrove_slab", - "minecraft:bamboo_slab", - "minecraft:cherry_slab" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/wooden_stairs.json b/src/main/resources/data/minecraft/tags/item/wooden_stairs.json deleted file mode 100644 index 86239e4..0000000 --- a/src/main/resources/data/minecraft/tags/item/wooden_stairs.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:oak_stairs", - "minecraft:spruce_stairs", - "minecraft:birch_stairs", - "minecraft:jungle_stairs", - "minecraft:acacia_stairs", - "minecraft:dark_oak_stairs", - "minecraft:pale_oak_stairs", - "minecraft:crimson_stairs", - "minecraft:warped_stairs", - "minecraft:mangrove_stairs", - "minecraft:bamboo_stairs", - "minecraft:cherry_stairs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/wooden_tool_materials.json b/src/main/resources/data/minecraft/tags/item/wooden_tool_materials.json deleted file mode 100644 index 97fee2c..0000000 --- a/src/main/resources/data/minecraft/tags/item/wooden_tool_materials.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:planks" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/wooden_trapdoors.json b/src/main/resources/data/minecraft/tags/item/wooden_trapdoors.json deleted file mode 100644 index 050e05f..0000000 --- a/src/main/resources/data/minecraft/tags/item/wooden_trapdoors.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "values": [ - "minecraft:acacia_trapdoor", - "minecraft:birch_trapdoor", - "minecraft:dark_oak_trapdoor", - "minecraft:pale_oak_trapdoor", - "minecraft:jungle_trapdoor", - "minecraft:oak_trapdoor", - "minecraft:spruce_trapdoor", - "minecraft:crimson_trapdoor", - "minecraft:warped_trapdoor", - "minecraft:mangrove_trapdoor", - "minecraft:bamboo_trapdoor", - "minecraft:cherry_trapdoor" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/wool.json b/src/main/resources/data/minecraft/tags/item/wool.json deleted file mode 100644 index bb52fac..0000000 --- a/src/main/resources/data/minecraft/tags/item/wool.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "values": [ - "minecraft:white_wool", - "minecraft:orange_wool", - "minecraft:magenta_wool", - "minecraft:light_blue_wool", - "minecraft:yellow_wool", - "minecraft:lime_wool", - "minecraft:pink_wool", - "minecraft:gray_wool", - "minecraft:light_gray_wool", - "minecraft:cyan_wool", - "minecraft:purple_wool", - "minecraft:blue_wool", - "minecraft:brown_wool", - "minecraft:green_wool", - "minecraft:red_wool", - "minecraft:black_wool" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/wool_carpets.json b/src/main/resources/data/minecraft/tags/item/wool_carpets.json deleted file mode 100644 index 4dec465..0000000 --- a/src/main/resources/data/minecraft/tags/item/wool_carpets.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "values": [ - "minecraft:white_carpet", - "minecraft:orange_carpet", - "minecraft:magenta_carpet", - "minecraft:light_blue_carpet", - "minecraft:yellow_carpet", - "minecraft:lime_carpet", - "minecraft:pink_carpet", - "minecraft:gray_carpet", - "minecraft:light_gray_carpet", - "minecraft:cyan_carpet", - "minecraft:purple_carpet", - "minecraft:blue_carpet", - "minecraft:brown_carpet", - "minecraft:green_carpet", - "minecraft:red_carpet", - "minecraft:black_carpet" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/item/zombie_horse_food.json b/src/main/resources/data/minecraft/tags/item/zombie_horse_food.json deleted file mode 100644 index 02bd559..0000000 --- a/src/main/resources/data/minecraft/tags/item/zombie_horse_food.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:red_mushroom" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/point_of_interest_type/acquirable_job_site.json b/src/main/resources/data/minecraft/tags/point_of_interest_type/acquirable_job_site.json deleted file mode 100644 index 3f0ecb6..0000000 --- a/src/main/resources/data/minecraft/tags/point_of_interest_type/acquirable_job_site.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "values": [ - "minecraft:armorer", - "minecraft:butcher", - "minecraft:cartographer", - "minecraft:cleric", - "minecraft:farmer", - "minecraft:fisherman", - "minecraft:fletcher", - "minecraft:leatherworker", - "minecraft:librarian", - "minecraft:mason", - "minecraft:shepherd", - "minecraft:toolsmith", - "minecraft:weaponsmith" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/point_of_interest_type/bee_home.json b/src/main/resources/data/minecraft/tags/point_of_interest_type/bee_home.json deleted file mode 100644 index 4c023d0..0000000 --- a/src/main/resources/data/minecraft/tags/point_of_interest_type/bee_home.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:beehive", - "minecraft:bee_nest" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/point_of_interest_type/village.json b/src/main/resources/data/minecraft/tags/point_of_interest_type/village.json deleted file mode 100644 index 92e93e8..0000000 --- a/src/main/resources/data/minecraft/tags/point_of_interest_type/village.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:acquirable_job_site", - "minecraft:home", - "minecraft:meeting" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/potion/tradeable.json b/src/main/resources/data/minecraft/tags/potion/tradeable.json deleted file mode 100644 index 760b7b0..0000000 --- a/src/main/resources/data/minecraft/tags/potion/tradeable.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "values": [ - "minecraft:wind_charged", - "minecraft:oozing", - "minecraft:infested", - "minecraft:weaving", - "minecraft:night_vision", - "minecraft:long_night_vision", - "minecraft:invisibility", - "minecraft:long_invisibility", - "minecraft:fire_resistance", - "minecraft:long_fire_resistance", - "minecraft:leaping", - "minecraft:long_leaping", - "minecraft:strong_leaping", - "minecraft:slowness", - "minecraft:long_slowness", - "minecraft:strong_slowness", - "minecraft:turtle_master", - "minecraft:long_turtle_master", - "minecraft:strong_turtle_master", - "minecraft:swiftness", - "minecraft:long_swiftness", - "minecraft:strong_swiftness", - "minecraft:water_breathing", - "minecraft:long_water_breathing", - "minecraft:healing", - "minecraft:strong_healing", - "minecraft:harming", - "minecraft:strong_harming", - "minecraft:poison", - "minecraft:long_poison", - "minecraft:strong_poison", - "minecraft:regeneration", - "minecraft:long_regeneration", - "minecraft:strong_regeneration", - "minecraft:strength", - "minecraft:long_strength", - "minecraft:strong_strength", - "minecraft:weakness", - "minecraft:long_weakness", - "minecraft:slow_falling", - "minecraft:long_slow_falling" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/timeline/in_end.json b/src/main/resources/data/minecraft/tags/timeline/in_end.json deleted file mode 100644 index 2a0e147..0000000 --- a/src/main/resources/data/minecraft/tags/timeline/in_end.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:universal" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/timeline/in_nether.json b/src/main/resources/data/minecraft/tags/timeline/in_nether.json deleted file mode 100644 index 2a0e147..0000000 --- a/src/main/resources/data/minecraft/tags/timeline/in_nether.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:universal" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/timeline/in_overworld.json b/src/main/resources/data/minecraft/tags/timeline/in_overworld.json deleted file mode 100644 index 94f2424..0000000 --- a/src/main/resources/data/minecraft/tags/timeline/in_overworld.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "#minecraft:universal", - "minecraft:day", - "minecraft:moon", - "minecraft:early_game" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/timeline/universal.json b/src/main/resources/data/minecraft/tags/timeline/universal.json deleted file mode 100644 index a37beba..0000000 --- a/src/main/resources/data/minecraft/tags/timeline/universal.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:villager_schedule" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/armorer/level_1.json b/src/main/resources/data/minecraft/tags/villager_trade/armorer/level_1.json deleted file mode 100644 index d6016c6..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/armorer/level_1.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "#minecraft:common_smith/level_1", - "minecraft:armorer/1/emerald_iron_leggings", - "minecraft:armorer/1/emerald_iron_boots", - "minecraft:armorer/1/emerald_iron_helmet", - "minecraft:armorer/1/emerald_iron_chestplate" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/armorer/level_2.json b/src/main/resources/data/minecraft/tags/villager_trade/armorer/level_2.json deleted file mode 100644 index c0d2014..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/armorer/level_2.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:common_smith/level_2", - "minecraft:armorer/2/emerald_chainmail_boots", - "minecraft:armorer/2/emerald_chainmail_leggings" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/armorer/level_3.json b/src/main/resources/data/minecraft/tags/villager_trade/armorer/level_3.json deleted file mode 100644 index 33ac977..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/armorer/level_3.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "#minecraft:common_smith/level_3", - "minecraft:armorer/3/lava_bucket_emerald", - "minecraft:armorer/3/emerald_chainmail_helmet", - "minecraft:armorer/3/emerald_chainmail_chestplate", - "minecraft:armorer/3/emerald_shield", - "minecraft:armorer/3/diamond_emerald" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/armorer/level_4.json b/src/main/resources/data/minecraft/tags/villager_trade/armorer/level_4.json deleted file mode 100644 index bd112ec..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/armorer/level_4.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:common_smith/level_4", - "minecraft:armorer/4/emerald_enchanted_diamond_leggings", - "minecraft:armorer/4/emerald_enchanted_diamond_boots" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/armorer/level_5.json b/src/main/resources/data/minecraft/tags/villager_trade/armorer/level_5.json deleted file mode 100644 index 3648799..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/armorer/level_5.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:common_smith/level_5", - "minecraft:armorer/5/emerald_enchanted_diamond_helmet", - "minecraft:armorer/5/emerald_enchanted_diamond_chestplate" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/butcher/level_1.json b/src/main/resources/data/minecraft/tags/villager_trade/butcher/level_1.json deleted file mode 100644 index 5820773..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/butcher/level_1.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:butcher/1/chicken_emerald", - "minecraft:butcher/1/porkchop_emerald", - "minecraft:butcher/1/rabbit_emerald", - "minecraft:butcher/1/emerald_rabbit_stew" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/butcher/level_2.json b/src/main/resources/data/minecraft/tags/villager_trade/butcher/level_2.json deleted file mode 100644 index ab12971..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/butcher/level_2.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:butcher/2/coal_emerald", - "minecraft:butcher/2/emerald_cooked_porkchop", - "minecraft:butcher/2/emerald_cooked_chicken" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/butcher/level_3.json b/src/main/resources/data/minecraft/tags/villager_trade/butcher/level_3.json deleted file mode 100644 index 918f3d1..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/butcher/level_3.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:butcher/3/mutton_emerald", - "minecraft:butcher/3/beef_emerald" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/butcher/level_4.json b/src/main/resources/data/minecraft/tags/villager_trade/butcher/level_4.json deleted file mode 100644 index 79f5079..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/butcher/level_4.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:butcher/4/dried_kelp_block_emerald" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/butcher/level_5.json b/src/main/resources/data/minecraft/tags/villager_trade/butcher/level_5.json deleted file mode 100644 index b62f74a..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/butcher/level_5.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:butcher/5/sweet_berries_emerald" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/cartographer/level_1.json b/src/main/resources/data/minecraft/tags/villager_trade/cartographer/level_1.json deleted file mode 100644 index bd3de90..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/cartographer/level_1.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:cartographer/1/paper_emerald", - "minecraft:cartographer/1/emerald_map" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/cartographer/level_2.json b/src/main/resources/data/minecraft/tags/villager_trade/cartographer/level_2.json deleted file mode 100644 index 1d54d8c..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/cartographer/level_2.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "values": [ - "minecraft:cartographer/2/glass_pane_emerald", - "minecraft:cartographer/2/emerald_and_compass_village_taiga_map", - "minecraft:cartographer/2/emerald_and_compass_explorer_swamp_map", - "minecraft:cartographer/2/emerald_and_compass_village_snowy_map", - "minecraft:cartographer/2/emerald_and_compass_village_savanna_map", - "minecraft:cartographer/2/emerald_and_compass_village_plains_map", - "minecraft:cartographer/2/emerald_and_compass_explorer_jungle_map", - "minecraft:cartographer/2/emerald_and_compass_village_desert_map" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/cartographer/level_3.json b/src/main/resources/data/minecraft/tags/villager_trade/cartographer/level_3.json deleted file mode 100644 index bc1a1f9..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/cartographer/level_3.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:cartographer/3/compass_emerald", - "minecraft:cartographer/3/emerald_and_compass_ocean_explorer_map", - "minecraft:cartographer/3/emerald_and_compass_trial_chamber_map" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/cartographer/level_4.json b/src/main/resources/data/minecraft/tags/villager_trade/cartographer/level_4.json deleted file mode 100644 index 803b4da..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/cartographer/level_4.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "values": [ - "minecraft:cartographer/4/emerald_item_frame", - "minecraft:cartographer/4/emerald_white_banner", - "minecraft:cartographer/4/emerald_orange_banner", - "minecraft:cartographer/4/emerald_magenta_banner", - "minecraft:cartographer/4/emerald_blue_banner", - "minecraft:cartographer/4/emerald_light_blue_banner", - "minecraft:cartographer/4/emerald_yellow_banner", - "minecraft:cartographer/4/emerald_lime_banner", - "minecraft:cartographer/4/emerald_pink_banner", - "minecraft:cartographer/4/emerald_gray_banner", - "minecraft:cartographer/4/emerald_cyan_banner", - "minecraft:cartographer/4/emerald_purple_banner", - "minecraft:cartographer/4/emerald_brown_banner", - "minecraft:cartographer/4/emerald_green_banner", - "minecraft:cartographer/4/emerald_red_banner", - "minecraft:cartographer/4/emerald_black_banner" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/cartographer/level_5.json b/src/main/resources/data/minecraft/tags/villager_trade/cartographer/level_5.json deleted file mode 100644 index e74159a..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/cartographer/level_5.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:cartographer/5/emerald_globe_banner_pattern", - "minecraft:cartographer/5/emerald_and_compass_woodland_mansion_map" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/cleric/level_1.json b/src/main/resources/data/minecraft/tags/villager_trade/cleric/level_1.json deleted file mode 100644 index 88884f5..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/cleric/level_1.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:cleric/1/rotten_flesh_emerald", - "minecraft:cleric/1/emerald_redstone" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/cleric/level_2.json b/src/main/resources/data/minecraft/tags/villager_trade/cleric/level_2.json deleted file mode 100644 index 7c5463b..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/cleric/level_2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:cleric/2/gold_ingot_emerald", - "minecraft:cleric/2/emerald_lapis_lazuli" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/cleric/level_3.json b/src/main/resources/data/minecraft/tags/villager_trade/cleric/level_3.json deleted file mode 100644 index 0dee433..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/cleric/level_3.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:cleric/3/rabbit_foot_emerald", - "minecraft:cleric/3/emerald_glowstone" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/cleric/level_4.json b/src/main/resources/data/minecraft/tags/villager_trade/cleric/level_4.json deleted file mode 100644 index 8a83287..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/cleric/level_4.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:cleric/4/turtle_scute_emerald", - "minecraft:cleric/4/glass_bottle_emerald", - "minecraft:cleric/4/emerald_ender_pearl" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/cleric/level_5.json b/src/main/resources/data/minecraft/tags/villager_trade/cleric/level_5.json deleted file mode 100644 index 4cfec0b..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/cleric/level_5.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:cleric/5/nether_wart_emerald", - "minecraft:cleric/5/emerald_experience_bottle" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/common_smith/level_1.json b/src/main/resources/data/minecraft/tags/villager_trade/common_smith/level_1.json deleted file mode 100644 index 75410ca..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/common_smith/level_1.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:smith/1/coal_emerald" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/common_smith/level_2.json b/src/main/resources/data/minecraft/tags/villager_trade/common_smith/level_2.json deleted file mode 100644 index 1b46189..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/common_smith/level_2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:smith/2/iron_ingot_emerald", - "minecraft:smith/2/emerald_bell" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/common_smith/level_3.json b/src/main/resources/data/minecraft/tags/villager_trade/common_smith/level_3.json deleted file mode 100644 index f72d209..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/common_smith/level_3.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "values": [] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/common_smith/level_4.json b/src/main/resources/data/minecraft/tags/villager_trade/common_smith/level_4.json deleted file mode 100644 index f72d209..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/common_smith/level_4.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "values": [] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/common_smith/level_5.json b/src/main/resources/data/minecraft/tags/villager_trade/common_smith/level_5.json deleted file mode 100644 index f72d209..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/common_smith/level_5.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "values": [] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/farmer/level_1.json b/src/main/resources/data/minecraft/tags/villager_trade/farmer/level_1.json deleted file mode 100644 index 78fee47..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/farmer/level_1.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "minecraft:farmer/1/wheat_emerald", - "minecraft:farmer/1/potato_emerald", - "minecraft:farmer/1/carrot_emerald", - "minecraft:farmer/1/beetroot_emerald", - "minecraft:farmer/1/emerald_bread" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/farmer/level_2.json b/src/main/resources/data/minecraft/tags/villager_trade/farmer/level_2.json deleted file mode 100644 index cd3c3d2..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/farmer/level_2.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:farmer/2/pumpkin_emerald", - "minecraft:farmer/2/emerald_pumpkin_pie", - "minecraft:farmer/2/emerald_apple" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/farmer/level_3.json b/src/main/resources/data/minecraft/tags/villager_trade/farmer/level_3.json deleted file mode 100644 index 0613a9e..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/farmer/level_3.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:farmer/3/emerald_cookie", - "minecraft:farmer/3/melon_emerald" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/farmer/level_4.json b/src/main/resources/data/minecraft/tags/villager_trade/farmer/level_4.json deleted file mode 100644 index 5b2314a..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/farmer/level_4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:farmer/4/emerald_cake", - "minecraft:farmer/4/emerald_suspicious_stew" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/farmer/level_5.json b/src/main/resources/data/minecraft/tags/villager_trade/farmer/level_5.json deleted file mode 100644 index f078126..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/farmer/level_5.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:farmer/5/emerald_golden_carrot", - "minecraft:farmer/5/emerald_glistening_melon_slice" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/fisherman/level_1.json b/src/main/resources/data/minecraft/tags/villager_trade/fisherman/level_1.json deleted file mode 100644 index bbf452f..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/fisherman/level_1.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:fisherman/1/string_emerald", - "minecraft:fisherman/1/coal_emerald", - "minecraft:fisherman/1/raw_cod_and_emerald_cooked_cod", - "minecraft:fisherman/1/emerald_cod_bucket" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/fisherman/level_2.json b/src/main/resources/data/minecraft/tags/villager_trade/fisherman/level_2.json deleted file mode 100644 index 1099b16..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/fisherman/level_2.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:fisherman/2/cod_emerald", - "minecraft:fisherman/2/salmon_and_emerald_cooked_salmon", - "minecraft:fisherman/2/emerald_campfire" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/fisherman/level_3.json b/src/main/resources/data/minecraft/tags/villager_trade/fisherman/level_3.json deleted file mode 100644 index 80f48f7..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/fisherman/level_3.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:fisherman/3/salmon_emerald", - "minecraft:fisherman/3/emerald_enchanted_fishing_rod" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/fisherman/level_4.json b/src/main/resources/data/minecraft/tags/villager_trade/fisherman/level_4.json deleted file mode 100644 index fda11c0..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/fisherman/level_4.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:fisherman/4/tropical_fish_emerald" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/fisherman/level_5.json b/src/main/resources/data/minecraft/tags/villager_trade/fisherman/level_5.json deleted file mode 100644 index de1adda..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/fisherman/level_5.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "minecraft:fisherman/5/pufferfish_emerald", - "minecraft:fisherman/5/oak_boat_emerald", - "minecraft:fisherman/5/spruce_boat_emerald", - "minecraft:fisherman/5/jungle_boat_emerald", - "minecraft:fisherman/5/acacia_boat_emerald", - "minecraft:fisherman/5/dark_oak_boat_emerald" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/fletcher/level_1.json b/src/main/resources/data/minecraft/tags/villager_trade/fletcher/level_1.json deleted file mode 100644 index 7664d06..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/fletcher/level_1.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:fletcher/1/stick_emerald", - "minecraft:fletcher/1/emerald_arrow", - "minecraft:fletcher/1/gravel_and_emerald_flint" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/fletcher/level_2.json b/src/main/resources/data/minecraft/tags/villager_trade/fletcher/level_2.json deleted file mode 100644 index ceb8549..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/fletcher/level_2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:fletcher/2/flint_emerald", - "minecraft:fletcher/2/emerald_bow" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/fletcher/level_3.json b/src/main/resources/data/minecraft/tags/villager_trade/fletcher/level_3.json deleted file mode 100644 index d39af00..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/fletcher/level_3.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:fletcher/3/string_emerald", - "minecraft:fletcher/3/emerald_crossbow" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/fletcher/level_4.json b/src/main/resources/data/minecraft/tags/villager_trade/fletcher/level_4.json deleted file mode 100644 index 3ecc80d..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/fletcher/level_4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:fletcher/4/feather_emerald", - "minecraft:fletcher/4/emerald_enchanted_bow" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/fletcher/level_5.json b/src/main/resources/data/minecraft/tags/villager_trade/fletcher/level_5.json deleted file mode 100644 index e9a7743..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/fletcher/level_5.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:fletcher/5/tripwire_hook_emerald", - "minecraft:fletcher/5/emerald_enchanted_crossbow", - "minecraft:fletcher/5/arrow_and_emerald_tipped_arrow" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/leatherworker/level_1.json b/src/main/resources/data/minecraft/tags/villager_trade/leatherworker/level_1.json deleted file mode 100644 index baff227..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/leatherworker/level_1.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:leatherworker/1/leather_emerald", - "minecraft:leatherworker/1/emerald_dyed_leather_leggings", - "minecraft:leatherworker/1/emerald_dyed_leather_chestplate" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/leatherworker/level_2.json b/src/main/resources/data/minecraft/tags/villager_trade/leatherworker/level_2.json deleted file mode 100644 index 7067650..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/leatherworker/level_2.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:leatherworker/2/flint_emerald", - "minecraft:leatherworker/2/emerald_dyed_leather_helmet", - "minecraft:leatherworker/2/emerald_dyed_leather_boots" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/leatherworker/level_3.json b/src/main/resources/data/minecraft/tags/villager_trade/leatherworker/level_3.json deleted file mode 100644 index cd9f6b8..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/leatherworker/level_3.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:leatherworker/3/rabbit_hide_emerald", - "minecraft:leatherworker/3/emerald_dyed_leather_chestplate" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/leatherworker/level_4.json b/src/main/resources/data/minecraft/tags/villager_trade/leatherworker/level_4.json deleted file mode 100644 index 3fe6fc9..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/leatherworker/level_4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:leatherworker/4/turtle_scute_emerald", - "minecraft:leatherworker/4/emerald_dyed_leather_horse_armor" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/leatherworker/level_5.json b/src/main/resources/data/minecraft/tags/villager_trade/leatherworker/level_5.json deleted file mode 100644 index 0460865..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/leatherworker/level_5.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:leatherworker/5/emerald_saddle", - "minecraft:leatherworker/5/emerald_dyed_leather_helmet" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/librarian/level_1.json b/src/main/resources/data/minecraft/tags/villager_trade/librarian/level_1.json deleted file mode 100644 index e90ecc1..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/librarian/level_1.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:librarian/1/paper_emerald", - "minecraft:librarian/1/emerald_and_book_enchanted_book", - "minecraft:librarian/1/emerald_bookshelf" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/librarian/level_2.json b/src/main/resources/data/minecraft/tags/villager_trade/librarian/level_2.json deleted file mode 100644 index 5301491..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/librarian/level_2.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:librarian/2/book_emerald", - "minecraft:librarian/2/emerald_and_book_enchanted_book", - "minecraft:librarian/2/emerald_lantern" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/librarian/level_3.json b/src/main/resources/data/minecraft/tags/villager_trade/librarian/level_3.json deleted file mode 100644 index 8160ab0..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/librarian/level_3.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "minecraft:librarian/3/ink_sac_emerald", - "minecraft:librarian/3/emerald_and_book_enchanted_book", - "minecraft:librarian/3/emerald_glass" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/librarian/level_4.json b/src/main/resources/data/minecraft/tags/villager_trade/librarian/level_4.json deleted file mode 100644 index c5b5d4f..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/librarian/level_4.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "minecraft:librarian/4/writable_book_emerald", - "minecraft:librarian/4/emerald_book_and_enchanted_book", - "minecraft:librarian/4/emerald_clock", - "minecraft:librarian/4/emerald_compass" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/librarian/level_5.json b/src/main/resources/data/minecraft/tags/villager_trade/librarian/level_5.json deleted file mode 100644 index 6679cf5..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/librarian/level_5.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:librarian/5/emerald_yellow_candle", - "minecraft:librarian/5/emerald_red_candle" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/mason/level_1.json b/src/main/resources/data/minecraft/tags/villager_trade/mason/level_1.json deleted file mode 100644 index 5fe4be9..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/mason/level_1.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:mason/1/clay_ball_emerald", - "minecraft:mason/1/emerald_brick" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/mason/level_2.json b/src/main/resources/data/minecraft/tags/villager_trade/mason/level_2.json deleted file mode 100644 index 4a5399b..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/mason/level_2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:mason/2/stone_emerald", - "minecraft:mason/2/emerald_chiseled_stone_bricks" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/mason/level_3.json b/src/main/resources/data/minecraft/tags/villager_trade/mason/level_3.json deleted file mode 100644 index f488591..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/mason/level_3.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:mason/3/granite_emerald", - "minecraft:mason/3/andesite_emerald", - "minecraft:mason/3/diorite_emerald", - "minecraft:mason/3/emerald_dripstone_block", - "minecraft:mason/3/emerald_polished_andesite", - "minecraft:mason/3/emerald_polished_diorite", - "minecraft:mason/3/emerald_polished_granite" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/mason/level_4.json b/src/main/resources/data/minecraft/tags/villager_trade/mason/level_4.json deleted file mode 100644 index b460c17..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/mason/level_4.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "values": [ - "minecraft:mason/4/quartz_emerald", - "minecraft:mason/4/emerald_orange_terracotta", - "minecraft:mason/4/emerald_white_terracotta", - "minecraft:mason/4/emerald_blue_terracotta", - "minecraft:mason/4/emerald_light_blue_terracotta", - "minecraft:mason/4/emerald_gray_terracotta", - "minecraft:mason/4/emerald_light_gray_terracotta", - "minecraft:mason/4/emerald_black_terracotta", - "minecraft:mason/4/emerald_red_terracotta", - "minecraft:mason/4/emerald_pink_terracotta", - "minecraft:mason/4/emerald_magenta_terracotta", - "minecraft:mason/4/emerald_lime_terracotta", - "minecraft:mason/4/emerald_green_terracotta", - "minecraft:mason/4/emerald_cyan_terracotta", - "minecraft:mason/4/emerald_purple_terracotta", - "minecraft:mason/4/emerald_yellow_terracotta", - "minecraft:mason/4/emerald_brown_terracotta", - "minecraft:mason/4/emerald_orange_glazed_terracotta", - "minecraft:mason/4/emerald_white_glazed_terracotta", - "minecraft:mason/4/emerald_blue_glazed_terracotta", - "minecraft:mason/4/emerald_light_blue_glazed_terracotta", - "minecraft:mason/4/emerald_gray_glazed_terracotta", - "minecraft:mason/4/emerald_light_gray_glazed_terracotta", - "minecraft:mason/4/emerald_black_glazed_terracotta", - "minecraft:mason/4/emerald_red_glazed_terracotta", - "minecraft:mason/4/emerald_pink_glazed_terracotta", - "minecraft:mason/4/emerald_magenta_glazed_terracotta", - "minecraft:mason/4/emerald_lime_glazed_terracotta", - "minecraft:mason/4/emerald_green_glazed_terracotta", - "minecraft:mason/4/emerald_cyan_glazed_terracotta", - "minecraft:mason/4/emerald_purple_glazed_terracotta", - "minecraft:mason/4/emerald_yellow_glazed_terracotta", - "minecraft:mason/4/emerald_brown_glazed_terracotta" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/mason/level_5.json b/src/main/resources/data/minecraft/tags/villager_trade/mason/level_5.json deleted file mode 100644 index 8ced55d..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/mason/level_5.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:mason/5/emerald_quartz_pillar", - "minecraft:mason/5/emerald_quartz_block" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/shepherd/level_1.json b/src/main/resources/data/minecraft/tags/villager_trade/shepherd/level_1.json deleted file mode 100644 index 03aecec..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/shepherd/level_1.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "minecraft:shepherd/1/white_wool_emerald", - "minecraft:shepherd/1/brown_wool_emerald", - "minecraft:shepherd/1/gray_wool_emerald", - "minecraft:shepherd/1/black_wool_emerald", - "minecraft:shepherd/1/emerald_shears" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/shepherd/level_2.json b/src/main/resources/data/minecraft/tags/villager_trade/shepherd/level_2.json deleted file mode 100644 index 434d722..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/shepherd/level_2.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "values": [ - "minecraft:shepherd/2/white_dye_emerald", - "minecraft:shepherd/2/gray_dye_emerald", - "minecraft:shepherd/2/black_dye_emerald", - "minecraft:shepherd/2/light_blue_dye_emerald", - "minecraft:shepherd/2/lime_dye_emerald", - "minecraft:shepherd/2/emerald_white_wool", - "minecraft:shepherd/2/emerald_orange_wool", - "minecraft:shepherd/2/emerald_magenta_wool", - "minecraft:shepherd/2/emerald_blue_wool", - "minecraft:shepherd/2/emerald_light_blue_wool", - "minecraft:shepherd/2/emerald_yellow_wool", - "minecraft:shepherd/2/emerald_lime_wool", - "minecraft:shepherd/2/emerald_pink_wool", - "minecraft:shepherd/2/emerald_gray_wool", - "minecraft:shepherd/2/emerald_light_gray_wool", - "minecraft:shepherd/2/emerald_cyan_wool", - "minecraft:shepherd/2/emerald_purple_wool", - "minecraft:shepherd/2/emerald_brown_wool", - "minecraft:shepherd/2/emerald_green_wool", - "minecraft:shepherd/2/emerald_red_wool", - "minecraft:shepherd/2/emerald_black_wool", - "minecraft:shepherd/2/emerald_white_carpet", - "minecraft:shepherd/2/emerald_orange_carpet", - "minecraft:shepherd/2/emerald_magenta_carpet", - "minecraft:shepherd/2/emerald_blue_carpet", - "minecraft:shepherd/2/emerald_light_blue_carpet", - "minecraft:shepherd/2/emerald_yellow_carpet", - "minecraft:shepherd/2/emerald_lime_carpet", - "minecraft:shepherd/2/emerald_pink_carpet", - "minecraft:shepherd/2/emerald_gray_carpet", - "minecraft:shepherd/2/emerald_light_gray_carpet", - "minecraft:shepherd/2/emerald_cyan_carpet", - "minecraft:shepherd/2/emerald_purple_carpet", - "minecraft:shepherd/2/emerald_brown_carpet", - "minecraft:shepherd/2/emerald_green_carpet", - "minecraft:shepherd/2/emerald_red_carpet", - "minecraft:shepherd/2/emerald_black_carpet" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/shepherd/level_3.json b/src/main/resources/data/minecraft/tags/villager_trade/shepherd/level_3.json deleted file mode 100644 index b4e2803..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/shepherd/level_3.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "values": [ - "minecraft:shepherd/3/yellow_dye_emerald", - "minecraft:shepherd/3/light_gray_dye_emerald", - "minecraft:shepherd/3/orange_dye_emerald", - "minecraft:shepherd/3/red_dye_emerald", - "minecraft:shepherd/3/pink_dye_emerald", - "minecraft:shepherd/3/emerald_white_bed", - "minecraft:shepherd/3/emerald_orange_bed", - "minecraft:shepherd/3/emerald_magenta_bed", - "minecraft:shepherd/3/emerald_blue_bed", - "minecraft:shepherd/3/emerald_light_blue_bed", - "minecraft:shepherd/3/emerald_yellow_bed", - "minecraft:shepherd/3/emerald_lime_bed", - "minecraft:shepherd/3/emerald_pink_bed", - "minecraft:shepherd/3/emerald_gray_bed", - "minecraft:shepherd/3/emerald_light_gray_bed", - "minecraft:shepherd/3/emerald_cyan_bed", - "minecraft:shepherd/3/emerald_purple_bed", - "minecraft:shepherd/3/emerald_brown_bed", - "minecraft:shepherd/3/emerald_green_bed", - "minecraft:shepherd/3/emerald_red_bed", - "minecraft:shepherd/3/emerald_black_bed" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/shepherd/level_4.json b/src/main/resources/data/minecraft/tags/villager_trade/shepherd/level_4.json deleted file mode 100644 index 585ec9d..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/shepherd/level_4.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "values": [ - "minecraft:shepherd/4/brown_dye_emerald", - "minecraft:shepherd/4/purple_dye_emerald", - "minecraft:shepherd/4/blue_dye_emerald", - "minecraft:shepherd/4/green_dye_emerald", - "minecraft:shepherd/4/magenta_dye_emerald", - "minecraft:shepherd/4/cyan_dye_emerald", - "minecraft:shepherd/4/emerald_white_banner", - "minecraft:shepherd/4/emerald_orange_banner", - "minecraft:shepherd/4/emerald_magenta_banner", - "minecraft:shepherd/4/emerald_blue_banner", - "minecraft:shepherd/4/emerald_light_blue_banner", - "minecraft:shepherd/4/emerald_yellow_banner", - "minecraft:shepherd/4/emerald_lime_banner", - "minecraft:shepherd/4/emerald_pink_banner", - "minecraft:shepherd/4/emerald_gray_banner", - "minecraft:shepherd/4/emerald_light_gray_banner", - "minecraft:shepherd/4/emerald_cyan_banner", - "minecraft:shepherd/4/emerald_purple_banner", - "minecraft:shepherd/4/emerald_brown_banner", - "minecraft:shepherd/4/emerald_green_banner", - "minecraft:shepherd/4/emerald_red_banner", - "minecraft:shepherd/4/emerald_black_banner" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/shepherd/level_5.json b/src/main/resources/data/minecraft/tags/villager_trade/shepherd/level_5.json deleted file mode 100644 index 7bc1a5f..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/shepherd/level_5.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:shepherd/5/emerald_painting" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/toolsmith/level_1.json b/src/main/resources/data/minecraft/tags/villager_trade/toolsmith/level_1.json deleted file mode 100644 index 4893c1d..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/toolsmith/level_1.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "#minecraft:common_smith/level_1", - "minecraft:toolsmith/1/emerald_stone_axe", - "minecraft:toolsmith/1/emerald_stone_shovel", - "minecraft:toolsmith/1/emerald_stone_pickaxe", - "minecraft:toolsmith/1/emerald_stone_hoe" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/toolsmith/level_2.json b/src/main/resources/data/minecraft/tags/villager_trade/toolsmith/level_2.json deleted file mode 100644 index bd2b80b..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/toolsmith/level_2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:common_smith/level_2" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/toolsmith/level_3.json b/src/main/resources/data/minecraft/tags/villager_trade/toolsmith/level_3.json deleted file mode 100644 index 9dc15e1..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/toolsmith/level_3.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "#minecraft:common_smith/level_3", - "minecraft:toolsmith/3/flint_emerald", - "minecraft:toolsmith/3/emerald_enchanted_iron_axe", - "minecraft:toolsmith/3/emerald_enchanted_iron_shovel", - "minecraft:toolsmith/3/emerald_enchanted_iron_pickaxe", - "minecraft:toolsmith/3/emerald_diamond_hoe" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/toolsmith/level_4.json b/src/main/resources/data/minecraft/tags/villager_trade/toolsmith/level_4.json deleted file mode 100644 index 28bdd8e..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/toolsmith/level_4.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "values": [ - "#minecraft:common_smith/level_4", - "minecraft:toolsmith/4/emerald_enchanted_diamond_axe", - "minecraft:toolsmith/4/emerald_enchanted_diamond_shovel", - "minecraft:toolsmith/4/diamond_emerald" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/toolsmith/level_5.json b/src/main/resources/data/minecraft/tags/villager_trade/toolsmith/level_5.json deleted file mode 100644 index 439d29d..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/toolsmith/level_5.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:common_smith/level_5", - "minecraft:toolsmith/5/emerald_enchanted_diamond_pickaxe" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/wandering_trader/buying.json b/src/main/resources/data/minecraft/tags/villager_trade/wandering_trader/buying.json deleted file mode 100644 index d7b71c4..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/wandering_trader/buying.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": [ - "minecraft:wandering_trader/water_bottle_emerald", - "minecraft:wandering_trader/water_bucket_emerald", - "minecraft:wandering_trader/milk_bucket_emerald", - "minecraft:wandering_trader/fermented_spider_eye_emerald", - "minecraft:wandering_trader/baked_potato_emerald", - "minecraft:wandering_trader/hay_block_emerald" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/wandering_trader/common.json b/src/main/resources/data/minecraft/tags/villager_trade/wandering_trader/common.json deleted file mode 100644 index 835482d..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/wandering_trader/common.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "values": [ - "minecraft:wandering_trader/emerald_fish_bucket", - "minecraft:wandering_trader/emerald_pufferfish_bucket", - "minecraft:wandering_trader/emerald_sea_pickle", - "minecraft:wandering_trader/emerald_slime_ball", - "minecraft:wandering_trader/emerald_glowstone", - "minecraft:wandering_trader/emerald_nautilus_shell", - "minecraft:wandering_trader/emerald_fern", - "minecraft:wandering_trader/emerald_sugar_cane", - "minecraft:wandering_trader/emerald_pumpkin", - "minecraft:wandering_trader/emerald_kelp", - "minecraft:wandering_trader/emerald_cactus", - "minecraft:wandering_trader/emerald_dandelion", - "minecraft:wandering_trader/emerald_poppy", - "minecraft:wandering_trader/emerald_blue_orchid", - "minecraft:wandering_trader/emerald_allium", - "minecraft:wandering_trader/emerald_azure_bluet", - "minecraft:wandering_trader/emerald_red_tulip", - "minecraft:wandering_trader/emerald_orange_tulip", - "minecraft:wandering_trader/emerald_white_tulip", - "minecraft:wandering_trader/emerald_pink_tulip", - "minecraft:wandering_trader/emerald_oxeye_daisy", - "minecraft:wandering_trader/emerald_cornflower", - "minecraft:wandering_trader/emerald_lily_of_the_valley", - "minecraft:wandering_trader/emerald_open_eyeblossom", - "minecraft:wandering_trader/emerald_wheat_seeds", - "minecraft:wandering_trader/emerald_beetroot_seeds", - "minecraft:wandering_trader/emerald_pumpkin_seeds", - "minecraft:wandering_trader/emerald_melon_seeds", - "minecraft:wandering_trader/emerald_acacia_sapling", - "minecraft:wandering_trader/emerald_birch_sapling", - "minecraft:wandering_trader/emerald_dark_oak_sapling", - "minecraft:wandering_trader/emerald_jungle_sapling", - "minecraft:wandering_trader/emerald_oak_sapling", - "minecraft:wandering_trader/emerald_spruce_sapling", - "minecraft:wandering_trader/emerald_cherry_sapling", - "minecraft:wandering_trader/emerald_pale_oak_sapling", - "minecraft:wandering_trader/emerald_mangrove_propagule", - "minecraft:wandering_trader/emerald_red_dye", - "minecraft:wandering_trader/emerald_white_dye", - "minecraft:wandering_trader/emerald_blue_dye", - "minecraft:wandering_trader/emerald_pink_dye", - "minecraft:wandering_trader/emerald_black_dye", - "minecraft:wandering_trader/emerald_green_dye", - "minecraft:wandering_trader/emerald_light_gray_dye", - "minecraft:wandering_trader/emerald_magenta_dye", - "minecraft:wandering_trader/emerald_yellow_dye", - "minecraft:wandering_trader/emerald_gray_dye", - "minecraft:wandering_trader/emerald_purple_dye", - "minecraft:wandering_trader/emerald_light_blue_dye", - "minecraft:wandering_trader/emerald_lime_dye", - "minecraft:wandering_trader/emerald_orange_dye", - "minecraft:wandering_trader/emerald_brown_dye", - "minecraft:wandering_trader/emerald_cyan_dye", - "minecraft:wandering_trader/emerald_brain_coral_block", - "minecraft:wandering_trader/emerald_bubble_coral_block", - "minecraft:wandering_trader/emerald_fire_coral_block", - "minecraft:wandering_trader/emerald_horn_coral_block", - "minecraft:wandering_trader/emerald_tube_coral_block", - "minecraft:wandering_trader/emerald_vine", - "minecraft:wandering_trader/emerald_pale_hanging_moss", - "minecraft:wandering_trader/emerald_brown_mushroom", - "minecraft:wandering_trader/emerald_red_mushroom", - "minecraft:wandering_trader/emerald_lily_pad", - "minecraft:wandering_trader/emerald_small_dripleaf", - "minecraft:wandering_trader/emerald_sand", - "minecraft:wandering_trader/emerald_red_sand", - "minecraft:wandering_trader/emerald_pointed_dripstone", - "minecraft:wandering_trader/emerald_rooted_dirt", - "minecraft:wandering_trader/emerald_moss_block", - "minecraft:wandering_trader/emerald_pale_moss_block", - "minecraft:wandering_trader/emerald_wildflowers", - "minecraft:wandering_trader/emerald_dry_tall_grass", - "minecraft:wandering_trader/emerald_firefly_bush", - "minecraft:wandering_trader/emerald_golden_dandelion", - "minecraft:wandering_trader/emerald_name_tag" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/wandering_trader/uncommon.json b/src/main/resources/data/minecraft/tags/villager_trade/wandering_trader/uncommon.json deleted file mode 100644 index 8f108f4..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/wandering_trader/uncommon.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "values": [ - "minecraft:wandering_trader/emerald_packed_ice", - "minecraft:wandering_trader/emerald_blue_ice", - "minecraft:wandering_trader/emerald_gunpowder", - "minecraft:wandering_trader/emerald_podzol", - "minecraft:wandering_trader/emerald_acacia_log", - "minecraft:wandering_trader/emerald_birch_log", - "minecraft:wandering_trader/emerald_dark_oak_log", - "minecraft:wandering_trader/emerald_jungle_log", - "minecraft:wandering_trader/emerald_oak_log", - "minecraft:wandering_trader/emerald_spruce_log", - "minecraft:wandering_trader/emerald_cherry_log", - "minecraft:wandering_trader/emerald_mangrove_log", - "minecraft:wandering_trader/emerald_pale_oak_log", - "minecraft:wandering_trader/emerald_enchanted_iron_pickaxe", - "minecraft:wandering_trader/emerald_long_invisibility_potion" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/weaponsmith/level_1.json b/src/main/resources/data/minecraft/tags/villager_trade/weaponsmith/level_1.json deleted file mode 100644 index 89cad00..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/weaponsmith/level_1.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:common_smith/level_1", - "minecraft:weaponsmith/1/emerald_iron_axe", - "minecraft:weaponsmith/1/emerald_enchanted_iron_sword" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/weaponsmith/level_2.json b/src/main/resources/data/minecraft/tags/villager_trade/weaponsmith/level_2.json deleted file mode 100644 index bd2b80b..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/weaponsmith/level_2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "#minecraft:common_smith/level_2" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/weaponsmith/level_3.json b/src/main/resources/data/minecraft/tags/villager_trade/weaponsmith/level_3.json deleted file mode 100644 index 9d39610..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/weaponsmith/level_3.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:common_smith/level_3", - "minecraft:weaponsmith/3/flint_emerald" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/weaponsmith/level_4.json b/src/main/resources/data/minecraft/tags/villager_trade/weaponsmith/level_4.json deleted file mode 100644 index 65aa303..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/weaponsmith/level_4.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "values": [ - "#minecraft:common_smith/level_4", - "minecraft:weaponsmith/4/emerald_enchanted_diamond_axe", - "minecraft:weaponsmith/4/diamond_emerald" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/villager_trade/weaponsmith/level_5.json b/src/main/resources/data/minecraft/tags/villager_trade/weaponsmith/level_5.json deleted file mode 100644 index 580d25e..0000000 --- a/src/main/resources/data/minecraft/tags/villager_trade/weaponsmith/level_5.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:common_smith/level_5", - "minecraft:weaponsmith/5/emerald_enchanted_diamond_sword" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/biome/has_structure/mineshaft.json b/src/main/resources/data/minecraft/tags/worldgen/biome/has_structure/mineshaft.json index a211c8c..691cc0c 100644 --- a/src/main/resources/data/minecraft/tags/worldgen/biome/has_structure/mineshaft.json +++ b/src/main/resources/data/minecraft/tags/worldgen/biome/has_structure/mineshaft.json @@ -21,6 +21,7 @@ "minecraft:mangrove_swamp", "minecraft:savanna_plateau", "minecraft:dripstone_caves", - "minecraft:lush_caves" + "minecraft:lush_caves", + "minecraft:sulfur_caves" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_standard.json b/src/main/resources/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_standard.json index 3cf0503..6c39727 100644 --- a/src/main/resources/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_standard.json +++ b/src/main/resources/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_standard.json @@ -8,6 +8,7 @@ "minecraft:ice_spikes", "minecraft:dripstone_caves", "minecraft:lush_caves", + "minecraft:sulfur_caves", "minecraft:savanna", "minecraft:snowy_plains", "minecraft:plains", diff --git a/src/main/resources/data/minecraft/tags/worldgen/biome/has_structure/trial_chambers.json b/src/main/resources/data/minecraft/tags/worldgen/biome/has_structure/trial_chambers.json index ff5c6a1..5bab5cf 100644 --- a/src/main/resources/data/minecraft/tags/worldgen/biome/has_structure/trial_chambers.json +++ b/src/main/resources/data/minecraft/tags/worldgen/biome/has_structure/trial_chambers.json @@ -52,6 +52,7 @@ "minecraft:cherry_grove", "minecraft:frozen_peaks", "minecraft:dripstone_caves", - "minecraft:lush_caves" + "minecraft:lush_caves", + "minecraft:sulfur_caves" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/biome/is_overworld.json b/src/main/resources/data/minecraft/tags/worldgen/biome/is_overworld.json index 9de4c3f..772fd88 100644 --- a/src/main/resources/data/minecraft/tags/worldgen/biome/is_overworld.json +++ b/src/main/resources/data/minecraft/tags/worldgen/biome/is_overworld.json @@ -53,6 +53,7 @@ "minecraft:frozen_peaks", "minecraft:dripstone_caves", "minecraft:lush_caves", + "minecraft:sulfur_caves", "minecraft:deep_dark" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/biome/stronghold_biased_to.json b/src/main/resources/data/minecraft/tags/worldgen/biome/stronghold_biased_to.json index bd1af0f..c8e9dc2 100644 --- a/src/main/resources/data/minecraft/tags/worldgen/biome/stronghold_biased_to.json +++ b/src/main/resources/data/minecraft/tags/worldgen/biome/stronghold_biased_to.json @@ -36,6 +36,7 @@ "minecraft:stony_peaks", "minecraft:mushroom_fields", "minecraft:dripstone_caves", - "minecraft:lush_caves" + "minecraft:lush_caves", + "minecraft:sulfur_caves" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/configured_feature/can_spawn_from_bone_meal.json b/src/main/resources/data/minecraft/tags/worldgen/configured_feature/can_spawn_from_bone_meal.json deleted file mode 100644 index 4c3e7ad..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/configured_feature/can_spawn_from_bone_meal.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "values": [ - "minecraft:flower_default", - "minecraft:flower_flower_forest", - "minecraft:flower_swamp", - "minecraft:flower_plain", - "minecraft:flower_meadow", - "minecraft:flower_cherry", - "minecraft:wildflower", - "minecraft:flower_pale_garden" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/flat_level_generator_preset/visible.json b/src/main/resources/data/minecraft/tags/worldgen/flat_level_generator_preset/visible.json deleted file mode 100644 index de2b98d..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/flat_level_generator_preset/visible.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "values": [ - "minecraft:classic_flat", - "minecraft:tunnelers_dream", - "minecraft:water_world", - "minecraft:overworld", - "minecraft:snowy_kingdom", - "minecraft:bottomless_pit", - "minecraft:desert", - "minecraft:redstone_ready", - "minecraft:the_void" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/cats_spawn_as_black.json b/src/main/resources/data/minecraft/tags/worldgen/structure/cats_spawn_as_black.json deleted file mode 100644 index 69fd4a7..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/cats_spawn_as_black.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:swamp_hut" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/cats_spawn_in.json b/src/main/resources/data/minecraft/tags/worldgen/structure/cats_spawn_in.json deleted file mode 100644 index 69fd4a7..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/cats_spawn_in.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:swamp_hut" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/dolphin_located.json b/src/main/resources/data/minecraft/tags/worldgen/structure/dolphin_located.json deleted file mode 100644 index 4c5da1f..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/dolphin_located.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:ocean_ruin", - "#minecraft:shipwreck" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/eye_of_ender_located.json b/src/main/resources/data/minecraft/tags/worldgen/structure/eye_of_ender_located.json deleted file mode 100644 index 0635d07..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/eye_of_ender_located.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:stronghold" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/mineshaft.json b/src/main/resources/data/minecraft/tags/worldgen/structure/mineshaft.json deleted file mode 100644 index 3def9be..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/mineshaft.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:mineshaft", - "minecraft:mineshaft_mesa" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/ocean_ruin.json b/src/main/resources/data/minecraft/tags/worldgen/structure/ocean_ruin.json deleted file mode 100644 index da7a0ac..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/ocean_ruin.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:ocean_ruin_cold", - "minecraft:ocean_ruin_warm" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/on_desert_village_maps.json b/src/main/resources/data/minecraft/tags/worldgen/structure/on_desert_village_maps.json deleted file mode 100644 index ba7efaf..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/on_desert_village_maps.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:village_desert" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/on_jungle_explorer_maps.json b/src/main/resources/data/minecraft/tags/worldgen/structure/on_jungle_explorer_maps.json deleted file mode 100644 index ba0e1c3..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/on_jungle_explorer_maps.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:jungle_pyramid" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/on_ocean_explorer_maps.json b/src/main/resources/data/minecraft/tags/worldgen/structure/on_ocean_explorer_maps.json deleted file mode 100644 index ab6748e..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/on_ocean_explorer_maps.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:monument" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/on_plains_village_maps.json b/src/main/resources/data/minecraft/tags/worldgen/structure/on_plains_village_maps.json deleted file mode 100644 index 10f9ba4..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/on_plains_village_maps.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:village_plains" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/on_savanna_village_maps.json b/src/main/resources/data/minecraft/tags/worldgen/structure/on_savanna_village_maps.json deleted file mode 100644 index c3bd14d..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/on_savanna_village_maps.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:village_savanna" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/on_snowy_village_maps.json b/src/main/resources/data/minecraft/tags/worldgen/structure/on_snowy_village_maps.json deleted file mode 100644 index d9477e5..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/on_snowy_village_maps.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:village_snowy" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/on_swamp_explorer_maps.json b/src/main/resources/data/minecraft/tags/worldgen/structure/on_swamp_explorer_maps.json deleted file mode 100644 index 69fd4a7..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/on_swamp_explorer_maps.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:swamp_hut" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/on_taiga_village_maps.json b/src/main/resources/data/minecraft/tags/worldgen/structure/on_taiga_village_maps.json deleted file mode 100644 index e74218b..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/on_taiga_village_maps.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:village_taiga" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/on_treasure_maps.json b/src/main/resources/data/minecraft/tags/worldgen/structure/on_treasure_maps.json deleted file mode 100644 index 5dcd709..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/on_treasure_maps.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:buried_treasure" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/on_trial_chambers_maps.json b/src/main/resources/data/minecraft/tags/worldgen/structure/on_trial_chambers_maps.json deleted file mode 100644 index e8128ca..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/on_trial_chambers_maps.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:trial_chambers" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/on_woodland_explorer_maps.json b/src/main/resources/data/minecraft/tags/worldgen/structure/on_woodland_explorer_maps.json deleted file mode 100644 index b15b421..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/on_woodland_explorer_maps.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "minecraft:mansion" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/ruined_portal.json b/src/main/resources/data/minecraft/tags/worldgen/structure/ruined_portal.json deleted file mode 100644 index b2424b1..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/ruined_portal.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "values": [ - "minecraft:ruined_portal_desert", - "minecraft:ruined_portal_jungle", - "minecraft:ruined_portal_mountain", - "minecraft:ruined_portal_nether", - "minecraft:ruined_portal_ocean", - "minecraft:ruined_portal", - "minecraft:ruined_portal_swamp" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/shipwreck.json b/src/main/resources/data/minecraft/tags/worldgen/structure/shipwreck.json deleted file mode 100644 index 6b8bc73..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/shipwreck.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "minecraft:shipwreck", - "minecraft:shipwreck_beached" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/structure/village.json b/src/main/resources/data/minecraft/tags/worldgen/structure/village.json deleted file mode 100644 index a0f7701..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/structure/village.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "minecraft:village_plains", - "minecraft:village_desert", - "minecraft:village_savanna", - "minecraft:village_snowy", - "minecraft:village_taiga" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/world_preset/extended.json b/src/main/resources/data/minecraft/tags/worldgen/world_preset/extended.json deleted file mode 100644 index 9603a20..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/world_preset/extended.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "#minecraft:normal", - "minecraft:debug_all_block_states" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/worldgen/world_preset/normal.json b/src/main/resources/data/minecraft/tags/worldgen/world_preset/normal.json deleted file mode 100644 index cbd3e0b..0000000 --- a/src/main/resources/data/minecraft/tags/worldgen/world_preset/normal.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "values": [ - "minecraft:normal", - "minecraft:flat", - "minecraft:large_biomes", - "minecraft:amplified", - "minecraft:single_biome_surface" - ] -} \ 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 f67b6a6..fc98ae0 100644 --- a/src/main/resources/data/minecraft/wolf_variant/rusty.json +++ b/src/main/resources/data/minecraft/wolf_variant/rusty.json @@ -13,9 +13,13 @@ { "condition": { "type": "minecraft:biome", - "biomes": "#minecraft:is_jungle" + "biomes": [ + "minecraft:bamboo_jungle", + "minecraft:jungle", + "minecraft:sparse_jungle" + ] }, "priority": 1 } ] -} \ 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 3ac1ea4..0b75946 100644 --- a/src/main/resources/data/minecraft/wolf_variant/spotted.json +++ b/src/main/resources/data/minecraft/wolf_variant/spotted.json @@ -13,9 +13,13 @@ { "condition": { "type": "minecraft:biome", - "biomes": "#minecraft:is_savanna" + "biomes": [ + "minecraft:savanna", + "minecraft:savanna_plateau", + "minecraft:windswept_savanna" + ] }, "priority": 1 } ] -} \ 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 89e5fcb..ce1ca8f 100644 --- a/src/main/resources/data/minecraft/wolf_variant/striped.json +++ b/src/main/resources/data/minecraft/wolf_variant/striped.json @@ -13,9 +13,13 @@ { "condition": { "type": "minecraft:biome", - "biomes": "#minecraft:is_badlands" + "biomes": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] }, "priority": 1 } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/minecraft/worldgen/biome/sulfur_caves.json b/src/main/resources/data/minecraft/worldgen/biome/sulfur_caves.json new file mode 100644 index 0000000..9195fa7 --- /dev/null +++ b/src/main/resources/data/minecraft/worldgen/biome/sulfur_caves.json @@ -0,0 +1,163 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.sulfur_caves" + } + }, + "minecraft:visual/fog_color": "#8cb831", + "minecraft:visual/sky_color": "#78a7ff", + "minecraft:visual/water_fog_color": "#17543c" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.4, + "effects": { + "grass_color": "#aba64f", + "water_color": "#34bf89" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface", + "minecraft:rooted_sulfur_spring", + "minecraft:sulfur_pool" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [ + "minecraft:sulfur_spike_cluster", + "minecraft:sulfur_spike" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:sulfur_cube", + "maxCount": 4, + "minCount": 2, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 2, + "minCount": 2, + "weight": 50 + }, + { + "type": "minecraft:skeleton", + "maxCount": 2, + "minCount": 2, + "weight": 50 + }, + { + "type": "minecraft:slime", + "maxCount": 1, + "minCount": 1, + "weight": 25 + }, + { + "type": "minecraft:cave_spider", + "maxCount": 1, + "minCount": 1, + "weight": 20 + }, + { + "type": "minecraft:zombie", + "maxCount": 2, + "minCount": 2, + "weight": 50 + }, + { + "type": "minecraft:enderman", + "maxCount": 1, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/zombie_nautilus_variant/warm.json b/src/main/resources/data/minecraft/zombie_nautilus_variant/warm.json index af97a0f..e06dc98 100644 --- a/src/main/resources/data/minecraft/zombie_nautilus_variant/warm.json +++ b/src/main/resources/data/minecraft/zombie_nautilus_variant/warm.json @@ -5,9 +5,11 @@ { "condition": { "type": "minecraft:biome", - "biomes": "#minecraft:spawns_coral_variant_zombie_nautilus" + "biomes": [ + "minecraft:warm_ocean" + ] }, "priority": 1 } ] -} \ No newline at end of file +} diff --git a/src/main/resources/reports/blocks.json b/src/main/resources/reports/blocks.json index 1624e6b..a810ff7 100644 --- a/src/main/resources/reports/blocks.json +++ b/src/main/resources/reports/blocks.json @@ -9966,7 +9966,7 @@ "states": [ { "default": true, - "id": 27811 + "id": 30304 } ] }, @@ -16832,7 +16832,7 @@ }, "states": [ { - "id": 27863, + "id": 30356, "properties": { "facing": "north", "tilt": "none", @@ -16841,7 +16841,7 @@ }, { "default": true, - "id": 27864, + "id": 30357, "properties": { "facing": "north", "tilt": "none", @@ -16849,7 +16849,7 @@ } }, { - "id": 27865, + "id": 30358, "properties": { "facing": "north", "tilt": "unstable", @@ -16857,7 +16857,7 @@ } }, { - "id": 27866, + "id": 30359, "properties": { "facing": "north", "tilt": "unstable", @@ -16865,7 +16865,7 @@ } }, { - "id": 27867, + "id": 30360, "properties": { "facing": "north", "tilt": "partial", @@ -16873,7 +16873,7 @@ } }, { - "id": 27868, + "id": 30361, "properties": { "facing": "north", "tilt": "partial", @@ -16881,7 +16881,7 @@ } }, { - "id": 27869, + "id": 30362, "properties": { "facing": "north", "tilt": "full", @@ -16889,7 +16889,7 @@ } }, { - "id": 27870, + "id": 30363, "properties": { "facing": "north", "tilt": "full", @@ -16897,7 +16897,7 @@ } }, { - "id": 27871, + "id": 30364, "properties": { "facing": "south", "tilt": "none", @@ -16905,7 +16905,7 @@ } }, { - "id": 27872, + "id": 30365, "properties": { "facing": "south", "tilt": "none", @@ -16913,7 +16913,7 @@ } }, { - "id": 27873, + "id": 30366, "properties": { "facing": "south", "tilt": "unstable", @@ -16921,7 +16921,7 @@ } }, { - "id": 27874, + "id": 30367, "properties": { "facing": "south", "tilt": "unstable", @@ -16929,7 +16929,7 @@ } }, { - "id": 27875, + "id": 30368, "properties": { "facing": "south", "tilt": "partial", @@ -16937,7 +16937,7 @@ } }, { - "id": 27876, + "id": 30369, "properties": { "facing": "south", "tilt": "partial", @@ -16945,7 +16945,7 @@ } }, { - "id": 27877, + "id": 30370, "properties": { "facing": "south", "tilt": "full", @@ -16953,7 +16953,7 @@ } }, { - "id": 27878, + "id": 30371, "properties": { "facing": "south", "tilt": "full", @@ -16961,7 +16961,7 @@ } }, { - "id": 27879, + "id": 30372, "properties": { "facing": "west", "tilt": "none", @@ -16969,7 +16969,7 @@ } }, { - "id": 27880, + "id": 30373, "properties": { "facing": "west", "tilt": "none", @@ -16977,7 +16977,7 @@ } }, { - "id": 27881, + "id": 30374, "properties": { "facing": "west", "tilt": "unstable", @@ -16985,7 +16985,7 @@ } }, { - "id": 27882, + "id": 30375, "properties": { "facing": "west", "tilt": "unstable", @@ -16993,7 +16993,7 @@ } }, { - "id": 27883, + "id": 30376, "properties": { "facing": "west", "tilt": "partial", @@ -17001,7 +17001,7 @@ } }, { - "id": 27884, + "id": 30377, "properties": { "facing": "west", "tilt": "partial", @@ -17009,7 +17009,7 @@ } }, { - "id": 27885, + "id": 30378, "properties": { "facing": "west", "tilt": "full", @@ -17017,7 +17017,7 @@ } }, { - "id": 27886, + "id": 30379, "properties": { "facing": "west", "tilt": "full", @@ -17025,7 +17025,7 @@ } }, { - "id": 27887, + "id": 30380, "properties": { "facing": "east", "tilt": "none", @@ -17033,7 +17033,7 @@ } }, { - "id": 27888, + "id": 30381, "properties": { "facing": "east", "tilt": "none", @@ -17041,7 +17041,7 @@ } }, { - "id": 27889, + "id": 30382, "properties": { "facing": "east", "tilt": "unstable", @@ -17049,7 +17049,7 @@ } }, { - "id": 27890, + "id": 30383, "properties": { "facing": "east", "tilt": "unstable", @@ -17057,7 +17057,7 @@ } }, { - "id": 27891, + "id": 30384, "properties": { "facing": "east", "tilt": "partial", @@ -17065,7 +17065,7 @@ } }, { - "id": 27892, + "id": 30385, "properties": { "facing": "east", "tilt": "partial", @@ -17073,7 +17073,7 @@ } }, { - "id": 27893, + "id": 30386, "properties": { "facing": "east", "tilt": "full", @@ -17081,7 +17081,7 @@ } }, { - "id": 27894, + "id": 30387, "properties": { "facing": "east", "tilt": "full", @@ -17109,7 +17109,7 @@ }, "states": [ { - "id": 27895, + "id": 30388, "properties": { "facing": "north", "waterlogged": "true" @@ -17117,49 +17117,49 @@ }, { "default": true, - "id": 27896, + "id": 30389, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 27897, + "id": 30390, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 27898, + "id": 30391, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 27899, + "id": 30392, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 27900, + "id": 30393, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 27901, + "id": 30394, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 27902, + "id": 30395, "properties": { "facing": "east", "waterlogged": "false" @@ -35670,7 +35670,7 @@ "states": [ { "default": true, - "id": 24687 + "id": 27160 } ] }, @@ -35716,7 +35716,7 @@ }, "states": [ { - "id": 24786, + "id": 27259, "properties": { "facing": "north", "power": "0", @@ -35726,7 +35726,7 @@ }, { "default": true, - "id": 24787, + "id": 27260, "properties": { "facing": "north", "power": "0", @@ -35735,7 +35735,7 @@ } }, { - "id": 24788, + "id": 27261, "properties": { "facing": "north", "power": "0", @@ -35744,7 +35744,7 @@ } }, { - "id": 24789, + "id": 27262, "properties": { "facing": "north", "power": "0", @@ -35753,7 +35753,7 @@ } }, { - "id": 24790, + "id": 27263, "properties": { "facing": "north", "power": "0", @@ -35762,7 +35762,7 @@ } }, { - "id": 24791, + "id": 27264, "properties": { "facing": "north", "power": "0", @@ -35771,7 +35771,7 @@ } }, { - "id": 24792, + "id": 27265, "properties": { "facing": "north", "power": "1", @@ -35780,7 +35780,7 @@ } }, { - "id": 24793, + "id": 27266, "properties": { "facing": "north", "power": "1", @@ -35789,7 +35789,7 @@ } }, { - "id": 24794, + "id": 27267, "properties": { "facing": "north", "power": "1", @@ -35798,7 +35798,7 @@ } }, { - "id": 24795, + "id": 27268, "properties": { "facing": "north", "power": "1", @@ -35807,7 +35807,7 @@ } }, { - "id": 24796, + "id": 27269, "properties": { "facing": "north", "power": "1", @@ -35816,7 +35816,7 @@ } }, { - "id": 24797, + "id": 27270, "properties": { "facing": "north", "power": "1", @@ -35825,7 +35825,7 @@ } }, { - "id": 24798, + "id": 27271, "properties": { "facing": "north", "power": "2", @@ -35834,7 +35834,7 @@ } }, { - "id": 24799, + "id": 27272, "properties": { "facing": "north", "power": "2", @@ -35843,7 +35843,7 @@ } }, { - "id": 24800, + "id": 27273, "properties": { "facing": "north", "power": "2", @@ -35852,7 +35852,7 @@ } }, { - "id": 24801, + "id": 27274, "properties": { "facing": "north", "power": "2", @@ -35861,7 +35861,7 @@ } }, { - "id": 24802, + "id": 27275, "properties": { "facing": "north", "power": "2", @@ -35870,7 +35870,7 @@ } }, { - "id": 24803, + "id": 27276, "properties": { "facing": "north", "power": "2", @@ -35879,7 +35879,7 @@ } }, { - "id": 24804, + "id": 27277, "properties": { "facing": "north", "power": "3", @@ -35888,7 +35888,7 @@ } }, { - "id": 24805, + "id": 27278, "properties": { "facing": "north", "power": "3", @@ -35897,7 +35897,7 @@ } }, { - "id": 24806, + "id": 27279, "properties": { "facing": "north", "power": "3", @@ -35906,7 +35906,7 @@ } }, { - "id": 24807, + "id": 27280, "properties": { "facing": "north", "power": "3", @@ -35915,7 +35915,7 @@ } }, { - "id": 24808, + "id": 27281, "properties": { "facing": "north", "power": "3", @@ -35924,7 +35924,7 @@ } }, { - "id": 24809, + "id": 27282, "properties": { "facing": "north", "power": "3", @@ -35933,7 +35933,7 @@ } }, { - "id": 24810, + "id": 27283, "properties": { "facing": "north", "power": "4", @@ -35942,7 +35942,7 @@ } }, { - "id": 24811, + "id": 27284, "properties": { "facing": "north", "power": "4", @@ -35951,7 +35951,7 @@ } }, { - "id": 24812, + "id": 27285, "properties": { "facing": "north", "power": "4", @@ -35960,7 +35960,7 @@ } }, { - "id": 24813, + "id": 27286, "properties": { "facing": "north", "power": "4", @@ -35969,7 +35969,7 @@ } }, { - "id": 24814, + "id": 27287, "properties": { "facing": "north", "power": "4", @@ -35978,7 +35978,7 @@ } }, { - "id": 24815, + "id": 27288, "properties": { "facing": "north", "power": "4", @@ -35987,7 +35987,7 @@ } }, { - "id": 24816, + "id": 27289, "properties": { "facing": "north", "power": "5", @@ -35996,7 +35996,7 @@ } }, { - "id": 24817, + "id": 27290, "properties": { "facing": "north", "power": "5", @@ -36005,7 +36005,7 @@ } }, { - "id": 24818, + "id": 27291, "properties": { "facing": "north", "power": "5", @@ -36014,7 +36014,7 @@ } }, { - "id": 24819, + "id": 27292, "properties": { "facing": "north", "power": "5", @@ -36023,7 +36023,7 @@ } }, { - "id": 24820, + "id": 27293, "properties": { "facing": "north", "power": "5", @@ -36032,7 +36032,7 @@ } }, { - "id": 24821, + "id": 27294, "properties": { "facing": "north", "power": "5", @@ -36041,7 +36041,7 @@ } }, { - "id": 24822, + "id": 27295, "properties": { "facing": "north", "power": "6", @@ -36050,7 +36050,7 @@ } }, { - "id": 24823, + "id": 27296, "properties": { "facing": "north", "power": "6", @@ -36059,7 +36059,7 @@ } }, { - "id": 24824, + "id": 27297, "properties": { "facing": "north", "power": "6", @@ -36068,7 +36068,7 @@ } }, { - "id": 24825, + "id": 27298, "properties": { "facing": "north", "power": "6", @@ -36077,7 +36077,7 @@ } }, { - "id": 24826, + "id": 27299, "properties": { "facing": "north", "power": "6", @@ -36086,7 +36086,7 @@ } }, { - "id": 24827, + "id": 27300, "properties": { "facing": "north", "power": "6", @@ -36095,7 +36095,7 @@ } }, { - "id": 24828, + "id": 27301, "properties": { "facing": "north", "power": "7", @@ -36104,7 +36104,7 @@ } }, { - "id": 24829, + "id": 27302, "properties": { "facing": "north", "power": "7", @@ -36113,7 +36113,7 @@ } }, { - "id": 24830, + "id": 27303, "properties": { "facing": "north", "power": "7", @@ -36122,7 +36122,7 @@ } }, { - "id": 24831, + "id": 27304, "properties": { "facing": "north", "power": "7", @@ -36131,7 +36131,7 @@ } }, { - "id": 24832, + "id": 27305, "properties": { "facing": "north", "power": "7", @@ -36140,7 +36140,7 @@ } }, { - "id": 24833, + "id": 27306, "properties": { "facing": "north", "power": "7", @@ -36149,7 +36149,7 @@ } }, { - "id": 24834, + "id": 27307, "properties": { "facing": "north", "power": "8", @@ -36158,7 +36158,7 @@ } }, { - "id": 24835, + "id": 27308, "properties": { "facing": "north", "power": "8", @@ -36167,7 +36167,7 @@ } }, { - "id": 24836, + "id": 27309, "properties": { "facing": "north", "power": "8", @@ -36176,7 +36176,7 @@ } }, { - "id": 24837, + "id": 27310, "properties": { "facing": "north", "power": "8", @@ -36185,7 +36185,7 @@ } }, { - "id": 24838, + "id": 27311, "properties": { "facing": "north", "power": "8", @@ -36194,7 +36194,7 @@ } }, { - "id": 24839, + "id": 27312, "properties": { "facing": "north", "power": "8", @@ -36203,7 +36203,7 @@ } }, { - "id": 24840, + "id": 27313, "properties": { "facing": "north", "power": "9", @@ -36212,7 +36212,7 @@ } }, { - "id": 24841, + "id": 27314, "properties": { "facing": "north", "power": "9", @@ -36221,7 +36221,7 @@ } }, { - "id": 24842, + "id": 27315, "properties": { "facing": "north", "power": "9", @@ -36230,7 +36230,7 @@ } }, { - "id": 24843, + "id": 27316, "properties": { "facing": "north", "power": "9", @@ -36239,7 +36239,7 @@ } }, { - "id": 24844, + "id": 27317, "properties": { "facing": "north", "power": "9", @@ -36248,7 +36248,7 @@ } }, { - "id": 24845, + "id": 27318, "properties": { "facing": "north", "power": "9", @@ -36257,7 +36257,7 @@ } }, { - "id": 24846, + "id": 27319, "properties": { "facing": "north", "power": "10", @@ -36266,7 +36266,7 @@ } }, { - "id": 24847, + "id": 27320, "properties": { "facing": "north", "power": "10", @@ -36275,7 +36275,7 @@ } }, { - "id": 24848, + "id": 27321, "properties": { "facing": "north", "power": "10", @@ -36284,7 +36284,7 @@ } }, { - "id": 24849, + "id": 27322, "properties": { "facing": "north", "power": "10", @@ -36293,7 +36293,7 @@ } }, { - "id": 24850, + "id": 27323, "properties": { "facing": "north", "power": "10", @@ -36302,7 +36302,7 @@ } }, { - "id": 24851, + "id": 27324, "properties": { "facing": "north", "power": "10", @@ -36311,7 +36311,7 @@ } }, { - "id": 24852, + "id": 27325, "properties": { "facing": "north", "power": "11", @@ -36320,7 +36320,7 @@ } }, { - "id": 24853, + "id": 27326, "properties": { "facing": "north", "power": "11", @@ -36329,7 +36329,7 @@ } }, { - "id": 24854, + "id": 27327, "properties": { "facing": "north", "power": "11", @@ -36338,7 +36338,7 @@ } }, { - "id": 24855, + "id": 27328, "properties": { "facing": "north", "power": "11", @@ -36347,7 +36347,7 @@ } }, { - "id": 24856, + "id": 27329, "properties": { "facing": "north", "power": "11", @@ -36356,7 +36356,7 @@ } }, { - "id": 24857, + "id": 27330, "properties": { "facing": "north", "power": "11", @@ -36365,7 +36365,7 @@ } }, { - "id": 24858, + "id": 27331, "properties": { "facing": "north", "power": "12", @@ -36374,7 +36374,7 @@ } }, { - "id": 24859, + "id": 27332, "properties": { "facing": "north", "power": "12", @@ -36383,7 +36383,7 @@ } }, { - "id": 24860, + "id": 27333, "properties": { "facing": "north", "power": "12", @@ -36392,7 +36392,7 @@ } }, { - "id": 24861, + "id": 27334, "properties": { "facing": "north", "power": "12", @@ -36401,7 +36401,7 @@ } }, { - "id": 24862, + "id": 27335, "properties": { "facing": "north", "power": "12", @@ -36410,7 +36410,7 @@ } }, { - "id": 24863, + "id": 27336, "properties": { "facing": "north", "power": "12", @@ -36419,7 +36419,7 @@ } }, { - "id": 24864, + "id": 27337, "properties": { "facing": "north", "power": "13", @@ -36428,7 +36428,7 @@ } }, { - "id": 24865, + "id": 27338, "properties": { "facing": "north", "power": "13", @@ -36437,7 +36437,7 @@ } }, { - "id": 24866, + "id": 27339, "properties": { "facing": "north", "power": "13", @@ -36446,7 +36446,7 @@ } }, { - "id": 24867, + "id": 27340, "properties": { "facing": "north", "power": "13", @@ -36455,7 +36455,7 @@ } }, { - "id": 24868, + "id": 27341, "properties": { "facing": "north", "power": "13", @@ -36464,7 +36464,7 @@ } }, { - "id": 24869, + "id": 27342, "properties": { "facing": "north", "power": "13", @@ -36473,7 +36473,7 @@ } }, { - "id": 24870, + "id": 27343, "properties": { "facing": "north", "power": "14", @@ -36482,7 +36482,7 @@ } }, { - "id": 24871, + "id": 27344, "properties": { "facing": "north", "power": "14", @@ -36491,7 +36491,7 @@ } }, { - "id": 24872, + "id": 27345, "properties": { "facing": "north", "power": "14", @@ -36500,7 +36500,7 @@ } }, { - "id": 24873, + "id": 27346, "properties": { "facing": "north", "power": "14", @@ -36509,7 +36509,7 @@ } }, { - "id": 24874, + "id": 27347, "properties": { "facing": "north", "power": "14", @@ -36518,7 +36518,7 @@ } }, { - "id": 24875, + "id": 27348, "properties": { "facing": "north", "power": "14", @@ -36527,7 +36527,7 @@ } }, { - "id": 24876, + "id": 27349, "properties": { "facing": "north", "power": "15", @@ -36536,7 +36536,7 @@ } }, { - "id": 24877, + "id": 27350, "properties": { "facing": "north", "power": "15", @@ -36545,7 +36545,7 @@ } }, { - "id": 24878, + "id": 27351, "properties": { "facing": "north", "power": "15", @@ -36554,7 +36554,7 @@ } }, { - "id": 24879, + "id": 27352, "properties": { "facing": "north", "power": "15", @@ -36563,7 +36563,7 @@ } }, { - "id": 24880, + "id": 27353, "properties": { "facing": "north", "power": "15", @@ -36572,7 +36572,7 @@ } }, { - "id": 24881, + "id": 27354, "properties": { "facing": "north", "power": "15", @@ -36581,7 +36581,7 @@ } }, { - "id": 24882, + "id": 27355, "properties": { "facing": "south", "power": "0", @@ -36590,7 +36590,7 @@ } }, { - "id": 24883, + "id": 27356, "properties": { "facing": "south", "power": "0", @@ -36599,7 +36599,7 @@ } }, { - "id": 24884, + "id": 27357, "properties": { "facing": "south", "power": "0", @@ -36608,7 +36608,7 @@ } }, { - "id": 24885, + "id": 27358, "properties": { "facing": "south", "power": "0", @@ -36617,7 +36617,7 @@ } }, { - "id": 24886, + "id": 27359, "properties": { "facing": "south", "power": "0", @@ -36626,7 +36626,7 @@ } }, { - "id": 24887, + "id": 27360, "properties": { "facing": "south", "power": "0", @@ -36635,7 +36635,7 @@ } }, { - "id": 24888, + "id": 27361, "properties": { "facing": "south", "power": "1", @@ -36644,7 +36644,7 @@ } }, { - "id": 24889, + "id": 27362, "properties": { "facing": "south", "power": "1", @@ -36653,7 +36653,7 @@ } }, { - "id": 24890, + "id": 27363, "properties": { "facing": "south", "power": "1", @@ -36662,7 +36662,7 @@ } }, { - "id": 24891, + "id": 27364, "properties": { "facing": "south", "power": "1", @@ -36671,7 +36671,7 @@ } }, { - "id": 24892, + "id": 27365, "properties": { "facing": "south", "power": "1", @@ -36680,7 +36680,7 @@ } }, { - "id": 24893, + "id": 27366, "properties": { "facing": "south", "power": "1", @@ -36689,7 +36689,7 @@ } }, { - "id": 24894, + "id": 27367, "properties": { "facing": "south", "power": "2", @@ -36698,7 +36698,7 @@ } }, { - "id": 24895, + "id": 27368, "properties": { "facing": "south", "power": "2", @@ -36707,7 +36707,7 @@ } }, { - "id": 24896, + "id": 27369, "properties": { "facing": "south", "power": "2", @@ -36716,7 +36716,7 @@ } }, { - "id": 24897, + "id": 27370, "properties": { "facing": "south", "power": "2", @@ -36725,7 +36725,7 @@ } }, { - "id": 24898, + "id": 27371, "properties": { "facing": "south", "power": "2", @@ -36734,7 +36734,7 @@ } }, { - "id": 24899, + "id": 27372, "properties": { "facing": "south", "power": "2", @@ -36743,7 +36743,7 @@ } }, { - "id": 24900, + "id": 27373, "properties": { "facing": "south", "power": "3", @@ -36752,7 +36752,7 @@ } }, { - "id": 24901, + "id": 27374, "properties": { "facing": "south", "power": "3", @@ -36761,7 +36761,7 @@ } }, { - "id": 24902, + "id": 27375, "properties": { "facing": "south", "power": "3", @@ -36770,7 +36770,7 @@ } }, { - "id": 24903, + "id": 27376, "properties": { "facing": "south", "power": "3", @@ -36779,7 +36779,7 @@ } }, { - "id": 24904, + "id": 27377, "properties": { "facing": "south", "power": "3", @@ -36788,7 +36788,7 @@ } }, { - "id": 24905, + "id": 27378, "properties": { "facing": "south", "power": "3", @@ -36797,7 +36797,7 @@ } }, { - "id": 24906, + "id": 27379, "properties": { "facing": "south", "power": "4", @@ -36806,7 +36806,7 @@ } }, { - "id": 24907, + "id": 27380, "properties": { "facing": "south", "power": "4", @@ -36815,7 +36815,7 @@ } }, { - "id": 24908, + "id": 27381, "properties": { "facing": "south", "power": "4", @@ -36824,7 +36824,7 @@ } }, { - "id": 24909, + "id": 27382, "properties": { "facing": "south", "power": "4", @@ -36833,7 +36833,7 @@ } }, { - "id": 24910, + "id": 27383, "properties": { "facing": "south", "power": "4", @@ -36842,7 +36842,7 @@ } }, { - "id": 24911, + "id": 27384, "properties": { "facing": "south", "power": "4", @@ -36851,7 +36851,7 @@ } }, { - "id": 24912, + "id": 27385, "properties": { "facing": "south", "power": "5", @@ -36860,7 +36860,7 @@ } }, { - "id": 24913, + "id": 27386, "properties": { "facing": "south", "power": "5", @@ -36869,7 +36869,7 @@ } }, { - "id": 24914, + "id": 27387, "properties": { "facing": "south", "power": "5", @@ -36878,7 +36878,7 @@ } }, { - "id": 24915, + "id": 27388, "properties": { "facing": "south", "power": "5", @@ -36887,7 +36887,7 @@ } }, { - "id": 24916, + "id": 27389, "properties": { "facing": "south", "power": "5", @@ -36896,7 +36896,7 @@ } }, { - "id": 24917, + "id": 27390, "properties": { "facing": "south", "power": "5", @@ -36905,7 +36905,7 @@ } }, { - "id": 24918, + "id": 27391, "properties": { "facing": "south", "power": "6", @@ -36914,7 +36914,7 @@ } }, { - "id": 24919, + "id": 27392, "properties": { "facing": "south", "power": "6", @@ -36923,7 +36923,7 @@ } }, { - "id": 24920, + "id": 27393, "properties": { "facing": "south", "power": "6", @@ -36932,7 +36932,7 @@ } }, { - "id": 24921, + "id": 27394, "properties": { "facing": "south", "power": "6", @@ -36941,7 +36941,7 @@ } }, { - "id": 24922, + "id": 27395, "properties": { "facing": "south", "power": "6", @@ -36950,7 +36950,7 @@ } }, { - "id": 24923, + "id": 27396, "properties": { "facing": "south", "power": "6", @@ -36959,7 +36959,7 @@ } }, { - "id": 24924, + "id": 27397, "properties": { "facing": "south", "power": "7", @@ -36968,7 +36968,7 @@ } }, { - "id": 24925, + "id": 27398, "properties": { "facing": "south", "power": "7", @@ -36977,7 +36977,7 @@ } }, { - "id": 24926, + "id": 27399, "properties": { "facing": "south", "power": "7", @@ -36986,7 +36986,7 @@ } }, { - "id": 24927, + "id": 27400, "properties": { "facing": "south", "power": "7", @@ -36995,7 +36995,7 @@ } }, { - "id": 24928, + "id": 27401, "properties": { "facing": "south", "power": "7", @@ -37004,7 +37004,7 @@ } }, { - "id": 24929, + "id": 27402, "properties": { "facing": "south", "power": "7", @@ -37013,7 +37013,7 @@ } }, { - "id": 24930, + "id": 27403, "properties": { "facing": "south", "power": "8", @@ -37022,7 +37022,7 @@ } }, { - "id": 24931, + "id": 27404, "properties": { "facing": "south", "power": "8", @@ -37031,7 +37031,7 @@ } }, { - "id": 24932, + "id": 27405, "properties": { "facing": "south", "power": "8", @@ -37040,7 +37040,7 @@ } }, { - "id": 24933, + "id": 27406, "properties": { "facing": "south", "power": "8", @@ -37049,7 +37049,7 @@ } }, { - "id": 24934, + "id": 27407, "properties": { "facing": "south", "power": "8", @@ -37058,7 +37058,7 @@ } }, { - "id": 24935, + "id": 27408, "properties": { "facing": "south", "power": "8", @@ -37067,7 +37067,7 @@ } }, { - "id": 24936, + "id": 27409, "properties": { "facing": "south", "power": "9", @@ -37076,7 +37076,7 @@ } }, { - "id": 24937, + "id": 27410, "properties": { "facing": "south", "power": "9", @@ -37085,7 +37085,7 @@ } }, { - "id": 24938, + "id": 27411, "properties": { "facing": "south", "power": "9", @@ -37094,7 +37094,7 @@ } }, { - "id": 24939, + "id": 27412, "properties": { "facing": "south", "power": "9", @@ -37103,7 +37103,7 @@ } }, { - "id": 24940, + "id": 27413, "properties": { "facing": "south", "power": "9", @@ -37112,7 +37112,7 @@ } }, { - "id": 24941, + "id": 27414, "properties": { "facing": "south", "power": "9", @@ -37121,7 +37121,7 @@ } }, { - "id": 24942, + "id": 27415, "properties": { "facing": "south", "power": "10", @@ -37130,7 +37130,7 @@ } }, { - "id": 24943, + "id": 27416, "properties": { "facing": "south", "power": "10", @@ -37139,7 +37139,7 @@ } }, { - "id": 24944, + "id": 27417, "properties": { "facing": "south", "power": "10", @@ -37148,7 +37148,7 @@ } }, { - "id": 24945, + "id": 27418, "properties": { "facing": "south", "power": "10", @@ -37157,7 +37157,7 @@ } }, { - "id": 24946, + "id": 27419, "properties": { "facing": "south", "power": "10", @@ -37166,7 +37166,7 @@ } }, { - "id": 24947, + "id": 27420, "properties": { "facing": "south", "power": "10", @@ -37175,7 +37175,7 @@ } }, { - "id": 24948, + "id": 27421, "properties": { "facing": "south", "power": "11", @@ -37184,7 +37184,7 @@ } }, { - "id": 24949, + "id": 27422, "properties": { "facing": "south", "power": "11", @@ -37193,7 +37193,7 @@ } }, { - "id": 24950, + "id": 27423, "properties": { "facing": "south", "power": "11", @@ -37202,7 +37202,7 @@ } }, { - "id": 24951, + "id": 27424, "properties": { "facing": "south", "power": "11", @@ -37211,7 +37211,7 @@ } }, { - "id": 24952, + "id": 27425, "properties": { "facing": "south", "power": "11", @@ -37220,7 +37220,7 @@ } }, { - "id": 24953, + "id": 27426, "properties": { "facing": "south", "power": "11", @@ -37229,7 +37229,7 @@ } }, { - "id": 24954, + "id": 27427, "properties": { "facing": "south", "power": "12", @@ -37238,7 +37238,7 @@ } }, { - "id": 24955, + "id": 27428, "properties": { "facing": "south", "power": "12", @@ -37247,7 +37247,7 @@ } }, { - "id": 24956, + "id": 27429, "properties": { "facing": "south", "power": "12", @@ -37256,7 +37256,7 @@ } }, { - "id": 24957, + "id": 27430, "properties": { "facing": "south", "power": "12", @@ -37265,7 +37265,7 @@ } }, { - "id": 24958, + "id": 27431, "properties": { "facing": "south", "power": "12", @@ -37274,7 +37274,7 @@ } }, { - "id": 24959, + "id": 27432, "properties": { "facing": "south", "power": "12", @@ -37283,7 +37283,7 @@ } }, { - "id": 24960, + "id": 27433, "properties": { "facing": "south", "power": "13", @@ -37292,7 +37292,7 @@ } }, { - "id": 24961, + "id": 27434, "properties": { "facing": "south", "power": "13", @@ -37301,7 +37301,7 @@ } }, { - "id": 24962, + "id": 27435, "properties": { "facing": "south", "power": "13", @@ -37310,7 +37310,7 @@ } }, { - "id": 24963, + "id": 27436, "properties": { "facing": "south", "power": "13", @@ -37319,7 +37319,7 @@ } }, { - "id": 24964, + "id": 27437, "properties": { "facing": "south", "power": "13", @@ -37328,7 +37328,7 @@ } }, { - "id": 24965, + "id": 27438, "properties": { "facing": "south", "power": "13", @@ -37337,7 +37337,7 @@ } }, { - "id": 24966, + "id": 27439, "properties": { "facing": "south", "power": "14", @@ -37346,7 +37346,7 @@ } }, { - "id": 24967, + "id": 27440, "properties": { "facing": "south", "power": "14", @@ -37355,7 +37355,7 @@ } }, { - "id": 24968, + "id": 27441, "properties": { "facing": "south", "power": "14", @@ -37364,7 +37364,7 @@ } }, { - "id": 24969, + "id": 27442, "properties": { "facing": "south", "power": "14", @@ -37373,7 +37373,7 @@ } }, { - "id": 24970, + "id": 27443, "properties": { "facing": "south", "power": "14", @@ -37382,7 +37382,7 @@ } }, { - "id": 24971, + "id": 27444, "properties": { "facing": "south", "power": "14", @@ -37391,7 +37391,7 @@ } }, { - "id": 24972, + "id": 27445, "properties": { "facing": "south", "power": "15", @@ -37400,7 +37400,7 @@ } }, { - "id": 24973, + "id": 27446, "properties": { "facing": "south", "power": "15", @@ -37409,7 +37409,7 @@ } }, { - "id": 24974, + "id": 27447, "properties": { "facing": "south", "power": "15", @@ -37418,7 +37418,7 @@ } }, { - "id": 24975, + "id": 27448, "properties": { "facing": "south", "power": "15", @@ -37427,7 +37427,7 @@ } }, { - "id": 24976, + "id": 27449, "properties": { "facing": "south", "power": "15", @@ -37436,7 +37436,7 @@ } }, { - "id": 24977, + "id": 27450, "properties": { "facing": "south", "power": "15", @@ -37445,7 +37445,7 @@ } }, { - "id": 24978, + "id": 27451, "properties": { "facing": "west", "power": "0", @@ -37454,7 +37454,7 @@ } }, { - "id": 24979, + "id": 27452, "properties": { "facing": "west", "power": "0", @@ -37463,7 +37463,7 @@ } }, { - "id": 24980, + "id": 27453, "properties": { "facing": "west", "power": "0", @@ -37472,7 +37472,7 @@ } }, { - "id": 24981, + "id": 27454, "properties": { "facing": "west", "power": "0", @@ -37481,7 +37481,7 @@ } }, { - "id": 24982, + "id": 27455, "properties": { "facing": "west", "power": "0", @@ -37490,7 +37490,7 @@ } }, { - "id": 24983, + "id": 27456, "properties": { "facing": "west", "power": "0", @@ -37499,7 +37499,7 @@ } }, { - "id": 24984, + "id": 27457, "properties": { "facing": "west", "power": "1", @@ -37508,7 +37508,7 @@ } }, { - "id": 24985, + "id": 27458, "properties": { "facing": "west", "power": "1", @@ -37517,7 +37517,7 @@ } }, { - "id": 24986, + "id": 27459, "properties": { "facing": "west", "power": "1", @@ -37526,7 +37526,7 @@ } }, { - "id": 24987, + "id": 27460, "properties": { "facing": "west", "power": "1", @@ -37535,7 +37535,7 @@ } }, { - "id": 24988, + "id": 27461, "properties": { "facing": "west", "power": "1", @@ -37544,7 +37544,7 @@ } }, { - "id": 24989, + "id": 27462, "properties": { "facing": "west", "power": "1", @@ -37553,7 +37553,7 @@ } }, { - "id": 24990, + "id": 27463, "properties": { "facing": "west", "power": "2", @@ -37562,7 +37562,7 @@ } }, { - "id": 24991, + "id": 27464, "properties": { "facing": "west", "power": "2", @@ -37571,7 +37571,7 @@ } }, { - "id": 24992, + "id": 27465, "properties": { "facing": "west", "power": "2", @@ -37580,7 +37580,7 @@ } }, { - "id": 24993, + "id": 27466, "properties": { "facing": "west", "power": "2", @@ -37589,7 +37589,7 @@ } }, { - "id": 24994, + "id": 27467, "properties": { "facing": "west", "power": "2", @@ -37598,7 +37598,7 @@ } }, { - "id": 24995, + "id": 27468, "properties": { "facing": "west", "power": "2", @@ -37607,7 +37607,7 @@ } }, { - "id": 24996, + "id": 27469, "properties": { "facing": "west", "power": "3", @@ -37616,7 +37616,7 @@ } }, { - "id": 24997, + "id": 27470, "properties": { "facing": "west", "power": "3", @@ -37625,7 +37625,7 @@ } }, { - "id": 24998, + "id": 27471, "properties": { "facing": "west", "power": "3", @@ -37634,7 +37634,7 @@ } }, { - "id": 24999, + "id": 27472, "properties": { "facing": "west", "power": "3", @@ -37643,7 +37643,7 @@ } }, { - "id": 25000, + "id": 27473, "properties": { "facing": "west", "power": "3", @@ -37652,7 +37652,7 @@ } }, { - "id": 25001, + "id": 27474, "properties": { "facing": "west", "power": "3", @@ -37661,7 +37661,7 @@ } }, { - "id": 25002, + "id": 27475, "properties": { "facing": "west", "power": "4", @@ -37670,7 +37670,7 @@ } }, { - "id": 25003, + "id": 27476, "properties": { "facing": "west", "power": "4", @@ -37679,7 +37679,7 @@ } }, { - "id": 25004, + "id": 27477, "properties": { "facing": "west", "power": "4", @@ -37688,7 +37688,7 @@ } }, { - "id": 25005, + "id": 27478, "properties": { "facing": "west", "power": "4", @@ -37697,7 +37697,7 @@ } }, { - "id": 25006, + "id": 27479, "properties": { "facing": "west", "power": "4", @@ -37706,7 +37706,7 @@ } }, { - "id": 25007, + "id": 27480, "properties": { "facing": "west", "power": "4", @@ -37715,7 +37715,7 @@ } }, { - "id": 25008, + "id": 27481, "properties": { "facing": "west", "power": "5", @@ -37724,7 +37724,7 @@ } }, { - "id": 25009, + "id": 27482, "properties": { "facing": "west", "power": "5", @@ -37733,7 +37733,7 @@ } }, { - "id": 25010, + "id": 27483, "properties": { "facing": "west", "power": "5", @@ -37742,7 +37742,7 @@ } }, { - "id": 25011, + "id": 27484, "properties": { "facing": "west", "power": "5", @@ -37751,7 +37751,7 @@ } }, { - "id": 25012, + "id": 27485, "properties": { "facing": "west", "power": "5", @@ -37760,7 +37760,7 @@ } }, { - "id": 25013, + "id": 27486, "properties": { "facing": "west", "power": "5", @@ -37769,7 +37769,7 @@ } }, { - "id": 25014, + "id": 27487, "properties": { "facing": "west", "power": "6", @@ -37778,7 +37778,7 @@ } }, { - "id": 25015, + "id": 27488, "properties": { "facing": "west", "power": "6", @@ -37787,7 +37787,7 @@ } }, { - "id": 25016, + "id": 27489, "properties": { "facing": "west", "power": "6", @@ -37796,7 +37796,7 @@ } }, { - "id": 25017, + "id": 27490, "properties": { "facing": "west", "power": "6", @@ -37805,7 +37805,7 @@ } }, { - "id": 25018, + "id": 27491, "properties": { "facing": "west", "power": "6", @@ -37814,7 +37814,7 @@ } }, { - "id": 25019, + "id": 27492, "properties": { "facing": "west", "power": "6", @@ -37823,7 +37823,7 @@ } }, { - "id": 25020, + "id": 27493, "properties": { "facing": "west", "power": "7", @@ -37832,7 +37832,7 @@ } }, { - "id": 25021, + "id": 27494, "properties": { "facing": "west", "power": "7", @@ -37841,7 +37841,7 @@ } }, { - "id": 25022, + "id": 27495, "properties": { "facing": "west", "power": "7", @@ -37850,7 +37850,7 @@ } }, { - "id": 25023, + "id": 27496, "properties": { "facing": "west", "power": "7", @@ -37859,7 +37859,7 @@ } }, { - "id": 25024, + "id": 27497, "properties": { "facing": "west", "power": "7", @@ -37868,7 +37868,7 @@ } }, { - "id": 25025, + "id": 27498, "properties": { "facing": "west", "power": "7", @@ -37877,7 +37877,7 @@ } }, { - "id": 25026, + "id": 27499, "properties": { "facing": "west", "power": "8", @@ -37886,7 +37886,7 @@ } }, { - "id": 25027, + "id": 27500, "properties": { "facing": "west", "power": "8", @@ -37895,7 +37895,7 @@ } }, { - "id": 25028, + "id": 27501, "properties": { "facing": "west", "power": "8", @@ -37904,7 +37904,7 @@ } }, { - "id": 25029, + "id": 27502, "properties": { "facing": "west", "power": "8", @@ -37913,7 +37913,7 @@ } }, { - "id": 25030, + "id": 27503, "properties": { "facing": "west", "power": "8", @@ -37922,7 +37922,7 @@ } }, { - "id": 25031, + "id": 27504, "properties": { "facing": "west", "power": "8", @@ -37931,7 +37931,7 @@ } }, { - "id": 25032, + "id": 27505, "properties": { "facing": "west", "power": "9", @@ -37940,7 +37940,7 @@ } }, { - "id": 25033, + "id": 27506, "properties": { "facing": "west", "power": "9", @@ -37949,7 +37949,7 @@ } }, { - "id": 25034, + "id": 27507, "properties": { "facing": "west", "power": "9", @@ -37958,7 +37958,7 @@ } }, { - "id": 25035, + "id": 27508, "properties": { "facing": "west", "power": "9", @@ -37967,7 +37967,7 @@ } }, { - "id": 25036, + "id": 27509, "properties": { "facing": "west", "power": "9", @@ -37976,7 +37976,7 @@ } }, { - "id": 25037, + "id": 27510, "properties": { "facing": "west", "power": "9", @@ -37985,7 +37985,7 @@ } }, { - "id": 25038, + "id": 27511, "properties": { "facing": "west", "power": "10", @@ -37994,7 +37994,7 @@ } }, { - "id": 25039, + "id": 27512, "properties": { "facing": "west", "power": "10", @@ -38003,7 +38003,7 @@ } }, { - "id": 25040, + "id": 27513, "properties": { "facing": "west", "power": "10", @@ -38012,7 +38012,7 @@ } }, { - "id": 25041, + "id": 27514, "properties": { "facing": "west", "power": "10", @@ -38021,7 +38021,7 @@ } }, { - "id": 25042, + "id": 27515, "properties": { "facing": "west", "power": "10", @@ -38030,7 +38030,7 @@ } }, { - "id": 25043, + "id": 27516, "properties": { "facing": "west", "power": "10", @@ -38039,7 +38039,7 @@ } }, { - "id": 25044, + "id": 27517, "properties": { "facing": "west", "power": "11", @@ -38048,7 +38048,7 @@ } }, { - "id": 25045, + "id": 27518, "properties": { "facing": "west", "power": "11", @@ -38057,7 +38057,7 @@ } }, { - "id": 25046, + "id": 27519, "properties": { "facing": "west", "power": "11", @@ -38066,7 +38066,7 @@ } }, { - "id": 25047, + "id": 27520, "properties": { "facing": "west", "power": "11", @@ -38075,7 +38075,7 @@ } }, { - "id": 25048, + "id": 27521, "properties": { "facing": "west", "power": "11", @@ -38084,7 +38084,7 @@ } }, { - "id": 25049, + "id": 27522, "properties": { "facing": "west", "power": "11", @@ -38093,7 +38093,7 @@ } }, { - "id": 25050, + "id": 27523, "properties": { "facing": "west", "power": "12", @@ -38102,7 +38102,7 @@ } }, { - "id": 25051, + "id": 27524, "properties": { "facing": "west", "power": "12", @@ -38111,7 +38111,7 @@ } }, { - "id": 25052, + "id": 27525, "properties": { "facing": "west", "power": "12", @@ -38120,7 +38120,7 @@ } }, { - "id": 25053, + "id": 27526, "properties": { "facing": "west", "power": "12", @@ -38129,7 +38129,7 @@ } }, { - "id": 25054, + "id": 27527, "properties": { "facing": "west", "power": "12", @@ -38138,7 +38138,7 @@ } }, { - "id": 25055, + "id": 27528, "properties": { "facing": "west", "power": "12", @@ -38147,7 +38147,7 @@ } }, { - "id": 25056, + "id": 27529, "properties": { "facing": "west", "power": "13", @@ -38156,7 +38156,7 @@ } }, { - "id": 25057, + "id": 27530, "properties": { "facing": "west", "power": "13", @@ -38165,7 +38165,7 @@ } }, { - "id": 25058, + "id": 27531, "properties": { "facing": "west", "power": "13", @@ -38174,7 +38174,7 @@ } }, { - "id": 25059, + "id": 27532, "properties": { "facing": "west", "power": "13", @@ -38183,7 +38183,7 @@ } }, { - "id": 25060, + "id": 27533, "properties": { "facing": "west", "power": "13", @@ -38192,7 +38192,7 @@ } }, { - "id": 25061, + "id": 27534, "properties": { "facing": "west", "power": "13", @@ -38201,7 +38201,7 @@ } }, { - "id": 25062, + "id": 27535, "properties": { "facing": "west", "power": "14", @@ -38210,7 +38210,7 @@ } }, { - "id": 25063, + "id": 27536, "properties": { "facing": "west", "power": "14", @@ -38219,7 +38219,7 @@ } }, { - "id": 25064, + "id": 27537, "properties": { "facing": "west", "power": "14", @@ -38228,7 +38228,7 @@ } }, { - "id": 25065, + "id": 27538, "properties": { "facing": "west", "power": "14", @@ -38237,7 +38237,7 @@ } }, { - "id": 25066, + "id": 27539, "properties": { "facing": "west", "power": "14", @@ -38246,7 +38246,7 @@ } }, { - "id": 25067, + "id": 27540, "properties": { "facing": "west", "power": "14", @@ -38255,7 +38255,7 @@ } }, { - "id": 25068, + "id": 27541, "properties": { "facing": "west", "power": "15", @@ -38264,7 +38264,7 @@ } }, { - "id": 25069, + "id": 27542, "properties": { "facing": "west", "power": "15", @@ -38273,7 +38273,7 @@ } }, { - "id": 25070, + "id": 27543, "properties": { "facing": "west", "power": "15", @@ -38282,7 +38282,7 @@ } }, { - "id": 25071, + "id": 27544, "properties": { "facing": "west", "power": "15", @@ -38291,7 +38291,7 @@ } }, { - "id": 25072, + "id": 27545, "properties": { "facing": "west", "power": "15", @@ -38300,7 +38300,7 @@ } }, { - "id": 25073, + "id": 27546, "properties": { "facing": "west", "power": "15", @@ -38309,7 +38309,7 @@ } }, { - "id": 25074, + "id": 27547, "properties": { "facing": "east", "power": "0", @@ -38318,7 +38318,7 @@ } }, { - "id": 25075, + "id": 27548, "properties": { "facing": "east", "power": "0", @@ -38327,7 +38327,7 @@ } }, { - "id": 25076, + "id": 27549, "properties": { "facing": "east", "power": "0", @@ -38336,7 +38336,7 @@ } }, { - "id": 25077, + "id": 27550, "properties": { "facing": "east", "power": "0", @@ -38345,7 +38345,7 @@ } }, { - "id": 25078, + "id": 27551, "properties": { "facing": "east", "power": "0", @@ -38354,7 +38354,7 @@ } }, { - "id": 25079, + "id": 27552, "properties": { "facing": "east", "power": "0", @@ -38363,7 +38363,7 @@ } }, { - "id": 25080, + "id": 27553, "properties": { "facing": "east", "power": "1", @@ -38372,7 +38372,7 @@ } }, { - "id": 25081, + "id": 27554, "properties": { "facing": "east", "power": "1", @@ -38381,7 +38381,7 @@ } }, { - "id": 25082, + "id": 27555, "properties": { "facing": "east", "power": "1", @@ -38390,7 +38390,7 @@ } }, { - "id": 25083, + "id": 27556, "properties": { "facing": "east", "power": "1", @@ -38399,7 +38399,7 @@ } }, { - "id": 25084, + "id": 27557, "properties": { "facing": "east", "power": "1", @@ -38408,7 +38408,7 @@ } }, { - "id": 25085, + "id": 27558, "properties": { "facing": "east", "power": "1", @@ -38417,7 +38417,7 @@ } }, { - "id": 25086, + "id": 27559, "properties": { "facing": "east", "power": "2", @@ -38426,7 +38426,7 @@ } }, { - "id": 25087, + "id": 27560, "properties": { "facing": "east", "power": "2", @@ -38435,7 +38435,7 @@ } }, { - "id": 25088, + "id": 27561, "properties": { "facing": "east", "power": "2", @@ -38444,7 +38444,7 @@ } }, { - "id": 25089, + "id": 27562, "properties": { "facing": "east", "power": "2", @@ -38453,7 +38453,7 @@ } }, { - "id": 25090, + "id": 27563, "properties": { "facing": "east", "power": "2", @@ -38462,7 +38462,7 @@ } }, { - "id": 25091, + "id": 27564, "properties": { "facing": "east", "power": "2", @@ -38471,7 +38471,7 @@ } }, { - "id": 25092, + "id": 27565, "properties": { "facing": "east", "power": "3", @@ -38480,7 +38480,7 @@ } }, { - "id": 25093, + "id": 27566, "properties": { "facing": "east", "power": "3", @@ -38489,7 +38489,7 @@ } }, { - "id": 25094, + "id": 27567, "properties": { "facing": "east", "power": "3", @@ -38498,7 +38498,7 @@ } }, { - "id": 25095, + "id": 27568, "properties": { "facing": "east", "power": "3", @@ -38507,7 +38507,7 @@ } }, { - "id": 25096, + "id": 27569, "properties": { "facing": "east", "power": "3", @@ -38516,7 +38516,7 @@ } }, { - "id": 25097, + "id": 27570, "properties": { "facing": "east", "power": "3", @@ -38525,7 +38525,7 @@ } }, { - "id": 25098, + "id": 27571, "properties": { "facing": "east", "power": "4", @@ -38534,7 +38534,7 @@ } }, { - "id": 25099, + "id": 27572, "properties": { "facing": "east", "power": "4", @@ -38543,7 +38543,7 @@ } }, { - "id": 25100, + "id": 27573, "properties": { "facing": "east", "power": "4", @@ -38552,7 +38552,7 @@ } }, { - "id": 25101, + "id": 27574, "properties": { "facing": "east", "power": "4", @@ -38561,7 +38561,7 @@ } }, { - "id": 25102, + "id": 27575, "properties": { "facing": "east", "power": "4", @@ -38570,7 +38570,7 @@ } }, { - "id": 25103, + "id": 27576, "properties": { "facing": "east", "power": "4", @@ -38579,7 +38579,7 @@ } }, { - "id": 25104, + "id": 27577, "properties": { "facing": "east", "power": "5", @@ -38588,7 +38588,7 @@ } }, { - "id": 25105, + "id": 27578, "properties": { "facing": "east", "power": "5", @@ -38597,7 +38597,7 @@ } }, { - "id": 25106, + "id": 27579, "properties": { "facing": "east", "power": "5", @@ -38606,7 +38606,7 @@ } }, { - "id": 25107, + "id": 27580, "properties": { "facing": "east", "power": "5", @@ -38615,7 +38615,7 @@ } }, { - "id": 25108, + "id": 27581, "properties": { "facing": "east", "power": "5", @@ -38624,7 +38624,7 @@ } }, { - "id": 25109, + "id": 27582, "properties": { "facing": "east", "power": "5", @@ -38633,7 +38633,7 @@ } }, { - "id": 25110, + "id": 27583, "properties": { "facing": "east", "power": "6", @@ -38642,7 +38642,7 @@ } }, { - "id": 25111, + "id": 27584, "properties": { "facing": "east", "power": "6", @@ -38651,7 +38651,7 @@ } }, { - "id": 25112, + "id": 27585, "properties": { "facing": "east", "power": "6", @@ -38660,7 +38660,7 @@ } }, { - "id": 25113, + "id": 27586, "properties": { "facing": "east", "power": "6", @@ -38669,7 +38669,7 @@ } }, { - "id": 25114, + "id": 27587, "properties": { "facing": "east", "power": "6", @@ -38678,7 +38678,7 @@ } }, { - "id": 25115, + "id": 27588, "properties": { "facing": "east", "power": "6", @@ -38687,7 +38687,7 @@ } }, { - "id": 25116, + "id": 27589, "properties": { "facing": "east", "power": "7", @@ -38696,7 +38696,7 @@ } }, { - "id": 25117, + "id": 27590, "properties": { "facing": "east", "power": "7", @@ -38705,7 +38705,7 @@ } }, { - "id": 25118, + "id": 27591, "properties": { "facing": "east", "power": "7", @@ -38714,7 +38714,7 @@ } }, { - "id": 25119, + "id": 27592, "properties": { "facing": "east", "power": "7", @@ -38723,7 +38723,7 @@ } }, { - "id": 25120, + "id": 27593, "properties": { "facing": "east", "power": "7", @@ -38732,7 +38732,7 @@ } }, { - "id": 25121, + "id": 27594, "properties": { "facing": "east", "power": "7", @@ -38741,7 +38741,7 @@ } }, { - "id": 25122, + "id": 27595, "properties": { "facing": "east", "power": "8", @@ -38750,7 +38750,7 @@ } }, { - "id": 25123, + "id": 27596, "properties": { "facing": "east", "power": "8", @@ -38759,7 +38759,7 @@ } }, { - "id": 25124, + "id": 27597, "properties": { "facing": "east", "power": "8", @@ -38768,7 +38768,7 @@ } }, { - "id": 25125, + "id": 27598, "properties": { "facing": "east", "power": "8", @@ -38777,7 +38777,7 @@ } }, { - "id": 25126, + "id": 27599, "properties": { "facing": "east", "power": "8", @@ -38786,7 +38786,7 @@ } }, { - "id": 25127, + "id": 27600, "properties": { "facing": "east", "power": "8", @@ -38795,7 +38795,7 @@ } }, { - "id": 25128, + "id": 27601, "properties": { "facing": "east", "power": "9", @@ -38804,7 +38804,7 @@ } }, { - "id": 25129, + "id": 27602, "properties": { "facing": "east", "power": "9", @@ -38813,7 +38813,7 @@ } }, { - "id": 25130, + "id": 27603, "properties": { "facing": "east", "power": "9", @@ -38822,7 +38822,7 @@ } }, { - "id": 25131, + "id": 27604, "properties": { "facing": "east", "power": "9", @@ -38831,7 +38831,7 @@ } }, { - "id": 25132, + "id": 27605, "properties": { "facing": "east", "power": "9", @@ -38840,7 +38840,7 @@ } }, { - "id": 25133, + "id": 27606, "properties": { "facing": "east", "power": "9", @@ -38849,7 +38849,7 @@ } }, { - "id": 25134, + "id": 27607, "properties": { "facing": "east", "power": "10", @@ -38858,7 +38858,7 @@ } }, { - "id": 25135, + "id": 27608, "properties": { "facing": "east", "power": "10", @@ -38867,7 +38867,7 @@ } }, { - "id": 25136, + "id": 27609, "properties": { "facing": "east", "power": "10", @@ -38876,7 +38876,7 @@ } }, { - "id": 25137, + "id": 27610, "properties": { "facing": "east", "power": "10", @@ -38885,7 +38885,7 @@ } }, { - "id": 25138, + "id": 27611, "properties": { "facing": "east", "power": "10", @@ -38894,7 +38894,7 @@ } }, { - "id": 25139, + "id": 27612, "properties": { "facing": "east", "power": "10", @@ -38903,7 +38903,7 @@ } }, { - "id": 25140, + "id": 27613, "properties": { "facing": "east", "power": "11", @@ -38912,7 +38912,7 @@ } }, { - "id": 25141, + "id": 27614, "properties": { "facing": "east", "power": "11", @@ -38921,7 +38921,7 @@ } }, { - "id": 25142, + "id": 27615, "properties": { "facing": "east", "power": "11", @@ -38930,7 +38930,7 @@ } }, { - "id": 25143, + "id": 27616, "properties": { "facing": "east", "power": "11", @@ -38939,7 +38939,7 @@ } }, { - "id": 25144, + "id": 27617, "properties": { "facing": "east", "power": "11", @@ -38948,7 +38948,7 @@ } }, { - "id": 25145, + "id": 27618, "properties": { "facing": "east", "power": "11", @@ -38957,7 +38957,7 @@ } }, { - "id": 25146, + "id": 27619, "properties": { "facing": "east", "power": "12", @@ -38966,7 +38966,7 @@ } }, { - "id": 25147, + "id": 27620, "properties": { "facing": "east", "power": "12", @@ -38975,7 +38975,7 @@ } }, { - "id": 25148, + "id": 27621, "properties": { "facing": "east", "power": "12", @@ -38984,7 +38984,7 @@ } }, { - "id": 25149, + "id": 27622, "properties": { "facing": "east", "power": "12", @@ -38993,7 +38993,7 @@ } }, { - "id": 25150, + "id": 27623, "properties": { "facing": "east", "power": "12", @@ -39002,7 +39002,7 @@ } }, { - "id": 25151, + "id": 27624, "properties": { "facing": "east", "power": "12", @@ -39011,7 +39011,7 @@ } }, { - "id": 25152, + "id": 27625, "properties": { "facing": "east", "power": "13", @@ -39020,7 +39020,7 @@ } }, { - "id": 25153, + "id": 27626, "properties": { "facing": "east", "power": "13", @@ -39029,7 +39029,7 @@ } }, { - "id": 25154, + "id": 27627, "properties": { "facing": "east", "power": "13", @@ -39038,7 +39038,7 @@ } }, { - "id": 25155, + "id": 27628, "properties": { "facing": "east", "power": "13", @@ -39047,7 +39047,7 @@ } }, { - "id": 25156, + "id": 27629, "properties": { "facing": "east", "power": "13", @@ -39056,7 +39056,7 @@ } }, { - "id": 25157, + "id": 27630, "properties": { "facing": "east", "power": "13", @@ -39065,7 +39065,7 @@ } }, { - "id": 25158, + "id": 27631, "properties": { "facing": "east", "power": "14", @@ -39074,7 +39074,7 @@ } }, { - "id": 25159, + "id": 27632, "properties": { "facing": "east", "power": "14", @@ -39083,7 +39083,7 @@ } }, { - "id": 25160, + "id": 27633, "properties": { "facing": "east", "power": "14", @@ -39092,7 +39092,7 @@ } }, { - "id": 25161, + "id": 27634, "properties": { "facing": "east", "power": "14", @@ -39101,7 +39101,7 @@ } }, { - "id": 25162, + "id": 27635, "properties": { "facing": "east", "power": "14", @@ -39110,7 +39110,7 @@ } }, { - "id": 25163, + "id": 27636, "properties": { "facing": "east", "power": "14", @@ -39119,7 +39119,7 @@ } }, { - "id": 25164, + "id": 27637, "properties": { "facing": "east", "power": "15", @@ -39128,7 +39128,7 @@ } }, { - "id": 25165, + "id": 27638, "properties": { "facing": "east", "power": "15", @@ -39137,7 +39137,7 @@ } }, { - "id": 25166, + "id": 27639, "properties": { "facing": "east", "power": "15", @@ -39146,7 +39146,7 @@ } }, { - "id": 25167, + "id": 27640, "properties": { "facing": "east", "power": "15", @@ -39155,7 +39155,7 @@ } }, { - "id": 25168, + "id": 27641, "properties": { "facing": "east", "power": "15", @@ -39164,7 +39164,7 @@ } }, { - "id": 25169, + "id": 27642, "properties": { "facing": "east", "power": "15", @@ -39861,7 +39861,7 @@ }, "states": [ { - "id": 27756, + "id": 30249, "properties": { "age": "0", "berries": "true" @@ -39869,357 +39869,357 @@ }, { "default": true, - "id": 27757, + "id": 30250, "properties": { "age": "0", "berries": "false" } }, { - "id": 27758, + "id": 30251, "properties": { "age": "1", "berries": "true" } }, { - "id": 27759, + "id": 30252, "properties": { "age": "1", "berries": "false" } }, { - "id": 27760, + "id": 30253, "properties": { "age": "2", "berries": "true" } }, { - "id": 27761, + "id": 30254, "properties": { "age": "2", "berries": "false" } }, { - "id": 27762, + "id": 30255, "properties": { "age": "3", "berries": "true" } }, { - "id": 27763, + "id": 30256, "properties": { "age": "3", "berries": "false" } }, { - "id": 27764, + "id": 30257, "properties": { "age": "4", "berries": "true" } }, { - "id": 27765, + "id": 30258, "properties": { "age": "4", "berries": "false" } }, { - "id": 27766, + "id": 30259, "properties": { "age": "5", "berries": "true" } }, { - "id": 27767, + "id": 30260, "properties": { "age": "5", "berries": "false" } }, { - "id": 27768, + "id": 30261, "properties": { "age": "6", "berries": "true" } }, { - "id": 27769, + "id": 30262, "properties": { "age": "6", "berries": "false" } }, { - "id": 27770, + "id": 30263, "properties": { "age": "7", "berries": "true" } }, { - "id": 27771, + "id": 30264, "properties": { "age": "7", "berries": "false" } }, { - "id": 27772, + "id": 30265, "properties": { "age": "8", "berries": "true" } }, { - "id": 27773, + "id": 30266, "properties": { "age": "8", "berries": "false" } }, { - "id": 27774, + "id": 30267, "properties": { "age": "9", "berries": "true" } }, { - "id": 27775, + "id": 30268, "properties": { "age": "9", "berries": "false" } }, { - "id": 27776, + "id": 30269, "properties": { "age": "10", "berries": "true" } }, { - "id": 27777, + "id": 30270, "properties": { "age": "10", "berries": "false" } }, { - "id": 27778, + "id": 30271, "properties": { "age": "11", "berries": "true" } }, { - "id": 27779, + "id": 30272, "properties": { "age": "11", "berries": "false" } }, { - "id": 27780, + "id": 30273, "properties": { "age": "12", "berries": "true" } }, { - "id": 27781, + "id": 30274, "properties": { "age": "12", "berries": "false" } }, { - "id": 27782, + "id": 30275, "properties": { "age": "13", "berries": "true" } }, { - "id": 27783, + "id": 30276, "properties": { "age": "13", "berries": "false" } }, { - "id": 27784, + "id": 30277, "properties": { "age": "14", "berries": "true" } }, { - "id": 27785, + "id": 30278, "properties": { "age": "14", "berries": "false" } }, { - "id": 27786, + "id": 30279, "properties": { "age": "15", "berries": "true" } }, { - "id": 27787, + "id": 30280, "properties": { "age": "15", "berries": "false" } }, { - "id": 27788, + "id": 30281, "properties": { "age": "16", "berries": "true" } }, { - "id": 27789, + "id": 30282, "properties": { "age": "16", "berries": "false" } }, { - "id": 27790, + "id": 30283, "properties": { "age": "17", "berries": "true" } }, { - "id": 27791, + "id": 30284, "properties": { "age": "17", "berries": "false" } }, { - "id": 27792, + "id": 30285, "properties": { "age": "18", "berries": "true" } }, { - "id": 27793, + "id": 30286, "properties": { "age": "18", "berries": "false" } }, { - "id": 27794, + "id": 30287, "properties": { "age": "19", "berries": "true" } }, { - "id": 27795, + "id": 30288, "properties": { "age": "19", "berries": "false" } }, { - "id": 27796, + "id": 30289, "properties": { "age": "20", "berries": "true" } }, { - "id": 27797, + "id": 30290, "properties": { "age": "20", "berries": "false" } }, { - "id": 27798, + "id": 30291, "properties": { "age": "21", "berries": "true" } }, { - "id": 27799, + "id": 30292, "properties": { "age": "21", "berries": "false" } }, { - "id": 27800, + "id": 30293, "properties": { "age": "22", "berries": "true" } }, { - "id": 27801, + "id": 30294, "properties": { "age": "22", "berries": "false" } }, { - "id": 27802, + "id": 30295, "properties": { "age": "23", "berries": "true" } }, { - "id": 27803, + "id": 30296, "properties": { "age": "23", "berries": "false" } }, { - "id": 27804, + "id": 30297, "properties": { "age": "24", "berries": "true" } }, { - "id": 27805, + "id": 30298, "properties": { "age": "24", "berries": "false" } }, { - "id": 27806, + "id": 30299, "properties": { "age": "25", "berries": "true" } }, { - "id": 27807, + "id": 30300, "properties": { "age": "25", "berries": "false" @@ -40240,14 +40240,14 @@ }, "states": [ { - "id": 27808, + "id": 30301, "properties": { "berries": "true" } }, { "default": true, - "id": 27809, + "id": 30302, "properties": { "berries": "false" } @@ -48753,6 +48753,18 @@ } ] }, + "minecraft:chiseled_cinnabar": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27159 + } + ] + }, "minecraft:chiseled_copper": { "definition": { "type": "minecraft:weathering_copper_full", @@ -48762,7 +48774,7 @@ "states": [ { "default": true, - "id": 25322 + "id": 27800 } ] }, @@ -48774,7 +48786,7 @@ "states": [ { "default": true, - "id": 29570 + "id": 32063 } ] }, @@ -48862,6 +48874,18 @@ } ] }, + "minecraft:chiseled_sulfur": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25925 + } + ] + }, "minecraft:chiseled_tuff": { "definition": { "type": "minecraft:block", @@ -49681,6 +49705,8870 @@ } ] }, + "minecraft:cinnabar": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25926 + } + ] + }, + "minecraft:cinnabar_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26749, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 26750, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 26751, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26752, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 26753, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 26754, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cinnabar_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:cinnabar_bricks" + }, + "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": 26755, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26756, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26757, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26758, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26759, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26760, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26761, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26762, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26763, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26764, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26765, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26766, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26767, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26768, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26769, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26770, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26771, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26772, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26773, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26774, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26775, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26776, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26777, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26778, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26779, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26780, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26781, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26782, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26783, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26784, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26785, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26786, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26787, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26788, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26789, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26790, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26791, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26792, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26793, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26794, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26795, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26796, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26797, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26798, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26799, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26800, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26801, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26802, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26803, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26804, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26805, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26806, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26807, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26808, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26809, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26810, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26811, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26812, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26813, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26814, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26815, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26816, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26817, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26818, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26819, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26820, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26821, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26822, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26823, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26824, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26825, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26826, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26827, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26828, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26829, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26830, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26831, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26832, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26833, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26834, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cinnabar_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 26835, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26836, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26837, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 26838, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26839, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26840, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26841, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26842, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26843, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26844, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26845, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26846, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26847, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26848, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26849, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26850, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26851, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26852, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26853, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26854, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26855, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26856, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26857, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26858, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26859, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26860, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26861, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26862, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26863, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26864, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26865, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26866, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26867, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26868, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26869, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26870, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26871, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26872, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26873, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26874, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26875, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26876, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26877, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26878, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26879, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26880, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26881, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26882, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26883, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26884, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26885, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26886, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26887, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26888, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26889, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26890, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26891, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26892, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26893, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26894, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26895, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26896, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26897, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26898, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26899, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26900, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26901, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26902, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26903, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26904, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26905, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26906, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26907, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26908, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26909, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26910, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26911, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26912, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26913, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26914, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26915, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26916, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26917, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26918, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26919, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26920, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26921, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26922, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26923, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26924, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26925, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26926, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26927, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26928, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26929, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26930, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26931, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26932, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26933, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26934, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26935, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26936, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26937, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26938, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26939, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26940, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26941, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26942, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26943, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26944, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26945, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26946, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26947, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26948, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26949, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26950, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26951, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26952, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26953, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26954, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26955, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26956, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26957, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26958, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26959, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26960, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26961, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26962, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26963, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26964, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26965, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26966, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26967, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26968, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26969, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26970, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26971, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26972, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26973, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26974, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26975, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26976, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26977, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26978, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26979, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26980, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26981, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26982, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26983, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26984, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26985, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26986, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26987, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26988, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26989, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26990, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26991, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26992, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26993, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26994, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26995, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26996, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26997, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26998, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26999, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27000, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27001, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27002, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27003, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27004, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27005, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27006, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27007, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27008, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27009, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27010, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27011, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27012, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27013, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27014, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27015, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27016, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27017, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27018, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27019, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27020, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27021, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27022, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27023, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27024, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27025, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27026, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27027, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27028, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27029, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27030, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27031, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27032, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27033, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27034, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27035, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27036, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27037, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27038, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27039, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27040, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27041, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27042, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27043, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27044, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27045, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27046, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27047, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27048, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27049, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27050, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27051, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27052, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27053, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27054, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27055, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27056, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27057, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27058, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27059, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27060, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27061, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27062, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27063, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27064, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27065, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27066, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27067, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27068, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27069, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27070, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27071, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27072, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27073, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27074, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27075, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27076, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27077, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27078, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27079, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27080, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27081, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27082, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27083, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27084, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27085, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27086, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27087, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27088, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27089, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27090, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27091, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27092, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27093, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27094, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27095, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27096, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27097, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27098, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27099, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27100, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27101, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27102, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27103, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27104, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27105, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27106, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27107, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27108, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27109, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27110, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27111, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27112, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27113, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27114, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27115, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27116, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27117, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27118, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27119, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27120, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27121, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27122, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27123, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27124, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27125, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27126, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27127, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27128, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27129, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27130, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27131, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27132, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27133, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27134, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27135, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27136, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27137, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27138, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27139, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27140, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27141, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27142, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27143, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27144, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27145, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27146, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27147, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27148, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27149, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27150, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27151, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27152, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27153, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27154, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27155, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27156, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27157, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27158, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:cinnabar_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 26748 + } + ] + }, + "minecraft:cinnabar_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25927, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 25928, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 25929, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25930, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 25931, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 25932, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cinnabar_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:cinnabar" + }, + "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": 25933, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25934, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25935, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25936, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25937, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25938, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25939, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25940, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25941, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25942, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25943, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25944, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25945, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25946, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25947, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25948, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25949, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25950, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25951, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25952, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25953, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25954, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25955, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25956, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25957, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25958, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25959, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25960, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25961, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25962, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25963, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25964, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25965, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25966, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25967, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25968, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25969, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25970, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25971, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25972, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25973, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25974, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25975, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25976, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25977, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25978, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25979, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25980, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25981, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25982, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25983, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25984, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25985, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25986, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25987, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25988, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25989, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25990, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25991, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25992, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25993, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25994, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25995, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25996, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25997, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25998, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25999, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26000, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26001, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26002, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26003, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26004, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26005, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26006, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26007, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26008, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26009, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26010, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26011, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26012, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cinnabar_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 26013, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26014, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26015, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 26016, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26017, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26018, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26019, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26020, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26021, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26022, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26023, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26024, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26025, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26026, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26027, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26028, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26029, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26030, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26031, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26032, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26033, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26034, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26035, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26036, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26037, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26038, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26039, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26040, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26041, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26042, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26043, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26044, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26045, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26046, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26047, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26048, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26049, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26050, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26051, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26052, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26053, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26054, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26055, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26056, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26057, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26058, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26059, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26060, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26061, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26062, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26063, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26064, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26065, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26066, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26067, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26068, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26069, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26070, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26071, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26072, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26073, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26074, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26075, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26076, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26077, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26078, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26079, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26080, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26081, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26082, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26083, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26084, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26085, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26086, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26087, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26088, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26089, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26090, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26091, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26092, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26093, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26094, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26095, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26096, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26097, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26098, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26099, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26100, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26101, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26102, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26103, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26104, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26105, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26106, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26107, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26108, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26109, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26110, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26111, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26112, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26113, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26114, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26115, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26116, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26117, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26118, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26119, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26120, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26121, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26122, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26123, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26124, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26125, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26126, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26127, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26128, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26129, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26130, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26131, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26132, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26133, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26134, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26135, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26136, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26137, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26138, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26139, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26140, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26141, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26142, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26143, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26144, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26145, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26146, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26147, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26148, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26149, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26150, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26151, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26152, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26153, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26154, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26155, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26156, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26157, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26158, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26159, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26160, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26161, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26162, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26163, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26164, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26165, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26166, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26167, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26168, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26169, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26170, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26171, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26172, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26173, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26174, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26175, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26176, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26177, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26178, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26179, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26180, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26181, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26182, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26183, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26184, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26185, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26186, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26187, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26188, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26189, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26190, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26191, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26192, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26193, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26194, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26195, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26196, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26197, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26198, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26199, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26200, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26201, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26202, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26203, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26204, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26205, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26206, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26207, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26208, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26209, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26210, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26211, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26212, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26213, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26214, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26215, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26216, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26217, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26218, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26219, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26220, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26221, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26222, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26223, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26224, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26225, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26226, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26227, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26228, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26229, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26230, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26231, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26232, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26233, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26234, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26235, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26236, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26237, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26238, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26239, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26240, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26241, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26242, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26243, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26244, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26245, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26246, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26247, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26248, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26249, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26250, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26251, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26252, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26253, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26254, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26255, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26256, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26257, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26258, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26259, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26260, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26261, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26262, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26263, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26264, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26265, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26266, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26267, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26268, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26269, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26270, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26271, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26272, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26273, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26274, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26275, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26276, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26277, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26278, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26279, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26280, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26281, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26282, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26283, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26284, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26285, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26286, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26287, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26288, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26289, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26290, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26291, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26292, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26293, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26294, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26295, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26296, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26297, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26298, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26299, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26300, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26301, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26302, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26303, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26304, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26305, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26306, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26307, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26308, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26309, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26310, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26311, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26312, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26313, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26314, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26315, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26316, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26317, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26318, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26319, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26320, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26321, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26322, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26323, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26324, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26325, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26326, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26327, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26328, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26329, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26330, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26331, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26332, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26333, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26334, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26335, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26336, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, "minecraft:clay": { "definition": { "type": "minecraft:block", @@ -49702,7 +58590,7 @@ "states": [ { "default": true, - "id": 29869 + "id": 32362 } ] }, @@ -49755,7 +58643,7 @@ "states": [ { "default": true, - "id": 27926 + "id": 30419 } ] }, @@ -49777,21 +58665,21 @@ }, "states": [ { - "id": 28007, + "id": 30500, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 28008, + "id": 30501, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 28009, + "id": 30502, "properties": { "type": "bottom", "waterlogged": "true" @@ -49799,21 +58687,21 @@ }, { "default": true, - "id": 28010, + "id": 30503, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 28011, + "id": 30504, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 28012, + "id": 30505, "properties": { "type": "double", "waterlogged": "false" @@ -49854,7 +58742,7 @@ }, "states": [ { - "id": 27927, + "id": 30420, "properties": { "facing": "north", "half": "top", @@ -49863,7 +58751,7 @@ } }, { - "id": 27928, + "id": 30421, "properties": { "facing": "north", "half": "top", @@ -49872,7 +58760,7 @@ } }, { - "id": 27929, + "id": 30422, "properties": { "facing": "north", "half": "top", @@ -49881,7 +58769,7 @@ } }, { - "id": 27930, + "id": 30423, "properties": { "facing": "north", "half": "top", @@ -49890,7 +58778,7 @@ } }, { - "id": 27931, + "id": 30424, "properties": { "facing": "north", "half": "top", @@ -49899,7 +58787,7 @@ } }, { - "id": 27932, + "id": 30425, "properties": { "facing": "north", "half": "top", @@ -49908,7 +58796,7 @@ } }, { - "id": 27933, + "id": 30426, "properties": { "facing": "north", "half": "top", @@ -49917,7 +58805,7 @@ } }, { - "id": 27934, + "id": 30427, "properties": { "facing": "north", "half": "top", @@ -49926,7 +58814,7 @@ } }, { - "id": 27935, + "id": 30428, "properties": { "facing": "north", "half": "top", @@ -49935,7 +58823,7 @@ } }, { - "id": 27936, + "id": 30429, "properties": { "facing": "north", "half": "top", @@ -49944,7 +58832,7 @@ } }, { - "id": 27937, + "id": 30430, "properties": { "facing": "north", "half": "bottom", @@ -49954,7 +58842,7 @@ }, { "default": true, - "id": 27938, + "id": 30431, "properties": { "facing": "north", "half": "bottom", @@ -49963,7 +58851,7 @@ } }, { - "id": 27939, + "id": 30432, "properties": { "facing": "north", "half": "bottom", @@ -49972,7 +58860,7 @@ } }, { - "id": 27940, + "id": 30433, "properties": { "facing": "north", "half": "bottom", @@ -49981,7 +58869,7 @@ } }, { - "id": 27941, + "id": 30434, "properties": { "facing": "north", "half": "bottom", @@ -49990,7 +58878,7 @@ } }, { - "id": 27942, + "id": 30435, "properties": { "facing": "north", "half": "bottom", @@ -49999,7 +58887,7 @@ } }, { - "id": 27943, + "id": 30436, "properties": { "facing": "north", "half": "bottom", @@ -50008,7 +58896,7 @@ } }, { - "id": 27944, + "id": 30437, "properties": { "facing": "north", "half": "bottom", @@ -50017,7 +58905,7 @@ } }, { - "id": 27945, + "id": 30438, "properties": { "facing": "north", "half": "bottom", @@ -50026,7 +58914,7 @@ } }, { - "id": 27946, + "id": 30439, "properties": { "facing": "north", "half": "bottom", @@ -50035,7 +58923,7 @@ } }, { - "id": 27947, + "id": 30440, "properties": { "facing": "south", "half": "top", @@ -50044,7 +58932,7 @@ } }, { - "id": 27948, + "id": 30441, "properties": { "facing": "south", "half": "top", @@ -50053,7 +58941,7 @@ } }, { - "id": 27949, + "id": 30442, "properties": { "facing": "south", "half": "top", @@ -50062,7 +58950,7 @@ } }, { - "id": 27950, + "id": 30443, "properties": { "facing": "south", "half": "top", @@ -50071,7 +58959,7 @@ } }, { - "id": 27951, + "id": 30444, "properties": { "facing": "south", "half": "top", @@ -50080,7 +58968,7 @@ } }, { - "id": 27952, + "id": 30445, "properties": { "facing": "south", "half": "top", @@ -50089,7 +58977,7 @@ } }, { - "id": 27953, + "id": 30446, "properties": { "facing": "south", "half": "top", @@ -50098,7 +58986,7 @@ } }, { - "id": 27954, + "id": 30447, "properties": { "facing": "south", "half": "top", @@ -50107,7 +58995,7 @@ } }, { - "id": 27955, + "id": 30448, "properties": { "facing": "south", "half": "top", @@ -50116,7 +59004,7 @@ } }, { - "id": 27956, + "id": 30449, "properties": { "facing": "south", "half": "top", @@ -50125,7 +59013,7 @@ } }, { - "id": 27957, + "id": 30450, "properties": { "facing": "south", "half": "bottom", @@ -50134,7 +59022,7 @@ } }, { - "id": 27958, + "id": 30451, "properties": { "facing": "south", "half": "bottom", @@ -50143,7 +59031,7 @@ } }, { - "id": 27959, + "id": 30452, "properties": { "facing": "south", "half": "bottom", @@ -50152,7 +59040,7 @@ } }, { - "id": 27960, + "id": 30453, "properties": { "facing": "south", "half": "bottom", @@ -50161,7 +59049,7 @@ } }, { - "id": 27961, + "id": 30454, "properties": { "facing": "south", "half": "bottom", @@ -50170,7 +59058,7 @@ } }, { - "id": 27962, + "id": 30455, "properties": { "facing": "south", "half": "bottom", @@ -50179,7 +59067,7 @@ } }, { - "id": 27963, + "id": 30456, "properties": { "facing": "south", "half": "bottom", @@ -50188,7 +59076,7 @@ } }, { - "id": 27964, + "id": 30457, "properties": { "facing": "south", "half": "bottom", @@ -50197,7 +59085,7 @@ } }, { - "id": 27965, + "id": 30458, "properties": { "facing": "south", "half": "bottom", @@ -50206,7 +59094,7 @@ } }, { - "id": 27966, + "id": 30459, "properties": { "facing": "south", "half": "bottom", @@ -50215,7 +59103,7 @@ } }, { - "id": 27967, + "id": 30460, "properties": { "facing": "west", "half": "top", @@ -50224,7 +59112,7 @@ } }, { - "id": 27968, + "id": 30461, "properties": { "facing": "west", "half": "top", @@ -50233,7 +59121,7 @@ } }, { - "id": 27969, + "id": 30462, "properties": { "facing": "west", "half": "top", @@ -50242,7 +59130,7 @@ } }, { - "id": 27970, + "id": 30463, "properties": { "facing": "west", "half": "top", @@ -50251,7 +59139,7 @@ } }, { - "id": 27971, + "id": 30464, "properties": { "facing": "west", "half": "top", @@ -50260,7 +59148,7 @@ } }, { - "id": 27972, + "id": 30465, "properties": { "facing": "west", "half": "top", @@ -50269,7 +59157,7 @@ } }, { - "id": 27973, + "id": 30466, "properties": { "facing": "west", "half": "top", @@ -50278,7 +59166,7 @@ } }, { - "id": 27974, + "id": 30467, "properties": { "facing": "west", "half": "top", @@ -50287,7 +59175,7 @@ } }, { - "id": 27975, + "id": 30468, "properties": { "facing": "west", "half": "top", @@ -50296,7 +59184,7 @@ } }, { - "id": 27976, + "id": 30469, "properties": { "facing": "west", "half": "top", @@ -50305,7 +59193,7 @@ } }, { - "id": 27977, + "id": 30470, "properties": { "facing": "west", "half": "bottom", @@ -50314,7 +59202,7 @@ } }, { - "id": 27978, + "id": 30471, "properties": { "facing": "west", "half": "bottom", @@ -50323,7 +59211,7 @@ } }, { - "id": 27979, + "id": 30472, "properties": { "facing": "west", "half": "bottom", @@ -50332,7 +59220,7 @@ } }, { - "id": 27980, + "id": 30473, "properties": { "facing": "west", "half": "bottom", @@ -50341,7 +59229,7 @@ } }, { - "id": 27981, + "id": 30474, "properties": { "facing": "west", "half": "bottom", @@ -50350,7 +59238,7 @@ } }, { - "id": 27982, + "id": 30475, "properties": { "facing": "west", "half": "bottom", @@ -50359,7 +59247,7 @@ } }, { - "id": 27983, + "id": 30476, "properties": { "facing": "west", "half": "bottom", @@ -50368,7 +59256,7 @@ } }, { - "id": 27984, + "id": 30477, "properties": { "facing": "west", "half": "bottom", @@ -50377,7 +59265,7 @@ } }, { - "id": 27985, + "id": 30478, "properties": { "facing": "west", "half": "bottom", @@ -50386,7 +59274,7 @@ } }, { - "id": 27986, + "id": 30479, "properties": { "facing": "west", "half": "bottom", @@ -50395,7 +59283,7 @@ } }, { - "id": 27987, + "id": 30480, "properties": { "facing": "east", "half": "top", @@ -50404,7 +59292,7 @@ } }, { - "id": 27988, + "id": 30481, "properties": { "facing": "east", "half": "top", @@ -50413,7 +59301,7 @@ } }, { - "id": 27989, + "id": 30482, "properties": { "facing": "east", "half": "top", @@ -50422,7 +59310,7 @@ } }, { - "id": 27990, + "id": 30483, "properties": { "facing": "east", "half": "top", @@ -50431,7 +59319,7 @@ } }, { - "id": 27991, + "id": 30484, "properties": { "facing": "east", "half": "top", @@ -50440,7 +59328,7 @@ } }, { - "id": 27992, + "id": 30485, "properties": { "facing": "east", "half": "top", @@ -50449,7 +59337,7 @@ } }, { - "id": 27993, + "id": 30486, "properties": { "facing": "east", "half": "top", @@ -50458,7 +59346,7 @@ } }, { - "id": 27994, + "id": 30487, "properties": { "facing": "east", "half": "top", @@ -50467,7 +59355,7 @@ } }, { - "id": 27995, + "id": 30488, "properties": { "facing": "east", "half": "top", @@ -50476,7 +59364,7 @@ } }, { - "id": 27996, + "id": 30489, "properties": { "facing": "east", "half": "top", @@ -50485,7 +59373,7 @@ } }, { - "id": 27997, + "id": 30490, "properties": { "facing": "east", "half": "bottom", @@ -50494,7 +59382,7 @@ } }, { - "id": 27998, + "id": 30491, "properties": { "facing": "east", "half": "bottom", @@ -50503,7 +59391,7 @@ } }, { - "id": 27999, + "id": 30492, "properties": { "facing": "east", "half": "bottom", @@ -50512,7 +59400,7 @@ } }, { - "id": 28000, + "id": 30493, "properties": { "facing": "east", "half": "bottom", @@ -50521,7 +59409,7 @@ } }, { - "id": 28001, + "id": 30494, "properties": { "facing": "east", "half": "bottom", @@ -50530,7 +59418,7 @@ } }, { - "id": 28002, + "id": 30495, "properties": { "facing": "east", "half": "bottom", @@ -50539,7 +59427,7 @@ } }, { - "id": 28003, + "id": 30496, "properties": { "facing": "east", "half": "bottom", @@ -50548,7 +59436,7 @@ } }, { - "id": 28004, + "id": 30497, "properties": { "facing": "east", "half": "bottom", @@ -50557,7 +59445,7 @@ } }, { - "id": 28005, + "id": 30498, "properties": { "facing": "east", "half": "bottom", @@ -50566,7 +59454,7 @@ } }, { - "id": 28006, + "id": 30499, "properties": { "facing": "east", "half": "bottom", @@ -50613,7 +59501,7 @@ }, "states": [ { - "id": 28013, + "id": 30506, "properties": { "east": "none", "north": "none", @@ -50624,7 +59512,7 @@ } }, { - "id": 28014, + "id": 30507, "properties": { "east": "none", "north": "none", @@ -50635,7 +59523,7 @@ } }, { - "id": 28015, + "id": 30508, "properties": { "east": "none", "north": "none", @@ -50647,7 +59535,7 @@ }, { "default": true, - "id": 28016, + "id": 30509, "properties": { "east": "none", "north": "none", @@ -50658,7 +59546,7 @@ } }, { - "id": 28017, + "id": 30510, "properties": { "east": "none", "north": "none", @@ -50669,7 +59557,7 @@ } }, { - "id": 28018, + "id": 30511, "properties": { "east": "none", "north": "none", @@ -50680,7 +59568,7 @@ } }, { - "id": 28019, + "id": 30512, "properties": { "east": "none", "north": "none", @@ -50691,7 +59579,7 @@ } }, { - "id": 28020, + "id": 30513, "properties": { "east": "none", "north": "none", @@ -50702,7 +59590,7 @@ } }, { - "id": 28021, + "id": 30514, "properties": { "east": "none", "north": "none", @@ -50713,7 +59601,7 @@ } }, { - "id": 28022, + "id": 30515, "properties": { "east": "none", "north": "none", @@ -50724,7 +59612,7 @@ } }, { - "id": 28023, + "id": 30516, "properties": { "east": "none", "north": "none", @@ -50735,7 +59623,7 @@ } }, { - "id": 28024, + "id": 30517, "properties": { "east": "none", "north": "none", @@ -50746,7 +59634,7 @@ } }, { - "id": 28025, + "id": 30518, "properties": { "east": "none", "north": "none", @@ -50757,7 +59645,7 @@ } }, { - "id": 28026, + "id": 30519, "properties": { "east": "none", "north": "none", @@ -50768,7 +59656,7 @@ } }, { - "id": 28027, + "id": 30520, "properties": { "east": "none", "north": "none", @@ -50779,7 +59667,7 @@ } }, { - "id": 28028, + "id": 30521, "properties": { "east": "none", "north": "none", @@ -50790,7 +59678,7 @@ } }, { - "id": 28029, + "id": 30522, "properties": { "east": "none", "north": "none", @@ -50801,7 +59689,7 @@ } }, { - "id": 28030, + "id": 30523, "properties": { "east": "none", "north": "none", @@ -50812,7 +59700,7 @@ } }, { - "id": 28031, + "id": 30524, "properties": { "east": "none", "north": "none", @@ -50823,7 +59711,7 @@ } }, { - "id": 28032, + "id": 30525, "properties": { "east": "none", "north": "none", @@ -50834,7 +59722,7 @@ } }, { - "id": 28033, + "id": 30526, "properties": { "east": "none", "north": "none", @@ -50845,7 +59733,7 @@ } }, { - "id": 28034, + "id": 30527, "properties": { "east": "none", "north": "none", @@ -50856,7 +59744,7 @@ } }, { - "id": 28035, + "id": 30528, "properties": { "east": "none", "north": "none", @@ -50867,7 +59755,7 @@ } }, { - "id": 28036, + "id": 30529, "properties": { "east": "none", "north": "none", @@ -50878,7 +59766,7 @@ } }, { - "id": 28037, + "id": 30530, "properties": { "east": "none", "north": "none", @@ -50889,7 +59777,7 @@ } }, { - "id": 28038, + "id": 30531, "properties": { "east": "none", "north": "none", @@ -50900,7 +59788,7 @@ } }, { - "id": 28039, + "id": 30532, "properties": { "east": "none", "north": "none", @@ -50911,7 +59799,7 @@ } }, { - "id": 28040, + "id": 30533, "properties": { "east": "none", "north": "none", @@ -50922,7 +59810,7 @@ } }, { - "id": 28041, + "id": 30534, "properties": { "east": "none", "north": "none", @@ -50933,7 +59821,7 @@ } }, { - "id": 28042, + "id": 30535, "properties": { "east": "none", "north": "none", @@ -50944,7 +59832,7 @@ } }, { - "id": 28043, + "id": 30536, "properties": { "east": "none", "north": "none", @@ -50955,7 +59843,7 @@ } }, { - "id": 28044, + "id": 30537, "properties": { "east": "none", "north": "none", @@ -50966,7 +59854,7 @@ } }, { - "id": 28045, + "id": 30538, "properties": { "east": "none", "north": "none", @@ -50977,7 +59865,7 @@ } }, { - "id": 28046, + "id": 30539, "properties": { "east": "none", "north": "none", @@ -50988,7 +59876,7 @@ } }, { - "id": 28047, + "id": 30540, "properties": { "east": "none", "north": "none", @@ -50999,7 +59887,7 @@ } }, { - "id": 28048, + "id": 30541, "properties": { "east": "none", "north": "none", @@ -51010,7 +59898,7 @@ } }, { - "id": 28049, + "id": 30542, "properties": { "east": "none", "north": "low", @@ -51021,7 +59909,7 @@ } }, { - "id": 28050, + "id": 30543, "properties": { "east": "none", "north": "low", @@ -51032,7 +59920,7 @@ } }, { - "id": 28051, + "id": 30544, "properties": { "east": "none", "north": "low", @@ -51043,7 +59931,7 @@ } }, { - "id": 28052, + "id": 30545, "properties": { "east": "none", "north": "low", @@ -51054,7 +59942,7 @@ } }, { - "id": 28053, + "id": 30546, "properties": { "east": "none", "north": "low", @@ -51065,7 +59953,7 @@ } }, { - "id": 28054, + "id": 30547, "properties": { "east": "none", "north": "low", @@ -51076,7 +59964,7 @@ } }, { - "id": 28055, + "id": 30548, "properties": { "east": "none", "north": "low", @@ -51087,7 +59975,7 @@ } }, { - "id": 28056, + "id": 30549, "properties": { "east": "none", "north": "low", @@ -51098,7 +59986,7 @@ } }, { - "id": 28057, + "id": 30550, "properties": { "east": "none", "north": "low", @@ -51109,7 +59997,7 @@ } }, { - "id": 28058, + "id": 30551, "properties": { "east": "none", "north": "low", @@ -51120,7 +60008,7 @@ } }, { - "id": 28059, + "id": 30552, "properties": { "east": "none", "north": "low", @@ -51131,7 +60019,7 @@ } }, { - "id": 28060, + "id": 30553, "properties": { "east": "none", "north": "low", @@ -51142,7 +60030,7 @@ } }, { - "id": 28061, + "id": 30554, "properties": { "east": "none", "north": "low", @@ -51153,7 +60041,7 @@ } }, { - "id": 28062, + "id": 30555, "properties": { "east": "none", "north": "low", @@ -51164,7 +60052,7 @@ } }, { - "id": 28063, + "id": 30556, "properties": { "east": "none", "north": "low", @@ -51175,7 +60063,7 @@ } }, { - "id": 28064, + "id": 30557, "properties": { "east": "none", "north": "low", @@ -51186,7 +60074,7 @@ } }, { - "id": 28065, + "id": 30558, "properties": { "east": "none", "north": "low", @@ -51197,7 +60085,7 @@ } }, { - "id": 28066, + "id": 30559, "properties": { "east": "none", "north": "low", @@ -51208,7 +60096,7 @@ } }, { - "id": 28067, + "id": 30560, "properties": { "east": "none", "north": "low", @@ -51219,7 +60107,7 @@ } }, { - "id": 28068, + "id": 30561, "properties": { "east": "none", "north": "low", @@ -51230,7 +60118,7 @@ } }, { - "id": 28069, + "id": 30562, "properties": { "east": "none", "north": "low", @@ -51241,7 +60129,7 @@ } }, { - "id": 28070, + "id": 30563, "properties": { "east": "none", "north": "low", @@ -51252,7 +60140,7 @@ } }, { - "id": 28071, + "id": 30564, "properties": { "east": "none", "north": "low", @@ -51263,7 +60151,7 @@ } }, { - "id": 28072, + "id": 30565, "properties": { "east": "none", "north": "low", @@ -51274,7 +60162,7 @@ } }, { - "id": 28073, + "id": 30566, "properties": { "east": "none", "north": "low", @@ -51285,7 +60173,7 @@ } }, { - "id": 28074, + "id": 30567, "properties": { "east": "none", "north": "low", @@ -51296,7 +60184,7 @@ } }, { - "id": 28075, + "id": 30568, "properties": { "east": "none", "north": "low", @@ -51307,7 +60195,7 @@ } }, { - "id": 28076, + "id": 30569, "properties": { "east": "none", "north": "low", @@ -51318,7 +60206,7 @@ } }, { - "id": 28077, + "id": 30570, "properties": { "east": "none", "north": "low", @@ -51329,7 +60217,7 @@ } }, { - "id": 28078, + "id": 30571, "properties": { "east": "none", "north": "low", @@ -51340,7 +60228,7 @@ } }, { - "id": 28079, + "id": 30572, "properties": { "east": "none", "north": "low", @@ -51351,7 +60239,7 @@ } }, { - "id": 28080, + "id": 30573, "properties": { "east": "none", "north": "low", @@ -51362,7 +60250,7 @@ } }, { - "id": 28081, + "id": 30574, "properties": { "east": "none", "north": "low", @@ -51373,7 +60261,7 @@ } }, { - "id": 28082, + "id": 30575, "properties": { "east": "none", "north": "low", @@ -51384,7 +60272,7 @@ } }, { - "id": 28083, + "id": 30576, "properties": { "east": "none", "north": "low", @@ -51395,7 +60283,7 @@ } }, { - "id": 28084, + "id": 30577, "properties": { "east": "none", "north": "low", @@ -51406,7 +60294,7 @@ } }, { - "id": 28085, + "id": 30578, "properties": { "east": "none", "north": "tall", @@ -51417,7 +60305,7 @@ } }, { - "id": 28086, + "id": 30579, "properties": { "east": "none", "north": "tall", @@ -51428,7 +60316,7 @@ } }, { - "id": 28087, + "id": 30580, "properties": { "east": "none", "north": "tall", @@ -51439,7 +60327,7 @@ } }, { - "id": 28088, + "id": 30581, "properties": { "east": "none", "north": "tall", @@ -51450,7 +60338,7 @@ } }, { - "id": 28089, + "id": 30582, "properties": { "east": "none", "north": "tall", @@ -51461,7 +60349,7 @@ } }, { - "id": 28090, + "id": 30583, "properties": { "east": "none", "north": "tall", @@ -51472,7 +60360,7 @@ } }, { - "id": 28091, + "id": 30584, "properties": { "east": "none", "north": "tall", @@ -51483,7 +60371,7 @@ } }, { - "id": 28092, + "id": 30585, "properties": { "east": "none", "north": "tall", @@ -51494,7 +60382,7 @@ } }, { - "id": 28093, + "id": 30586, "properties": { "east": "none", "north": "tall", @@ -51505,7 +60393,7 @@ } }, { - "id": 28094, + "id": 30587, "properties": { "east": "none", "north": "tall", @@ -51516,7 +60404,7 @@ } }, { - "id": 28095, + "id": 30588, "properties": { "east": "none", "north": "tall", @@ -51527,7 +60415,7 @@ } }, { - "id": 28096, + "id": 30589, "properties": { "east": "none", "north": "tall", @@ -51538,7 +60426,7 @@ } }, { - "id": 28097, + "id": 30590, "properties": { "east": "none", "north": "tall", @@ -51549,7 +60437,7 @@ } }, { - "id": 28098, + "id": 30591, "properties": { "east": "none", "north": "tall", @@ -51560,7 +60448,7 @@ } }, { - "id": 28099, + "id": 30592, "properties": { "east": "none", "north": "tall", @@ -51571,7 +60459,7 @@ } }, { - "id": 28100, + "id": 30593, "properties": { "east": "none", "north": "tall", @@ -51582,7 +60470,7 @@ } }, { - "id": 28101, + "id": 30594, "properties": { "east": "none", "north": "tall", @@ -51593,7 +60481,7 @@ } }, { - "id": 28102, + "id": 30595, "properties": { "east": "none", "north": "tall", @@ -51604,7 +60492,7 @@ } }, { - "id": 28103, + "id": 30596, "properties": { "east": "none", "north": "tall", @@ -51615,7 +60503,7 @@ } }, { - "id": 28104, + "id": 30597, "properties": { "east": "none", "north": "tall", @@ -51626,7 +60514,7 @@ } }, { - "id": 28105, + "id": 30598, "properties": { "east": "none", "north": "tall", @@ -51637,7 +60525,7 @@ } }, { - "id": 28106, + "id": 30599, "properties": { "east": "none", "north": "tall", @@ -51648,7 +60536,7 @@ } }, { - "id": 28107, + "id": 30600, "properties": { "east": "none", "north": "tall", @@ -51659,7 +60547,7 @@ } }, { - "id": 28108, + "id": 30601, "properties": { "east": "none", "north": "tall", @@ -51670,7 +60558,7 @@ } }, { - "id": 28109, + "id": 30602, "properties": { "east": "none", "north": "tall", @@ -51681,7 +60569,7 @@ } }, { - "id": 28110, + "id": 30603, "properties": { "east": "none", "north": "tall", @@ -51692,7 +60580,7 @@ } }, { - "id": 28111, + "id": 30604, "properties": { "east": "none", "north": "tall", @@ -51703,7 +60591,7 @@ } }, { - "id": 28112, + "id": 30605, "properties": { "east": "none", "north": "tall", @@ -51714,7 +60602,7 @@ } }, { - "id": 28113, + "id": 30606, "properties": { "east": "none", "north": "tall", @@ -51725,7 +60613,7 @@ } }, { - "id": 28114, + "id": 30607, "properties": { "east": "none", "north": "tall", @@ -51736,7 +60624,7 @@ } }, { - "id": 28115, + "id": 30608, "properties": { "east": "none", "north": "tall", @@ -51747,7 +60635,7 @@ } }, { - "id": 28116, + "id": 30609, "properties": { "east": "none", "north": "tall", @@ -51758,7 +60646,7 @@ } }, { - "id": 28117, + "id": 30610, "properties": { "east": "none", "north": "tall", @@ -51769,7 +60657,7 @@ } }, { - "id": 28118, + "id": 30611, "properties": { "east": "none", "north": "tall", @@ -51780,7 +60668,7 @@ } }, { - "id": 28119, + "id": 30612, "properties": { "east": "none", "north": "tall", @@ -51791,7 +60679,7 @@ } }, { - "id": 28120, + "id": 30613, "properties": { "east": "none", "north": "tall", @@ -51802,7 +60690,7 @@ } }, { - "id": 28121, + "id": 30614, "properties": { "east": "low", "north": "none", @@ -51813,7 +60701,7 @@ } }, { - "id": 28122, + "id": 30615, "properties": { "east": "low", "north": "none", @@ -51824,7 +60712,7 @@ } }, { - "id": 28123, + "id": 30616, "properties": { "east": "low", "north": "none", @@ -51835,7 +60723,7 @@ } }, { - "id": 28124, + "id": 30617, "properties": { "east": "low", "north": "none", @@ -51846,7 +60734,7 @@ } }, { - "id": 28125, + "id": 30618, "properties": { "east": "low", "north": "none", @@ -51857,7 +60745,7 @@ } }, { - "id": 28126, + "id": 30619, "properties": { "east": "low", "north": "none", @@ -51868,7 +60756,7 @@ } }, { - "id": 28127, + "id": 30620, "properties": { "east": "low", "north": "none", @@ -51879,7 +60767,7 @@ } }, { - "id": 28128, + "id": 30621, "properties": { "east": "low", "north": "none", @@ -51890,7 +60778,7 @@ } }, { - "id": 28129, + "id": 30622, "properties": { "east": "low", "north": "none", @@ -51901,7 +60789,7 @@ } }, { - "id": 28130, + "id": 30623, "properties": { "east": "low", "north": "none", @@ -51912,7 +60800,7 @@ } }, { - "id": 28131, + "id": 30624, "properties": { "east": "low", "north": "none", @@ -51923,7 +60811,7 @@ } }, { - "id": 28132, + "id": 30625, "properties": { "east": "low", "north": "none", @@ -51934,7 +60822,7 @@ } }, { - "id": 28133, + "id": 30626, "properties": { "east": "low", "north": "none", @@ -51945,7 +60833,7 @@ } }, { - "id": 28134, + "id": 30627, "properties": { "east": "low", "north": "none", @@ -51956,7 +60844,7 @@ } }, { - "id": 28135, + "id": 30628, "properties": { "east": "low", "north": "none", @@ -51967,7 +60855,7 @@ } }, { - "id": 28136, + "id": 30629, "properties": { "east": "low", "north": "none", @@ -51978,7 +60866,7 @@ } }, { - "id": 28137, + "id": 30630, "properties": { "east": "low", "north": "none", @@ -51989,7 +60877,7 @@ } }, { - "id": 28138, + "id": 30631, "properties": { "east": "low", "north": "none", @@ -52000,7 +60888,7 @@ } }, { - "id": 28139, + "id": 30632, "properties": { "east": "low", "north": "none", @@ -52011,7 +60899,7 @@ } }, { - "id": 28140, + "id": 30633, "properties": { "east": "low", "north": "none", @@ -52022,7 +60910,7 @@ } }, { - "id": 28141, + "id": 30634, "properties": { "east": "low", "north": "none", @@ -52033,7 +60921,7 @@ } }, { - "id": 28142, + "id": 30635, "properties": { "east": "low", "north": "none", @@ -52044,7 +60932,7 @@ } }, { - "id": 28143, + "id": 30636, "properties": { "east": "low", "north": "none", @@ -52055,7 +60943,7 @@ } }, { - "id": 28144, + "id": 30637, "properties": { "east": "low", "north": "none", @@ -52066,7 +60954,7 @@ } }, { - "id": 28145, + "id": 30638, "properties": { "east": "low", "north": "none", @@ -52077,7 +60965,7 @@ } }, { - "id": 28146, + "id": 30639, "properties": { "east": "low", "north": "none", @@ -52088,7 +60976,7 @@ } }, { - "id": 28147, + "id": 30640, "properties": { "east": "low", "north": "none", @@ -52099,7 +60987,7 @@ } }, { - "id": 28148, + "id": 30641, "properties": { "east": "low", "north": "none", @@ -52110,7 +60998,7 @@ } }, { - "id": 28149, + "id": 30642, "properties": { "east": "low", "north": "none", @@ -52121,7 +61009,7 @@ } }, { - "id": 28150, + "id": 30643, "properties": { "east": "low", "north": "none", @@ -52132,7 +61020,7 @@ } }, { - "id": 28151, + "id": 30644, "properties": { "east": "low", "north": "none", @@ -52143,7 +61031,7 @@ } }, { - "id": 28152, + "id": 30645, "properties": { "east": "low", "north": "none", @@ -52154,7 +61042,7 @@ } }, { - "id": 28153, + "id": 30646, "properties": { "east": "low", "north": "none", @@ -52165,7 +61053,7 @@ } }, { - "id": 28154, + "id": 30647, "properties": { "east": "low", "north": "none", @@ -52176,7 +61064,7 @@ } }, { - "id": 28155, + "id": 30648, "properties": { "east": "low", "north": "none", @@ -52187,7 +61075,7 @@ } }, { - "id": 28156, + "id": 30649, "properties": { "east": "low", "north": "none", @@ -52198,7 +61086,7 @@ } }, { - "id": 28157, + "id": 30650, "properties": { "east": "low", "north": "low", @@ -52209,7 +61097,7 @@ } }, { - "id": 28158, + "id": 30651, "properties": { "east": "low", "north": "low", @@ -52220,7 +61108,7 @@ } }, { - "id": 28159, + "id": 30652, "properties": { "east": "low", "north": "low", @@ -52231,7 +61119,7 @@ } }, { - "id": 28160, + "id": 30653, "properties": { "east": "low", "north": "low", @@ -52242,7 +61130,7 @@ } }, { - "id": 28161, + "id": 30654, "properties": { "east": "low", "north": "low", @@ -52253,7 +61141,7 @@ } }, { - "id": 28162, + "id": 30655, "properties": { "east": "low", "north": "low", @@ -52264,7 +61152,7 @@ } }, { - "id": 28163, + "id": 30656, "properties": { "east": "low", "north": "low", @@ -52275,7 +61163,7 @@ } }, { - "id": 28164, + "id": 30657, "properties": { "east": "low", "north": "low", @@ -52286,7 +61174,7 @@ } }, { - "id": 28165, + "id": 30658, "properties": { "east": "low", "north": "low", @@ -52297,7 +61185,7 @@ } }, { - "id": 28166, + "id": 30659, "properties": { "east": "low", "north": "low", @@ -52308,7 +61196,7 @@ } }, { - "id": 28167, + "id": 30660, "properties": { "east": "low", "north": "low", @@ -52319,7 +61207,7 @@ } }, { - "id": 28168, + "id": 30661, "properties": { "east": "low", "north": "low", @@ -52330,7 +61218,7 @@ } }, { - "id": 28169, + "id": 30662, "properties": { "east": "low", "north": "low", @@ -52341,7 +61229,7 @@ } }, { - "id": 28170, + "id": 30663, "properties": { "east": "low", "north": "low", @@ -52352,7 +61240,7 @@ } }, { - "id": 28171, + "id": 30664, "properties": { "east": "low", "north": "low", @@ -52363,7 +61251,7 @@ } }, { - "id": 28172, + "id": 30665, "properties": { "east": "low", "north": "low", @@ -52374,7 +61262,7 @@ } }, { - "id": 28173, + "id": 30666, "properties": { "east": "low", "north": "low", @@ -52385,7 +61273,7 @@ } }, { - "id": 28174, + "id": 30667, "properties": { "east": "low", "north": "low", @@ -52396,7 +61284,7 @@ } }, { - "id": 28175, + "id": 30668, "properties": { "east": "low", "north": "low", @@ -52407,7 +61295,7 @@ } }, { - "id": 28176, + "id": 30669, "properties": { "east": "low", "north": "low", @@ -52418,7 +61306,7 @@ } }, { - "id": 28177, + "id": 30670, "properties": { "east": "low", "north": "low", @@ -52429,7 +61317,7 @@ } }, { - "id": 28178, + "id": 30671, "properties": { "east": "low", "north": "low", @@ -52440,7 +61328,7 @@ } }, { - "id": 28179, + "id": 30672, "properties": { "east": "low", "north": "low", @@ -52451,7 +61339,7 @@ } }, { - "id": 28180, + "id": 30673, "properties": { "east": "low", "north": "low", @@ -52462,7 +61350,7 @@ } }, { - "id": 28181, + "id": 30674, "properties": { "east": "low", "north": "low", @@ -52473,7 +61361,7 @@ } }, { - "id": 28182, + "id": 30675, "properties": { "east": "low", "north": "low", @@ -52484,7 +61372,7 @@ } }, { - "id": 28183, + "id": 30676, "properties": { "east": "low", "north": "low", @@ -52495,7 +61383,7 @@ } }, { - "id": 28184, + "id": 30677, "properties": { "east": "low", "north": "low", @@ -52506,7 +61394,7 @@ } }, { - "id": 28185, + "id": 30678, "properties": { "east": "low", "north": "low", @@ -52517,7 +61405,7 @@ } }, { - "id": 28186, + "id": 30679, "properties": { "east": "low", "north": "low", @@ -52528,7 +61416,7 @@ } }, { - "id": 28187, + "id": 30680, "properties": { "east": "low", "north": "low", @@ -52539,7 +61427,7 @@ } }, { - "id": 28188, + "id": 30681, "properties": { "east": "low", "north": "low", @@ -52550,7 +61438,7 @@ } }, { - "id": 28189, + "id": 30682, "properties": { "east": "low", "north": "low", @@ -52561,7 +61449,7 @@ } }, { - "id": 28190, + "id": 30683, "properties": { "east": "low", "north": "low", @@ -52572,7 +61460,7 @@ } }, { - "id": 28191, + "id": 30684, "properties": { "east": "low", "north": "low", @@ -52583,7 +61471,7 @@ } }, { - "id": 28192, + "id": 30685, "properties": { "east": "low", "north": "low", @@ -52594,7 +61482,7 @@ } }, { - "id": 28193, + "id": 30686, "properties": { "east": "low", "north": "tall", @@ -52605,7 +61493,7 @@ } }, { - "id": 28194, + "id": 30687, "properties": { "east": "low", "north": "tall", @@ -52616,7 +61504,7 @@ } }, { - "id": 28195, + "id": 30688, "properties": { "east": "low", "north": "tall", @@ -52627,7 +61515,7 @@ } }, { - "id": 28196, + "id": 30689, "properties": { "east": "low", "north": "tall", @@ -52638,7 +61526,7 @@ } }, { - "id": 28197, + "id": 30690, "properties": { "east": "low", "north": "tall", @@ -52649,7 +61537,7 @@ } }, { - "id": 28198, + "id": 30691, "properties": { "east": "low", "north": "tall", @@ -52660,7 +61548,7 @@ } }, { - "id": 28199, + "id": 30692, "properties": { "east": "low", "north": "tall", @@ -52671,7 +61559,7 @@ } }, { - "id": 28200, + "id": 30693, "properties": { "east": "low", "north": "tall", @@ -52682,7 +61570,7 @@ } }, { - "id": 28201, + "id": 30694, "properties": { "east": "low", "north": "tall", @@ -52693,7 +61581,7 @@ } }, { - "id": 28202, + "id": 30695, "properties": { "east": "low", "north": "tall", @@ -52704,7 +61592,7 @@ } }, { - "id": 28203, + "id": 30696, "properties": { "east": "low", "north": "tall", @@ -52715,7 +61603,7 @@ } }, { - "id": 28204, + "id": 30697, "properties": { "east": "low", "north": "tall", @@ -52726,7 +61614,7 @@ } }, { - "id": 28205, + "id": 30698, "properties": { "east": "low", "north": "tall", @@ -52737,7 +61625,7 @@ } }, { - "id": 28206, + "id": 30699, "properties": { "east": "low", "north": "tall", @@ -52748,7 +61636,7 @@ } }, { - "id": 28207, + "id": 30700, "properties": { "east": "low", "north": "tall", @@ -52759,7 +61647,7 @@ } }, { - "id": 28208, + "id": 30701, "properties": { "east": "low", "north": "tall", @@ -52770,7 +61658,7 @@ } }, { - "id": 28209, + "id": 30702, "properties": { "east": "low", "north": "tall", @@ -52781,7 +61669,7 @@ } }, { - "id": 28210, + "id": 30703, "properties": { "east": "low", "north": "tall", @@ -52792,7 +61680,7 @@ } }, { - "id": 28211, + "id": 30704, "properties": { "east": "low", "north": "tall", @@ -52803,7 +61691,7 @@ } }, { - "id": 28212, + "id": 30705, "properties": { "east": "low", "north": "tall", @@ -52814,7 +61702,7 @@ } }, { - "id": 28213, + "id": 30706, "properties": { "east": "low", "north": "tall", @@ -52825,7 +61713,7 @@ } }, { - "id": 28214, + "id": 30707, "properties": { "east": "low", "north": "tall", @@ -52836,7 +61724,7 @@ } }, { - "id": 28215, + "id": 30708, "properties": { "east": "low", "north": "tall", @@ -52847,7 +61735,7 @@ } }, { - "id": 28216, + "id": 30709, "properties": { "east": "low", "north": "tall", @@ -52858,7 +61746,7 @@ } }, { - "id": 28217, + "id": 30710, "properties": { "east": "low", "north": "tall", @@ -52869,7 +61757,7 @@ } }, { - "id": 28218, + "id": 30711, "properties": { "east": "low", "north": "tall", @@ -52880,7 +61768,7 @@ } }, { - "id": 28219, + "id": 30712, "properties": { "east": "low", "north": "tall", @@ -52891,7 +61779,7 @@ } }, { - "id": 28220, + "id": 30713, "properties": { "east": "low", "north": "tall", @@ -52902,7 +61790,7 @@ } }, { - "id": 28221, + "id": 30714, "properties": { "east": "low", "north": "tall", @@ -52913,7 +61801,7 @@ } }, { - "id": 28222, + "id": 30715, "properties": { "east": "low", "north": "tall", @@ -52924,7 +61812,7 @@ } }, { - "id": 28223, + "id": 30716, "properties": { "east": "low", "north": "tall", @@ -52935,7 +61823,7 @@ } }, { - "id": 28224, + "id": 30717, "properties": { "east": "low", "north": "tall", @@ -52946,7 +61834,7 @@ } }, { - "id": 28225, + "id": 30718, "properties": { "east": "low", "north": "tall", @@ -52957,7 +61845,7 @@ } }, { - "id": 28226, + "id": 30719, "properties": { "east": "low", "north": "tall", @@ -52968,7 +61856,7 @@ } }, { - "id": 28227, + "id": 30720, "properties": { "east": "low", "north": "tall", @@ -52979,7 +61867,7 @@ } }, { - "id": 28228, + "id": 30721, "properties": { "east": "low", "north": "tall", @@ -52990,7 +61878,7 @@ } }, { - "id": 28229, + "id": 30722, "properties": { "east": "tall", "north": "none", @@ -53001,7 +61889,7 @@ } }, { - "id": 28230, + "id": 30723, "properties": { "east": "tall", "north": "none", @@ -53012,7 +61900,7 @@ } }, { - "id": 28231, + "id": 30724, "properties": { "east": "tall", "north": "none", @@ -53023,7 +61911,7 @@ } }, { - "id": 28232, + "id": 30725, "properties": { "east": "tall", "north": "none", @@ -53034,7 +61922,7 @@ } }, { - "id": 28233, + "id": 30726, "properties": { "east": "tall", "north": "none", @@ -53045,7 +61933,7 @@ } }, { - "id": 28234, + "id": 30727, "properties": { "east": "tall", "north": "none", @@ -53056,7 +61944,7 @@ } }, { - "id": 28235, + "id": 30728, "properties": { "east": "tall", "north": "none", @@ -53067,7 +61955,7 @@ } }, { - "id": 28236, + "id": 30729, "properties": { "east": "tall", "north": "none", @@ -53078,7 +61966,7 @@ } }, { - "id": 28237, + "id": 30730, "properties": { "east": "tall", "north": "none", @@ -53089,7 +61977,7 @@ } }, { - "id": 28238, + "id": 30731, "properties": { "east": "tall", "north": "none", @@ -53100,7 +61988,7 @@ } }, { - "id": 28239, + "id": 30732, "properties": { "east": "tall", "north": "none", @@ -53111,7 +61999,7 @@ } }, { - "id": 28240, + "id": 30733, "properties": { "east": "tall", "north": "none", @@ -53122,7 +62010,7 @@ } }, { - "id": 28241, + "id": 30734, "properties": { "east": "tall", "north": "none", @@ -53133,7 +62021,7 @@ } }, { - "id": 28242, + "id": 30735, "properties": { "east": "tall", "north": "none", @@ -53144,7 +62032,7 @@ } }, { - "id": 28243, + "id": 30736, "properties": { "east": "tall", "north": "none", @@ -53155,7 +62043,7 @@ } }, { - "id": 28244, + "id": 30737, "properties": { "east": "tall", "north": "none", @@ -53166,7 +62054,7 @@ } }, { - "id": 28245, + "id": 30738, "properties": { "east": "tall", "north": "none", @@ -53177,7 +62065,7 @@ } }, { - "id": 28246, + "id": 30739, "properties": { "east": "tall", "north": "none", @@ -53188,7 +62076,7 @@ } }, { - "id": 28247, + "id": 30740, "properties": { "east": "tall", "north": "none", @@ -53199,7 +62087,7 @@ } }, { - "id": 28248, + "id": 30741, "properties": { "east": "tall", "north": "none", @@ -53210,7 +62098,7 @@ } }, { - "id": 28249, + "id": 30742, "properties": { "east": "tall", "north": "none", @@ -53221,7 +62109,7 @@ } }, { - "id": 28250, + "id": 30743, "properties": { "east": "tall", "north": "none", @@ -53232,7 +62120,7 @@ } }, { - "id": 28251, + "id": 30744, "properties": { "east": "tall", "north": "none", @@ -53243,7 +62131,7 @@ } }, { - "id": 28252, + "id": 30745, "properties": { "east": "tall", "north": "none", @@ -53254,7 +62142,7 @@ } }, { - "id": 28253, + "id": 30746, "properties": { "east": "tall", "north": "none", @@ -53265,7 +62153,7 @@ } }, { - "id": 28254, + "id": 30747, "properties": { "east": "tall", "north": "none", @@ -53276,7 +62164,7 @@ } }, { - "id": 28255, + "id": 30748, "properties": { "east": "tall", "north": "none", @@ -53287,7 +62175,7 @@ } }, { - "id": 28256, + "id": 30749, "properties": { "east": "tall", "north": "none", @@ -53298,7 +62186,7 @@ } }, { - "id": 28257, + "id": 30750, "properties": { "east": "tall", "north": "none", @@ -53309,7 +62197,7 @@ } }, { - "id": 28258, + "id": 30751, "properties": { "east": "tall", "north": "none", @@ -53320,7 +62208,7 @@ } }, { - "id": 28259, + "id": 30752, "properties": { "east": "tall", "north": "none", @@ -53331,7 +62219,7 @@ } }, { - "id": 28260, + "id": 30753, "properties": { "east": "tall", "north": "none", @@ -53342,7 +62230,7 @@ } }, { - "id": 28261, + "id": 30754, "properties": { "east": "tall", "north": "none", @@ -53353,7 +62241,7 @@ } }, { - "id": 28262, + "id": 30755, "properties": { "east": "tall", "north": "none", @@ -53364,7 +62252,7 @@ } }, { - "id": 28263, + "id": 30756, "properties": { "east": "tall", "north": "none", @@ -53375,7 +62263,7 @@ } }, { - "id": 28264, + "id": 30757, "properties": { "east": "tall", "north": "none", @@ -53386,7 +62274,7 @@ } }, { - "id": 28265, + "id": 30758, "properties": { "east": "tall", "north": "low", @@ -53397,7 +62285,7 @@ } }, { - "id": 28266, + "id": 30759, "properties": { "east": "tall", "north": "low", @@ -53408,7 +62296,7 @@ } }, { - "id": 28267, + "id": 30760, "properties": { "east": "tall", "north": "low", @@ -53419,7 +62307,7 @@ } }, { - "id": 28268, + "id": 30761, "properties": { "east": "tall", "north": "low", @@ -53430,7 +62318,7 @@ } }, { - "id": 28269, + "id": 30762, "properties": { "east": "tall", "north": "low", @@ -53441,7 +62329,7 @@ } }, { - "id": 28270, + "id": 30763, "properties": { "east": "tall", "north": "low", @@ -53452,7 +62340,7 @@ } }, { - "id": 28271, + "id": 30764, "properties": { "east": "tall", "north": "low", @@ -53463,7 +62351,7 @@ } }, { - "id": 28272, + "id": 30765, "properties": { "east": "tall", "north": "low", @@ -53474,7 +62362,7 @@ } }, { - "id": 28273, + "id": 30766, "properties": { "east": "tall", "north": "low", @@ -53485,7 +62373,7 @@ } }, { - "id": 28274, + "id": 30767, "properties": { "east": "tall", "north": "low", @@ -53496,7 +62384,7 @@ } }, { - "id": 28275, + "id": 30768, "properties": { "east": "tall", "north": "low", @@ -53507,7 +62395,7 @@ } }, { - "id": 28276, + "id": 30769, "properties": { "east": "tall", "north": "low", @@ -53518,7 +62406,7 @@ } }, { - "id": 28277, + "id": 30770, "properties": { "east": "tall", "north": "low", @@ -53529,7 +62417,7 @@ } }, { - "id": 28278, + "id": 30771, "properties": { "east": "tall", "north": "low", @@ -53540,7 +62428,7 @@ } }, { - "id": 28279, + "id": 30772, "properties": { "east": "tall", "north": "low", @@ -53551,7 +62439,7 @@ } }, { - "id": 28280, + "id": 30773, "properties": { "east": "tall", "north": "low", @@ -53562,7 +62450,7 @@ } }, { - "id": 28281, + "id": 30774, "properties": { "east": "tall", "north": "low", @@ -53573,7 +62461,7 @@ } }, { - "id": 28282, + "id": 30775, "properties": { "east": "tall", "north": "low", @@ -53584,7 +62472,7 @@ } }, { - "id": 28283, + "id": 30776, "properties": { "east": "tall", "north": "low", @@ -53595,7 +62483,7 @@ } }, { - "id": 28284, + "id": 30777, "properties": { "east": "tall", "north": "low", @@ -53606,7 +62494,7 @@ } }, { - "id": 28285, + "id": 30778, "properties": { "east": "tall", "north": "low", @@ -53617,7 +62505,7 @@ } }, { - "id": 28286, + "id": 30779, "properties": { "east": "tall", "north": "low", @@ -53628,7 +62516,7 @@ } }, { - "id": 28287, + "id": 30780, "properties": { "east": "tall", "north": "low", @@ -53639,7 +62527,7 @@ } }, { - "id": 28288, + "id": 30781, "properties": { "east": "tall", "north": "low", @@ -53650,7 +62538,7 @@ } }, { - "id": 28289, + "id": 30782, "properties": { "east": "tall", "north": "low", @@ -53661,7 +62549,7 @@ } }, { - "id": 28290, + "id": 30783, "properties": { "east": "tall", "north": "low", @@ -53672,7 +62560,7 @@ } }, { - "id": 28291, + "id": 30784, "properties": { "east": "tall", "north": "low", @@ -53683,7 +62571,7 @@ } }, { - "id": 28292, + "id": 30785, "properties": { "east": "tall", "north": "low", @@ -53694,7 +62582,7 @@ } }, { - "id": 28293, + "id": 30786, "properties": { "east": "tall", "north": "low", @@ -53705,7 +62593,7 @@ } }, { - "id": 28294, + "id": 30787, "properties": { "east": "tall", "north": "low", @@ -53716,7 +62604,7 @@ } }, { - "id": 28295, + "id": 30788, "properties": { "east": "tall", "north": "low", @@ -53727,7 +62615,7 @@ } }, { - "id": 28296, + "id": 30789, "properties": { "east": "tall", "north": "low", @@ -53738,7 +62626,7 @@ } }, { - "id": 28297, + "id": 30790, "properties": { "east": "tall", "north": "low", @@ -53749,7 +62637,7 @@ } }, { - "id": 28298, + "id": 30791, "properties": { "east": "tall", "north": "low", @@ -53760,7 +62648,7 @@ } }, { - "id": 28299, + "id": 30792, "properties": { "east": "tall", "north": "low", @@ -53771,7 +62659,7 @@ } }, { - "id": 28300, + "id": 30793, "properties": { "east": "tall", "north": "low", @@ -53782,7 +62670,7 @@ } }, { - "id": 28301, + "id": 30794, "properties": { "east": "tall", "north": "tall", @@ -53793,7 +62681,7 @@ } }, { - "id": 28302, + "id": 30795, "properties": { "east": "tall", "north": "tall", @@ -53804,7 +62692,7 @@ } }, { - "id": 28303, + "id": 30796, "properties": { "east": "tall", "north": "tall", @@ -53815,7 +62703,7 @@ } }, { - "id": 28304, + "id": 30797, "properties": { "east": "tall", "north": "tall", @@ -53826,7 +62714,7 @@ } }, { - "id": 28305, + "id": 30798, "properties": { "east": "tall", "north": "tall", @@ -53837,7 +62725,7 @@ } }, { - "id": 28306, + "id": 30799, "properties": { "east": "tall", "north": "tall", @@ -53848,7 +62736,7 @@ } }, { - "id": 28307, + "id": 30800, "properties": { "east": "tall", "north": "tall", @@ -53859,7 +62747,7 @@ } }, { - "id": 28308, + "id": 30801, "properties": { "east": "tall", "north": "tall", @@ -53870,7 +62758,7 @@ } }, { - "id": 28309, + "id": 30802, "properties": { "east": "tall", "north": "tall", @@ -53881,7 +62769,7 @@ } }, { - "id": 28310, + "id": 30803, "properties": { "east": "tall", "north": "tall", @@ -53892,7 +62780,7 @@ } }, { - "id": 28311, + "id": 30804, "properties": { "east": "tall", "north": "tall", @@ -53903,7 +62791,7 @@ } }, { - "id": 28312, + "id": 30805, "properties": { "east": "tall", "north": "tall", @@ -53914,7 +62802,7 @@ } }, { - "id": 28313, + "id": 30806, "properties": { "east": "tall", "north": "tall", @@ -53925,7 +62813,7 @@ } }, { - "id": 28314, + "id": 30807, "properties": { "east": "tall", "north": "tall", @@ -53936,7 +62824,7 @@ } }, { - "id": 28315, + "id": 30808, "properties": { "east": "tall", "north": "tall", @@ -53947,7 +62835,7 @@ } }, { - "id": 28316, + "id": 30809, "properties": { "east": "tall", "north": "tall", @@ -53958,7 +62846,7 @@ } }, { - "id": 28317, + "id": 30810, "properties": { "east": "tall", "north": "tall", @@ -53969,7 +62857,7 @@ } }, { - "id": 28318, + "id": 30811, "properties": { "east": "tall", "north": "tall", @@ -53980,7 +62868,7 @@ } }, { - "id": 28319, + "id": 30812, "properties": { "east": "tall", "north": "tall", @@ -53991,7 +62879,7 @@ } }, { - "id": 28320, + "id": 30813, "properties": { "east": "tall", "north": "tall", @@ -54002,7 +62890,7 @@ } }, { - "id": 28321, + "id": 30814, "properties": { "east": "tall", "north": "tall", @@ -54013,7 +62901,7 @@ } }, { - "id": 28322, + "id": 30815, "properties": { "east": "tall", "north": "tall", @@ -54024,7 +62912,7 @@ } }, { - "id": 28323, + "id": 30816, "properties": { "east": "tall", "north": "tall", @@ -54035,7 +62923,7 @@ } }, { - "id": 28324, + "id": 30817, "properties": { "east": "tall", "north": "tall", @@ -54046,7 +62934,7 @@ } }, { - "id": 28325, + "id": 30818, "properties": { "east": "tall", "north": "tall", @@ -54057,7 +62945,7 @@ } }, { - "id": 28326, + "id": 30819, "properties": { "east": "tall", "north": "tall", @@ -54068,7 +62956,7 @@ } }, { - "id": 28327, + "id": 30820, "properties": { "east": "tall", "north": "tall", @@ -54079,7 +62967,7 @@ } }, { - "id": 28328, + "id": 30821, "properties": { "east": "tall", "north": "tall", @@ -54090,7 +62978,7 @@ } }, { - "id": 28329, + "id": 30822, "properties": { "east": "tall", "north": "tall", @@ -54101,7 +62989,7 @@ } }, { - "id": 28330, + "id": 30823, "properties": { "east": "tall", "north": "tall", @@ -54112,7 +63000,7 @@ } }, { - "id": 28331, + "id": 30824, "properties": { "east": "tall", "north": "tall", @@ -54123,7 +63011,7 @@ } }, { - "id": 28332, + "id": 30825, "properties": { "east": "tall", "north": "tall", @@ -54134,7 +63022,7 @@ } }, { - "id": 28333, + "id": 30826, "properties": { "east": "tall", "north": "tall", @@ -54145,7 +63033,7 @@ } }, { - "id": 28334, + "id": 30827, "properties": { "east": "tall", "north": "tall", @@ -54156,7 +63044,7 @@ } }, { - "id": 28335, + "id": 30828, "properties": { "east": "tall", "north": "tall", @@ -54167,7 +63055,7 @@ } }, { - "id": 28336, + "id": 30829, "properties": { "east": "tall", "north": "tall", @@ -59454,7 +68342,7 @@ "states": [ { "default": true, - "id": 25309 + "id": 27782 } ] }, @@ -59476,21 +68364,21 @@ }, "states": [ { - "id": 27063, + "id": 29536, "properties": { "lit": "true", "powered": "true" } }, { - "id": 27064, + "id": 29537, "properties": { "lit": "true", "powered": "false" } }, { - "id": 27065, + "id": 29538, "properties": { "lit": "false", "powered": "true" @@ -59498,7 +68386,7 @@ }, { "default": true, - "id": 27066, + "id": 29539, "properties": { "lit": "false", "powered": "false" @@ -59596,7 +68484,7 @@ }, "states": [ { - "id": 27095, + "id": 29568, "properties": { "type": "single", "facing": "north", @@ -59605,7 +68493,7 @@ }, { "default": true, - "id": 27096, + "id": 29569, "properties": { "type": "single", "facing": "north", @@ -59613,7 +68501,7 @@ } }, { - "id": 27097, + "id": 29570, "properties": { "type": "left", "facing": "north", @@ -59621,7 +68509,7 @@ } }, { - "id": 27098, + "id": 29571, "properties": { "type": "left", "facing": "north", @@ -59629,7 +68517,7 @@ } }, { - "id": 27099, + "id": 29572, "properties": { "type": "right", "facing": "north", @@ -59637,7 +68525,7 @@ } }, { - "id": 27100, + "id": 29573, "properties": { "type": "right", "facing": "north", @@ -59645,7 +68533,7 @@ } }, { - "id": 27101, + "id": 29574, "properties": { "type": "single", "facing": "south", @@ -59653,7 +68541,7 @@ } }, { - "id": 27102, + "id": 29575, "properties": { "type": "single", "facing": "south", @@ -59661,7 +68549,7 @@ } }, { - "id": 27103, + "id": 29576, "properties": { "type": "left", "facing": "south", @@ -59669,7 +68557,7 @@ } }, { - "id": 27104, + "id": 29577, "properties": { "type": "left", "facing": "south", @@ -59677,7 +68565,7 @@ } }, { - "id": 27105, + "id": 29578, "properties": { "type": "right", "facing": "south", @@ -59685,7 +68573,7 @@ } }, { - "id": 27106, + "id": 29579, "properties": { "type": "right", "facing": "south", @@ -59693,7 +68581,7 @@ } }, { - "id": 27107, + "id": 29580, "properties": { "type": "single", "facing": "west", @@ -59701,7 +68589,7 @@ } }, { - "id": 27108, + "id": 29581, "properties": { "type": "single", "facing": "west", @@ -59709,7 +68597,7 @@ } }, { - "id": 27109, + "id": 29582, "properties": { "type": "left", "facing": "west", @@ -59717,7 +68605,7 @@ } }, { - "id": 27110, + "id": 29583, "properties": { "type": "left", "facing": "west", @@ -59725,7 +68613,7 @@ } }, { - "id": 27111, + "id": 29584, "properties": { "type": "right", "facing": "west", @@ -59733,7 +68621,7 @@ } }, { - "id": 27112, + "id": 29585, "properties": { "type": "right", "facing": "west", @@ -59741,7 +68629,7 @@ } }, { - "id": 27113, + "id": 29586, "properties": { "type": "single", "facing": "east", @@ -59749,7 +68637,7 @@ } }, { - "id": 27114, + "id": 29587, "properties": { "type": "single", "facing": "east", @@ -59757,7 +68645,7 @@ } }, { - "id": 27115, + "id": 29588, "properties": { "type": "left", "facing": "east", @@ -59765,7 +68653,7 @@ } }, { - "id": 27116, + "id": 29589, "properties": { "type": "left", "facing": "east", @@ -59773,7 +68661,7 @@ } }, { - "id": 27117, + "id": 29590, "properties": { "type": "right", "facing": "east", @@ -59781,7 +68669,7 @@ } }, { - "id": 27118, + "id": 29591, "properties": { "type": "right", "facing": "east", @@ -59823,7 +68711,7 @@ }, "states": [ { - "id": 26023, + "id": 28496, "properties": { "facing": "north", "half": "upper", @@ -59833,7 +68721,7 @@ } }, { - "id": 26024, + "id": 28497, "properties": { "facing": "north", "half": "upper", @@ -59843,7 +68731,7 @@ } }, { - "id": 26025, + "id": 28498, "properties": { "facing": "north", "half": "upper", @@ -59853,7 +68741,7 @@ } }, { - "id": 26026, + "id": 28499, "properties": { "facing": "north", "half": "upper", @@ -59863,7 +68751,7 @@ } }, { - "id": 26027, + "id": 28500, "properties": { "facing": "north", "half": "upper", @@ -59873,7 +68761,7 @@ } }, { - "id": 26028, + "id": 28501, "properties": { "facing": "north", "half": "upper", @@ -59883,7 +68771,7 @@ } }, { - "id": 26029, + "id": 28502, "properties": { "facing": "north", "half": "upper", @@ -59893,7 +68781,7 @@ } }, { - "id": 26030, + "id": 28503, "properties": { "facing": "north", "half": "upper", @@ -59903,7 +68791,7 @@ } }, { - "id": 26031, + "id": 28504, "properties": { "facing": "north", "half": "lower", @@ -59913,7 +68801,7 @@ } }, { - "id": 26032, + "id": 28505, "properties": { "facing": "north", "half": "lower", @@ -59923,7 +68811,7 @@ } }, { - "id": 26033, + "id": 28506, "properties": { "facing": "north", "half": "lower", @@ -59934,7 +68822,7 @@ }, { "default": true, - "id": 26034, + "id": 28507, "properties": { "facing": "north", "half": "lower", @@ -59944,7 +68832,7 @@ } }, { - "id": 26035, + "id": 28508, "properties": { "facing": "north", "half": "lower", @@ -59954,7 +68842,7 @@ } }, { - "id": 26036, + "id": 28509, "properties": { "facing": "north", "half": "lower", @@ -59964,7 +68852,7 @@ } }, { - "id": 26037, + "id": 28510, "properties": { "facing": "north", "half": "lower", @@ -59974,7 +68862,7 @@ } }, { - "id": 26038, + "id": 28511, "properties": { "facing": "north", "half": "lower", @@ -59984,7 +68872,7 @@ } }, { - "id": 26039, + "id": 28512, "properties": { "facing": "south", "half": "upper", @@ -59994,7 +68882,7 @@ } }, { - "id": 26040, + "id": 28513, "properties": { "facing": "south", "half": "upper", @@ -60004,7 +68892,7 @@ } }, { - "id": 26041, + "id": 28514, "properties": { "facing": "south", "half": "upper", @@ -60014,7 +68902,7 @@ } }, { - "id": 26042, + "id": 28515, "properties": { "facing": "south", "half": "upper", @@ -60024,7 +68912,7 @@ } }, { - "id": 26043, + "id": 28516, "properties": { "facing": "south", "half": "upper", @@ -60034,7 +68922,7 @@ } }, { - "id": 26044, + "id": 28517, "properties": { "facing": "south", "half": "upper", @@ -60044,7 +68932,7 @@ } }, { - "id": 26045, + "id": 28518, "properties": { "facing": "south", "half": "upper", @@ -60054,7 +68942,7 @@ } }, { - "id": 26046, + "id": 28519, "properties": { "facing": "south", "half": "upper", @@ -60064,7 +68952,7 @@ } }, { - "id": 26047, + "id": 28520, "properties": { "facing": "south", "half": "lower", @@ -60074,7 +68962,7 @@ } }, { - "id": 26048, + "id": 28521, "properties": { "facing": "south", "half": "lower", @@ -60084,7 +68972,7 @@ } }, { - "id": 26049, + "id": 28522, "properties": { "facing": "south", "half": "lower", @@ -60094,7 +68982,7 @@ } }, { - "id": 26050, + "id": 28523, "properties": { "facing": "south", "half": "lower", @@ -60104,7 +68992,7 @@ } }, { - "id": 26051, + "id": 28524, "properties": { "facing": "south", "half": "lower", @@ -60114,7 +69002,7 @@ } }, { - "id": 26052, + "id": 28525, "properties": { "facing": "south", "half": "lower", @@ -60124,7 +69012,7 @@ } }, { - "id": 26053, + "id": 28526, "properties": { "facing": "south", "half": "lower", @@ -60134,7 +69022,7 @@ } }, { - "id": 26054, + "id": 28527, "properties": { "facing": "south", "half": "lower", @@ -60144,7 +69032,7 @@ } }, { - "id": 26055, + "id": 28528, "properties": { "facing": "west", "half": "upper", @@ -60154,7 +69042,7 @@ } }, { - "id": 26056, + "id": 28529, "properties": { "facing": "west", "half": "upper", @@ -60164,7 +69052,7 @@ } }, { - "id": 26057, + "id": 28530, "properties": { "facing": "west", "half": "upper", @@ -60174,7 +69062,7 @@ } }, { - "id": 26058, + "id": 28531, "properties": { "facing": "west", "half": "upper", @@ -60184,7 +69072,7 @@ } }, { - "id": 26059, + "id": 28532, "properties": { "facing": "west", "half": "upper", @@ -60194,7 +69082,7 @@ } }, { - "id": 26060, + "id": 28533, "properties": { "facing": "west", "half": "upper", @@ -60204,7 +69092,7 @@ } }, { - "id": 26061, + "id": 28534, "properties": { "facing": "west", "half": "upper", @@ -60214,7 +69102,7 @@ } }, { - "id": 26062, + "id": 28535, "properties": { "facing": "west", "half": "upper", @@ -60224,7 +69112,7 @@ } }, { - "id": 26063, + "id": 28536, "properties": { "facing": "west", "half": "lower", @@ -60234,7 +69122,7 @@ } }, { - "id": 26064, + "id": 28537, "properties": { "facing": "west", "half": "lower", @@ -60244,7 +69132,7 @@ } }, { - "id": 26065, + "id": 28538, "properties": { "facing": "west", "half": "lower", @@ -60254,7 +69142,7 @@ } }, { - "id": 26066, + "id": 28539, "properties": { "facing": "west", "half": "lower", @@ -60264,7 +69152,7 @@ } }, { - "id": 26067, + "id": 28540, "properties": { "facing": "west", "half": "lower", @@ -60274,7 +69162,7 @@ } }, { - "id": 26068, + "id": 28541, "properties": { "facing": "west", "half": "lower", @@ -60284,7 +69172,7 @@ } }, { - "id": 26069, + "id": 28542, "properties": { "facing": "west", "half": "lower", @@ -60294,7 +69182,7 @@ } }, { - "id": 26070, + "id": 28543, "properties": { "facing": "west", "half": "lower", @@ -60304,7 +69192,7 @@ } }, { - "id": 26071, + "id": 28544, "properties": { "facing": "east", "half": "upper", @@ -60314,7 +69202,7 @@ } }, { - "id": 26072, + "id": 28545, "properties": { "facing": "east", "half": "upper", @@ -60324,7 +69212,7 @@ } }, { - "id": 26073, + "id": 28546, "properties": { "facing": "east", "half": "upper", @@ -60334,7 +69222,7 @@ } }, { - "id": 26074, + "id": 28547, "properties": { "facing": "east", "half": "upper", @@ -60344,7 +69232,7 @@ } }, { - "id": 26075, + "id": 28548, "properties": { "facing": "east", "half": "upper", @@ -60354,7 +69242,7 @@ } }, { - "id": 26076, + "id": 28549, "properties": { "facing": "east", "half": "upper", @@ -60364,7 +69252,7 @@ } }, { - "id": 26077, + "id": 28550, "properties": { "facing": "east", "half": "upper", @@ -60374,7 +69262,7 @@ } }, { - "id": 26078, + "id": 28551, "properties": { "facing": "east", "half": "upper", @@ -60384,7 +69272,7 @@ } }, { - "id": 26079, + "id": 28552, "properties": { "facing": "east", "half": "lower", @@ -60394,7 +69282,7 @@ } }, { - "id": 26080, + "id": 28553, "properties": { "facing": "east", "half": "lower", @@ -60404,7 +69292,7 @@ } }, { - "id": 26081, + "id": 28554, "properties": { "facing": "east", "half": "lower", @@ -60414,7 +69302,7 @@ } }, { - "id": 26082, + "id": 28555, "properties": { "facing": "east", "half": "lower", @@ -60424,7 +69312,7 @@ } }, { - "id": 26083, + "id": 28556, "properties": { "facing": "east", "half": "lower", @@ -60434,7 +69322,7 @@ } }, { - "id": 26084, + "id": 28557, "properties": { "facing": "east", "half": "lower", @@ -60444,7 +69332,7 @@ } }, { - "id": 26085, + "id": 28558, "properties": { "facing": "east", "half": "lower", @@ -60454,7 +69342,7 @@ } }, { - "id": 26086, + "id": 28559, "properties": { "facing": "east", "half": "lower", @@ -60491,7 +69379,7 @@ }, "states": [ { - "id": 27287, + "id": 29760, "properties": { "copper_golem_pose": "standing", "facing": "north", @@ -60500,7 +69388,7 @@ }, { "default": true, - "id": 27288, + "id": 29761, "properties": { "copper_golem_pose": "standing", "facing": "north", @@ -60508,7 +69396,7 @@ } }, { - "id": 27289, + "id": 29762, "properties": { "copper_golem_pose": "standing", "facing": "south", @@ -60516,7 +69404,7 @@ } }, { - "id": 27290, + "id": 29763, "properties": { "copper_golem_pose": "standing", "facing": "south", @@ -60524,7 +69412,7 @@ } }, { - "id": 27291, + "id": 29764, "properties": { "copper_golem_pose": "standing", "facing": "west", @@ -60532,7 +69420,7 @@ } }, { - "id": 27292, + "id": 29765, "properties": { "copper_golem_pose": "standing", "facing": "west", @@ -60540,7 +69428,7 @@ } }, { - "id": 27293, + "id": 29766, "properties": { "copper_golem_pose": "standing", "facing": "east", @@ -60548,7 +69436,7 @@ } }, { - "id": 27294, + "id": 29767, "properties": { "copper_golem_pose": "standing", "facing": "east", @@ -60556,7 +69444,7 @@ } }, { - "id": 27295, + "id": 29768, "properties": { "copper_golem_pose": "sitting", "facing": "north", @@ -60564,7 +69452,7 @@ } }, { - "id": 27296, + "id": 29769, "properties": { "copper_golem_pose": "sitting", "facing": "north", @@ -60572,7 +69460,7 @@ } }, { - "id": 27297, + "id": 29770, "properties": { "copper_golem_pose": "sitting", "facing": "south", @@ -60580,7 +69468,7 @@ } }, { - "id": 27298, + "id": 29771, "properties": { "copper_golem_pose": "sitting", "facing": "south", @@ -60588,7 +69476,7 @@ } }, { - "id": 27299, + "id": 29772, "properties": { "copper_golem_pose": "sitting", "facing": "west", @@ -60596,7 +69484,7 @@ } }, { - "id": 27300, + "id": 29773, "properties": { "copper_golem_pose": "sitting", "facing": "west", @@ -60604,7 +69492,7 @@ } }, { - "id": 27301, + "id": 29774, "properties": { "copper_golem_pose": "sitting", "facing": "east", @@ -60612,7 +69500,7 @@ } }, { - "id": 27302, + "id": 29775, "properties": { "copper_golem_pose": "sitting", "facing": "east", @@ -60620,7 +69508,7 @@ } }, { - "id": 27303, + "id": 29776, "properties": { "copper_golem_pose": "running", "facing": "north", @@ -60628,7 +69516,7 @@ } }, { - "id": 27304, + "id": 29777, "properties": { "copper_golem_pose": "running", "facing": "north", @@ -60636,7 +69524,7 @@ } }, { - "id": 27305, + "id": 29778, "properties": { "copper_golem_pose": "running", "facing": "south", @@ -60644,7 +69532,7 @@ } }, { - "id": 27306, + "id": 29779, "properties": { "copper_golem_pose": "running", "facing": "south", @@ -60652,7 +69540,7 @@ } }, { - "id": 27307, + "id": 29780, "properties": { "copper_golem_pose": "running", "facing": "west", @@ -60660,7 +69548,7 @@ } }, { - "id": 27308, + "id": 29781, "properties": { "copper_golem_pose": "running", "facing": "west", @@ -60668,7 +69556,7 @@ } }, { - "id": 27309, + "id": 29782, "properties": { "copper_golem_pose": "running", "facing": "east", @@ -60676,7 +69564,7 @@ } }, { - "id": 27310, + "id": 29783, "properties": { "copper_golem_pose": "running", "facing": "east", @@ -60684,7 +69572,7 @@ } }, { - "id": 27311, + "id": 29784, "properties": { "copper_golem_pose": "star", "facing": "north", @@ -60692,7 +69580,7 @@ } }, { - "id": 27312, + "id": 29785, "properties": { "copper_golem_pose": "star", "facing": "north", @@ -60700,7 +69588,7 @@ } }, { - "id": 27313, + "id": 29786, "properties": { "copper_golem_pose": "star", "facing": "south", @@ -60708,7 +69596,7 @@ } }, { - "id": 27314, + "id": 29787, "properties": { "copper_golem_pose": "star", "facing": "south", @@ -60716,7 +69604,7 @@ } }, { - "id": 27315, + "id": 29788, "properties": { "copper_golem_pose": "star", "facing": "west", @@ -60724,7 +69612,7 @@ } }, { - "id": 27316, + "id": 29789, "properties": { "copper_golem_pose": "star", "facing": "west", @@ -60732,7 +69620,7 @@ } }, { - "id": 27317, + "id": 29790, "properties": { "copper_golem_pose": "star", "facing": "east", @@ -60740,7 +69628,7 @@ } }, { - "id": 27318, + "id": 29791, "properties": { "copper_golem_pose": "star", "facing": "east", @@ -60763,14 +69651,14 @@ }, "states": [ { - "id": 27047, + "id": 29520, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 27048, + "id": 29521, "properties": { "waterlogged": "false" } @@ -60834,7 +69722,7 @@ "states": [ { "default": true, - "id": 25313 + "id": 27790 } ] }, @@ -60853,7 +69741,7 @@ }, "minecraft:copper_trapdoor": { "definition": { - "type": "minecraft:weathering_copper_trap_door", + "type": "minecraft:weathering_copper_trapdoor", "block_set_type": "copper", "properties": {}, "weathering_state": "unaffected" @@ -60884,7 +69772,7 @@ }, "states": [ { - "id": 26535, + "id": 29008, "properties": { "facing": "north", "half": "top", @@ -60894,7 +69782,7 @@ } }, { - "id": 26536, + "id": 29009, "properties": { "facing": "north", "half": "top", @@ -60904,7 +69792,7 @@ } }, { - "id": 26537, + "id": 29010, "properties": { "facing": "north", "half": "top", @@ -60914,7 +69802,7 @@ } }, { - "id": 26538, + "id": 29011, "properties": { "facing": "north", "half": "top", @@ -60924,7 +69812,7 @@ } }, { - "id": 26539, + "id": 29012, "properties": { "facing": "north", "half": "top", @@ -60934,7 +69822,7 @@ } }, { - "id": 26540, + "id": 29013, "properties": { "facing": "north", "half": "top", @@ -60944,7 +69832,7 @@ } }, { - "id": 26541, + "id": 29014, "properties": { "facing": "north", "half": "top", @@ -60954,7 +69842,7 @@ } }, { - "id": 26542, + "id": 29015, "properties": { "facing": "north", "half": "top", @@ -60964,7 +69852,7 @@ } }, { - "id": 26543, + "id": 29016, "properties": { "facing": "north", "half": "bottom", @@ -60974,7 +69862,7 @@ } }, { - "id": 26544, + "id": 29017, "properties": { "facing": "north", "half": "bottom", @@ -60984,7 +69872,7 @@ } }, { - "id": 26545, + "id": 29018, "properties": { "facing": "north", "half": "bottom", @@ -60994,7 +69882,7 @@ } }, { - "id": 26546, + "id": 29019, "properties": { "facing": "north", "half": "bottom", @@ -61004,7 +69892,7 @@ } }, { - "id": 26547, + "id": 29020, "properties": { "facing": "north", "half": "bottom", @@ -61014,7 +69902,7 @@ } }, { - "id": 26548, + "id": 29021, "properties": { "facing": "north", "half": "bottom", @@ -61024,7 +69912,7 @@ } }, { - "id": 26549, + "id": 29022, "properties": { "facing": "north", "half": "bottom", @@ -61035,7 +69923,7 @@ }, { "default": true, - "id": 26550, + "id": 29023, "properties": { "facing": "north", "half": "bottom", @@ -61045,7 +69933,7 @@ } }, { - "id": 26551, + "id": 29024, "properties": { "facing": "south", "half": "top", @@ -61055,7 +69943,7 @@ } }, { - "id": 26552, + "id": 29025, "properties": { "facing": "south", "half": "top", @@ -61065,7 +69953,7 @@ } }, { - "id": 26553, + "id": 29026, "properties": { "facing": "south", "half": "top", @@ -61075,7 +69963,7 @@ } }, { - "id": 26554, + "id": 29027, "properties": { "facing": "south", "half": "top", @@ -61085,7 +69973,7 @@ } }, { - "id": 26555, + "id": 29028, "properties": { "facing": "south", "half": "top", @@ -61095,7 +69983,7 @@ } }, { - "id": 26556, + "id": 29029, "properties": { "facing": "south", "half": "top", @@ -61105,7 +69993,7 @@ } }, { - "id": 26557, + "id": 29030, "properties": { "facing": "south", "half": "top", @@ -61115,7 +70003,7 @@ } }, { - "id": 26558, + "id": 29031, "properties": { "facing": "south", "half": "top", @@ -61125,7 +70013,7 @@ } }, { - "id": 26559, + "id": 29032, "properties": { "facing": "south", "half": "bottom", @@ -61135,7 +70023,7 @@ } }, { - "id": 26560, + "id": 29033, "properties": { "facing": "south", "half": "bottom", @@ -61145,7 +70033,7 @@ } }, { - "id": 26561, + "id": 29034, "properties": { "facing": "south", "half": "bottom", @@ -61155,7 +70043,7 @@ } }, { - "id": 26562, + "id": 29035, "properties": { "facing": "south", "half": "bottom", @@ -61165,7 +70053,7 @@ } }, { - "id": 26563, + "id": 29036, "properties": { "facing": "south", "half": "bottom", @@ -61175,7 +70063,7 @@ } }, { - "id": 26564, + "id": 29037, "properties": { "facing": "south", "half": "bottom", @@ -61185,7 +70073,7 @@ } }, { - "id": 26565, + "id": 29038, "properties": { "facing": "south", "half": "bottom", @@ -61195,7 +70083,7 @@ } }, { - "id": 26566, + "id": 29039, "properties": { "facing": "south", "half": "bottom", @@ -61205,7 +70093,7 @@ } }, { - "id": 26567, + "id": 29040, "properties": { "facing": "west", "half": "top", @@ -61215,7 +70103,7 @@ } }, { - "id": 26568, + "id": 29041, "properties": { "facing": "west", "half": "top", @@ -61225,7 +70113,7 @@ } }, { - "id": 26569, + "id": 29042, "properties": { "facing": "west", "half": "top", @@ -61235,7 +70123,7 @@ } }, { - "id": 26570, + "id": 29043, "properties": { "facing": "west", "half": "top", @@ -61245,7 +70133,7 @@ } }, { - "id": 26571, + "id": 29044, "properties": { "facing": "west", "half": "top", @@ -61255,7 +70143,7 @@ } }, { - "id": 26572, + "id": 29045, "properties": { "facing": "west", "half": "top", @@ -61265,7 +70153,7 @@ } }, { - "id": 26573, + "id": 29046, "properties": { "facing": "west", "half": "top", @@ -61275,7 +70163,7 @@ } }, { - "id": 26574, + "id": 29047, "properties": { "facing": "west", "half": "top", @@ -61285,7 +70173,7 @@ } }, { - "id": 26575, + "id": 29048, "properties": { "facing": "west", "half": "bottom", @@ -61295,7 +70183,7 @@ } }, { - "id": 26576, + "id": 29049, "properties": { "facing": "west", "half": "bottom", @@ -61305,7 +70193,7 @@ } }, { - "id": 26577, + "id": 29050, "properties": { "facing": "west", "half": "bottom", @@ -61315,7 +70203,7 @@ } }, { - "id": 26578, + "id": 29051, "properties": { "facing": "west", "half": "bottom", @@ -61325,7 +70213,7 @@ } }, { - "id": 26579, + "id": 29052, "properties": { "facing": "west", "half": "bottom", @@ -61335,7 +70223,7 @@ } }, { - "id": 26580, + "id": 29053, "properties": { "facing": "west", "half": "bottom", @@ -61345,7 +70233,7 @@ } }, { - "id": 26581, + "id": 29054, "properties": { "facing": "west", "half": "bottom", @@ -61355,7 +70243,7 @@ } }, { - "id": 26582, + "id": 29055, "properties": { "facing": "west", "half": "bottom", @@ -61365,7 +70253,7 @@ } }, { - "id": 26583, + "id": 29056, "properties": { "facing": "east", "half": "top", @@ -61375,7 +70263,7 @@ } }, { - "id": 26584, + "id": 29057, "properties": { "facing": "east", "half": "top", @@ -61385,7 +70273,7 @@ } }, { - "id": 26585, + "id": 29058, "properties": { "facing": "east", "half": "top", @@ -61395,7 +70283,7 @@ } }, { - "id": 26586, + "id": 29059, "properties": { "facing": "east", "half": "top", @@ -61405,7 +70293,7 @@ } }, { - "id": 26587, + "id": 29060, "properties": { "facing": "east", "half": "top", @@ -61415,7 +70303,7 @@ } }, { - "id": 26588, + "id": 29061, "properties": { "facing": "east", "half": "top", @@ -61425,7 +70313,7 @@ } }, { - "id": 26589, + "id": 29062, "properties": { "facing": "east", "half": "top", @@ -61435,7 +70323,7 @@ } }, { - "id": 26590, + "id": 29063, "properties": { "facing": "east", "half": "top", @@ -61445,7 +70333,7 @@ } }, { - "id": 26591, + "id": 29064, "properties": { "facing": "east", "half": "bottom", @@ -61455,7 +70343,7 @@ } }, { - "id": 26592, + "id": 29065, "properties": { "facing": "east", "half": "bottom", @@ -61465,7 +70353,7 @@ } }, { - "id": 26593, + "id": 29066, "properties": { "facing": "east", "half": "bottom", @@ -61475,7 +70363,7 @@ } }, { - "id": 26594, + "id": 29067, "properties": { "facing": "east", "half": "bottom", @@ -61485,7 +70373,7 @@ } }, { - "id": 26595, + "id": 29068, "properties": { "facing": "east", "half": "bottom", @@ -61495,7 +70383,7 @@ } }, { - "id": 26596, + "id": 29069, "properties": { "facing": "east", "half": "bottom", @@ -61505,7 +70393,7 @@ } }, { - "id": 26597, + "id": 29070, "properties": { "facing": "east", "half": "bottom", @@ -61515,7 +70403,7 @@ } }, { - "id": 26598, + "id": 29071, "properties": { "facing": "east", "half": "bottom", @@ -61594,7 +70482,7 @@ "states": [ { "default": true, - "id": 29571 + "id": 32064 } ] }, @@ -61606,7 +70494,7 @@ "states": [ { "default": true, - "id": 29572 + "id": 32065 } ] }, @@ -61677,7 +70565,7 @@ }, "states": [ { - "id": 29609, + "id": 32102, "properties": { "crafting": "true", "orientation": "down_east", @@ -61685,7 +70573,7 @@ } }, { - "id": 29610, + "id": 32103, "properties": { "crafting": "true", "orientation": "down_east", @@ -61693,7 +70581,7 @@ } }, { - "id": 29611, + "id": 32104, "properties": { "crafting": "true", "orientation": "down_north", @@ -61701,7 +70589,7 @@ } }, { - "id": 29612, + "id": 32105, "properties": { "crafting": "true", "orientation": "down_north", @@ -61709,7 +70597,7 @@ } }, { - "id": 29613, + "id": 32106, "properties": { "crafting": "true", "orientation": "down_south", @@ -61717,7 +70605,7 @@ } }, { - "id": 29614, + "id": 32107, "properties": { "crafting": "true", "orientation": "down_south", @@ -61725,7 +70613,7 @@ } }, { - "id": 29615, + "id": 32108, "properties": { "crafting": "true", "orientation": "down_west", @@ -61733,7 +70621,7 @@ } }, { - "id": 29616, + "id": 32109, "properties": { "crafting": "true", "orientation": "down_west", @@ -61741,7 +70629,7 @@ } }, { - "id": 29617, + "id": 32110, "properties": { "crafting": "true", "orientation": "up_east", @@ -61749,7 +70637,7 @@ } }, { - "id": 29618, + "id": 32111, "properties": { "crafting": "true", "orientation": "up_east", @@ -61757,7 +70645,7 @@ } }, { - "id": 29619, + "id": 32112, "properties": { "crafting": "true", "orientation": "up_north", @@ -61765,7 +70653,7 @@ } }, { - "id": 29620, + "id": 32113, "properties": { "crafting": "true", "orientation": "up_north", @@ -61773,7 +70661,7 @@ } }, { - "id": 29621, + "id": 32114, "properties": { "crafting": "true", "orientation": "up_south", @@ -61781,7 +70669,7 @@ } }, { - "id": 29622, + "id": 32115, "properties": { "crafting": "true", "orientation": "up_south", @@ -61789,7 +70677,7 @@ } }, { - "id": 29623, + "id": 32116, "properties": { "crafting": "true", "orientation": "up_west", @@ -61797,7 +70685,7 @@ } }, { - "id": 29624, + "id": 32117, "properties": { "crafting": "true", "orientation": "up_west", @@ -61805,7 +70693,7 @@ } }, { - "id": 29625, + "id": 32118, "properties": { "crafting": "true", "orientation": "west_up", @@ -61813,7 +70701,7 @@ } }, { - "id": 29626, + "id": 32119, "properties": { "crafting": "true", "orientation": "west_up", @@ -61821,7 +70709,7 @@ } }, { - "id": 29627, + "id": 32120, "properties": { "crafting": "true", "orientation": "east_up", @@ -61829,7 +70717,7 @@ } }, { - "id": 29628, + "id": 32121, "properties": { "crafting": "true", "orientation": "east_up", @@ -61837,7 +70725,7 @@ } }, { - "id": 29629, + "id": 32122, "properties": { "crafting": "true", "orientation": "north_up", @@ -61845,7 +70733,7 @@ } }, { - "id": 29630, + "id": 32123, "properties": { "crafting": "true", "orientation": "north_up", @@ -61853,7 +70741,7 @@ } }, { - "id": 29631, + "id": 32124, "properties": { "crafting": "true", "orientation": "south_up", @@ -61861,7 +70749,7 @@ } }, { - "id": 29632, + "id": 32125, "properties": { "crafting": "true", "orientation": "south_up", @@ -61869,7 +70757,7 @@ } }, { - "id": 29633, + "id": 32126, "properties": { "crafting": "false", "orientation": "down_east", @@ -61877,7 +70765,7 @@ } }, { - "id": 29634, + "id": 32127, "properties": { "crafting": "false", "orientation": "down_east", @@ -61885,7 +70773,7 @@ } }, { - "id": 29635, + "id": 32128, "properties": { "crafting": "false", "orientation": "down_north", @@ -61893,7 +70781,7 @@ } }, { - "id": 29636, + "id": 32129, "properties": { "crafting": "false", "orientation": "down_north", @@ -61901,7 +70789,7 @@ } }, { - "id": 29637, + "id": 32130, "properties": { "crafting": "false", "orientation": "down_south", @@ -61909,7 +70797,7 @@ } }, { - "id": 29638, + "id": 32131, "properties": { "crafting": "false", "orientation": "down_south", @@ -61917,7 +70805,7 @@ } }, { - "id": 29639, + "id": 32132, "properties": { "crafting": "false", "orientation": "down_west", @@ -61925,7 +70813,7 @@ } }, { - "id": 29640, + "id": 32133, "properties": { "crafting": "false", "orientation": "down_west", @@ -61933,7 +70821,7 @@ } }, { - "id": 29641, + "id": 32134, "properties": { "crafting": "false", "orientation": "up_east", @@ -61941,7 +70829,7 @@ } }, { - "id": 29642, + "id": 32135, "properties": { "crafting": "false", "orientation": "up_east", @@ -61949,7 +70837,7 @@ } }, { - "id": 29643, + "id": 32136, "properties": { "crafting": "false", "orientation": "up_north", @@ -61957,7 +70845,7 @@ } }, { - "id": 29644, + "id": 32137, "properties": { "crafting": "false", "orientation": "up_north", @@ -61965,7 +70853,7 @@ } }, { - "id": 29645, + "id": 32138, "properties": { "crafting": "false", "orientation": "up_south", @@ -61973,7 +70861,7 @@ } }, { - "id": 29646, + "id": 32139, "properties": { "crafting": "false", "orientation": "up_south", @@ -61981,7 +70869,7 @@ } }, { - "id": 29647, + "id": 32140, "properties": { "crafting": "false", "orientation": "up_west", @@ -61989,7 +70877,7 @@ } }, { - "id": 29648, + "id": 32141, "properties": { "crafting": "false", "orientation": "up_west", @@ -61997,7 +70885,7 @@ } }, { - "id": 29649, + "id": 32142, "properties": { "crafting": "false", "orientation": "west_up", @@ -62005,7 +70893,7 @@ } }, { - "id": 29650, + "id": 32143, "properties": { "crafting": "false", "orientation": "west_up", @@ -62013,7 +70901,7 @@ } }, { - "id": 29651, + "id": 32144, "properties": { "crafting": "false", "orientation": "east_up", @@ -62021,7 +70909,7 @@ } }, { - "id": 29652, + "id": 32145, "properties": { "crafting": "false", "orientation": "east_up", @@ -62029,7 +70917,7 @@ } }, { - "id": 29653, + "id": 32146, "properties": { "crafting": "false", "orientation": "north_up", @@ -62038,7 +70926,7 @@ }, { "default": true, - "id": 29654, + "id": 32147, "properties": { "crafting": "false", "orientation": "north_up", @@ -62046,7 +70934,7 @@ } }, { - "id": 29655, + "id": 32148, "properties": { "crafting": "false", "orientation": "south_up", @@ -62054,7 +70942,7 @@ } }, { - "id": 29656, + "id": 32149, "properties": { "crafting": "false", "orientation": "south_up", @@ -67374,7 +76262,7 @@ "states": [ { "default": true, - "id": 25318 + "id": 27792 } ] }, @@ -67397,21 +76285,21 @@ }, "states": [ { - "id": 25665, + "id": 28448, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 25666, + "id": 28449, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 25667, + "id": 28450, "properties": { "type": "bottom", "waterlogged": "true" @@ -67419,21 +76307,21 @@ }, { "default": true, - "id": 25668, + "id": 28451, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 25669, + "id": 28452, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 25670, + "id": 28453, "properties": { "type": "double", "waterlogged": "false" @@ -67475,7 +76363,7 @@ }, "states": [ { - "id": 25567, + "id": 27808, "properties": { "facing": "north", "half": "top", @@ -67484,7 +76372,7 @@ } }, { - "id": 25568, + "id": 27809, "properties": { "facing": "north", "half": "top", @@ -67493,7 +76381,7 @@ } }, { - "id": 25569, + "id": 27810, "properties": { "facing": "north", "half": "top", @@ -67502,7 +76390,7 @@ } }, { - "id": 25570, + "id": 27811, "properties": { "facing": "north", "half": "top", @@ -67511,7 +76399,7 @@ } }, { - "id": 25571, + "id": 27812, "properties": { "facing": "north", "half": "top", @@ -67520,7 +76408,7 @@ } }, { - "id": 25572, + "id": 27813, "properties": { "facing": "north", "half": "top", @@ -67529,7 +76417,7 @@ } }, { - "id": 25573, + "id": 27814, "properties": { "facing": "north", "half": "top", @@ -67538,7 +76426,7 @@ } }, { - "id": 25574, + "id": 27815, "properties": { "facing": "north", "half": "top", @@ -67547,7 +76435,7 @@ } }, { - "id": 25575, + "id": 27816, "properties": { "facing": "north", "half": "top", @@ -67556,7 +76444,7 @@ } }, { - "id": 25576, + "id": 27817, "properties": { "facing": "north", "half": "top", @@ -67565,7 +76453,7 @@ } }, { - "id": 25577, + "id": 27818, "properties": { "facing": "north", "half": "bottom", @@ -67575,7 +76463,7 @@ }, { "default": true, - "id": 25578, + "id": 27819, "properties": { "facing": "north", "half": "bottom", @@ -67584,7 +76472,7 @@ } }, { - "id": 25579, + "id": 27820, "properties": { "facing": "north", "half": "bottom", @@ -67593,7 +76481,7 @@ } }, { - "id": 25580, + "id": 27821, "properties": { "facing": "north", "half": "bottom", @@ -67602,7 +76490,7 @@ } }, { - "id": 25581, + "id": 27822, "properties": { "facing": "north", "half": "bottom", @@ -67611,7 +76499,7 @@ } }, { - "id": 25582, + "id": 27823, "properties": { "facing": "north", "half": "bottom", @@ -67620,7 +76508,7 @@ } }, { - "id": 25583, + "id": 27824, "properties": { "facing": "north", "half": "bottom", @@ -67629,7 +76517,7 @@ } }, { - "id": 25584, + "id": 27825, "properties": { "facing": "north", "half": "bottom", @@ -67638,7 +76526,7 @@ } }, { - "id": 25585, + "id": 27826, "properties": { "facing": "north", "half": "bottom", @@ -67647,7 +76535,7 @@ } }, { - "id": 25586, + "id": 27827, "properties": { "facing": "north", "half": "bottom", @@ -67656,7 +76544,7 @@ } }, { - "id": 25587, + "id": 27828, "properties": { "facing": "south", "half": "top", @@ -67665,7 +76553,7 @@ } }, { - "id": 25588, + "id": 27829, "properties": { "facing": "south", "half": "top", @@ -67674,7 +76562,7 @@ } }, { - "id": 25589, + "id": 27830, "properties": { "facing": "south", "half": "top", @@ -67683,7 +76571,7 @@ } }, { - "id": 25590, + "id": 27831, "properties": { "facing": "south", "half": "top", @@ -67692,7 +76580,7 @@ } }, { - "id": 25591, + "id": 27832, "properties": { "facing": "south", "half": "top", @@ -67701,7 +76589,7 @@ } }, { - "id": 25592, + "id": 27833, "properties": { "facing": "south", "half": "top", @@ -67710,7 +76598,7 @@ } }, { - "id": 25593, + "id": 27834, "properties": { "facing": "south", "half": "top", @@ -67719,7 +76607,7 @@ } }, { - "id": 25594, + "id": 27835, "properties": { "facing": "south", "half": "top", @@ -67728,7 +76616,7 @@ } }, { - "id": 25595, + "id": 27836, "properties": { "facing": "south", "half": "top", @@ -67737,7 +76625,7 @@ } }, { - "id": 25596, + "id": 27837, "properties": { "facing": "south", "half": "top", @@ -67746,7 +76634,7 @@ } }, { - "id": 25597, + "id": 27838, "properties": { "facing": "south", "half": "bottom", @@ -67755,7 +76643,7 @@ } }, { - "id": 25598, + "id": 27839, "properties": { "facing": "south", "half": "bottom", @@ -67764,7 +76652,7 @@ } }, { - "id": 25599, + "id": 27840, "properties": { "facing": "south", "half": "bottom", @@ -67773,7 +76661,7 @@ } }, { - "id": 25600, + "id": 27841, "properties": { "facing": "south", "half": "bottom", @@ -67782,7 +76670,7 @@ } }, { - "id": 25601, + "id": 27842, "properties": { "facing": "south", "half": "bottom", @@ -67791,7 +76679,7 @@ } }, { - "id": 25602, + "id": 27843, "properties": { "facing": "south", "half": "bottom", @@ -67800,7 +76688,7 @@ } }, { - "id": 25603, + "id": 27844, "properties": { "facing": "south", "half": "bottom", @@ -67809,7 +76697,7 @@ } }, { - "id": 25604, + "id": 27845, "properties": { "facing": "south", "half": "bottom", @@ -67818,7 +76706,7 @@ } }, { - "id": 25605, + "id": 27846, "properties": { "facing": "south", "half": "bottom", @@ -67827,7 +76715,7 @@ } }, { - "id": 25606, + "id": 27847, "properties": { "facing": "south", "half": "bottom", @@ -67836,7 +76724,7 @@ } }, { - "id": 25607, + "id": 27848, "properties": { "facing": "west", "half": "top", @@ -67845,7 +76733,7 @@ } }, { - "id": 25608, + "id": 27849, "properties": { "facing": "west", "half": "top", @@ -67854,7 +76742,7 @@ } }, { - "id": 25609, + "id": 27850, "properties": { "facing": "west", "half": "top", @@ -67863,7 +76751,7 @@ } }, { - "id": 25610, + "id": 27851, "properties": { "facing": "west", "half": "top", @@ -67872,7 +76760,7 @@ } }, { - "id": 25611, + "id": 27852, "properties": { "facing": "west", "half": "top", @@ -67881,7 +76769,7 @@ } }, { - "id": 25612, + "id": 27853, "properties": { "facing": "west", "half": "top", @@ -67890,7 +76778,7 @@ } }, { - "id": 25613, + "id": 27854, "properties": { "facing": "west", "half": "top", @@ -67899,7 +76787,7 @@ } }, { - "id": 25614, + "id": 27855, "properties": { "facing": "west", "half": "top", @@ -67908,7 +76796,7 @@ } }, { - "id": 25615, + "id": 27856, "properties": { "facing": "west", "half": "top", @@ -67917,7 +76805,7 @@ } }, { - "id": 25616, + "id": 27857, "properties": { "facing": "west", "half": "top", @@ -67926,7 +76814,7 @@ } }, { - "id": 25617, + "id": 27858, "properties": { "facing": "west", "half": "bottom", @@ -67935,7 +76823,7 @@ } }, { - "id": 25618, + "id": 27859, "properties": { "facing": "west", "half": "bottom", @@ -67944,7 +76832,7 @@ } }, { - "id": 25619, + "id": 27860, "properties": { "facing": "west", "half": "bottom", @@ -67953,7 +76841,7 @@ } }, { - "id": 25620, + "id": 27861, "properties": { "facing": "west", "half": "bottom", @@ -67962,7 +76850,7 @@ } }, { - "id": 25621, + "id": 27862, "properties": { "facing": "west", "half": "bottom", @@ -67971,7 +76859,7 @@ } }, { - "id": 25622, + "id": 27863, "properties": { "facing": "west", "half": "bottom", @@ -67980,7 +76868,7 @@ } }, { - "id": 25623, + "id": 27864, "properties": { "facing": "west", "half": "bottom", @@ -67989,7 +76877,7 @@ } }, { - "id": 25624, + "id": 27865, "properties": { "facing": "west", "half": "bottom", @@ -67998,7 +76886,7 @@ } }, { - "id": 25625, + "id": 27866, "properties": { "facing": "west", "half": "bottom", @@ -68007,7 +76895,7 @@ } }, { - "id": 25626, + "id": 27867, "properties": { "facing": "west", "half": "bottom", @@ -68016,7 +76904,7 @@ } }, { - "id": 25627, + "id": 27868, "properties": { "facing": "east", "half": "top", @@ -68025,7 +76913,7 @@ } }, { - "id": 25628, + "id": 27869, "properties": { "facing": "east", "half": "top", @@ -68034,7 +76922,7 @@ } }, { - "id": 25629, + "id": 27870, "properties": { "facing": "east", "half": "top", @@ -68043,7 +76931,7 @@ } }, { - "id": 25630, + "id": 27871, "properties": { "facing": "east", "half": "top", @@ -68052,7 +76940,7 @@ } }, { - "id": 25631, + "id": 27872, "properties": { "facing": "east", "half": "top", @@ -68061,7 +76949,7 @@ } }, { - "id": 25632, + "id": 27873, "properties": { "facing": "east", "half": "top", @@ -68070,7 +76958,7 @@ } }, { - "id": 25633, + "id": 27874, "properties": { "facing": "east", "half": "top", @@ -68079,7 +76967,7 @@ } }, { - "id": 25634, + "id": 27875, "properties": { "facing": "east", "half": "top", @@ -68088,7 +76976,7 @@ } }, { - "id": 25635, + "id": 27876, "properties": { "facing": "east", "half": "top", @@ -68097,7 +76985,7 @@ } }, { - "id": 25636, + "id": 27877, "properties": { "facing": "east", "half": "top", @@ -68106,7 +76994,7 @@ } }, { - "id": 25637, + "id": 27878, "properties": { "facing": "east", "half": "bottom", @@ -68115,7 +77003,7 @@ } }, { - "id": 25638, + "id": 27879, "properties": { "facing": "east", "half": "bottom", @@ -68124,7 +77012,7 @@ } }, { - "id": 25639, + "id": 27880, "properties": { "facing": "east", "half": "bottom", @@ -68133,7 +77021,7 @@ } }, { - "id": 25640, + "id": 27881, "properties": { "facing": "east", "half": "bottom", @@ -68142,7 +77030,7 @@ } }, { - "id": 25641, + "id": 27882, "properties": { "facing": "east", "half": "bottom", @@ -68151,7 +77039,7 @@ } }, { - "id": 25642, + "id": 27883, "properties": { "facing": "east", "half": "bottom", @@ -68160,7 +77048,7 @@ } }, { - "id": 25643, + "id": 27884, "properties": { "facing": "east", "half": "bottom", @@ -68169,7 +77057,7 @@ } }, { - "id": 25644, + "id": 27885, "properties": { "facing": "east", "half": "bottom", @@ -68178,7 +77066,7 @@ } }, { - "id": 25645, + "id": 27886, "properties": { "facing": "east", "half": "bottom", @@ -68187,7 +77075,7 @@ } }, { - "id": 25646, + "id": 27887, "properties": { "facing": "east", "half": "bottom", @@ -76281,7 +85169,7 @@ }, "states": [ { - "id": 29593, + "id": 32086, "properties": { "cracked": "true", "facing": "north", @@ -76289,7 +85177,7 @@ } }, { - "id": 29594, + "id": 32087, "properties": { "cracked": "true", "facing": "north", @@ -76297,7 +85185,7 @@ } }, { - "id": 29595, + "id": 32088, "properties": { "cracked": "true", "facing": "south", @@ -76305,7 +85193,7 @@ } }, { - "id": 29596, + "id": 32089, "properties": { "cracked": "true", "facing": "south", @@ -76313,7 +85201,7 @@ } }, { - "id": 29597, + "id": 32090, "properties": { "cracked": "true", "facing": "west", @@ -76321,7 +85209,7 @@ } }, { - "id": 29598, + "id": 32091, "properties": { "cracked": "true", "facing": "west", @@ -76329,7 +85217,7 @@ } }, { - "id": 29599, + "id": 32092, "properties": { "cracked": "true", "facing": "east", @@ -76337,7 +85225,7 @@ } }, { - "id": 29600, + "id": 32093, "properties": { "cracked": "true", "facing": "east", @@ -76345,7 +85233,7 @@ } }, { - "id": 29601, + "id": 32094, "properties": { "cracked": "false", "facing": "north", @@ -76354,7 +85242,7 @@ }, { "default": true, - "id": 29602, + "id": 32095, "properties": { "cracked": "false", "facing": "north", @@ -76362,7 +85250,7 @@ } }, { - "id": 29603, + "id": 32096, "properties": { "cracked": "false", "facing": "south", @@ -76370,7 +85258,7 @@ } }, { - "id": 29604, + "id": 32097, "properties": { "cracked": "false", "facing": "south", @@ -76378,7 +85266,7 @@ } }, { - "id": 29605, + "id": 32098, "properties": { "cracked": "false", "facing": "west", @@ -76386,7 +85274,7 @@ } }, { - "id": 29606, + "id": 32099, "properties": { "cracked": "false", "facing": "west", @@ -76394,7 +85282,7 @@ } }, { - "id": 29607, + "id": 32100, "properties": { "cracked": "false", "facing": "east", @@ -76402,7 +85290,7 @@ } }, { - "id": 29608, + "id": 32101, "properties": { "cracked": "false", "facing": "east", @@ -76425,20 +85313,20 @@ }, "states": [ { - "id": 27923, + "id": 30416, "properties": { "axis": "x" } }, { "default": true, - "id": 27924, + "id": 30417, "properties": { "axis": "y" } }, { - "id": 27925, + "id": 30418, "properties": { "axis": "z" } @@ -76463,21 +85351,21 @@ }, "states": [ { - "id": 29240, + "id": 31733, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 29241, + "id": 31734, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 29242, + "id": 31735, "properties": { "type": "bottom", "waterlogged": "true" @@ -76485,21 +85373,21 @@ }, { "default": true, - "id": 29243, + "id": 31736, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 29244, + "id": 31737, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 29245, + "id": 31738, "properties": { "type": "double", "waterlogged": "false" @@ -76540,7 +85428,7 @@ }, "states": [ { - "id": 29160, + "id": 31653, "properties": { "facing": "north", "half": "top", @@ -76549,7 +85437,7 @@ } }, { - "id": 29161, + "id": 31654, "properties": { "facing": "north", "half": "top", @@ -76558,7 +85446,7 @@ } }, { - "id": 29162, + "id": 31655, "properties": { "facing": "north", "half": "top", @@ -76567,7 +85455,7 @@ } }, { - "id": 29163, + "id": 31656, "properties": { "facing": "north", "half": "top", @@ -76576,7 +85464,7 @@ } }, { - "id": 29164, + "id": 31657, "properties": { "facing": "north", "half": "top", @@ -76585,7 +85473,7 @@ } }, { - "id": 29165, + "id": 31658, "properties": { "facing": "north", "half": "top", @@ -76594,7 +85482,7 @@ } }, { - "id": 29166, + "id": 31659, "properties": { "facing": "north", "half": "top", @@ -76603,7 +85491,7 @@ } }, { - "id": 29167, + "id": 31660, "properties": { "facing": "north", "half": "top", @@ -76612,7 +85500,7 @@ } }, { - "id": 29168, + "id": 31661, "properties": { "facing": "north", "half": "top", @@ -76621,7 +85509,7 @@ } }, { - "id": 29169, + "id": 31662, "properties": { "facing": "north", "half": "top", @@ -76630,7 +85518,7 @@ } }, { - "id": 29170, + "id": 31663, "properties": { "facing": "north", "half": "bottom", @@ -76640,7 +85528,7 @@ }, { "default": true, - "id": 29171, + "id": 31664, "properties": { "facing": "north", "half": "bottom", @@ -76649,7 +85537,7 @@ } }, { - "id": 29172, + "id": 31665, "properties": { "facing": "north", "half": "bottom", @@ -76658,7 +85546,7 @@ } }, { - "id": 29173, + "id": 31666, "properties": { "facing": "north", "half": "bottom", @@ -76667,7 +85555,7 @@ } }, { - "id": 29174, + "id": 31667, "properties": { "facing": "north", "half": "bottom", @@ -76676,7 +85564,7 @@ } }, { - "id": 29175, + "id": 31668, "properties": { "facing": "north", "half": "bottom", @@ -76685,7 +85573,7 @@ } }, { - "id": 29176, + "id": 31669, "properties": { "facing": "north", "half": "bottom", @@ -76694,7 +85582,7 @@ } }, { - "id": 29177, + "id": 31670, "properties": { "facing": "north", "half": "bottom", @@ -76703,7 +85591,7 @@ } }, { - "id": 29178, + "id": 31671, "properties": { "facing": "north", "half": "bottom", @@ -76712,7 +85600,7 @@ } }, { - "id": 29179, + "id": 31672, "properties": { "facing": "north", "half": "bottom", @@ -76721,7 +85609,7 @@ } }, { - "id": 29180, + "id": 31673, "properties": { "facing": "south", "half": "top", @@ -76730,7 +85618,7 @@ } }, { - "id": 29181, + "id": 31674, "properties": { "facing": "south", "half": "top", @@ -76739,7 +85627,7 @@ } }, { - "id": 29182, + "id": 31675, "properties": { "facing": "south", "half": "top", @@ -76748,7 +85636,7 @@ } }, { - "id": 29183, + "id": 31676, "properties": { "facing": "south", "half": "top", @@ -76757,7 +85645,7 @@ } }, { - "id": 29184, + "id": 31677, "properties": { "facing": "south", "half": "top", @@ -76766,7 +85654,7 @@ } }, { - "id": 29185, + "id": 31678, "properties": { "facing": "south", "half": "top", @@ -76775,7 +85663,7 @@ } }, { - "id": 29186, + "id": 31679, "properties": { "facing": "south", "half": "top", @@ -76784,7 +85672,7 @@ } }, { - "id": 29187, + "id": 31680, "properties": { "facing": "south", "half": "top", @@ -76793,7 +85681,7 @@ } }, { - "id": 29188, + "id": 31681, "properties": { "facing": "south", "half": "top", @@ -76802,7 +85690,7 @@ } }, { - "id": 29189, + "id": 31682, "properties": { "facing": "south", "half": "top", @@ -76811,7 +85699,7 @@ } }, { - "id": 29190, + "id": 31683, "properties": { "facing": "south", "half": "bottom", @@ -76820,7 +85708,7 @@ } }, { - "id": 29191, + "id": 31684, "properties": { "facing": "south", "half": "bottom", @@ -76829,7 +85717,7 @@ } }, { - "id": 29192, + "id": 31685, "properties": { "facing": "south", "half": "bottom", @@ -76838,7 +85726,7 @@ } }, { - "id": 29193, + "id": 31686, "properties": { "facing": "south", "half": "bottom", @@ -76847,7 +85735,7 @@ } }, { - "id": 29194, + "id": 31687, "properties": { "facing": "south", "half": "bottom", @@ -76856,7 +85744,7 @@ } }, { - "id": 29195, + "id": 31688, "properties": { "facing": "south", "half": "bottom", @@ -76865,7 +85753,7 @@ } }, { - "id": 29196, + "id": 31689, "properties": { "facing": "south", "half": "bottom", @@ -76874,7 +85762,7 @@ } }, { - "id": 29197, + "id": 31690, "properties": { "facing": "south", "half": "bottom", @@ -76883,7 +85771,7 @@ } }, { - "id": 29198, + "id": 31691, "properties": { "facing": "south", "half": "bottom", @@ -76892,7 +85780,7 @@ } }, { - "id": 29199, + "id": 31692, "properties": { "facing": "south", "half": "bottom", @@ -76901,7 +85789,7 @@ } }, { - "id": 29200, + "id": 31693, "properties": { "facing": "west", "half": "top", @@ -76910,7 +85798,7 @@ } }, { - "id": 29201, + "id": 31694, "properties": { "facing": "west", "half": "top", @@ -76919,7 +85807,7 @@ } }, { - "id": 29202, + "id": 31695, "properties": { "facing": "west", "half": "top", @@ -76928,7 +85816,7 @@ } }, { - "id": 29203, + "id": 31696, "properties": { "facing": "west", "half": "top", @@ -76937,7 +85825,7 @@ } }, { - "id": 29204, + "id": 31697, "properties": { "facing": "west", "half": "top", @@ -76946,7 +85834,7 @@ } }, { - "id": 29205, + "id": 31698, "properties": { "facing": "west", "half": "top", @@ -76955,7 +85843,7 @@ } }, { - "id": 29206, + "id": 31699, "properties": { "facing": "west", "half": "top", @@ -76964,7 +85852,7 @@ } }, { - "id": 29207, + "id": 31700, "properties": { "facing": "west", "half": "top", @@ -76973,7 +85861,7 @@ } }, { - "id": 29208, + "id": 31701, "properties": { "facing": "west", "half": "top", @@ -76982,7 +85870,7 @@ } }, { - "id": 29209, + "id": 31702, "properties": { "facing": "west", "half": "top", @@ -76991,7 +85879,7 @@ } }, { - "id": 29210, + "id": 31703, "properties": { "facing": "west", "half": "bottom", @@ -77000,7 +85888,7 @@ } }, { - "id": 29211, + "id": 31704, "properties": { "facing": "west", "half": "bottom", @@ -77009,7 +85897,7 @@ } }, { - "id": 29212, + "id": 31705, "properties": { "facing": "west", "half": "bottom", @@ -77018,7 +85906,7 @@ } }, { - "id": 29213, + "id": 31706, "properties": { "facing": "west", "half": "bottom", @@ -77027,7 +85915,7 @@ } }, { - "id": 29214, + "id": 31707, "properties": { "facing": "west", "half": "bottom", @@ -77036,7 +85924,7 @@ } }, { - "id": 29215, + "id": 31708, "properties": { "facing": "west", "half": "bottom", @@ -77045,7 +85933,7 @@ } }, { - "id": 29216, + "id": 31709, "properties": { "facing": "west", "half": "bottom", @@ -77054,7 +85942,7 @@ } }, { - "id": 29217, + "id": 31710, "properties": { "facing": "west", "half": "bottom", @@ -77063,7 +85951,7 @@ } }, { - "id": 29218, + "id": 31711, "properties": { "facing": "west", "half": "bottom", @@ -77072,7 +85960,7 @@ } }, { - "id": 29219, + "id": 31712, "properties": { "facing": "west", "half": "bottom", @@ -77081,7 +85969,7 @@ } }, { - "id": 29220, + "id": 31713, "properties": { "facing": "east", "half": "top", @@ -77090,7 +85978,7 @@ } }, { - "id": 29221, + "id": 31714, "properties": { "facing": "east", "half": "top", @@ -77099,7 +85987,7 @@ } }, { - "id": 29222, + "id": 31715, "properties": { "facing": "east", "half": "top", @@ -77108,7 +85996,7 @@ } }, { - "id": 29223, + "id": 31716, "properties": { "facing": "east", "half": "top", @@ -77117,7 +86005,7 @@ } }, { - "id": 29224, + "id": 31717, "properties": { "facing": "east", "half": "top", @@ -77126,7 +86014,7 @@ } }, { - "id": 29225, + "id": 31718, "properties": { "facing": "east", "half": "top", @@ -77135,7 +86023,7 @@ } }, { - "id": 29226, + "id": 31719, "properties": { "facing": "east", "half": "top", @@ -77144,7 +86032,7 @@ } }, { - "id": 29227, + "id": 31720, "properties": { "facing": "east", "half": "top", @@ -77153,7 +86041,7 @@ } }, { - "id": 29228, + "id": 31721, "properties": { "facing": "east", "half": "top", @@ -77162,7 +86050,7 @@ } }, { - "id": 29229, + "id": 31722, "properties": { "facing": "east", "half": "top", @@ -77171,7 +86059,7 @@ } }, { - "id": 29230, + "id": 31723, "properties": { "facing": "east", "half": "bottom", @@ -77180,7 +86068,7 @@ } }, { - "id": 29231, + "id": 31724, "properties": { "facing": "east", "half": "bottom", @@ -77189,7 +86077,7 @@ } }, { - "id": 29232, + "id": 31725, "properties": { "facing": "east", "half": "bottom", @@ -77198,7 +86086,7 @@ } }, { - "id": 29233, + "id": 31726, "properties": { "facing": "east", "half": "bottom", @@ -77207,7 +86095,7 @@ } }, { - "id": 29234, + "id": 31727, "properties": { "facing": "east", "half": "bottom", @@ -77216,7 +86104,7 @@ } }, { - "id": 29235, + "id": 31728, "properties": { "facing": "east", "half": "bottom", @@ -77225,7 +86113,7 @@ } }, { - "id": 29236, + "id": 31729, "properties": { "facing": "east", "half": "bottom", @@ -77234,7 +86122,7 @@ } }, { - "id": 29237, + "id": 31730, "properties": { "facing": "east", "half": "bottom", @@ -77243,7 +86131,7 @@ } }, { - "id": 29238, + "id": 31731, "properties": { "facing": "east", "half": "bottom", @@ -77252,7 +86140,7 @@ } }, { - "id": 29239, + "id": 31732, "properties": { "facing": "east", "half": "bottom", @@ -77299,7 +86187,7 @@ }, "states": [ { - "id": 29246, + "id": 31739, "properties": { "east": "none", "north": "none", @@ -77310,7 +86198,7 @@ } }, { - "id": 29247, + "id": 31740, "properties": { "east": "none", "north": "none", @@ -77321,7 +86209,7 @@ } }, { - "id": 29248, + "id": 31741, "properties": { "east": "none", "north": "none", @@ -77333,7 +86221,7 @@ }, { "default": true, - "id": 29249, + "id": 31742, "properties": { "east": "none", "north": "none", @@ -77344,7 +86232,7 @@ } }, { - "id": 29250, + "id": 31743, "properties": { "east": "none", "north": "none", @@ -77355,7 +86243,7 @@ } }, { - "id": 29251, + "id": 31744, "properties": { "east": "none", "north": "none", @@ -77366,7 +86254,7 @@ } }, { - "id": 29252, + "id": 31745, "properties": { "east": "none", "north": "none", @@ -77377,7 +86265,7 @@ } }, { - "id": 29253, + "id": 31746, "properties": { "east": "none", "north": "none", @@ -77388,7 +86276,7 @@ } }, { - "id": 29254, + "id": 31747, "properties": { "east": "none", "north": "none", @@ -77399,7 +86287,7 @@ } }, { - "id": 29255, + "id": 31748, "properties": { "east": "none", "north": "none", @@ -77410,7 +86298,7 @@ } }, { - "id": 29256, + "id": 31749, "properties": { "east": "none", "north": "none", @@ -77421,7 +86309,7 @@ } }, { - "id": 29257, + "id": 31750, "properties": { "east": "none", "north": "none", @@ -77432,7 +86320,7 @@ } }, { - "id": 29258, + "id": 31751, "properties": { "east": "none", "north": "none", @@ -77443,7 +86331,7 @@ } }, { - "id": 29259, + "id": 31752, "properties": { "east": "none", "north": "none", @@ -77454,7 +86342,7 @@ } }, { - "id": 29260, + "id": 31753, "properties": { "east": "none", "north": "none", @@ -77465,7 +86353,7 @@ } }, { - "id": 29261, + "id": 31754, "properties": { "east": "none", "north": "none", @@ -77476,7 +86364,7 @@ } }, { - "id": 29262, + "id": 31755, "properties": { "east": "none", "north": "none", @@ -77487,7 +86375,7 @@ } }, { - "id": 29263, + "id": 31756, "properties": { "east": "none", "north": "none", @@ -77498,7 +86386,7 @@ } }, { - "id": 29264, + "id": 31757, "properties": { "east": "none", "north": "none", @@ -77509,7 +86397,7 @@ } }, { - "id": 29265, + "id": 31758, "properties": { "east": "none", "north": "none", @@ -77520,7 +86408,7 @@ } }, { - "id": 29266, + "id": 31759, "properties": { "east": "none", "north": "none", @@ -77531,7 +86419,7 @@ } }, { - "id": 29267, + "id": 31760, "properties": { "east": "none", "north": "none", @@ -77542,7 +86430,7 @@ } }, { - "id": 29268, + "id": 31761, "properties": { "east": "none", "north": "none", @@ -77553,7 +86441,7 @@ } }, { - "id": 29269, + "id": 31762, "properties": { "east": "none", "north": "none", @@ -77564,7 +86452,7 @@ } }, { - "id": 29270, + "id": 31763, "properties": { "east": "none", "north": "none", @@ -77575,7 +86463,7 @@ } }, { - "id": 29271, + "id": 31764, "properties": { "east": "none", "north": "none", @@ -77586,7 +86474,7 @@ } }, { - "id": 29272, + "id": 31765, "properties": { "east": "none", "north": "none", @@ -77597,7 +86485,7 @@ } }, { - "id": 29273, + "id": 31766, "properties": { "east": "none", "north": "none", @@ -77608,7 +86496,7 @@ } }, { - "id": 29274, + "id": 31767, "properties": { "east": "none", "north": "none", @@ -77619,7 +86507,7 @@ } }, { - "id": 29275, + "id": 31768, "properties": { "east": "none", "north": "none", @@ -77630,7 +86518,7 @@ } }, { - "id": 29276, + "id": 31769, "properties": { "east": "none", "north": "none", @@ -77641,7 +86529,7 @@ } }, { - "id": 29277, + "id": 31770, "properties": { "east": "none", "north": "none", @@ -77652,7 +86540,7 @@ } }, { - "id": 29278, + "id": 31771, "properties": { "east": "none", "north": "none", @@ -77663,7 +86551,7 @@ } }, { - "id": 29279, + "id": 31772, "properties": { "east": "none", "north": "none", @@ -77674,7 +86562,7 @@ } }, { - "id": 29280, + "id": 31773, "properties": { "east": "none", "north": "none", @@ -77685,7 +86573,7 @@ } }, { - "id": 29281, + "id": 31774, "properties": { "east": "none", "north": "none", @@ -77696,7 +86584,7 @@ } }, { - "id": 29282, + "id": 31775, "properties": { "east": "none", "north": "low", @@ -77707,7 +86595,7 @@ } }, { - "id": 29283, + "id": 31776, "properties": { "east": "none", "north": "low", @@ -77718,7 +86606,7 @@ } }, { - "id": 29284, + "id": 31777, "properties": { "east": "none", "north": "low", @@ -77729,7 +86617,7 @@ } }, { - "id": 29285, + "id": 31778, "properties": { "east": "none", "north": "low", @@ -77740,7 +86628,7 @@ } }, { - "id": 29286, + "id": 31779, "properties": { "east": "none", "north": "low", @@ -77751,7 +86639,7 @@ } }, { - "id": 29287, + "id": 31780, "properties": { "east": "none", "north": "low", @@ -77762,7 +86650,7 @@ } }, { - "id": 29288, + "id": 31781, "properties": { "east": "none", "north": "low", @@ -77773,7 +86661,7 @@ } }, { - "id": 29289, + "id": 31782, "properties": { "east": "none", "north": "low", @@ -77784,7 +86672,7 @@ } }, { - "id": 29290, + "id": 31783, "properties": { "east": "none", "north": "low", @@ -77795,7 +86683,7 @@ } }, { - "id": 29291, + "id": 31784, "properties": { "east": "none", "north": "low", @@ -77806,7 +86694,7 @@ } }, { - "id": 29292, + "id": 31785, "properties": { "east": "none", "north": "low", @@ -77817,7 +86705,7 @@ } }, { - "id": 29293, + "id": 31786, "properties": { "east": "none", "north": "low", @@ -77828,7 +86716,7 @@ } }, { - "id": 29294, + "id": 31787, "properties": { "east": "none", "north": "low", @@ -77839,7 +86727,7 @@ } }, { - "id": 29295, + "id": 31788, "properties": { "east": "none", "north": "low", @@ -77850,7 +86738,7 @@ } }, { - "id": 29296, + "id": 31789, "properties": { "east": "none", "north": "low", @@ -77861,7 +86749,7 @@ } }, { - "id": 29297, + "id": 31790, "properties": { "east": "none", "north": "low", @@ -77872,7 +86760,7 @@ } }, { - "id": 29298, + "id": 31791, "properties": { "east": "none", "north": "low", @@ -77883,7 +86771,7 @@ } }, { - "id": 29299, + "id": 31792, "properties": { "east": "none", "north": "low", @@ -77894,7 +86782,7 @@ } }, { - "id": 29300, + "id": 31793, "properties": { "east": "none", "north": "low", @@ -77905,7 +86793,7 @@ } }, { - "id": 29301, + "id": 31794, "properties": { "east": "none", "north": "low", @@ -77916,7 +86804,7 @@ } }, { - "id": 29302, + "id": 31795, "properties": { "east": "none", "north": "low", @@ -77927,7 +86815,7 @@ } }, { - "id": 29303, + "id": 31796, "properties": { "east": "none", "north": "low", @@ -77938,7 +86826,7 @@ } }, { - "id": 29304, + "id": 31797, "properties": { "east": "none", "north": "low", @@ -77949,7 +86837,7 @@ } }, { - "id": 29305, + "id": 31798, "properties": { "east": "none", "north": "low", @@ -77960,7 +86848,7 @@ } }, { - "id": 29306, + "id": 31799, "properties": { "east": "none", "north": "low", @@ -77971,7 +86859,7 @@ } }, { - "id": 29307, + "id": 31800, "properties": { "east": "none", "north": "low", @@ -77982,7 +86870,7 @@ } }, { - "id": 29308, + "id": 31801, "properties": { "east": "none", "north": "low", @@ -77993,7 +86881,7 @@ } }, { - "id": 29309, + "id": 31802, "properties": { "east": "none", "north": "low", @@ -78004,7 +86892,7 @@ } }, { - "id": 29310, + "id": 31803, "properties": { "east": "none", "north": "low", @@ -78015,7 +86903,7 @@ } }, { - "id": 29311, + "id": 31804, "properties": { "east": "none", "north": "low", @@ -78026,7 +86914,7 @@ } }, { - "id": 29312, + "id": 31805, "properties": { "east": "none", "north": "low", @@ -78037,7 +86925,7 @@ } }, { - "id": 29313, + "id": 31806, "properties": { "east": "none", "north": "low", @@ -78048,7 +86936,7 @@ } }, { - "id": 29314, + "id": 31807, "properties": { "east": "none", "north": "low", @@ -78059,7 +86947,7 @@ } }, { - "id": 29315, + "id": 31808, "properties": { "east": "none", "north": "low", @@ -78070,7 +86958,7 @@ } }, { - "id": 29316, + "id": 31809, "properties": { "east": "none", "north": "low", @@ -78081,7 +86969,7 @@ } }, { - "id": 29317, + "id": 31810, "properties": { "east": "none", "north": "low", @@ -78092,7 +86980,7 @@ } }, { - "id": 29318, + "id": 31811, "properties": { "east": "none", "north": "tall", @@ -78103,7 +86991,7 @@ } }, { - "id": 29319, + "id": 31812, "properties": { "east": "none", "north": "tall", @@ -78114,7 +87002,7 @@ } }, { - "id": 29320, + "id": 31813, "properties": { "east": "none", "north": "tall", @@ -78125,7 +87013,7 @@ } }, { - "id": 29321, + "id": 31814, "properties": { "east": "none", "north": "tall", @@ -78136,7 +87024,7 @@ } }, { - "id": 29322, + "id": 31815, "properties": { "east": "none", "north": "tall", @@ -78147,7 +87035,7 @@ } }, { - "id": 29323, + "id": 31816, "properties": { "east": "none", "north": "tall", @@ -78158,7 +87046,7 @@ } }, { - "id": 29324, + "id": 31817, "properties": { "east": "none", "north": "tall", @@ -78169,7 +87057,7 @@ } }, { - "id": 29325, + "id": 31818, "properties": { "east": "none", "north": "tall", @@ -78180,7 +87068,7 @@ } }, { - "id": 29326, + "id": 31819, "properties": { "east": "none", "north": "tall", @@ -78191,7 +87079,7 @@ } }, { - "id": 29327, + "id": 31820, "properties": { "east": "none", "north": "tall", @@ -78202,7 +87090,7 @@ } }, { - "id": 29328, + "id": 31821, "properties": { "east": "none", "north": "tall", @@ -78213,7 +87101,7 @@ } }, { - "id": 29329, + "id": 31822, "properties": { "east": "none", "north": "tall", @@ -78224,7 +87112,7 @@ } }, { - "id": 29330, + "id": 31823, "properties": { "east": "none", "north": "tall", @@ -78235,7 +87123,7 @@ } }, { - "id": 29331, + "id": 31824, "properties": { "east": "none", "north": "tall", @@ -78246,7 +87134,7 @@ } }, { - "id": 29332, + "id": 31825, "properties": { "east": "none", "north": "tall", @@ -78257,7 +87145,7 @@ } }, { - "id": 29333, + "id": 31826, "properties": { "east": "none", "north": "tall", @@ -78268,7 +87156,7 @@ } }, { - "id": 29334, + "id": 31827, "properties": { "east": "none", "north": "tall", @@ -78279,7 +87167,7 @@ } }, { - "id": 29335, + "id": 31828, "properties": { "east": "none", "north": "tall", @@ -78290,7 +87178,7 @@ } }, { - "id": 29336, + "id": 31829, "properties": { "east": "none", "north": "tall", @@ -78301,7 +87189,7 @@ } }, { - "id": 29337, + "id": 31830, "properties": { "east": "none", "north": "tall", @@ -78312,7 +87200,7 @@ } }, { - "id": 29338, + "id": 31831, "properties": { "east": "none", "north": "tall", @@ -78323,7 +87211,7 @@ } }, { - "id": 29339, + "id": 31832, "properties": { "east": "none", "north": "tall", @@ -78334,7 +87222,7 @@ } }, { - "id": 29340, + "id": 31833, "properties": { "east": "none", "north": "tall", @@ -78345,7 +87233,7 @@ } }, { - "id": 29341, + "id": 31834, "properties": { "east": "none", "north": "tall", @@ -78356,7 +87244,7 @@ } }, { - "id": 29342, + "id": 31835, "properties": { "east": "none", "north": "tall", @@ -78367,7 +87255,7 @@ } }, { - "id": 29343, + "id": 31836, "properties": { "east": "none", "north": "tall", @@ -78378,7 +87266,7 @@ } }, { - "id": 29344, + "id": 31837, "properties": { "east": "none", "north": "tall", @@ -78389,7 +87277,7 @@ } }, { - "id": 29345, + "id": 31838, "properties": { "east": "none", "north": "tall", @@ -78400,7 +87288,7 @@ } }, { - "id": 29346, + "id": 31839, "properties": { "east": "none", "north": "tall", @@ -78411,7 +87299,7 @@ } }, { - "id": 29347, + "id": 31840, "properties": { "east": "none", "north": "tall", @@ -78422,7 +87310,7 @@ } }, { - "id": 29348, + "id": 31841, "properties": { "east": "none", "north": "tall", @@ -78433,7 +87321,7 @@ } }, { - "id": 29349, + "id": 31842, "properties": { "east": "none", "north": "tall", @@ -78444,7 +87332,7 @@ } }, { - "id": 29350, + "id": 31843, "properties": { "east": "none", "north": "tall", @@ -78455,7 +87343,7 @@ } }, { - "id": 29351, + "id": 31844, "properties": { "east": "none", "north": "tall", @@ -78466,7 +87354,7 @@ } }, { - "id": 29352, + "id": 31845, "properties": { "east": "none", "north": "tall", @@ -78477,7 +87365,7 @@ } }, { - "id": 29353, + "id": 31846, "properties": { "east": "none", "north": "tall", @@ -78488,7 +87376,7 @@ } }, { - "id": 29354, + "id": 31847, "properties": { "east": "low", "north": "none", @@ -78499,7 +87387,7 @@ } }, { - "id": 29355, + "id": 31848, "properties": { "east": "low", "north": "none", @@ -78510,7 +87398,7 @@ } }, { - "id": 29356, + "id": 31849, "properties": { "east": "low", "north": "none", @@ -78521,7 +87409,7 @@ } }, { - "id": 29357, + "id": 31850, "properties": { "east": "low", "north": "none", @@ -78532,7 +87420,7 @@ } }, { - "id": 29358, + "id": 31851, "properties": { "east": "low", "north": "none", @@ -78543,7 +87431,7 @@ } }, { - "id": 29359, + "id": 31852, "properties": { "east": "low", "north": "none", @@ -78554,7 +87442,7 @@ } }, { - "id": 29360, + "id": 31853, "properties": { "east": "low", "north": "none", @@ -78565,7 +87453,7 @@ } }, { - "id": 29361, + "id": 31854, "properties": { "east": "low", "north": "none", @@ -78576,7 +87464,7 @@ } }, { - "id": 29362, + "id": 31855, "properties": { "east": "low", "north": "none", @@ -78587,7 +87475,7 @@ } }, { - "id": 29363, + "id": 31856, "properties": { "east": "low", "north": "none", @@ -78598,7 +87486,7 @@ } }, { - "id": 29364, + "id": 31857, "properties": { "east": "low", "north": "none", @@ -78609,7 +87497,7 @@ } }, { - "id": 29365, + "id": 31858, "properties": { "east": "low", "north": "none", @@ -78620,7 +87508,7 @@ } }, { - "id": 29366, + "id": 31859, "properties": { "east": "low", "north": "none", @@ -78631,7 +87519,7 @@ } }, { - "id": 29367, + "id": 31860, "properties": { "east": "low", "north": "none", @@ -78642,7 +87530,7 @@ } }, { - "id": 29368, + "id": 31861, "properties": { "east": "low", "north": "none", @@ -78653,7 +87541,7 @@ } }, { - "id": 29369, + "id": 31862, "properties": { "east": "low", "north": "none", @@ -78664,7 +87552,7 @@ } }, { - "id": 29370, + "id": 31863, "properties": { "east": "low", "north": "none", @@ -78675,7 +87563,7 @@ } }, { - "id": 29371, + "id": 31864, "properties": { "east": "low", "north": "none", @@ -78686,7 +87574,7 @@ } }, { - "id": 29372, + "id": 31865, "properties": { "east": "low", "north": "none", @@ -78697,7 +87585,7 @@ } }, { - "id": 29373, + "id": 31866, "properties": { "east": "low", "north": "none", @@ -78708,7 +87596,7 @@ } }, { - "id": 29374, + "id": 31867, "properties": { "east": "low", "north": "none", @@ -78719,7 +87607,7 @@ } }, { - "id": 29375, + "id": 31868, "properties": { "east": "low", "north": "none", @@ -78730,7 +87618,7 @@ } }, { - "id": 29376, + "id": 31869, "properties": { "east": "low", "north": "none", @@ -78741,7 +87629,7 @@ } }, { - "id": 29377, + "id": 31870, "properties": { "east": "low", "north": "none", @@ -78752,7 +87640,7 @@ } }, { - "id": 29378, + "id": 31871, "properties": { "east": "low", "north": "none", @@ -78763,7 +87651,7 @@ } }, { - "id": 29379, + "id": 31872, "properties": { "east": "low", "north": "none", @@ -78774,7 +87662,7 @@ } }, { - "id": 29380, + "id": 31873, "properties": { "east": "low", "north": "none", @@ -78785,7 +87673,7 @@ } }, { - "id": 29381, + "id": 31874, "properties": { "east": "low", "north": "none", @@ -78796,7 +87684,7 @@ } }, { - "id": 29382, + "id": 31875, "properties": { "east": "low", "north": "none", @@ -78807,7 +87695,7 @@ } }, { - "id": 29383, + "id": 31876, "properties": { "east": "low", "north": "none", @@ -78818,7 +87706,7 @@ } }, { - "id": 29384, + "id": 31877, "properties": { "east": "low", "north": "none", @@ -78829,7 +87717,7 @@ } }, { - "id": 29385, + "id": 31878, "properties": { "east": "low", "north": "none", @@ -78840,7 +87728,7 @@ } }, { - "id": 29386, + "id": 31879, "properties": { "east": "low", "north": "none", @@ -78851,7 +87739,7 @@ } }, { - "id": 29387, + "id": 31880, "properties": { "east": "low", "north": "none", @@ -78862,7 +87750,7 @@ } }, { - "id": 29388, + "id": 31881, "properties": { "east": "low", "north": "none", @@ -78873,7 +87761,7 @@ } }, { - "id": 29389, + "id": 31882, "properties": { "east": "low", "north": "none", @@ -78884,7 +87772,7 @@ } }, { - "id": 29390, + "id": 31883, "properties": { "east": "low", "north": "low", @@ -78895,7 +87783,7 @@ } }, { - "id": 29391, + "id": 31884, "properties": { "east": "low", "north": "low", @@ -78906,7 +87794,7 @@ } }, { - "id": 29392, + "id": 31885, "properties": { "east": "low", "north": "low", @@ -78917,7 +87805,7 @@ } }, { - "id": 29393, + "id": 31886, "properties": { "east": "low", "north": "low", @@ -78928,7 +87816,7 @@ } }, { - "id": 29394, + "id": 31887, "properties": { "east": "low", "north": "low", @@ -78939,7 +87827,7 @@ } }, { - "id": 29395, + "id": 31888, "properties": { "east": "low", "north": "low", @@ -78950,7 +87838,7 @@ } }, { - "id": 29396, + "id": 31889, "properties": { "east": "low", "north": "low", @@ -78961,7 +87849,7 @@ } }, { - "id": 29397, + "id": 31890, "properties": { "east": "low", "north": "low", @@ -78972,7 +87860,7 @@ } }, { - "id": 29398, + "id": 31891, "properties": { "east": "low", "north": "low", @@ -78983,7 +87871,7 @@ } }, { - "id": 29399, + "id": 31892, "properties": { "east": "low", "north": "low", @@ -78994,7 +87882,7 @@ } }, { - "id": 29400, + "id": 31893, "properties": { "east": "low", "north": "low", @@ -79005,7 +87893,7 @@ } }, { - "id": 29401, + "id": 31894, "properties": { "east": "low", "north": "low", @@ -79016,7 +87904,7 @@ } }, { - "id": 29402, + "id": 31895, "properties": { "east": "low", "north": "low", @@ -79027,7 +87915,7 @@ } }, { - "id": 29403, + "id": 31896, "properties": { "east": "low", "north": "low", @@ -79038,7 +87926,7 @@ } }, { - "id": 29404, + "id": 31897, "properties": { "east": "low", "north": "low", @@ -79049,7 +87937,7 @@ } }, { - "id": 29405, + "id": 31898, "properties": { "east": "low", "north": "low", @@ -79060,7 +87948,7 @@ } }, { - "id": 29406, + "id": 31899, "properties": { "east": "low", "north": "low", @@ -79071,7 +87959,7 @@ } }, { - "id": 29407, + "id": 31900, "properties": { "east": "low", "north": "low", @@ -79082,7 +87970,7 @@ } }, { - "id": 29408, + "id": 31901, "properties": { "east": "low", "north": "low", @@ -79093,7 +87981,7 @@ } }, { - "id": 29409, + "id": 31902, "properties": { "east": "low", "north": "low", @@ -79104,7 +87992,7 @@ } }, { - "id": 29410, + "id": 31903, "properties": { "east": "low", "north": "low", @@ -79115,7 +88003,7 @@ } }, { - "id": 29411, + "id": 31904, "properties": { "east": "low", "north": "low", @@ -79126,7 +88014,7 @@ } }, { - "id": 29412, + "id": 31905, "properties": { "east": "low", "north": "low", @@ -79137,7 +88025,7 @@ } }, { - "id": 29413, + "id": 31906, "properties": { "east": "low", "north": "low", @@ -79148,7 +88036,7 @@ } }, { - "id": 29414, + "id": 31907, "properties": { "east": "low", "north": "low", @@ -79159,7 +88047,7 @@ } }, { - "id": 29415, + "id": 31908, "properties": { "east": "low", "north": "low", @@ -79170,7 +88058,7 @@ } }, { - "id": 29416, + "id": 31909, "properties": { "east": "low", "north": "low", @@ -79181,7 +88069,7 @@ } }, { - "id": 29417, + "id": 31910, "properties": { "east": "low", "north": "low", @@ -79192,7 +88080,7 @@ } }, { - "id": 29418, + "id": 31911, "properties": { "east": "low", "north": "low", @@ -79203,7 +88091,7 @@ } }, { - "id": 29419, + "id": 31912, "properties": { "east": "low", "north": "low", @@ -79214,7 +88102,7 @@ } }, { - "id": 29420, + "id": 31913, "properties": { "east": "low", "north": "low", @@ -79225,7 +88113,7 @@ } }, { - "id": 29421, + "id": 31914, "properties": { "east": "low", "north": "low", @@ -79236,7 +88124,7 @@ } }, { - "id": 29422, + "id": 31915, "properties": { "east": "low", "north": "low", @@ -79247,7 +88135,7 @@ } }, { - "id": 29423, + "id": 31916, "properties": { "east": "low", "north": "low", @@ -79258,7 +88146,7 @@ } }, { - "id": 29424, + "id": 31917, "properties": { "east": "low", "north": "low", @@ -79269,7 +88157,7 @@ } }, { - "id": 29425, + "id": 31918, "properties": { "east": "low", "north": "low", @@ -79280,7 +88168,7 @@ } }, { - "id": 29426, + "id": 31919, "properties": { "east": "low", "north": "tall", @@ -79291,7 +88179,7 @@ } }, { - "id": 29427, + "id": 31920, "properties": { "east": "low", "north": "tall", @@ -79302,7 +88190,7 @@ } }, { - "id": 29428, + "id": 31921, "properties": { "east": "low", "north": "tall", @@ -79313,7 +88201,7 @@ } }, { - "id": 29429, + "id": 31922, "properties": { "east": "low", "north": "tall", @@ -79324,7 +88212,7 @@ } }, { - "id": 29430, + "id": 31923, "properties": { "east": "low", "north": "tall", @@ -79335,7 +88223,7 @@ } }, { - "id": 29431, + "id": 31924, "properties": { "east": "low", "north": "tall", @@ -79346,7 +88234,7 @@ } }, { - "id": 29432, + "id": 31925, "properties": { "east": "low", "north": "tall", @@ -79357,7 +88245,7 @@ } }, { - "id": 29433, + "id": 31926, "properties": { "east": "low", "north": "tall", @@ -79368,7 +88256,7 @@ } }, { - "id": 29434, + "id": 31927, "properties": { "east": "low", "north": "tall", @@ -79379,7 +88267,7 @@ } }, { - "id": 29435, + "id": 31928, "properties": { "east": "low", "north": "tall", @@ -79390,7 +88278,7 @@ } }, { - "id": 29436, + "id": 31929, "properties": { "east": "low", "north": "tall", @@ -79401,7 +88289,7 @@ } }, { - "id": 29437, + "id": 31930, "properties": { "east": "low", "north": "tall", @@ -79412,7 +88300,7 @@ } }, { - "id": 29438, + "id": 31931, "properties": { "east": "low", "north": "tall", @@ -79423,7 +88311,7 @@ } }, { - "id": 29439, + "id": 31932, "properties": { "east": "low", "north": "tall", @@ -79434,7 +88322,7 @@ } }, { - "id": 29440, + "id": 31933, "properties": { "east": "low", "north": "tall", @@ -79445,7 +88333,7 @@ } }, { - "id": 29441, + "id": 31934, "properties": { "east": "low", "north": "tall", @@ -79456,7 +88344,7 @@ } }, { - "id": 29442, + "id": 31935, "properties": { "east": "low", "north": "tall", @@ -79467,7 +88355,7 @@ } }, { - "id": 29443, + "id": 31936, "properties": { "east": "low", "north": "tall", @@ -79478,7 +88366,7 @@ } }, { - "id": 29444, + "id": 31937, "properties": { "east": "low", "north": "tall", @@ -79489,7 +88377,7 @@ } }, { - "id": 29445, + "id": 31938, "properties": { "east": "low", "north": "tall", @@ -79500,7 +88388,7 @@ } }, { - "id": 29446, + "id": 31939, "properties": { "east": "low", "north": "tall", @@ -79511,7 +88399,7 @@ } }, { - "id": 29447, + "id": 31940, "properties": { "east": "low", "north": "tall", @@ -79522,7 +88410,7 @@ } }, { - "id": 29448, + "id": 31941, "properties": { "east": "low", "north": "tall", @@ -79533,7 +88421,7 @@ } }, { - "id": 29449, + "id": 31942, "properties": { "east": "low", "north": "tall", @@ -79544,7 +88432,7 @@ } }, { - "id": 29450, + "id": 31943, "properties": { "east": "low", "north": "tall", @@ -79555,7 +88443,7 @@ } }, { - "id": 29451, + "id": 31944, "properties": { "east": "low", "north": "tall", @@ -79566,7 +88454,7 @@ } }, { - "id": 29452, + "id": 31945, "properties": { "east": "low", "north": "tall", @@ -79577,7 +88465,7 @@ } }, { - "id": 29453, + "id": 31946, "properties": { "east": "low", "north": "tall", @@ -79588,7 +88476,7 @@ } }, { - "id": 29454, + "id": 31947, "properties": { "east": "low", "north": "tall", @@ -79599,7 +88487,7 @@ } }, { - "id": 29455, + "id": 31948, "properties": { "east": "low", "north": "tall", @@ -79610,7 +88498,7 @@ } }, { - "id": 29456, + "id": 31949, "properties": { "east": "low", "north": "tall", @@ -79621,7 +88509,7 @@ } }, { - "id": 29457, + "id": 31950, "properties": { "east": "low", "north": "tall", @@ -79632,7 +88520,7 @@ } }, { - "id": 29458, + "id": 31951, "properties": { "east": "low", "north": "tall", @@ -79643,7 +88531,7 @@ } }, { - "id": 29459, + "id": 31952, "properties": { "east": "low", "north": "tall", @@ -79654,7 +88542,7 @@ } }, { - "id": 29460, + "id": 31953, "properties": { "east": "low", "north": "tall", @@ -79665,7 +88553,7 @@ } }, { - "id": 29461, + "id": 31954, "properties": { "east": "low", "north": "tall", @@ -79676,7 +88564,7 @@ } }, { - "id": 29462, + "id": 31955, "properties": { "east": "tall", "north": "none", @@ -79687,7 +88575,7 @@ } }, { - "id": 29463, + "id": 31956, "properties": { "east": "tall", "north": "none", @@ -79698,7 +88586,7 @@ } }, { - "id": 29464, + "id": 31957, "properties": { "east": "tall", "north": "none", @@ -79709,7 +88597,7 @@ } }, { - "id": 29465, + "id": 31958, "properties": { "east": "tall", "north": "none", @@ -79720,7 +88608,7 @@ } }, { - "id": 29466, + "id": 31959, "properties": { "east": "tall", "north": "none", @@ -79731,7 +88619,7 @@ } }, { - "id": 29467, + "id": 31960, "properties": { "east": "tall", "north": "none", @@ -79742,7 +88630,7 @@ } }, { - "id": 29468, + "id": 31961, "properties": { "east": "tall", "north": "none", @@ -79753,7 +88641,7 @@ } }, { - "id": 29469, + "id": 31962, "properties": { "east": "tall", "north": "none", @@ -79764,7 +88652,7 @@ } }, { - "id": 29470, + "id": 31963, "properties": { "east": "tall", "north": "none", @@ -79775,7 +88663,7 @@ } }, { - "id": 29471, + "id": 31964, "properties": { "east": "tall", "north": "none", @@ -79786,7 +88674,7 @@ } }, { - "id": 29472, + "id": 31965, "properties": { "east": "tall", "north": "none", @@ -79797,7 +88685,7 @@ } }, { - "id": 29473, + "id": 31966, "properties": { "east": "tall", "north": "none", @@ -79808,7 +88696,7 @@ } }, { - "id": 29474, + "id": 31967, "properties": { "east": "tall", "north": "none", @@ -79819,7 +88707,7 @@ } }, { - "id": 29475, + "id": 31968, "properties": { "east": "tall", "north": "none", @@ -79830,7 +88718,7 @@ } }, { - "id": 29476, + "id": 31969, "properties": { "east": "tall", "north": "none", @@ -79841,7 +88729,7 @@ } }, { - "id": 29477, + "id": 31970, "properties": { "east": "tall", "north": "none", @@ -79852,7 +88740,7 @@ } }, { - "id": 29478, + "id": 31971, "properties": { "east": "tall", "north": "none", @@ -79863,7 +88751,7 @@ } }, { - "id": 29479, + "id": 31972, "properties": { "east": "tall", "north": "none", @@ -79874,7 +88762,7 @@ } }, { - "id": 29480, + "id": 31973, "properties": { "east": "tall", "north": "none", @@ -79885,7 +88773,7 @@ } }, { - "id": 29481, + "id": 31974, "properties": { "east": "tall", "north": "none", @@ -79896,7 +88784,7 @@ } }, { - "id": 29482, + "id": 31975, "properties": { "east": "tall", "north": "none", @@ -79907,7 +88795,7 @@ } }, { - "id": 29483, + "id": 31976, "properties": { "east": "tall", "north": "none", @@ -79918,7 +88806,7 @@ } }, { - "id": 29484, + "id": 31977, "properties": { "east": "tall", "north": "none", @@ -79929,7 +88817,7 @@ } }, { - "id": 29485, + "id": 31978, "properties": { "east": "tall", "north": "none", @@ -79940,7 +88828,7 @@ } }, { - "id": 29486, + "id": 31979, "properties": { "east": "tall", "north": "none", @@ -79951,7 +88839,7 @@ } }, { - "id": 29487, + "id": 31980, "properties": { "east": "tall", "north": "none", @@ -79962,7 +88850,7 @@ } }, { - "id": 29488, + "id": 31981, "properties": { "east": "tall", "north": "none", @@ -79973,7 +88861,7 @@ } }, { - "id": 29489, + "id": 31982, "properties": { "east": "tall", "north": "none", @@ -79984,7 +88872,7 @@ } }, { - "id": 29490, + "id": 31983, "properties": { "east": "tall", "north": "none", @@ -79995,7 +88883,7 @@ } }, { - "id": 29491, + "id": 31984, "properties": { "east": "tall", "north": "none", @@ -80006,7 +88894,7 @@ } }, { - "id": 29492, + "id": 31985, "properties": { "east": "tall", "north": "none", @@ -80017,7 +88905,7 @@ } }, { - "id": 29493, + "id": 31986, "properties": { "east": "tall", "north": "none", @@ -80028,7 +88916,7 @@ } }, { - "id": 29494, + "id": 31987, "properties": { "east": "tall", "north": "none", @@ -80039,7 +88927,7 @@ } }, { - "id": 29495, + "id": 31988, "properties": { "east": "tall", "north": "none", @@ -80050,7 +88938,7 @@ } }, { - "id": 29496, + "id": 31989, "properties": { "east": "tall", "north": "none", @@ -80061,7 +88949,7 @@ } }, { - "id": 29497, + "id": 31990, "properties": { "east": "tall", "north": "none", @@ -80072,7 +88960,7 @@ } }, { - "id": 29498, + "id": 31991, "properties": { "east": "tall", "north": "low", @@ -80083,7 +88971,7 @@ } }, { - "id": 29499, + "id": 31992, "properties": { "east": "tall", "north": "low", @@ -80094,7 +88982,7 @@ } }, { - "id": 29500, + "id": 31993, "properties": { "east": "tall", "north": "low", @@ -80105,7 +88993,7 @@ } }, { - "id": 29501, + "id": 31994, "properties": { "east": "tall", "north": "low", @@ -80116,7 +89004,7 @@ } }, { - "id": 29502, + "id": 31995, "properties": { "east": "tall", "north": "low", @@ -80127,7 +89015,7 @@ } }, { - "id": 29503, + "id": 31996, "properties": { "east": "tall", "north": "low", @@ -80138,7 +89026,7 @@ } }, { - "id": 29504, + "id": 31997, "properties": { "east": "tall", "north": "low", @@ -80149,7 +89037,7 @@ } }, { - "id": 29505, + "id": 31998, "properties": { "east": "tall", "north": "low", @@ -80160,7 +89048,7 @@ } }, { - "id": 29506, + "id": 31999, "properties": { "east": "tall", "north": "low", @@ -80171,7 +89059,7 @@ } }, { - "id": 29507, + "id": 32000, "properties": { "east": "tall", "north": "low", @@ -80182,7 +89070,7 @@ } }, { - "id": 29508, + "id": 32001, "properties": { "east": "tall", "north": "low", @@ -80193,7 +89081,7 @@ } }, { - "id": 29509, + "id": 32002, "properties": { "east": "tall", "north": "low", @@ -80204,7 +89092,7 @@ } }, { - "id": 29510, + "id": 32003, "properties": { "east": "tall", "north": "low", @@ -80215,7 +89103,7 @@ } }, { - "id": 29511, + "id": 32004, "properties": { "east": "tall", "north": "low", @@ -80226,7 +89114,7 @@ } }, { - "id": 29512, + "id": 32005, "properties": { "east": "tall", "north": "low", @@ -80237,7 +89125,7 @@ } }, { - "id": 29513, + "id": 32006, "properties": { "east": "tall", "north": "low", @@ -80248,7 +89136,7 @@ } }, { - "id": 29514, + "id": 32007, "properties": { "east": "tall", "north": "low", @@ -80259,7 +89147,7 @@ } }, { - "id": 29515, + "id": 32008, "properties": { "east": "tall", "north": "low", @@ -80270,7 +89158,7 @@ } }, { - "id": 29516, + "id": 32009, "properties": { "east": "tall", "north": "low", @@ -80281,7 +89169,7 @@ } }, { - "id": 29517, + "id": 32010, "properties": { "east": "tall", "north": "low", @@ -80292,7 +89180,7 @@ } }, { - "id": 29518, + "id": 32011, "properties": { "east": "tall", "north": "low", @@ -80303,7 +89191,7 @@ } }, { - "id": 29519, + "id": 32012, "properties": { "east": "tall", "north": "low", @@ -80314,7 +89202,7 @@ } }, { - "id": 29520, + "id": 32013, "properties": { "east": "tall", "north": "low", @@ -80325,7 +89213,7 @@ } }, { - "id": 29521, + "id": 32014, "properties": { "east": "tall", "north": "low", @@ -80336,7 +89224,7 @@ } }, { - "id": 29522, + "id": 32015, "properties": { "east": "tall", "north": "low", @@ -80347,7 +89235,7 @@ } }, { - "id": 29523, + "id": 32016, "properties": { "east": "tall", "north": "low", @@ -80358,7 +89246,7 @@ } }, { - "id": 29524, + "id": 32017, "properties": { "east": "tall", "north": "low", @@ -80369,7 +89257,7 @@ } }, { - "id": 29525, + "id": 32018, "properties": { "east": "tall", "north": "low", @@ -80380,7 +89268,7 @@ } }, { - "id": 29526, + "id": 32019, "properties": { "east": "tall", "north": "low", @@ -80391,7 +89279,7 @@ } }, { - "id": 29527, + "id": 32020, "properties": { "east": "tall", "north": "low", @@ -80402,7 +89290,7 @@ } }, { - "id": 29528, + "id": 32021, "properties": { "east": "tall", "north": "low", @@ -80413,7 +89301,7 @@ } }, { - "id": 29529, + "id": 32022, "properties": { "east": "tall", "north": "low", @@ -80424,7 +89312,7 @@ } }, { - "id": 29530, + "id": 32023, "properties": { "east": "tall", "north": "low", @@ -80435,7 +89323,7 @@ } }, { - "id": 29531, + "id": 32024, "properties": { "east": "tall", "north": "low", @@ -80446,7 +89334,7 @@ } }, { - "id": 29532, + "id": 32025, "properties": { "east": "tall", "north": "low", @@ -80457,7 +89345,7 @@ } }, { - "id": 29533, + "id": 32026, "properties": { "east": "tall", "north": "low", @@ -80468,7 +89356,7 @@ } }, { - "id": 29534, + "id": 32027, "properties": { "east": "tall", "north": "tall", @@ -80479,7 +89367,7 @@ } }, { - "id": 29535, + "id": 32028, "properties": { "east": "tall", "north": "tall", @@ -80490,7 +89378,7 @@ } }, { - "id": 29536, + "id": 32029, "properties": { "east": "tall", "north": "tall", @@ -80501,7 +89389,7 @@ } }, { - "id": 29537, + "id": 32030, "properties": { "east": "tall", "north": "tall", @@ -80512,7 +89400,7 @@ } }, { - "id": 29538, + "id": 32031, "properties": { "east": "tall", "north": "tall", @@ -80523,7 +89411,7 @@ } }, { - "id": 29539, + "id": 32032, "properties": { "east": "tall", "north": "tall", @@ -80534,7 +89422,7 @@ } }, { - "id": 29540, + "id": 32033, "properties": { "east": "tall", "north": "tall", @@ -80545,7 +89433,7 @@ } }, { - "id": 29541, + "id": 32034, "properties": { "east": "tall", "north": "tall", @@ -80556,7 +89444,7 @@ } }, { - "id": 29542, + "id": 32035, "properties": { "east": "tall", "north": "tall", @@ -80567,7 +89455,7 @@ } }, { - "id": 29543, + "id": 32036, "properties": { "east": "tall", "north": "tall", @@ -80578,7 +89466,7 @@ } }, { - "id": 29544, + "id": 32037, "properties": { "east": "tall", "north": "tall", @@ -80589,7 +89477,7 @@ } }, { - "id": 29545, + "id": 32038, "properties": { "east": "tall", "north": "tall", @@ -80600,7 +89488,7 @@ } }, { - "id": 29546, + "id": 32039, "properties": { "east": "tall", "north": "tall", @@ -80611,7 +89499,7 @@ } }, { - "id": 29547, + "id": 32040, "properties": { "east": "tall", "north": "tall", @@ -80622,7 +89510,7 @@ } }, { - "id": 29548, + "id": 32041, "properties": { "east": "tall", "north": "tall", @@ -80633,7 +89521,7 @@ } }, { - "id": 29549, + "id": 32042, "properties": { "east": "tall", "north": "tall", @@ -80644,7 +89532,7 @@ } }, { - "id": 29550, + "id": 32043, "properties": { "east": "tall", "north": "tall", @@ -80655,7 +89543,7 @@ } }, { - "id": 29551, + "id": 32044, "properties": { "east": "tall", "north": "tall", @@ -80666,7 +89554,7 @@ } }, { - "id": 29552, + "id": 32045, "properties": { "east": "tall", "north": "tall", @@ -80677,7 +89565,7 @@ } }, { - "id": 29553, + "id": 32046, "properties": { "east": "tall", "north": "tall", @@ -80688,7 +89576,7 @@ } }, { - "id": 29554, + "id": 32047, "properties": { "east": "tall", "north": "tall", @@ -80699,7 +89587,7 @@ } }, { - "id": 29555, + "id": 32048, "properties": { "east": "tall", "north": "tall", @@ -80710,7 +89598,7 @@ } }, { - "id": 29556, + "id": 32049, "properties": { "east": "tall", "north": "tall", @@ -80721,7 +89609,7 @@ } }, { - "id": 29557, + "id": 32050, "properties": { "east": "tall", "north": "tall", @@ -80732,7 +89620,7 @@ } }, { - "id": 29558, + "id": 32051, "properties": { "east": "tall", "north": "tall", @@ -80743,7 +89631,7 @@ } }, { - "id": 29559, + "id": 32052, "properties": { "east": "tall", "north": "tall", @@ -80754,7 +89642,7 @@ } }, { - "id": 29560, + "id": 32053, "properties": { "east": "tall", "north": "tall", @@ -80765,7 +89653,7 @@ } }, { - "id": 29561, + "id": 32054, "properties": { "east": "tall", "north": "tall", @@ -80776,7 +89664,7 @@ } }, { - "id": 29562, + "id": 32055, "properties": { "east": "tall", "north": "tall", @@ -80787,7 +89675,7 @@ } }, { - "id": 29563, + "id": 32056, "properties": { "east": "tall", "north": "tall", @@ -80798,7 +89686,7 @@ } }, { - "id": 29564, + "id": 32057, "properties": { "east": "tall", "north": "tall", @@ -80809,7 +89697,7 @@ } }, { - "id": 29565, + "id": 32058, "properties": { "east": "tall", "north": "tall", @@ -80820,7 +89708,7 @@ } }, { - "id": 29566, + "id": 32059, "properties": { "east": "tall", "north": "tall", @@ -80831,7 +89719,7 @@ } }, { - "id": 29567, + "id": 32060, "properties": { "east": "tall", "north": "tall", @@ -80842,7 +89730,7 @@ } }, { - "id": 29568, + "id": 32061, "properties": { "east": "tall", "north": "tall", @@ -80853,7 +89741,7 @@ } }, { - "id": 29569, + "id": 32062, "properties": { "east": "tall", "north": "tall", @@ -80873,7 +89761,7 @@ "states": [ { "default": true, - "id": 29159 + "id": 31652 } ] }, @@ -80903,7 +89791,7 @@ "states": [ { "default": true, - "id": 25314 + "id": 27791 } ] }, @@ -81029,21 +89917,21 @@ }, "states": [ { - "id": 28829, + "id": 31322, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 28830, + "id": 31323, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 28831, + "id": 31324, "properties": { "type": "bottom", "waterlogged": "true" @@ -81051,21 +89939,21 @@ }, { "default": true, - "id": 28832, + "id": 31325, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 28833, + "id": 31326, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 28834, + "id": 31327, "properties": { "type": "double", "waterlogged": "false" @@ -81106,7 +89994,7 @@ }, "states": [ { - "id": 28749, + "id": 31242, "properties": { "facing": "north", "half": "top", @@ -81115,7 +90003,7 @@ } }, { - "id": 28750, + "id": 31243, "properties": { "facing": "north", "half": "top", @@ -81124,7 +90012,7 @@ } }, { - "id": 28751, + "id": 31244, "properties": { "facing": "north", "half": "top", @@ -81133,7 +90021,7 @@ } }, { - "id": 28752, + "id": 31245, "properties": { "facing": "north", "half": "top", @@ -81142,7 +90030,7 @@ } }, { - "id": 28753, + "id": 31246, "properties": { "facing": "north", "half": "top", @@ -81151,7 +90039,7 @@ } }, { - "id": 28754, + "id": 31247, "properties": { "facing": "north", "half": "top", @@ -81160,7 +90048,7 @@ } }, { - "id": 28755, + "id": 31248, "properties": { "facing": "north", "half": "top", @@ -81169,7 +90057,7 @@ } }, { - "id": 28756, + "id": 31249, "properties": { "facing": "north", "half": "top", @@ -81178,7 +90066,7 @@ } }, { - "id": 28757, + "id": 31250, "properties": { "facing": "north", "half": "top", @@ -81187,7 +90075,7 @@ } }, { - "id": 28758, + "id": 31251, "properties": { "facing": "north", "half": "top", @@ -81196,7 +90084,7 @@ } }, { - "id": 28759, + "id": 31252, "properties": { "facing": "north", "half": "bottom", @@ -81206,7 +90094,7 @@ }, { "default": true, - "id": 28760, + "id": 31253, "properties": { "facing": "north", "half": "bottom", @@ -81215,7 +90103,7 @@ } }, { - "id": 28761, + "id": 31254, "properties": { "facing": "north", "half": "bottom", @@ -81224,7 +90112,7 @@ } }, { - "id": 28762, + "id": 31255, "properties": { "facing": "north", "half": "bottom", @@ -81233,7 +90121,7 @@ } }, { - "id": 28763, + "id": 31256, "properties": { "facing": "north", "half": "bottom", @@ -81242,7 +90130,7 @@ } }, { - "id": 28764, + "id": 31257, "properties": { "facing": "north", "half": "bottom", @@ -81251,7 +90139,7 @@ } }, { - "id": 28765, + "id": 31258, "properties": { "facing": "north", "half": "bottom", @@ -81260,7 +90148,7 @@ } }, { - "id": 28766, + "id": 31259, "properties": { "facing": "north", "half": "bottom", @@ -81269,7 +90157,7 @@ } }, { - "id": 28767, + "id": 31260, "properties": { "facing": "north", "half": "bottom", @@ -81278,7 +90166,7 @@ } }, { - "id": 28768, + "id": 31261, "properties": { "facing": "north", "half": "bottom", @@ -81287,7 +90175,7 @@ } }, { - "id": 28769, + "id": 31262, "properties": { "facing": "south", "half": "top", @@ -81296,7 +90184,7 @@ } }, { - "id": 28770, + "id": 31263, "properties": { "facing": "south", "half": "top", @@ -81305,7 +90193,7 @@ } }, { - "id": 28771, + "id": 31264, "properties": { "facing": "south", "half": "top", @@ -81314,7 +90202,7 @@ } }, { - "id": 28772, + "id": 31265, "properties": { "facing": "south", "half": "top", @@ -81323,7 +90211,7 @@ } }, { - "id": 28773, + "id": 31266, "properties": { "facing": "south", "half": "top", @@ -81332,7 +90220,7 @@ } }, { - "id": 28774, + "id": 31267, "properties": { "facing": "south", "half": "top", @@ -81341,7 +90229,7 @@ } }, { - "id": 28775, + "id": 31268, "properties": { "facing": "south", "half": "top", @@ -81350,7 +90238,7 @@ } }, { - "id": 28776, + "id": 31269, "properties": { "facing": "south", "half": "top", @@ -81359,7 +90247,7 @@ } }, { - "id": 28777, + "id": 31270, "properties": { "facing": "south", "half": "top", @@ -81368,7 +90256,7 @@ } }, { - "id": 28778, + "id": 31271, "properties": { "facing": "south", "half": "top", @@ -81377,7 +90265,7 @@ } }, { - "id": 28779, + "id": 31272, "properties": { "facing": "south", "half": "bottom", @@ -81386,7 +90274,7 @@ } }, { - "id": 28780, + "id": 31273, "properties": { "facing": "south", "half": "bottom", @@ -81395,7 +90283,7 @@ } }, { - "id": 28781, + "id": 31274, "properties": { "facing": "south", "half": "bottom", @@ -81404,7 +90292,7 @@ } }, { - "id": 28782, + "id": 31275, "properties": { "facing": "south", "half": "bottom", @@ -81413,7 +90301,7 @@ } }, { - "id": 28783, + "id": 31276, "properties": { "facing": "south", "half": "bottom", @@ -81422,7 +90310,7 @@ } }, { - "id": 28784, + "id": 31277, "properties": { "facing": "south", "half": "bottom", @@ -81431,7 +90319,7 @@ } }, { - "id": 28785, + "id": 31278, "properties": { "facing": "south", "half": "bottom", @@ -81440,7 +90328,7 @@ } }, { - "id": 28786, + "id": 31279, "properties": { "facing": "south", "half": "bottom", @@ -81449,7 +90337,7 @@ } }, { - "id": 28787, + "id": 31280, "properties": { "facing": "south", "half": "bottom", @@ -81458,7 +90346,7 @@ } }, { - "id": 28788, + "id": 31281, "properties": { "facing": "south", "half": "bottom", @@ -81467,7 +90355,7 @@ } }, { - "id": 28789, + "id": 31282, "properties": { "facing": "west", "half": "top", @@ -81476,7 +90364,7 @@ } }, { - "id": 28790, + "id": 31283, "properties": { "facing": "west", "half": "top", @@ -81485,7 +90373,7 @@ } }, { - "id": 28791, + "id": 31284, "properties": { "facing": "west", "half": "top", @@ -81494,7 +90382,7 @@ } }, { - "id": 28792, + "id": 31285, "properties": { "facing": "west", "half": "top", @@ -81503,7 +90391,7 @@ } }, { - "id": 28793, + "id": 31286, "properties": { "facing": "west", "half": "top", @@ -81512,7 +90400,7 @@ } }, { - "id": 28794, + "id": 31287, "properties": { "facing": "west", "half": "top", @@ -81521,7 +90409,7 @@ } }, { - "id": 28795, + "id": 31288, "properties": { "facing": "west", "half": "top", @@ -81530,7 +90418,7 @@ } }, { - "id": 28796, + "id": 31289, "properties": { "facing": "west", "half": "top", @@ -81539,7 +90427,7 @@ } }, { - "id": 28797, + "id": 31290, "properties": { "facing": "west", "half": "top", @@ -81548,7 +90436,7 @@ } }, { - "id": 28798, + "id": 31291, "properties": { "facing": "west", "half": "top", @@ -81557,7 +90445,7 @@ } }, { - "id": 28799, + "id": 31292, "properties": { "facing": "west", "half": "bottom", @@ -81566,7 +90454,7 @@ } }, { - "id": 28800, + "id": 31293, "properties": { "facing": "west", "half": "bottom", @@ -81575,7 +90463,7 @@ } }, { - "id": 28801, + "id": 31294, "properties": { "facing": "west", "half": "bottom", @@ -81584,7 +90472,7 @@ } }, { - "id": 28802, + "id": 31295, "properties": { "facing": "west", "half": "bottom", @@ -81593,7 +90481,7 @@ } }, { - "id": 28803, + "id": 31296, "properties": { "facing": "west", "half": "bottom", @@ -81602,7 +90490,7 @@ } }, { - "id": 28804, + "id": 31297, "properties": { "facing": "west", "half": "bottom", @@ -81611,7 +90499,7 @@ } }, { - "id": 28805, + "id": 31298, "properties": { "facing": "west", "half": "bottom", @@ -81620,7 +90508,7 @@ } }, { - "id": 28806, + "id": 31299, "properties": { "facing": "west", "half": "bottom", @@ -81629,7 +90517,7 @@ } }, { - "id": 28807, + "id": 31300, "properties": { "facing": "west", "half": "bottom", @@ -81638,7 +90526,7 @@ } }, { - "id": 28808, + "id": 31301, "properties": { "facing": "west", "half": "bottom", @@ -81647,7 +90535,7 @@ } }, { - "id": 28809, + "id": 31302, "properties": { "facing": "east", "half": "top", @@ -81656,7 +90544,7 @@ } }, { - "id": 28810, + "id": 31303, "properties": { "facing": "east", "half": "top", @@ -81665,7 +90553,7 @@ } }, { - "id": 28811, + "id": 31304, "properties": { "facing": "east", "half": "top", @@ -81674,7 +90562,7 @@ } }, { - "id": 28812, + "id": 31305, "properties": { "facing": "east", "half": "top", @@ -81683,7 +90571,7 @@ } }, { - "id": 28813, + "id": 31306, "properties": { "facing": "east", "half": "top", @@ -81692,7 +90580,7 @@ } }, { - "id": 28814, + "id": 31307, "properties": { "facing": "east", "half": "top", @@ -81701,7 +90589,7 @@ } }, { - "id": 28815, + "id": 31308, "properties": { "facing": "east", "half": "top", @@ -81710,7 +90598,7 @@ } }, { - "id": 28816, + "id": 31309, "properties": { "facing": "east", "half": "top", @@ -81719,7 +90607,7 @@ } }, { - "id": 28817, + "id": 31310, "properties": { "facing": "east", "half": "top", @@ -81728,7 +90616,7 @@ } }, { - "id": 28818, + "id": 31311, "properties": { "facing": "east", "half": "top", @@ -81737,7 +90625,7 @@ } }, { - "id": 28819, + "id": 31312, "properties": { "facing": "east", "half": "bottom", @@ -81746,7 +90634,7 @@ } }, { - "id": 28820, + "id": 31313, "properties": { "facing": "east", "half": "bottom", @@ -81755,7 +90643,7 @@ } }, { - "id": 28821, + "id": 31314, "properties": { "facing": "east", "half": "bottom", @@ -81764,7 +90652,7 @@ } }, { - "id": 28822, + "id": 31315, "properties": { "facing": "east", "half": "bottom", @@ -81773,7 +90661,7 @@ } }, { - "id": 28823, + "id": 31316, "properties": { "facing": "east", "half": "bottom", @@ -81782,7 +90670,7 @@ } }, { - "id": 28824, + "id": 31317, "properties": { "facing": "east", "half": "bottom", @@ -81791,7 +90679,7 @@ } }, { - "id": 28825, + "id": 31318, "properties": { "facing": "east", "half": "bottom", @@ -81800,7 +90688,7 @@ } }, { - "id": 28826, + "id": 31319, "properties": { "facing": "east", "half": "bottom", @@ -81809,7 +90697,7 @@ } }, { - "id": 28827, + "id": 31320, "properties": { "facing": "east", "half": "bottom", @@ -81818,7 +90706,7 @@ } }, { - "id": 28828, + "id": 31321, "properties": { "facing": "east", "half": "bottom", @@ -81865,7 +90753,7 @@ }, "states": [ { - "id": 28835, + "id": 31328, "properties": { "east": "none", "north": "none", @@ -81876,7 +90764,7 @@ } }, { - "id": 28836, + "id": 31329, "properties": { "east": "none", "north": "none", @@ -81887,7 +90775,7 @@ } }, { - "id": 28837, + "id": 31330, "properties": { "east": "none", "north": "none", @@ -81899,7 +90787,7 @@ }, { "default": true, - "id": 28838, + "id": 31331, "properties": { "east": "none", "north": "none", @@ -81910,7 +90798,7 @@ } }, { - "id": 28839, + "id": 31332, "properties": { "east": "none", "north": "none", @@ -81921,7 +90809,7 @@ } }, { - "id": 28840, + "id": 31333, "properties": { "east": "none", "north": "none", @@ -81932,7 +90820,7 @@ } }, { - "id": 28841, + "id": 31334, "properties": { "east": "none", "north": "none", @@ -81943,7 +90831,7 @@ } }, { - "id": 28842, + "id": 31335, "properties": { "east": "none", "north": "none", @@ -81954,7 +90842,7 @@ } }, { - "id": 28843, + "id": 31336, "properties": { "east": "none", "north": "none", @@ -81965,7 +90853,7 @@ } }, { - "id": 28844, + "id": 31337, "properties": { "east": "none", "north": "none", @@ -81976,7 +90864,7 @@ } }, { - "id": 28845, + "id": 31338, "properties": { "east": "none", "north": "none", @@ -81987,7 +90875,7 @@ } }, { - "id": 28846, + "id": 31339, "properties": { "east": "none", "north": "none", @@ -81998,7 +90886,7 @@ } }, { - "id": 28847, + "id": 31340, "properties": { "east": "none", "north": "none", @@ -82009,7 +90897,7 @@ } }, { - "id": 28848, + "id": 31341, "properties": { "east": "none", "north": "none", @@ -82020,7 +90908,7 @@ } }, { - "id": 28849, + "id": 31342, "properties": { "east": "none", "north": "none", @@ -82031,7 +90919,7 @@ } }, { - "id": 28850, + "id": 31343, "properties": { "east": "none", "north": "none", @@ -82042,7 +90930,7 @@ } }, { - "id": 28851, + "id": 31344, "properties": { "east": "none", "north": "none", @@ -82053,7 +90941,7 @@ } }, { - "id": 28852, + "id": 31345, "properties": { "east": "none", "north": "none", @@ -82064,7 +90952,7 @@ } }, { - "id": 28853, + "id": 31346, "properties": { "east": "none", "north": "none", @@ -82075,7 +90963,7 @@ } }, { - "id": 28854, + "id": 31347, "properties": { "east": "none", "north": "none", @@ -82086,7 +90974,7 @@ } }, { - "id": 28855, + "id": 31348, "properties": { "east": "none", "north": "none", @@ -82097,7 +90985,7 @@ } }, { - "id": 28856, + "id": 31349, "properties": { "east": "none", "north": "none", @@ -82108,7 +90996,7 @@ } }, { - "id": 28857, + "id": 31350, "properties": { "east": "none", "north": "none", @@ -82119,7 +91007,7 @@ } }, { - "id": 28858, + "id": 31351, "properties": { "east": "none", "north": "none", @@ -82130,7 +91018,7 @@ } }, { - "id": 28859, + "id": 31352, "properties": { "east": "none", "north": "none", @@ -82141,7 +91029,7 @@ } }, { - "id": 28860, + "id": 31353, "properties": { "east": "none", "north": "none", @@ -82152,7 +91040,7 @@ } }, { - "id": 28861, + "id": 31354, "properties": { "east": "none", "north": "none", @@ -82163,7 +91051,7 @@ } }, { - "id": 28862, + "id": 31355, "properties": { "east": "none", "north": "none", @@ -82174,7 +91062,7 @@ } }, { - "id": 28863, + "id": 31356, "properties": { "east": "none", "north": "none", @@ -82185,7 +91073,7 @@ } }, { - "id": 28864, + "id": 31357, "properties": { "east": "none", "north": "none", @@ -82196,7 +91084,7 @@ } }, { - "id": 28865, + "id": 31358, "properties": { "east": "none", "north": "none", @@ -82207,7 +91095,7 @@ } }, { - "id": 28866, + "id": 31359, "properties": { "east": "none", "north": "none", @@ -82218,7 +91106,7 @@ } }, { - "id": 28867, + "id": 31360, "properties": { "east": "none", "north": "none", @@ -82229,7 +91117,7 @@ } }, { - "id": 28868, + "id": 31361, "properties": { "east": "none", "north": "none", @@ -82240,7 +91128,7 @@ } }, { - "id": 28869, + "id": 31362, "properties": { "east": "none", "north": "none", @@ -82251,7 +91139,7 @@ } }, { - "id": 28870, + "id": 31363, "properties": { "east": "none", "north": "none", @@ -82262,7 +91150,7 @@ } }, { - "id": 28871, + "id": 31364, "properties": { "east": "none", "north": "low", @@ -82273,7 +91161,7 @@ } }, { - "id": 28872, + "id": 31365, "properties": { "east": "none", "north": "low", @@ -82284,7 +91172,7 @@ } }, { - "id": 28873, + "id": 31366, "properties": { "east": "none", "north": "low", @@ -82295,7 +91183,7 @@ } }, { - "id": 28874, + "id": 31367, "properties": { "east": "none", "north": "low", @@ -82306,7 +91194,7 @@ } }, { - "id": 28875, + "id": 31368, "properties": { "east": "none", "north": "low", @@ -82317,7 +91205,7 @@ } }, { - "id": 28876, + "id": 31369, "properties": { "east": "none", "north": "low", @@ -82328,7 +91216,7 @@ } }, { - "id": 28877, + "id": 31370, "properties": { "east": "none", "north": "low", @@ -82339,7 +91227,7 @@ } }, { - "id": 28878, + "id": 31371, "properties": { "east": "none", "north": "low", @@ -82350,7 +91238,7 @@ } }, { - "id": 28879, + "id": 31372, "properties": { "east": "none", "north": "low", @@ -82361,7 +91249,7 @@ } }, { - "id": 28880, + "id": 31373, "properties": { "east": "none", "north": "low", @@ -82372,7 +91260,7 @@ } }, { - "id": 28881, + "id": 31374, "properties": { "east": "none", "north": "low", @@ -82383,7 +91271,7 @@ } }, { - "id": 28882, + "id": 31375, "properties": { "east": "none", "north": "low", @@ -82394,7 +91282,7 @@ } }, { - "id": 28883, + "id": 31376, "properties": { "east": "none", "north": "low", @@ -82405,7 +91293,7 @@ } }, { - "id": 28884, + "id": 31377, "properties": { "east": "none", "north": "low", @@ -82416,7 +91304,7 @@ } }, { - "id": 28885, + "id": 31378, "properties": { "east": "none", "north": "low", @@ -82427,7 +91315,7 @@ } }, { - "id": 28886, + "id": 31379, "properties": { "east": "none", "north": "low", @@ -82438,7 +91326,7 @@ } }, { - "id": 28887, + "id": 31380, "properties": { "east": "none", "north": "low", @@ -82449,7 +91337,7 @@ } }, { - "id": 28888, + "id": 31381, "properties": { "east": "none", "north": "low", @@ -82460,7 +91348,7 @@ } }, { - "id": 28889, + "id": 31382, "properties": { "east": "none", "north": "low", @@ -82471,7 +91359,7 @@ } }, { - "id": 28890, + "id": 31383, "properties": { "east": "none", "north": "low", @@ -82482,7 +91370,7 @@ } }, { - "id": 28891, + "id": 31384, "properties": { "east": "none", "north": "low", @@ -82493,7 +91381,7 @@ } }, { - "id": 28892, + "id": 31385, "properties": { "east": "none", "north": "low", @@ -82504,7 +91392,7 @@ } }, { - "id": 28893, + "id": 31386, "properties": { "east": "none", "north": "low", @@ -82515,7 +91403,7 @@ } }, { - "id": 28894, + "id": 31387, "properties": { "east": "none", "north": "low", @@ -82526,7 +91414,7 @@ } }, { - "id": 28895, + "id": 31388, "properties": { "east": "none", "north": "low", @@ -82537,7 +91425,7 @@ } }, { - "id": 28896, + "id": 31389, "properties": { "east": "none", "north": "low", @@ -82548,7 +91436,7 @@ } }, { - "id": 28897, + "id": 31390, "properties": { "east": "none", "north": "low", @@ -82559,7 +91447,7 @@ } }, { - "id": 28898, + "id": 31391, "properties": { "east": "none", "north": "low", @@ -82570,7 +91458,7 @@ } }, { - "id": 28899, + "id": 31392, "properties": { "east": "none", "north": "low", @@ -82581,7 +91469,7 @@ } }, { - "id": 28900, + "id": 31393, "properties": { "east": "none", "north": "low", @@ -82592,7 +91480,7 @@ } }, { - "id": 28901, + "id": 31394, "properties": { "east": "none", "north": "low", @@ -82603,7 +91491,7 @@ } }, { - "id": 28902, + "id": 31395, "properties": { "east": "none", "north": "low", @@ -82614,7 +91502,7 @@ } }, { - "id": 28903, + "id": 31396, "properties": { "east": "none", "north": "low", @@ -82625,7 +91513,7 @@ } }, { - "id": 28904, + "id": 31397, "properties": { "east": "none", "north": "low", @@ -82636,7 +91524,7 @@ } }, { - "id": 28905, + "id": 31398, "properties": { "east": "none", "north": "low", @@ -82647,7 +91535,7 @@ } }, { - "id": 28906, + "id": 31399, "properties": { "east": "none", "north": "low", @@ -82658,7 +91546,7 @@ } }, { - "id": 28907, + "id": 31400, "properties": { "east": "none", "north": "tall", @@ -82669,7 +91557,7 @@ } }, { - "id": 28908, + "id": 31401, "properties": { "east": "none", "north": "tall", @@ -82680,7 +91568,7 @@ } }, { - "id": 28909, + "id": 31402, "properties": { "east": "none", "north": "tall", @@ -82691,7 +91579,7 @@ } }, { - "id": 28910, + "id": 31403, "properties": { "east": "none", "north": "tall", @@ -82702,7 +91590,7 @@ } }, { - "id": 28911, + "id": 31404, "properties": { "east": "none", "north": "tall", @@ -82713,7 +91601,7 @@ } }, { - "id": 28912, + "id": 31405, "properties": { "east": "none", "north": "tall", @@ -82724,7 +91612,7 @@ } }, { - "id": 28913, + "id": 31406, "properties": { "east": "none", "north": "tall", @@ -82735,7 +91623,7 @@ } }, { - "id": 28914, + "id": 31407, "properties": { "east": "none", "north": "tall", @@ -82746,7 +91634,7 @@ } }, { - "id": 28915, + "id": 31408, "properties": { "east": "none", "north": "tall", @@ -82757,7 +91645,7 @@ } }, { - "id": 28916, + "id": 31409, "properties": { "east": "none", "north": "tall", @@ -82768,7 +91656,7 @@ } }, { - "id": 28917, + "id": 31410, "properties": { "east": "none", "north": "tall", @@ -82779,7 +91667,7 @@ } }, { - "id": 28918, + "id": 31411, "properties": { "east": "none", "north": "tall", @@ -82790,7 +91678,7 @@ } }, { - "id": 28919, + "id": 31412, "properties": { "east": "none", "north": "tall", @@ -82801,7 +91689,7 @@ } }, { - "id": 28920, + "id": 31413, "properties": { "east": "none", "north": "tall", @@ -82812,7 +91700,7 @@ } }, { - "id": 28921, + "id": 31414, "properties": { "east": "none", "north": "tall", @@ -82823,7 +91711,7 @@ } }, { - "id": 28922, + "id": 31415, "properties": { "east": "none", "north": "tall", @@ -82834,7 +91722,7 @@ } }, { - "id": 28923, + "id": 31416, "properties": { "east": "none", "north": "tall", @@ -82845,7 +91733,7 @@ } }, { - "id": 28924, + "id": 31417, "properties": { "east": "none", "north": "tall", @@ -82856,7 +91744,7 @@ } }, { - "id": 28925, + "id": 31418, "properties": { "east": "none", "north": "tall", @@ -82867,7 +91755,7 @@ } }, { - "id": 28926, + "id": 31419, "properties": { "east": "none", "north": "tall", @@ -82878,7 +91766,7 @@ } }, { - "id": 28927, + "id": 31420, "properties": { "east": "none", "north": "tall", @@ -82889,7 +91777,7 @@ } }, { - "id": 28928, + "id": 31421, "properties": { "east": "none", "north": "tall", @@ -82900,7 +91788,7 @@ } }, { - "id": 28929, + "id": 31422, "properties": { "east": "none", "north": "tall", @@ -82911,7 +91799,7 @@ } }, { - "id": 28930, + "id": 31423, "properties": { "east": "none", "north": "tall", @@ -82922,7 +91810,7 @@ } }, { - "id": 28931, + "id": 31424, "properties": { "east": "none", "north": "tall", @@ -82933,7 +91821,7 @@ } }, { - "id": 28932, + "id": 31425, "properties": { "east": "none", "north": "tall", @@ -82944,7 +91832,7 @@ } }, { - "id": 28933, + "id": 31426, "properties": { "east": "none", "north": "tall", @@ -82955,7 +91843,7 @@ } }, { - "id": 28934, + "id": 31427, "properties": { "east": "none", "north": "tall", @@ -82966,7 +91854,7 @@ } }, { - "id": 28935, + "id": 31428, "properties": { "east": "none", "north": "tall", @@ -82977,7 +91865,7 @@ } }, { - "id": 28936, + "id": 31429, "properties": { "east": "none", "north": "tall", @@ -82988,7 +91876,7 @@ } }, { - "id": 28937, + "id": 31430, "properties": { "east": "none", "north": "tall", @@ -82999,7 +91887,7 @@ } }, { - "id": 28938, + "id": 31431, "properties": { "east": "none", "north": "tall", @@ -83010,7 +91898,7 @@ } }, { - "id": 28939, + "id": 31432, "properties": { "east": "none", "north": "tall", @@ -83021,7 +91909,7 @@ } }, { - "id": 28940, + "id": 31433, "properties": { "east": "none", "north": "tall", @@ -83032,7 +91920,7 @@ } }, { - "id": 28941, + "id": 31434, "properties": { "east": "none", "north": "tall", @@ -83043,7 +91931,7 @@ } }, { - "id": 28942, + "id": 31435, "properties": { "east": "none", "north": "tall", @@ -83054,7 +91942,7 @@ } }, { - "id": 28943, + "id": 31436, "properties": { "east": "low", "north": "none", @@ -83065,7 +91953,7 @@ } }, { - "id": 28944, + "id": 31437, "properties": { "east": "low", "north": "none", @@ -83076,7 +91964,7 @@ } }, { - "id": 28945, + "id": 31438, "properties": { "east": "low", "north": "none", @@ -83087,7 +91975,7 @@ } }, { - "id": 28946, + "id": 31439, "properties": { "east": "low", "north": "none", @@ -83098,7 +91986,7 @@ } }, { - "id": 28947, + "id": 31440, "properties": { "east": "low", "north": "none", @@ -83109,7 +91997,7 @@ } }, { - "id": 28948, + "id": 31441, "properties": { "east": "low", "north": "none", @@ -83120,7 +92008,7 @@ } }, { - "id": 28949, + "id": 31442, "properties": { "east": "low", "north": "none", @@ -83131,7 +92019,7 @@ } }, { - "id": 28950, + "id": 31443, "properties": { "east": "low", "north": "none", @@ -83142,7 +92030,7 @@ } }, { - "id": 28951, + "id": 31444, "properties": { "east": "low", "north": "none", @@ -83153,7 +92041,7 @@ } }, { - "id": 28952, + "id": 31445, "properties": { "east": "low", "north": "none", @@ -83164,7 +92052,7 @@ } }, { - "id": 28953, + "id": 31446, "properties": { "east": "low", "north": "none", @@ -83175,7 +92063,7 @@ } }, { - "id": 28954, + "id": 31447, "properties": { "east": "low", "north": "none", @@ -83186,7 +92074,7 @@ } }, { - "id": 28955, + "id": 31448, "properties": { "east": "low", "north": "none", @@ -83197,7 +92085,7 @@ } }, { - "id": 28956, + "id": 31449, "properties": { "east": "low", "north": "none", @@ -83208,7 +92096,7 @@ } }, { - "id": 28957, + "id": 31450, "properties": { "east": "low", "north": "none", @@ -83219,7 +92107,7 @@ } }, { - "id": 28958, + "id": 31451, "properties": { "east": "low", "north": "none", @@ -83230,7 +92118,7 @@ } }, { - "id": 28959, + "id": 31452, "properties": { "east": "low", "north": "none", @@ -83241,7 +92129,7 @@ } }, { - "id": 28960, + "id": 31453, "properties": { "east": "low", "north": "none", @@ -83252,7 +92140,7 @@ } }, { - "id": 28961, + "id": 31454, "properties": { "east": "low", "north": "none", @@ -83263,7 +92151,7 @@ } }, { - "id": 28962, + "id": 31455, "properties": { "east": "low", "north": "none", @@ -83274,7 +92162,7 @@ } }, { - "id": 28963, + "id": 31456, "properties": { "east": "low", "north": "none", @@ -83285,7 +92173,7 @@ } }, { - "id": 28964, + "id": 31457, "properties": { "east": "low", "north": "none", @@ -83296,7 +92184,7 @@ } }, { - "id": 28965, + "id": 31458, "properties": { "east": "low", "north": "none", @@ -83307,7 +92195,7 @@ } }, { - "id": 28966, + "id": 31459, "properties": { "east": "low", "north": "none", @@ -83318,7 +92206,7 @@ } }, { - "id": 28967, + "id": 31460, "properties": { "east": "low", "north": "none", @@ -83329,7 +92217,7 @@ } }, { - "id": 28968, + "id": 31461, "properties": { "east": "low", "north": "none", @@ -83340,7 +92228,7 @@ } }, { - "id": 28969, + "id": 31462, "properties": { "east": "low", "north": "none", @@ -83351,7 +92239,7 @@ } }, { - "id": 28970, + "id": 31463, "properties": { "east": "low", "north": "none", @@ -83362,7 +92250,7 @@ } }, { - "id": 28971, + "id": 31464, "properties": { "east": "low", "north": "none", @@ -83373,7 +92261,7 @@ } }, { - "id": 28972, + "id": 31465, "properties": { "east": "low", "north": "none", @@ -83384,7 +92272,7 @@ } }, { - "id": 28973, + "id": 31466, "properties": { "east": "low", "north": "none", @@ -83395,7 +92283,7 @@ } }, { - "id": 28974, + "id": 31467, "properties": { "east": "low", "north": "none", @@ -83406,7 +92294,7 @@ } }, { - "id": 28975, + "id": 31468, "properties": { "east": "low", "north": "none", @@ -83417,7 +92305,7 @@ } }, { - "id": 28976, + "id": 31469, "properties": { "east": "low", "north": "none", @@ -83428,7 +92316,7 @@ } }, { - "id": 28977, + "id": 31470, "properties": { "east": "low", "north": "none", @@ -83439,7 +92327,7 @@ } }, { - "id": 28978, + "id": 31471, "properties": { "east": "low", "north": "none", @@ -83450,7 +92338,7 @@ } }, { - "id": 28979, + "id": 31472, "properties": { "east": "low", "north": "low", @@ -83461,7 +92349,7 @@ } }, { - "id": 28980, + "id": 31473, "properties": { "east": "low", "north": "low", @@ -83472,7 +92360,7 @@ } }, { - "id": 28981, + "id": 31474, "properties": { "east": "low", "north": "low", @@ -83483,7 +92371,7 @@ } }, { - "id": 28982, + "id": 31475, "properties": { "east": "low", "north": "low", @@ -83494,7 +92382,7 @@ } }, { - "id": 28983, + "id": 31476, "properties": { "east": "low", "north": "low", @@ -83505,7 +92393,7 @@ } }, { - "id": 28984, + "id": 31477, "properties": { "east": "low", "north": "low", @@ -83516,7 +92404,7 @@ } }, { - "id": 28985, + "id": 31478, "properties": { "east": "low", "north": "low", @@ -83527,7 +92415,7 @@ } }, { - "id": 28986, + "id": 31479, "properties": { "east": "low", "north": "low", @@ -83538,7 +92426,7 @@ } }, { - "id": 28987, + "id": 31480, "properties": { "east": "low", "north": "low", @@ -83549,7 +92437,7 @@ } }, { - "id": 28988, + "id": 31481, "properties": { "east": "low", "north": "low", @@ -83560,7 +92448,7 @@ } }, { - "id": 28989, + "id": 31482, "properties": { "east": "low", "north": "low", @@ -83571,7 +92459,7 @@ } }, { - "id": 28990, + "id": 31483, "properties": { "east": "low", "north": "low", @@ -83582,7 +92470,7 @@ } }, { - "id": 28991, + "id": 31484, "properties": { "east": "low", "north": "low", @@ -83593,7 +92481,7 @@ } }, { - "id": 28992, + "id": 31485, "properties": { "east": "low", "north": "low", @@ -83604,7 +92492,7 @@ } }, { - "id": 28993, + "id": 31486, "properties": { "east": "low", "north": "low", @@ -83615,7 +92503,7 @@ } }, { - "id": 28994, + "id": 31487, "properties": { "east": "low", "north": "low", @@ -83626,7 +92514,7 @@ } }, { - "id": 28995, + "id": 31488, "properties": { "east": "low", "north": "low", @@ -83637,7 +92525,7 @@ } }, { - "id": 28996, + "id": 31489, "properties": { "east": "low", "north": "low", @@ -83648,7 +92536,7 @@ } }, { - "id": 28997, + "id": 31490, "properties": { "east": "low", "north": "low", @@ -83659,7 +92547,7 @@ } }, { - "id": 28998, + "id": 31491, "properties": { "east": "low", "north": "low", @@ -83670,7 +92558,7 @@ } }, { - "id": 28999, + "id": 31492, "properties": { "east": "low", "north": "low", @@ -83681,7 +92569,7 @@ } }, { - "id": 29000, + "id": 31493, "properties": { "east": "low", "north": "low", @@ -83692,7 +92580,7 @@ } }, { - "id": 29001, + "id": 31494, "properties": { "east": "low", "north": "low", @@ -83703,7 +92591,7 @@ } }, { - "id": 29002, + "id": 31495, "properties": { "east": "low", "north": "low", @@ -83714,7 +92602,7 @@ } }, { - "id": 29003, + "id": 31496, "properties": { "east": "low", "north": "low", @@ -83725,7 +92613,7 @@ } }, { - "id": 29004, + "id": 31497, "properties": { "east": "low", "north": "low", @@ -83736,7 +92624,7 @@ } }, { - "id": 29005, + "id": 31498, "properties": { "east": "low", "north": "low", @@ -83747,7 +92635,7 @@ } }, { - "id": 29006, + "id": 31499, "properties": { "east": "low", "north": "low", @@ -83758,7 +92646,7 @@ } }, { - "id": 29007, + "id": 31500, "properties": { "east": "low", "north": "low", @@ -83769,7 +92657,7 @@ } }, { - "id": 29008, + "id": 31501, "properties": { "east": "low", "north": "low", @@ -83780,7 +92668,7 @@ } }, { - "id": 29009, + "id": 31502, "properties": { "east": "low", "north": "low", @@ -83791,7 +92679,7 @@ } }, { - "id": 29010, + "id": 31503, "properties": { "east": "low", "north": "low", @@ -83802,7 +92690,7 @@ } }, { - "id": 29011, + "id": 31504, "properties": { "east": "low", "north": "low", @@ -83813,7 +92701,7 @@ } }, { - "id": 29012, + "id": 31505, "properties": { "east": "low", "north": "low", @@ -83824,7 +92712,7 @@ } }, { - "id": 29013, + "id": 31506, "properties": { "east": "low", "north": "low", @@ -83835,7 +92723,7 @@ } }, { - "id": 29014, + "id": 31507, "properties": { "east": "low", "north": "low", @@ -83846,7 +92734,7 @@ } }, { - "id": 29015, + "id": 31508, "properties": { "east": "low", "north": "tall", @@ -83857,7 +92745,7 @@ } }, { - "id": 29016, + "id": 31509, "properties": { "east": "low", "north": "tall", @@ -83868,7 +92756,7 @@ } }, { - "id": 29017, + "id": 31510, "properties": { "east": "low", "north": "tall", @@ -83879,7 +92767,7 @@ } }, { - "id": 29018, + "id": 31511, "properties": { "east": "low", "north": "tall", @@ -83890,7 +92778,7 @@ } }, { - "id": 29019, + "id": 31512, "properties": { "east": "low", "north": "tall", @@ -83901,7 +92789,7 @@ } }, { - "id": 29020, + "id": 31513, "properties": { "east": "low", "north": "tall", @@ -83912,7 +92800,7 @@ } }, { - "id": 29021, + "id": 31514, "properties": { "east": "low", "north": "tall", @@ -83923,7 +92811,7 @@ } }, { - "id": 29022, + "id": 31515, "properties": { "east": "low", "north": "tall", @@ -83934,7 +92822,7 @@ } }, { - "id": 29023, + "id": 31516, "properties": { "east": "low", "north": "tall", @@ -83945,7 +92833,7 @@ } }, { - "id": 29024, + "id": 31517, "properties": { "east": "low", "north": "tall", @@ -83956,7 +92844,7 @@ } }, { - "id": 29025, + "id": 31518, "properties": { "east": "low", "north": "tall", @@ -83967,7 +92855,7 @@ } }, { - "id": 29026, + "id": 31519, "properties": { "east": "low", "north": "tall", @@ -83978,7 +92866,7 @@ } }, { - "id": 29027, + "id": 31520, "properties": { "east": "low", "north": "tall", @@ -83989,7 +92877,7 @@ } }, { - "id": 29028, + "id": 31521, "properties": { "east": "low", "north": "tall", @@ -84000,7 +92888,7 @@ } }, { - "id": 29029, + "id": 31522, "properties": { "east": "low", "north": "tall", @@ -84011,7 +92899,7 @@ } }, { - "id": 29030, + "id": 31523, "properties": { "east": "low", "north": "tall", @@ -84022,7 +92910,7 @@ } }, { - "id": 29031, + "id": 31524, "properties": { "east": "low", "north": "tall", @@ -84033,7 +92921,7 @@ } }, { - "id": 29032, + "id": 31525, "properties": { "east": "low", "north": "tall", @@ -84044,7 +92932,7 @@ } }, { - "id": 29033, + "id": 31526, "properties": { "east": "low", "north": "tall", @@ -84055,7 +92943,7 @@ } }, { - "id": 29034, + "id": 31527, "properties": { "east": "low", "north": "tall", @@ -84066,7 +92954,7 @@ } }, { - "id": 29035, + "id": 31528, "properties": { "east": "low", "north": "tall", @@ -84077,7 +92965,7 @@ } }, { - "id": 29036, + "id": 31529, "properties": { "east": "low", "north": "tall", @@ -84088,7 +92976,7 @@ } }, { - "id": 29037, + "id": 31530, "properties": { "east": "low", "north": "tall", @@ -84099,7 +92987,7 @@ } }, { - "id": 29038, + "id": 31531, "properties": { "east": "low", "north": "tall", @@ -84110,7 +92998,7 @@ } }, { - "id": 29039, + "id": 31532, "properties": { "east": "low", "north": "tall", @@ -84121,7 +93009,7 @@ } }, { - "id": 29040, + "id": 31533, "properties": { "east": "low", "north": "tall", @@ -84132,7 +93020,7 @@ } }, { - "id": 29041, + "id": 31534, "properties": { "east": "low", "north": "tall", @@ -84143,7 +93031,7 @@ } }, { - "id": 29042, + "id": 31535, "properties": { "east": "low", "north": "tall", @@ -84154,7 +93042,7 @@ } }, { - "id": 29043, + "id": 31536, "properties": { "east": "low", "north": "tall", @@ -84165,7 +93053,7 @@ } }, { - "id": 29044, + "id": 31537, "properties": { "east": "low", "north": "tall", @@ -84176,7 +93064,7 @@ } }, { - "id": 29045, + "id": 31538, "properties": { "east": "low", "north": "tall", @@ -84187,7 +93075,7 @@ } }, { - "id": 29046, + "id": 31539, "properties": { "east": "low", "north": "tall", @@ -84198,7 +93086,7 @@ } }, { - "id": 29047, + "id": 31540, "properties": { "east": "low", "north": "tall", @@ -84209,7 +93097,7 @@ } }, { - "id": 29048, + "id": 31541, "properties": { "east": "low", "north": "tall", @@ -84220,7 +93108,7 @@ } }, { - "id": 29049, + "id": 31542, "properties": { "east": "low", "north": "tall", @@ -84231,7 +93119,7 @@ } }, { - "id": 29050, + "id": 31543, "properties": { "east": "low", "north": "tall", @@ -84242,7 +93130,7 @@ } }, { - "id": 29051, + "id": 31544, "properties": { "east": "tall", "north": "none", @@ -84253,7 +93141,7 @@ } }, { - "id": 29052, + "id": 31545, "properties": { "east": "tall", "north": "none", @@ -84264,7 +93152,7 @@ } }, { - "id": 29053, + "id": 31546, "properties": { "east": "tall", "north": "none", @@ -84275,7 +93163,7 @@ } }, { - "id": 29054, + "id": 31547, "properties": { "east": "tall", "north": "none", @@ -84286,7 +93174,7 @@ } }, { - "id": 29055, + "id": 31548, "properties": { "east": "tall", "north": "none", @@ -84297,7 +93185,7 @@ } }, { - "id": 29056, + "id": 31549, "properties": { "east": "tall", "north": "none", @@ -84308,7 +93196,7 @@ } }, { - "id": 29057, + "id": 31550, "properties": { "east": "tall", "north": "none", @@ -84319,7 +93207,7 @@ } }, { - "id": 29058, + "id": 31551, "properties": { "east": "tall", "north": "none", @@ -84330,7 +93218,7 @@ } }, { - "id": 29059, + "id": 31552, "properties": { "east": "tall", "north": "none", @@ -84341,7 +93229,7 @@ } }, { - "id": 29060, + "id": 31553, "properties": { "east": "tall", "north": "none", @@ -84352,7 +93240,7 @@ } }, { - "id": 29061, + "id": 31554, "properties": { "east": "tall", "north": "none", @@ -84363,7 +93251,7 @@ } }, { - "id": 29062, + "id": 31555, "properties": { "east": "tall", "north": "none", @@ -84374,7 +93262,7 @@ } }, { - "id": 29063, + "id": 31556, "properties": { "east": "tall", "north": "none", @@ -84385,7 +93273,7 @@ } }, { - "id": 29064, + "id": 31557, "properties": { "east": "tall", "north": "none", @@ -84396,7 +93284,7 @@ } }, { - "id": 29065, + "id": 31558, "properties": { "east": "tall", "north": "none", @@ -84407,7 +93295,7 @@ } }, { - "id": 29066, + "id": 31559, "properties": { "east": "tall", "north": "none", @@ -84418,7 +93306,7 @@ } }, { - "id": 29067, + "id": 31560, "properties": { "east": "tall", "north": "none", @@ -84429,7 +93317,7 @@ } }, { - "id": 29068, + "id": 31561, "properties": { "east": "tall", "north": "none", @@ -84440,7 +93328,7 @@ } }, { - "id": 29069, + "id": 31562, "properties": { "east": "tall", "north": "none", @@ -84451,7 +93339,7 @@ } }, { - "id": 29070, + "id": 31563, "properties": { "east": "tall", "north": "none", @@ -84462,7 +93350,7 @@ } }, { - "id": 29071, + "id": 31564, "properties": { "east": "tall", "north": "none", @@ -84473,7 +93361,7 @@ } }, { - "id": 29072, + "id": 31565, "properties": { "east": "tall", "north": "none", @@ -84484,7 +93372,7 @@ } }, { - "id": 29073, + "id": 31566, "properties": { "east": "tall", "north": "none", @@ -84495,7 +93383,7 @@ } }, { - "id": 29074, + "id": 31567, "properties": { "east": "tall", "north": "none", @@ -84506,7 +93394,7 @@ } }, { - "id": 29075, + "id": 31568, "properties": { "east": "tall", "north": "none", @@ -84517,7 +93405,7 @@ } }, { - "id": 29076, + "id": 31569, "properties": { "east": "tall", "north": "none", @@ -84528,7 +93416,7 @@ } }, { - "id": 29077, + "id": 31570, "properties": { "east": "tall", "north": "none", @@ -84539,7 +93427,7 @@ } }, { - "id": 29078, + "id": 31571, "properties": { "east": "tall", "north": "none", @@ -84550,7 +93438,7 @@ } }, { - "id": 29079, + "id": 31572, "properties": { "east": "tall", "north": "none", @@ -84561,7 +93449,7 @@ } }, { - "id": 29080, + "id": 31573, "properties": { "east": "tall", "north": "none", @@ -84572,7 +93460,7 @@ } }, { - "id": 29081, + "id": 31574, "properties": { "east": "tall", "north": "none", @@ -84583,7 +93471,7 @@ } }, { - "id": 29082, + "id": 31575, "properties": { "east": "tall", "north": "none", @@ -84594,7 +93482,7 @@ } }, { - "id": 29083, + "id": 31576, "properties": { "east": "tall", "north": "none", @@ -84605,7 +93493,7 @@ } }, { - "id": 29084, + "id": 31577, "properties": { "east": "tall", "north": "none", @@ -84616,7 +93504,7 @@ } }, { - "id": 29085, + "id": 31578, "properties": { "east": "tall", "north": "none", @@ -84627,7 +93515,7 @@ } }, { - "id": 29086, + "id": 31579, "properties": { "east": "tall", "north": "none", @@ -84638,7 +93526,7 @@ } }, { - "id": 29087, + "id": 31580, "properties": { "east": "tall", "north": "low", @@ -84649,7 +93537,7 @@ } }, { - "id": 29088, + "id": 31581, "properties": { "east": "tall", "north": "low", @@ -84660,7 +93548,7 @@ } }, { - "id": 29089, + "id": 31582, "properties": { "east": "tall", "north": "low", @@ -84671,7 +93559,7 @@ } }, { - "id": 29090, + "id": 31583, "properties": { "east": "tall", "north": "low", @@ -84682,7 +93570,7 @@ } }, { - "id": 29091, + "id": 31584, "properties": { "east": "tall", "north": "low", @@ -84693,7 +93581,7 @@ } }, { - "id": 29092, + "id": 31585, "properties": { "east": "tall", "north": "low", @@ -84704,7 +93592,7 @@ } }, { - "id": 29093, + "id": 31586, "properties": { "east": "tall", "north": "low", @@ -84715,7 +93603,7 @@ } }, { - "id": 29094, + "id": 31587, "properties": { "east": "tall", "north": "low", @@ -84726,7 +93614,7 @@ } }, { - "id": 29095, + "id": 31588, "properties": { "east": "tall", "north": "low", @@ -84737,7 +93625,7 @@ } }, { - "id": 29096, + "id": 31589, "properties": { "east": "tall", "north": "low", @@ -84748,7 +93636,7 @@ } }, { - "id": 29097, + "id": 31590, "properties": { "east": "tall", "north": "low", @@ -84759,7 +93647,7 @@ } }, { - "id": 29098, + "id": 31591, "properties": { "east": "tall", "north": "low", @@ -84770,7 +93658,7 @@ } }, { - "id": 29099, + "id": 31592, "properties": { "east": "tall", "north": "low", @@ -84781,7 +93669,7 @@ } }, { - "id": 29100, + "id": 31593, "properties": { "east": "tall", "north": "low", @@ -84792,7 +93680,7 @@ } }, { - "id": 29101, + "id": 31594, "properties": { "east": "tall", "north": "low", @@ -84803,7 +93691,7 @@ } }, { - "id": 29102, + "id": 31595, "properties": { "east": "tall", "north": "low", @@ -84814,7 +93702,7 @@ } }, { - "id": 29103, + "id": 31596, "properties": { "east": "tall", "north": "low", @@ -84825,7 +93713,7 @@ } }, { - "id": 29104, + "id": 31597, "properties": { "east": "tall", "north": "low", @@ -84836,7 +93724,7 @@ } }, { - "id": 29105, + "id": 31598, "properties": { "east": "tall", "north": "low", @@ -84847,7 +93735,7 @@ } }, { - "id": 29106, + "id": 31599, "properties": { "east": "tall", "north": "low", @@ -84858,7 +93746,7 @@ } }, { - "id": 29107, + "id": 31600, "properties": { "east": "tall", "north": "low", @@ -84869,7 +93757,7 @@ } }, { - "id": 29108, + "id": 31601, "properties": { "east": "tall", "north": "low", @@ -84880,7 +93768,7 @@ } }, { - "id": 29109, + "id": 31602, "properties": { "east": "tall", "north": "low", @@ -84891,7 +93779,7 @@ } }, { - "id": 29110, + "id": 31603, "properties": { "east": "tall", "north": "low", @@ -84902,7 +93790,7 @@ } }, { - "id": 29111, + "id": 31604, "properties": { "east": "tall", "north": "low", @@ -84913,7 +93801,7 @@ } }, { - "id": 29112, + "id": 31605, "properties": { "east": "tall", "north": "low", @@ -84924,7 +93812,7 @@ } }, { - "id": 29113, + "id": 31606, "properties": { "east": "tall", "north": "low", @@ -84935,7 +93823,7 @@ } }, { - "id": 29114, + "id": 31607, "properties": { "east": "tall", "north": "low", @@ -84946,7 +93834,7 @@ } }, { - "id": 29115, + "id": 31608, "properties": { "east": "tall", "north": "low", @@ -84957,7 +93845,7 @@ } }, { - "id": 29116, + "id": 31609, "properties": { "east": "tall", "north": "low", @@ -84968,7 +93856,7 @@ } }, { - "id": 29117, + "id": 31610, "properties": { "east": "tall", "north": "low", @@ -84979,7 +93867,7 @@ } }, { - "id": 29118, + "id": 31611, "properties": { "east": "tall", "north": "low", @@ -84990,7 +93878,7 @@ } }, { - "id": 29119, + "id": 31612, "properties": { "east": "tall", "north": "low", @@ -85001,7 +93889,7 @@ } }, { - "id": 29120, + "id": 31613, "properties": { "east": "tall", "north": "low", @@ -85012,7 +93900,7 @@ } }, { - "id": 29121, + "id": 31614, "properties": { "east": "tall", "north": "low", @@ -85023,7 +93911,7 @@ } }, { - "id": 29122, + "id": 31615, "properties": { "east": "tall", "north": "low", @@ -85034,7 +93922,7 @@ } }, { - "id": 29123, + "id": 31616, "properties": { "east": "tall", "north": "tall", @@ -85045,7 +93933,7 @@ } }, { - "id": 29124, + "id": 31617, "properties": { "east": "tall", "north": "tall", @@ -85056,7 +93944,7 @@ } }, { - "id": 29125, + "id": 31618, "properties": { "east": "tall", "north": "tall", @@ -85067,7 +93955,7 @@ } }, { - "id": 29126, + "id": 31619, "properties": { "east": "tall", "north": "tall", @@ -85078,7 +93966,7 @@ } }, { - "id": 29127, + "id": 31620, "properties": { "east": "tall", "north": "tall", @@ -85089,7 +93977,7 @@ } }, { - "id": 29128, + "id": 31621, "properties": { "east": "tall", "north": "tall", @@ -85100,7 +93988,7 @@ } }, { - "id": 29129, + "id": 31622, "properties": { "east": "tall", "north": "tall", @@ -85111,7 +93999,7 @@ } }, { - "id": 29130, + "id": 31623, "properties": { "east": "tall", "north": "tall", @@ -85122,7 +94010,7 @@ } }, { - "id": 29131, + "id": 31624, "properties": { "east": "tall", "north": "tall", @@ -85133,7 +94021,7 @@ } }, { - "id": 29132, + "id": 31625, "properties": { "east": "tall", "north": "tall", @@ -85144,7 +94032,7 @@ } }, { - "id": 29133, + "id": 31626, "properties": { "east": "tall", "north": "tall", @@ -85155,7 +94043,7 @@ } }, { - "id": 29134, + "id": 31627, "properties": { "east": "tall", "north": "tall", @@ -85166,7 +94054,7 @@ } }, { - "id": 29135, + "id": 31628, "properties": { "east": "tall", "north": "tall", @@ -85177,7 +94065,7 @@ } }, { - "id": 29136, + "id": 31629, "properties": { "east": "tall", "north": "tall", @@ -85188,7 +94076,7 @@ } }, { - "id": 29137, + "id": 31630, "properties": { "east": "tall", "north": "tall", @@ -85199,7 +94087,7 @@ } }, { - "id": 29138, + "id": 31631, "properties": { "east": "tall", "north": "tall", @@ -85210,7 +94098,7 @@ } }, { - "id": 29139, + "id": 31632, "properties": { "east": "tall", "north": "tall", @@ -85221,7 +94109,7 @@ } }, { - "id": 29140, + "id": 31633, "properties": { "east": "tall", "north": "tall", @@ -85232,7 +94120,7 @@ } }, { - "id": 29141, + "id": 31634, "properties": { "east": "tall", "north": "tall", @@ -85243,7 +94131,7 @@ } }, { - "id": 29142, + "id": 31635, "properties": { "east": "tall", "north": "tall", @@ -85254,7 +94142,7 @@ } }, { - "id": 29143, + "id": 31636, "properties": { "east": "tall", "north": "tall", @@ -85265,7 +94153,7 @@ } }, { - "id": 29144, + "id": 31637, "properties": { "east": "tall", "north": "tall", @@ -85276,7 +94164,7 @@ } }, { - "id": 29145, + "id": 31638, "properties": { "east": "tall", "north": "tall", @@ -85287,7 +94175,7 @@ } }, { - "id": 29146, + "id": 31639, "properties": { "east": "tall", "north": "tall", @@ -85298,7 +94186,7 @@ } }, { - "id": 29147, + "id": 31640, "properties": { "east": "tall", "north": "tall", @@ -85309,7 +94197,7 @@ } }, { - "id": 29148, + "id": 31641, "properties": { "east": "tall", "north": "tall", @@ -85320,7 +94208,7 @@ } }, { - "id": 29149, + "id": 31642, "properties": { "east": "tall", "north": "tall", @@ -85331,7 +94219,7 @@ } }, { - "id": 29150, + "id": 31643, "properties": { "east": "tall", "north": "tall", @@ -85342,7 +94230,7 @@ } }, { - "id": 29151, + "id": 31644, "properties": { "east": "tall", "north": "tall", @@ -85353,7 +94241,7 @@ } }, { - "id": 29152, + "id": 31645, "properties": { "east": "tall", "north": "tall", @@ -85364,7 +94252,7 @@ } }, { - "id": 29153, + "id": 31646, "properties": { "east": "tall", "north": "tall", @@ -85375,7 +94263,7 @@ } }, { - "id": 29154, + "id": 31647, "properties": { "east": "tall", "north": "tall", @@ -85386,7 +94274,7 @@ } }, { - "id": 29155, + "id": 31648, "properties": { "east": "tall", "north": "tall", @@ -85397,7 +94285,7 @@ } }, { - "id": 29156, + "id": 31649, "properties": { "east": "tall", "north": "tall", @@ -85408,7 +94296,7 @@ } }, { - "id": 29157, + "id": 31650, "properties": { "east": "tall", "north": "tall", @@ -85419,7 +94307,7 @@ } }, { - "id": 29158, + "id": 31651, "properties": { "east": "tall", "north": "tall", @@ -85439,7 +94327,7 @@ "states": [ { "default": true, - "id": 28748 + "id": 31241 } ] }, @@ -90905,7 +99793,7 @@ "states": [ { "default": true, - "id": 27755 + "id": 30208 } ] }, @@ -95743,7 +104631,7 @@ "states": [ { "default": true, - "id": 25321 + "id": 27801 } ] }, @@ -95756,7 +104644,7 @@ "states": [ { "default": true, - "id": 25310 + "id": 27783 } ] }, @@ -96130,21 +105018,21 @@ }, "states": [ { - "id": 27067, + "id": 29540, "properties": { "lit": "true", "powered": "true" } }, { - "id": 27068, + "id": 29541, "properties": { "lit": "true", "powered": "false" } }, { - "id": 27069, + "id": 29542, "properties": { "lit": "false", "powered": "true" @@ -96152,7 +105040,7 @@ }, { "default": true, - "id": 27070, + "id": 29543, "properties": { "lit": "false", "powered": "false" @@ -96250,7 +105138,7 @@ }, "states": [ { - "id": 27119, + "id": 29592, "properties": { "type": "single", "facing": "north", @@ -96259,7 +105147,7 @@ }, { "default": true, - "id": 27120, + "id": 29593, "properties": { "type": "single", "facing": "north", @@ -96267,7 +105155,7 @@ } }, { - "id": 27121, + "id": 29594, "properties": { "type": "left", "facing": "north", @@ -96275,7 +105163,7 @@ } }, { - "id": 27122, + "id": 29595, "properties": { "type": "left", "facing": "north", @@ -96283,7 +105171,7 @@ } }, { - "id": 27123, + "id": 29596, "properties": { "type": "right", "facing": "north", @@ -96291,7 +105179,7 @@ } }, { - "id": 27124, + "id": 29597, "properties": { "type": "right", "facing": "north", @@ -96299,7 +105187,7 @@ } }, { - "id": 27125, + "id": 29598, "properties": { "type": "single", "facing": "south", @@ -96307,7 +105195,7 @@ } }, { - "id": 27126, + "id": 29599, "properties": { "type": "single", "facing": "south", @@ -96315,7 +105203,7 @@ } }, { - "id": 27127, + "id": 29600, "properties": { "type": "left", "facing": "south", @@ -96323,7 +105211,7 @@ } }, { - "id": 27128, + "id": 29601, "properties": { "type": "left", "facing": "south", @@ -96331,7 +105219,7 @@ } }, { - "id": 27129, + "id": 29602, "properties": { "type": "right", "facing": "south", @@ -96339,7 +105227,7 @@ } }, { - "id": 27130, + "id": 29603, "properties": { "type": "right", "facing": "south", @@ -96347,7 +105235,7 @@ } }, { - "id": 27131, + "id": 29604, "properties": { "type": "single", "facing": "west", @@ -96355,7 +105243,7 @@ } }, { - "id": 27132, + "id": 29605, "properties": { "type": "single", "facing": "west", @@ -96363,7 +105251,7 @@ } }, { - "id": 27133, + "id": 29606, "properties": { "type": "left", "facing": "west", @@ -96371,7 +105259,7 @@ } }, { - "id": 27134, + "id": 29607, "properties": { "type": "left", "facing": "west", @@ -96379,7 +105267,7 @@ } }, { - "id": 27135, + "id": 29608, "properties": { "type": "right", "facing": "west", @@ -96387,7 +105275,7 @@ } }, { - "id": 27136, + "id": 29609, "properties": { "type": "right", "facing": "west", @@ -96395,7 +105283,7 @@ } }, { - "id": 27137, + "id": 29610, "properties": { "type": "single", "facing": "east", @@ -96403,7 +105291,7 @@ } }, { - "id": 27138, + "id": 29611, "properties": { "type": "single", "facing": "east", @@ -96411,7 +105299,7 @@ } }, { - "id": 27139, + "id": 29612, "properties": { "type": "left", "facing": "east", @@ -96419,7 +105307,7 @@ } }, { - "id": 27140, + "id": 29613, "properties": { "type": "left", "facing": "east", @@ -96427,7 +105315,7 @@ } }, { - "id": 27141, + "id": 29614, "properties": { "type": "right", "facing": "east", @@ -96435,7 +105323,7 @@ } }, { - "id": 27142, + "id": 29615, "properties": { "type": "right", "facing": "east", @@ -96477,7 +105365,7 @@ }, "states": [ { - "id": 26087, + "id": 28560, "properties": { "facing": "north", "half": "upper", @@ -96487,7 +105375,7 @@ } }, { - "id": 26088, + "id": 28561, "properties": { "facing": "north", "half": "upper", @@ -96497,7 +105385,7 @@ } }, { - "id": 26089, + "id": 28562, "properties": { "facing": "north", "half": "upper", @@ -96507,7 +105395,7 @@ } }, { - "id": 26090, + "id": 28563, "properties": { "facing": "north", "half": "upper", @@ -96517,7 +105405,7 @@ } }, { - "id": 26091, + "id": 28564, "properties": { "facing": "north", "half": "upper", @@ -96527,7 +105415,7 @@ } }, { - "id": 26092, + "id": 28565, "properties": { "facing": "north", "half": "upper", @@ -96537,7 +105425,7 @@ } }, { - "id": 26093, + "id": 28566, "properties": { "facing": "north", "half": "upper", @@ -96547,7 +105435,7 @@ } }, { - "id": 26094, + "id": 28567, "properties": { "facing": "north", "half": "upper", @@ -96557,7 +105445,7 @@ } }, { - "id": 26095, + "id": 28568, "properties": { "facing": "north", "half": "lower", @@ -96567,7 +105455,7 @@ } }, { - "id": 26096, + "id": 28569, "properties": { "facing": "north", "half": "lower", @@ -96577,7 +105465,7 @@ } }, { - "id": 26097, + "id": 28570, "properties": { "facing": "north", "half": "lower", @@ -96588,7 +105476,7 @@ }, { "default": true, - "id": 26098, + "id": 28571, "properties": { "facing": "north", "half": "lower", @@ -96598,7 +105486,7 @@ } }, { - "id": 26099, + "id": 28572, "properties": { "facing": "north", "half": "lower", @@ -96608,7 +105496,7 @@ } }, { - "id": 26100, + "id": 28573, "properties": { "facing": "north", "half": "lower", @@ -96618,7 +105506,7 @@ } }, { - "id": 26101, + "id": 28574, "properties": { "facing": "north", "half": "lower", @@ -96628,7 +105516,7 @@ } }, { - "id": 26102, + "id": 28575, "properties": { "facing": "north", "half": "lower", @@ -96638,7 +105526,7 @@ } }, { - "id": 26103, + "id": 28576, "properties": { "facing": "south", "half": "upper", @@ -96648,7 +105536,7 @@ } }, { - "id": 26104, + "id": 28577, "properties": { "facing": "south", "half": "upper", @@ -96658,7 +105546,7 @@ } }, { - "id": 26105, + "id": 28578, "properties": { "facing": "south", "half": "upper", @@ -96668,7 +105556,7 @@ } }, { - "id": 26106, + "id": 28579, "properties": { "facing": "south", "half": "upper", @@ -96678,7 +105566,7 @@ } }, { - "id": 26107, + "id": 28580, "properties": { "facing": "south", "half": "upper", @@ -96688,7 +105576,7 @@ } }, { - "id": 26108, + "id": 28581, "properties": { "facing": "south", "half": "upper", @@ -96698,7 +105586,7 @@ } }, { - "id": 26109, + "id": 28582, "properties": { "facing": "south", "half": "upper", @@ -96708,7 +105596,7 @@ } }, { - "id": 26110, + "id": 28583, "properties": { "facing": "south", "half": "upper", @@ -96718,7 +105606,7 @@ } }, { - "id": 26111, + "id": 28584, "properties": { "facing": "south", "half": "lower", @@ -96728,7 +105616,7 @@ } }, { - "id": 26112, + "id": 28585, "properties": { "facing": "south", "half": "lower", @@ -96738,7 +105626,7 @@ } }, { - "id": 26113, + "id": 28586, "properties": { "facing": "south", "half": "lower", @@ -96748,7 +105636,7 @@ } }, { - "id": 26114, + "id": 28587, "properties": { "facing": "south", "half": "lower", @@ -96758,7 +105646,7 @@ } }, { - "id": 26115, + "id": 28588, "properties": { "facing": "south", "half": "lower", @@ -96768,7 +105656,7 @@ } }, { - "id": 26116, + "id": 28589, "properties": { "facing": "south", "half": "lower", @@ -96778,7 +105666,7 @@ } }, { - "id": 26117, + "id": 28590, "properties": { "facing": "south", "half": "lower", @@ -96788,7 +105676,7 @@ } }, { - "id": 26118, + "id": 28591, "properties": { "facing": "south", "half": "lower", @@ -96798,7 +105686,7 @@ } }, { - "id": 26119, + "id": 28592, "properties": { "facing": "west", "half": "upper", @@ -96808,7 +105696,7 @@ } }, { - "id": 26120, + "id": 28593, "properties": { "facing": "west", "half": "upper", @@ -96818,7 +105706,7 @@ } }, { - "id": 26121, + "id": 28594, "properties": { "facing": "west", "half": "upper", @@ -96828,7 +105716,7 @@ } }, { - "id": 26122, + "id": 28595, "properties": { "facing": "west", "half": "upper", @@ -96838,7 +105726,7 @@ } }, { - "id": 26123, + "id": 28596, "properties": { "facing": "west", "half": "upper", @@ -96848,7 +105736,7 @@ } }, { - "id": 26124, + "id": 28597, "properties": { "facing": "west", "half": "upper", @@ -96858,7 +105746,7 @@ } }, { - "id": 26125, + "id": 28598, "properties": { "facing": "west", "half": "upper", @@ -96868,7 +105756,7 @@ } }, { - "id": 26126, + "id": 28599, "properties": { "facing": "west", "half": "upper", @@ -96878,7 +105766,7 @@ } }, { - "id": 26127, + "id": 28600, "properties": { "facing": "west", "half": "lower", @@ -96888,7 +105776,7 @@ } }, { - "id": 26128, + "id": 28601, "properties": { "facing": "west", "half": "lower", @@ -96898,7 +105786,7 @@ } }, { - "id": 26129, + "id": 28602, "properties": { "facing": "west", "half": "lower", @@ -96908,7 +105796,7 @@ } }, { - "id": 26130, + "id": 28603, "properties": { "facing": "west", "half": "lower", @@ -96918,7 +105806,7 @@ } }, { - "id": 26131, + "id": 28604, "properties": { "facing": "west", "half": "lower", @@ -96928,7 +105816,7 @@ } }, { - "id": 26132, + "id": 28605, "properties": { "facing": "west", "half": "lower", @@ -96938,7 +105826,7 @@ } }, { - "id": 26133, + "id": 28606, "properties": { "facing": "west", "half": "lower", @@ -96948,7 +105836,7 @@ } }, { - "id": 26134, + "id": 28607, "properties": { "facing": "west", "half": "lower", @@ -96958,7 +105846,7 @@ } }, { - "id": 26135, + "id": 28608, "properties": { "facing": "east", "half": "upper", @@ -96968,7 +105856,7 @@ } }, { - "id": 26136, + "id": 28609, "properties": { "facing": "east", "half": "upper", @@ -96978,7 +105866,7 @@ } }, { - "id": 26137, + "id": 28610, "properties": { "facing": "east", "half": "upper", @@ -96988,7 +105876,7 @@ } }, { - "id": 26138, + "id": 28611, "properties": { "facing": "east", "half": "upper", @@ -96998,7 +105886,7 @@ } }, { - "id": 26139, + "id": 28612, "properties": { "facing": "east", "half": "upper", @@ -97008,7 +105896,7 @@ } }, { - "id": 26140, + "id": 28613, "properties": { "facing": "east", "half": "upper", @@ -97018,7 +105906,7 @@ } }, { - "id": 26141, + "id": 28614, "properties": { "facing": "east", "half": "upper", @@ -97028,7 +105916,7 @@ } }, { - "id": 26142, + "id": 28615, "properties": { "facing": "east", "half": "upper", @@ -97038,7 +105926,7 @@ } }, { - "id": 26143, + "id": 28616, "properties": { "facing": "east", "half": "lower", @@ -97048,7 +105936,7 @@ } }, { - "id": 26144, + "id": 28617, "properties": { "facing": "east", "half": "lower", @@ -97058,7 +105946,7 @@ } }, { - "id": 26145, + "id": 28618, "properties": { "facing": "east", "half": "lower", @@ -97068,7 +105956,7 @@ } }, { - "id": 26146, + "id": 28619, "properties": { "facing": "east", "half": "lower", @@ -97078,7 +105966,7 @@ } }, { - "id": 26147, + "id": 28620, "properties": { "facing": "east", "half": "lower", @@ -97088,7 +105976,7 @@ } }, { - "id": 26148, + "id": 28621, "properties": { "facing": "east", "half": "lower", @@ -97098,7 +105986,7 @@ } }, { - "id": 26149, + "id": 28622, "properties": { "facing": "east", "half": "lower", @@ -97108,7 +105996,7 @@ } }, { - "id": 26150, + "id": 28623, "properties": { "facing": "east", "half": "lower", @@ -97145,7 +106033,7 @@ }, "states": [ { - "id": 27319, + "id": 29792, "properties": { "copper_golem_pose": "standing", "facing": "north", @@ -97154,7 +106042,7 @@ }, { "default": true, - "id": 27320, + "id": 29793, "properties": { "copper_golem_pose": "standing", "facing": "north", @@ -97162,7 +106050,7 @@ } }, { - "id": 27321, + "id": 29794, "properties": { "copper_golem_pose": "standing", "facing": "south", @@ -97170,7 +106058,7 @@ } }, { - "id": 27322, + "id": 29795, "properties": { "copper_golem_pose": "standing", "facing": "south", @@ -97178,7 +106066,7 @@ } }, { - "id": 27323, + "id": 29796, "properties": { "copper_golem_pose": "standing", "facing": "west", @@ -97186,7 +106074,7 @@ } }, { - "id": 27324, + "id": 29797, "properties": { "copper_golem_pose": "standing", "facing": "west", @@ -97194,7 +106082,7 @@ } }, { - "id": 27325, + "id": 29798, "properties": { "copper_golem_pose": "standing", "facing": "east", @@ -97202,7 +106090,7 @@ } }, { - "id": 27326, + "id": 29799, "properties": { "copper_golem_pose": "standing", "facing": "east", @@ -97210,7 +106098,7 @@ } }, { - "id": 27327, + "id": 29800, "properties": { "copper_golem_pose": "sitting", "facing": "north", @@ -97218,7 +106106,7 @@ } }, { - "id": 27328, + "id": 29801, "properties": { "copper_golem_pose": "sitting", "facing": "north", @@ -97226,7 +106114,7 @@ } }, { - "id": 27329, + "id": 29802, "properties": { "copper_golem_pose": "sitting", "facing": "south", @@ -97234,7 +106122,7 @@ } }, { - "id": 27330, + "id": 29803, "properties": { "copper_golem_pose": "sitting", "facing": "south", @@ -97242,7 +106130,7 @@ } }, { - "id": 27331, + "id": 29804, "properties": { "copper_golem_pose": "sitting", "facing": "west", @@ -97250,7 +106138,7 @@ } }, { - "id": 27332, + "id": 29805, "properties": { "copper_golem_pose": "sitting", "facing": "west", @@ -97258,7 +106146,7 @@ } }, { - "id": 27333, + "id": 29806, "properties": { "copper_golem_pose": "sitting", "facing": "east", @@ -97266,7 +106154,7 @@ } }, { - "id": 27334, + "id": 29807, "properties": { "copper_golem_pose": "sitting", "facing": "east", @@ -97274,7 +106162,7 @@ } }, { - "id": 27335, + "id": 29808, "properties": { "copper_golem_pose": "running", "facing": "north", @@ -97282,7 +106170,7 @@ } }, { - "id": 27336, + "id": 29809, "properties": { "copper_golem_pose": "running", "facing": "north", @@ -97290,7 +106178,7 @@ } }, { - "id": 27337, + "id": 29810, "properties": { "copper_golem_pose": "running", "facing": "south", @@ -97298,7 +106186,7 @@ } }, { - "id": 27338, + "id": 29811, "properties": { "copper_golem_pose": "running", "facing": "south", @@ -97306,7 +106194,7 @@ } }, { - "id": 27339, + "id": 29812, "properties": { "copper_golem_pose": "running", "facing": "west", @@ -97314,7 +106202,7 @@ } }, { - "id": 27340, + "id": 29813, "properties": { "copper_golem_pose": "running", "facing": "west", @@ -97322,7 +106210,7 @@ } }, { - "id": 27341, + "id": 29814, "properties": { "copper_golem_pose": "running", "facing": "east", @@ -97330,7 +106218,7 @@ } }, { - "id": 27342, + "id": 29815, "properties": { "copper_golem_pose": "running", "facing": "east", @@ -97338,7 +106226,7 @@ } }, { - "id": 27343, + "id": 29816, "properties": { "copper_golem_pose": "star", "facing": "north", @@ -97346,7 +106234,7 @@ } }, { - "id": 27344, + "id": 29817, "properties": { "copper_golem_pose": "star", "facing": "north", @@ -97354,7 +106242,7 @@ } }, { - "id": 27345, + "id": 29818, "properties": { "copper_golem_pose": "star", "facing": "south", @@ -97362,7 +106250,7 @@ } }, { - "id": 27346, + "id": 29819, "properties": { "copper_golem_pose": "star", "facing": "south", @@ -97370,7 +106258,7 @@ } }, { - "id": 27347, + "id": 29820, "properties": { "copper_golem_pose": "star", "facing": "west", @@ -97378,7 +106266,7 @@ } }, { - "id": 27348, + "id": 29821, "properties": { "copper_golem_pose": "star", "facing": "west", @@ -97386,7 +106274,7 @@ } }, { - "id": 27349, + "id": 29822, "properties": { "copper_golem_pose": "star", "facing": "east", @@ -97394,7 +106282,7 @@ } }, { - "id": 27350, + "id": 29823, "properties": { "copper_golem_pose": "star", "facing": "east", @@ -97417,14 +106305,14 @@ }, "states": [ { - "id": 27049, + "id": 29522, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 27050, + "id": 29523, "properties": { "waterlogged": "false" } @@ -97481,7 +106369,7 @@ }, "minecraft:exposed_copper_trapdoor": { "definition": { - "type": "minecraft:weathering_copper_trap_door", + "type": "minecraft:weathering_copper_trapdoor", "block_set_type": "copper", "properties": {}, "weathering_state": "exposed" @@ -97512,7 +106400,7 @@ }, "states": [ { - "id": 26599, + "id": 29072, "properties": { "facing": "north", "half": "top", @@ -97522,7 +106410,7 @@ } }, { - "id": 26600, + "id": 29073, "properties": { "facing": "north", "half": "top", @@ -97532,7 +106420,7 @@ } }, { - "id": 26601, + "id": 29074, "properties": { "facing": "north", "half": "top", @@ -97542,7 +106430,7 @@ } }, { - "id": 26602, + "id": 29075, "properties": { "facing": "north", "half": "top", @@ -97552,7 +106440,7 @@ } }, { - "id": 26603, + "id": 29076, "properties": { "facing": "north", "half": "top", @@ -97562,7 +106450,7 @@ } }, { - "id": 26604, + "id": 29077, "properties": { "facing": "north", "half": "top", @@ -97572,7 +106460,7 @@ } }, { - "id": 26605, + "id": 29078, "properties": { "facing": "north", "half": "top", @@ -97582,7 +106470,7 @@ } }, { - "id": 26606, + "id": 29079, "properties": { "facing": "north", "half": "top", @@ -97592,7 +106480,7 @@ } }, { - "id": 26607, + "id": 29080, "properties": { "facing": "north", "half": "bottom", @@ -97602,7 +106490,7 @@ } }, { - "id": 26608, + "id": 29081, "properties": { "facing": "north", "half": "bottom", @@ -97612,7 +106500,7 @@ } }, { - "id": 26609, + "id": 29082, "properties": { "facing": "north", "half": "bottom", @@ -97622,7 +106510,7 @@ } }, { - "id": 26610, + "id": 29083, "properties": { "facing": "north", "half": "bottom", @@ -97632,7 +106520,7 @@ } }, { - "id": 26611, + "id": 29084, "properties": { "facing": "north", "half": "bottom", @@ -97642,7 +106530,7 @@ } }, { - "id": 26612, + "id": 29085, "properties": { "facing": "north", "half": "bottom", @@ -97652,7 +106540,7 @@ } }, { - "id": 26613, + "id": 29086, "properties": { "facing": "north", "half": "bottom", @@ -97663,7 +106551,7 @@ }, { "default": true, - "id": 26614, + "id": 29087, "properties": { "facing": "north", "half": "bottom", @@ -97673,7 +106561,7 @@ } }, { - "id": 26615, + "id": 29088, "properties": { "facing": "south", "half": "top", @@ -97683,7 +106571,7 @@ } }, { - "id": 26616, + "id": 29089, "properties": { "facing": "south", "half": "top", @@ -97693,7 +106581,7 @@ } }, { - "id": 26617, + "id": 29090, "properties": { "facing": "south", "half": "top", @@ -97703,7 +106591,7 @@ } }, { - "id": 26618, + "id": 29091, "properties": { "facing": "south", "half": "top", @@ -97713,7 +106601,7 @@ } }, { - "id": 26619, + "id": 29092, "properties": { "facing": "south", "half": "top", @@ -97723,7 +106611,7 @@ } }, { - "id": 26620, + "id": 29093, "properties": { "facing": "south", "half": "top", @@ -97733,7 +106621,7 @@ } }, { - "id": 26621, + "id": 29094, "properties": { "facing": "south", "half": "top", @@ -97743,7 +106631,7 @@ } }, { - "id": 26622, + "id": 29095, "properties": { "facing": "south", "half": "top", @@ -97753,7 +106641,7 @@ } }, { - "id": 26623, + "id": 29096, "properties": { "facing": "south", "half": "bottom", @@ -97763,7 +106651,7 @@ } }, { - "id": 26624, + "id": 29097, "properties": { "facing": "south", "half": "bottom", @@ -97773,7 +106661,7 @@ } }, { - "id": 26625, + "id": 29098, "properties": { "facing": "south", "half": "bottom", @@ -97783,7 +106671,7 @@ } }, { - "id": 26626, + "id": 29099, "properties": { "facing": "south", "half": "bottom", @@ -97793,7 +106681,7 @@ } }, { - "id": 26627, + "id": 29100, "properties": { "facing": "south", "half": "bottom", @@ -97803,7 +106691,7 @@ } }, { - "id": 26628, + "id": 29101, "properties": { "facing": "south", "half": "bottom", @@ -97813,7 +106701,7 @@ } }, { - "id": 26629, + "id": 29102, "properties": { "facing": "south", "half": "bottom", @@ -97823,7 +106711,7 @@ } }, { - "id": 26630, + "id": 29103, "properties": { "facing": "south", "half": "bottom", @@ -97833,7 +106721,7 @@ } }, { - "id": 26631, + "id": 29104, "properties": { "facing": "west", "half": "top", @@ -97843,7 +106731,7 @@ } }, { - "id": 26632, + "id": 29105, "properties": { "facing": "west", "half": "top", @@ -97853,7 +106741,7 @@ } }, { - "id": 26633, + "id": 29106, "properties": { "facing": "west", "half": "top", @@ -97863,7 +106751,7 @@ } }, { - "id": 26634, + "id": 29107, "properties": { "facing": "west", "half": "top", @@ -97873,7 +106761,7 @@ } }, { - "id": 26635, + "id": 29108, "properties": { "facing": "west", "half": "top", @@ -97883,7 +106771,7 @@ } }, { - "id": 26636, + "id": 29109, "properties": { "facing": "west", "half": "top", @@ -97893,7 +106781,7 @@ } }, { - "id": 26637, + "id": 29110, "properties": { "facing": "west", "half": "top", @@ -97903,7 +106791,7 @@ } }, { - "id": 26638, + "id": 29111, "properties": { "facing": "west", "half": "top", @@ -97913,7 +106801,7 @@ } }, { - "id": 26639, + "id": 29112, "properties": { "facing": "west", "half": "bottom", @@ -97923,7 +106811,7 @@ } }, { - "id": 26640, + "id": 29113, "properties": { "facing": "west", "half": "bottom", @@ -97933,7 +106821,7 @@ } }, { - "id": 26641, + "id": 29114, "properties": { "facing": "west", "half": "bottom", @@ -97943,7 +106831,7 @@ } }, { - "id": 26642, + "id": 29115, "properties": { "facing": "west", "half": "bottom", @@ -97953,7 +106841,7 @@ } }, { - "id": 26643, + "id": 29116, "properties": { "facing": "west", "half": "bottom", @@ -97963,7 +106851,7 @@ } }, { - "id": 26644, + "id": 29117, "properties": { "facing": "west", "half": "bottom", @@ -97973,7 +106861,7 @@ } }, { - "id": 26645, + "id": 29118, "properties": { "facing": "west", "half": "bottom", @@ -97983,7 +106871,7 @@ } }, { - "id": 26646, + "id": 29119, "properties": { "facing": "west", "half": "bottom", @@ -97993,7 +106881,7 @@ } }, { - "id": 26647, + "id": 29120, "properties": { "facing": "east", "half": "top", @@ -98003,7 +106891,7 @@ } }, { - "id": 26648, + "id": 29121, "properties": { "facing": "east", "half": "top", @@ -98013,7 +106901,7 @@ } }, { - "id": 26649, + "id": 29122, "properties": { "facing": "east", "half": "top", @@ -98023,7 +106911,7 @@ } }, { - "id": 26650, + "id": 29123, "properties": { "facing": "east", "half": "top", @@ -98033,7 +106921,7 @@ } }, { - "id": 26651, + "id": 29124, "properties": { "facing": "east", "half": "top", @@ -98043,7 +106931,7 @@ } }, { - "id": 26652, + "id": 29125, "properties": { "facing": "east", "half": "top", @@ -98053,7 +106941,7 @@ } }, { - "id": 26653, + "id": 29126, "properties": { "facing": "east", "half": "top", @@ -98063,7 +106951,7 @@ } }, { - "id": 26654, + "id": 29127, "properties": { "facing": "east", "half": "top", @@ -98073,7 +106961,7 @@ } }, { - "id": 26655, + "id": 29128, "properties": { "facing": "east", "half": "bottom", @@ -98083,7 +106971,7 @@ } }, { - "id": 26656, + "id": 29129, "properties": { "facing": "east", "half": "bottom", @@ -98093,7 +106981,7 @@ } }, { - "id": 26657, + "id": 29130, "properties": { "facing": "east", "half": "bottom", @@ -98103,7 +106991,7 @@ } }, { - "id": 26658, + "id": 29131, "properties": { "facing": "east", "half": "bottom", @@ -98113,7 +107001,7 @@ } }, { - "id": 26659, + "id": 29132, "properties": { "facing": "east", "half": "bottom", @@ -98123,7 +107011,7 @@ } }, { - "id": 26660, + "id": 29133, "properties": { "facing": "east", "half": "bottom", @@ -98133,7 +107021,7 @@ } }, { - "id": 26661, + "id": 29134, "properties": { "facing": "east", "half": "bottom", @@ -98143,7 +107031,7 @@ } }, { - "id": 26662, + "id": 29135, "properties": { "facing": "east", "half": "bottom", @@ -98163,7 +107051,7 @@ "states": [ { "default": true, - "id": 25317 + "id": 27793 } ] }, @@ -98186,21 +107074,21 @@ }, "states": [ { - "id": 25659, + "id": 28454, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 25660, + "id": 28455, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 25661, + "id": 28456, "properties": { "type": "bottom", "waterlogged": "true" @@ -98208,21 +107096,21 @@ }, { "default": true, - "id": 25662, + "id": 28457, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 25663, + "id": 28458, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 25664, + "id": 28459, "properties": { "type": "double", "waterlogged": "false" @@ -98264,7 +107152,7 @@ }, "states": [ { - "id": 25487, + "id": 27888, "properties": { "facing": "north", "half": "top", @@ -98273,7 +107161,7 @@ } }, { - "id": 25488, + "id": 27889, "properties": { "facing": "north", "half": "top", @@ -98282,7 +107170,7 @@ } }, { - "id": 25489, + "id": 27890, "properties": { "facing": "north", "half": "top", @@ -98291,7 +107179,7 @@ } }, { - "id": 25490, + "id": 27891, "properties": { "facing": "north", "half": "top", @@ -98300,7 +107188,7 @@ } }, { - "id": 25491, + "id": 27892, "properties": { "facing": "north", "half": "top", @@ -98309,7 +107197,7 @@ } }, { - "id": 25492, + "id": 27893, "properties": { "facing": "north", "half": "top", @@ -98318,7 +107206,7 @@ } }, { - "id": 25493, + "id": 27894, "properties": { "facing": "north", "half": "top", @@ -98327,7 +107215,7 @@ } }, { - "id": 25494, + "id": 27895, "properties": { "facing": "north", "half": "top", @@ -98336,7 +107224,7 @@ } }, { - "id": 25495, + "id": 27896, "properties": { "facing": "north", "half": "top", @@ -98345,7 +107233,7 @@ } }, { - "id": 25496, + "id": 27897, "properties": { "facing": "north", "half": "top", @@ -98354,7 +107242,7 @@ } }, { - "id": 25497, + "id": 27898, "properties": { "facing": "north", "half": "bottom", @@ -98364,7 +107252,7 @@ }, { "default": true, - "id": 25498, + "id": 27899, "properties": { "facing": "north", "half": "bottom", @@ -98373,7 +107261,7 @@ } }, { - "id": 25499, + "id": 27900, "properties": { "facing": "north", "half": "bottom", @@ -98382,7 +107270,7 @@ } }, { - "id": 25500, + "id": 27901, "properties": { "facing": "north", "half": "bottom", @@ -98391,7 +107279,7 @@ } }, { - "id": 25501, + "id": 27902, "properties": { "facing": "north", "half": "bottom", @@ -98400,7 +107288,7 @@ } }, { - "id": 25502, + "id": 27903, "properties": { "facing": "north", "half": "bottom", @@ -98409,7 +107297,7 @@ } }, { - "id": 25503, + "id": 27904, "properties": { "facing": "north", "half": "bottom", @@ -98418,7 +107306,7 @@ } }, { - "id": 25504, + "id": 27905, "properties": { "facing": "north", "half": "bottom", @@ -98427,7 +107315,7 @@ } }, { - "id": 25505, + "id": 27906, "properties": { "facing": "north", "half": "bottom", @@ -98436,7 +107324,7 @@ } }, { - "id": 25506, + "id": 27907, "properties": { "facing": "north", "half": "bottom", @@ -98445,7 +107333,7 @@ } }, { - "id": 25507, + "id": 27908, "properties": { "facing": "south", "half": "top", @@ -98454,7 +107342,7 @@ } }, { - "id": 25508, + "id": 27909, "properties": { "facing": "south", "half": "top", @@ -98463,7 +107351,7 @@ } }, { - "id": 25509, + "id": 27910, "properties": { "facing": "south", "half": "top", @@ -98472,7 +107360,7 @@ } }, { - "id": 25510, + "id": 27911, "properties": { "facing": "south", "half": "top", @@ -98481,7 +107369,7 @@ } }, { - "id": 25511, + "id": 27912, "properties": { "facing": "south", "half": "top", @@ -98490,7 +107378,7 @@ } }, { - "id": 25512, + "id": 27913, "properties": { "facing": "south", "half": "top", @@ -98499,7 +107387,7 @@ } }, { - "id": 25513, + "id": 27914, "properties": { "facing": "south", "half": "top", @@ -98508,7 +107396,7 @@ } }, { - "id": 25514, + "id": 27915, "properties": { "facing": "south", "half": "top", @@ -98517,7 +107405,7 @@ } }, { - "id": 25515, + "id": 27916, "properties": { "facing": "south", "half": "top", @@ -98526,7 +107414,7 @@ } }, { - "id": 25516, + "id": 27917, "properties": { "facing": "south", "half": "top", @@ -98535,7 +107423,7 @@ } }, { - "id": 25517, + "id": 27918, "properties": { "facing": "south", "half": "bottom", @@ -98544,7 +107432,7 @@ } }, { - "id": 25518, + "id": 27919, "properties": { "facing": "south", "half": "bottom", @@ -98553,7 +107441,7 @@ } }, { - "id": 25519, + "id": 27920, "properties": { "facing": "south", "half": "bottom", @@ -98562,7 +107450,7 @@ } }, { - "id": 25520, + "id": 27921, "properties": { "facing": "south", "half": "bottom", @@ -98571,7 +107459,7 @@ } }, { - "id": 25521, + "id": 27922, "properties": { "facing": "south", "half": "bottom", @@ -98580,7 +107468,7 @@ } }, { - "id": 25522, + "id": 27923, "properties": { "facing": "south", "half": "bottom", @@ -98589,7 +107477,7 @@ } }, { - "id": 25523, + "id": 27924, "properties": { "facing": "south", "half": "bottom", @@ -98598,7 +107486,7 @@ } }, { - "id": 25524, + "id": 27925, "properties": { "facing": "south", "half": "bottom", @@ -98607,7 +107495,7 @@ } }, { - "id": 25525, + "id": 27926, "properties": { "facing": "south", "half": "bottom", @@ -98616,7 +107504,7 @@ } }, { - "id": 25526, + "id": 27927, "properties": { "facing": "south", "half": "bottom", @@ -98625,7 +107513,7 @@ } }, { - "id": 25527, + "id": 27928, "properties": { "facing": "west", "half": "top", @@ -98634,7 +107522,7 @@ } }, { - "id": 25528, + "id": 27929, "properties": { "facing": "west", "half": "top", @@ -98643,7 +107531,7 @@ } }, { - "id": 25529, + "id": 27930, "properties": { "facing": "west", "half": "top", @@ -98652,7 +107540,7 @@ } }, { - "id": 25530, + "id": 27931, "properties": { "facing": "west", "half": "top", @@ -98661,7 +107549,7 @@ } }, { - "id": 25531, + "id": 27932, "properties": { "facing": "west", "half": "top", @@ -98670,7 +107558,7 @@ } }, { - "id": 25532, + "id": 27933, "properties": { "facing": "west", "half": "top", @@ -98679,7 +107567,7 @@ } }, { - "id": 25533, + "id": 27934, "properties": { "facing": "west", "half": "top", @@ -98688,7 +107576,7 @@ } }, { - "id": 25534, + "id": 27935, "properties": { "facing": "west", "half": "top", @@ -98697,7 +107585,7 @@ } }, { - "id": 25535, + "id": 27936, "properties": { "facing": "west", "half": "top", @@ -98706,7 +107594,7 @@ } }, { - "id": 25536, + "id": 27937, "properties": { "facing": "west", "half": "top", @@ -98715,7 +107603,7 @@ } }, { - "id": 25537, + "id": 27938, "properties": { "facing": "west", "half": "bottom", @@ -98724,7 +107612,7 @@ } }, { - "id": 25538, + "id": 27939, "properties": { "facing": "west", "half": "bottom", @@ -98733,7 +107621,7 @@ } }, { - "id": 25539, + "id": 27940, "properties": { "facing": "west", "half": "bottom", @@ -98742,7 +107630,7 @@ } }, { - "id": 25540, + "id": 27941, "properties": { "facing": "west", "half": "bottom", @@ -98751,7 +107639,7 @@ } }, { - "id": 25541, + "id": 27942, "properties": { "facing": "west", "half": "bottom", @@ -98760,7 +107648,7 @@ } }, { - "id": 25542, + "id": 27943, "properties": { "facing": "west", "half": "bottom", @@ -98769,7 +107657,7 @@ } }, { - "id": 25543, + "id": 27944, "properties": { "facing": "west", "half": "bottom", @@ -98778,7 +107666,7 @@ } }, { - "id": 25544, + "id": 27945, "properties": { "facing": "west", "half": "bottom", @@ -98787,7 +107675,7 @@ } }, { - "id": 25545, + "id": 27946, "properties": { "facing": "west", "half": "bottom", @@ -98796,7 +107684,7 @@ } }, { - "id": 25546, + "id": 27947, "properties": { "facing": "west", "half": "bottom", @@ -98805,7 +107693,7 @@ } }, { - "id": 25547, + "id": 27948, "properties": { "facing": "east", "half": "top", @@ -98814,7 +107702,7 @@ } }, { - "id": 25548, + "id": 27949, "properties": { "facing": "east", "half": "top", @@ -98823,7 +107711,7 @@ } }, { - "id": 25549, + "id": 27950, "properties": { "facing": "east", "half": "top", @@ -98832,7 +107720,7 @@ } }, { - "id": 25550, + "id": 27951, "properties": { "facing": "east", "half": "top", @@ -98841,7 +107729,7 @@ } }, { - "id": 25551, + "id": 27952, "properties": { "facing": "east", "half": "top", @@ -98850,7 +107738,7 @@ } }, { - "id": 25552, + "id": 27953, "properties": { "facing": "east", "half": "top", @@ -98859,7 +107747,7 @@ } }, { - "id": 25553, + "id": 27954, "properties": { "facing": "east", "half": "top", @@ -98868,7 +107756,7 @@ } }, { - "id": 25554, + "id": 27955, "properties": { "facing": "east", "half": "top", @@ -98877,7 +107765,7 @@ } }, { - "id": 25555, + "id": 27956, "properties": { "facing": "east", "half": "top", @@ -98886,7 +107774,7 @@ } }, { - "id": 25556, + "id": 27957, "properties": { "facing": "east", "half": "top", @@ -98895,7 +107783,7 @@ } }, { - "id": 25557, + "id": 27958, "properties": { "facing": "east", "half": "bottom", @@ -98904,7 +107792,7 @@ } }, { - "id": 25558, + "id": 27959, "properties": { "facing": "east", "half": "bottom", @@ -98913,7 +107801,7 @@ } }, { - "id": 25559, + "id": 27960, "properties": { "facing": "east", "half": "bottom", @@ -98922,7 +107810,7 @@ } }, { - "id": 25560, + "id": 27961, "properties": { "facing": "east", "half": "bottom", @@ -98931,7 +107819,7 @@ } }, { - "id": 25561, + "id": 27962, "properties": { "facing": "east", "half": "bottom", @@ -98940,7 +107828,7 @@ } }, { - "id": 25562, + "id": 27963, "properties": { "facing": "east", "half": "bottom", @@ -98949,7 +107837,7 @@ } }, { - "id": 25563, + "id": 27964, "properties": { "facing": "east", "half": "bottom", @@ -98958,7 +107846,7 @@ } }, { - "id": 25564, + "id": 27965, "properties": { "facing": "east", "half": "bottom", @@ -98967,7 +107855,7 @@ } }, { - "id": 25565, + "id": 27966, "properties": { "facing": "east", "half": "bottom", @@ -98976,7 +107864,7 @@ } }, { - "id": 25566, + "id": 27967, "properties": { "facing": "east", "half": "bottom", @@ -99012,7 +107900,7 @@ }, "states": [ { - "id": 27567, + "id": 30040, "properties": { "facing": "north", "powered": "true", @@ -99020,7 +107908,7 @@ } }, { - "id": 27568, + "id": 30041, "properties": { "facing": "north", "powered": "true", @@ -99028,7 +107916,7 @@ } }, { - "id": 27569, + "id": 30042, "properties": { "facing": "north", "powered": "false", @@ -99036,7 +107924,7 @@ } }, { - "id": 27570, + "id": 30043, "properties": { "facing": "north", "powered": "false", @@ -99044,7 +107932,7 @@ } }, { - "id": 27571, + "id": 30044, "properties": { "facing": "east", "powered": "true", @@ -99052,7 +107940,7 @@ } }, { - "id": 27572, + "id": 30045, "properties": { "facing": "east", "powered": "true", @@ -99060,7 +107948,7 @@ } }, { - "id": 27573, + "id": 30046, "properties": { "facing": "east", "powered": "false", @@ -99068,7 +107956,7 @@ } }, { - "id": 27574, + "id": 30047, "properties": { "facing": "east", "powered": "false", @@ -99076,7 +107964,7 @@ } }, { - "id": 27575, + "id": 30048, "properties": { "facing": "south", "powered": "true", @@ -99084,7 +107972,7 @@ } }, { - "id": 27576, + "id": 30049, "properties": { "facing": "south", "powered": "true", @@ -99092,7 +107980,7 @@ } }, { - "id": 27577, + "id": 30050, "properties": { "facing": "south", "powered": "false", @@ -99100,7 +107988,7 @@ } }, { - "id": 27578, + "id": 30051, "properties": { "facing": "south", "powered": "false", @@ -99108,7 +107996,7 @@ } }, { - "id": 27579, + "id": 30052, "properties": { "facing": "west", "powered": "true", @@ -99116,7 +108004,7 @@ } }, { - "id": 27580, + "id": 30053, "properties": { "facing": "west", "powered": "true", @@ -99124,7 +108012,7 @@ } }, { - "id": 27581, + "id": 30054, "properties": { "facing": "west", "powered": "false", @@ -99132,7 +108020,7 @@ } }, { - "id": 27582, + "id": 30055, "properties": { "facing": "west", "powered": "false", @@ -99140,7 +108028,7 @@ } }, { - "id": 27583, + "id": 30056, "properties": { "facing": "up", "powered": "true", @@ -99148,7 +108036,7 @@ } }, { - "id": 27584, + "id": 30057, "properties": { "facing": "up", "powered": "true", @@ -99156,7 +108044,7 @@ } }, { - "id": 27585, + "id": 30058, "properties": { "facing": "up", "powered": "false", @@ -99165,7 +108053,7 @@ }, { "default": true, - "id": 27586, + "id": 30059, "properties": { "facing": "up", "powered": "false", @@ -99173,7 +108061,7 @@ } }, { - "id": 27587, + "id": 30060, "properties": { "facing": "down", "powered": "true", @@ -99181,7 +108069,7 @@ } }, { - "id": 27588, + "id": 30061, "properties": { "facing": "down", "powered": "true", @@ -99189,7 +108077,7 @@ } }, { - "id": 27589, + "id": 30062, "properties": { "facing": "down", "powered": "false", @@ -99197,7 +108085,7 @@ } }, { - "id": 27590, + "id": 30063, "properties": { "facing": "down", "powered": "false", @@ -105123,7 +114011,7 @@ "states": [ { "default": true, - "id": 29872 + "id": 32365 } ] }, @@ -105160,7 +114048,7 @@ "states": [ { "default": true, - "id": 27812 + "id": 30305 } ] }, @@ -105429,7 +114317,7 @@ "states": [ { "default": true, - "id": 29591 + "id": 32084 } ] }, @@ -114201,14 +123089,14 @@ }, "states": [ { - "id": 27919, + "id": 30412, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 27920, + "id": 30413, "properties": { "waterlogged": "false" } @@ -114262,14 +123150,14 @@ }, "states": [ { - "id": 29701, + "id": 32194, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 29702, + "id": 32195, "properties": { "waterlogged": "false" } @@ -114732,20 +123620,20 @@ }, "states": [ { - "id": 29573, + "id": 32066, "properties": { "axis": "x" } }, { "default": true, - "id": 29574, + "id": 32067, "properties": { "axis": "y" } }, { - "id": 29575, + "id": 32068, "properties": { "axis": "z" } @@ -122412,112 +131300,112 @@ "states": [ { "default": true, - "id": 27846, + "id": 30339, "properties": { "facing": "north", "segment_amount": "1" } }, { - "id": 27847, + "id": 30340, "properties": { "facing": "north", "segment_amount": "2" } }, { - "id": 27848, + "id": 30341, "properties": { "facing": "north", "segment_amount": "3" } }, { - "id": 27849, + "id": 30342, "properties": { "facing": "north", "segment_amount": "4" } }, { - "id": 27850, + "id": 30343, "properties": { "facing": "south", "segment_amount": "1" } }, { - "id": 27851, + "id": 30344, "properties": { "facing": "south", "segment_amount": "2" } }, { - "id": 27852, + "id": 30345, "properties": { "facing": "south", "segment_amount": "3" } }, { - "id": 27853, + "id": 30346, "properties": { "facing": "south", "segment_amount": "4" } }, { - "id": 27854, + "id": 30347, "properties": { "facing": "west", "segment_amount": "1" } }, { - "id": 27855, + "id": 30348, "properties": { "facing": "west", "segment_amount": "2" } }, { - "id": 27856, + "id": 30349, "properties": { "facing": "west", "segment_amount": "3" } }, { - "id": 27857, + "id": 30350, "properties": { "facing": "west", "segment_amount": "4" } }, { - "id": 27858, + "id": 30351, "properties": { "facing": "east", "segment_amount": "1" } }, { - "id": 27859, + "id": 30352, "properties": { "facing": "east", "segment_amount": "2" } }, { - "id": 27860, + "id": 30353, "properties": { "facing": "east", "segment_amount": "3" } }, { - "id": 27861, + "id": 30354, "properties": { "facing": "east", "segment_amount": "4" @@ -125360,7 +134248,7 @@ }, "states": [ { - "id": 27543, + "id": 30016, "properties": { "facing": "north", "powered": "true", @@ -125368,7 +134256,7 @@ } }, { - "id": 27544, + "id": 30017, "properties": { "facing": "north", "powered": "true", @@ -125376,7 +134264,7 @@ } }, { - "id": 27545, + "id": 30018, "properties": { "facing": "north", "powered": "false", @@ -125384,7 +134272,7 @@ } }, { - "id": 27546, + "id": 30019, "properties": { "facing": "north", "powered": "false", @@ -125392,7 +134280,7 @@ } }, { - "id": 27547, + "id": 30020, "properties": { "facing": "east", "powered": "true", @@ -125400,7 +134288,7 @@ } }, { - "id": 27548, + "id": 30021, "properties": { "facing": "east", "powered": "true", @@ -125408,7 +134296,7 @@ } }, { - "id": 27549, + "id": 30022, "properties": { "facing": "east", "powered": "false", @@ -125416,7 +134304,7 @@ } }, { - "id": 27550, + "id": 30023, "properties": { "facing": "east", "powered": "false", @@ -125424,7 +134312,7 @@ } }, { - "id": 27551, + "id": 30024, "properties": { "facing": "south", "powered": "true", @@ -125432,7 +134320,7 @@ } }, { - "id": 27552, + "id": 30025, "properties": { "facing": "south", "powered": "true", @@ -125440,7 +134328,7 @@ } }, { - "id": 27553, + "id": 30026, "properties": { "facing": "south", "powered": "false", @@ -125448,7 +134336,7 @@ } }, { - "id": 27554, + "id": 30027, "properties": { "facing": "south", "powered": "false", @@ -125456,7 +134344,7 @@ } }, { - "id": 27555, + "id": 30028, "properties": { "facing": "west", "powered": "true", @@ -125464,7 +134352,7 @@ } }, { - "id": 27556, + "id": 30029, "properties": { "facing": "west", "powered": "true", @@ -125472,7 +134360,7 @@ } }, { - "id": 27557, + "id": 30030, "properties": { "facing": "west", "powered": "false", @@ -125480,7 +134368,7 @@ } }, { - "id": 27558, + "id": 30031, "properties": { "facing": "west", "powered": "false", @@ -125488,7 +134376,7 @@ } }, { - "id": 27559, + "id": 30032, "properties": { "facing": "up", "powered": "true", @@ -125496,7 +134384,7 @@ } }, { - "id": 27560, + "id": 30033, "properties": { "facing": "up", "powered": "true", @@ -125504,7 +134392,7 @@ } }, { - "id": 27561, + "id": 30034, "properties": { "facing": "up", "powered": "false", @@ -125513,7 +134401,7 @@ }, { "default": true, - "id": 27562, + "id": 30035, "properties": { "facing": "up", "powered": "false", @@ -125521,7 +134409,7 @@ } }, { - "id": 27563, + "id": 30036, "properties": { "facing": "down", "powered": "true", @@ -125529,7 +134417,7 @@ } }, { - "id": 27564, + "id": 30037, "properties": { "facing": "down", "powered": "true", @@ -125537,7 +134425,7 @@ } }, { - "id": 27565, + "id": 30038, "properties": { "facing": "down", "powered": "false", @@ -125545,7 +134433,7 @@ } }, { - "id": 27566, + "id": 30039, "properties": { "facing": "down", "powered": "false", @@ -133338,7 +142226,7 @@ "states": [ { "default": true, - "id": 27862 + "id": 30355 } ] }, @@ -133350,7 +142238,7 @@ "states": [ { "default": true, - "id": 27813 + "id": 30306 } ] }, @@ -142333,7 +151221,7 @@ "states": [ { "default": true, - "id": 27922 + "id": 30415 } ] }, @@ -168520,20 +177408,20 @@ }, "states": [ { - "id": 29582, + "id": 32075, "properties": { "axis": "x" } }, { "default": true, - "id": 29583, + "id": 32076, "properties": { "axis": "y" } }, { - "id": 29584, + "id": 32077, "properties": { "axis": "z" } @@ -168549,7 +177437,7 @@ "states": [ { "default": true, - "id": 29868 + "id": 32361 } ] }, @@ -169625,7 +178513,7 @@ "states": [ { "default": true, - "id": 25319 + "id": 27803 } ] }, @@ -169638,7 +178526,7 @@ "states": [ { "default": true, - "id": 25312 + "id": 27785 } ] }, @@ -170012,21 +178900,21 @@ }, "states": [ { - "id": 27075, + "id": 29548, "properties": { "lit": "true", "powered": "true" } }, { - "id": 27076, + "id": 29549, "properties": { "lit": "true", "powered": "false" } }, { - "id": 27077, + "id": 29550, "properties": { "lit": "false", "powered": "true" @@ -170034,7 +178922,7 @@ }, { "default": true, - "id": 27078, + "id": 29551, "properties": { "lit": "false", "powered": "false" @@ -170132,7 +179020,7 @@ }, "states": [ { - "id": 27167, + "id": 29640, "properties": { "type": "single", "facing": "north", @@ -170141,7 +179029,7 @@ }, { "default": true, - "id": 27168, + "id": 29641, "properties": { "type": "single", "facing": "north", @@ -170149,7 +179037,7 @@ } }, { - "id": 27169, + "id": 29642, "properties": { "type": "left", "facing": "north", @@ -170157,7 +179045,7 @@ } }, { - "id": 27170, + "id": 29643, "properties": { "type": "left", "facing": "north", @@ -170165,7 +179053,7 @@ } }, { - "id": 27171, + "id": 29644, "properties": { "type": "right", "facing": "north", @@ -170173,7 +179061,7 @@ } }, { - "id": 27172, + "id": 29645, "properties": { "type": "right", "facing": "north", @@ -170181,7 +179069,7 @@ } }, { - "id": 27173, + "id": 29646, "properties": { "type": "single", "facing": "south", @@ -170189,7 +179077,7 @@ } }, { - "id": 27174, + "id": 29647, "properties": { "type": "single", "facing": "south", @@ -170197,7 +179085,7 @@ } }, { - "id": 27175, + "id": 29648, "properties": { "type": "left", "facing": "south", @@ -170205,7 +179093,7 @@ } }, { - "id": 27176, + "id": 29649, "properties": { "type": "left", "facing": "south", @@ -170213,7 +179101,7 @@ } }, { - "id": 27177, + "id": 29650, "properties": { "type": "right", "facing": "south", @@ -170221,7 +179109,7 @@ } }, { - "id": 27178, + "id": 29651, "properties": { "type": "right", "facing": "south", @@ -170229,7 +179117,7 @@ } }, { - "id": 27179, + "id": 29652, "properties": { "type": "single", "facing": "west", @@ -170237,7 +179125,7 @@ } }, { - "id": 27180, + "id": 29653, "properties": { "type": "single", "facing": "west", @@ -170245,7 +179133,7 @@ } }, { - "id": 27181, + "id": 29654, "properties": { "type": "left", "facing": "west", @@ -170253,7 +179141,7 @@ } }, { - "id": 27182, + "id": 29655, "properties": { "type": "left", "facing": "west", @@ -170261,7 +179149,7 @@ } }, { - "id": 27183, + "id": 29656, "properties": { "type": "right", "facing": "west", @@ -170269,7 +179157,7 @@ } }, { - "id": 27184, + "id": 29657, "properties": { "type": "right", "facing": "west", @@ -170277,7 +179165,7 @@ } }, { - "id": 27185, + "id": 29658, "properties": { "type": "single", "facing": "east", @@ -170285,7 +179173,7 @@ } }, { - "id": 27186, + "id": 29659, "properties": { "type": "single", "facing": "east", @@ -170293,7 +179181,7 @@ } }, { - "id": 27187, + "id": 29660, "properties": { "type": "left", "facing": "east", @@ -170301,7 +179189,7 @@ } }, { - "id": 27188, + "id": 29661, "properties": { "type": "left", "facing": "east", @@ -170309,7 +179197,7 @@ } }, { - "id": 27189, + "id": 29662, "properties": { "type": "right", "facing": "east", @@ -170317,7 +179205,7 @@ } }, { - "id": 27190, + "id": 29663, "properties": { "type": "right", "facing": "east", @@ -170359,7 +179247,7 @@ }, "states": [ { - "id": 26151, + "id": 28688, "properties": { "facing": "north", "half": "upper", @@ -170369,7 +179257,7 @@ } }, { - "id": 26152, + "id": 28689, "properties": { "facing": "north", "half": "upper", @@ -170379,7 +179267,7 @@ } }, { - "id": 26153, + "id": 28690, "properties": { "facing": "north", "half": "upper", @@ -170389,7 +179277,7 @@ } }, { - "id": 26154, + "id": 28691, "properties": { "facing": "north", "half": "upper", @@ -170399,7 +179287,7 @@ } }, { - "id": 26155, + "id": 28692, "properties": { "facing": "north", "half": "upper", @@ -170409,7 +179297,7 @@ } }, { - "id": 26156, + "id": 28693, "properties": { "facing": "north", "half": "upper", @@ -170419,7 +179307,7 @@ } }, { - "id": 26157, + "id": 28694, "properties": { "facing": "north", "half": "upper", @@ -170429,7 +179317,7 @@ } }, { - "id": 26158, + "id": 28695, "properties": { "facing": "north", "half": "upper", @@ -170439,7 +179327,7 @@ } }, { - "id": 26159, + "id": 28696, "properties": { "facing": "north", "half": "lower", @@ -170449,7 +179337,7 @@ } }, { - "id": 26160, + "id": 28697, "properties": { "facing": "north", "half": "lower", @@ -170459,7 +179347,7 @@ } }, { - "id": 26161, + "id": 28698, "properties": { "facing": "north", "half": "lower", @@ -170470,7 +179358,7 @@ }, { "default": true, - "id": 26162, + "id": 28699, "properties": { "facing": "north", "half": "lower", @@ -170480,7 +179368,7 @@ } }, { - "id": 26163, + "id": 28700, "properties": { "facing": "north", "half": "lower", @@ -170490,7 +179378,7 @@ } }, { - "id": 26164, + "id": 28701, "properties": { "facing": "north", "half": "lower", @@ -170500,7 +179388,7 @@ } }, { - "id": 26165, + "id": 28702, "properties": { "facing": "north", "half": "lower", @@ -170510,7 +179398,7 @@ } }, { - "id": 26166, + "id": 28703, "properties": { "facing": "north", "half": "lower", @@ -170520,7 +179408,7 @@ } }, { - "id": 26167, + "id": 28704, "properties": { "facing": "south", "half": "upper", @@ -170530,7 +179418,7 @@ } }, { - "id": 26168, + "id": 28705, "properties": { "facing": "south", "half": "upper", @@ -170540,7 +179428,7 @@ } }, { - "id": 26169, + "id": 28706, "properties": { "facing": "south", "half": "upper", @@ -170550,7 +179438,7 @@ } }, { - "id": 26170, + "id": 28707, "properties": { "facing": "south", "half": "upper", @@ -170560,7 +179448,7 @@ } }, { - "id": 26171, + "id": 28708, "properties": { "facing": "south", "half": "upper", @@ -170570,7 +179458,7 @@ } }, { - "id": 26172, + "id": 28709, "properties": { "facing": "south", "half": "upper", @@ -170580,7 +179468,7 @@ } }, { - "id": 26173, + "id": 28710, "properties": { "facing": "south", "half": "upper", @@ -170590,7 +179478,7 @@ } }, { - "id": 26174, + "id": 28711, "properties": { "facing": "south", "half": "upper", @@ -170600,7 +179488,7 @@ } }, { - "id": 26175, + "id": 28712, "properties": { "facing": "south", "half": "lower", @@ -170610,7 +179498,7 @@ } }, { - "id": 26176, + "id": 28713, "properties": { "facing": "south", "half": "lower", @@ -170620,7 +179508,7 @@ } }, { - "id": 26177, + "id": 28714, "properties": { "facing": "south", "half": "lower", @@ -170630,7 +179518,7 @@ } }, { - "id": 26178, + "id": 28715, "properties": { "facing": "south", "half": "lower", @@ -170640,7 +179528,7 @@ } }, { - "id": 26179, + "id": 28716, "properties": { "facing": "south", "half": "lower", @@ -170650,7 +179538,7 @@ } }, { - "id": 26180, + "id": 28717, "properties": { "facing": "south", "half": "lower", @@ -170660,7 +179548,7 @@ } }, { - "id": 26181, + "id": 28718, "properties": { "facing": "south", "half": "lower", @@ -170670,7 +179558,7 @@ } }, { - "id": 26182, + "id": 28719, "properties": { "facing": "south", "half": "lower", @@ -170680,7 +179568,7 @@ } }, { - "id": 26183, + "id": 28720, "properties": { "facing": "west", "half": "upper", @@ -170690,7 +179578,7 @@ } }, { - "id": 26184, + "id": 28721, "properties": { "facing": "west", "half": "upper", @@ -170700,7 +179588,7 @@ } }, { - "id": 26185, + "id": 28722, "properties": { "facing": "west", "half": "upper", @@ -170710,7 +179598,7 @@ } }, { - "id": 26186, + "id": 28723, "properties": { "facing": "west", "half": "upper", @@ -170720,7 +179608,7 @@ } }, { - "id": 26187, + "id": 28724, "properties": { "facing": "west", "half": "upper", @@ -170730,7 +179618,7 @@ } }, { - "id": 26188, + "id": 28725, "properties": { "facing": "west", "half": "upper", @@ -170740,7 +179628,7 @@ } }, { - "id": 26189, + "id": 28726, "properties": { "facing": "west", "half": "upper", @@ -170750,7 +179638,7 @@ } }, { - "id": 26190, + "id": 28727, "properties": { "facing": "west", "half": "upper", @@ -170760,7 +179648,7 @@ } }, { - "id": 26191, + "id": 28728, "properties": { "facing": "west", "half": "lower", @@ -170770,7 +179658,7 @@ } }, { - "id": 26192, + "id": 28729, "properties": { "facing": "west", "half": "lower", @@ -170780,7 +179668,7 @@ } }, { - "id": 26193, + "id": 28730, "properties": { "facing": "west", "half": "lower", @@ -170790,7 +179678,7 @@ } }, { - "id": 26194, + "id": 28731, "properties": { "facing": "west", "half": "lower", @@ -170800,7 +179688,7 @@ } }, { - "id": 26195, + "id": 28732, "properties": { "facing": "west", "half": "lower", @@ -170810,7 +179698,7 @@ } }, { - "id": 26196, + "id": 28733, "properties": { "facing": "west", "half": "lower", @@ -170820,7 +179708,7 @@ } }, { - "id": 26197, + "id": 28734, "properties": { "facing": "west", "half": "lower", @@ -170830,7 +179718,7 @@ } }, { - "id": 26198, + "id": 28735, "properties": { "facing": "west", "half": "lower", @@ -170840,7 +179728,7 @@ } }, { - "id": 26199, + "id": 28736, "properties": { "facing": "east", "half": "upper", @@ -170850,7 +179738,7 @@ } }, { - "id": 26200, + "id": 28737, "properties": { "facing": "east", "half": "upper", @@ -170860,7 +179748,7 @@ } }, { - "id": 26201, + "id": 28738, "properties": { "facing": "east", "half": "upper", @@ -170870,7 +179758,7 @@ } }, { - "id": 26202, + "id": 28739, "properties": { "facing": "east", "half": "upper", @@ -170880,7 +179768,7 @@ } }, { - "id": 26203, + "id": 28740, "properties": { "facing": "east", "half": "upper", @@ -170890,7 +179778,7 @@ } }, { - "id": 26204, + "id": 28741, "properties": { "facing": "east", "half": "upper", @@ -170900,7 +179788,7 @@ } }, { - "id": 26205, + "id": 28742, "properties": { "facing": "east", "half": "upper", @@ -170910,7 +179798,7 @@ } }, { - "id": 26206, + "id": 28743, "properties": { "facing": "east", "half": "upper", @@ -170920,7 +179808,7 @@ } }, { - "id": 26207, + "id": 28744, "properties": { "facing": "east", "half": "lower", @@ -170930,7 +179818,7 @@ } }, { - "id": 26208, + "id": 28745, "properties": { "facing": "east", "half": "lower", @@ -170940,7 +179828,7 @@ } }, { - "id": 26209, + "id": 28746, "properties": { "facing": "east", "half": "lower", @@ -170950,7 +179838,7 @@ } }, { - "id": 26210, + "id": 28747, "properties": { "facing": "east", "half": "lower", @@ -170960,7 +179848,7 @@ } }, { - "id": 26211, + "id": 28748, "properties": { "facing": "east", "half": "lower", @@ -170970,7 +179858,7 @@ } }, { - "id": 26212, + "id": 28749, "properties": { "facing": "east", "half": "lower", @@ -170980,7 +179868,7 @@ } }, { - "id": 26213, + "id": 28750, "properties": { "facing": "east", "half": "lower", @@ -170990,7 +179878,7 @@ } }, { - "id": 26214, + "id": 28751, "properties": { "facing": "east", "half": "lower", @@ -171027,7 +179915,7 @@ }, "states": [ { - "id": 27383, + "id": 29856, "properties": { "copper_golem_pose": "standing", "facing": "north", @@ -171036,7 +179924,7 @@ }, { "default": true, - "id": 27384, + "id": 29857, "properties": { "copper_golem_pose": "standing", "facing": "north", @@ -171044,7 +179932,7 @@ } }, { - "id": 27385, + "id": 29858, "properties": { "copper_golem_pose": "standing", "facing": "south", @@ -171052,7 +179940,7 @@ } }, { - "id": 27386, + "id": 29859, "properties": { "copper_golem_pose": "standing", "facing": "south", @@ -171060,7 +179948,7 @@ } }, { - "id": 27387, + "id": 29860, "properties": { "copper_golem_pose": "standing", "facing": "west", @@ -171068,7 +179956,7 @@ } }, { - "id": 27388, + "id": 29861, "properties": { "copper_golem_pose": "standing", "facing": "west", @@ -171076,7 +179964,7 @@ } }, { - "id": 27389, + "id": 29862, "properties": { "copper_golem_pose": "standing", "facing": "east", @@ -171084,7 +179972,7 @@ } }, { - "id": 27390, + "id": 29863, "properties": { "copper_golem_pose": "standing", "facing": "east", @@ -171092,7 +179980,7 @@ } }, { - "id": 27391, + "id": 29864, "properties": { "copper_golem_pose": "sitting", "facing": "north", @@ -171100,7 +179988,7 @@ } }, { - "id": 27392, + "id": 29865, "properties": { "copper_golem_pose": "sitting", "facing": "north", @@ -171108,7 +179996,7 @@ } }, { - "id": 27393, + "id": 29866, "properties": { "copper_golem_pose": "sitting", "facing": "south", @@ -171116,7 +180004,7 @@ } }, { - "id": 27394, + "id": 29867, "properties": { "copper_golem_pose": "sitting", "facing": "south", @@ -171124,7 +180012,7 @@ } }, { - "id": 27395, + "id": 29868, "properties": { "copper_golem_pose": "sitting", "facing": "west", @@ -171132,7 +180020,7 @@ } }, { - "id": 27396, + "id": 29869, "properties": { "copper_golem_pose": "sitting", "facing": "west", @@ -171140,7 +180028,7 @@ } }, { - "id": 27397, + "id": 29870, "properties": { "copper_golem_pose": "sitting", "facing": "east", @@ -171148,7 +180036,7 @@ } }, { - "id": 27398, + "id": 29871, "properties": { "copper_golem_pose": "sitting", "facing": "east", @@ -171156,7 +180044,7 @@ } }, { - "id": 27399, + "id": 29872, "properties": { "copper_golem_pose": "running", "facing": "north", @@ -171164,7 +180052,7 @@ } }, { - "id": 27400, + "id": 29873, "properties": { "copper_golem_pose": "running", "facing": "north", @@ -171172,7 +180060,7 @@ } }, { - "id": 27401, + "id": 29874, "properties": { "copper_golem_pose": "running", "facing": "south", @@ -171180,7 +180068,7 @@ } }, { - "id": 27402, + "id": 29875, "properties": { "copper_golem_pose": "running", "facing": "south", @@ -171188,7 +180076,7 @@ } }, { - "id": 27403, + "id": 29876, "properties": { "copper_golem_pose": "running", "facing": "west", @@ -171196,7 +180084,7 @@ } }, { - "id": 27404, + "id": 29877, "properties": { "copper_golem_pose": "running", "facing": "west", @@ -171204,7 +180092,7 @@ } }, { - "id": 27405, + "id": 29878, "properties": { "copper_golem_pose": "running", "facing": "east", @@ -171212,7 +180100,7 @@ } }, { - "id": 27406, + "id": 29879, "properties": { "copper_golem_pose": "running", "facing": "east", @@ -171220,7 +180108,7 @@ } }, { - "id": 27407, + "id": 29880, "properties": { "copper_golem_pose": "star", "facing": "north", @@ -171228,7 +180116,7 @@ } }, { - "id": 27408, + "id": 29881, "properties": { "copper_golem_pose": "star", "facing": "north", @@ -171236,7 +180124,7 @@ } }, { - "id": 27409, + "id": 29882, "properties": { "copper_golem_pose": "star", "facing": "south", @@ -171244,7 +180132,7 @@ } }, { - "id": 27410, + "id": 29883, "properties": { "copper_golem_pose": "star", "facing": "south", @@ -171252,7 +180140,7 @@ } }, { - "id": 27411, + "id": 29884, "properties": { "copper_golem_pose": "star", "facing": "west", @@ -171260,7 +180148,7 @@ } }, { - "id": 27412, + "id": 29885, "properties": { "copper_golem_pose": "star", "facing": "west", @@ -171268,7 +180156,7 @@ } }, { - "id": 27413, + "id": 29886, "properties": { "copper_golem_pose": "star", "facing": "east", @@ -171276,7 +180164,7 @@ } }, { - "id": 27414, + "id": 29887, "properties": { "copper_golem_pose": "star", "facing": "east", @@ -171299,14 +180187,14 @@ }, "states": [ { - "id": 27053, + "id": 29526, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 27054, + "id": 29527, "properties": { "waterlogged": "false" } @@ -171363,7 +180251,7 @@ }, "minecraft:oxidized_copper_trapdoor": { "definition": { - "type": "minecraft:weathering_copper_trap_door", + "type": "minecraft:weathering_copper_trapdoor", "block_set_type": "copper", "properties": {}, "weathering_state": "oxidized" @@ -171394,7 +180282,7 @@ }, "states": [ { - "id": 26663, + "id": 29200, "properties": { "facing": "north", "half": "top", @@ -171404,7 +180292,7 @@ } }, { - "id": 26664, + "id": 29201, "properties": { "facing": "north", "half": "top", @@ -171414,7 +180302,7 @@ } }, { - "id": 26665, + "id": 29202, "properties": { "facing": "north", "half": "top", @@ -171424,7 +180312,7 @@ } }, { - "id": 26666, + "id": 29203, "properties": { "facing": "north", "half": "top", @@ -171434,7 +180322,7 @@ } }, { - "id": 26667, + "id": 29204, "properties": { "facing": "north", "half": "top", @@ -171444,7 +180332,7 @@ } }, { - "id": 26668, + "id": 29205, "properties": { "facing": "north", "half": "top", @@ -171454,7 +180342,7 @@ } }, { - "id": 26669, + "id": 29206, "properties": { "facing": "north", "half": "top", @@ -171464,7 +180352,7 @@ } }, { - "id": 26670, + "id": 29207, "properties": { "facing": "north", "half": "top", @@ -171474,7 +180362,7 @@ } }, { - "id": 26671, + "id": 29208, "properties": { "facing": "north", "half": "bottom", @@ -171484,7 +180372,7 @@ } }, { - "id": 26672, + "id": 29209, "properties": { "facing": "north", "half": "bottom", @@ -171494,7 +180382,7 @@ } }, { - "id": 26673, + "id": 29210, "properties": { "facing": "north", "half": "bottom", @@ -171504,7 +180392,7 @@ } }, { - "id": 26674, + "id": 29211, "properties": { "facing": "north", "half": "bottom", @@ -171514,7 +180402,7 @@ } }, { - "id": 26675, + "id": 29212, "properties": { "facing": "north", "half": "bottom", @@ -171524,7 +180412,7 @@ } }, { - "id": 26676, + "id": 29213, "properties": { "facing": "north", "half": "bottom", @@ -171534,7 +180422,7 @@ } }, { - "id": 26677, + "id": 29214, "properties": { "facing": "north", "half": "bottom", @@ -171545,7 +180433,7 @@ }, { "default": true, - "id": 26678, + "id": 29215, "properties": { "facing": "north", "half": "bottom", @@ -171555,7 +180443,7 @@ } }, { - "id": 26679, + "id": 29216, "properties": { "facing": "south", "half": "top", @@ -171565,7 +180453,7 @@ } }, { - "id": 26680, + "id": 29217, "properties": { "facing": "south", "half": "top", @@ -171575,7 +180463,7 @@ } }, { - "id": 26681, + "id": 29218, "properties": { "facing": "south", "half": "top", @@ -171585,7 +180473,7 @@ } }, { - "id": 26682, + "id": 29219, "properties": { "facing": "south", "half": "top", @@ -171595,7 +180483,7 @@ } }, { - "id": 26683, + "id": 29220, "properties": { "facing": "south", "half": "top", @@ -171605,7 +180493,7 @@ } }, { - "id": 26684, + "id": 29221, "properties": { "facing": "south", "half": "top", @@ -171615,7 +180503,7 @@ } }, { - "id": 26685, + "id": 29222, "properties": { "facing": "south", "half": "top", @@ -171625,7 +180513,7 @@ } }, { - "id": 26686, + "id": 29223, "properties": { "facing": "south", "half": "top", @@ -171635,7 +180523,7 @@ } }, { - "id": 26687, + "id": 29224, "properties": { "facing": "south", "half": "bottom", @@ -171645,7 +180533,7 @@ } }, { - "id": 26688, + "id": 29225, "properties": { "facing": "south", "half": "bottom", @@ -171655,7 +180543,7 @@ } }, { - "id": 26689, + "id": 29226, "properties": { "facing": "south", "half": "bottom", @@ -171665,7 +180553,7 @@ } }, { - "id": 26690, + "id": 29227, "properties": { "facing": "south", "half": "bottom", @@ -171675,7 +180563,7 @@ } }, { - "id": 26691, + "id": 29228, "properties": { "facing": "south", "half": "bottom", @@ -171685,7 +180573,7 @@ } }, { - "id": 26692, + "id": 29229, "properties": { "facing": "south", "half": "bottom", @@ -171695,7 +180583,7 @@ } }, { - "id": 26693, + "id": 29230, "properties": { "facing": "south", "half": "bottom", @@ -171705,7 +180593,7 @@ } }, { - "id": 26694, + "id": 29231, "properties": { "facing": "south", "half": "bottom", @@ -171715,7 +180603,7 @@ } }, { - "id": 26695, + "id": 29232, "properties": { "facing": "west", "half": "top", @@ -171725,7 +180613,7 @@ } }, { - "id": 26696, + "id": 29233, "properties": { "facing": "west", "half": "top", @@ -171735,7 +180623,7 @@ } }, { - "id": 26697, + "id": 29234, "properties": { "facing": "west", "half": "top", @@ -171745,7 +180633,7 @@ } }, { - "id": 26698, + "id": 29235, "properties": { "facing": "west", "half": "top", @@ -171755,7 +180643,7 @@ } }, { - "id": 26699, + "id": 29236, "properties": { "facing": "west", "half": "top", @@ -171765,7 +180653,7 @@ } }, { - "id": 26700, + "id": 29237, "properties": { "facing": "west", "half": "top", @@ -171775,7 +180663,7 @@ } }, { - "id": 26701, + "id": 29238, "properties": { "facing": "west", "half": "top", @@ -171785,7 +180673,7 @@ } }, { - "id": 26702, + "id": 29239, "properties": { "facing": "west", "half": "top", @@ -171795,7 +180683,7 @@ } }, { - "id": 26703, + "id": 29240, "properties": { "facing": "west", "half": "bottom", @@ -171805,7 +180693,7 @@ } }, { - "id": 26704, + "id": 29241, "properties": { "facing": "west", "half": "bottom", @@ -171815,7 +180703,7 @@ } }, { - "id": 26705, + "id": 29242, "properties": { "facing": "west", "half": "bottom", @@ -171825,7 +180713,7 @@ } }, { - "id": 26706, + "id": 29243, "properties": { "facing": "west", "half": "bottom", @@ -171835,7 +180723,7 @@ } }, { - "id": 26707, + "id": 29244, "properties": { "facing": "west", "half": "bottom", @@ -171845,7 +180733,7 @@ } }, { - "id": 26708, + "id": 29245, "properties": { "facing": "west", "half": "bottom", @@ -171855,7 +180743,7 @@ } }, { - "id": 26709, + "id": 29246, "properties": { "facing": "west", "half": "bottom", @@ -171865,7 +180753,7 @@ } }, { - "id": 26710, + "id": 29247, "properties": { "facing": "west", "half": "bottom", @@ -171875,7 +180763,7 @@ } }, { - "id": 26711, + "id": 29248, "properties": { "facing": "east", "half": "top", @@ -171885,7 +180773,7 @@ } }, { - "id": 26712, + "id": 29249, "properties": { "facing": "east", "half": "top", @@ -171895,7 +180783,7 @@ } }, { - "id": 26713, + "id": 29250, "properties": { "facing": "east", "half": "top", @@ -171905,7 +180793,7 @@ } }, { - "id": 26714, + "id": 29251, "properties": { "facing": "east", "half": "top", @@ -171915,7 +180803,7 @@ } }, { - "id": 26715, + "id": 29252, "properties": { "facing": "east", "half": "top", @@ -171925,7 +180813,7 @@ } }, { - "id": 26716, + "id": 29253, "properties": { "facing": "east", "half": "top", @@ -171935,7 +180823,7 @@ } }, { - "id": 26717, + "id": 29254, "properties": { "facing": "east", "half": "top", @@ -171945,7 +180833,7 @@ } }, { - "id": 26718, + "id": 29255, "properties": { "facing": "east", "half": "top", @@ -171955,7 +180843,7 @@ } }, { - "id": 26719, + "id": 29256, "properties": { "facing": "east", "half": "bottom", @@ -171965,7 +180853,7 @@ } }, { - "id": 26720, + "id": 29257, "properties": { "facing": "east", "half": "bottom", @@ -171975,7 +180863,7 @@ } }, { - "id": 26721, + "id": 29258, "properties": { "facing": "east", "half": "bottom", @@ -171985,7 +180873,7 @@ } }, { - "id": 26722, + "id": 29259, "properties": { "facing": "east", "half": "bottom", @@ -171995,7 +180883,7 @@ } }, { - "id": 26723, + "id": 29260, "properties": { "facing": "east", "half": "bottom", @@ -172005,7 +180893,7 @@ } }, { - "id": 26724, + "id": 29261, "properties": { "facing": "east", "half": "bottom", @@ -172015,7 +180903,7 @@ } }, { - "id": 26725, + "id": 29262, "properties": { "facing": "east", "half": "bottom", @@ -172025,7 +180913,7 @@ } }, { - "id": 26726, + "id": 29263, "properties": { "facing": "east", "half": "bottom", @@ -172045,7 +180933,7 @@ "states": [ { "default": true, - "id": 25315 + "id": 27795 } ] }, @@ -172068,21 +180956,21 @@ }, "states": [ { - "id": 25647, + "id": 28466, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 25648, + "id": 28467, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 25649, + "id": 28468, "properties": { "type": "bottom", "waterlogged": "true" @@ -172090,21 +180978,21 @@ }, { "default": true, - "id": 25650, + "id": 28469, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 25651, + "id": 28470, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 25652, + "id": 28471, "properties": { "type": "double", "waterlogged": "false" @@ -172146,7 +181034,7 @@ }, "states": [ { - "id": 25327, + "id": 28048, "properties": { "facing": "north", "half": "top", @@ -172155,7 +181043,7 @@ } }, { - "id": 25328, + "id": 28049, "properties": { "facing": "north", "half": "top", @@ -172164,7 +181052,7 @@ } }, { - "id": 25329, + "id": 28050, "properties": { "facing": "north", "half": "top", @@ -172173,7 +181061,7 @@ } }, { - "id": 25330, + "id": 28051, "properties": { "facing": "north", "half": "top", @@ -172182,7 +181070,7 @@ } }, { - "id": 25331, + "id": 28052, "properties": { "facing": "north", "half": "top", @@ -172191,7 +181079,7 @@ } }, { - "id": 25332, + "id": 28053, "properties": { "facing": "north", "half": "top", @@ -172200,7 +181088,7 @@ } }, { - "id": 25333, + "id": 28054, "properties": { "facing": "north", "half": "top", @@ -172209,7 +181097,7 @@ } }, { - "id": 25334, + "id": 28055, "properties": { "facing": "north", "half": "top", @@ -172218,7 +181106,7 @@ } }, { - "id": 25335, + "id": 28056, "properties": { "facing": "north", "half": "top", @@ -172227,7 +181115,7 @@ } }, { - "id": 25336, + "id": 28057, "properties": { "facing": "north", "half": "top", @@ -172236,7 +181124,7 @@ } }, { - "id": 25337, + "id": 28058, "properties": { "facing": "north", "half": "bottom", @@ -172246,7 +181134,7 @@ }, { "default": true, - "id": 25338, + "id": 28059, "properties": { "facing": "north", "half": "bottom", @@ -172255,7 +181143,7 @@ } }, { - "id": 25339, + "id": 28060, "properties": { "facing": "north", "half": "bottom", @@ -172264,7 +181152,7 @@ } }, { - "id": 25340, + "id": 28061, "properties": { "facing": "north", "half": "bottom", @@ -172273,7 +181161,7 @@ } }, { - "id": 25341, + "id": 28062, "properties": { "facing": "north", "half": "bottom", @@ -172282,7 +181170,7 @@ } }, { - "id": 25342, + "id": 28063, "properties": { "facing": "north", "half": "bottom", @@ -172291,7 +181179,7 @@ } }, { - "id": 25343, + "id": 28064, "properties": { "facing": "north", "half": "bottom", @@ -172300,7 +181188,7 @@ } }, { - "id": 25344, + "id": 28065, "properties": { "facing": "north", "half": "bottom", @@ -172309,7 +181197,7 @@ } }, { - "id": 25345, + "id": 28066, "properties": { "facing": "north", "half": "bottom", @@ -172318,7 +181206,7 @@ } }, { - "id": 25346, + "id": 28067, "properties": { "facing": "north", "half": "bottom", @@ -172327,7 +181215,7 @@ } }, { - "id": 25347, + "id": 28068, "properties": { "facing": "south", "half": "top", @@ -172336,7 +181224,7 @@ } }, { - "id": 25348, + "id": 28069, "properties": { "facing": "south", "half": "top", @@ -172345,7 +181233,7 @@ } }, { - "id": 25349, + "id": 28070, "properties": { "facing": "south", "half": "top", @@ -172354,7 +181242,7 @@ } }, { - "id": 25350, + "id": 28071, "properties": { "facing": "south", "half": "top", @@ -172363,7 +181251,7 @@ } }, { - "id": 25351, + "id": 28072, "properties": { "facing": "south", "half": "top", @@ -172372,7 +181260,7 @@ } }, { - "id": 25352, + "id": 28073, "properties": { "facing": "south", "half": "top", @@ -172381,7 +181269,7 @@ } }, { - "id": 25353, + "id": 28074, "properties": { "facing": "south", "half": "top", @@ -172390,7 +181278,7 @@ } }, { - "id": 25354, + "id": 28075, "properties": { "facing": "south", "half": "top", @@ -172399,7 +181287,7 @@ } }, { - "id": 25355, + "id": 28076, "properties": { "facing": "south", "half": "top", @@ -172408,7 +181296,7 @@ } }, { - "id": 25356, + "id": 28077, "properties": { "facing": "south", "half": "top", @@ -172417,7 +181305,7 @@ } }, { - "id": 25357, + "id": 28078, "properties": { "facing": "south", "half": "bottom", @@ -172426,7 +181314,7 @@ } }, { - "id": 25358, + "id": 28079, "properties": { "facing": "south", "half": "bottom", @@ -172435,7 +181323,7 @@ } }, { - "id": 25359, + "id": 28080, "properties": { "facing": "south", "half": "bottom", @@ -172444,7 +181332,7 @@ } }, { - "id": 25360, + "id": 28081, "properties": { "facing": "south", "half": "bottom", @@ -172453,7 +181341,7 @@ } }, { - "id": 25361, + "id": 28082, "properties": { "facing": "south", "half": "bottom", @@ -172462,7 +181350,7 @@ } }, { - "id": 25362, + "id": 28083, "properties": { "facing": "south", "half": "bottom", @@ -172471,7 +181359,7 @@ } }, { - "id": 25363, + "id": 28084, "properties": { "facing": "south", "half": "bottom", @@ -172480,7 +181368,7 @@ } }, { - "id": 25364, + "id": 28085, "properties": { "facing": "south", "half": "bottom", @@ -172489,7 +181377,7 @@ } }, { - "id": 25365, + "id": 28086, "properties": { "facing": "south", "half": "bottom", @@ -172498,7 +181386,7 @@ } }, { - "id": 25366, + "id": 28087, "properties": { "facing": "south", "half": "bottom", @@ -172507,7 +181395,7 @@ } }, { - "id": 25367, + "id": 28088, "properties": { "facing": "west", "half": "top", @@ -172516,7 +181404,7 @@ } }, { - "id": 25368, + "id": 28089, "properties": { "facing": "west", "half": "top", @@ -172525,7 +181413,7 @@ } }, { - "id": 25369, + "id": 28090, "properties": { "facing": "west", "half": "top", @@ -172534,7 +181422,7 @@ } }, { - "id": 25370, + "id": 28091, "properties": { "facing": "west", "half": "top", @@ -172543,7 +181431,7 @@ } }, { - "id": 25371, + "id": 28092, "properties": { "facing": "west", "half": "top", @@ -172552,7 +181440,7 @@ } }, { - "id": 25372, + "id": 28093, "properties": { "facing": "west", "half": "top", @@ -172561,7 +181449,7 @@ } }, { - "id": 25373, + "id": 28094, "properties": { "facing": "west", "half": "top", @@ -172570,7 +181458,7 @@ } }, { - "id": 25374, + "id": 28095, "properties": { "facing": "west", "half": "top", @@ -172579,7 +181467,7 @@ } }, { - "id": 25375, + "id": 28096, "properties": { "facing": "west", "half": "top", @@ -172588,7 +181476,7 @@ } }, { - "id": 25376, + "id": 28097, "properties": { "facing": "west", "half": "top", @@ -172597,7 +181485,7 @@ } }, { - "id": 25377, + "id": 28098, "properties": { "facing": "west", "half": "bottom", @@ -172606,7 +181494,7 @@ } }, { - "id": 25378, + "id": 28099, "properties": { "facing": "west", "half": "bottom", @@ -172615,7 +181503,7 @@ } }, { - "id": 25379, + "id": 28100, "properties": { "facing": "west", "half": "bottom", @@ -172624,7 +181512,7 @@ } }, { - "id": 25380, + "id": 28101, "properties": { "facing": "west", "half": "bottom", @@ -172633,7 +181521,7 @@ } }, { - "id": 25381, + "id": 28102, "properties": { "facing": "west", "half": "bottom", @@ -172642,7 +181530,7 @@ } }, { - "id": 25382, + "id": 28103, "properties": { "facing": "west", "half": "bottom", @@ -172651,7 +181539,7 @@ } }, { - "id": 25383, + "id": 28104, "properties": { "facing": "west", "half": "bottom", @@ -172660,7 +181548,7 @@ } }, { - "id": 25384, + "id": 28105, "properties": { "facing": "west", "half": "bottom", @@ -172669,7 +181557,7 @@ } }, { - "id": 25385, + "id": 28106, "properties": { "facing": "west", "half": "bottom", @@ -172678,7 +181566,7 @@ } }, { - "id": 25386, + "id": 28107, "properties": { "facing": "west", "half": "bottom", @@ -172687,7 +181575,7 @@ } }, { - "id": 25387, + "id": 28108, "properties": { "facing": "east", "half": "top", @@ -172696,7 +181584,7 @@ } }, { - "id": 25388, + "id": 28109, "properties": { "facing": "east", "half": "top", @@ -172705,7 +181593,7 @@ } }, { - "id": 25389, + "id": 28110, "properties": { "facing": "east", "half": "top", @@ -172714,7 +181602,7 @@ } }, { - "id": 25390, + "id": 28111, "properties": { "facing": "east", "half": "top", @@ -172723,7 +181611,7 @@ } }, { - "id": 25391, + "id": 28112, "properties": { "facing": "east", "half": "top", @@ -172732,7 +181620,7 @@ } }, { - "id": 25392, + "id": 28113, "properties": { "facing": "east", "half": "top", @@ -172741,7 +181629,7 @@ } }, { - "id": 25393, + "id": 28114, "properties": { "facing": "east", "half": "top", @@ -172750,7 +181638,7 @@ } }, { - "id": 25394, + "id": 28115, "properties": { "facing": "east", "half": "top", @@ -172759,7 +181647,7 @@ } }, { - "id": 25395, + "id": 28116, "properties": { "facing": "east", "half": "top", @@ -172768,7 +181656,7 @@ } }, { - "id": 25396, + "id": 28117, "properties": { "facing": "east", "half": "top", @@ -172777,7 +181665,7 @@ } }, { - "id": 25397, + "id": 28118, "properties": { "facing": "east", "half": "bottom", @@ -172786,7 +181674,7 @@ } }, { - "id": 25398, + "id": 28119, "properties": { "facing": "east", "half": "bottom", @@ -172795,7 +181683,7 @@ } }, { - "id": 25399, + "id": 28120, "properties": { "facing": "east", "half": "bottom", @@ -172804,7 +181692,7 @@ } }, { - "id": 25400, + "id": 28121, "properties": { "facing": "east", "half": "bottom", @@ -172813,7 +181701,7 @@ } }, { - "id": 25401, + "id": 28122, "properties": { "facing": "east", "half": "bottom", @@ -172822,7 +181710,7 @@ } }, { - "id": 25402, + "id": 28123, "properties": { "facing": "east", "half": "bottom", @@ -172831,7 +181719,7 @@ } }, { - "id": 25403, + "id": 28124, "properties": { "facing": "east", "half": "bottom", @@ -172840,7 +181728,7 @@ } }, { - "id": 25404, + "id": 28125, "properties": { "facing": "east", "half": "bottom", @@ -172849,7 +181737,7 @@ } }, { - "id": 25405, + "id": 28126, "properties": { "facing": "east", "half": "bottom", @@ -172858,7 +181746,7 @@ } }, { - "id": 25406, + "id": 28127, "properties": { "facing": "east", "half": "bottom", @@ -172894,7 +181782,7 @@ }, "states": [ { - "id": 27615, + "id": 30088, "properties": { "facing": "north", "powered": "true", @@ -172902,7 +181790,7 @@ } }, { - "id": 27616, + "id": 30089, "properties": { "facing": "north", "powered": "true", @@ -172910,7 +181798,7 @@ } }, { - "id": 27617, + "id": 30090, "properties": { "facing": "north", "powered": "false", @@ -172918,7 +181806,7 @@ } }, { - "id": 27618, + "id": 30091, "properties": { "facing": "north", "powered": "false", @@ -172926,7 +181814,7 @@ } }, { - "id": 27619, + "id": 30092, "properties": { "facing": "east", "powered": "true", @@ -172934,7 +181822,7 @@ } }, { - "id": 27620, + "id": 30093, "properties": { "facing": "east", "powered": "true", @@ -172942,7 +181830,7 @@ } }, { - "id": 27621, + "id": 30094, "properties": { "facing": "east", "powered": "false", @@ -172950,7 +181838,7 @@ } }, { - "id": 27622, + "id": 30095, "properties": { "facing": "east", "powered": "false", @@ -172958,7 +181846,7 @@ } }, { - "id": 27623, + "id": 30096, "properties": { "facing": "south", "powered": "true", @@ -172966,7 +181854,7 @@ } }, { - "id": 27624, + "id": 30097, "properties": { "facing": "south", "powered": "true", @@ -172974,7 +181862,7 @@ } }, { - "id": 27625, + "id": 30098, "properties": { "facing": "south", "powered": "false", @@ -172982,7 +181870,7 @@ } }, { - "id": 27626, + "id": 30099, "properties": { "facing": "south", "powered": "false", @@ -172990,7 +181878,7 @@ } }, { - "id": 27627, + "id": 30100, "properties": { "facing": "west", "powered": "true", @@ -172998,7 +181886,7 @@ } }, { - "id": 27628, + "id": 30101, "properties": { "facing": "west", "powered": "true", @@ -173006,7 +181894,7 @@ } }, { - "id": 27629, + "id": 30102, "properties": { "facing": "west", "powered": "false", @@ -173014,7 +181902,7 @@ } }, { - "id": 27630, + "id": 30103, "properties": { "facing": "west", "powered": "false", @@ -173022,7 +181910,7 @@ } }, { - "id": 27631, + "id": 30104, "properties": { "facing": "up", "powered": "true", @@ -173030,7 +181918,7 @@ } }, { - "id": 27632, + "id": 30105, "properties": { "facing": "up", "powered": "true", @@ -173038,7 +181926,7 @@ } }, { - "id": 27633, + "id": 30106, "properties": { "facing": "up", "powered": "false", @@ -173047,7 +181935,7 @@ }, { "default": true, - "id": 27634, + "id": 30107, "properties": { "facing": "up", "powered": "false", @@ -173055,7 +181943,7 @@ } }, { - "id": 27635, + "id": 30108, "properties": { "facing": "down", "powered": "true", @@ -173063,7 +181951,7 @@ } }, { - "id": 27636, + "id": 30109, "properties": { "facing": "down", "powered": "true", @@ -173071,7 +181959,7 @@ } }, { - "id": 27637, + "id": 30110, "properties": { "facing": "down", "powered": "false", @@ -173079,7 +181967,7 @@ } }, { - "id": 27638, + "id": 30111, "properties": { "facing": "down", "powered": "false", @@ -173126,13 +182014,13 @@ "states": [ { "default": true, - "id": 29866, + "id": 32359, "properties": { "tip": "true" } }, { - "id": 29867, + "id": 32360, "properties": { "tip": "false" } @@ -173148,7 +182036,7 @@ "states": [ { "default": true, - "id": 29703 + "id": 32196 } ] }, @@ -173186,7 +182074,7 @@ "states": [ { "default": true, - "id": 29704, + "id": 32197, "properties": { "bottom": "true", "east": "none", @@ -173196,7 +182084,7 @@ } }, { - "id": 29705, + "id": 32198, "properties": { "bottom": "true", "east": "none", @@ -173206,7 +182094,7 @@ } }, { - "id": 29706, + "id": 32199, "properties": { "bottom": "true", "east": "none", @@ -173216,7 +182104,7 @@ } }, { - "id": 29707, + "id": 32200, "properties": { "bottom": "true", "east": "none", @@ -173226,7 +182114,7 @@ } }, { - "id": 29708, + "id": 32201, "properties": { "bottom": "true", "east": "none", @@ -173236,7 +182124,7 @@ } }, { - "id": 29709, + "id": 32202, "properties": { "bottom": "true", "east": "none", @@ -173246,7 +182134,7 @@ } }, { - "id": 29710, + "id": 32203, "properties": { "bottom": "true", "east": "none", @@ -173256,7 +182144,7 @@ } }, { - "id": 29711, + "id": 32204, "properties": { "bottom": "true", "east": "none", @@ -173266,7 +182154,7 @@ } }, { - "id": 29712, + "id": 32205, "properties": { "bottom": "true", "east": "none", @@ -173276,7 +182164,7 @@ } }, { - "id": 29713, + "id": 32206, "properties": { "bottom": "true", "east": "none", @@ -173286,7 +182174,7 @@ } }, { - "id": 29714, + "id": 32207, "properties": { "bottom": "true", "east": "none", @@ -173296,7 +182184,7 @@ } }, { - "id": 29715, + "id": 32208, "properties": { "bottom": "true", "east": "none", @@ -173306,7 +182194,7 @@ } }, { - "id": 29716, + "id": 32209, "properties": { "bottom": "true", "east": "none", @@ -173316,7 +182204,7 @@ } }, { - "id": 29717, + "id": 32210, "properties": { "bottom": "true", "east": "none", @@ -173326,7 +182214,7 @@ } }, { - "id": 29718, + "id": 32211, "properties": { "bottom": "true", "east": "none", @@ -173336,7 +182224,7 @@ } }, { - "id": 29719, + "id": 32212, "properties": { "bottom": "true", "east": "none", @@ -173346,7 +182234,7 @@ } }, { - "id": 29720, + "id": 32213, "properties": { "bottom": "true", "east": "none", @@ -173356,7 +182244,7 @@ } }, { - "id": 29721, + "id": 32214, "properties": { "bottom": "true", "east": "none", @@ -173366,7 +182254,7 @@ } }, { - "id": 29722, + "id": 32215, "properties": { "bottom": "true", "east": "none", @@ -173376,7 +182264,7 @@ } }, { - "id": 29723, + "id": 32216, "properties": { "bottom": "true", "east": "none", @@ -173386,7 +182274,7 @@ } }, { - "id": 29724, + "id": 32217, "properties": { "bottom": "true", "east": "none", @@ -173396,7 +182284,7 @@ } }, { - "id": 29725, + "id": 32218, "properties": { "bottom": "true", "east": "none", @@ -173406,7 +182294,7 @@ } }, { - "id": 29726, + "id": 32219, "properties": { "bottom": "true", "east": "none", @@ -173416,7 +182304,7 @@ } }, { - "id": 29727, + "id": 32220, "properties": { "bottom": "true", "east": "none", @@ -173426,7 +182314,7 @@ } }, { - "id": 29728, + "id": 32221, "properties": { "bottom": "true", "east": "none", @@ -173436,7 +182324,7 @@ } }, { - "id": 29729, + "id": 32222, "properties": { "bottom": "true", "east": "none", @@ -173446,7 +182334,7 @@ } }, { - "id": 29730, + "id": 32223, "properties": { "bottom": "true", "east": "none", @@ -173456,7 +182344,7 @@ } }, { - "id": 29731, + "id": 32224, "properties": { "bottom": "true", "east": "low", @@ -173466,7 +182354,7 @@ } }, { - "id": 29732, + "id": 32225, "properties": { "bottom": "true", "east": "low", @@ -173476,7 +182364,7 @@ } }, { - "id": 29733, + "id": 32226, "properties": { "bottom": "true", "east": "low", @@ -173486,7 +182374,7 @@ } }, { - "id": 29734, + "id": 32227, "properties": { "bottom": "true", "east": "low", @@ -173496,7 +182384,7 @@ } }, { - "id": 29735, + "id": 32228, "properties": { "bottom": "true", "east": "low", @@ -173506,7 +182394,7 @@ } }, { - "id": 29736, + "id": 32229, "properties": { "bottom": "true", "east": "low", @@ -173516,7 +182404,7 @@ } }, { - "id": 29737, + "id": 32230, "properties": { "bottom": "true", "east": "low", @@ -173526,7 +182414,7 @@ } }, { - "id": 29738, + "id": 32231, "properties": { "bottom": "true", "east": "low", @@ -173536,7 +182424,7 @@ } }, { - "id": 29739, + "id": 32232, "properties": { "bottom": "true", "east": "low", @@ -173546,7 +182434,7 @@ } }, { - "id": 29740, + "id": 32233, "properties": { "bottom": "true", "east": "low", @@ -173556,7 +182444,7 @@ } }, { - "id": 29741, + "id": 32234, "properties": { "bottom": "true", "east": "low", @@ -173566,7 +182454,7 @@ } }, { - "id": 29742, + "id": 32235, "properties": { "bottom": "true", "east": "low", @@ -173576,7 +182464,7 @@ } }, { - "id": 29743, + "id": 32236, "properties": { "bottom": "true", "east": "low", @@ -173586,7 +182474,7 @@ } }, { - "id": 29744, + "id": 32237, "properties": { "bottom": "true", "east": "low", @@ -173596,7 +182484,7 @@ } }, { - "id": 29745, + "id": 32238, "properties": { "bottom": "true", "east": "low", @@ -173606,7 +182494,7 @@ } }, { - "id": 29746, + "id": 32239, "properties": { "bottom": "true", "east": "low", @@ -173616,7 +182504,7 @@ } }, { - "id": 29747, + "id": 32240, "properties": { "bottom": "true", "east": "low", @@ -173626,7 +182514,7 @@ } }, { - "id": 29748, + "id": 32241, "properties": { "bottom": "true", "east": "low", @@ -173636,7 +182524,7 @@ } }, { - "id": 29749, + "id": 32242, "properties": { "bottom": "true", "east": "low", @@ -173646,7 +182534,7 @@ } }, { - "id": 29750, + "id": 32243, "properties": { "bottom": "true", "east": "low", @@ -173656,7 +182544,7 @@ } }, { - "id": 29751, + "id": 32244, "properties": { "bottom": "true", "east": "low", @@ -173666,7 +182554,7 @@ } }, { - "id": 29752, + "id": 32245, "properties": { "bottom": "true", "east": "low", @@ -173676,7 +182564,7 @@ } }, { - "id": 29753, + "id": 32246, "properties": { "bottom": "true", "east": "low", @@ -173686,7 +182574,7 @@ } }, { - "id": 29754, + "id": 32247, "properties": { "bottom": "true", "east": "low", @@ -173696,7 +182584,7 @@ } }, { - "id": 29755, + "id": 32248, "properties": { "bottom": "true", "east": "low", @@ -173706,7 +182594,7 @@ } }, { - "id": 29756, + "id": 32249, "properties": { "bottom": "true", "east": "low", @@ -173716,7 +182604,7 @@ } }, { - "id": 29757, + "id": 32250, "properties": { "bottom": "true", "east": "low", @@ -173726,7 +182614,7 @@ } }, { - "id": 29758, + "id": 32251, "properties": { "bottom": "true", "east": "tall", @@ -173736,7 +182624,7 @@ } }, { - "id": 29759, + "id": 32252, "properties": { "bottom": "true", "east": "tall", @@ -173746,7 +182634,7 @@ } }, { - "id": 29760, + "id": 32253, "properties": { "bottom": "true", "east": "tall", @@ -173756,7 +182644,7 @@ } }, { - "id": 29761, + "id": 32254, "properties": { "bottom": "true", "east": "tall", @@ -173766,7 +182654,7 @@ } }, { - "id": 29762, + "id": 32255, "properties": { "bottom": "true", "east": "tall", @@ -173776,7 +182664,7 @@ } }, { - "id": 29763, + "id": 32256, "properties": { "bottom": "true", "east": "tall", @@ -173786,7 +182674,7 @@ } }, { - "id": 29764, + "id": 32257, "properties": { "bottom": "true", "east": "tall", @@ -173796,7 +182684,7 @@ } }, { - "id": 29765, + "id": 32258, "properties": { "bottom": "true", "east": "tall", @@ -173806,7 +182694,7 @@ } }, { - "id": 29766, + "id": 32259, "properties": { "bottom": "true", "east": "tall", @@ -173816,7 +182704,7 @@ } }, { - "id": 29767, + "id": 32260, "properties": { "bottom": "true", "east": "tall", @@ -173826,7 +182714,7 @@ } }, { - "id": 29768, + "id": 32261, "properties": { "bottom": "true", "east": "tall", @@ -173836,7 +182724,7 @@ } }, { - "id": 29769, + "id": 32262, "properties": { "bottom": "true", "east": "tall", @@ -173846,7 +182734,7 @@ } }, { - "id": 29770, + "id": 32263, "properties": { "bottom": "true", "east": "tall", @@ -173856,7 +182744,7 @@ } }, { - "id": 29771, + "id": 32264, "properties": { "bottom": "true", "east": "tall", @@ -173866,7 +182754,7 @@ } }, { - "id": 29772, + "id": 32265, "properties": { "bottom": "true", "east": "tall", @@ -173876,7 +182764,7 @@ } }, { - "id": 29773, + "id": 32266, "properties": { "bottom": "true", "east": "tall", @@ -173886,7 +182774,7 @@ } }, { - "id": 29774, + "id": 32267, "properties": { "bottom": "true", "east": "tall", @@ -173896,7 +182784,7 @@ } }, { - "id": 29775, + "id": 32268, "properties": { "bottom": "true", "east": "tall", @@ -173906,7 +182794,7 @@ } }, { - "id": 29776, + "id": 32269, "properties": { "bottom": "true", "east": "tall", @@ -173916,7 +182804,7 @@ } }, { - "id": 29777, + "id": 32270, "properties": { "bottom": "true", "east": "tall", @@ -173926,7 +182814,7 @@ } }, { - "id": 29778, + "id": 32271, "properties": { "bottom": "true", "east": "tall", @@ -173936,7 +182824,7 @@ } }, { - "id": 29779, + "id": 32272, "properties": { "bottom": "true", "east": "tall", @@ -173946,7 +182834,7 @@ } }, { - "id": 29780, + "id": 32273, "properties": { "bottom": "true", "east": "tall", @@ -173956,7 +182844,7 @@ } }, { - "id": 29781, + "id": 32274, "properties": { "bottom": "true", "east": "tall", @@ -173966,7 +182854,7 @@ } }, { - "id": 29782, + "id": 32275, "properties": { "bottom": "true", "east": "tall", @@ -173976,7 +182864,7 @@ } }, { - "id": 29783, + "id": 32276, "properties": { "bottom": "true", "east": "tall", @@ -173986,7 +182874,7 @@ } }, { - "id": 29784, + "id": 32277, "properties": { "bottom": "true", "east": "tall", @@ -173996,7 +182884,7 @@ } }, { - "id": 29785, + "id": 32278, "properties": { "bottom": "false", "east": "none", @@ -174006,7 +182894,7 @@ } }, { - "id": 29786, + "id": 32279, "properties": { "bottom": "false", "east": "none", @@ -174016,7 +182904,7 @@ } }, { - "id": 29787, + "id": 32280, "properties": { "bottom": "false", "east": "none", @@ -174026,7 +182914,7 @@ } }, { - "id": 29788, + "id": 32281, "properties": { "bottom": "false", "east": "none", @@ -174036,7 +182924,7 @@ } }, { - "id": 29789, + "id": 32282, "properties": { "bottom": "false", "east": "none", @@ -174046,7 +182934,7 @@ } }, { - "id": 29790, + "id": 32283, "properties": { "bottom": "false", "east": "none", @@ -174056,7 +182944,7 @@ } }, { - "id": 29791, + "id": 32284, "properties": { "bottom": "false", "east": "none", @@ -174066,7 +182954,7 @@ } }, { - "id": 29792, + "id": 32285, "properties": { "bottom": "false", "east": "none", @@ -174076,7 +182964,7 @@ } }, { - "id": 29793, + "id": 32286, "properties": { "bottom": "false", "east": "none", @@ -174086,7 +182974,7 @@ } }, { - "id": 29794, + "id": 32287, "properties": { "bottom": "false", "east": "none", @@ -174096,7 +182984,7 @@ } }, { - "id": 29795, + "id": 32288, "properties": { "bottom": "false", "east": "none", @@ -174106,7 +182994,7 @@ } }, { - "id": 29796, + "id": 32289, "properties": { "bottom": "false", "east": "none", @@ -174116,7 +183004,7 @@ } }, { - "id": 29797, + "id": 32290, "properties": { "bottom": "false", "east": "none", @@ -174126,7 +183014,7 @@ } }, { - "id": 29798, + "id": 32291, "properties": { "bottom": "false", "east": "none", @@ -174136,7 +183024,7 @@ } }, { - "id": 29799, + "id": 32292, "properties": { "bottom": "false", "east": "none", @@ -174146,7 +183034,7 @@ } }, { - "id": 29800, + "id": 32293, "properties": { "bottom": "false", "east": "none", @@ -174156,7 +183044,7 @@ } }, { - "id": 29801, + "id": 32294, "properties": { "bottom": "false", "east": "none", @@ -174166,7 +183054,7 @@ } }, { - "id": 29802, + "id": 32295, "properties": { "bottom": "false", "east": "none", @@ -174176,7 +183064,7 @@ } }, { - "id": 29803, + "id": 32296, "properties": { "bottom": "false", "east": "none", @@ -174186,7 +183074,7 @@ } }, { - "id": 29804, + "id": 32297, "properties": { "bottom": "false", "east": "none", @@ -174196,7 +183084,7 @@ } }, { - "id": 29805, + "id": 32298, "properties": { "bottom": "false", "east": "none", @@ -174206,7 +183094,7 @@ } }, { - "id": 29806, + "id": 32299, "properties": { "bottom": "false", "east": "none", @@ -174216,7 +183104,7 @@ } }, { - "id": 29807, + "id": 32300, "properties": { "bottom": "false", "east": "none", @@ -174226,7 +183114,7 @@ } }, { - "id": 29808, + "id": 32301, "properties": { "bottom": "false", "east": "none", @@ -174236,7 +183124,7 @@ } }, { - "id": 29809, + "id": 32302, "properties": { "bottom": "false", "east": "none", @@ -174246,7 +183134,7 @@ } }, { - "id": 29810, + "id": 32303, "properties": { "bottom": "false", "east": "none", @@ -174256,7 +183144,7 @@ } }, { - "id": 29811, + "id": 32304, "properties": { "bottom": "false", "east": "none", @@ -174266,7 +183154,7 @@ } }, { - "id": 29812, + "id": 32305, "properties": { "bottom": "false", "east": "low", @@ -174276,7 +183164,7 @@ } }, { - "id": 29813, + "id": 32306, "properties": { "bottom": "false", "east": "low", @@ -174286,7 +183174,7 @@ } }, { - "id": 29814, + "id": 32307, "properties": { "bottom": "false", "east": "low", @@ -174296,7 +183184,7 @@ } }, { - "id": 29815, + "id": 32308, "properties": { "bottom": "false", "east": "low", @@ -174306,7 +183194,7 @@ } }, { - "id": 29816, + "id": 32309, "properties": { "bottom": "false", "east": "low", @@ -174316,7 +183204,7 @@ } }, { - "id": 29817, + "id": 32310, "properties": { "bottom": "false", "east": "low", @@ -174326,7 +183214,7 @@ } }, { - "id": 29818, + "id": 32311, "properties": { "bottom": "false", "east": "low", @@ -174336,7 +183224,7 @@ } }, { - "id": 29819, + "id": 32312, "properties": { "bottom": "false", "east": "low", @@ -174346,7 +183234,7 @@ } }, { - "id": 29820, + "id": 32313, "properties": { "bottom": "false", "east": "low", @@ -174356,7 +183244,7 @@ } }, { - "id": 29821, + "id": 32314, "properties": { "bottom": "false", "east": "low", @@ -174366,7 +183254,7 @@ } }, { - "id": 29822, + "id": 32315, "properties": { "bottom": "false", "east": "low", @@ -174376,7 +183264,7 @@ } }, { - "id": 29823, + "id": 32316, "properties": { "bottom": "false", "east": "low", @@ -174386,7 +183274,7 @@ } }, { - "id": 29824, + "id": 32317, "properties": { "bottom": "false", "east": "low", @@ -174396,7 +183284,7 @@ } }, { - "id": 29825, + "id": 32318, "properties": { "bottom": "false", "east": "low", @@ -174406,7 +183294,7 @@ } }, { - "id": 29826, + "id": 32319, "properties": { "bottom": "false", "east": "low", @@ -174416,7 +183304,7 @@ } }, { - "id": 29827, + "id": 32320, "properties": { "bottom": "false", "east": "low", @@ -174426,7 +183314,7 @@ } }, { - "id": 29828, + "id": 32321, "properties": { "bottom": "false", "east": "low", @@ -174436,7 +183324,7 @@ } }, { - "id": 29829, + "id": 32322, "properties": { "bottom": "false", "east": "low", @@ -174446,7 +183334,7 @@ } }, { - "id": 29830, + "id": 32323, "properties": { "bottom": "false", "east": "low", @@ -174456,7 +183344,7 @@ } }, { - "id": 29831, + "id": 32324, "properties": { "bottom": "false", "east": "low", @@ -174466,7 +183354,7 @@ } }, { - "id": 29832, + "id": 32325, "properties": { "bottom": "false", "east": "low", @@ -174476,7 +183364,7 @@ } }, { - "id": 29833, + "id": 32326, "properties": { "bottom": "false", "east": "low", @@ -174486,7 +183374,7 @@ } }, { - "id": 29834, + "id": 32327, "properties": { "bottom": "false", "east": "low", @@ -174496,7 +183384,7 @@ } }, { - "id": 29835, + "id": 32328, "properties": { "bottom": "false", "east": "low", @@ -174506,7 +183394,7 @@ } }, { - "id": 29836, + "id": 32329, "properties": { "bottom": "false", "east": "low", @@ -174516,7 +183404,7 @@ } }, { - "id": 29837, + "id": 32330, "properties": { "bottom": "false", "east": "low", @@ -174526,7 +183414,7 @@ } }, { - "id": 29838, + "id": 32331, "properties": { "bottom": "false", "east": "low", @@ -174536,7 +183424,7 @@ } }, { - "id": 29839, + "id": 32332, "properties": { "bottom": "false", "east": "tall", @@ -174546,7 +183434,7 @@ } }, { - "id": 29840, + "id": 32333, "properties": { "bottom": "false", "east": "tall", @@ -174556,7 +183444,7 @@ } }, { - "id": 29841, + "id": 32334, "properties": { "bottom": "false", "east": "tall", @@ -174566,7 +183454,7 @@ } }, { - "id": 29842, + "id": 32335, "properties": { "bottom": "false", "east": "tall", @@ -174576,7 +183464,7 @@ } }, { - "id": 29843, + "id": 32336, "properties": { "bottom": "false", "east": "tall", @@ -174586,7 +183474,7 @@ } }, { - "id": 29844, + "id": 32337, "properties": { "bottom": "false", "east": "tall", @@ -174596,7 +183484,7 @@ } }, { - "id": 29845, + "id": 32338, "properties": { "bottom": "false", "east": "tall", @@ -174606,7 +183494,7 @@ } }, { - "id": 29846, + "id": 32339, "properties": { "bottom": "false", "east": "tall", @@ -174616,7 +183504,7 @@ } }, { - "id": 29847, + "id": 32340, "properties": { "bottom": "false", "east": "tall", @@ -174626,7 +183514,7 @@ } }, { - "id": 29848, + "id": 32341, "properties": { "bottom": "false", "east": "tall", @@ -174636,7 +183524,7 @@ } }, { - "id": 29849, + "id": 32342, "properties": { "bottom": "false", "east": "tall", @@ -174646,7 +183534,7 @@ } }, { - "id": 29850, + "id": 32343, "properties": { "bottom": "false", "east": "tall", @@ -174656,7 +183544,7 @@ } }, { - "id": 29851, + "id": 32344, "properties": { "bottom": "false", "east": "tall", @@ -174666,7 +183554,7 @@ } }, { - "id": 29852, + "id": 32345, "properties": { "bottom": "false", "east": "tall", @@ -174676,7 +183564,7 @@ } }, { - "id": 29853, + "id": 32346, "properties": { "bottom": "false", "east": "tall", @@ -174686,7 +183574,7 @@ } }, { - "id": 29854, + "id": 32347, "properties": { "bottom": "false", "east": "tall", @@ -174696,7 +183584,7 @@ } }, { - "id": 29855, + "id": 32348, "properties": { "bottom": "false", "east": "tall", @@ -174706,7 +183594,7 @@ } }, { - "id": 29856, + "id": 32349, "properties": { "bottom": "false", "east": "tall", @@ -174716,7 +183604,7 @@ } }, { - "id": 29857, + "id": 32350, "properties": { "bottom": "false", "east": "tall", @@ -174726,7 +183614,7 @@ } }, { - "id": 29858, + "id": 32351, "properties": { "bottom": "false", "east": "tall", @@ -174736,7 +183624,7 @@ } }, { - "id": 29859, + "id": 32352, "properties": { "bottom": "false", "east": "tall", @@ -174746,7 +183634,7 @@ } }, { - "id": 29860, + "id": 32353, "properties": { "bottom": "false", "east": "tall", @@ -174756,7 +183644,7 @@ } }, { - "id": 29861, + "id": 32354, "properties": { "bottom": "false", "east": "tall", @@ -174766,7 +183654,7 @@ } }, { - "id": 29862, + "id": 32355, "properties": { "bottom": "false", "east": "tall", @@ -174776,7 +183664,7 @@ } }, { - "id": 29863, + "id": 32356, "properties": { "bottom": "false", "east": "tall", @@ -174786,7 +183674,7 @@ } }, { - "id": 29864, + "id": 32357, "properties": { "bottom": "false", "east": "tall", @@ -174796,7 +183684,7 @@ } }, { - "id": 29865, + "id": 32358, "properties": { "bottom": "false", "east": "tall", @@ -179838,20 +188726,20 @@ }, "states": [ { - "id": 29588, + "id": 32081, "properties": { "axis": "x" } }, { "default": true, - "id": 29589, + "id": 32082, "properties": { "axis": "y" } }, { - "id": 29590, + "id": 32083, "properties": { "axis": "z" } @@ -180844,112 +189732,112 @@ "states": [ { "default": true, - "id": 27814, + "id": 30307, "properties": { "facing": "north", "flower_amount": "1" } }, { - "id": 27815, + "id": 30308, "properties": { "facing": "north", "flower_amount": "2" } }, { - "id": 27816, + "id": 30309, "properties": { "facing": "north", "flower_amount": "3" } }, { - "id": 27817, + "id": 30310, "properties": { "facing": "north", "flower_amount": "4" } }, { - "id": 27818, + "id": 30311, "properties": { "facing": "south", "flower_amount": "1" } }, { - "id": 27819, + "id": 30312, "properties": { "facing": "south", "flower_amount": "2" } }, { - "id": 27820, + "id": 30313, "properties": { "facing": "south", "flower_amount": "3" } }, { - "id": 27821, + "id": 30314, "properties": { "facing": "south", "flower_amount": "4" } }, { - "id": 27822, + "id": 30315, "properties": { "facing": "west", "flower_amount": "1" } }, { - "id": 27823, + "id": 30316, "properties": { "facing": "west", "flower_amount": "2" } }, { - "id": 27824, + "id": 30317, "properties": { "facing": "west", "flower_amount": "3" } }, { - "id": 27825, + "id": 30318, "properties": { "facing": "west", "flower_amount": "4" } }, { - "id": 27826, + "id": 30319, "properties": { "facing": "east", "flower_amount": "1" } }, { - "id": 27827, + "id": 30320, "properties": { "facing": "east", "flower_amount": "2" } }, { - "id": 27828, + "id": 30321, "properties": { "facing": "east", "flower_amount": "3" } }, { - "id": 27829, + "id": 30322, "properties": { "facing": "east", "flower_amount": "4" @@ -182272,6 +191160,9 @@ "minecraft:pointed_dripstone": { "definition": { "type": "minecraft:pointed_dripstone", + "block_to_grow_on": { + "Name": "minecraft:dripstone_block" + }, "properties": {} }, "properties": { @@ -182293,7 +191184,7 @@ }, "states": [ { - "id": 27735, + "id": 30209, "properties": { "thickness": "tip_merge", "vertical_direction": "up", @@ -182301,7 +191192,7 @@ } }, { - "id": 27736, + "id": 30210, "properties": { "thickness": "tip_merge", "vertical_direction": "up", @@ -182309,7 +191200,7 @@ } }, { - "id": 27737, + "id": 30211, "properties": { "thickness": "tip_merge", "vertical_direction": "down", @@ -182317,7 +191208,7 @@ } }, { - "id": 27738, + "id": 30212, "properties": { "thickness": "tip_merge", "vertical_direction": "down", @@ -182325,7 +191216,7 @@ } }, { - "id": 27739, + "id": 30213, "properties": { "thickness": "tip", "vertical_direction": "up", @@ -182334,7 +191225,7 @@ }, { "default": true, - "id": 27740, + "id": 30214, "properties": { "thickness": "tip", "vertical_direction": "up", @@ -182342,7 +191233,7 @@ } }, { - "id": 27741, + "id": 30215, "properties": { "thickness": "tip", "vertical_direction": "down", @@ -182350,7 +191241,7 @@ } }, { - "id": 27742, + "id": 30216, "properties": { "thickness": "tip", "vertical_direction": "down", @@ -182358,7 +191249,7 @@ } }, { - "id": 27743, + "id": 30217, "properties": { "thickness": "frustum", "vertical_direction": "up", @@ -182366,7 +191257,7 @@ } }, { - "id": 27744, + "id": 30218, "properties": { "thickness": "frustum", "vertical_direction": "up", @@ -182374,7 +191265,7 @@ } }, { - "id": 27745, + "id": 30219, "properties": { "thickness": "frustum", "vertical_direction": "down", @@ -182382,7 +191273,7 @@ } }, { - "id": 27746, + "id": 30220, "properties": { "thickness": "frustum", "vertical_direction": "down", @@ -182390,7 +191281,7 @@ } }, { - "id": 27747, + "id": 30221, "properties": { "thickness": "middle", "vertical_direction": "up", @@ -182398,7 +191289,7 @@ } }, { - "id": 27748, + "id": 30222, "properties": { "thickness": "middle", "vertical_direction": "up", @@ -182406,7 +191297,7 @@ } }, { - "id": 27749, + "id": 30223, "properties": { "thickness": "middle", "vertical_direction": "down", @@ -182414,7 +191305,7 @@ } }, { - "id": 27750, + "id": 30224, "properties": { "thickness": "middle", "vertical_direction": "down", @@ -182422,7 +191313,7 @@ } }, { - "id": 27751, + "id": 30225, "properties": { "thickness": "base", "vertical_direction": "up", @@ -182430,7 +191321,7 @@ } }, { - "id": 27752, + "id": 30226, "properties": { "thickness": "base", "vertical_direction": "up", @@ -182438,7 +191329,7 @@ } }, { - "id": 27753, + "id": 30227, "properties": { "thickness": "base", "vertical_direction": "down", @@ -182446,7 +191337,7 @@ } }, { - "id": 27754, + "id": 30228, "properties": { "thickness": "base", "vertical_direction": "down", @@ -192430,6 +201321,4438 @@ } ] }, + "minecraft:polished_cinnabar": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 26337 + } + ] + }, + "minecraft:polished_cinnabar_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26338, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 26339, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 26340, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26341, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 26342, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 26343, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_cinnabar_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_cinnabar" + }, + "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": 26344, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26345, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26346, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26347, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26348, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26349, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26350, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26351, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26352, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26353, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26354, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26355, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26356, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26357, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26358, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26359, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26360, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26361, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26362, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26363, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26364, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26365, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26366, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26367, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26368, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26369, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26370, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26371, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26372, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26373, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26374, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26375, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26376, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26377, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26378, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26379, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26380, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26381, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26382, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26383, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26384, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26385, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26386, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26387, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26388, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26389, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26390, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26391, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26392, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26393, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26394, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26395, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26396, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26397, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26398, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26399, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26400, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26401, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26402, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26403, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26404, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26405, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26406, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26407, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26408, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26409, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26410, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26411, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26412, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26413, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26414, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26415, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26416, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26417, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26418, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26419, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26420, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26421, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26422, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26423, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_cinnabar_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 26424, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26425, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26426, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 26427, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26428, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26429, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26430, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26431, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26432, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26433, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26434, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26435, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26436, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26437, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26438, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26439, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26440, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26441, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26442, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26443, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26444, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26445, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26446, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26447, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26448, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26449, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26450, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26451, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26452, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26453, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26454, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26455, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26456, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26457, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26458, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26459, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26460, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26461, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26462, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26463, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26464, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26465, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26466, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26467, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26468, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26469, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26470, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26471, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26472, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26473, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26474, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26475, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26476, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26477, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26478, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26479, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26480, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26481, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26482, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26483, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26484, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26485, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26486, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26487, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26488, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26489, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26490, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26491, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26492, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26493, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26494, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26495, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26496, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26497, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26498, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26499, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26500, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26501, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26502, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26503, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26504, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26505, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26506, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26507, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26508, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26509, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26510, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26511, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26512, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26513, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26514, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26515, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26516, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26517, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26518, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26519, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26520, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26521, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26522, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26523, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26524, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26525, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26526, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26527, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26528, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26529, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26530, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26531, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26532, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26533, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26534, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26535, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26536, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26537, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26538, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26539, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26540, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26541, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26542, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26543, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26544, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26545, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26546, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26547, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26548, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26549, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26550, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26551, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26552, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26553, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26554, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26555, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26556, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26557, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26558, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26559, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26560, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26561, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26562, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26563, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26564, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26565, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26566, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26567, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26568, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26569, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26570, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26571, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26572, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26573, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26574, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26575, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26576, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26577, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26578, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26579, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26580, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26581, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26582, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26583, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26584, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26585, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26586, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26587, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26588, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26589, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26590, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26591, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26592, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26593, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26594, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26595, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26596, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26597, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26598, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26599, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26600, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26601, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26602, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26603, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26604, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26605, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26606, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26607, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26608, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26609, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26610, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26611, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26612, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26613, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26614, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26615, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26616, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26617, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26618, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26619, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26620, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26621, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26622, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26623, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26624, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26625, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26626, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26627, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26628, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26629, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26630, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26631, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26632, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26633, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26634, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26635, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26636, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26637, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26638, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26639, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26640, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26641, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26642, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26643, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26644, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26645, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26646, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26647, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26648, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26649, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26650, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26651, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26652, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26653, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26654, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26655, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26656, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26657, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26658, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26659, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26660, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26661, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26662, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26663, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26664, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26665, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26666, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26667, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26668, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26669, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26670, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26671, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26672, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26673, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26674, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26675, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26676, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26677, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26678, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26679, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26680, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26681, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26682, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26683, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26684, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26685, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26686, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26687, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26688, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26689, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26690, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26691, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26692, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26693, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26694, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26695, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26696, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26697, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26698, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26699, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26700, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26701, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26702, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26703, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26704, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26705, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26706, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26707, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26708, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26709, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26710, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26711, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26712, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26713, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26714, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26715, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26716, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26717, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26718, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26719, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26720, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26721, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26722, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26723, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26724, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26725, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26726, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26727, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26728, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26729, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26730, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26731, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26732, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26733, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26734, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26735, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26736, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26737, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26738, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26739, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26740, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26741, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26742, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26743, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26744, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26745, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26746, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26747, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, "minecraft:polished_deepslate": { "definition": { "type": "minecraft:block", @@ -192438,7 +205761,7 @@ "states": [ { "default": true, - "id": 28337 + "id": 30830 } ] }, @@ -192460,21 +205783,21 @@ }, "states": [ { - "id": 28418, + "id": 30911, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 28419, + "id": 30912, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 28420, + "id": 30913, "properties": { "type": "bottom", "waterlogged": "true" @@ -192482,21 +205805,21 @@ }, { "default": true, - "id": 28421, + "id": 30914, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 28422, + "id": 30915, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 28423, + "id": 30916, "properties": { "type": "double", "waterlogged": "false" @@ -192537,7 +205860,7 @@ }, "states": [ { - "id": 28338, + "id": 30831, "properties": { "facing": "north", "half": "top", @@ -192546,7 +205869,7 @@ } }, { - "id": 28339, + "id": 30832, "properties": { "facing": "north", "half": "top", @@ -192555,7 +205878,7 @@ } }, { - "id": 28340, + "id": 30833, "properties": { "facing": "north", "half": "top", @@ -192564,7 +205887,7 @@ } }, { - "id": 28341, + "id": 30834, "properties": { "facing": "north", "half": "top", @@ -192573,7 +205896,7 @@ } }, { - "id": 28342, + "id": 30835, "properties": { "facing": "north", "half": "top", @@ -192582,7 +205905,7 @@ } }, { - "id": 28343, + "id": 30836, "properties": { "facing": "north", "half": "top", @@ -192591,7 +205914,7 @@ } }, { - "id": 28344, + "id": 30837, "properties": { "facing": "north", "half": "top", @@ -192600,7 +205923,7 @@ } }, { - "id": 28345, + "id": 30838, "properties": { "facing": "north", "half": "top", @@ -192609,7 +205932,7 @@ } }, { - "id": 28346, + "id": 30839, "properties": { "facing": "north", "half": "top", @@ -192618,7 +205941,7 @@ } }, { - "id": 28347, + "id": 30840, "properties": { "facing": "north", "half": "top", @@ -192627,7 +205950,7 @@ } }, { - "id": 28348, + "id": 30841, "properties": { "facing": "north", "half": "bottom", @@ -192637,7 +205960,7 @@ }, { "default": true, - "id": 28349, + "id": 30842, "properties": { "facing": "north", "half": "bottom", @@ -192646,7 +205969,7 @@ } }, { - "id": 28350, + "id": 30843, "properties": { "facing": "north", "half": "bottom", @@ -192655,7 +205978,7 @@ } }, { - "id": 28351, + "id": 30844, "properties": { "facing": "north", "half": "bottom", @@ -192664,7 +205987,7 @@ } }, { - "id": 28352, + "id": 30845, "properties": { "facing": "north", "half": "bottom", @@ -192673,7 +205996,7 @@ } }, { - "id": 28353, + "id": 30846, "properties": { "facing": "north", "half": "bottom", @@ -192682,7 +206005,7 @@ } }, { - "id": 28354, + "id": 30847, "properties": { "facing": "north", "half": "bottom", @@ -192691,7 +206014,7 @@ } }, { - "id": 28355, + "id": 30848, "properties": { "facing": "north", "half": "bottom", @@ -192700,7 +206023,7 @@ } }, { - "id": 28356, + "id": 30849, "properties": { "facing": "north", "half": "bottom", @@ -192709,7 +206032,7 @@ } }, { - "id": 28357, + "id": 30850, "properties": { "facing": "north", "half": "bottom", @@ -192718,7 +206041,7 @@ } }, { - "id": 28358, + "id": 30851, "properties": { "facing": "south", "half": "top", @@ -192727,7 +206050,7 @@ } }, { - "id": 28359, + "id": 30852, "properties": { "facing": "south", "half": "top", @@ -192736,7 +206059,7 @@ } }, { - "id": 28360, + "id": 30853, "properties": { "facing": "south", "half": "top", @@ -192745,7 +206068,7 @@ } }, { - "id": 28361, + "id": 30854, "properties": { "facing": "south", "half": "top", @@ -192754,7 +206077,7 @@ } }, { - "id": 28362, + "id": 30855, "properties": { "facing": "south", "half": "top", @@ -192763,7 +206086,7 @@ } }, { - "id": 28363, + "id": 30856, "properties": { "facing": "south", "half": "top", @@ -192772,7 +206095,7 @@ } }, { - "id": 28364, + "id": 30857, "properties": { "facing": "south", "half": "top", @@ -192781,7 +206104,7 @@ } }, { - "id": 28365, + "id": 30858, "properties": { "facing": "south", "half": "top", @@ -192790,7 +206113,7 @@ } }, { - "id": 28366, + "id": 30859, "properties": { "facing": "south", "half": "top", @@ -192799,7 +206122,7 @@ } }, { - "id": 28367, + "id": 30860, "properties": { "facing": "south", "half": "top", @@ -192808,7 +206131,7 @@ } }, { - "id": 28368, + "id": 30861, "properties": { "facing": "south", "half": "bottom", @@ -192817,7 +206140,7 @@ } }, { - "id": 28369, + "id": 30862, "properties": { "facing": "south", "half": "bottom", @@ -192826,7 +206149,7 @@ } }, { - "id": 28370, + "id": 30863, "properties": { "facing": "south", "half": "bottom", @@ -192835,7 +206158,7 @@ } }, { - "id": 28371, + "id": 30864, "properties": { "facing": "south", "half": "bottom", @@ -192844,7 +206167,7 @@ } }, { - "id": 28372, + "id": 30865, "properties": { "facing": "south", "half": "bottom", @@ -192853,7 +206176,7 @@ } }, { - "id": 28373, + "id": 30866, "properties": { "facing": "south", "half": "bottom", @@ -192862,7 +206185,7 @@ } }, { - "id": 28374, + "id": 30867, "properties": { "facing": "south", "half": "bottom", @@ -192871,7 +206194,7 @@ } }, { - "id": 28375, + "id": 30868, "properties": { "facing": "south", "half": "bottom", @@ -192880,7 +206203,7 @@ } }, { - "id": 28376, + "id": 30869, "properties": { "facing": "south", "half": "bottom", @@ -192889,7 +206212,7 @@ } }, { - "id": 28377, + "id": 30870, "properties": { "facing": "south", "half": "bottom", @@ -192898,7 +206221,7 @@ } }, { - "id": 28378, + "id": 30871, "properties": { "facing": "west", "half": "top", @@ -192907,7 +206230,7 @@ } }, { - "id": 28379, + "id": 30872, "properties": { "facing": "west", "half": "top", @@ -192916,7 +206239,7 @@ } }, { - "id": 28380, + "id": 30873, "properties": { "facing": "west", "half": "top", @@ -192925,7 +206248,7 @@ } }, { - "id": 28381, + "id": 30874, "properties": { "facing": "west", "half": "top", @@ -192934,7 +206257,7 @@ } }, { - "id": 28382, + "id": 30875, "properties": { "facing": "west", "half": "top", @@ -192943,7 +206266,7 @@ } }, { - "id": 28383, + "id": 30876, "properties": { "facing": "west", "half": "top", @@ -192952,7 +206275,7 @@ } }, { - "id": 28384, + "id": 30877, "properties": { "facing": "west", "half": "top", @@ -192961,7 +206284,7 @@ } }, { - "id": 28385, + "id": 30878, "properties": { "facing": "west", "half": "top", @@ -192970,7 +206293,7 @@ } }, { - "id": 28386, + "id": 30879, "properties": { "facing": "west", "half": "top", @@ -192979,7 +206302,7 @@ } }, { - "id": 28387, + "id": 30880, "properties": { "facing": "west", "half": "top", @@ -192988,7 +206311,7 @@ } }, { - "id": 28388, + "id": 30881, "properties": { "facing": "west", "half": "bottom", @@ -192997,7 +206320,7 @@ } }, { - "id": 28389, + "id": 30882, "properties": { "facing": "west", "half": "bottom", @@ -193006,7 +206329,7 @@ } }, { - "id": 28390, + "id": 30883, "properties": { "facing": "west", "half": "bottom", @@ -193015,7 +206338,7 @@ } }, { - "id": 28391, + "id": 30884, "properties": { "facing": "west", "half": "bottom", @@ -193024,7 +206347,7 @@ } }, { - "id": 28392, + "id": 30885, "properties": { "facing": "west", "half": "bottom", @@ -193033,7 +206356,7 @@ } }, { - "id": 28393, + "id": 30886, "properties": { "facing": "west", "half": "bottom", @@ -193042,7 +206365,7 @@ } }, { - "id": 28394, + "id": 30887, "properties": { "facing": "west", "half": "bottom", @@ -193051,7 +206374,7 @@ } }, { - "id": 28395, + "id": 30888, "properties": { "facing": "west", "half": "bottom", @@ -193060,7 +206383,7 @@ } }, { - "id": 28396, + "id": 30889, "properties": { "facing": "west", "half": "bottom", @@ -193069,7 +206392,7 @@ } }, { - "id": 28397, + "id": 30890, "properties": { "facing": "west", "half": "bottom", @@ -193078,7 +206401,7 @@ } }, { - "id": 28398, + "id": 30891, "properties": { "facing": "east", "half": "top", @@ -193087,7 +206410,7 @@ } }, { - "id": 28399, + "id": 30892, "properties": { "facing": "east", "half": "top", @@ -193096,7 +206419,7 @@ } }, { - "id": 28400, + "id": 30893, "properties": { "facing": "east", "half": "top", @@ -193105,7 +206428,7 @@ } }, { - "id": 28401, + "id": 30894, "properties": { "facing": "east", "half": "top", @@ -193114,7 +206437,7 @@ } }, { - "id": 28402, + "id": 30895, "properties": { "facing": "east", "half": "top", @@ -193123,7 +206446,7 @@ } }, { - "id": 28403, + "id": 30896, "properties": { "facing": "east", "half": "top", @@ -193132,7 +206455,7 @@ } }, { - "id": 28404, + "id": 30897, "properties": { "facing": "east", "half": "top", @@ -193141,7 +206464,7 @@ } }, { - "id": 28405, + "id": 30898, "properties": { "facing": "east", "half": "top", @@ -193150,7 +206473,7 @@ } }, { - "id": 28406, + "id": 30899, "properties": { "facing": "east", "half": "top", @@ -193159,7 +206482,7 @@ } }, { - "id": 28407, + "id": 30900, "properties": { "facing": "east", "half": "top", @@ -193168,7 +206491,7 @@ } }, { - "id": 28408, + "id": 30901, "properties": { "facing": "east", "half": "bottom", @@ -193177,7 +206500,7 @@ } }, { - "id": 28409, + "id": 30902, "properties": { "facing": "east", "half": "bottom", @@ -193186,7 +206509,7 @@ } }, { - "id": 28410, + "id": 30903, "properties": { "facing": "east", "half": "bottom", @@ -193195,7 +206518,7 @@ } }, { - "id": 28411, + "id": 30904, "properties": { "facing": "east", "half": "bottom", @@ -193204,7 +206527,7 @@ } }, { - "id": 28412, + "id": 30905, "properties": { "facing": "east", "half": "bottom", @@ -193213,7 +206536,7 @@ } }, { - "id": 28413, + "id": 30906, "properties": { "facing": "east", "half": "bottom", @@ -193222,7 +206545,7 @@ } }, { - "id": 28414, + "id": 30907, "properties": { "facing": "east", "half": "bottom", @@ -193231,7 +206554,7 @@ } }, { - "id": 28415, + "id": 30908, "properties": { "facing": "east", "half": "bottom", @@ -193240,7 +206563,7 @@ } }, { - "id": 28416, + "id": 30909, "properties": { "facing": "east", "half": "bottom", @@ -193249,7 +206572,7 @@ } }, { - "id": 28417, + "id": 30910, "properties": { "facing": "east", "half": "bottom", @@ -193296,7 +206619,7 @@ }, "states": [ { - "id": 28424, + "id": 30917, "properties": { "east": "none", "north": "none", @@ -193307,7 +206630,7 @@ } }, { - "id": 28425, + "id": 30918, "properties": { "east": "none", "north": "none", @@ -193318,7 +206641,7 @@ } }, { - "id": 28426, + "id": 30919, "properties": { "east": "none", "north": "none", @@ -193330,7 +206653,7 @@ }, { "default": true, - "id": 28427, + "id": 30920, "properties": { "east": "none", "north": "none", @@ -193341,7 +206664,7 @@ } }, { - "id": 28428, + "id": 30921, "properties": { "east": "none", "north": "none", @@ -193352,7 +206675,7 @@ } }, { - "id": 28429, + "id": 30922, "properties": { "east": "none", "north": "none", @@ -193363,7 +206686,7 @@ } }, { - "id": 28430, + "id": 30923, "properties": { "east": "none", "north": "none", @@ -193374,7 +206697,7 @@ } }, { - "id": 28431, + "id": 30924, "properties": { "east": "none", "north": "none", @@ -193385,7 +206708,7 @@ } }, { - "id": 28432, + "id": 30925, "properties": { "east": "none", "north": "none", @@ -193396,7 +206719,7 @@ } }, { - "id": 28433, + "id": 30926, "properties": { "east": "none", "north": "none", @@ -193407,7 +206730,7 @@ } }, { - "id": 28434, + "id": 30927, "properties": { "east": "none", "north": "none", @@ -193418,7 +206741,7 @@ } }, { - "id": 28435, + "id": 30928, "properties": { "east": "none", "north": "none", @@ -193429,7 +206752,7 @@ } }, { - "id": 28436, + "id": 30929, "properties": { "east": "none", "north": "none", @@ -193440,7 +206763,7 @@ } }, { - "id": 28437, + "id": 30930, "properties": { "east": "none", "north": "none", @@ -193451,7 +206774,7 @@ } }, { - "id": 28438, + "id": 30931, "properties": { "east": "none", "north": "none", @@ -193462,7 +206785,7 @@ } }, { - "id": 28439, + "id": 30932, "properties": { "east": "none", "north": "none", @@ -193473,7 +206796,7 @@ } }, { - "id": 28440, + "id": 30933, "properties": { "east": "none", "north": "none", @@ -193484,7 +206807,7 @@ } }, { - "id": 28441, + "id": 30934, "properties": { "east": "none", "north": "none", @@ -193495,7 +206818,7 @@ } }, { - "id": 28442, + "id": 30935, "properties": { "east": "none", "north": "none", @@ -193506,7 +206829,7 @@ } }, { - "id": 28443, + "id": 30936, "properties": { "east": "none", "north": "none", @@ -193517,7 +206840,7 @@ } }, { - "id": 28444, + "id": 30937, "properties": { "east": "none", "north": "none", @@ -193528,7 +206851,7 @@ } }, { - "id": 28445, + "id": 30938, "properties": { "east": "none", "north": "none", @@ -193539,7 +206862,7 @@ } }, { - "id": 28446, + "id": 30939, "properties": { "east": "none", "north": "none", @@ -193550,7 +206873,7 @@ } }, { - "id": 28447, + "id": 30940, "properties": { "east": "none", "north": "none", @@ -193561,7 +206884,7 @@ } }, { - "id": 28448, + "id": 30941, "properties": { "east": "none", "north": "none", @@ -193572,7 +206895,7 @@ } }, { - "id": 28449, + "id": 30942, "properties": { "east": "none", "north": "none", @@ -193583,7 +206906,7 @@ } }, { - "id": 28450, + "id": 30943, "properties": { "east": "none", "north": "none", @@ -193594,7 +206917,7 @@ } }, { - "id": 28451, + "id": 30944, "properties": { "east": "none", "north": "none", @@ -193605,7 +206928,7 @@ } }, { - "id": 28452, + "id": 30945, "properties": { "east": "none", "north": "none", @@ -193616,7 +206939,7 @@ } }, { - "id": 28453, + "id": 30946, "properties": { "east": "none", "north": "none", @@ -193627,7 +206950,7 @@ } }, { - "id": 28454, + "id": 30947, "properties": { "east": "none", "north": "none", @@ -193638,7 +206961,7 @@ } }, { - "id": 28455, + "id": 30948, "properties": { "east": "none", "north": "none", @@ -193649,7 +206972,7 @@ } }, { - "id": 28456, + "id": 30949, "properties": { "east": "none", "north": "none", @@ -193660,7 +206983,7 @@ } }, { - "id": 28457, + "id": 30950, "properties": { "east": "none", "north": "none", @@ -193671,7 +206994,7 @@ } }, { - "id": 28458, + "id": 30951, "properties": { "east": "none", "north": "none", @@ -193682,7 +207005,7 @@ } }, { - "id": 28459, + "id": 30952, "properties": { "east": "none", "north": "none", @@ -193693,7 +207016,7 @@ } }, { - "id": 28460, + "id": 30953, "properties": { "east": "none", "north": "low", @@ -193704,7 +207027,7 @@ } }, { - "id": 28461, + "id": 30954, "properties": { "east": "none", "north": "low", @@ -193715,7 +207038,7 @@ } }, { - "id": 28462, + "id": 30955, "properties": { "east": "none", "north": "low", @@ -193726,7 +207049,7 @@ } }, { - "id": 28463, + "id": 30956, "properties": { "east": "none", "north": "low", @@ -193737,7 +207060,7 @@ } }, { - "id": 28464, + "id": 30957, "properties": { "east": "none", "north": "low", @@ -193748,7 +207071,7 @@ } }, { - "id": 28465, + "id": 30958, "properties": { "east": "none", "north": "low", @@ -193759,7 +207082,7 @@ } }, { - "id": 28466, + "id": 30959, "properties": { "east": "none", "north": "low", @@ -193770,7 +207093,7 @@ } }, { - "id": 28467, + "id": 30960, "properties": { "east": "none", "north": "low", @@ -193781,7 +207104,7 @@ } }, { - "id": 28468, + "id": 30961, "properties": { "east": "none", "north": "low", @@ -193792,7 +207115,7 @@ } }, { - "id": 28469, + "id": 30962, "properties": { "east": "none", "north": "low", @@ -193803,7 +207126,7 @@ } }, { - "id": 28470, + "id": 30963, "properties": { "east": "none", "north": "low", @@ -193814,7 +207137,7 @@ } }, { - "id": 28471, + "id": 30964, "properties": { "east": "none", "north": "low", @@ -193825,7 +207148,7 @@ } }, { - "id": 28472, + "id": 30965, "properties": { "east": "none", "north": "low", @@ -193836,7 +207159,7 @@ } }, { - "id": 28473, + "id": 30966, "properties": { "east": "none", "north": "low", @@ -193847,7 +207170,7 @@ } }, { - "id": 28474, + "id": 30967, "properties": { "east": "none", "north": "low", @@ -193858,7 +207181,7 @@ } }, { - "id": 28475, + "id": 30968, "properties": { "east": "none", "north": "low", @@ -193869,7 +207192,7 @@ } }, { - "id": 28476, + "id": 30969, "properties": { "east": "none", "north": "low", @@ -193880,7 +207203,7 @@ } }, { - "id": 28477, + "id": 30970, "properties": { "east": "none", "north": "low", @@ -193891,7 +207214,7 @@ } }, { - "id": 28478, + "id": 30971, "properties": { "east": "none", "north": "low", @@ -193902,7 +207225,7 @@ } }, { - "id": 28479, + "id": 30972, "properties": { "east": "none", "north": "low", @@ -193913,7 +207236,7 @@ } }, { - "id": 28480, + "id": 30973, "properties": { "east": "none", "north": "low", @@ -193924,7 +207247,7 @@ } }, { - "id": 28481, + "id": 30974, "properties": { "east": "none", "north": "low", @@ -193935,7 +207258,7 @@ } }, { - "id": 28482, + "id": 30975, "properties": { "east": "none", "north": "low", @@ -193946,7 +207269,7 @@ } }, { - "id": 28483, + "id": 30976, "properties": { "east": "none", "north": "low", @@ -193957,7 +207280,7 @@ } }, { - "id": 28484, + "id": 30977, "properties": { "east": "none", "north": "low", @@ -193968,7 +207291,7 @@ } }, { - "id": 28485, + "id": 30978, "properties": { "east": "none", "north": "low", @@ -193979,7 +207302,7 @@ } }, { - "id": 28486, + "id": 30979, "properties": { "east": "none", "north": "low", @@ -193990,7 +207313,7 @@ } }, { - "id": 28487, + "id": 30980, "properties": { "east": "none", "north": "low", @@ -194001,7 +207324,7 @@ } }, { - "id": 28488, + "id": 30981, "properties": { "east": "none", "north": "low", @@ -194012,7 +207335,7 @@ } }, { - "id": 28489, + "id": 30982, "properties": { "east": "none", "north": "low", @@ -194023,7 +207346,7 @@ } }, { - "id": 28490, + "id": 30983, "properties": { "east": "none", "north": "low", @@ -194034,7 +207357,7 @@ } }, { - "id": 28491, + "id": 30984, "properties": { "east": "none", "north": "low", @@ -194045,7 +207368,7 @@ } }, { - "id": 28492, + "id": 30985, "properties": { "east": "none", "north": "low", @@ -194056,7 +207379,7 @@ } }, { - "id": 28493, + "id": 30986, "properties": { "east": "none", "north": "low", @@ -194067,7 +207390,7 @@ } }, { - "id": 28494, + "id": 30987, "properties": { "east": "none", "north": "low", @@ -194078,7 +207401,7 @@ } }, { - "id": 28495, + "id": 30988, "properties": { "east": "none", "north": "low", @@ -194089,7 +207412,7 @@ } }, { - "id": 28496, + "id": 30989, "properties": { "east": "none", "north": "tall", @@ -194100,7 +207423,7 @@ } }, { - "id": 28497, + "id": 30990, "properties": { "east": "none", "north": "tall", @@ -194111,7 +207434,7 @@ } }, { - "id": 28498, + "id": 30991, "properties": { "east": "none", "north": "tall", @@ -194122,7 +207445,7 @@ } }, { - "id": 28499, + "id": 30992, "properties": { "east": "none", "north": "tall", @@ -194133,7 +207456,7 @@ } }, { - "id": 28500, + "id": 30993, "properties": { "east": "none", "north": "tall", @@ -194144,7 +207467,7 @@ } }, { - "id": 28501, + "id": 30994, "properties": { "east": "none", "north": "tall", @@ -194155,7 +207478,7 @@ } }, { - "id": 28502, + "id": 30995, "properties": { "east": "none", "north": "tall", @@ -194166,7 +207489,7 @@ } }, { - "id": 28503, + "id": 30996, "properties": { "east": "none", "north": "tall", @@ -194177,7 +207500,7 @@ } }, { - "id": 28504, + "id": 30997, "properties": { "east": "none", "north": "tall", @@ -194188,7 +207511,7 @@ } }, { - "id": 28505, + "id": 30998, "properties": { "east": "none", "north": "tall", @@ -194199,7 +207522,7 @@ } }, { - "id": 28506, + "id": 30999, "properties": { "east": "none", "north": "tall", @@ -194210,7 +207533,7 @@ } }, { - "id": 28507, + "id": 31000, "properties": { "east": "none", "north": "tall", @@ -194221,7 +207544,7 @@ } }, { - "id": 28508, + "id": 31001, "properties": { "east": "none", "north": "tall", @@ -194232,7 +207555,7 @@ } }, { - "id": 28509, + "id": 31002, "properties": { "east": "none", "north": "tall", @@ -194243,7 +207566,7 @@ } }, { - "id": 28510, + "id": 31003, "properties": { "east": "none", "north": "tall", @@ -194254,7 +207577,7 @@ } }, { - "id": 28511, + "id": 31004, "properties": { "east": "none", "north": "tall", @@ -194265,7 +207588,7 @@ } }, { - "id": 28512, + "id": 31005, "properties": { "east": "none", "north": "tall", @@ -194276,7 +207599,7 @@ } }, { - "id": 28513, + "id": 31006, "properties": { "east": "none", "north": "tall", @@ -194287,7 +207610,7 @@ } }, { - "id": 28514, + "id": 31007, "properties": { "east": "none", "north": "tall", @@ -194298,7 +207621,7 @@ } }, { - "id": 28515, + "id": 31008, "properties": { "east": "none", "north": "tall", @@ -194309,7 +207632,7 @@ } }, { - "id": 28516, + "id": 31009, "properties": { "east": "none", "north": "tall", @@ -194320,7 +207643,7 @@ } }, { - "id": 28517, + "id": 31010, "properties": { "east": "none", "north": "tall", @@ -194331,7 +207654,7 @@ } }, { - "id": 28518, + "id": 31011, "properties": { "east": "none", "north": "tall", @@ -194342,7 +207665,7 @@ } }, { - "id": 28519, + "id": 31012, "properties": { "east": "none", "north": "tall", @@ -194353,7 +207676,7 @@ } }, { - "id": 28520, + "id": 31013, "properties": { "east": "none", "north": "tall", @@ -194364,7 +207687,7 @@ } }, { - "id": 28521, + "id": 31014, "properties": { "east": "none", "north": "tall", @@ -194375,7 +207698,7 @@ } }, { - "id": 28522, + "id": 31015, "properties": { "east": "none", "north": "tall", @@ -194386,7 +207709,7 @@ } }, { - "id": 28523, + "id": 31016, "properties": { "east": "none", "north": "tall", @@ -194397,7 +207720,7 @@ } }, { - "id": 28524, + "id": 31017, "properties": { "east": "none", "north": "tall", @@ -194408,7 +207731,7 @@ } }, { - "id": 28525, + "id": 31018, "properties": { "east": "none", "north": "tall", @@ -194419,7 +207742,7 @@ } }, { - "id": 28526, + "id": 31019, "properties": { "east": "none", "north": "tall", @@ -194430,7 +207753,7 @@ } }, { - "id": 28527, + "id": 31020, "properties": { "east": "none", "north": "tall", @@ -194441,7 +207764,7 @@ } }, { - "id": 28528, + "id": 31021, "properties": { "east": "none", "north": "tall", @@ -194452,7 +207775,7 @@ } }, { - "id": 28529, + "id": 31022, "properties": { "east": "none", "north": "tall", @@ -194463,7 +207786,7 @@ } }, { - "id": 28530, + "id": 31023, "properties": { "east": "none", "north": "tall", @@ -194474,7 +207797,7 @@ } }, { - "id": 28531, + "id": 31024, "properties": { "east": "none", "north": "tall", @@ -194485,7 +207808,7 @@ } }, { - "id": 28532, + "id": 31025, "properties": { "east": "low", "north": "none", @@ -194496,7 +207819,7 @@ } }, { - "id": 28533, + "id": 31026, "properties": { "east": "low", "north": "none", @@ -194507,7 +207830,7 @@ } }, { - "id": 28534, + "id": 31027, "properties": { "east": "low", "north": "none", @@ -194518,7 +207841,7 @@ } }, { - "id": 28535, + "id": 31028, "properties": { "east": "low", "north": "none", @@ -194529,7 +207852,7 @@ } }, { - "id": 28536, + "id": 31029, "properties": { "east": "low", "north": "none", @@ -194540,7 +207863,7 @@ } }, { - "id": 28537, + "id": 31030, "properties": { "east": "low", "north": "none", @@ -194551,7 +207874,7 @@ } }, { - "id": 28538, + "id": 31031, "properties": { "east": "low", "north": "none", @@ -194562,7 +207885,7 @@ } }, { - "id": 28539, + "id": 31032, "properties": { "east": "low", "north": "none", @@ -194573,7 +207896,7 @@ } }, { - "id": 28540, + "id": 31033, "properties": { "east": "low", "north": "none", @@ -194584,7 +207907,7 @@ } }, { - "id": 28541, + "id": 31034, "properties": { "east": "low", "north": "none", @@ -194595,7 +207918,7 @@ } }, { - "id": 28542, + "id": 31035, "properties": { "east": "low", "north": "none", @@ -194606,7 +207929,7 @@ } }, { - "id": 28543, + "id": 31036, "properties": { "east": "low", "north": "none", @@ -194617,7 +207940,7 @@ } }, { - "id": 28544, + "id": 31037, "properties": { "east": "low", "north": "none", @@ -194628,7 +207951,7 @@ } }, { - "id": 28545, + "id": 31038, "properties": { "east": "low", "north": "none", @@ -194639,7 +207962,7 @@ } }, { - "id": 28546, + "id": 31039, "properties": { "east": "low", "north": "none", @@ -194650,7 +207973,7 @@ } }, { - "id": 28547, + "id": 31040, "properties": { "east": "low", "north": "none", @@ -194661,7 +207984,7 @@ } }, { - "id": 28548, + "id": 31041, "properties": { "east": "low", "north": "none", @@ -194672,7 +207995,7 @@ } }, { - "id": 28549, + "id": 31042, "properties": { "east": "low", "north": "none", @@ -194683,7 +208006,7 @@ } }, { - "id": 28550, + "id": 31043, "properties": { "east": "low", "north": "none", @@ -194694,7 +208017,7 @@ } }, { - "id": 28551, + "id": 31044, "properties": { "east": "low", "north": "none", @@ -194705,7 +208028,7 @@ } }, { - "id": 28552, + "id": 31045, "properties": { "east": "low", "north": "none", @@ -194716,7 +208039,7 @@ } }, { - "id": 28553, + "id": 31046, "properties": { "east": "low", "north": "none", @@ -194727,7 +208050,7 @@ } }, { - "id": 28554, + "id": 31047, "properties": { "east": "low", "north": "none", @@ -194738,7 +208061,7 @@ } }, { - "id": 28555, + "id": 31048, "properties": { "east": "low", "north": "none", @@ -194749,7 +208072,7 @@ } }, { - "id": 28556, + "id": 31049, "properties": { "east": "low", "north": "none", @@ -194760,7 +208083,7 @@ } }, { - "id": 28557, + "id": 31050, "properties": { "east": "low", "north": "none", @@ -194771,7 +208094,7 @@ } }, { - "id": 28558, + "id": 31051, "properties": { "east": "low", "north": "none", @@ -194782,7 +208105,7 @@ } }, { - "id": 28559, + "id": 31052, "properties": { "east": "low", "north": "none", @@ -194793,7 +208116,7 @@ } }, { - "id": 28560, + "id": 31053, "properties": { "east": "low", "north": "none", @@ -194804,7 +208127,7 @@ } }, { - "id": 28561, + "id": 31054, "properties": { "east": "low", "north": "none", @@ -194815,7 +208138,7 @@ } }, { - "id": 28562, + "id": 31055, "properties": { "east": "low", "north": "none", @@ -194826,7 +208149,7 @@ } }, { - "id": 28563, + "id": 31056, "properties": { "east": "low", "north": "none", @@ -194837,7 +208160,7 @@ } }, { - "id": 28564, + "id": 31057, "properties": { "east": "low", "north": "none", @@ -194848,7 +208171,7 @@ } }, { - "id": 28565, + "id": 31058, "properties": { "east": "low", "north": "none", @@ -194859,7 +208182,7 @@ } }, { - "id": 28566, + "id": 31059, "properties": { "east": "low", "north": "none", @@ -194870,7 +208193,7 @@ } }, { - "id": 28567, + "id": 31060, "properties": { "east": "low", "north": "none", @@ -194881,7 +208204,7 @@ } }, { - "id": 28568, + "id": 31061, "properties": { "east": "low", "north": "low", @@ -194892,7 +208215,7 @@ } }, { - "id": 28569, + "id": 31062, "properties": { "east": "low", "north": "low", @@ -194903,7 +208226,7 @@ } }, { - "id": 28570, + "id": 31063, "properties": { "east": "low", "north": "low", @@ -194914,7 +208237,7 @@ } }, { - "id": 28571, + "id": 31064, "properties": { "east": "low", "north": "low", @@ -194925,7 +208248,7 @@ } }, { - "id": 28572, + "id": 31065, "properties": { "east": "low", "north": "low", @@ -194936,7 +208259,7 @@ } }, { - "id": 28573, + "id": 31066, "properties": { "east": "low", "north": "low", @@ -194947,7 +208270,7 @@ } }, { - "id": 28574, + "id": 31067, "properties": { "east": "low", "north": "low", @@ -194958,7 +208281,7 @@ } }, { - "id": 28575, + "id": 31068, "properties": { "east": "low", "north": "low", @@ -194969,7 +208292,7 @@ } }, { - "id": 28576, + "id": 31069, "properties": { "east": "low", "north": "low", @@ -194980,7 +208303,7 @@ } }, { - "id": 28577, + "id": 31070, "properties": { "east": "low", "north": "low", @@ -194991,7 +208314,7 @@ } }, { - "id": 28578, + "id": 31071, "properties": { "east": "low", "north": "low", @@ -195002,7 +208325,7 @@ } }, { - "id": 28579, + "id": 31072, "properties": { "east": "low", "north": "low", @@ -195013,7 +208336,7 @@ } }, { - "id": 28580, + "id": 31073, "properties": { "east": "low", "north": "low", @@ -195024,7 +208347,7 @@ } }, { - "id": 28581, + "id": 31074, "properties": { "east": "low", "north": "low", @@ -195035,7 +208358,7 @@ } }, { - "id": 28582, + "id": 31075, "properties": { "east": "low", "north": "low", @@ -195046,7 +208369,7 @@ } }, { - "id": 28583, + "id": 31076, "properties": { "east": "low", "north": "low", @@ -195057,7 +208380,7 @@ } }, { - "id": 28584, + "id": 31077, "properties": { "east": "low", "north": "low", @@ -195068,7 +208391,7 @@ } }, { - "id": 28585, + "id": 31078, "properties": { "east": "low", "north": "low", @@ -195079,7 +208402,7 @@ } }, { - "id": 28586, + "id": 31079, "properties": { "east": "low", "north": "low", @@ -195090,7 +208413,7 @@ } }, { - "id": 28587, + "id": 31080, "properties": { "east": "low", "north": "low", @@ -195101,7 +208424,7 @@ } }, { - "id": 28588, + "id": 31081, "properties": { "east": "low", "north": "low", @@ -195112,7 +208435,7 @@ } }, { - "id": 28589, + "id": 31082, "properties": { "east": "low", "north": "low", @@ -195123,7 +208446,7 @@ } }, { - "id": 28590, + "id": 31083, "properties": { "east": "low", "north": "low", @@ -195134,7 +208457,7 @@ } }, { - "id": 28591, + "id": 31084, "properties": { "east": "low", "north": "low", @@ -195145,7 +208468,7 @@ } }, { - "id": 28592, + "id": 31085, "properties": { "east": "low", "north": "low", @@ -195156,7 +208479,7 @@ } }, { - "id": 28593, + "id": 31086, "properties": { "east": "low", "north": "low", @@ -195167,7 +208490,7 @@ } }, { - "id": 28594, + "id": 31087, "properties": { "east": "low", "north": "low", @@ -195178,7 +208501,7 @@ } }, { - "id": 28595, + "id": 31088, "properties": { "east": "low", "north": "low", @@ -195189,7 +208512,7 @@ } }, { - "id": 28596, + "id": 31089, "properties": { "east": "low", "north": "low", @@ -195200,7 +208523,7 @@ } }, { - "id": 28597, + "id": 31090, "properties": { "east": "low", "north": "low", @@ -195211,7 +208534,7 @@ } }, { - "id": 28598, + "id": 31091, "properties": { "east": "low", "north": "low", @@ -195222,7 +208545,7 @@ } }, { - "id": 28599, + "id": 31092, "properties": { "east": "low", "north": "low", @@ -195233,7 +208556,7 @@ } }, { - "id": 28600, + "id": 31093, "properties": { "east": "low", "north": "low", @@ -195244,7 +208567,7 @@ } }, { - "id": 28601, + "id": 31094, "properties": { "east": "low", "north": "low", @@ -195255,7 +208578,7 @@ } }, { - "id": 28602, + "id": 31095, "properties": { "east": "low", "north": "low", @@ -195266,7 +208589,7 @@ } }, { - "id": 28603, + "id": 31096, "properties": { "east": "low", "north": "low", @@ -195277,7 +208600,7 @@ } }, { - "id": 28604, + "id": 31097, "properties": { "east": "low", "north": "tall", @@ -195288,7 +208611,7 @@ } }, { - "id": 28605, + "id": 31098, "properties": { "east": "low", "north": "tall", @@ -195299,7 +208622,7 @@ } }, { - "id": 28606, + "id": 31099, "properties": { "east": "low", "north": "tall", @@ -195310,7 +208633,7 @@ } }, { - "id": 28607, + "id": 31100, "properties": { "east": "low", "north": "tall", @@ -195321,7 +208644,7 @@ } }, { - "id": 28608, + "id": 31101, "properties": { "east": "low", "north": "tall", @@ -195332,7 +208655,7 @@ } }, { - "id": 28609, + "id": 31102, "properties": { "east": "low", "north": "tall", @@ -195343,7 +208666,7 @@ } }, { - "id": 28610, + "id": 31103, "properties": { "east": "low", "north": "tall", @@ -195354,7 +208677,7 @@ } }, { - "id": 28611, + "id": 31104, "properties": { "east": "low", "north": "tall", @@ -195365,7 +208688,7 @@ } }, { - "id": 28612, + "id": 31105, "properties": { "east": "low", "north": "tall", @@ -195376,7 +208699,7 @@ } }, { - "id": 28613, + "id": 31106, "properties": { "east": "low", "north": "tall", @@ -195387,7 +208710,7 @@ } }, { - "id": 28614, + "id": 31107, "properties": { "east": "low", "north": "tall", @@ -195398,7 +208721,7 @@ } }, { - "id": 28615, + "id": 31108, "properties": { "east": "low", "north": "tall", @@ -195409,7 +208732,7 @@ } }, { - "id": 28616, + "id": 31109, "properties": { "east": "low", "north": "tall", @@ -195420,7 +208743,7 @@ } }, { - "id": 28617, + "id": 31110, "properties": { "east": "low", "north": "tall", @@ -195431,7 +208754,7 @@ } }, { - "id": 28618, + "id": 31111, "properties": { "east": "low", "north": "tall", @@ -195442,7 +208765,7 @@ } }, { - "id": 28619, + "id": 31112, "properties": { "east": "low", "north": "tall", @@ -195453,7 +208776,7 @@ } }, { - "id": 28620, + "id": 31113, "properties": { "east": "low", "north": "tall", @@ -195464,7 +208787,7 @@ } }, { - "id": 28621, + "id": 31114, "properties": { "east": "low", "north": "tall", @@ -195475,7 +208798,7 @@ } }, { - "id": 28622, + "id": 31115, "properties": { "east": "low", "north": "tall", @@ -195486,7 +208809,7 @@ } }, { - "id": 28623, + "id": 31116, "properties": { "east": "low", "north": "tall", @@ -195497,7 +208820,7 @@ } }, { - "id": 28624, + "id": 31117, "properties": { "east": "low", "north": "tall", @@ -195508,7 +208831,7 @@ } }, { - "id": 28625, + "id": 31118, "properties": { "east": "low", "north": "tall", @@ -195519,7 +208842,7 @@ } }, { - "id": 28626, + "id": 31119, "properties": { "east": "low", "north": "tall", @@ -195530,7 +208853,7 @@ } }, { - "id": 28627, + "id": 31120, "properties": { "east": "low", "north": "tall", @@ -195541,7 +208864,7 @@ } }, { - "id": 28628, + "id": 31121, "properties": { "east": "low", "north": "tall", @@ -195552,7 +208875,7 @@ } }, { - "id": 28629, + "id": 31122, "properties": { "east": "low", "north": "tall", @@ -195563,7 +208886,7 @@ } }, { - "id": 28630, + "id": 31123, "properties": { "east": "low", "north": "tall", @@ -195574,7 +208897,7 @@ } }, { - "id": 28631, + "id": 31124, "properties": { "east": "low", "north": "tall", @@ -195585,7 +208908,7 @@ } }, { - "id": 28632, + "id": 31125, "properties": { "east": "low", "north": "tall", @@ -195596,7 +208919,7 @@ } }, { - "id": 28633, + "id": 31126, "properties": { "east": "low", "north": "tall", @@ -195607,7 +208930,7 @@ } }, { - "id": 28634, + "id": 31127, "properties": { "east": "low", "north": "tall", @@ -195618,7 +208941,7 @@ } }, { - "id": 28635, + "id": 31128, "properties": { "east": "low", "north": "tall", @@ -195629,7 +208952,7 @@ } }, { - "id": 28636, + "id": 31129, "properties": { "east": "low", "north": "tall", @@ -195640,7 +208963,7 @@ } }, { - "id": 28637, + "id": 31130, "properties": { "east": "low", "north": "tall", @@ -195651,7 +208974,7 @@ } }, { - "id": 28638, + "id": 31131, "properties": { "east": "low", "north": "tall", @@ -195662,7 +208985,7 @@ } }, { - "id": 28639, + "id": 31132, "properties": { "east": "low", "north": "tall", @@ -195673,7 +208996,7 @@ } }, { - "id": 28640, + "id": 31133, "properties": { "east": "tall", "north": "none", @@ -195684,7 +209007,7 @@ } }, { - "id": 28641, + "id": 31134, "properties": { "east": "tall", "north": "none", @@ -195695,7 +209018,7 @@ } }, { - "id": 28642, + "id": 31135, "properties": { "east": "tall", "north": "none", @@ -195706,7 +209029,7 @@ } }, { - "id": 28643, + "id": 31136, "properties": { "east": "tall", "north": "none", @@ -195717,7 +209040,7 @@ } }, { - "id": 28644, + "id": 31137, "properties": { "east": "tall", "north": "none", @@ -195728,7 +209051,7 @@ } }, { - "id": 28645, + "id": 31138, "properties": { "east": "tall", "north": "none", @@ -195739,7 +209062,7 @@ } }, { - "id": 28646, + "id": 31139, "properties": { "east": "tall", "north": "none", @@ -195750,7 +209073,7 @@ } }, { - "id": 28647, + "id": 31140, "properties": { "east": "tall", "north": "none", @@ -195761,7 +209084,7 @@ } }, { - "id": 28648, + "id": 31141, "properties": { "east": "tall", "north": "none", @@ -195772,7 +209095,7 @@ } }, { - "id": 28649, + "id": 31142, "properties": { "east": "tall", "north": "none", @@ -195783,7 +209106,7 @@ } }, { - "id": 28650, + "id": 31143, "properties": { "east": "tall", "north": "none", @@ -195794,7 +209117,7 @@ } }, { - "id": 28651, + "id": 31144, "properties": { "east": "tall", "north": "none", @@ -195805,7 +209128,7 @@ } }, { - "id": 28652, + "id": 31145, "properties": { "east": "tall", "north": "none", @@ -195816,7 +209139,7 @@ } }, { - "id": 28653, + "id": 31146, "properties": { "east": "tall", "north": "none", @@ -195827,7 +209150,7 @@ } }, { - "id": 28654, + "id": 31147, "properties": { "east": "tall", "north": "none", @@ -195838,7 +209161,7 @@ } }, { - "id": 28655, + "id": 31148, "properties": { "east": "tall", "north": "none", @@ -195849,7 +209172,7 @@ } }, { - "id": 28656, + "id": 31149, "properties": { "east": "tall", "north": "none", @@ -195860,7 +209183,7 @@ } }, { - "id": 28657, + "id": 31150, "properties": { "east": "tall", "north": "none", @@ -195871,7 +209194,7 @@ } }, { - "id": 28658, + "id": 31151, "properties": { "east": "tall", "north": "none", @@ -195882,7 +209205,7 @@ } }, { - "id": 28659, + "id": 31152, "properties": { "east": "tall", "north": "none", @@ -195893,7 +209216,7 @@ } }, { - "id": 28660, + "id": 31153, "properties": { "east": "tall", "north": "none", @@ -195904,7 +209227,7 @@ } }, { - "id": 28661, + "id": 31154, "properties": { "east": "tall", "north": "none", @@ -195915,7 +209238,7 @@ } }, { - "id": 28662, + "id": 31155, "properties": { "east": "tall", "north": "none", @@ -195926,7 +209249,7 @@ } }, { - "id": 28663, + "id": 31156, "properties": { "east": "tall", "north": "none", @@ -195937,7 +209260,7 @@ } }, { - "id": 28664, + "id": 31157, "properties": { "east": "tall", "north": "none", @@ -195948,7 +209271,7 @@ } }, { - "id": 28665, + "id": 31158, "properties": { "east": "tall", "north": "none", @@ -195959,7 +209282,7 @@ } }, { - "id": 28666, + "id": 31159, "properties": { "east": "tall", "north": "none", @@ -195970,7 +209293,7 @@ } }, { - "id": 28667, + "id": 31160, "properties": { "east": "tall", "north": "none", @@ -195981,7 +209304,7 @@ } }, { - "id": 28668, + "id": 31161, "properties": { "east": "tall", "north": "none", @@ -195992,7 +209315,7 @@ } }, { - "id": 28669, + "id": 31162, "properties": { "east": "tall", "north": "none", @@ -196003,7 +209326,7 @@ } }, { - "id": 28670, + "id": 31163, "properties": { "east": "tall", "north": "none", @@ -196014,7 +209337,7 @@ } }, { - "id": 28671, + "id": 31164, "properties": { "east": "tall", "north": "none", @@ -196025,7 +209348,7 @@ } }, { - "id": 28672, + "id": 31165, "properties": { "east": "tall", "north": "none", @@ -196036,7 +209359,7 @@ } }, { - "id": 28673, + "id": 31166, "properties": { "east": "tall", "north": "none", @@ -196047,7 +209370,7 @@ } }, { - "id": 28674, + "id": 31167, "properties": { "east": "tall", "north": "none", @@ -196058,7 +209381,7 @@ } }, { - "id": 28675, + "id": 31168, "properties": { "east": "tall", "north": "none", @@ -196069,7 +209392,7 @@ } }, { - "id": 28676, + "id": 31169, "properties": { "east": "tall", "north": "low", @@ -196080,7 +209403,7 @@ } }, { - "id": 28677, + "id": 31170, "properties": { "east": "tall", "north": "low", @@ -196091,7 +209414,7 @@ } }, { - "id": 28678, + "id": 31171, "properties": { "east": "tall", "north": "low", @@ -196102,7 +209425,7 @@ } }, { - "id": 28679, + "id": 31172, "properties": { "east": "tall", "north": "low", @@ -196113,7 +209436,7 @@ } }, { - "id": 28680, + "id": 31173, "properties": { "east": "tall", "north": "low", @@ -196124,7 +209447,7 @@ } }, { - "id": 28681, + "id": 31174, "properties": { "east": "tall", "north": "low", @@ -196135,7 +209458,7 @@ } }, { - "id": 28682, + "id": 31175, "properties": { "east": "tall", "north": "low", @@ -196146,7 +209469,7 @@ } }, { - "id": 28683, + "id": 31176, "properties": { "east": "tall", "north": "low", @@ -196157,7 +209480,7 @@ } }, { - "id": 28684, + "id": 31177, "properties": { "east": "tall", "north": "low", @@ -196168,7 +209491,7 @@ } }, { - "id": 28685, + "id": 31178, "properties": { "east": "tall", "north": "low", @@ -196179,7 +209502,7 @@ } }, { - "id": 28686, + "id": 31179, "properties": { "east": "tall", "north": "low", @@ -196190,7 +209513,7 @@ } }, { - "id": 28687, + "id": 31180, "properties": { "east": "tall", "north": "low", @@ -196201,7 +209524,7 @@ } }, { - "id": 28688, + "id": 31181, "properties": { "east": "tall", "north": "low", @@ -196212,7 +209535,7 @@ } }, { - "id": 28689, + "id": 31182, "properties": { "east": "tall", "north": "low", @@ -196223,7 +209546,7 @@ } }, { - "id": 28690, + "id": 31183, "properties": { "east": "tall", "north": "low", @@ -196234,7 +209557,7 @@ } }, { - "id": 28691, + "id": 31184, "properties": { "east": "tall", "north": "low", @@ -196245,7 +209568,7 @@ } }, { - "id": 28692, + "id": 31185, "properties": { "east": "tall", "north": "low", @@ -196256,7 +209579,7 @@ } }, { - "id": 28693, + "id": 31186, "properties": { "east": "tall", "north": "low", @@ -196267,7 +209590,7 @@ } }, { - "id": 28694, + "id": 31187, "properties": { "east": "tall", "north": "low", @@ -196278,7 +209601,7 @@ } }, { - "id": 28695, + "id": 31188, "properties": { "east": "tall", "north": "low", @@ -196289,7 +209612,7 @@ } }, { - "id": 28696, + "id": 31189, "properties": { "east": "tall", "north": "low", @@ -196300,7 +209623,7 @@ } }, { - "id": 28697, + "id": 31190, "properties": { "east": "tall", "north": "low", @@ -196311,7 +209634,7 @@ } }, { - "id": 28698, + "id": 31191, "properties": { "east": "tall", "north": "low", @@ -196322,7 +209645,7 @@ } }, { - "id": 28699, + "id": 31192, "properties": { "east": "tall", "north": "low", @@ -196333,7 +209656,7 @@ } }, { - "id": 28700, + "id": 31193, "properties": { "east": "tall", "north": "low", @@ -196344,7 +209667,7 @@ } }, { - "id": 28701, + "id": 31194, "properties": { "east": "tall", "north": "low", @@ -196355,7 +209678,7 @@ } }, { - "id": 28702, + "id": 31195, "properties": { "east": "tall", "north": "low", @@ -196366,7 +209689,7 @@ } }, { - "id": 28703, + "id": 31196, "properties": { "east": "tall", "north": "low", @@ -196377,7 +209700,7 @@ } }, { - "id": 28704, + "id": 31197, "properties": { "east": "tall", "north": "low", @@ -196388,7 +209711,7 @@ } }, { - "id": 28705, + "id": 31198, "properties": { "east": "tall", "north": "low", @@ -196399,7 +209722,7 @@ } }, { - "id": 28706, + "id": 31199, "properties": { "east": "tall", "north": "low", @@ -196410,7 +209733,7 @@ } }, { - "id": 28707, + "id": 31200, "properties": { "east": "tall", "north": "low", @@ -196421,7 +209744,7 @@ } }, { - "id": 28708, + "id": 31201, "properties": { "east": "tall", "north": "low", @@ -196432,7 +209755,7 @@ } }, { - "id": 28709, + "id": 31202, "properties": { "east": "tall", "north": "low", @@ -196443,7 +209766,7 @@ } }, { - "id": 28710, + "id": 31203, "properties": { "east": "tall", "north": "low", @@ -196454,7 +209777,7 @@ } }, { - "id": 28711, + "id": 31204, "properties": { "east": "tall", "north": "low", @@ -196465,7 +209788,7 @@ } }, { - "id": 28712, + "id": 31205, "properties": { "east": "tall", "north": "tall", @@ -196476,7 +209799,7 @@ } }, { - "id": 28713, + "id": 31206, "properties": { "east": "tall", "north": "tall", @@ -196487,7 +209810,7 @@ } }, { - "id": 28714, + "id": 31207, "properties": { "east": "tall", "north": "tall", @@ -196498,7 +209821,7 @@ } }, { - "id": 28715, + "id": 31208, "properties": { "east": "tall", "north": "tall", @@ -196509,7 +209832,7 @@ } }, { - "id": 28716, + "id": 31209, "properties": { "east": "tall", "north": "tall", @@ -196520,7 +209843,7 @@ } }, { - "id": 28717, + "id": 31210, "properties": { "east": "tall", "north": "tall", @@ -196531,7 +209854,7 @@ } }, { - "id": 28718, + "id": 31211, "properties": { "east": "tall", "north": "tall", @@ -196542,7 +209865,7 @@ } }, { - "id": 28719, + "id": 31212, "properties": { "east": "tall", "north": "tall", @@ -196553,7 +209876,7 @@ } }, { - "id": 28720, + "id": 31213, "properties": { "east": "tall", "north": "tall", @@ -196564,7 +209887,7 @@ } }, { - "id": 28721, + "id": 31214, "properties": { "east": "tall", "north": "tall", @@ -196575,7 +209898,7 @@ } }, { - "id": 28722, + "id": 31215, "properties": { "east": "tall", "north": "tall", @@ -196586,7 +209909,7 @@ } }, { - "id": 28723, + "id": 31216, "properties": { "east": "tall", "north": "tall", @@ -196597,7 +209920,7 @@ } }, { - "id": 28724, + "id": 31217, "properties": { "east": "tall", "north": "tall", @@ -196608,7 +209931,7 @@ } }, { - "id": 28725, + "id": 31218, "properties": { "east": "tall", "north": "tall", @@ -196619,7 +209942,7 @@ } }, { - "id": 28726, + "id": 31219, "properties": { "east": "tall", "north": "tall", @@ -196630,7 +209953,7 @@ } }, { - "id": 28727, + "id": 31220, "properties": { "east": "tall", "north": "tall", @@ -196641,7 +209964,7 @@ } }, { - "id": 28728, + "id": 31221, "properties": { "east": "tall", "north": "tall", @@ -196652,7 +209975,7 @@ } }, { - "id": 28729, + "id": 31222, "properties": { "east": "tall", "north": "tall", @@ -196663,7 +209986,7 @@ } }, { - "id": 28730, + "id": 31223, "properties": { "east": "tall", "north": "tall", @@ -196674,7 +209997,7 @@ } }, { - "id": 28731, + "id": 31224, "properties": { "east": "tall", "north": "tall", @@ -196685,7 +210008,7 @@ } }, { - "id": 28732, + "id": 31225, "properties": { "east": "tall", "north": "tall", @@ -196696,7 +210019,7 @@ } }, { - "id": 28733, + "id": 31226, "properties": { "east": "tall", "north": "tall", @@ -196707,7 +210030,7 @@ } }, { - "id": 28734, + "id": 31227, "properties": { "east": "tall", "north": "tall", @@ -196718,7 +210041,7 @@ } }, { - "id": 28735, + "id": 31228, "properties": { "east": "tall", "north": "tall", @@ -196729,7 +210052,7 @@ } }, { - "id": 28736, + "id": 31229, "properties": { "east": "tall", "north": "tall", @@ -196740,7 +210063,7 @@ } }, { - "id": 28737, + "id": 31230, "properties": { "east": "tall", "north": "tall", @@ -196751,7 +210074,7 @@ } }, { - "id": 28738, + "id": 31231, "properties": { "east": "tall", "north": "tall", @@ -196762,7 +210085,7 @@ } }, { - "id": 28739, + "id": 31232, "properties": { "east": "tall", "north": "tall", @@ -196773,7 +210096,7 @@ } }, { - "id": 28740, + "id": 31233, "properties": { "east": "tall", "north": "tall", @@ -196784,7 +210107,7 @@ } }, { - "id": 28741, + "id": 31234, "properties": { "east": "tall", "north": "tall", @@ -196795,7 +210118,7 @@ } }, { - "id": 28742, + "id": 31235, "properties": { "east": "tall", "north": "tall", @@ -196806,7 +210129,7 @@ } }, { - "id": 28743, + "id": 31236, "properties": { "east": "tall", "north": "tall", @@ -196817,7 +210140,7 @@ } }, { - "id": 28744, + "id": 31237, "properties": { "east": "tall", "north": "tall", @@ -196828,7 +210151,7 @@ } }, { - "id": 28745, + "id": 31238, "properties": { "east": "tall", "north": "tall", @@ -196839,7 +210162,7 @@ } }, { - "id": 28746, + "id": 31239, "properties": { "east": "tall", "north": "tall", @@ -196850,7 +210173,7 @@ } }, { - "id": 28747, + "id": 31240, "properties": { "east": "tall", "north": "tall", @@ -198520,6 +211843,4438 @@ } ] }, + "minecraft:polished_sulfur": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25103 + } + ] + }, + "minecraft:polished_sulfur_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25104, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 25105, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 25106, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25107, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 25108, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 25109, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_sulfur_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_sulfur" + }, + "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": 25110, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25111, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25112, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25113, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25114, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25115, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25116, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25117, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25118, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25119, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25120, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25121, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25122, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25123, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25124, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25125, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25126, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25127, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25128, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25129, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25130, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25131, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25132, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25133, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25134, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25135, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25136, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25137, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25138, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25139, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25140, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25141, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25142, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25143, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25144, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25145, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25146, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25147, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25148, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25149, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25150, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25151, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25152, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25153, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25154, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25155, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25156, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25157, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25158, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25159, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25160, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25161, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25162, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25163, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25164, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25165, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25166, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25167, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25168, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25169, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25170, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25171, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25172, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25173, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25174, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25175, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25176, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25177, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25178, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25179, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25180, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25181, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25182, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25183, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25184, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25185, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25186, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25187, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25188, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25189, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_sulfur_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 25190, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25191, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25192, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 25193, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25194, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25195, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25196, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25197, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25198, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25199, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25200, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25201, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25202, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25203, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25204, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25205, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25206, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25207, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25208, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25209, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25210, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25211, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25212, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25213, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25214, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25215, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25216, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25217, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25218, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25219, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25220, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25221, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25222, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25223, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25224, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25225, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25226, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25227, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25228, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25229, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25230, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25231, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25232, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25233, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25234, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25235, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25236, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25237, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25238, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25239, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25240, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25241, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25242, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25243, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25244, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25245, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25246, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25247, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25248, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25249, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25250, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25251, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25252, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25253, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25254, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25255, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25256, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25257, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25258, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25259, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25260, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25261, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25262, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25263, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25264, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25265, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25266, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25267, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25268, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25269, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25270, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25271, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25272, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25273, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25274, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25275, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25276, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25277, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25278, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25279, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25280, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25281, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25282, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25283, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25284, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25285, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25286, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25287, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25288, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25289, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25290, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25291, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25292, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25293, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25294, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25295, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25296, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25297, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25298, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25299, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25300, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25301, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25302, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25303, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25304, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25305, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25306, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25307, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25308, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25309, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25310, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25311, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25312, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25313, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25314, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25315, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25316, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25317, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25318, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25319, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25320, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25321, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25322, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25323, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25324, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25325, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25326, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25327, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25328, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25329, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25330, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25331, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25332, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25333, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25334, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25335, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25336, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25337, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25338, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25339, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25340, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25341, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25342, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25343, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25344, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25345, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25346, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25347, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25348, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25349, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25350, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25351, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25352, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25353, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25354, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25355, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25356, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25357, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25358, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25359, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25360, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25361, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25362, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25363, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25364, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25365, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25366, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25367, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25368, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25369, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25370, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25371, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25372, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25373, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25374, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25375, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25376, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25377, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25378, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25379, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25380, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25381, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25382, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25383, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25384, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25385, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25386, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25387, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25388, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25389, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25390, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25391, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25392, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25393, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25394, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25395, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25396, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25397, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25398, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25399, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25400, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25401, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25402, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25403, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25404, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25405, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25406, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25407, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25408, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25409, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25410, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25411, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25412, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25413, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25414, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25415, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25416, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25417, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25418, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25419, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25420, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25421, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25422, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25423, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25424, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25425, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25426, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25427, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25428, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25429, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25430, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25431, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25432, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25433, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25434, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25435, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25436, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25437, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25438, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25439, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25440, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25441, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25442, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25443, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25444, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25445, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25446, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25447, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25448, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25449, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25450, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25451, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25452, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25453, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25454, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25455, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25456, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25457, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25458, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25459, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25460, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25461, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25462, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25463, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25464, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25465, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25466, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25467, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25468, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25469, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25470, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25471, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25472, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25473, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25474, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25475, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25476, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25477, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25478, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25479, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25480, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25481, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25482, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25483, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25484, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25485, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25486, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25487, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25488, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25489, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25490, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25491, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25492, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25493, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25494, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25495, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25496, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25497, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25498, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25499, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25500, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25501, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25502, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25503, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25504, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25505, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25506, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25507, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25508, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25509, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25510, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25511, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25512, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25513, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, "minecraft:polished_tuff": { "definition": { "type": "minecraft:block", @@ -203039,6 +220794,54 @@ } ] }, + "minecraft:potent_sulfur": { + "definition": { + "type": "minecraft:potent_sulfur", + "properties": {} + }, + "properties": { + "potent_sulfur_state": [ + "dry", + "wet", + "dormant", + "erupting", + "continuous" + ] + }, + "states": [ + { + "default": true, + "id": 24688, + "properties": { + "potent_sulfur_state": "dry" + } + }, + { + "id": 24689, + "properties": { + "potent_sulfur_state": "wet" + } + }, + { + "id": 24690, + "properties": { + "potent_sulfur_state": "dormant" + } + }, + { + "id": 24691, + "properties": { + "potent_sulfur_state": "erupting" + } + }, + { + "id": 24692, + "properties": { + "potent_sulfur_state": "continuous" + } + } + ] + }, "minecraft:potted_acacia_sapling": { "definition": { "type": "minecraft:flower_pot", @@ -203074,7 +220877,7 @@ "states": [ { "default": true, - "id": 29580 + "id": 32073 } ] }, @@ -203178,7 +220981,7 @@ "states": [ { "default": true, - "id": 29871 + "id": 32364 } ] }, @@ -203282,7 +221085,7 @@ "states": [ { "default": true, - "id": 29581 + "id": 32074 } ] }, @@ -203360,7 +221163,7 @@ "states": [ { "default": true, - "id": 29870 + "id": 32363 } ] }, @@ -203541,7 +221344,7 @@ "states": [ { "default": true, - "id": 24689 + "id": 27162 } ] }, @@ -212087,7 +229890,7 @@ "states": [ { "default": true, - "id": 29578 + "id": 32071 } ] }, @@ -212099,7 +229902,7 @@ "states": [ { "default": true, - "id": 29579 + "id": 32072 } ] }, @@ -212111,7 +229914,7 @@ "states": [ { "default": true, - "id": 29577 + "id": 32070 } ] }, @@ -235976,7 +253779,7 @@ "states": [ { "default": true, - "id": 29592 + "id": 32085 } ] }, @@ -242770,7 +260573,7 @@ "states": [ { "default": true, - "id": 27921 + "id": 30414 } ] }, @@ -247539,7 +265342,7 @@ "states": [ { "default": true, - "id": 25170 + "id": 27643 } ] }, @@ -247556,14 +265359,14 @@ }, "states": [ { - "id": 25299, + "id": 27772, "properties": { "bloom": "true" } }, { "default": true, - "id": 25300, + "id": 27773, "properties": { "bloom": "false" } @@ -247606,7 +265409,7 @@ }, "states": [ { - "id": 24690, + "id": 27163, "properties": { "power": "0", "sculk_sensor_phase": "inactive", @@ -247615,7 +265418,7 @@ }, { "default": true, - "id": 24691, + "id": 27164, "properties": { "power": "0", "sculk_sensor_phase": "inactive", @@ -247623,7 +265426,7 @@ } }, { - "id": 24692, + "id": 27165, "properties": { "power": "0", "sculk_sensor_phase": "active", @@ -247631,7 +265434,7 @@ } }, { - "id": 24693, + "id": 27166, "properties": { "power": "0", "sculk_sensor_phase": "active", @@ -247639,7 +265442,7 @@ } }, { - "id": 24694, + "id": 27167, "properties": { "power": "0", "sculk_sensor_phase": "cooldown", @@ -247647,7 +265450,7 @@ } }, { - "id": 24695, + "id": 27168, "properties": { "power": "0", "sculk_sensor_phase": "cooldown", @@ -247655,7 +265458,7 @@ } }, { - "id": 24696, + "id": 27169, "properties": { "power": "1", "sculk_sensor_phase": "inactive", @@ -247663,7 +265466,7 @@ } }, { - "id": 24697, + "id": 27170, "properties": { "power": "1", "sculk_sensor_phase": "inactive", @@ -247671,7 +265474,7 @@ } }, { - "id": 24698, + "id": 27171, "properties": { "power": "1", "sculk_sensor_phase": "active", @@ -247679,7 +265482,7 @@ } }, { - "id": 24699, + "id": 27172, "properties": { "power": "1", "sculk_sensor_phase": "active", @@ -247687,7 +265490,7 @@ } }, { - "id": 24700, + "id": 27173, "properties": { "power": "1", "sculk_sensor_phase": "cooldown", @@ -247695,7 +265498,7 @@ } }, { - "id": 24701, + "id": 27174, "properties": { "power": "1", "sculk_sensor_phase": "cooldown", @@ -247703,7 +265506,7 @@ } }, { - "id": 24702, + "id": 27175, "properties": { "power": "2", "sculk_sensor_phase": "inactive", @@ -247711,7 +265514,7 @@ } }, { - "id": 24703, + "id": 27176, "properties": { "power": "2", "sculk_sensor_phase": "inactive", @@ -247719,7 +265522,7 @@ } }, { - "id": 24704, + "id": 27177, "properties": { "power": "2", "sculk_sensor_phase": "active", @@ -247727,7 +265530,7 @@ } }, { - "id": 24705, + "id": 27178, "properties": { "power": "2", "sculk_sensor_phase": "active", @@ -247735,7 +265538,7 @@ } }, { - "id": 24706, + "id": 27179, "properties": { "power": "2", "sculk_sensor_phase": "cooldown", @@ -247743,7 +265546,7 @@ } }, { - "id": 24707, + "id": 27180, "properties": { "power": "2", "sculk_sensor_phase": "cooldown", @@ -247751,7 +265554,7 @@ } }, { - "id": 24708, + "id": 27181, "properties": { "power": "3", "sculk_sensor_phase": "inactive", @@ -247759,7 +265562,7 @@ } }, { - "id": 24709, + "id": 27182, "properties": { "power": "3", "sculk_sensor_phase": "inactive", @@ -247767,7 +265570,7 @@ } }, { - "id": 24710, + "id": 27183, "properties": { "power": "3", "sculk_sensor_phase": "active", @@ -247775,7 +265578,7 @@ } }, { - "id": 24711, + "id": 27184, "properties": { "power": "3", "sculk_sensor_phase": "active", @@ -247783,7 +265586,7 @@ } }, { - "id": 24712, + "id": 27185, "properties": { "power": "3", "sculk_sensor_phase": "cooldown", @@ -247791,7 +265594,7 @@ } }, { - "id": 24713, + "id": 27186, "properties": { "power": "3", "sculk_sensor_phase": "cooldown", @@ -247799,7 +265602,7 @@ } }, { - "id": 24714, + "id": 27187, "properties": { "power": "4", "sculk_sensor_phase": "inactive", @@ -247807,7 +265610,7 @@ } }, { - "id": 24715, + "id": 27188, "properties": { "power": "4", "sculk_sensor_phase": "inactive", @@ -247815,7 +265618,7 @@ } }, { - "id": 24716, + "id": 27189, "properties": { "power": "4", "sculk_sensor_phase": "active", @@ -247823,7 +265626,7 @@ } }, { - "id": 24717, + "id": 27190, "properties": { "power": "4", "sculk_sensor_phase": "active", @@ -247831,7 +265634,7 @@ } }, { - "id": 24718, + "id": 27191, "properties": { "power": "4", "sculk_sensor_phase": "cooldown", @@ -247839,7 +265642,7 @@ } }, { - "id": 24719, + "id": 27192, "properties": { "power": "4", "sculk_sensor_phase": "cooldown", @@ -247847,7 +265650,7 @@ } }, { - "id": 24720, + "id": 27193, "properties": { "power": "5", "sculk_sensor_phase": "inactive", @@ -247855,7 +265658,7 @@ } }, { - "id": 24721, + "id": 27194, "properties": { "power": "5", "sculk_sensor_phase": "inactive", @@ -247863,7 +265666,7 @@ } }, { - "id": 24722, + "id": 27195, "properties": { "power": "5", "sculk_sensor_phase": "active", @@ -247871,7 +265674,7 @@ } }, { - "id": 24723, + "id": 27196, "properties": { "power": "5", "sculk_sensor_phase": "active", @@ -247879,7 +265682,7 @@ } }, { - "id": 24724, + "id": 27197, "properties": { "power": "5", "sculk_sensor_phase": "cooldown", @@ -247887,7 +265690,7 @@ } }, { - "id": 24725, + "id": 27198, "properties": { "power": "5", "sculk_sensor_phase": "cooldown", @@ -247895,7 +265698,7 @@ } }, { - "id": 24726, + "id": 27199, "properties": { "power": "6", "sculk_sensor_phase": "inactive", @@ -247903,7 +265706,7 @@ } }, { - "id": 24727, + "id": 27200, "properties": { "power": "6", "sculk_sensor_phase": "inactive", @@ -247911,7 +265714,7 @@ } }, { - "id": 24728, + "id": 27201, "properties": { "power": "6", "sculk_sensor_phase": "active", @@ -247919,7 +265722,7 @@ } }, { - "id": 24729, + "id": 27202, "properties": { "power": "6", "sculk_sensor_phase": "active", @@ -247927,7 +265730,7 @@ } }, { - "id": 24730, + "id": 27203, "properties": { "power": "6", "sculk_sensor_phase": "cooldown", @@ -247935,7 +265738,7 @@ } }, { - "id": 24731, + "id": 27204, "properties": { "power": "6", "sculk_sensor_phase": "cooldown", @@ -247943,7 +265746,7 @@ } }, { - "id": 24732, + "id": 27205, "properties": { "power": "7", "sculk_sensor_phase": "inactive", @@ -247951,7 +265754,7 @@ } }, { - "id": 24733, + "id": 27206, "properties": { "power": "7", "sculk_sensor_phase": "inactive", @@ -247959,7 +265762,7 @@ } }, { - "id": 24734, + "id": 27207, "properties": { "power": "7", "sculk_sensor_phase": "active", @@ -247967,7 +265770,7 @@ } }, { - "id": 24735, + "id": 27208, "properties": { "power": "7", "sculk_sensor_phase": "active", @@ -247975,7 +265778,7 @@ } }, { - "id": 24736, + "id": 27209, "properties": { "power": "7", "sculk_sensor_phase": "cooldown", @@ -247983,7 +265786,7 @@ } }, { - "id": 24737, + "id": 27210, "properties": { "power": "7", "sculk_sensor_phase": "cooldown", @@ -247991,7 +265794,7 @@ } }, { - "id": 24738, + "id": 27211, "properties": { "power": "8", "sculk_sensor_phase": "inactive", @@ -247999,7 +265802,7 @@ } }, { - "id": 24739, + "id": 27212, "properties": { "power": "8", "sculk_sensor_phase": "inactive", @@ -248007,7 +265810,7 @@ } }, { - "id": 24740, + "id": 27213, "properties": { "power": "8", "sculk_sensor_phase": "active", @@ -248015,7 +265818,7 @@ } }, { - "id": 24741, + "id": 27214, "properties": { "power": "8", "sculk_sensor_phase": "active", @@ -248023,7 +265826,7 @@ } }, { - "id": 24742, + "id": 27215, "properties": { "power": "8", "sculk_sensor_phase": "cooldown", @@ -248031,7 +265834,7 @@ } }, { - "id": 24743, + "id": 27216, "properties": { "power": "8", "sculk_sensor_phase": "cooldown", @@ -248039,7 +265842,7 @@ } }, { - "id": 24744, + "id": 27217, "properties": { "power": "9", "sculk_sensor_phase": "inactive", @@ -248047,7 +265850,7 @@ } }, { - "id": 24745, + "id": 27218, "properties": { "power": "9", "sculk_sensor_phase": "inactive", @@ -248055,7 +265858,7 @@ } }, { - "id": 24746, + "id": 27219, "properties": { "power": "9", "sculk_sensor_phase": "active", @@ -248063,7 +265866,7 @@ } }, { - "id": 24747, + "id": 27220, "properties": { "power": "9", "sculk_sensor_phase": "active", @@ -248071,7 +265874,7 @@ } }, { - "id": 24748, + "id": 27221, "properties": { "power": "9", "sculk_sensor_phase": "cooldown", @@ -248079,7 +265882,7 @@ } }, { - "id": 24749, + "id": 27222, "properties": { "power": "9", "sculk_sensor_phase": "cooldown", @@ -248087,7 +265890,7 @@ } }, { - "id": 24750, + "id": 27223, "properties": { "power": "10", "sculk_sensor_phase": "inactive", @@ -248095,7 +265898,7 @@ } }, { - "id": 24751, + "id": 27224, "properties": { "power": "10", "sculk_sensor_phase": "inactive", @@ -248103,7 +265906,7 @@ } }, { - "id": 24752, + "id": 27225, "properties": { "power": "10", "sculk_sensor_phase": "active", @@ -248111,7 +265914,7 @@ } }, { - "id": 24753, + "id": 27226, "properties": { "power": "10", "sculk_sensor_phase": "active", @@ -248119,7 +265922,7 @@ } }, { - "id": 24754, + "id": 27227, "properties": { "power": "10", "sculk_sensor_phase": "cooldown", @@ -248127,7 +265930,7 @@ } }, { - "id": 24755, + "id": 27228, "properties": { "power": "10", "sculk_sensor_phase": "cooldown", @@ -248135,7 +265938,7 @@ } }, { - "id": 24756, + "id": 27229, "properties": { "power": "11", "sculk_sensor_phase": "inactive", @@ -248143,7 +265946,7 @@ } }, { - "id": 24757, + "id": 27230, "properties": { "power": "11", "sculk_sensor_phase": "inactive", @@ -248151,7 +265954,7 @@ } }, { - "id": 24758, + "id": 27231, "properties": { "power": "11", "sculk_sensor_phase": "active", @@ -248159,7 +265962,7 @@ } }, { - "id": 24759, + "id": 27232, "properties": { "power": "11", "sculk_sensor_phase": "active", @@ -248167,7 +265970,7 @@ } }, { - "id": 24760, + "id": 27233, "properties": { "power": "11", "sculk_sensor_phase": "cooldown", @@ -248175,7 +265978,7 @@ } }, { - "id": 24761, + "id": 27234, "properties": { "power": "11", "sculk_sensor_phase": "cooldown", @@ -248183,7 +265986,7 @@ } }, { - "id": 24762, + "id": 27235, "properties": { "power": "12", "sculk_sensor_phase": "inactive", @@ -248191,7 +265994,7 @@ } }, { - "id": 24763, + "id": 27236, "properties": { "power": "12", "sculk_sensor_phase": "inactive", @@ -248199,7 +266002,7 @@ } }, { - "id": 24764, + "id": 27237, "properties": { "power": "12", "sculk_sensor_phase": "active", @@ -248207,7 +266010,7 @@ } }, { - "id": 24765, + "id": 27238, "properties": { "power": "12", "sculk_sensor_phase": "active", @@ -248215,7 +266018,7 @@ } }, { - "id": 24766, + "id": 27239, "properties": { "power": "12", "sculk_sensor_phase": "cooldown", @@ -248223,7 +266026,7 @@ } }, { - "id": 24767, + "id": 27240, "properties": { "power": "12", "sculk_sensor_phase": "cooldown", @@ -248231,7 +266034,7 @@ } }, { - "id": 24768, + "id": 27241, "properties": { "power": "13", "sculk_sensor_phase": "inactive", @@ -248239,7 +266042,7 @@ } }, { - "id": 24769, + "id": 27242, "properties": { "power": "13", "sculk_sensor_phase": "inactive", @@ -248247,7 +266050,7 @@ } }, { - "id": 24770, + "id": 27243, "properties": { "power": "13", "sculk_sensor_phase": "active", @@ -248255,7 +266058,7 @@ } }, { - "id": 24771, + "id": 27244, "properties": { "power": "13", "sculk_sensor_phase": "active", @@ -248263,7 +266066,7 @@ } }, { - "id": 24772, + "id": 27245, "properties": { "power": "13", "sculk_sensor_phase": "cooldown", @@ -248271,7 +266074,7 @@ } }, { - "id": 24773, + "id": 27246, "properties": { "power": "13", "sculk_sensor_phase": "cooldown", @@ -248279,7 +266082,7 @@ } }, { - "id": 24774, + "id": 27247, "properties": { "power": "14", "sculk_sensor_phase": "inactive", @@ -248287,7 +266090,7 @@ } }, { - "id": 24775, + "id": 27248, "properties": { "power": "14", "sculk_sensor_phase": "inactive", @@ -248295,7 +266098,7 @@ } }, { - "id": 24776, + "id": 27249, "properties": { "power": "14", "sculk_sensor_phase": "active", @@ -248303,7 +266106,7 @@ } }, { - "id": 24777, + "id": 27250, "properties": { "power": "14", "sculk_sensor_phase": "active", @@ -248311,7 +266114,7 @@ } }, { - "id": 24778, + "id": 27251, "properties": { "power": "14", "sculk_sensor_phase": "cooldown", @@ -248319,7 +266122,7 @@ } }, { - "id": 24779, + "id": 27252, "properties": { "power": "14", "sculk_sensor_phase": "cooldown", @@ -248327,7 +266130,7 @@ } }, { - "id": 24780, + "id": 27253, "properties": { "power": "15", "sculk_sensor_phase": "inactive", @@ -248335,7 +266138,7 @@ } }, { - "id": 24781, + "id": 27254, "properties": { "power": "15", "sculk_sensor_phase": "inactive", @@ -248343,7 +266146,7 @@ } }, { - "id": 24782, + "id": 27255, "properties": { "power": "15", "sculk_sensor_phase": "active", @@ -248351,7 +266154,7 @@ } }, { - "id": 24783, + "id": 27256, "properties": { "power": "15", "sculk_sensor_phase": "active", @@ -248359,7 +266162,7 @@ } }, { - "id": 24784, + "id": 27257, "properties": { "power": "15", "sculk_sensor_phase": "cooldown", @@ -248367,7 +266170,7 @@ } }, { - "id": 24785, + "id": 27258, "properties": { "power": "15", "sculk_sensor_phase": "cooldown", @@ -248397,7 +266200,7 @@ }, "states": [ { - "id": 25301, + "id": 27774, "properties": { "can_summon": "true", "shrieking": "true", @@ -248405,7 +266208,7 @@ } }, { - "id": 25302, + "id": 27775, "properties": { "can_summon": "true", "shrieking": "true", @@ -248413,7 +266216,7 @@ } }, { - "id": 25303, + "id": 27776, "properties": { "can_summon": "true", "shrieking": "false", @@ -248421,7 +266224,7 @@ } }, { - "id": 25304, + "id": 27777, "properties": { "can_summon": "true", "shrieking": "false", @@ -248429,7 +266232,7 @@ } }, { - "id": 25305, + "id": 27778, "properties": { "can_summon": "false", "shrieking": "true", @@ -248437,7 +266240,7 @@ } }, { - "id": 25306, + "id": 27779, "properties": { "can_summon": "false", "shrieking": "true", @@ -248445,7 +266248,7 @@ } }, { - "id": 25307, + "id": 27780, "properties": { "can_summon": "false", "shrieking": "false", @@ -248454,7 +266257,7 @@ }, { "default": true, - "id": 25308, + "id": 27781, "properties": { "can_summon": "false", "shrieking": "false", @@ -248500,7 +266303,7 @@ }, "states": [ { - "id": 25171, + "id": 27644, "properties": { "down": "true", "east": "true", @@ -248512,7 +266315,7 @@ } }, { - "id": 25172, + "id": 27645, "properties": { "down": "true", "east": "true", @@ -248524,7 +266327,7 @@ } }, { - "id": 25173, + "id": 27646, "properties": { "down": "true", "east": "true", @@ -248536,7 +266339,7 @@ } }, { - "id": 25174, + "id": 27647, "properties": { "down": "true", "east": "true", @@ -248548,7 +266351,7 @@ } }, { - "id": 25175, + "id": 27648, "properties": { "down": "true", "east": "true", @@ -248560,7 +266363,7 @@ } }, { - "id": 25176, + "id": 27649, "properties": { "down": "true", "east": "true", @@ -248572,7 +266375,7 @@ } }, { - "id": 25177, + "id": 27650, "properties": { "down": "true", "east": "true", @@ -248584,7 +266387,7 @@ } }, { - "id": 25178, + "id": 27651, "properties": { "down": "true", "east": "true", @@ -248596,7 +266399,7 @@ } }, { - "id": 25179, + "id": 27652, "properties": { "down": "true", "east": "true", @@ -248608,7 +266411,7 @@ } }, { - "id": 25180, + "id": 27653, "properties": { "down": "true", "east": "true", @@ -248620,7 +266423,7 @@ } }, { - "id": 25181, + "id": 27654, "properties": { "down": "true", "east": "true", @@ -248632,7 +266435,7 @@ } }, { - "id": 25182, + "id": 27655, "properties": { "down": "true", "east": "true", @@ -248644,7 +266447,7 @@ } }, { - "id": 25183, + "id": 27656, "properties": { "down": "true", "east": "true", @@ -248656,7 +266459,7 @@ } }, { - "id": 25184, + "id": 27657, "properties": { "down": "true", "east": "true", @@ -248668,7 +266471,7 @@ } }, { - "id": 25185, + "id": 27658, "properties": { "down": "true", "east": "true", @@ -248680,7 +266483,7 @@ } }, { - "id": 25186, + "id": 27659, "properties": { "down": "true", "east": "true", @@ -248692,7 +266495,7 @@ } }, { - "id": 25187, + "id": 27660, "properties": { "down": "true", "east": "true", @@ -248704,7 +266507,7 @@ } }, { - "id": 25188, + "id": 27661, "properties": { "down": "true", "east": "true", @@ -248716,7 +266519,7 @@ } }, { - "id": 25189, + "id": 27662, "properties": { "down": "true", "east": "true", @@ -248728,7 +266531,7 @@ } }, { - "id": 25190, + "id": 27663, "properties": { "down": "true", "east": "true", @@ -248740,7 +266543,7 @@ } }, { - "id": 25191, + "id": 27664, "properties": { "down": "true", "east": "true", @@ -248752,7 +266555,7 @@ } }, { - "id": 25192, + "id": 27665, "properties": { "down": "true", "east": "true", @@ -248764,7 +266567,7 @@ } }, { - "id": 25193, + "id": 27666, "properties": { "down": "true", "east": "true", @@ -248776,7 +266579,7 @@ } }, { - "id": 25194, + "id": 27667, "properties": { "down": "true", "east": "true", @@ -248788,7 +266591,7 @@ } }, { - "id": 25195, + "id": 27668, "properties": { "down": "true", "east": "true", @@ -248800,7 +266603,7 @@ } }, { - "id": 25196, + "id": 27669, "properties": { "down": "true", "east": "true", @@ -248812,7 +266615,7 @@ } }, { - "id": 25197, + "id": 27670, "properties": { "down": "true", "east": "true", @@ -248824,7 +266627,7 @@ } }, { - "id": 25198, + "id": 27671, "properties": { "down": "true", "east": "true", @@ -248836,7 +266639,7 @@ } }, { - "id": 25199, + "id": 27672, "properties": { "down": "true", "east": "true", @@ -248848,7 +266651,7 @@ } }, { - "id": 25200, + "id": 27673, "properties": { "down": "true", "east": "true", @@ -248860,7 +266663,7 @@ } }, { - "id": 25201, + "id": 27674, "properties": { "down": "true", "east": "true", @@ -248872,7 +266675,7 @@ } }, { - "id": 25202, + "id": 27675, "properties": { "down": "true", "east": "true", @@ -248884,7 +266687,7 @@ } }, { - "id": 25203, + "id": 27676, "properties": { "down": "true", "east": "false", @@ -248896,7 +266699,7 @@ } }, { - "id": 25204, + "id": 27677, "properties": { "down": "true", "east": "false", @@ -248908,7 +266711,7 @@ } }, { - "id": 25205, + "id": 27678, "properties": { "down": "true", "east": "false", @@ -248920,7 +266723,7 @@ } }, { - "id": 25206, + "id": 27679, "properties": { "down": "true", "east": "false", @@ -248932,7 +266735,7 @@ } }, { - "id": 25207, + "id": 27680, "properties": { "down": "true", "east": "false", @@ -248944,7 +266747,7 @@ } }, { - "id": 25208, + "id": 27681, "properties": { "down": "true", "east": "false", @@ -248956,7 +266759,7 @@ } }, { - "id": 25209, + "id": 27682, "properties": { "down": "true", "east": "false", @@ -248968,7 +266771,7 @@ } }, { - "id": 25210, + "id": 27683, "properties": { "down": "true", "east": "false", @@ -248980,7 +266783,7 @@ } }, { - "id": 25211, + "id": 27684, "properties": { "down": "true", "east": "false", @@ -248992,7 +266795,7 @@ } }, { - "id": 25212, + "id": 27685, "properties": { "down": "true", "east": "false", @@ -249004,7 +266807,7 @@ } }, { - "id": 25213, + "id": 27686, "properties": { "down": "true", "east": "false", @@ -249016,7 +266819,7 @@ } }, { - "id": 25214, + "id": 27687, "properties": { "down": "true", "east": "false", @@ -249028,7 +266831,7 @@ } }, { - "id": 25215, + "id": 27688, "properties": { "down": "true", "east": "false", @@ -249040,7 +266843,7 @@ } }, { - "id": 25216, + "id": 27689, "properties": { "down": "true", "east": "false", @@ -249052,7 +266855,7 @@ } }, { - "id": 25217, + "id": 27690, "properties": { "down": "true", "east": "false", @@ -249064,7 +266867,7 @@ } }, { - "id": 25218, + "id": 27691, "properties": { "down": "true", "east": "false", @@ -249076,7 +266879,7 @@ } }, { - "id": 25219, + "id": 27692, "properties": { "down": "true", "east": "false", @@ -249088,7 +266891,7 @@ } }, { - "id": 25220, + "id": 27693, "properties": { "down": "true", "east": "false", @@ -249100,7 +266903,7 @@ } }, { - "id": 25221, + "id": 27694, "properties": { "down": "true", "east": "false", @@ -249112,7 +266915,7 @@ } }, { - "id": 25222, + "id": 27695, "properties": { "down": "true", "east": "false", @@ -249124,7 +266927,7 @@ } }, { - "id": 25223, + "id": 27696, "properties": { "down": "true", "east": "false", @@ -249136,7 +266939,7 @@ } }, { - "id": 25224, + "id": 27697, "properties": { "down": "true", "east": "false", @@ -249148,7 +266951,7 @@ } }, { - "id": 25225, + "id": 27698, "properties": { "down": "true", "east": "false", @@ -249160,7 +266963,7 @@ } }, { - "id": 25226, + "id": 27699, "properties": { "down": "true", "east": "false", @@ -249172,7 +266975,7 @@ } }, { - "id": 25227, + "id": 27700, "properties": { "down": "true", "east": "false", @@ -249184,7 +266987,7 @@ } }, { - "id": 25228, + "id": 27701, "properties": { "down": "true", "east": "false", @@ -249196,7 +266999,7 @@ } }, { - "id": 25229, + "id": 27702, "properties": { "down": "true", "east": "false", @@ -249208,7 +267011,7 @@ } }, { - "id": 25230, + "id": 27703, "properties": { "down": "true", "east": "false", @@ -249220,7 +267023,7 @@ } }, { - "id": 25231, + "id": 27704, "properties": { "down": "true", "east": "false", @@ -249232,7 +267035,7 @@ } }, { - "id": 25232, + "id": 27705, "properties": { "down": "true", "east": "false", @@ -249244,7 +267047,7 @@ } }, { - "id": 25233, + "id": 27706, "properties": { "down": "true", "east": "false", @@ -249256,7 +267059,7 @@ } }, { - "id": 25234, + "id": 27707, "properties": { "down": "true", "east": "false", @@ -249268,7 +267071,7 @@ } }, { - "id": 25235, + "id": 27708, "properties": { "down": "false", "east": "true", @@ -249280,7 +267083,7 @@ } }, { - "id": 25236, + "id": 27709, "properties": { "down": "false", "east": "true", @@ -249292,7 +267095,7 @@ } }, { - "id": 25237, + "id": 27710, "properties": { "down": "false", "east": "true", @@ -249304,7 +267107,7 @@ } }, { - "id": 25238, + "id": 27711, "properties": { "down": "false", "east": "true", @@ -249316,7 +267119,7 @@ } }, { - "id": 25239, + "id": 27712, "properties": { "down": "false", "east": "true", @@ -249328,7 +267131,7 @@ } }, { - "id": 25240, + "id": 27713, "properties": { "down": "false", "east": "true", @@ -249340,7 +267143,7 @@ } }, { - "id": 25241, + "id": 27714, "properties": { "down": "false", "east": "true", @@ -249352,7 +267155,7 @@ } }, { - "id": 25242, + "id": 27715, "properties": { "down": "false", "east": "true", @@ -249364,7 +267167,7 @@ } }, { - "id": 25243, + "id": 27716, "properties": { "down": "false", "east": "true", @@ -249376,7 +267179,7 @@ } }, { - "id": 25244, + "id": 27717, "properties": { "down": "false", "east": "true", @@ -249388,7 +267191,7 @@ } }, { - "id": 25245, + "id": 27718, "properties": { "down": "false", "east": "true", @@ -249400,7 +267203,7 @@ } }, { - "id": 25246, + "id": 27719, "properties": { "down": "false", "east": "true", @@ -249412,7 +267215,7 @@ } }, { - "id": 25247, + "id": 27720, "properties": { "down": "false", "east": "true", @@ -249424,7 +267227,7 @@ } }, { - "id": 25248, + "id": 27721, "properties": { "down": "false", "east": "true", @@ -249436,7 +267239,7 @@ } }, { - "id": 25249, + "id": 27722, "properties": { "down": "false", "east": "true", @@ -249448,7 +267251,7 @@ } }, { - "id": 25250, + "id": 27723, "properties": { "down": "false", "east": "true", @@ -249460,7 +267263,7 @@ } }, { - "id": 25251, + "id": 27724, "properties": { "down": "false", "east": "true", @@ -249472,7 +267275,7 @@ } }, { - "id": 25252, + "id": 27725, "properties": { "down": "false", "east": "true", @@ -249484,7 +267287,7 @@ } }, { - "id": 25253, + "id": 27726, "properties": { "down": "false", "east": "true", @@ -249496,7 +267299,7 @@ } }, { - "id": 25254, + "id": 27727, "properties": { "down": "false", "east": "true", @@ -249508,7 +267311,7 @@ } }, { - "id": 25255, + "id": 27728, "properties": { "down": "false", "east": "true", @@ -249520,7 +267323,7 @@ } }, { - "id": 25256, + "id": 27729, "properties": { "down": "false", "east": "true", @@ -249532,7 +267335,7 @@ } }, { - "id": 25257, + "id": 27730, "properties": { "down": "false", "east": "true", @@ -249544,7 +267347,7 @@ } }, { - "id": 25258, + "id": 27731, "properties": { "down": "false", "east": "true", @@ -249556,7 +267359,7 @@ } }, { - "id": 25259, + "id": 27732, "properties": { "down": "false", "east": "true", @@ -249568,7 +267371,7 @@ } }, { - "id": 25260, + "id": 27733, "properties": { "down": "false", "east": "true", @@ -249580,7 +267383,7 @@ } }, { - "id": 25261, + "id": 27734, "properties": { "down": "false", "east": "true", @@ -249592,7 +267395,7 @@ } }, { - "id": 25262, + "id": 27735, "properties": { "down": "false", "east": "true", @@ -249604,7 +267407,7 @@ } }, { - "id": 25263, + "id": 27736, "properties": { "down": "false", "east": "true", @@ -249616,7 +267419,7 @@ } }, { - "id": 25264, + "id": 27737, "properties": { "down": "false", "east": "true", @@ -249628,7 +267431,7 @@ } }, { - "id": 25265, + "id": 27738, "properties": { "down": "false", "east": "true", @@ -249640,7 +267443,7 @@ } }, { - "id": 25266, + "id": 27739, "properties": { "down": "false", "east": "true", @@ -249652,7 +267455,7 @@ } }, { - "id": 25267, + "id": 27740, "properties": { "down": "false", "east": "false", @@ -249664,7 +267467,7 @@ } }, { - "id": 25268, + "id": 27741, "properties": { "down": "false", "east": "false", @@ -249676,7 +267479,7 @@ } }, { - "id": 25269, + "id": 27742, "properties": { "down": "false", "east": "false", @@ -249688,7 +267491,7 @@ } }, { - "id": 25270, + "id": 27743, "properties": { "down": "false", "east": "false", @@ -249700,7 +267503,7 @@ } }, { - "id": 25271, + "id": 27744, "properties": { "down": "false", "east": "false", @@ -249712,7 +267515,7 @@ } }, { - "id": 25272, + "id": 27745, "properties": { "down": "false", "east": "false", @@ -249724,7 +267527,7 @@ } }, { - "id": 25273, + "id": 27746, "properties": { "down": "false", "east": "false", @@ -249736,7 +267539,7 @@ } }, { - "id": 25274, + "id": 27747, "properties": { "down": "false", "east": "false", @@ -249748,7 +267551,7 @@ } }, { - "id": 25275, + "id": 27748, "properties": { "down": "false", "east": "false", @@ -249760,7 +267563,7 @@ } }, { - "id": 25276, + "id": 27749, "properties": { "down": "false", "east": "false", @@ -249772,7 +267575,7 @@ } }, { - "id": 25277, + "id": 27750, "properties": { "down": "false", "east": "false", @@ -249784,7 +267587,7 @@ } }, { - "id": 25278, + "id": 27751, "properties": { "down": "false", "east": "false", @@ -249796,7 +267599,7 @@ } }, { - "id": 25279, + "id": 27752, "properties": { "down": "false", "east": "false", @@ -249808,7 +267611,7 @@ } }, { - "id": 25280, + "id": 27753, "properties": { "down": "false", "east": "false", @@ -249820,7 +267623,7 @@ } }, { - "id": 25281, + "id": 27754, "properties": { "down": "false", "east": "false", @@ -249832,7 +267635,7 @@ } }, { - "id": 25282, + "id": 27755, "properties": { "down": "false", "east": "false", @@ -249844,7 +267647,7 @@ } }, { - "id": 25283, + "id": 27756, "properties": { "down": "false", "east": "false", @@ -249856,7 +267659,7 @@ } }, { - "id": 25284, + "id": 27757, "properties": { "down": "false", "east": "false", @@ -249868,7 +267671,7 @@ } }, { - "id": 25285, + "id": 27758, "properties": { "down": "false", "east": "false", @@ -249880,7 +267683,7 @@ } }, { - "id": 25286, + "id": 27759, "properties": { "down": "false", "east": "false", @@ -249892,7 +267695,7 @@ } }, { - "id": 25287, + "id": 27760, "properties": { "down": "false", "east": "false", @@ -249904,7 +267707,7 @@ } }, { - "id": 25288, + "id": 27761, "properties": { "down": "false", "east": "false", @@ -249916,7 +267719,7 @@ } }, { - "id": 25289, + "id": 27762, "properties": { "down": "false", "east": "false", @@ -249928,7 +267731,7 @@ } }, { - "id": 25290, + "id": 27763, "properties": { "down": "false", "east": "false", @@ -249940,7 +267743,7 @@ } }, { - "id": 25291, + "id": 27764, "properties": { "down": "false", "east": "false", @@ -249952,7 +267755,7 @@ } }, { - "id": 25292, + "id": 27765, "properties": { "down": "false", "east": "false", @@ -249964,7 +267767,7 @@ } }, { - "id": 25293, + "id": 27766, "properties": { "down": "false", "east": "false", @@ -249976,7 +267779,7 @@ } }, { - "id": 25294, + "id": 27767, "properties": { "down": "false", "east": "false", @@ -249988,7 +267791,7 @@ } }, { - "id": 25295, + "id": 27768, "properties": { "down": "false", "east": "false", @@ -250000,7 +267803,7 @@ } }, { - "id": 25296, + "id": 27769, "properties": { "down": "false", "east": "false", @@ -250012,7 +267815,7 @@ } }, { - "id": 25297, + "id": 27770, "properties": { "down": "false", "east": "false", @@ -250025,7 +267828,7 @@ }, { "default": true, - "id": 25298, + "id": 27771, "properties": { "down": "false", "east": "false", @@ -250710,7 +268513,7 @@ }, "states": [ { - "id": 27903, + "id": 30396, "properties": { "facing": "north", "half": "upper", @@ -250718,7 +268521,7 @@ } }, { - "id": 27904, + "id": 30397, "properties": { "facing": "north", "half": "upper", @@ -250726,7 +268529,7 @@ } }, { - "id": 27905, + "id": 30398, "properties": { "facing": "north", "half": "lower", @@ -250735,7 +268538,7 @@ }, { "default": true, - "id": 27906, + "id": 30399, "properties": { "facing": "north", "half": "lower", @@ -250743,7 +268546,7 @@ } }, { - "id": 27907, + "id": 30400, "properties": { "facing": "south", "half": "upper", @@ -250751,7 +268554,7 @@ } }, { - "id": 27908, + "id": 30401, "properties": { "facing": "south", "half": "upper", @@ -250759,7 +268562,7 @@ } }, { - "id": 27909, + "id": 30402, "properties": { "facing": "south", "half": "lower", @@ -250767,7 +268570,7 @@ } }, { - "id": 27910, + "id": 30403, "properties": { "facing": "south", "half": "lower", @@ -250775,7 +268578,7 @@ } }, { - "id": 27911, + "id": 30404, "properties": { "facing": "west", "half": "upper", @@ -250783,7 +268586,7 @@ } }, { - "id": 27912, + "id": 30405, "properties": { "facing": "west", "half": "upper", @@ -250791,7 +268594,7 @@ } }, { - "id": 27913, + "id": 30406, "properties": { "facing": "west", "half": "lower", @@ -250799,7 +268602,7 @@ } }, { - "id": 27914, + "id": 30407, "properties": { "facing": "west", "half": "lower", @@ -250807,7 +268610,7 @@ } }, { - "id": 27915, + "id": 30408, "properties": { "facing": "east", "half": "upper", @@ -250815,7 +268618,7 @@ } }, { - "id": 27916, + "id": 30409, "properties": { "facing": "east", "half": "upper", @@ -250823,7 +268626,7 @@ } }, { - "id": 27917, + "id": 30410, "properties": { "facing": "east", "half": "lower", @@ -250831,7 +268634,7 @@ } }, { - "id": 27918, + "id": 30411, "properties": { "facing": "east", "half": "lower", @@ -250937,7 +268740,7 @@ "states": [ { "default": true, - "id": 29576 + "id": 32069 } ] }, @@ -254106,7 +271909,7 @@ "states": [ { "default": true, - "id": 27810 + "id": 30303 } ] }, @@ -265742,6 +283545,9059 @@ } ] }, + "minecraft:sulfur": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24687 + } + ] + }, + "minecraft:sulfur_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25515, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 25516, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 25517, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25518, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 25519, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 25520, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sulfur_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:sulfur_bricks" + }, + "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": 25521, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25522, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25523, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25524, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25525, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25526, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25527, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25528, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25529, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25530, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25531, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25532, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25533, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25534, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25535, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25536, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25537, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25538, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25539, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25540, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25541, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25542, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25543, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25544, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25545, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25546, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25547, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25548, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25549, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25550, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25551, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25552, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25553, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25554, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25555, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25556, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25557, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25558, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25559, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25560, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25561, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25562, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25563, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25564, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25565, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25566, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25567, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25568, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25569, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25570, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25571, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25572, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25573, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25574, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25575, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25576, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25577, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25578, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25579, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25580, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25581, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25582, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25583, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25584, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25585, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25586, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25587, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25588, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25589, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25590, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25591, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25592, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25593, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25594, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25595, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25596, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25597, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25598, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25599, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25600, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sulfur_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 25601, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25602, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25603, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 25604, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25605, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25606, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25607, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25608, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25609, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25610, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25611, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25612, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25613, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25614, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25615, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25616, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25617, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25618, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25619, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25620, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25621, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25622, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25623, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25624, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25625, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25626, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25627, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25628, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25629, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25630, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25631, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25632, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25633, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25634, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25635, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25636, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25637, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25638, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25639, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25640, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25641, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25642, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25643, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25644, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25645, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25646, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25647, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25648, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25649, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25650, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25651, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25652, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25653, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25654, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25655, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25656, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25657, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25658, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25659, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25660, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25661, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25662, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25663, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25664, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25665, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25666, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25667, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25668, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25669, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25670, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25671, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25672, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25673, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25674, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25675, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25676, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25677, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25678, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25679, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25680, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25681, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25682, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25683, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25684, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25685, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25686, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25687, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25688, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25689, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25690, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25691, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25692, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25693, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25694, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25695, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25696, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25697, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25698, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25699, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25700, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25701, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25702, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25703, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25704, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25705, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25706, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25707, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25708, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25709, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25710, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25711, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25712, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25713, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25714, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25715, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25716, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25717, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25718, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25719, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25720, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25721, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25722, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25723, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25724, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25725, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25726, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25727, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25728, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25729, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25730, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25731, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25732, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25733, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25734, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25735, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25736, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25737, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25738, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25739, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25740, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25741, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25742, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25743, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25744, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25745, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25746, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25747, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25748, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25749, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25750, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25751, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25752, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25753, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25754, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25755, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25756, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25757, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25758, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25759, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25760, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25761, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25762, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25763, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25764, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25765, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25766, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25767, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25768, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25769, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25770, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25771, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25772, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25773, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25774, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25775, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25776, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25777, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25778, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25779, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25780, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25781, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25782, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25783, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25784, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25785, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25786, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25787, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25788, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25789, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25790, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25791, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25792, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25793, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25794, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25795, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25796, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25797, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25798, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25799, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25800, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25801, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25802, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25803, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25804, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25805, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25806, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25807, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25808, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25809, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25810, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25811, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25812, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25813, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25814, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25815, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25816, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25817, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25818, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25819, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25820, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25821, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25822, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25823, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25824, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25825, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25826, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25827, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25828, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25829, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25830, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25831, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25832, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25833, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25834, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25835, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25836, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25837, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25838, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25839, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25840, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25841, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25842, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25843, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25844, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25845, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25846, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25847, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25848, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25849, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25850, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25851, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25852, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25853, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25854, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25855, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25856, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25857, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25858, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25859, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25860, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25861, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25862, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25863, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25864, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25865, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25866, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25867, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25868, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25869, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25870, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25871, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25872, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25873, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25874, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25875, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25876, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25877, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25878, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25879, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25880, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25881, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25882, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25883, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25884, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25885, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25886, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25887, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25888, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25889, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25890, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25891, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25892, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25893, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25894, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25895, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25896, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25897, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25898, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25899, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25900, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25901, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25902, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25903, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25904, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25905, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25906, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25907, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25908, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25909, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25910, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25911, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25912, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25913, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25914, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25915, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25916, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25917, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25918, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25919, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25920, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25921, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25922, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25923, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25924, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:sulfur_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25514 + } + ] + }, + "minecraft:sulfur_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24693, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 24694, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 24695, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24696, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 24697, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 24698, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sulfur_spike": { + "definition": { + "type": "minecraft:sulfur_spike", + "block_to_grow_on": { + "Name": "minecraft:sulfur" + }, + "properties": {} + }, + "properties": { + "thickness": [ + "tip_merge", + "tip", + "frustum", + "middle", + "base" + ], + "vertical_direction": [ + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30229, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 30230, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 30231, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 30232, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 30233, + "properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30234, + "properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 30235, + "properties": { + "thickness": "tip", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 30236, + "properties": { + "thickness": "tip", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 30237, + "properties": { + "thickness": "frustum", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 30238, + "properties": { + "thickness": "frustum", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 30239, + "properties": { + "thickness": "frustum", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 30240, + "properties": { + "thickness": "frustum", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 30241, + "properties": { + "thickness": "middle", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 30242, + "properties": { + "thickness": "middle", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 30243, + "properties": { + "thickness": "middle", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 30244, + "properties": { + "thickness": "middle", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 30245, + "properties": { + "thickness": "base", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 30246, + "properties": { + "thickness": "base", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 30247, + "properties": { + "thickness": "base", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 30248, + "properties": { + "thickness": "base", + "vertical_direction": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sulfur_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:sulfur" + }, + "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": 24699, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24700, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24701, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24702, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24703, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24704, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24705, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24706, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24707, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24708, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24709, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24710, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24711, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24712, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24713, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24714, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24715, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24716, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24717, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24718, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24719, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24720, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24721, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24722, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24723, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24724, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24725, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24726, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24727, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24728, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24729, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24730, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24731, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24732, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24733, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24734, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24735, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24736, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24737, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24738, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24739, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24740, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24741, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24742, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24743, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24744, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24745, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24746, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24747, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24748, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24749, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24750, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24751, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24752, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24753, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24754, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24755, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24756, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24757, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24758, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24759, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24760, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24761, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24762, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24763, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24764, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24765, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24766, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24767, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24768, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24769, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24770, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24771, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24772, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24773, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24774, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24775, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24776, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24777, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24778, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sulfur_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 24779, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24780, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24781, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 24782, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24783, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24784, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24785, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24786, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24787, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24788, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24789, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24790, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24791, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24792, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24793, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24794, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24795, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24796, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24797, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24798, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24799, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24800, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24801, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24802, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24803, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24804, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24805, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24806, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24807, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24808, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24809, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24810, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24811, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24812, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24813, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24814, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24815, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24816, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24817, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24818, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24819, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24820, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24821, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24822, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24823, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24824, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24825, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24826, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24827, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24828, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24829, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24830, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24831, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24832, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24833, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24834, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24835, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24836, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24837, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24838, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24839, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24840, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24841, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24842, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24843, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24844, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24845, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24846, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24847, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24848, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24849, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24850, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24851, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24852, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24853, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24854, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24855, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24856, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24857, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24858, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24859, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24860, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24861, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24862, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24863, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24864, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24865, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24866, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24867, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24868, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24869, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24870, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24871, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24872, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24873, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24874, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24875, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24876, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24877, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24878, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24879, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24880, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24881, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24882, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24883, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24884, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24885, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24886, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24887, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24888, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24889, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24890, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24891, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24892, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24893, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24894, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24895, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24896, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24897, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24898, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24899, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24900, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24901, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24902, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24903, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24904, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24905, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24906, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24907, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24908, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24909, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24910, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24911, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24912, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24913, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24914, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24915, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24916, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24917, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24918, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24919, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24920, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24921, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24922, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24923, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24924, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24925, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24926, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24927, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24928, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24929, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24930, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24931, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24932, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24933, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24934, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24935, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24936, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24937, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24938, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24939, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24940, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24941, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24942, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24943, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24944, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24945, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24946, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24947, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24948, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24949, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24950, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24951, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24952, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24953, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24954, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24955, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24956, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24957, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24958, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24959, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24960, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24961, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24962, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24963, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24964, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24965, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24966, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24967, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24968, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24969, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24970, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24971, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24972, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24973, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24974, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24975, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24976, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24977, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24978, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24979, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24980, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24981, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24982, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24983, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24984, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24985, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24986, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24987, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24988, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24989, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24990, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24991, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24992, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24993, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24994, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24995, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24996, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24997, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24998, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24999, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25000, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25001, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25002, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25003, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25004, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25005, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25006, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25007, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25008, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25009, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25010, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25011, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25012, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25013, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25014, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25015, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25016, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25017, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25018, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25019, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25020, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25021, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25022, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25023, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25024, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25025, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25026, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25027, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25028, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25029, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25030, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25031, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25032, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25033, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25034, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25035, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25036, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25037, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25038, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25039, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25040, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25041, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25042, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25043, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25044, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25045, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25046, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25047, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25048, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25049, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25050, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25051, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25052, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25053, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25054, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25055, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25056, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25057, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25058, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25059, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25060, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25061, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25062, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25063, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25064, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25065, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25066, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25067, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25068, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25069, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25070, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25071, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25072, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25073, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25074, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25075, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25076, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25077, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25078, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25079, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25080, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25081, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25082, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25083, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25084, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25085, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25086, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25087, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25088, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25089, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25090, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25091, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25092, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25093, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25094, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25095, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25096, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25097, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25098, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25099, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25100, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25101, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25102, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, "minecraft:sunflower": { "definition": { "type": "minecraft:tall_flower", @@ -266162,7 +293018,7 @@ "states": [ { "default": true, - "id": 24688 + "id": 27161 } ] }, @@ -266490,42 +293346,42 @@ }, "states": [ { - "id": 29657, + "id": 32150, "properties": { "ominous": "true", "trial_spawner_state": "inactive" } }, { - "id": 29658, + "id": 32151, "properties": { "ominous": "true", "trial_spawner_state": "waiting_for_players" } }, { - "id": 29659, + "id": 32152, "properties": { "ominous": "true", "trial_spawner_state": "active" } }, { - "id": 29660, + "id": 32153, "properties": { "ominous": "true", "trial_spawner_state": "waiting_for_reward_ejection" } }, { - "id": 29661, + "id": 32154, "properties": { "ominous": "true", "trial_spawner_state": "ejecting_reward" } }, { - "id": 29662, + "id": 32155, "properties": { "ominous": "true", "trial_spawner_state": "cooldown" @@ -266533,42 +293389,42 @@ }, { "default": true, - "id": 29663, + "id": 32156, "properties": { "ominous": "false", "trial_spawner_state": "inactive" } }, { - "id": 29664, + "id": 32157, "properties": { "ominous": "false", "trial_spawner_state": "waiting_for_players" } }, { - "id": 29665, + "id": 32158, "properties": { "ominous": "false", "trial_spawner_state": "active" } }, { - "id": 29666, + "id": 32159, "properties": { "ominous": "false", "trial_spawner_state": "waiting_for_reward_ejection" } }, { - "id": 29667, + "id": 32160, "properties": { "ominous": "false", "trial_spawner_state": "ejecting_reward" } }, { - "id": 29668, + "id": 32161, "properties": { "ominous": "false", "trial_spawner_state": "cooldown" @@ -277654,7 +304510,7 @@ }, "states": [ { - "id": 29669, + "id": 32162, "properties": { "facing": "north", "ominous": "true", @@ -277662,7 +304518,7 @@ } }, { - "id": 29670, + "id": 32163, "properties": { "facing": "north", "ominous": "true", @@ -277670,7 +304526,7 @@ } }, { - "id": 29671, + "id": 32164, "properties": { "facing": "north", "ominous": "true", @@ -277678,7 +304534,7 @@ } }, { - "id": 29672, + "id": 32165, "properties": { "facing": "north", "ominous": "true", @@ -277687,7 +304543,7 @@ }, { "default": true, - "id": 29673, + "id": 32166, "properties": { "facing": "north", "ominous": "false", @@ -277695,7 +304551,7 @@ } }, { - "id": 29674, + "id": 32167, "properties": { "facing": "north", "ominous": "false", @@ -277703,7 +304559,7 @@ } }, { - "id": 29675, + "id": 32168, "properties": { "facing": "north", "ominous": "false", @@ -277711,7 +304567,7 @@ } }, { - "id": 29676, + "id": 32169, "properties": { "facing": "north", "ominous": "false", @@ -277719,7 +304575,7 @@ } }, { - "id": 29677, + "id": 32170, "properties": { "facing": "south", "ominous": "true", @@ -277727,7 +304583,7 @@ } }, { - "id": 29678, + "id": 32171, "properties": { "facing": "south", "ominous": "true", @@ -277735,7 +304591,7 @@ } }, { - "id": 29679, + "id": 32172, "properties": { "facing": "south", "ominous": "true", @@ -277743,7 +304599,7 @@ } }, { - "id": 29680, + "id": 32173, "properties": { "facing": "south", "ominous": "true", @@ -277751,7 +304607,7 @@ } }, { - "id": 29681, + "id": 32174, "properties": { "facing": "south", "ominous": "false", @@ -277759,7 +304615,7 @@ } }, { - "id": 29682, + "id": 32175, "properties": { "facing": "south", "ominous": "false", @@ -277767,7 +304623,7 @@ } }, { - "id": 29683, + "id": 32176, "properties": { "facing": "south", "ominous": "false", @@ -277775,7 +304631,7 @@ } }, { - "id": 29684, + "id": 32177, "properties": { "facing": "south", "ominous": "false", @@ -277783,7 +304639,7 @@ } }, { - "id": 29685, + "id": 32178, "properties": { "facing": "west", "ominous": "true", @@ -277791,7 +304647,7 @@ } }, { - "id": 29686, + "id": 32179, "properties": { "facing": "west", "ominous": "true", @@ -277799,7 +304655,7 @@ } }, { - "id": 29687, + "id": 32180, "properties": { "facing": "west", "ominous": "true", @@ -277807,7 +304663,7 @@ } }, { - "id": 29688, + "id": 32181, "properties": { "facing": "west", "ominous": "true", @@ -277815,7 +304671,7 @@ } }, { - "id": 29689, + "id": 32182, "properties": { "facing": "west", "ominous": "false", @@ -277823,7 +304679,7 @@ } }, { - "id": 29690, + "id": 32183, "properties": { "facing": "west", "ominous": "false", @@ -277831,7 +304687,7 @@ } }, { - "id": 29691, + "id": 32184, "properties": { "facing": "west", "ominous": "false", @@ -277839,7 +304695,7 @@ } }, { - "id": 29692, + "id": 32185, "properties": { "facing": "west", "ominous": "false", @@ -277847,7 +304703,7 @@ } }, { - "id": 29693, + "id": 32186, "properties": { "facing": "east", "ominous": "true", @@ -277855,7 +304711,7 @@ } }, { - "id": 29694, + "id": 32187, "properties": { "facing": "east", "ominous": "true", @@ -277863,7 +304719,7 @@ } }, { - "id": 29695, + "id": 32188, "properties": { "facing": "east", "ominous": "true", @@ -277871,7 +304727,7 @@ } }, { - "id": 29696, + "id": 32189, "properties": { "facing": "east", "ominous": "true", @@ -277879,7 +304735,7 @@ } }, { - "id": 29697, + "id": 32190, "properties": { "facing": "east", "ominous": "false", @@ -277887,7 +304743,7 @@ } }, { - "id": 29698, + "id": 32191, "properties": { "facing": "east", "ominous": "false", @@ -277895,7 +304751,7 @@ } }, { - "id": 29699, + "id": 32192, "properties": { "facing": "east", "ominous": "false", @@ -277903,7 +304759,7 @@ } }, { - "id": 29700, + "id": 32193, "properties": { "facing": "east", "ominous": "false", @@ -277926,20 +304782,20 @@ }, "states": [ { - "id": 29585, + "id": 32078, "properties": { "axis": "x" } }, { "default": true, - "id": 29586, + "id": 32079, "properties": { "axis": "y" } }, { - "id": 29587, + "id": 32080, "properties": { "axis": "z" } @@ -283306,7 +310162,7 @@ "states": [ { "default": true, - "id": 25326 + "id": 27804 } ] }, @@ -283669,7 +310525,7 @@ "states": [ { "default": true, - "id": 25671 + "id": 27786 } ] }, @@ -283690,21 +310546,21 @@ }, "states": [ { - "id": 27079, + "id": 29552, "properties": { "lit": "true", "powered": "true" } }, { - "id": 27080, + "id": 29553, "properties": { "lit": "true", "powered": "false" } }, { - "id": 27081, + "id": 29554, "properties": { "lit": "false", "powered": "true" @@ -283712,7 +310568,7 @@ }, { "default": true, - "id": 27082, + "id": 29555, "properties": { "lit": "false", "powered": "false" @@ -283809,7 +310665,7 @@ }, "states": [ { - "id": 27191, + "id": 29664, "properties": { "type": "single", "facing": "north", @@ -283818,7 +310674,7 @@ }, { "default": true, - "id": 27192, + "id": 29665, "properties": { "type": "single", "facing": "north", @@ -283826,7 +310682,7 @@ } }, { - "id": 27193, + "id": 29666, "properties": { "type": "left", "facing": "north", @@ -283834,7 +310690,7 @@ } }, { - "id": 27194, + "id": 29667, "properties": { "type": "left", "facing": "north", @@ -283842,7 +310698,7 @@ } }, { - "id": 27195, + "id": 29668, "properties": { "type": "right", "facing": "north", @@ -283850,7 +310706,7 @@ } }, { - "id": 27196, + "id": 29669, "properties": { "type": "right", "facing": "north", @@ -283858,7 +310714,7 @@ } }, { - "id": 27197, + "id": 29670, "properties": { "type": "single", "facing": "south", @@ -283866,7 +310722,7 @@ } }, { - "id": 27198, + "id": 29671, "properties": { "type": "single", "facing": "south", @@ -283874,7 +310730,7 @@ } }, { - "id": 27199, + "id": 29672, "properties": { "type": "left", "facing": "south", @@ -283882,7 +310738,7 @@ } }, { - "id": 27200, + "id": 29673, "properties": { "type": "left", "facing": "south", @@ -283890,7 +310746,7 @@ } }, { - "id": 27201, + "id": 29674, "properties": { "type": "right", "facing": "south", @@ -283898,7 +310754,7 @@ } }, { - "id": 27202, + "id": 29675, "properties": { "type": "right", "facing": "south", @@ -283906,7 +310762,7 @@ } }, { - "id": 27203, + "id": 29676, "properties": { "type": "single", "facing": "west", @@ -283914,7 +310770,7 @@ } }, { - "id": 27204, + "id": 29677, "properties": { "type": "single", "facing": "west", @@ -283922,7 +310778,7 @@ } }, { - "id": 27205, + "id": 29678, "properties": { "type": "left", "facing": "west", @@ -283930,7 +310786,7 @@ } }, { - "id": 27206, + "id": 29679, "properties": { "type": "left", "facing": "west", @@ -283938,7 +310794,7 @@ } }, { - "id": 27207, + "id": 29680, "properties": { "type": "right", "facing": "west", @@ -283946,7 +310802,7 @@ } }, { - "id": 27208, + "id": 29681, "properties": { "type": "right", "facing": "west", @@ -283954,7 +310810,7 @@ } }, { - "id": 27209, + "id": 29682, "properties": { "type": "single", "facing": "east", @@ -283962,7 +310818,7 @@ } }, { - "id": 27210, + "id": 29683, "properties": { "type": "single", "facing": "east", @@ -283970,7 +310826,7 @@ } }, { - "id": 27211, + "id": 29684, "properties": { "type": "left", "facing": "east", @@ -283978,7 +310834,7 @@ } }, { - "id": 27212, + "id": 29685, "properties": { "type": "left", "facing": "east", @@ -283986,7 +310842,7 @@ } }, { - "id": 27213, + "id": 29686, "properties": { "type": "right", "facing": "east", @@ -283994,7 +310850,7 @@ } }, { - "id": 27214, + "id": 29687, "properties": { "type": "right", "facing": "east", @@ -284035,7 +310891,7 @@ }, "states": [ { - "id": 26279, + "id": 28752, "properties": { "facing": "north", "half": "upper", @@ -284045,7 +310901,7 @@ } }, { - "id": 26280, + "id": 28753, "properties": { "facing": "north", "half": "upper", @@ -284055,7 +310911,7 @@ } }, { - "id": 26281, + "id": 28754, "properties": { "facing": "north", "half": "upper", @@ -284065,7 +310921,7 @@ } }, { - "id": 26282, + "id": 28755, "properties": { "facing": "north", "half": "upper", @@ -284075,7 +310931,7 @@ } }, { - "id": 26283, + "id": 28756, "properties": { "facing": "north", "half": "upper", @@ -284085,7 +310941,7 @@ } }, { - "id": 26284, + "id": 28757, "properties": { "facing": "north", "half": "upper", @@ -284095,7 +310951,7 @@ } }, { - "id": 26285, + "id": 28758, "properties": { "facing": "north", "half": "upper", @@ -284105,7 +310961,7 @@ } }, { - "id": 26286, + "id": 28759, "properties": { "facing": "north", "half": "upper", @@ -284115,7 +310971,7 @@ } }, { - "id": 26287, + "id": 28760, "properties": { "facing": "north", "half": "lower", @@ -284125,7 +310981,7 @@ } }, { - "id": 26288, + "id": 28761, "properties": { "facing": "north", "half": "lower", @@ -284135,7 +310991,7 @@ } }, { - "id": 26289, + "id": 28762, "properties": { "facing": "north", "half": "lower", @@ -284146,7 +311002,7 @@ }, { "default": true, - "id": 26290, + "id": 28763, "properties": { "facing": "north", "half": "lower", @@ -284156,7 +311012,7 @@ } }, { - "id": 26291, + "id": 28764, "properties": { "facing": "north", "half": "lower", @@ -284166,7 +311022,7 @@ } }, { - "id": 26292, + "id": 28765, "properties": { "facing": "north", "half": "lower", @@ -284176,7 +311032,7 @@ } }, { - "id": 26293, + "id": 28766, "properties": { "facing": "north", "half": "lower", @@ -284186,7 +311042,7 @@ } }, { - "id": 26294, + "id": 28767, "properties": { "facing": "north", "half": "lower", @@ -284196,7 +311052,7 @@ } }, { - "id": 26295, + "id": 28768, "properties": { "facing": "south", "half": "upper", @@ -284206,7 +311062,7 @@ } }, { - "id": 26296, + "id": 28769, "properties": { "facing": "south", "half": "upper", @@ -284216,7 +311072,7 @@ } }, { - "id": 26297, + "id": 28770, "properties": { "facing": "south", "half": "upper", @@ -284226,7 +311082,7 @@ } }, { - "id": 26298, + "id": 28771, "properties": { "facing": "south", "half": "upper", @@ -284236,7 +311092,7 @@ } }, { - "id": 26299, + "id": 28772, "properties": { "facing": "south", "half": "upper", @@ -284246,7 +311102,7 @@ } }, { - "id": 26300, + "id": 28773, "properties": { "facing": "south", "half": "upper", @@ -284256,7 +311112,7 @@ } }, { - "id": 26301, + "id": 28774, "properties": { "facing": "south", "half": "upper", @@ -284266,7 +311122,7 @@ } }, { - "id": 26302, + "id": 28775, "properties": { "facing": "south", "half": "upper", @@ -284276,7 +311132,7 @@ } }, { - "id": 26303, + "id": 28776, "properties": { "facing": "south", "half": "lower", @@ -284286,7 +311142,7 @@ } }, { - "id": 26304, + "id": 28777, "properties": { "facing": "south", "half": "lower", @@ -284296,7 +311152,7 @@ } }, { - "id": 26305, + "id": 28778, "properties": { "facing": "south", "half": "lower", @@ -284306,7 +311162,7 @@ } }, { - "id": 26306, + "id": 28779, "properties": { "facing": "south", "half": "lower", @@ -284316,7 +311172,7 @@ } }, { - "id": 26307, + "id": 28780, "properties": { "facing": "south", "half": "lower", @@ -284326,7 +311182,7 @@ } }, { - "id": 26308, + "id": 28781, "properties": { "facing": "south", "half": "lower", @@ -284336,7 +311192,7 @@ } }, { - "id": 26309, + "id": 28782, "properties": { "facing": "south", "half": "lower", @@ -284346,7 +311202,7 @@ } }, { - "id": 26310, + "id": 28783, "properties": { "facing": "south", "half": "lower", @@ -284356,7 +311212,7 @@ } }, { - "id": 26311, + "id": 28784, "properties": { "facing": "west", "half": "upper", @@ -284366,7 +311222,7 @@ } }, { - "id": 26312, + "id": 28785, "properties": { "facing": "west", "half": "upper", @@ -284376,7 +311232,7 @@ } }, { - "id": 26313, + "id": 28786, "properties": { "facing": "west", "half": "upper", @@ -284386,7 +311242,7 @@ } }, { - "id": 26314, + "id": 28787, "properties": { "facing": "west", "half": "upper", @@ -284396,7 +311252,7 @@ } }, { - "id": 26315, + "id": 28788, "properties": { "facing": "west", "half": "upper", @@ -284406,7 +311262,7 @@ } }, { - "id": 26316, + "id": 28789, "properties": { "facing": "west", "half": "upper", @@ -284416,7 +311272,7 @@ } }, { - "id": 26317, + "id": 28790, "properties": { "facing": "west", "half": "upper", @@ -284426,7 +311282,7 @@ } }, { - "id": 26318, + "id": 28791, "properties": { "facing": "west", "half": "upper", @@ -284436,7 +311292,7 @@ } }, { - "id": 26319, + "id": 28792, "properties": { "facing": "west", "half": "lower", @@ -284446,7 +311302,7 @@ } }, { - "id": 26320, + "id": 28793, "properties": { "facing": "west", "half": "lower", @@ -284456,7 +311312,7 @@ } }, { - "id": 26321, + "id": 28794, "properties": { "facing": "west", "half": "lower", @@ -284466,7 +311322,7 @@ } }, { - "id": 26322, + "id": 28795, "properties": { "facing": "west", "half": "lower", @@ -284476,7 +311332,7 @@ } }, { - "id": 26323, + "id": 28796, "properties": { "facing": "west", "half": "lower", @@ -284486,7 +311342,7 @@ } }, { - "id": 26324, + "id": 28797, "properties": { "facing": "west", "half": "lower", @@ -284496,7 +311352,7 @@ } }, { - "id": 26325, + "id": 28798, "properties": { "facing": "west", "half": "lower", @@ -284506,7 +311362,7 @@ } }, { - "id": 26326, + "id": 28799, "properties": { "facing": "west", "half": "lower", @@ -284516,7 +311372,7 @@ } }, { - "id": 26327, + "id": 28800, "properties": { "facing": "east", "half": "upper", @@ -284526,7 +311382,7 @@ } }, { - "id": 26328, + "id": 28801, "properties": { "facing": "east", "half": "upper", @@ -284536,7 +311392,7 @@ } }, { - "id": 26329, + "id": 28802, "properties": { "facing": "east", "half": "upper", @@ -284546,7 +311402,7 @@ } }, { - "id": 26330, + "id": 28803, "properties": { "facing": "east", "half": "upper", @@ -284556,7 +311412,7 @@ } }, { - "id": 26331, + "id": 28804, "properties": { "facing": "east", "half": "upper", @@ -284566,7 +311422,7 @@ } }, { - "id": 26332, + "id": 28805, "properties": { "facing": "east", "half": "upper", @@ -284576,7 +311432,7 @@ } }, { - "id": 26333, + "id": 28806, "properties": { "facing": "east", "half": "upper", @@ -284586,7 +311442,7 @@ } }, { - "id": 26334, + "id": 28807, "properties": { "facing": "east", "half": "upper", @@ -284596,7 +311452,7 @@ } }, { - "id": 26335, + "id": 28808, "properties": { "facing": "east", "half": "lower", @@ -284606,7 +311462,7 @@ } }, { - "id": 26336, + "id": 28809, "properties": { "facing": "east", "half": "lower", @@ -284616,7 +311472,7 @@ } }, { - "id": 26337, + "id": 28810, "properties": { "facing": "east", "half": "lower", @@ -284626,7 +311482,7 @@ } }, { - "id": 26338, + "id": 28811, "properties": { "facing": "east", "half": "lower", @@ -284636,7 +311492,7 @@ } }, { - "id": 26339, + "id": 28812, "properties": { "facing": "east", "half": "lower", @@ -284646,7 +311502,7 @@ } }, { - "id": 26340, + "id": 28813, "properties": { "facing": "east", "half": "lower", @@ -284656,7 +311512,7 @@ } }, { - "id": 26341, + "id": 28814, "properties": { "facing": "east", "half": "lower", @@ -284666,7 +311522,7 @@ } }, { - "id": 26342, + "id": 28815, "properties": { "facing": "east", "half": "lower", @@ -284703,7 +311559,7 @@ }, "states": [ { - "id": 27415, + "id": 29888, "properties": { "copper_golem_pose": "standing", "facing": "north", @@ -284712,7 +311568,7 @@ }, { "default": true, - "id": 27416, + "id": 29889, "properties": { "copper_golem_pose": "standing", "facing": "north", @@ -284720,7 +311576,7 @@ } }, { - "id": 27417, + "id": 29890, "properties": { "copper_golem_pose": "standing", "facing": "south", @@ -284728,7 +311584,7 @@ } }, { - "id": 27418, + "id": 29891, "properties": { "copper_golem_pose": "standing", "facing": "south", @@ -284736,7 +311592,7 @@ } }, { - "id": 27419, + "id": 29892, "properties": { "copper_golem_pose": "standing", "facing": "west", @@ -284744,7 +311600,7 @@ } }, { - "id": 27420, + "id": 29893, "properties": { "copper_golem_pose": "standing", "facing": "west", @@ -284752,7 +311608,7 @@ } }, { - "id": 27421, + "id": 29894, "properties": { "copper_golem_pose": "standing", "facing": "east", @@ -284760,7 +311616,7 @@ } }, { - "id": 27422, + "id": 29895, "properties": { "copper_golem_pose": "standing", "facing": "east", @@ -284768,7 +311624,7 @@ } }, { - "id": 27423, + "id": 29896, "properties": { "copper_golem_pose": "sitting", "facing": "north", @@ -284776,7 +311632,7 @@ } }, { - "id": 27424, + "id": 29897, "properties": { "copper_golem_pose": "sitting", "facing": "north", @@ -284784,7 +311640,7 @@ } }, { - "id": 27425, + "id": 29898, "properties": { "copper_golem_pose": "sitting", "facing": "south", @@ -284792,7 +311648,7 @@ } }, { - "id": 27426, + "id": 29899, "properties": { "copper_golem_pose": "sitting", "facing": "south", @@ -284800,7 +311656,7 @@ } }, { - "id": 27427, + "id": 29900, "properties": { "copper_golem_pose": "sitting", "facing": "west", @@ -284808,7 +311664,7 @@ } }, { - "id": 27428, + "id": 29901, "properties": { "copper_golem_pose": "sitting", "facing": "west", @@ -284816,7 +311672,7 @@ } }, { - "id": 27429, + "id": 29902, "properties": { "copper_golem_pose": "sitting", "facing": "east", @@ -284824,7 +311680,7 @@ } }, { - "id": 27430, + "id": 29903, "properties": { "copper_golem_pose": "sitting", "facing": "east", @@ -284832,7 +311688,7 @@ } }, { - "id": 27431, + "id": 29904, "properties": { "copper_golem_pose": "running", "facing": "north", @@ -284840,7 +311696,7 @@ } }, { - "id": 27432, + "id": 29905, "properties": { "copper_golem_pose": "running", "facing": "north", @@ -284848,7 +311704,7 @@ } }, { - "id": 27433, + "id": 29906, "properties": { "copper_golem_pose": "running", "facing": "south", @@ -284856,7 +311712,7 @@ } }, { - "id": 27434, + "id": 29907, "properties": { "copper_golem_pose": "running", "facing": "south", @@ -284864,7 +311720,7 @@ } }, { - "id": 27435, + "id": 29908, "properties": { "copper_golem_pose": "running", "facing": "west", @@ -284872,7 +311728,7 @@ } }, { - "id": 27436, + "id": 29909, "properties": { "copper_golem_pose": "running", "facing": "west", @@ -284880,7 +311736,7 @@ } }, { - "id": 27437, + "id": 29910, "properties": { "copper_golem_pose": "running", "facing": "east", @@ -284888,7 +311744,7 @@ } }, { - "id": 27438, + "id": 29911, "properties": { "copper_golem_pose": "running", "facing": "east", @@ -284896,7 +311752,7 @@ } }, { - "id": 27439, + "id": 29912, "properties": { "copper_golem_pose": "star", "facing": "north", @@ -284904,7 +311760,7 @@ } }, { - "id": 27440, + "id": 29913, "properties": { "copper_golem_pose": "star", "facing": "north", @@ -284912,7 +311768,7 @@ } }, { - "id": 27441, + "id": 29914, "properties": { "copper_golem_pose": "star", "facing": "south", @@ -284920,7 +311776,7 @@ } }, { - "id": 27442, + "id": 29915, "properties": { "copper_golem_pose": "star", "facing": "south", @@ -284928,7 +311784,7 @@ } }, { - "id": 27443, + "id": 29916, "properties": { "copper_golem_pose": "star", "facing": "west", @@ -284936,7 +311792,7 @@ } }, { - "id": 27444, + "id": 29917, "properties": { "copper_golem_pose": "star", "facing": "west", @@ -284944,7 +311800,7 @@ } }, { - "id": 27445, + "id": 29918, "properties": { "copper_golem_pose": "star", "facing": "east", @@ -284952,7 +311808,7 @@ } }, { - "id": 27446, + "id": 29919, "properties": { "copper_golem_pose": "star", "facing": "east", @@ -284974,14 +311830,14 @@ }, "states": [ { - "id": 27055, + "id": 29528, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 27056, + "id": 29529, "properties": { "waterlogged": "false" } @@ -285067,7 +311923,7 @@ }, "states": [ { - "id": 26791, + "id": 29264, "properties": { "facing": "north", "half": "top", @@ -285077,7 +311933,7 @@ } }, { - "id": 26792, + "id": 29265, "properties": { "facing": "north", "half": "top", @@ -285087,7 +311943,7 @@ } }, { - "id": 26793, + "id": 29266, "properties": { "facing": "north", "half": "top", @@ -285097,7 +311953,7 @@ } }, { - "id": 26794, + "id": 29267, "properties": { "facing": "north", "half": "top", @@ -285107,7 +311963,7 @@ } }, { - "id": 26795, + "id": 29268, "properties": { "facing": "north", "half": "top", @@ -285117,7 +311973,7 @@ } }, { - "id": 26796, + "id": 29269, "properties": { "facing": "north", "half": "top", @@ -285127,7 +311983,7 @@ } }, { - "id": 26797, + "id": 29270, "properties": { "facing": "north", "half": "top", @@ -285137,7 +311993,7 @@ } }, { - "id": 26798, + "id": 29271, "properties": { "facing": "north", "half": "top", @@ -285147,7 +312003,7 @@ } }, { - "id": 26799, + "id": 29272, "properties": { "facing": "north", "half": "bottom", @@ -285157,7 +312013,7 @@ } }, { - "id": 26800, + "id": 29273, "properties": { "facing": "north", "half": "bottom", @@ -285167,7 +312023,7 @@ } }, { - "id": 26801, + "id": 29274, "properties": { "facing": "north", "half": "bottom", @@ -285177,7 +312033,7 @@ } }, { - "id": 26802, + "id": 29275, "properties": { "facing": "north", "half": "bottom", @@ -285187,7 +312043,7 @@ } }, { - "id": 26803, + "id": 29276, "properties": { "facing": "north", "half": "bottom", @@ -285197,7 +312053,7 @@ } }, { - "id": 26804, + "id": 29277, "properties": { "facing": "north", "half": "bottom", @@ -285207,7 +312063,7 @@ } }, { - "id": 26805, + "id": 29278, "properties": { "facing": "north", "half": "bottom", @@ -285218,7 +312074,7 @@ }, { "default": true, - "id": 26806, + "id": 29279, "properties": { "facing": "north", "half": "bottom", @@ -285228,7 +312084,7 @@ } }, { - "id": 26807, + "id": 29280, "properties": { "facing": "south", "half": "top", @@ -285238,7 +312094,7 @@ } }, { - "id": 26808, + "id": 29281, "properties": { "facing": "south", "half": "top", @@ -285248,7 +312104,7 @@ } }, { - "id": 26809, + "id": 29282, "properties": { "facing": "south", "half": "top", @@ -285258,7 +312114,7 @@ } }, { - "id": 26810, + "id": 29283, "properties": { "facing": "south", "half": "top", @@ -285268,7 +312124,7 @@ } }, { - "id": 26811, + "id": 29284, "properties": { "facing": "south", "half": "top", @@ -285278,7 +312134,7 @@ } }, { - "id": 26812, + "id": 29285, "properties": { "facing": "south", "half": "top", @@ -285288,7 +312144,7 @@ } }, { - "id": 26813, + "id": 29286, "properties": { "facing": "south", "half": "top", @@ -285298,7 +312154,7 @@ } }, { - "id": 26814, + "id": 29287, "properties": { "facing": "south", "half": "top", @@ -285308,7 +312164,7 @@ } }, { - "id": 26815, + "id": 29288, "properties": { "facing": "south", "half": "bottom", @@ -285318,7 +312174,7 @@ } }, { - "id": 26816, + "id": 29289, "properties": { "facing": "south", "half": "bottom", @@ -285328,7 +312184,7 @@ } }, { - "id": 26817, + "id": 29290, "properties": { "facing": "south", "half": "bottom", @@ -285338,7 +312194,7 @@ } }, { - "id": 26818, + "id": 29291, "properties": { "facing": "south", "half": "bottom", @@ -285348,7 +312204,7 @@ } }, { - "id": 26819, + "id": 29292, "properties": { "facing": "south", "half": "bottom", @@ -285358,7 +312214,7 @@ } }, { - "id": 26820, + "id": 29293, "properties": { "facing": "south", "half": "bottom", @@ -285368,7 +312224,7 @@ } }, { - "id": 26821, + "id": 29294, "properties": { "facing": "south", "half": "bottom", @@ -285378,7 +312234,7 @@ } }, { - "id": 26822, + "id": 29295, "properties": { "facing": "south", "half": "bottom", @@ -285388,7 +312244,7 @@ } }, { - "id": 26823, + "id": 29296, "properties": { "facing": "west", "half": "top", @@ -285398,7 +312254,7 @@ } }, { - "id": 26824, + "id": 29297, "properties": { "facing": "west", "half": "top", @@ -285408,7 +312264,7 @@ } }, { - "id": 26825, + "id": 29298, "properties": { "facing": "west", "half": "top", @@ -285418,7 +312274,7 @@ } }, { - "id": 26826, + "id": 29299, "properties": { "facing": "west", "half": "top", @@ -285428,7 +312284,7 @@ } }, { - "id": 26827, + "id": 29300, "properties": { "facing": "west", "half": "top", @@ -285438,7 +312294,7 @@ } }, { - "id": 26828, + "id": 29301, "properties": { "facing": "west", "half": "top", @@ -285448,7 +312304,7 @@ } }, { - "id": 26829, + "id": 29302, "properties": { "facing": "west", "half": "top", @@ -285458,7 +312314,7 @@ } }, { - "id": 26830, + "id": 29303, "properties": { "facing": "west", "half": "top", @@ -285468,7 +312324,7 @@ } }, { - "id": 26831, + "id": 29304, "properties": { "facing": "west", "half": "bottom", @@ -285478,7 +312334,7 @@ } }, { - "id": 26832, + "id": 29305, "properties": { "facing": "west", "half": "bottom", @@ -285488,7 +312344,7 @@ } }, { - "id": 26833, + "id": 29306, "properties": { "facing": "west", "half": "bottom", @@ -285498,7 +312354,7 @@ } }, { - "id": 26834, + "id": 29307, "properties": { "facing": "west", "half": "bottom", @@ -285508,7 +312364,7 @@ } }, { - "id": 26835, + "id": 29308, "properties": { "facing": "west", "half": "bottom", @@ -285518,7 +312374,7 @@ } }, { - "id": 26836, + "id": 29309, "properties": { "facing": "west", "half": "bottom", @@ -285528,7 +312384,7 @@ } }, { - "id": 26837, + "id": 29310, "properties": { "facing": "west", "half": "bottom", @@ -285538,7 +312394,7 @@ } }, { - "id": 26838, + "id": 29311, "properties": { "facing": "west", "half": "bottom", @@ -285548,7 +312404,7 @@ } }, { - "id": 26839, + "id": 29312, "properties": { "facing": "east", "half": "top", @@ -285558,7 +312414,7 @@ } }, { - "id": 26840, + "id": 29313, "properties": { "facing": "east", "half": "top", @@ -285568,7 +312424,7 @@ } }, { - "id": 26841, + "id": 29314, "properties": { "facing": "east", "half": "top", @@ -285578,7 +312434,7 @@ } }, { - "id": 26842, + "id": 29315, "properties": { "facing": "east", "half": "top", @@ -285588,7 +312444,7 @@ } }, { - "id": 26843, + "id": 29316, "properties": { "facing": "east", "half": "top", @@ -285598,7 +312454,7 @@ } }, { - "id": 26844, + "id": 29317, "properties": { "facing": "east", "half": "top", @@ -285608,7 +312464,7 @@ } }, { - "id": 26845, + "id": 29318, "properties": { "facing": "east", "half": "top", @@ -285618,7 +312474,7 @@ } }, { - "id": 26846, + "id": 29319, "properties": { "facing": "east", "half": "top", @@ -285628,7 +312484,7 @@ } }, { - "id": 26847, + "id": 29320, "properties": { "facing": "east", "half": "bottom", @@ -285638,7 +312494,7 @@ } }, { - "id": 26848, + "id": 29321, "properties": { "facing": "east", "half": "bottom", @@ -285648,7 +312504,7 @@ } }, { - "id": 26849, + "id": 29322, "properties": { "facing": "east", "half": "bottom", @@ -285658,7 +312514,7 @@ } }, { - "id": 26850, + "id": 29323, "properties": { "facing": "east", "half": "bottom", @@ -285668,7 +312524,7 @@ } }, { - "id": 26851, + "id": 29324, "properties": { "facing": "east", "half": "bottom", @@ -285678,7 +312534,7 @@ } }, { - "id": 26852, + "id": 29325, "properties": { "facing": "east", "half": "bottom", @@ -285688,7 +312544,7 @@ } }, { - "id": 26853, + "id": 29326, "properties": { "facing": "east", "half": "bottom", @@ -285698,7 +312554,7 @@ } }, { - "id": 26854, + "id": 29327, "properties": { "facing": "east", "half": "bottom", @@ -285717,7 +312573,7 @@ "states": [ { "default": true, - "id": 25678 + "id": 27796 } ] }, @@ -285739,21 +312595,21 @@ }, "states": [ { - "id": 26017, + "id": 28472, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 26018, + "id": 28473, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 26019, + "id": 28474, "properties": { "type": "bottom", "waterlogged": "true" @@ -285761,21 +312617,21 @@ }, { "default": true, - "id": 26020, + "id": 28475, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 26021, + "id": 28476, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 26022, + "id": 28477, "properties": { "type": "double", "waterlogged": "false" @@ -285816,7 +312672,7 @@ }, "states": [ { - "id": 25919, + "id": 28128, "properties": { "facing": "north", "half": "top", @@ -285825,7 +312681,7 @@ } }, { - "id": 25920, + "id": 28129, "properties": { "facing": "north", "half": "top", @@ -285834,7 +312690,7 @@ } }, { - "id": 25921, + "id": 28130, "properties": { "facing": "north", "half": "top", @@ -285843,7 +312699,7 @@ } }, { - "id": 25922, + "id": 28131, "properties": { "facing": "north", "half": "top", @@ -285852,7 +312708,7 @@ } }, { - "id": 25923, + "id": 28132, "properties": { "facing": "north", "half": "top", @@ -285861,7 +312717,7 @@ } }, { - "id": 25924, + "id": 28133, "properties": { "facing": "north", "half": "top", @@ -285870,7 +312726,7 @@ } }, { - "id": 25925, + "id": 28134, "properties": { "facing": "north", "half": "top", @@ -285879,7 +312735,7 @@ } }, { - "id": 25926, + "id": 28135, "properties": { "facing": "north", "half": "top", @@ -285888,7 +312744,7 @@ } }, { - "id": 25927, + "id": 28136, "properties": { "facing": "north", "half": "top", @@ -285897,7 +312753,7 @@ } }, { - "id": 25928, + "id": 28137, "properties": { "facing": "north", "half": "top", @@ -285906,7 +312762,7 @@ } }, { - "id": 25929, + "id": 28138, "properties": { "facing": "north", "half": "bottom", @@ -285916,7 +312772,7 @@ }, { "default": true, - "id": 25930, + "id": 28139, "properties": { "facing": "north", "half": "bottom", @@ -285925,7 +312781,7 @@ } }, { - "id": 25931, + "id": 28140, "properties": { "facing": "north", "half": "bottom", @@ -285934,7 +312790,7 @@ } }, { - "id": 25932, + "id": 28141, "properties": { "facing": "north", "half": "bottom", @@ -285943,7 +312799,7 @@ } }, { - "id": 25933, + "id": 28142, "properties": { "facing": "north", "half": "bottom", @@ -285952,7 +312808,7 @@ } }, { - "id": 25934, + "id": 28143, "properties": { "facing": "north", "half": "bottom", @@ -285961,7 +312817,7 @@ } }, { - "id": 25935, + "id": 28144, "properties": { "facing": "north", "half": "bottom", @@ -285970,7 +312826,7 @@ } }, { - "id": 25936, + "id": 28145, "properties": { "facing": "north", "half": "bottom", @@ -285979,7 +312835,7 @@ } }, { - "id": 25937, + "id": 28146, "properties": { "facing": "north", "half": "bottom", @@ -285988,7 +312844,7 @@ } }, { - "id": 25938, + "id": 28147, "properties": { "facing": "north", "half": "bottom", @@ -285997,7 +312853,7 @@ } }, { - "id": 25939, + "id": 28148, "properties": { "facing": "south", "half": "top", @@ -286006,7 +312862,7 @@ } }, { - "id": 25940, + "id": 28149, "properties": { "facing": "south", "half": "top", @@ -286015,7 +312871,7 @@ } }, { - "id": 25941, + "id": 28150, "properties": { "facing": "south", "half": "top", @@ -286024,7 +312880,7 @@ } }, { - "id": 25942, + "id": 28151, "properties": { "facing": "south", "half": "top", @@ -286033,7 +312889,7 @@ } }, { - "id": 25943, + "id": 28152, "properties": { "facing": "south", "half": "top", @@ -286042,7 +312898,7 @@ } }, { - "id": 25944, + "id": 28153, "properties": { "facing": "south", "half": "top", @@ -286051,7 +312907,7 @@ } }, { - "id": 25945, + "id": 28154, "properties": { "facing": "south", "half": "top", @@ -286060,7 +312916,7 @@ } }, { - "id": 25946, + "id": 28155, "properties": { "facing": "south", "half": "top", @@ -286069,7 +312925,7 @@ } }, { - "id": 25947, + "id": 28156, "properties": { "facing": "south", "half": "top", @@ -286078,7 +312934,7 @@ } }, { - "id": 25948, + "id": 28157, "properties": { "facing": "south", "half": "top", @@ -286087,7 +312943,7 @@ } }, { - "id": 25949, + "id": 28158, "properties": { "facing": "south", "half": "bottom", @@ -286096,7 +312952,7 @@ } }, { - "id": 25950, + "id": 28159, "properties": { "facing": "south", "half": "bottom", @@ -286105,7 +312961,7 @@ } }, { - "id": 25951, + "id": 28160, "properties": { "facing": "south", "half": "bottom", @@ -286114,7 +312970,7 @@ } }, { - "id": 25952, + "id": 28161, "properties": { "facing": "south", "half": "bottom", @@ -286123,7 +312979,7 @@ } }, { - "id": 25953, + "id": 28162, "properties": { "facing": "south", "half": "bottom", @@ -286132,7 +312988,7 @@ } }, { - "id": 25954, + "id": 28163, "properties": { "facing": "south", "half": "bottom", @@ -286141,7 +312997,7 @@ } }, { - "id": 25955, + "id": 28164, "properties": { "facing": "south", "half": "bottom", @@ -286150,7 +313006,7 @@ } }, { - "id": 25956, + "id": 28165, "properties": { "facing": "south", "half": "bottom", @@ -286159,7 +313015,7 @@ } }, { - "id": 25957, + "id": 28166, "properties": { "facing": "south", "half": "bottom", @@ -286168,7 +313024,7 @@ } }, { - "id": 25958, + "id": 28167, "properties": { "facing": "south", "half": "bottom", @@ -286177,7 +313033,7 @@ } }, { - "id": 25959, + "id": 28168, "properties": { "facing": "west", "half": "top", @@ -286186,7 +313042,7 @@ } }, { - "id": 25960, + "id": 28169, "properties": { "facing": "west", "half": "top", @@ -286195,7 +313051,7 @@ } }, { - "id": 25961, + "id": 28170, "properties": { "facing": "west", "half": "top", @@ -286204,7 +313060,7 @@ } }, { - "id": 25962, + "id": 28171, "properties": { "facing": "west", "half": "top", @@ -286213,7 +313069,7 @@ } }, { - "id": 25963, + "id": 28172, "properties": { "facing": "west", "half": "top", @@ -286222,7 +313078,7 @@ } }, { - "id": 25964, + "id": 28173, "properties": { "facing": "west", "half": "top", @@ -286231,7 +313087,7 @@ } }, { - "id": 25965, + "id": 28174, "properties": { "facing": "west", "half": "top", @@ -286240,7 +313096,7 @@ } }, { - "id": 25966, + "id": 28175, "properties": { "facing": "west", "half": "top", @@ -286249,7 +313105,7 @@ } }, { - "id": 25967, + "id": 28176, "properties": { "facing": "west", "half": "top", @@ -286258,7 +313114,7 @@ } }, { - "id": 25968, + "id": 28177, "properties": { "facing": "west", "half": "top", @@ -286267,7 +313123,7 @@ } }, { - "id": 25969, + "id": 28178, "properties": { "facing": "west", "half": "bottom", @@ -286276,7 +313132,7 @@ } }, { - "id": 25970, + "id": 28179, "properties": { "facing": "west", "half": "bottom", @@ -286285,7 +313141,7 @@ } }, { - "id": 25971, + "id": 28180, "properties": { "facing": "west", "half": "bottom", @@ -286294,7 +313150,7 @@ } }, { - "id": 25972, + "id": 28181, "properties": { "facing": "west", "half": "bottom", @@ -286303,7 +313159,7 @@ } }, { - "id": 25973, + "id": 28182, "properties": { "facing": "west", "half": "bottom", @@ -286312,7 +313168,7 @@ } }, { - "id": 25974, + "id": 28183, "properties": { "facing": "west", "half": "bottom", @@ -286321,7 +313177,7 @@ } }, { - "id": 25975, + "id": 28184, "properties": { "facing": "west", "half": "bottom", @@ -286330,7 +313186,7 @@ } }, { - "id": 25976, + "id": 28185, "properties": { "facing": "west", "half": "bottom", @@ -286339,7 +313195,7 @@ } }, { - "id": 25977, + "id": 28186, "properties": { "facing": "west", "half": "bottom", @@ -286348,7 +313204,7 @@ } }, { - "id": 25978, + "id": 28187, "properties": { "facing": "west", "half": "bottom", @@ -286357,7 +313213,7 @@ } }, { - "id": 25979, + "id": 28188, "properties": { "facing": "east", "half": "top", @@ -286366,7 +313222,7 @@ } }, { - "id": 25980, + "id": 28189, "properties": { "facing": "east", "half": "top", @@ -286375,7 +313231,7 @@ } }, { - "id": 25981, + "id": 28190, "properties": { "facing": "east", "half": "top", @@ -286384,7 +313240,7 @@ } }, { - "id": 25982, + "id": 28191, "properties": { "facing": "east", "half": "top", @@ -286393,7 +313249,7 @@ } }, { - "id": 25983, + "id": 28192, "properties": { "facing": "east", "half": "top", @@ -286402,7 +313258,7 @@ } }, { - "id": 25984, + "id": 28193, "properties": { "facing": "east", "half": "top", @@ -286411,7 +313267,7 @@ } }, { - "id": 25985, + "id": 28194, "properties": { "facing": "east", "half": "top", @@ -286420,7 +313276,7 @@ } }, { - "id": 25986, + "id": 28195, "properties": { "facing": "east", "half": "top", @@ -286429,7 +313285,7 @@ } }, { - "id": 25987, + "id": 28196, "properties": { "facing": "east", "half": "top", @@ -286438,7 +313294,7 @@ } }, { - "id": 25988, + "id": 28197, "properties": { "facing": "east", "half": "top", @@ -286447,7 +313303,7 @@ } }, { - "id": 25989, + "id": 28198, "properties": { "facing": "east", "half": "bottom", @@ -286456,7 +313312,7 @@ } }, { - "id": 25990, + "id": 28199, "properties": { "facing": "east", "half": "bottom", @@ -286465,7 +313321,7 @@ } }, { - "id": 25991, + "id": 28200, "properties": { "facing": "east", "half": "bottom", @@ -286474,7 +313330,7 @@ } }, { - "id": 25992, + "id": 28201, "properties": { "facing": "east", "half": "bottom", @@ -286483,7 +313339,7 @@ } }, { - "id": 25993, + "id": 28202, "properties": { "facing": "east", "half": "bottom", @@ -286492,7 +313348,7 @@ } }, { - "id": 25994, + "id": 28203, "properties": { "facing": "east", "half": "bottom", @@ -286501,7 +313357,7 @@ } }, { - "id": 25995, + "id": 28204, "properties": { "facing": "east", "half": "bottom", @@ -286510,7 +313366,7 @@ } }, { - "id": 25996, + "id": 28205, "properties": { "facing": "east", "half": "bottom", @@ -286519,7 +313375,7 @@ } }, { - "id": 25997, + "id": 28206, "properties": { "facing": "east", "half": "bottom", @@ -286528,7 +313384,7 @@ } }, { - "id": 25998, + "id": 28207, "properties": { "facing": "east", "half": "bottom", @@ -286546,7 +313402,7 @@ "states": [ { "default": true, - "id": 25325 + "id": 27805 } ] }, @@ -286558,7 +313414,7 @@ "states": [ { "default": true, - "id": 25673 + "id": 27787 } ] }, @@ -286930,21 +313786,21 @@ }, "states": [ { - "id": 27083, + "id": 29556, "properties": { "lit": "true", "powered": "true" } }, { - "id": 27084, + "id": 29557, "properties": { "lit": "true", "powered": "false" } }, { - "id": 27085, + "id": 29558, "properties": { "lit": "false", "powered": "true" @@ -286952,7 +313808,7 @@ }, { "default": true, - "id": 27086, + "id": 29559, "properties": { "lit": "false", "powered": "false" @@ -287049,7 +313905,7 @@ }, "states": [ { - "id": 27215, + "id": 29688, "properties": { "type": "single", "facing": "north", @@ -287058,7 +313914,7 @@ }, { "default": true, - "id": 27216, + "id": 29689, "properties": { "type": "single", "facing": "north", @@ -287066,7 +313922,7 @@ } }, { - "id": 27217, + "id": 29690, "properties": { "type": "left", "facing": "north", @@ -287074,7 +313930,7 @@ } }, { - "id": 27218, + "id": 29691, "properties": { "type": "left", "facing": "north", @@ -287082,7 +313938,7 @@ } }, { - "id": 27219, + "id": 29692, "properties": { "type": "right", "facing": "north", @@ -287090,7 +313946,7 @@ } }, { - "id": 27220, + "id": 29693, "properties": { "type": "right", "facing": "north", @@ -287098,7 +313954,7 @@ } }, { - "id": 27221, + "id": 29694, "properties": { "type": "single", "facing": "south", @@ -287106,7 +313962,7 @@ } }, { - "id": 27222, + "id": 29695, "properties": { "type": "single", "facing": "south", @@ -287114,7 +313970,7 @@ } }, { - "id": 27223, + "id": 29696, "properties": { "type": "left", "facing": "south", @@ -287122,7 +313978,7 @@ } }, { - "id": 27224, + "id": 29697, "properties": { "type": "left", "facing": "south", @@ -287130,7 +313986,7 @@ } }, { - "id": 27225, + "id": 29698, "properties": { "type": "right", "facing": "south", @@ -287138,7 +313994,7 @@ } }, { - "id": 27226, + "id": 29699, "properties": { "type": "right", "facing": "south", @@ -287146,7 +314002,7 @@ } }, { - "id": 27227, + "id": 29700, "properties": { "type": "single", "facing": "west", @@ -287154,7 +314010,7 @@ } }, { - "id": 27228, + "id": 29701, "properties": { "type": "single", "facing": "west", @@ -287162,7 +314018,7 @@ } }, { - "id": 27229, + "id": 29702, "properties": { "type": "left", "facing": "west", @@ -287170,7 +314026,7 @@ } }, { - "id": 27230, + "id": 29703, "properties": { "type": "left", "facing": "west", @@ -287178,7 +314034,7 @@ } }, { - "id": 27231, + "id": 29704, "properties": { "type": "right", "facing": "west", @@ -287186,7 +314042,7 @@ } }, { - "id": 27232, + "id": 29705, "properties": { "type": "right", "facing": "west", @@ -287194,7 +314050,7 @@ } }, { - "id": 27233, + "id": 29706, "properties": { "type": "single", "facing": "east", @@ -287202,7 +314058,7 @@ } }, { - "id": 27234, + "id": 29707, "properties": { "type": "single", "facing": "east", @@ -287210,7 +314066,7 @@ } }, { - "id": 27235, + "id": 29708, "properties": { "type": "left", "facing": "east", @@ -287218,7 +314074,7 @@ } }, { - "id": 27236, + "id": 29709, "properties": { "type": "left", "facing": "east", @@ -287226,7 +314082,7 @@ } }, { - "id": 27237, + "id": 29710, "properties": { "type": "right", "facing": "east", @@ -287234,7 +314090,7 @@ } }, { - "id": 27238, + "id": 29711, "properties": { "type": "right", "facing": "east", @@ -287275,7 +314131,7 @@ }, "states": [ { - "id": 26343, + "id": 28816, "properties": { "facing": "north", "half": "upper", @@ -287285,7 +314141,7 @@ } }, { - "id": 26344, + "id": 28817, "properties": { "facing": "north", "half": "upper", @@ -287295,7 +314151,7 @@ } }, { - "id": 26345, + "id": 28818, "properties": { "facing": "north", "half": "upper", @@ -287305,7 +314161,7 @@ } }, { - "id": 26346, + "id": 28819, "properties": { "facing": "north", "half": "upper", @@ -287315,7 +314171,7 @@ } }, { - "id": 26347, + "id": 28820, "properties": { "facing": "north", "half": "upper", @@ -287325,7 +314181,7 @@ } }, { - "id": 26348, + "id": 28821, "properties": { "facing": "north", "half": "upper", @@ -287335,7 +314191,7 @@ } }, { - "id": 26349, + "id": 28822, "properties": { "facing": "north", "half": "upper", @@ -287345,7 +314201,7 @@ } }, { - "id": 26350, + "id": 28823, "properties": { "facing": "north", "half": "upper", @@ -287355,7 +314211,7 @@ } }, { - "id": 26351, + "id": 28824, "properties": { "facing": "north", "half": "lower", @@ -287365,7 +314221,7 @@ } }, { - "id": 26352, + "id": 28825, "properties": { "facing": "north", "half": "lower", @@ -287375,7 +314231,7 @@ } }, { - "id": 26353, + "id": 28826, "properties": { "facing": "north", "half": "lower", @@ -287386,7 +314242,7 @@ }, { "default": true, - "id": 26354, + "id": 28827, "properties": { "facing": "north", "half": "lower", @@ -287396,7 +314252,7 @@ } }, { - "id": 26355, + "id": 28828, "properties": { "facing": "north", "half": "lower", @@ -287406,7 +314262,7 @@ } }, { - "id": 26356, + "id": 28829, "properties": { "facing": "north", "half": "lower", @@ -287416,7 +314272,7 @@ } }, { - "id": 26357, + "id": 28830, "properties": { "facing": "north", "half": "lower", @@ -287426,7 +314282,7 @@ } }, { - "id": 26358, + "id": 28831, "properties": { "facing": "north", "half": "lower", @@ -287436,7 +314292,7 @@ } }, { - "id": 26359, + "id": 28832, "properties": { "facing": "south", "half": "upper", @@ -287446,7 +314302,7 @@ } }, { - "id": 26360, + "id": 28833, "properties": { "facing": "south", "half": "upper", @@ -287456,7 +314312,7 @@ } }, { - "id": 26361, + "id": 28834, "properties": { "facing": "south", "half": "upper", @@ -287466,7 +314322,7 @@ } }, { - "id": 26362, + "id": 28835, "properties": { "facing": "south", "half": "upper", @@ -287476,7 +314332,7 @@ } }, { - "id": 26363, + "id": 28836, "properties": { "facing": "south", "half": "upper", @@ -287486,7 +314342,7 @@ } }, { - "id": 26364, + "id": 28837, "properties": { "facing": "south", "half": "upper", @@ -287496,7 +314352,7 @@ } }, { - "id": 26365, + "id": 28838, "properties": { "facing": "south", "half": "upper", @@ -287506,7 +314362,7 @@ } }, { - "id": 26366, + "id": 28839, "properties": { "facing": "south", "half": "upper", @@ -287516,7 +314372,7 @@ } }, { - "id": 26367, + "id": 28840, "properties": { "facing": "south", "half": "lower", @@ -287526,7 +314382,7 @@ } }, { - "id": 26368, + "id": 28841, "properties": { "facing": "south", "half": "lower", @@ -287536,7 +314392,7 @@ } }, { - "id": 26369, + "id": 28842, "properties": { "facing": "south", "half": "lower", @@ -287546,7 +314402,7 @@ } }, { - "id": 26370, + "id": 28843, "properties": { "facing": "south", "half": "lower", @@ -287556,7 +314412,7 @@ } }, { - "id": 26371, + "id": 28844, "properties": { "facing": "south", "half": "lower", @@ -287566,7 +314422,7 @@ } }, { - "id": 26372, + "id": 28845, "properties": { "facing": "south", "half": "lower", @@ -287576,7 +314432,7 @@ } }, { - "id": 26373, + "id": 28846, "properties": { "facing": "south", "half": "lower", @@ -287586,7 +314442,7 @@ } }, { - "id": 26374, + "id": 28847, "properties": { "facing": "south", "half": "lower", @@ -287596,7 +314452,7 @@ } }, { - "id": 26375, + "id": 28848, "properties": { "facing": "west", "half": "upper", @@ -287606,7 +314462,7 @@ } }, { - "id": 26376, + "id": 28849, "properties": { "facing": "west", "half": "upper", @@ -287616,7 +314472,7 @@ } }, { - "id": 26377, + "id": 28850, "properties": { "facing": "west", "half": "upper", @@ -287626,7 +314482,7 @@ } }, { - "id": 26378, + "id": 28851, "properties": { "facing": "west", "half": "upper", @@ -287636,7 +314492,7 @@ } }, { - "id": 26379, + "id": 28852, "properties": { "facing": "west", "half": "upper", @@ -287646,7 +314502,7 @@ } }, { - "id": 26380, + "id": 28853, "properties": { "facing": "west", "half": "upper", @@ -287656,7 +314512,7 @@ } }, { - "id": 26381, + "id": 28854, "properties": { "facing": "west", "half": "upper", @@ -287666,7 +314522,7 @@ } }, { - "id": 26382, + "id": 28855, "properties": { "facing": "west", "half": "upper", @@ -287676,7 +314532,7 @@ } }, { - "id": 26383, + "id": 28856, "properties": { "facing": "west", "half": "lower", @@ -287686,7 +314542,7 @@ } }, { - "id": 26384, + "id": 28857, "properties": { "facing": "west", "half": "lower", @@ -287696,7 +314552,7 @@ } }, { - "id": 26385, + "id": 28858, "properties": { "facing": "west", "half": "lower", @@ -287706,7 +314562,7 @@ } }, { - "id": 26386, + "id": 28859, "properties": { "facing": "west", "half": "lower", @@ -287716,7 +314572,7 @@ } }, { - "id": 26387, + "id": 28860, "properties": { "facing": "west", "half": "lower", @@ -287726,7 +314582,7 @@ } }, { - "id": 26388, + "id": 28861, "properties": { "facing": "west", "half": "lower", @@ -287736,7 +314592,7 @@ } }, { - "id": 26389, + "id": 28862, "properties": { "facing": "west", "half": "lower", @@ -287746,7 +314602,7 @@ } }, { - "id": 26390, + "id": 28863, "properties": { "facing": "west", "half": "lower", @@ -287756,7 +314612,7 @@ } }, { - "id": 26391, + "id": 28864, "properties": { "facing": "east", "half": "upper", @@ -287766,7 +314622,7 @@ } }, { - "id": 26392, + "id": 28865, "properties": { "facing": "east", "half": "upper", @@ -287776,7 +314632,7 @@ } }, { - "id": 26393, + "id": 28866, "properties": { "facing": "east", "half": "upper", @@ -287786,7 +314642,7 @@ } }, { - "id": 26394, + "id": 28867, "properties": { "facing": "east", "half": "upper", @@ -287796,7 +314652,7 @@ } }, { - "id": 26395, + "id": 28868, "properties": { "facing": "east", "half": "upper", @@ -287806,7 +314662,7 @@ } }, { - "id": 26396, + "id": 28869, "properties": { "facing": "east", "half": "upper", @@ -287816,7 +314672,7 @@ } }, { - "id": 26397, + "id": 28870, "properties": { "facing": "east", "half": "upper", @@ -287826,7 +314682,7 @@ } }, { - "id": 26398, + "id": 28871, "properties": { "facing": "east", "half": "upper", @@ -287836,7 +314692,7 @@ } }, { - "id": 26399, + "id": 28872, "properties": { "facing": "east", "half": "lower", @@ -287846,7 +314702,7 @@ } }, { - "id": 26400, + "id": 28873, "properties": { "facing": "east", "half": "lower", @@ -287856,7 +314712,7 @@ } }, { - "id": 26401, + "id": 28874, "properties": { "facing": "east", "half": "lower", @@ -287866,7 +314722,7 @@ } }, { - "id": 26402, + "id": 28875, "properties": { "facing": "east", "half": "lower", @@ -287876,7 +314732,7 @@ } }, { - "id": 26403, + "id": 28876, "properties": { "facing": "east", "half": "lower", @@ -287886,7 +314742,7 @@ } }, { - "id": 26404, + "id": 28877, "properties": { "facing": "east", "half": "lower", @@ -287896,7 +314752,7 @@ } }, { - "id": 26405, + "id": 28878, "properties": { "facing": "east", "half": "lower", @@ -287906,7 +314762,7 @@ } }, { - "id": 26406, + "id": 28879, "properties": { "facing": "east", "half": "lower", @@ -287943,7 +314799,7 @@ }, "states": [ { - "id": 27447, + "id": 29920, "properties": { "copper_golem_pose": "standing", "facing": "north", @@ -287952,7 +314808,7 @@ }, { "default": true, - "id": 27448, + "id": 29921, "properties": { "copper_golem_pose": "standing", "facing": "north", @@ -287960,7 +314816,7 @@ } }, { - "id": 27449, + "id": 29922, "properties": { "copper_golem_pose": "standing", "facing": "south", @@ -287968,7 +314824,7 @@ } }, { - "id": 27450, + "id": 29923, "properties": { "copper_golem_pose": "standing", "facing": "south", @@ -287976,7 +314832,7 @@ } }, { - "id": 27451, + "id": 29924, "properties": { "copper_golem_pose": "standing", "facing": "west", @@ -287984,7 +314840,7 @@ } }, { - "id": 27452, + "id": 29925, "properties": { "copper_golem_pose": "standing", "facing": "west", @@ -287992,7 +314848,7 @@ } }, { - "id": 27453, + "id": 29926, "properties": { "copper_golem_pose": "standing", "facing": "east", @@ -288000,7 +314856,7 @@ } }, { - "id": 27454, + "id": 29927, "properties": { "copper_golem_pose": "standing", "facing": "east", @@ -288008,7 +314864,7 @@ } }, { - "id": 27455, + "id": 29928, "properties": { "copper_golem_pose": "sitting", "facing": "north", @@ -288016,7 +314872,7 @@ } }, { - "id": 27456, + "id": 29929, "properties": { "copper_golem_pose": "sitting", "facing": "north", @@ -288024,7 +314880,7 @@ } }, { - "id": 27457, + "id": 29930, "properties": { "copper_golem_pose": "sitting", "facing": "south", @@ -288032,7 +314888,7 @@ } }, { - "id": 27458, + "id": 29931, "properties": { "copper_golem_pose": "sitting", "facing": "south", @@ -288040,7 +314896,7 @@ } }, { - "id": 27459, + "id": 29932, "properties": { "copper_golem_pose": "sitting", "facing": "west", @@ -288048,7 +314904,7 @@ } }, { - "id": 27460, + "id": 29933, "properties": { "copper_golem_pose": "sitting", "facing": "west", @@ -288056,7 +314912,7 @@ } }, { - "id": 27461, + "id": 29934, "properties": { "copper_golem_pose": "sitting", "facing": "east", @@ -288064,7 +314920,7 @@ } }, { - "id": 27462, + "id": 29935, "properties": { "copper_golem_pose": "sitting", "facing": "east", @@ -288072,7 +314928,7 @@ } }, { - "id": 27463, + "id": 29936, "properties": { "copper_golem_pose": "running", "facing": "north", @@ -288080,7 +314936,7 @@ } }, { - "id": 27464, + "id": 29937, "properties": { "copper_golem_pose": "running", "facing": "north", @@ -288088,7 +314944,7 @@ } }, { - "id": 27465, + "id": 29938, "properties": { "copper_golem_pose": "running", "facing": "south", @@ -288096,7 +314952,7 @@ } }, { - "id": 27466, + "id": 29939, "properties": { "copper_golem_pose": "running", "facing": "south", @@ -288104,7 +314960,7 @@ } }, { - "id": 27467, + "id": 29940, "properties": { "copper_golem_pose": "running", "facing": "west", @@ -288112,7 +314968,7 @@ } }, { - "id": 27468, + "id": 29941, "properties": { "copper_golem_pose": "running", "facing": "west", @@ -288120,7 +314976,7 @@ } }, { - "id": 27469, + "id": 29942, "properties": { "copper_golem_pose": "running", "facing": "east", @@ -288128,7 +314984,7 @@ } }, { - "id": 27470, + "id": 29943, "properties": { "copper_golem_pose": "running", "facing": "east", @@ -288136,7 +314992,7 @@ } }, { - "id": 27471, + "id": 29944, "properties": { "copper_golem_pose": "star", "facing": "north", @@ -288144,7 +315000,7 @@ } }, { - "id": 27472, + "id": 29945, "properties": { "copper_golem_pose": "star", "facing": "north", @@ -288152,7 +315008,7 @@ } }, { - "id": 27473, + "id": 29946, "properties": { "copper_golem_pose": "star", "facing": "south", @@ -288160,7 +315016,7 @@ } }, { - "id": 27474, + "id": 29947, "properties": { "copper_golem_pose": "star", "facing": "south", @@ -288168,7 +315024,7 @@ } }, { - "id": 27475, + "id": 29948, "properties": { "copper_golem_pose": "star", "facing": "west", @@ -288176,7 +315032,7 @@ } }, { - "id": 27476, + "id": 29949, "properties": { "copper_golem_pose": "star", "facing": "west", @@ -288184,7 +315040,7 @@ } }, { - "id": 27477, + "id": 29950, "properties": { "copper_golem_pose": "star", "facing": "east", @@ -288192,7 +315048,7 @@ } }, { - "id": 27478, + "id": 29951, "properties": { "copper_golem_pose": "star", "facing": "east", @@ -288214,14 +315070,14 @@ }, "states": [ { - "id": 27057, + "id": 29530, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 27058, + "id": 29531, "properties": { "waterlogged": "false" } @@ -288307,7 +315163,7 @@ }, "states": [ { - "id": 26855, + "id": 29328, "properties": { "facing": "north", "half": "top", @@ -288317,7 +315173,7 @@ } }, { - "id": 26856, + "id": 29329, "properties": { "facing": "north", "half": "top", @@ -288327,7 +315183,7 @@ } }, { - "id": 26857, + "id": 29330, "properties": { "facing": "north", "half": "top", @@ -288337,7 +315193,7 @@ } }, { - "id": 26858, + "id": 29331, "properties": { "facing": "north", "half": "top", @@ -288347,7 +315203,7 @@ } }, { - "id": 26859, + "id": 29332, "properties": { "facing": "north", "half": "top", @@ -288357,7 +315213,7 @@ } }, { - "id": 26860, + "id": 29333, "properties": { "facing": "north", "half": "top", @@ -288367,7 +315223,7 @@ } }, { - "id": 26861, + "id": 29334, "properties": { "facing": "north", "half": "top", @@ -288377,7 +315233,7 @@ } }, { - "id": 26862, + "id": 29335, "properties": { "facing": "north", "half": "top", @@ -288387,7 +315243,7 @@ } }, { - "id": 26863, + "id": 29336, "properties": { "facing": "north", "half": "bottom", @@ -288397,7 +315253,7 @@ } }, { - "id": 26864, + "id": 29337, "properties": { "facing": "north", "half": "bottom", @@ -288407,7 +315263,7 @@ } }, { - "id": 26865, + "id": 29338, "properties": { "facing": "north", "half": "bottom", @@ -288417,7 +315273,7 @@ } }, { - "id": 26866, + "id": 29339, "properties": { "facing": "north", "half": "bottom", @@ -288427,7 +315283,7 @@ } }, { - "id": 26867, + "id": 29340, "properties": { "facing": "north", "half": "bottom", @@ -288437,7 +315293,7 @@ } }, { - "id": 26868, + "id": 29341, "properties": { "facing": "north", "half": "bottom", @@ -288447,7 +315303,7 @@ } }, { - "id": 26869, + "id": 29342, "properties": { "facing": "north", "half": "bottom", @@ -288458,7 +315314,7 @@ }, { "default": true, - "id": 26870, + "id": 29343, "properties": { "facing": "north", "half": "bottom", @@ -288468,7 +315324,7 @@ } }, { - "id": 26871, + "id": 29344, "properties": { "facing": "south", "half": "top", @@ -288478,7 +315334,7 @@ } }, { - "id": 26872, + "id": 29345, "properties": { "facing": "south", "half": "top", @@ -288488,7 +315344,7 @@ } }, { - "id": 26873, + "id": 29346, "properties": { "facing": "south", "half": "top", @@ -288498,7 +315354,7 @@ } }, { - "id": 26874, + "id": 29347, "properties": { "facing": "south", "half": "top", @@ -288508,7 +315364,7 @@ } }, { - "id": 26875, + "id": 29348, "properties": { "facing": "south", "half": "top", @@ -288518,7 +315374,7 @@ } }, { - "id": 26876, + "id": 29349, "properties": { "facing": "south", "half": "top", @@ -288528,7 +315384,7 @@ } }, { - "id": 26877, + "id": 29350, "properties": { "facing": "south", "half": "top", @@ -288538,7 +315394,7 @@ } }, { - "id": 26878, + "id": 29351, "properties": { "facing": "south", "half": "top", @@ -288548,7 +315404,7 @@ } }, { - "id": 26879, + "id": 29352, "properties": { "facing": "south", "half": "bottom", @@ -288558,7 +315414,7 @@ } }, { - "id": 26880, + "id": 29353, "properties": { "facing": "south", "half": "bottom", @@ -288568,7 +315424,7 @@ } }, { - "id": 26881, + "id": 29354, "properties": { "facing": "south", "half": "bottom", @@ -288578,7 +315434,7 @@ } }, { - "id": 26882, + "id": 29355, "properties": { "facing": "south", "half": "bottom", @@ -288588,7 +315444,7 @@ } }, { - "id": 26883, + "id": 29356, "properties": { "facing": "south", "half": "bottom", @@ -288598,7 +315454,7 @@ } }, { - "id": 26884, + "id": 29357, "properties": { "facing": "south", "half": "bottom", @@ -288608,7 +315464,7 @@ } }, { - "id": 26885, + "id": 29358, "properties": { "facing": "south", "half": "bottom", @@ -288618,7 +315474,7 @@ } }, { - "id": 26886, + "id": 29359, "properties": { "facing": "south", "half": "bottom", @@ -288628,7 +315484,7 @@ } }, { - "id": 26887, + "id": 29360, "properties": { "facing": "west", "half": "top", @@ -288638,7 +315494,7 @@ } }, { - "id": 26888, + "id": 29361, "properties": { "facing": "west", "half": "top", @@ -288648,7 +315504,7 @@ } }, { - "id": 26889, + "id": 29362, "properties": { "facing": "west", "half": "top", @@ -288658,7 +315514,7 @@ } }, { - "id": 26890, + "id": 29363, "properties": { "facing": "west", "half": "top", @@ -288668,7 +315524,7 @@ } }, { - "id": 26891, + "id": 29364, "properties": { "facing": "west", "half": "top", @@ -288678,7 +315534,7 @@ } }, { - "id": 26892, + "id": 29365, "properties": { "facing": "west", "half": "top", @@ -288688,7 +315544,7 @@ } }, { - "id": 26893, + "id": 29366, "properties": { "facing": "west", "half": "top", @@ -288698,7 +315554,7 @@ } }, { - "id": 26894, + "id": 29367, "properties": { "facing": "west", "half": "top", @@ -288708,7 +315564,7 @@ } }, { - "id": 26895, + "id": 29368, "properties": { "facing": "west", "half": "bottom", @@ -288718,7 +315574,7 @@ } }, { - "id": 26896, + "id": 29369, "properties": { "facing": "west", "half": "bottom", @@ -288728,7 +315584,7 @@ } }, { - "id": 26897, + "id": 29370, "properties": { "facing": "west", "half": "bottom", @@ -288738,7 +315594,7 @@ } }, { - "id": 26898, + "id": 29371, "properties": { "facing": "west", "half": "bottom", @@ -288748,7 +315604,7 @@ } }, { - "id": 26899, + "id": 29372, "properties": { "facing": "west", "half": "bottom", @@ -288758,7 +315614,7 @@ } }, { - "id": 26900, + "id": 29373, "properties": { "facing": "west", "half": "bottom", @@ -288768,7 +315624,7 @@ } }, { - "id": 26901, + "id": 29374, "properties": { "facing": "west", "half": "bottom", @@ -288778,7 +315634,7 @@ } }, { - "id": 26902, + "id": 29375, "properties": { "facing": "west", "half": "bottom", @@ -288788,7 +315644,7 @@ } }, { - "id": 26903, + "id": 29376, "properties": { "facing": "east", "half": "top", @@ -288798,7 +315654,7 @@ } }, { - "id": 26904, + "id": 29377, "properties": { "facing": "east", "half": "top", @@ -288808,7 +315664,7 @@ } }, { - "id": 26905, + "id": 29378, "properties": { "facing": "east", "half": "top", @@ -288818,7 +315674,7 @@ } }, { - "id": 26906, + "id": 29379, "properties": { "facing": "east", "half": "top", @@ -288828,7 +315684,7 @@ } }, { - "id": 26907, + "id": 29380, "properties": { "facing": "east", "half": "top", @@ -288838,7 +315694,7 @@ } }, { - "id": 26908, + "id": 29381, "properties": { "facing": "east", "half": "top", @@ -288848,7 +315704,7 @@ } }, { - "id": 26909, + "id": 29382, "properties": { "facing": "east", "half": "top", @@ -288858,7 +315714,7 @@ } }, { - "id": 26910, + "id": 29383, "properties": { "facing": "east", "half": "top", @@ -288868,7 +315724,7 @@ } }, { - "id": 26911, + "id": 29384, "properties": { "facing": "east", "half": "bottom", @@ -288878,7 +315734,7 @@ } }, { - "id": 26912, + "id": 29385, "properties": { "facing": "east", "half": "bottom", @@ -288888,7 +315744,7 @@ } }, { - "id": 26913, + "id": 29386, "properties": { "facing": "east", "half": "bottom", @@ -288898,7 +315754,7 @@ } }, { - "id": 26914, + "id": 29387, "properties": { "facing": "east", "half": "bottom", @@ -288908,7 +315764,7 @@ } }, { - "id": 26915, + "id": 29388, "properties": { "facing": "east", "half": "bottom", @@ -288918,7 +315774,7 @@ } }, { - "id": 26916, + "id": 29389, "properties": { "facing": "east", "half": "bottom", @@ -288928,7 +315784,7 @@ } }, { - "id": 26917, + "id": 29390, "properties": { "facing": "east", "half": "bottom", @@ -288938,7 +315794,7 @@ } }, { - "id": 26918, + "id": 29391, "properties": { "facing": "east", "half": "bottom", @@ -288957,7 +315813,7 @@ "states": [ { "default": true, - "id": 25677 + "id": 27797 } ] }, @@ -288979,21 +315835,21 @@ }, "states": [ { - "id": 26011, + "id": 28478, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 26012, + "id": 28479, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 26013, + "id": 28480, "properties": { "type": "bottom", "waterlogged": "true" @@ -289001,21 +315857,21 @@ }, { "default": true, - "id": 26014, + "id": 28481, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 26015, + "id": 28482, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 26016, + "id": 28483, "properties": { "type": "double", "waterlogged": "false" @@ -289056,7 +315912,7 @@ }, "states": [ { - "id": 25839, + "id": 28208, "properties": { "facing": "north", "half": "top", @@ -289065,7 +315921,7 @@ } }, { - "id": 25840, + "id": 28209, "properties": { "facing": "north", "half": "top", @@ -289074,7 +315930,7 @@ } }, { - "id": 25841, + "id": 28210, "properties": { "facing": "north", "half": "top", @@ -289083,7 +315939,7 @@ } }, { - "id": 25842, + "id": 28211, "properties": { "facing": "north", "half": "top", @@ -289092,7 +315948,7 @@ } }, { - "id": 25843, + "id": 28212, "properties": { "facing": "north", "half": "top", @@ -289101,7 +315957,7 @@ } }, { - "id": 25844, + "id": 28213, "properties": { "facing": "north", "half": "top", @@ -289110,7 +315966,7 @@ } }, { - "id": 25845, + "id": 28214, "properties": { "facing": "north", "half": "top", @@ -289119,7 +315975,7 @@ } }, { - "id": 25846, + "id": 28215, "properties": { "facing": "north", "half": "top", @@ -289128,7 +315984,7 @@ } }, { - "id": 25847, + "id": 28216, "properties": { "facing": "north", "half": "top", @@ -289137,7 +315993,7 @@ } }, { - "id": 25848, + "id": 28217, "properties": { "facing": "north", "half": "top", @@ -289146,7 +316002,7 @@ } }, { - "id": 25849, + "id": 28218, "properties": { "facing": "north", "half": "bottom", @@ -289156,7 +316012,7 @@ }, { "default": true, - "id": 25850, + "id": 28219, "properties": { "facing": "north", "half": "bottom", @@ -289165,7 +316021,7 @@ } }, { - "id": 25851, + "id": 28220, "properties": { "facing": "north", "half": "bottom", @@ -289174,7 +316030,7 @@ } }, { - "id": 25852, + "id": 28221, "properties": { "facing": "north", "half": "bottom", @@ -289183,7 +316039,7 @@ } }, { - "id": 25853, + "id": 28222, "properties": { "facing": "north", "half": "bottom", @@ -289192,7 +316048,7 @@ } }, { - "id": 25854, + "id": 28223, "properties": { "facing": "north", "half": "bottom", @@ -289201,7 +316057,7 @@ } }, { - "id": 25855, + "id": 28224, "properties": { "facing": "north", "half": "bottom", @@ -289210,7 +316066,7 @@ } }, { - "id": 25856, + "id": 28225, "properties": { "facing": "north", "half": "bottom", @@ -289219,7 +316075,7 @@ } }, { - "id": 25857, + "id": 28226, "properties": { "facing": "north", "half": "bottom", @@ -289228,7 +316084,7 @@ } }, { - "id": 25858, + "id": 28227, "properties": { "facing": "north", "half": "bottom", @@ -289237,7 +316093,7 @@ } }, { - "id": 25859, + "id": 28228, "properties": { "facing": "south", "half": "top", @@ -289246,7 +316102,7 @@ } }, { - "id": 25860, + "id": 28229, "properties": { "facing": "south", "half": "top", @@ -289255,7 +316111,7 @@ } }, { - "id": 25861, + "id": 28230, "properties": { "facing": "south", "half": "top", @@ -289264,7 +316120,7 @@ } }, { - "id": 25862, + "id": 28231, "properties": { "facing": "south", "half": "top", @@ -289273,7 +316129,7 @@ } }, { - "id": 25863, + "id": 28232, "properties": { "facing": "south", "half": "top", @@ -289282,7 +316138,7 @@ } }, { - "id": 25864, + "id": 28233, "properties": { "facing": "south", "half": "top", @@ -289291,7 +316147,7 @@ } }, { - "id": 25865, + "id": 28234, "properties": { "facing": "south", "half": "top", @@ -289300,7 +316156,7 @@ } }, { - "id": 25866, + "id": 28235, "properties": { "facing": "south", "half": "top", @@ -289309,7 +316165,7 @@ } }, { - "id": 25867, + "id": 28236, "properties": { "facing": "south", "half": "top", @@ -289318,7 +316174,7 @@ } }, { - "id": 25868, + "id": 28237, "properties": { "facing": "south", "half": "top", @@ -289327,7 +316183,7 @@ } }, { - "id": 25869, + "id": 28238, "properties": { "facing": "south", "half": "bottom", @@ -289336,7 +316192,7 @@ } }, { - "id": 25870, + "id": 28239, "properties": { "facing": "south", "half": "bottom", @@ -289345,7 +316201,7 @@ } }, { - "id": 25871, + "id": 28240, "properties": { "facing": "south", "half": "bottom", @@ -289354,7 +316210,7 @@ } }, { - "id": 25872, + "id": 28241, "properties": { "facing": "south", "half": "bottom", @@ -289363,7 +316219,7 @@ } }, { - "id": 25873, + "id": 28242, "properties": { "facing": "south", "half": "bottom", @@ -289372,7 +316228,7 @@ } }, { - "id": 25874, + "id": 28243, "properties": { "facing": "south", "half": "bottom", @@ -289381,7 +316237,7 @@ } }, { - "id": 25875, + "id": 28244, "properties": { "facing": "south", "half": "bottom", @@ -289390,7 +316246,7 @@ } }, { - "id": 25876, + "id": 28245, "properties": { "facing": "south", "half": "bottom", @@ -289399,7 +316255,7 @@ } }, { - "id": 25877, + "id": 28246, "properties": { "facing": "south", "half": "bottom", @@ -289408,7 +316264,7 @@ } }, { - "id": 25878, + "id": 28247, "properties": { "facing": "south", "half": "bottom", @@ -289417,7 +316273,7 @@ } }, { - "id": 25879, + "id": 28248, "properties": { "facing": "west", "half": "top", @@ -289426,7 +316282,7 @@ } }, { - "id": 25880, + "id": 28249, "properties": { "facing": "west", "half": "top", @@ -289435,7 +316291,7 @@ } }, { - "id": 25881, + "id": 28250, "properties": { "facing": "west", "half": "top", @@ -289444,7 +316300,7 @@ } }, { - "id": 25882, + "id": 28251, "properties": { "facing": "west", "half": "top", @@ -289453,7 +316309,7 @@ } }, { - "id": 25883, + "id": 28252, "properties": { "facing": "west", "half": "top", @@ -289462,7 +316318,7 @@ } }, { - "id": 25884, + "id": 28253, "properties": { "facing": "west", "half": "top", @@ -289471,7 +316327,7 @@ } }, { - "id": 25885, + "id": 28254, "properties": { "facing": "west", "half": "top", @@ -289480,7 +316336,7 @@ } }, { - "id": 25886, + "id": 28255, "properties": { "facing": "west", "half": "top", @@ -289489,7 +316345,7 @@ } }, { - "id": 25887, + "id": 28256, "properties": { "facing": "west", "half": "top", @@ -289498,7 +316354,7 @@ } }, { - "id": 25888, + "id": 28257, "properties": { "facing": "west", "half": "top", @@ -289507,7 +316363,7 @@ } }, { - "id": 25889, + "id": 28258, "properties": { "facing": "west", "half": "bottom", @@ -289516,7 +316372,7 @@ } }, { - "id": 25890, + "id": 28259, "properties": { "facing": "west", "half": "bottom", @@ -289525,7 +316381,7 @@ } }, { - "id": 25891, + "id": 28260, "properties": { "facing": "west", "half": "bottom", @@ -289534,7 +316390,7 @@ } }, { - "id": 25892, + "id": 28261, "properties": { "facing": "west", "half": "bottom", @@ -289543,7 +316399,7 @@ } }, { - "id": 25893, + "id": 28262, "properties": { "facing": "west", "half": "bottom", @@ -289552,7 +316408,7 @@ } }, { - "id": 25894, + "id": 28263, "properties": { "facing": "west", "half": "bottom", @@ -289561,7 +316417,7 @@ } }, { - "id": 25895, + "id": 28264, "properties": { "facing": "west", "half": "bottom", @@ -289570,7 +316426,7 @@ } }, { - "id": 25896, + "id": 28265, "properties": { "facing": "west", "half": "bottom", @@ -289579,7 +316435,7 @@ } }, { - "id": 25897, + "id": 28266, "properties": { "facing": "west", "half": "bottom", @@ -289588,7 +316444,7 @@ } }, { - "id": 25898, + "id": 28267, "properties": { "facing": "west", "half": "bottom", @@ -289597,7 +316453,7 @@ } }, { - "id": 25899, + "id": 28268, "properties": { "facing": "east", "half": "top", @@ -289606,7 +316462,7 @@ } }, { - "id": 25900, + "id": 28269, "properties": { "facing": "east", "half": "top", @@ -289615,7 +316471,7 @@ } }, { - "id": 25901, + "id": 28270, "properties": { "facing": "east", "half": "top", @@ -289624,7 +316480,7 @@ } }, { - "id": 25902, + "id": 28271, "properties": { "facing": "east", "half": "top", @@ -289633,7 +316489,7 @@ } }, { - "id": 25903, + "id": 28272, "properties": { "facing": "east", "half": "top", @@ -289642,7 +316498,7 @@ } }, { - "id": 25904, + "id": 28273, "properties": { "facing": "east", "half": "top", @@ -289651,7 +316507,7 @@ } }, { - "id": 25905, + "id": 28274, "properties": { "facing": "east", "half": "top", @@ -289660,7 +316516,7 @@ } }, { - "id": 25906, + "id": 28275, "properties": { "facing": "east", "half": "top", @@ -289669,7 +316525,7 @@ } }, { - "id": 25907, + "id": 28276, "properties": { "facing": "east", "half": "top", @@ -289678,7 +316534,7 @@ } }, { - "id": 25908, + "id": 28277, "properties": { "facing": "east", "half": "top", @@ -289687,7 +316543,7 @@ } }, { - "id": 25909, + "id": 28278, "properties": { "facing": "east", "half": "bottom", @@ -289696,7 +316552,7 @@ } }, { - "id": 25910, + "id": 28279, "properties": { "facing": "east", "half": "bottom", @@ -289705,7 +316561,7 @@ } }, { - "id": 25911, + "id": 28280, "properties": { "facing": "east", "half": "bottom", @@ -289714,7 +316570,7 @@ } }, { - "id": 25912, + "id": 28281, "properties": { "facing": "east", "half": "bottom", @@ -289723,7 +316579,7 @@ } }, { - "id": 25913, + "id": 28282, "properties": { "facing": "east", "half": "bottom", @@ -289732,7 +316588,7 @@ } }, { - "id": 25914, + "id": 28283, "properties": { "facing": "east", "half": "bottom", @@ -289741,7 +316597,7 @@ } }, { - "id": 25915, + "id": 28284, "properties": { "facing": "east", "half": "bottom", @@ -289750,7 +316606,7 @@ } }, { - "id": 25916, + "id": 28285, "properties": { "facing": "east", "half": "bottom", @@ -289759,7 +316615,7 @@ } }, { - "id": 25917, + "id": 28286, "properties": { "facing": "east", "half": "bottom", @@ -289768,7 +316624,7 @@ } }, { - "id": 25918, + "id": 28287, "properties": { "facing": "east", "half": "bottom", @@ -289803,7 +316659,7 @@ }, "states": [ { - "id": 27663, + "id": 30136, "properties": { "facing": "north", "powered": "true", @@ -289811,7 +316667,7 @@ } }, { - "id": 27664, + "id": 30137, "properties": { "facing": "north", "powered": "true", @@ -289819,7 +316675,7 @@ } }, { - "id": 27665, + "id": 30138, "properties": { "facing": "north", "powered": "false", @@ -289827,7 +316683,7 @@ } }, { - "id": 27666, + "id": 30139, "properties": { "facing": "north", "powered": "false", @@ -289835,7 +316691,7 @@ } }, { - "id": 27667, + "id": 30140, "properties": { "facing": "east", "powered": "true", @@ -289843,7 +316699,7 @@ } }, { - "id": 27668, + "id": 30141, "properties": { "facing": "east", "powered": "true", @@ -289851,7 +316707,7 @@ } }, { - "id": 27669, + "id": 30142, "properties": { "facing": "east", "powered": "false", @@ -289859,7 +316715,7 @@ } }, { - "id": 27670, + "id": 30143, "properties": { "facing": "east", "powered": "false", @@ -289867,7 +316723,7 @@ } }, { - "id": 27671, + "id": 30144, "properties": { "facing": "south", "powered": "true", @@ -289875,7 +316731,7 @@ } }, { - "id": 27672, + "id": 30145, "properties": { "facing": "south", "powered": "true", @@ -289883,7 +316739,7 @@ } }, { - "id": 27673, + "id": 30146, "properties": { "facing": "south", "powered": "false", @@ -289891,7 +316747,7 @@ } }, { - "id": 27674, + "id": 30147, "properties": { "facing": "south", "powered": "false", @@ -289899,7 +316755,7 @@ } }, { - "id": 27675, + "id": 30148, "properties": { "facing": "west", "powered": "true", @@ -289907,7 +316763,7 @@ } }, { - "id": 27676, + "id": 30149, "properties": { "facing": "west", "powered": "true", @@ -289915,7 +316771,7 @@ } }, { - "id": 27677, + "id": 30150, "properties": { "facing": "west", "powered": "false", @@ -289923,7 +316779,7 @@ } }, { - "id": 27678, + "id": 30151, "properties": { "facing": "west", "powered": "false", @@ -289931,7 +316787,7 @@ } }, { - "id": 27679, + "id": 30152, "properties": { "facing": "up", "powered": "true", @@ -289939,7 +316795,7 @@ } }, { - "id": 27680, + "id": 30153, "properties": { "facing": "up", "powered": "true", @@ -289947,7 +316803,7 @@ } }, { - "id": 27681, + "id": 30154, "properties": { "facing": "up", "powered": "false", @@ -289956,7 +316812,7 @@ }, { "default": true, - "id": 27682, + "id": 30155, "properties": { "facing": "up", "powered": "false", @@ -289964,7 +316820,7 @@ } }, { - "id": 27683, + "id": 30156, "properties": { "facing": "down", "powered": "true", @@ -289972,7 +316828,7 @@ } }, { - "id": 27684, + "id": 30157, "properties": { "facing": "down", "powered": "true", @@ -289980,7 +316836,7 @@ } }, { - "id": 27685, + "id": 30158, "properties": { "facing": "down", "powered": "false", @@ -289988,7 +316844,7 @@ } }, { - "id": 27686, + "id": 30159, "properties": { "facing": "down", "powered": "false", @@ -290022,7 +316878,7 @@ }, "states": [ { - "id": 27639, + "id": 30112, "properties": { "facing": "north", "powered": "true", @@ -290030,7 +316886,7 @@ } }, { - "id": 27640, + "id": 30113, "properties": { "facing": "north", "powered": "true", @@ -290038,7 +316894,7 @@ } }, { - "id": 27641, + "id": 30114, "properties": { "facing": "north", "powered": "false", @@ -290046,7 +316902,7 @@ } }, { - "id": 27642, + "id": 30115, "properties": { "facing": "north", "powered": "false", @@ -290054,7 +316910,7 @@ } }, { - "id": 27643, + "id": 30116, "properties": { "facing": "east", "powered": "true", @@ -290062,7 +316918,7 @@ } }, { - "id": 27644, + "id": 30117, "properties": { "facing": "east", "powered": "true", @@ -290070,7 +316926,7 @@ } }, { - "id": 27645, + "id": 30118, "properties": { "facing": "east", "powered": "false", @@ -290078,7 +316934,7 @@ } }, { - "id": 27646, + "id": 30119, "properties": { "facing": "east", "powered": "false", @@ -290086,7 +316942,7 @@ } }, { - "id": 27647, + "id": 30120, "properties": { "facing": "south", "powered": "true", @@ -290094,7 +316950,7 @@ } }, { - "id": 27648, + "id": 30121, "properties": { "facing": "south", "powered": "true", @@ -290102,7 +316958,7 @@ } }, { - "id": 27649, + "id": 30122, "properties": { "facing": "south", "powered": "false", @@ -290110,7 +316966,7 @@ } }, { - "id": 27650, + "id": 30123, "properties": { "facing": "south", "powered": "false", @@ -290118,7 +316974,7 @@ } }, { - "id": 27651, + "id": 30124, "properties": { "facing": "west", "powered": "true", @@ -290126,7 +316982,7 @@ } }, { - "id": 27652, + "id": 30125, "properties": { "facing": "west", "powered": "true", @@ -290134,7 +316990,7 @@ } }, { - "id": 27653, + "id": 30126, "properties": { "facing": "west", "powered": "false", @@ -290142,7 +316998,7 @@ } }, { - "id": 27654, + "id": 30127, "properties": { "facing": "west", "powered": "false", @@ -290150,7 +317006,7 @@ } }, { - "id": 27655, + "id": 30128, "properties": { "facing": "up", "powered": "true", @@ -290158,7 +317014,7 @@ } }, { - "id": 27656, + "id": 30129, "properties": { "facing": "up", "powered": "true", @@ -290166,7 +317022,7 @@ } }, { - "id": 27657, + "id": 30130, "properties": { "facing": "up", "powered": "false", @@ -290175,7 +317031,7 @@ }, { "default": true, - "id": 27658, + "id": 30131, "properties": { "facing": "up", "powered": "false", @@ -290183,7 +317039,7 @@ } }, { - "id": 27659, + "id": 30132, "properties": { "facing": "down", "powered": "true", @@ -290191,7 +317047,7 @@ } }, { - "id": 27660, + "id": 30133, "properties": { "facing": "down", "powered": "true", @@ -290199,7 +317055,7 @@ } }, { - "id": 27661, + "id": 30134, "properties": { "facing": "down", "powered": "false", @@ -290207,7 +317063,7 @@ } }, { - "id": 27662, + "id": 30135, "properties": { "facing": "down", "powered": "false", @@ -290224,7 +317080,7 @@ "states": [ { "default": true, - "id": 25323 + "id": 27807 } ] }, @@ -290236,7 +317092,7 @@ "states": [ { "default": true, - "id": 25674 + "id": 27789 } ] }, @@ -290608,21 +317464,21 @@ }, "states": [ { - "id": 27091, + "id": 29564, "properties": { "lit": "true", "powered": "true" } }, { - "id": 27092, + "id": 29565, "properties": { "lit": "true", "powered": "false" } }, { - "id": 27093, + "id": 29566, "properties": { "lit": "false", "powered": "true" @@ -290630,7 +317486,7 @@ }, { "default": true, - "id": 27094, + "id": 29567, "properties": { "lit": "false", "powered": "false" @@ -290727,7 +317583,7 @@ }, "states": [ { - "id": 27263, + "id": 29736, "properties": { "type": "single", "facing": "north", @@ -290736,7 +317592,7 @@ }, { "default": true, - "id": 27264, + "id": 29737, "properties": { "type": "single", "facing": "north", @@ -290744,7 +317600,7 @@ } }, { - "id": 27265, + "id": 29738, "properties": { "type": "left", "facing": "north", @@ -290752,7 +317608,7 @@ } }, { - "id": 27266, + "id": 29739, "properties": { "type": "left", "facing": "north", @@ -290760,7 +317616,7 @@ } }, { - "id": 27267, + "id": 29740, "properties": { "type": "right", "facing": "north", @@ -290768,7 +317624,7 @@ } }, { - "id": 27268, + "id": 29741, "properties": { "type": "right", "facing": "north", @@ -290776,7 +317632,7 @@ } }, { - "id": 27269, + "id": 29742, "properties": { "type": "single", "facing": "south", @@ -290784,7 +317640,7 @@ } }, { - "id": 27270, + "id": 29743, "properties": { "type": "single", "facing": "south", @@ -290792,7 +317648,7 @@ } }, { - "id": 27271, + "id": 29744, "properties": { "type": "left", "facing": "south", @@ -290800,7 +317656,7 @@ } }, { - "id": 27272, + "id": 29745, "properties": { "type": "left", "facing": "south", @@ -290808,7 +317664,7 @@ } }, { - "id": 27273, + "id": 29746, "properties": { "type": "right", "facing": "south", @@ -290816,7 +317672,7 @@ } }, { - "id": 27274, + "id": 29747, "properties": { "type": "right", "facing": "south", @@ -290824,7 +317680,7 @@ } }, { - "id": 27275, + "id": 29748, "properties": { "type": "single", "facing": "west", @@ -290832,7 +317688,7 @@ } }, { - "id": 27276, + "id": 29749, "properties": { "type": "single", "facing": "west", @@ -290840,7 +317696,7 @@ } }, { - "id": 27277, + "id": 29750, "properties": { "type": "left", "facing": "west", @@ -290848,7 +317704,7 @@ } }, { - "id": 27278, + "id": 29751, "properties": { "type": "left", "facing": "west", @@ -290856,7 +317712,7 @@ } }, { - "id": 27279, + "id": 29752, "properties": { "type": "right", "facing": "west", @@ -290864,7 +317720,7 @@ } }, { - "id": 27280, + "id": 29753, "properties": { "type": "right", "facing": "west", @@ -290872,7 +317728,7 @@ } }, { - "id": 27281, + "id": 29754, "properties": { "type": "single", "facing": "east", @@ -290880,7 +317736,7 @@ } }, { - "id": 27282, + "id": 29755, "properties": { "type": "single", "facing": "east", @@ -290888,7 +317744,7 @@ } }, { - "id": 27283, + "id": 29756, "properties": { "type": "left", "facing": "east", @@ -290896,7 +317752,7 @@ } }, { - "id": 27284, + "id": 29757, "properties": { "type": "left", "facing": "east", @@ -290904,7 +317760,7 @@ } }, { - "id": 27285, + "id": 29758, "properties": { "type": "right", "facing": "east", @@ -290912,7 +317768,7 @@ } }, { - "id": 27286, + "id": 29759, "properties": { "type": "right", "facing": "east", @@ -290953,7 +317809,7 @@ }, "states": [ { - "id": 26407, + "id": 28944, "properties": { "facing": "north", "half": "upper", @@ -290963,7 +317819,7 @@ } }, { - "id": 26408, + "id": 28945, "properties": { "facing": "north", "half": "upper", @@ -290973,7 +317829,7 @@ } }, { - "id": 26409, + "id": 28946, "properties": { "facing": "north", "half": "upper", @@ -290983,7 +317839,7 @@ } }, { - "id": 26410, + "id": 28947, "properties": { "facing": "north", "half": "upper", @@ -290993,7 +317849,7 @@ } }, { - "id": 26411, + "id": 28948, "properties": { "facing": "north", "half": "upper", @@ -291003,7 +317859,7 @@ } }, { - "id": 26412, + "id": 28949, "properties": { "facing": "north", "half": "upper", @@ -291013,7 +317869,7 @@ } }, { - "id": 26413, + "id": 28950, "properties": { "facing": "north", "half": "upper", @@ -291023,7 +317879,7 @@ } }, { - "id": 26414, + "id": 28951, "properties": { "facing": "north", "half": "upper", @@ -291033,7 +317889,7 @@ } }, { - "id": 26415, + "id": 28952, "properties": { "facing": "north", "half": "lower", @@ -291043,7 +317899,7 @@ } }, { - "id": 26416, + "id": 28953, "properties": { "facing": "north", "half": "lower", @@ -291053,7 +317909,7 @@ } }, { - "id": 26417, + "id": 28954, "properties": { "facing": "north", "half": "lower", @@ -291064,7 +317920,7 @@ }, { "default": true, - "id": 26418, + "id": 28955, "properties": { "facing": "north", "half": "lower", @@ -291074,7 +317930,7 @@ } }, { - "id": 26419, + "id": 28956, "properties": { "facing": "north", "half": "lower", @@ -291084,7 +317940,7 @@ } }, { - "id": 26420, + "id": 28957, "properties": { "facing": "north", "half": "lower", @@ -291094,7 +317950,7 @@ } }, { - "id": 26421, + "id": 28958, "properties": { "facing": "north", "half": "lower", @@ -291104,7 +317960,7 @@ } }, { - "id": 26422, + "id": 28959, "properties": { "facing": "north", "half": "lower", @@ -291114,7 +317970,7 @@ } }, { - "id": 26423, + "id": 28960, "properties": { "facing": "south", "half": "upper", @@ -291124,7 +317980,7 @@ } }, { - "id": 26424, + "id": 28961, "properties": { "facing": "south", "half": "upper", @@ -291134,7 +317990,7 @@ } }, { - "id": 26425, + "id": 28962, "properties": { "facing": "south", "half": "upper", @@ -291144,7 +318000,7 @@ } }, { - "id": 26426, + "id": 28963, "properties": { "facing": "south", "half": "upper", @@ -291154,7 +318010,7 @@ } }, { - "id": 26427, + "id": 28964, "properties": { "facing": "south", "half": "upper", @@ -291164,7 +318020,7 @@ } }, { - "id": 26428, + "id": 28965, "properties": { "facing": "south", "half": "upper", @@ -291174,7 +318030,7 @@ } }, { - "id": 26429, + "id": 28966, "properties": { "facing": "south", "half": "upper", @@ -291184,7 +318040,7 @@ } }, { - "id": 26430, + "id": 28967, "properties": { "facing": "south", "half": "upper", @@ -291194,7 +318050,7 @@ } }, { - "id": 26431, + "id": 28968, "properties": { "facing": "south", "half": "lower", @@ -291204,7 +318060,7 @@ } }, { - "id": 26432, + "id": 28969, "properties": { "facing": "south", "half": "lower", @@ -291214,7 +318070,7 @@ } }, { - "id": 26433, + "id": 28970, "properties": { "facing": "south", "half": "lower", @@ -291224,7 +318080,7 @@ } }, { - "id": 26434, + "id": 28971, "properties": { "facing": "south", "half": "lower", @@ -291234,7 +318090,7 @@ } }, { - "id": 26435, + "id": 28972, "properties": { "facing": "south", "half": "lower", @@ -291244,7 +318100,7 @@ } }, { - "id": 26436, + "id": 28973, "properties": { "facing": "south", "half": "lower", @@ -291254,7 +318110,7 @@ } }, { - "id": 26437, + "id": 28974, "properties": { "facing": "south", "half": "lower", @@ -291264,7 +318120,7 @@ } }, { - "id": 26438, + "id": 28975, "properties": { "facing": "south", "half": "lower", @@ -291274,7 +318130,7 @@ } }, { - "id": 26439, + "id": 28976, "properties": { "facing": "west", "half": "upper", @@ -291284,7 +318140,7 @@ } }, { - "id": 26440, + "id": 28977, "properties": { "facing": "west", "half": "upper", @@ -291294,7 +318150,7 @@ } }, { - "id": 26441, + "id": 28978, "properties": { "facing": "west", "half": "upper", @@ -291304,7 +318160,7 @@ } }, { - "id": 26442, + "id": 28979, "properties": { "facing": "west", "half": "upper", @@ -291314,7 +318170,7 @@ } }, { - "id": 26443, + "id": 28980, "properties": { "facing": "west", "half": "upper", @@ -291324,7 +318180,7 @@ } }, { - "id": 26444, + "id": 28981, "properties": { "facing": "west", "half": "upper", @@ -291334,7 +318190,7 @@ } }, { - "id": 26445, + "id": 28982, "properties": { "facing": "west", "half": "upper", @@ -291344,7 +318200,7 @@ } }, { - "id": 26446, + "id": 28983, "properties": { "facing": "west", "half": "upper", @@ -291354,7 +318210,7 @@ } }, { - "id": 26447, + "id": 28984, "properties": { "facing": "west", "half": "lower", @@ -291364,7 +318220,7 @@ } }, { - "id": 26448, + "id": 28985, "properties": { "facing": "west", "half": "lower", @@ -291374,7 +318230,7 @@ } }, { - "id": 26449, + "id": 28986, "properties": { "facing": "west", "half": "lower", @@ -291384,7 +318240,7 @@ } }, { - "id": 26450, + "id": 28987, "properties": { "facing": "west", "half": "lower", @@ -291394,7 +318250,7 @@ } }, { - "id": 26451, + "id": 28988, "properties": { "facing": "west", "half": "lower", @@ -291404,7 +318260,7 @@ } }, { - "id": 26452, + "id": 28989, "properties": { "facing": "west", "half": "lower", @@ -291414,7 +318270,7 @@ } }, { - "id": 26453, + "id": 28990, "properties": { "facing": "west", "half": "lower", @@ -291424,7 +318280,7 @@ } }, { - "id": 26454, + "id": 28991, "properties": { "facing": "west", "half": "lower", @@ -291434,7 +318290,7 @@ } }, { - "id": 26455, + "id": 28992, "properties": { "facing": "east", "half": "upper", @@ -291444,7 +318300,7 @@ } }, { - "id": 26456, + "id": 28993, "properties": { "facing": "east", "half": "upper", @@ -291454,7 +318310,7 @@ } }, { - "id": 26457, + "id": 28994, "properties": { "facing": "east", "half": "upper", @@ -291464,7 +318320,7 @@ } }, { - "id": 26458, + "id": 28995, "properties": { "facing": "east", "half": "upper", @@ -291474,7 +318330,7 @@ } }, { - "id": 26459, + "id": 28996, "properties": { "facing": "east", "half": "upper", @@ -291484,7 +318340,7 @@ } }, { - "id": 26460, + "id": 28997, "properties": { "facing": "east", "half": "upper", @@ -291494,7 +318350,7 @@ } }, { - "id": 26461, + "id": 28998, "properties": { "facing": "east", "half": "upper", @@ -291504,7 +318360,7 @@ } }, { - "id": 26462, + "id": 28999, "properties": { "facing": "east", "half": "upper", @@ -291514,7 +318370,7 @@ } }, { - "id": 26463, + "id": 29000, "properties": { "facing": "east", "half": "lower", @@ -291524,7 +318380,7 @@ } }, { - "id": 26464, + "id": 29001, "properties": { "facing": "east", "half": "lower", @@ -291534,7 +318390,7 @@ } }, { - "id": 26465, + "id": 29002, "properties": { "facing": "east", "half": "lower", @@ -291544,7 +318400,7 @@ } }, { - "id": 26466, + "id": 29003, "properties": { "facing": "east", "half": "lower", @@ -291554,7 +318410,7 @@ } }, { - "id": 26467, + "id": 29004, "properties": { "facing": "east", "half": "lower", @@ -291564,7 +318420,7 @@ } }, { - "id": 26468, + "id": 29005, "properties": { "facing": "east", "half": "lower", @@ -291574,7 +318430,7 @@ } }, { - "id": 26469, + "id": 29006, "properties": { "facing": "east", "half": "lower", @@ -291584,7 +318440,7 @@ } }, { - "id": 26470, + "id": 29007, "properties": { "facing": "east", "half": "lower", @@ -291621,7 +318477,7 @@ }, "states": [ { - "id": 27511, + "id": 29984, "properties": { "copper_golem_pose": "standing", "facing": "north", @@ -291630,7 +318486,7 @@ }, { "default": true, - "id": 27512, + "id": 29985, "properties": { "copper_golem_pose": "standing", "facing": "north", @@ -291638,7 +318494,7 @@ } }, { - "id": 27513, + "id": 29986, "properties": { "copper_golem_pose": "standing", "facing": "south", @@ -291646,7 +318502,7 @@ } }, { - "id": 27514, + "id": 29987, "properties": { "copper_golem_pose": "standing", "facing": "south", @@ -291654,7 +318510,7 @@ } }, { - "id": 27515, + "id": 29988, "properties": { "copper_golem_pose": "standing", "facing": "west", @@ -291662,7 +318518,7 @@ } }, { - "id": 27516, + "id": 29989, "properties": { "copper_golem_pose": "standing", "facing": "west", @@ -291670,7 +318526,7 @@ } }, { - "id": 27517, + "id": 29990, "properties": { "copper_golem_pose": "standing", "facing": "east", @@ -291678,7 +318534,7 @@ } }, { - "id": 27518, + "id": 29991, "properties": { "copper_golem_pose": "standing", "facing": "east", @@ -291686,7 +318542,7 @@ } }, { - "id": 27519, + "id": 29992, "properties": { "copper_golem_pose": "sitting", "facing": "north", @@ -291694,7 +318550,7 @@ } }, { - "id": 27520, + "id": 29993, "properties": { "copper_golem_pose": "sitting", "facing": "north", @@ -291702,7 +318558,7 @@ } }, { - "id": 27521, + "id": 29994, "properties": { "copper_golem_pose": "sitting", "facing": "south", @@ -291710,7 +318566,7 @@ } }, { - "id": 27522, + "id": 29995, "properties": { "copper_golem_pose": "sitting", "facing": "south", @@ -291718,7 +318574,7 @@ } }, { - "id": 27523, + "id": 29996, "properties": { "copper_golem_pose": "sitting", "facing": "west", @@ -291726,7 +318582,7 @@ } }, { - "id": 27524, + "id": 29997, "properties": { "copper_golem_pose": "sitting", "facing": "west", @@ -291734,7 +318590,7 @@ } }, { - "id": 27525, + "id": 29998, "properties": { "copper_golem_pose": "sitting", "facing": "east", @@ -291742,7 +318598,7 @@ } }, { - "id": 27526, + "id": 29999, "properties": { "copper_golem_pose": "sitting", "facing": "east", @@ -291750,7 +318606,7 @@ } }, { - "id": 27527, + "id": 30000, "properties": { "copper_golem_pose": "running", "facing": "north", @@ -291758,7 +318614,7 @@ } }, { - "id": 27528, + "id": 30001, "properties": { "copper_golem_pose": "running", "facing": "north", @@ -291766,7 +318622,7 @@ } }, { - "id": 27529, + "id": 30002, "properties": { "copper_golem_pose": "running", "facing": "south", @@ -291774,7 +318630,7 @@ } }, { - "id": 27530, + "id": 30003, "properties": { "copper_golem_pose": "running", "facing": "south", @@ -291782,7 +318638,7 @@ } }, { - "id": 27531, + "id": 30004, "properties": { "copper_golem_pose": "running", "facing": "west", @@ -291790,7 +318646,7 @@ } }, { - "id": 27532, + "id": 30005, "properties": { "copper_golem_pose": "running", "facing": "west", @@ -291798,7 +318654,7 @@ } }, { - "id": 27533, + "id": 30006, "properties": { "copper_golem_pose": "running", "facing": "east", @@ -291806,7 +318662,7 @@ } }, { - "id": 27534, + "id": 30007, "properties": { "copper_golem_pose": "running", "facing": "east", @@ -291814,7 +318670,7 @@ } }, { - "id": 27535, + "id": 30008, "properties": { "copper_golem_pose": "star", "facing": "north", @@ -291822,7 +318678,7 @@ } }, { - "id": 27536, + "id": 30009, "properties": { "copper_golem_pose": "star", "facing": "north", @@ -291830,7 +318686,7 @@ } }, { - "id": 27537, + "id": 30010, "properties": { "copper_golem_pose": "star", "facing": "south", @@ -291838,7 +318694,7 @@ } }, { - "id": 27538, + "id": 30011, "properties": { "copper_golem_pose": "star", "facing": "south", @@ -291846,7 +318702,7 @@ } }, { - "id": 27539, + "id": 30012, "properties": { "copper_golem_pose": "star", "facing": "west", @@ -291854,7 +318710,7 @@ } }, { - "id": 27540, + "id": 30013, "properties": { "copper_golem_pose": "star", "facing": "west", @@ -291862,7 +318718,7 @@ } }, { - "id": 27541, + "id": 30014, "properties": { "copper_golem_pose": "star", "facing": "east", @@ -291870,7 +318726,7 @@ } }, { - "id": 27542, + "id": 30015, "properties": { "copper_golem_pose": "star", "facing": "east", @@ -291892,14 +318748,14 @@ }, "states": [ { - "id": 27061, + "id": 29534, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 27062, + "id": 29535, "properties": { "waterlogged": "false" } @@ -291985,7 +318841,7 @@ }, "states": [ { - "id": 26919, + "id": 29456, "properties": { "facing": "north", "half": "top", @@ -291995,7 +318851,7 @@ } }, { - "id": 26920, + "id": 29457, "properties": { "facing": "north", "half": "top", @@ -292005,7 +318861,7 @@ } }, { - "id": 26921, + "id": 29458, "properties": { "facing": "north", "half": "top", @@ -292015,7 +318871,7 @@ } }, { - "id": 26922, + "id": 29459, "properties": { "facing": "north", "half": "top", @@ -292025,7 +318881,7 @@ } }, { - "id": 26923, + "id": 29460, "properties": { "facing": "north", "half": "top", @@ -292035,7 +318891,7 @@ } }, { - "id": 26924, + "id": 29461, "properties": { "facing": "north", "half": "top", @@ -292045,7 +318901,7 @@ } }, { - "id": 26925, + "id": 29462, "properties": { "facing": "north", "half": "top", @@ -292055,7 +318911,7 @@ } }, { - "id": 26926, + "id": 29463, "properties": { "facing": "north", "half": "top", @@ -292065,7 +318921,7 @@ } }, { - "id": 26927, + "id": 29464, "properties": { "facing": "north", "half": "bottom", @@ -292075,7 +318931,7 @@ } }, { - "id": 26928, + "id": 29465, "properties": { "facing": "north", "half": "bottom", @@ -292085,7 +318941,7 @@ } }, { - "id": 26929, + "id": 29466, "properties": { "facing": "north", "half": "bottom", @@ -292095,7 +318951,7 @@ } }, { - "id": 26930, + "id": 29467, "properties": { "facing": "north", "half": "bottom", @@ -292105,7 +318961,7 @@ } }, { - "id": 26931, + "id": 29468, "properties": { "facing": "north", "half": "bottom", @@ -292115,7 +318971,7 @@ } }, { - "id": 26932, + "id": 29469, "properties": { "facing": "north", "half": "bottom", @@ -292125,7 +318981,7 @@ } }, { - "id": 26933, + "id": 29470, "properties": { "facing": "north", "half": "bottom", @@ -292136,7 +318992,7 @@ }, { "default": true, - "id": 26934, + "id": 29471, "properties": { "facing": "north", "half": "bottom", @@ -292146,7 +319002,7 @@ } }, { - "id": 26935, + "id": 29472, "properties": { "facing": "south", "half": "top", @@ -292156,7 +319012,7 @@ } }, { - "id": 26936, + "id": 29473, "properties": { "facing": "south", "half": "top", @@ -292166,7 +319022,7 @@ } }, { - "id": 26937, + "id": 29474, "properties": { "facing": "south", "half": "top", @@ -292176,7 +319032,7 @@ } }, { - "id": 26938, + "id": 29475, "properties": { "facing": "south", "half": "top", @@ -292186,7 +319042,7 @@ } }, { - "id": 26939, + "id": 29476, "properties": { "facing": "south", "half": "top", @@ -292196,7 +319052,7 @@ } }, { - "id": 26940, + "id": 29477, "properties": { "facing": "south", "half": "top", @@ -292206,7 +319062,7 @@ } }, { - "id": 26941, + "id": 29478, "properties": { "facing": "south", "half": "top", @@ -292216,7 +319072,7 @@ } }, { - "id": 26942, + "id": 29479, "properties": { "facing": "south", "half": "top", @@ -292226,7 +319082,7 @@ } }, { - "id": 26943, + "id": 29480, "properties": { "facing": "south", "half": "bottom", @@ -292236,7 +319092,7 @@ } }, { - "id": 26944, + "id": 29481, "properties": { "facing": "south", "half": "bottom", @@ -292246,7 +319102,7 @@ } }, { - "id": 26945, + "id": 29482, "properties": { "facing": "south", "half": "bottom", @@ -292256,7 +319112,7 @@ } }, { - "id": 26946, + "id": 29483, "properties": { "facing": "south", "half": "bottom", @@ -292266,7 +319122,7 @@ } }, { - "id": 26947, + "id": 29484, "properties": { "facing": "south", "half": "bottom", @@ -292276,7 +319132,7 @@ } }, { - "id": 26948, + "id": 29485, "properties": { "facing": "south", "half": "bottom", @@ -292286,7 +319142,7 @@ } }, { - "id": 26949, + "id": 29486, "properties": { "facing": "south", "half": "bottom", @@ -292296,7 +319152,7 @@ } }, { - "id": 26950, + "id": 29487, "properties": { "facing": "south", "half": "bottom", @@ -292306,7 +319162,7 @@ } }, { - "id": 26951, + "id": 29488, "properties": { "facing": "west", "half": "top", @@ -292316,7 +319172,7 @@ } }, { - "id": 26952, + "id": 29489, "properties": { "facing": "west", "half": "top", @@ -292326,7 +319182,7 @@ } }, { - "id": 26953, + "id": 29490, "properties": { "facing": "west", "half": "top", @@ -292336,7 +319192,7 @@ } }, { - "id": 26954, + "id": 29491, "properties": { "facing": "west", "half": "top", @@ -292346,7 +319202,7 @@ } }, { - "id": 26955, + "id": 29492, "properties": { "facing": "west", "half": "top", @@ -292356,7 +319212,7 @@ } }, { - "id": 26956, + "id": 29493, "properties": { "facing": "west", "half": "top", @@ -292366,7 +319222,7 @@ } }, { - "id": 26957, + "id": 29494, "properties": { "facing": "west", "half": "top", @@ -292376,7 +319232,7 @@ } }, { - "id": 26958, + "id": 29495, "properties": { "facing": "west", "half": "top", @@ -292386,7 +319242,7 @@ } }, { - "id": 26959, + "id": 29496, "properties": { "facing": "west", "half": "bottom", @@ -292396,7 +319252,7 @@ } }, { - "id": 26960, + "id": 29497, "properties": { "facing": "west", "half": "bottom", @@ -292406,7 +319262,7 @@ } }, { - "id": 26961, + "id": 29498, "properties": { "facing": "west", "half": "bottom", @@ -292416,7 +319272,7 @@ } }, { - "id": 26962, + "id": 29499, "properties": { "facing": "west", "half": "bottom", @@ -292426,7 +319282,7 @@ } }, { - "id": 26963, + "id": 29500, "properties": { "facing": "west", "half": "bottom", @@ -292436,7 +319292,7 @@ } }, { - "id": 26964, + "id": 29501, "properties": { "facing": "west", "half": "bottom", @@ -292446,7 +319302,7 @@ } }, { - "id": 26965, + "id": 29502, "properties": { "facing": "west", "half": "bottom", @@ -292456,7 +319312,7 @@ } }, { - "id": 26966, + "id": 29503, "properties": { "facing": "west", "half": "bottom", @@ -292466,7 +319322,7 @@ } }, { - "id": 26967, + "id": 29504, "properties": { "facing": "east", "half": "top", @@ -292476,7 +319332,7 @@ } }, { - "id": 26968, + "id": 29505, "properties": { "facing": "east", "half": "top", @@ -292486,7 +319342,7 @@ } }, { - "id": 26969, + "id": 29506, "properties": { "facing": "east", "half": "top", @@ -292496,7 +319352,7 @@ } }, { - "id": 26970, + "id": 29507, "properties": { "facing": "east", "half": "top", @@ -292506,7 +319362,7 @@ } }, { - "id": 26971, + "id": 29508, "properties": { "facing": "east", "half": "top", @@ -292516,7 +319372,7 @@ } }, { - "id": 26972, + "id": 29509, "properties": { "facing": "east", "half": "top", @@ -292526,7 +319382,7 @@ } }, { - "id": 26973, + "id": 29510, "properties": { "facing": "east", "half": "top", @@ -292536,7 +319392,7 @@ } }, { - "id": 26974, + "id": 29511, "properties": { "facing": "east", "half": "top", @@ -292546,7 +319402,7 @@ } }, { - "id": 26975, + "id": 29512, "properties": { "facing": "east", "half": "bottom", @@ -292556,7 +319412,7 @@ } }, { - "id": 26976, + "id": 29513, "properties": { "facing": "east", "half": "bottom", @@ -292566,7 +319422,7 @@ } }, { - "id": 26977, + "id": 29514, "properties": { "facing": "east", "half": "bottom", @@ -292576,7 +319432,7 @@ } }, { - "id": 26978, + "id": 29515, "properties": { "facing": "east", "half": "bottom", @@ -292586,7 +319442,7 @@ } }, { - "id": 26979, + "id": 29516, "properties": { "facing": "east", "half": "bottom", @@ -292596,7 +319452,7 @@ } }, { - "id": 26980, + "id": 29517, "properties": { "facing": "east", "half": "bottom", @@ -292606,7 +319462,7 @@ } }, { - "id": 26981, + "id": 29518, "properties": { "facing": "east", "half": "bottom", @@ -292616,7 +319472,7 @@ } }, { - "id": 26982, + "id": 29519, "properties": { "facing": "east", "half": "bottom", @@ -292635,7 +319491,7 @@ "states": [ { "default": true, - "id": 25675 + "id": 27799 } ] }, @@ -292657,21 +319513,21 @@ }, "states": [ { - "id": 25999, + "id": 28490, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 26000, + "id": 28491, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 26001, + "id": 28492, "properties": { "type": "bottom", "waterlogged": "true" @@ -292679,21 +319535,21 @@ }, { "default": true, - "id": 26002, + "id": 28493, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 26003, + "id": 28494, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 26004, + "id": 28495, "properties": { "type": "double", "waterlogged": "false" @@ -292734,7 +319590,7 @@ }, "states": [ { - "id": 25679, + "id": 28368, "properties": { "facing": "north", "half": "top", @@ -292743,7 +319599,7 @@ } }, { - "id": 25680, + "id": 28369, "properties": { "facing": "north", "half": "top", @@ -292752,7 +319608,7 @@ } }, { - "id": 25681, + "id": 28370, "properties": { "facing": "north", "half": "top", @@ -292761,7 +319617,7 @@ } }, { - "id": 25682, + "id": 28371, "properties": { "facing": "north", "half": "top", @@ -292770,7 +319626,7 @@ } }, { - "id": 25683, + "id": 28372, "properties": { "facing": "north", "half": "top", @@ -292779,7 +319635,7 @@ } }, { - "id": 25684, + "id": 28373, "properties": { "facing": "north", "half": "top", @@ -292788,7 +319644,7 @@ } }, { - "id": 25685, + "id": 28374, "properties": { "facing": "north", "half": "top", @@ -292797,7 +319653,7 @@ } }, { - "id": 25686, + "id": 28375, "properties": { "facing": "north", "half": "top", @@ -292806,7 +319662,7 @@ } }, { - "id": 25687, + "id": 28376, "properties": { "facing": "north", "half": "top", @@ -292815,7 +319671,7 @@ } }, { - "id": 25688, + "id": 28377, "properties": { "facing": "north", "half": "top", @@ -292824,7 +319680,7 @@ } }, { - "id": 25689, + "id": 28378, "properties": { "facing": "north", "half": "bottom", @@ -292834,7 +319690,7 @@ }, { "default": true, - "id": 25690, + "id": 28379, "properties": { "facing": "north", "half": "bottom", @@ -292843,7 +319699,7 @@ } }, { - "id": 25691, + "id": 28380, "properties": { "facing": "north", "half": "bottom", @@ -292852,7 +319708,7 @@ } }, { - "id": 25692, + "id": 28381, "properties": { "facing": "north", "half": "bottom", @@ -292861,7 +319717,7 @@ } }, { - "id": 25693, + "id": 28382, "properties": { "facing": "north", "half": "bottom", @@ -292870,7 +319726,7 @@ } }, { - "id": 25694, + "id": 28383, "properties": { "facing": "north", "half": "bottom", @@ -292879,7 +319735,7 @@ } }, { - "id": 25695, + "id": 28384, "properties": { "facing": "north", "half": "bottom", @@ -292888,7 +319744,7 @@ } }, { - "id": 25696, + "id": 28385, "properties": { "facing": "north", "half": "bottom", @@ -292897,7 +319753,7 @@ } }, { - "id": 25697, + "id": 28386, "properties": { "facing": "north", "half": "bottom", @@ -292906,7 +319762,7 @@ } }, { - "id": 25698, + "id": 28387, "properties": { "facing": "north", "half": "bottom", @@ -292915,7 +319771,7 @@ } }, { - "id": 25699, + "id": 28388, "properties": { "facing": "south", "half": "top", @@ -292924,7 +319780,7 @@ } }, { - "id": 25700, + "id": 28389, "properties": { "facing": "south", "half": "top", @@ -292933,7 +319789,7 @@ } }, { - "id": 25701, + "id": 28390, "properties": { "facing": "south", "half": "top", @@ -292942,7 +319798,7 @@ } }, { - "id": 25702, + "id": 28391, "properties": { "facing": "south", "half": "top", @@ -292951,7 +319807,7 @@ } }, { - "id": 25703, + "id": 28392, "properties": { "facing": "south", "half": "top", @@ -292960,7 +319816,7 @@ } }, { - "id": 25704, + "id": 28393, "properties": { "facing": "south", "half": "top", @@ -292969,7 +319825,7 @@ } }, { - "id": 25705, + "id": 28394, "properties": { "facing": "south", "half": "top", @@ -292978,7 +319834,7 @@ } }, { - "id": 25706, + "id": 28395, "properties": { "facing": "south", "half": "top", @@ -292987,7 +319843,7 @@ } }, { - "id": 25707, + "id": 28396, "properties": { "facing": "south", "half": "top", @@ -292996,7 +319852,7 @@ } }, { - "id": 25708, + "id": 28397, "properties": { "facing": "south", "half": "top", @@ -293005,7 +319861,7 @@ } }, { - "id": 25709, + "id": 28398, "properties": { "facing": "south", "half": "bottom", @@ -293014,7 +319870,7 @@ } }, { - "id": 25710, + "id": 28399, "properties": { "facing": "south", "half": "bottom", @@ -293023,7 +319879,7 @@ } }, { - "id": 25711, + "id": 28400, "properties": { "facing": "south", "half": "bottom", @@ -293032,7 +319888,7 @@ } }, { - "id": 25712, + "id": 28401, "properties": { "facing": "south", "half": "bottom", @@ -293041,7 +319897,7 @@ } }, { - "id": 25713, + "id": 28402, "properties": { "facing": "south", "half": "bottom", @@ -293050,7 +319906,7 @@ } }, { - "id": 25714, + "id": 28403, "properties": { "facing": "south", "half": "bottom", @@ -293059,7 +319915,7 @@ } }, { - "id": 25715, + "id": 28404, "properties": { "facing": "south", "half": "bottom", @@ -293068,7 +319924,7 @@ } }, { - "id": 25716, + "id": 28405, "properties": { "facing": "south", "half": "bottom", @@ -293077,7 +319933,7 @@ } }, { - "id": 25717, + "id": 28406, "properties": { "facing": "south", "half": "bottom", @@ -293086,7 +319942,7 @@ } }, { - "id": 25718, + "id": 28407, "properties": { "facing": "south", "half": "bottom", @@ -293095,7 +319951,7 @@ } }, { - "id": 25719, + "id": 28408, "properties": { "facing": "west", "half": "top", @@ -293104,7 +319960,7 @@ } }, { - "id": 25720, + "id": 28409, "properties": { "facing": "west", "half": "top", @@ -293113,7 +319969,7 @@ } }, { - "id": 25721, + "id": 28410, "properties": { "facing": "west", "half": "top", @@ -293122,7 +319978,7 @@ } }, { - "id": 25722, + "id": 28411, "properties": { "facing": "west", "half": "top", @@ -293131,7 +319987,7 @@ } }, { - "id": 25723, + "id": 28412, "properties": { "facing": "west", "half": "top", @@ -293140,7 +319996,7 @@ } }, { - "id": 25724, + "id": 28413, "properties": { "facing": "west", "half": "top", @@ -293149,7 +320005,7 @@ } }, { - "id": 25725, + "id": 28414, "properties": { "facing": "west", "half": "top", @@ -293158,7 +320014,7 @@ } }, { - "id": 25726, + "id": 28415, "properties": { "facing": "west", "half": "top", @@ -293167,7 +320023,7 @@ } }, { - "id": 25727, + "id": 28416, "properties": { "facing": "west", "half": "top", @@ -293176,7 +320032,7 @@ } }, { - "id": 25728, + "id": 28417, "properties": { "facing": "west", "half": "top", @@ -293185,7 +320041,7 @@ } }, { - "id": 25729, + "id": 28418, "properties": { "facing": "west", "half": "bottom", @@ -293194,7 +320050,7 @@ } }, { - "id": 25730, + "id": 28419, "properties": { "facing": "west", "half": "bottom", @@ -293203,7 +320059,7 @@ } }, { - "id": 25731, + "id": 28420, "properties": { "facing": "west", "half": "bottom", @@ -293212,7 +320068,7 @@ } }, { - "id": 25732, + "id": 28421, "properties": { "facing": "west", "half": "bottom", @@ -293221,7 +320077,7 @@ } }, { - "id": 25733, + "id": 28422, "properties": { "facing": "west", "half": "bottom", @@ -293230,7 +320086,7 @@ } }, { - "id": 25734, + "id": 28423, "properties": { "facing": "west", "half": "bottom", @@ -293239,7 +320095,7 @@ } }, { - "id": 25735, + "id": 28424, "properties": { "facing": "west", "half": "bottom", @@ -293248,7 +320104,7 @@ } }, { - "id": 25736, + "id": 28425, "properties": { "facing": "west", "half": "bottom", @@ -293257,7 +320113,7 @@ } }, { - "id": 25737, + "id": 28426, "properties": { "facing": "west", "half": "bottom", @@ -293266,7 +320122,7 @@ } }, { - "id": 25738, + "id": 28427, "properties": { "facing": "west", "half": "bottom", @@ -293275,7 +320131,7 @@ } }, { - "id": 25739, + "id": 28428, "properties": { "facing": "east", "half": "top", @@ -293284,7 +320140,7 @@ } }, { - "id": 25740, + "id": 28429, "properties": { "facing": "east", "half": "top", @@ -293293,7 +320149,7 @@ } }, { - "id": 25741, + "id": 28430, "properties": { "facing": "east", "half": "top", @@ -293302,7 +320158,7 @@ } }, { - "id": 25742, + "id": 28431, "properties": { "facing": "east", "half": "top", @@ -293311,7 +320167,7 @@ } }, { - "id": 25743, + "id": 28432, "properties": { "facing": "east", "half": "top", @@ -293320,7 +320176,7 @@ } }, { - "id": 25744, + "id": 28433, "properties": { "facing": "east", "half": "top", @@ -293329,7 +320185,7 @@ } }, { - "id": 25745, + "id": 28434, "properties": { "facing": "east", "half": "top", @@ -293338,7 +320194,7 @@ } }, { - "id": 25746, + "id": 28435, "properties": { "facing": "east", "half": "top", @@ -293347,7 +320203,7 @@ } }, { - "id": 25747, + "id": 28436, "properties": { "facing": "east", "half": "top", @@ -293356,7 +320212,7 @@ } }, { - "id": 25748, + "id": 28437, "properties": { "facing": "east", "half": "top", @@ -293365,7 +320221,7 @@ } }, { - "id": 25749, + "id": 28438, "properties": { "facing": "east", "half": "bottom", @@ -293374,7 +320230,7 @@ } }, { - "id": 25750, + "id": 28439, "properties": { "facing": "east", "half": "bottom", @@ -293383,7 +320239,7 @@ } }, { - "id": 25751, + "id": 28440, "properties": { "facing": "east", "half": "bottom", @@ -293392,7 +320248,7 @@ } }, { - "id": 25752, + "id": 28441, "properties": { "facing": "east", "half": "bottom", @@ -293401,7 +320257,7 @@ } }, { - "id": 25753, + "id": 28442, "properties": { "facing": "east", "half": "bottom", @@ -293410,7 +320266,7 @@ } }, { - "id": 25754, + "id": 28443, "properties": { "facing": "east", "half": "bottom", @@ -293419,7 +320275,7 @@ } }, { - "id": 25755, + "id": 28444, "properties": { "facing": "east", "half": "bottom", @@ -293428,7 +320284,7 @@ } }, { - "id": 25756, + "id": 28445, "properties": { "facing": "east", "half": "bottom", @@ -293437,7 +320293,7 @@ } }, { - "id": 25757, + "id": 28446, "properties": { "facing": "east", "half": "bottom", @@ -293446,7 +320302,7 @@ } }, { - "id": 25758, + "id": 28447, "properties": { "facing": "east", "half": "bottom", @@ -293481,7 +320337,7 @@ }, "states": [ { - "id": 27711, + "id": 30184, "properties": { "facing": "north", "powered": "true", @@ -293489,7 +320345,7 @@ } }, { - "id": 27712, + "id": 30185, "properties": { "facing": "north", "powered": "true", @@ -293497,7 +320353,7 @@ } }, { - "id": 27713, + "id": 30186, "properties": { "facing": "north", "powered": "false", @@ -293505,7 +320361,7 @@ } }, { - "id": 27714, + "id": 30187, "properties": { "facing": "north", "powered": "false", @@ -293513,7 +320369,7 @@ } }, { - "id": 27715, + "id": 30188, "properties": { "facing": "east", "powered": "true", @@ -293521,7 +320377,7 @@ } }, { - "id": 27716, + "id": 30189, "properties": { "facing": "east", "powered": "true", @@ -293529,7 +320385,7 @@ } }, { - "id": 27717, + "id": 30190, "properties": { "facing": "east", "powered": "false", @@ -293537,7 +320393,7 @@ } }, { - "id": 27718, + "id": 30191, "properties": { "facing": "east", "powered": "false", @@ -293545,7 +320401,7 @@ } }, { - "id": 27719, + "id": 30192, "properties": { "facing": "south", "powered": "true", @@ -293553,7 +320409,7 @@ } }, { - "id": 27720, + "id": 30193, "properties": { "facing": "south", "powered": "true", @@ -293561,7 +320417,7 @@ } }, { - "id": 27721, + "id": 30194, "properties": { "facing": "south", "powered": "false", @@ -293569,7 +320425,7 @@ } }, { - "id": 27722, + "id": 30195, "properties": { "facing": "south", "powered": "false", @@ -293577,7 +320433,7 @@ } }, { - "id": 27723, + "id": 30196, "properties": { "facing": "west", "powered": "true", @@ -293585,7 +320441,7 @@ } }, { - "id": 27724, + "id": 30197, "properties": { "facing": "west", "powered": "true", @@ -293593,7 +320449,7 @@ } }, { - "id": 27725, + "id": 30198, "properties": { "facing": "west", "powered": "false", @@ -293601,7 +320457,7 @@ } }, { - "id": 27726, + "id": 30199, "properties": { "facing": "west", "powered": "false", @@ -293609,7 +320465,7 @@ } }, { - "id": 27727, + "id": 30200, "properties": { "facing": "up", "powered": "true", @@ -293617,7 +320473,7 @@ } }, { - "id": 27728, + "id": 30201, "properties": { "facing": "up", "powered": "true", @@ -293625,7 +320481,7 @@ } }, { - "id": 27729, + "id": 30202, "properties": { "facing": "up", "powered": "false", @@ -293634,7 +320490,7 @@ }, { "default": true, - "id": 27730, + "id": 30203, "properties": { "facing": "up", "powered": "false", @@ -293642,7 +320498,7 @@ } }, { - "id": 27731, + "id": 30204, "properties": { "facing": "down", "powered": "true", @@ -293650,7 +320506,7 @@ } }, { - "id": 27732, + "id": 30205, "properties": { "facing": "down", "powered": "true", @@ -293658,7 +320514,7 @@ } }, { - "id": 27733, + "id": 30206, "properties": { "facing": "down", "powered": "false", @@ -293666,7 +320522,7 @@ } }, { - "id": 27734, + "id": 30207, "properties": { "facing": "down", "powered": "false", @@ -293683,7 +320539,7 @@ "states": [ { "default": true, - "id": 25324 + "id": 27806 } ] }, @@ -293695,7 +320551,7 @@ "states": [ { "default": true, - "id": 25672 + "id": 27788 } ] }, @@ -294067,21 +320923,21 @@ }, "states": [ { - "id": 27087, + "id": 29560, "properties": { "lit": "true", "powered": "true" } }, { - "id": 27088, + "id": 29561, "properties": { "lit": "true", "powered": "false" } }, { - "id": 27089, + "id": 29562, "properties": { "lit": "false", "powered": "true" @@ -294089,7 +320945,7 @@ }, { "default": true, - "id": 27090, + "id": 29563, "properties": { "lit": "false", "powered": "false" @@ -294186,7 +321042,7 @@ }, "states": [ { - "id": 27239, + "id": 29712, "properties": { "type": "single", "facing": "north", @@ -294195,7 +321051,7 @@ }, { "default": true, - "id": 27240, + "id": 29713, "properties": { "type": "single", "facing": "north", @@ -294203,7 +321059,7 @@ } }, { - "id": 27241, + "id": 29714, "properties": { "type": "left", "facing": "north", @@ -294211,7 +321067,7 @@ } }, { - "id": 27242, + "id": 29715, "properties": { "type": "left", "facing": "north", @@ -294219,7 +321075,7 @@ } }, { - "id": 27243, + "id": 29716, "properties": { "type": "right", "facing": "north", @@ -294227,7 +321083,7 @@ } }, { - "id": 27244, + "id": 29717, "properties": { "type": "right", "facing": "north", @@ -294235,7 +321091,7 @@ } }, { - "id": 27245, + "id": 29718, "properties": { "type": "single", "facing": "south", @@ -294243,7 +321099,7 @@ } }, { - "id": 27246, + "id": 29719, "properties": { "type": "single", "facing": "south", @@ -294251,7 +321107,7 @@ } }, { - "id": 27247, + "id": 29720, "properties": { "type": "left", "facing": "south", @@ -294259,7 +321115,7 @@ } }, { - "id": 27248, + "id": 29721, "properties": { "type": "left", "facing": "south", @@ -294267,7 +321123,7 @@ } }, { - "id": 27249, + "id": 29722, "properties": { "type": "right", "facing": "south", @@ -294275,7 +321131,7 @@ } }, { - "id": 27250, + "id": 29723, "properties": { "type": "right", "facing": "south", @@ -294283,7 +321139,7 @@ } }, { - "id": 27251, + "id": 29724, "properties": { "type": "single", "facing": "west", @@ -294291,7 +321147,7 @@ } }, { - "id": 27252, + "id": 29725, "properties": { "type": "single", "facing": "west", @@ -294299,7 +321155,7 @@ } }, { - "id": 27253, + "id": 29726, "properties": { "type": "left", "facing": "west", @@ -294307,7 +321163,7 @@ } }, { - "id": 27254, + "id": 29727, "properties": { "type": "left", "facing": "west", @@ -294315,7 +321171,7 @@ } }, { - "id": 27255, + "id": 29728, "properties": { "type": "right", "facing": "west", @@ -294323,7 +321179,7 @@ } }, { - "id": 27256, + "id": 29729, "properties": { "type": "right", "facing": "west", @@ -294331,7 +321187,7 @@ } }, { - "id": 27257, + "id": 29730, "properties": { "type": "single", "facing": "east", @@ -294339,7 +321195,7 @@ } }, { - "id": 27258, + "id": 29731, "properties": { "type": "single", "facing": "east", @@ -294347,7 +321203,7 @@ } }, { - "id": 27259, + "id": 29732, "properties": { "type": "left", "facing": "east", @@ -294355,7 +321211,7 @@ } }, { - "id": 27260, + "id": 29733, "properties": { "type": "left", "facing": "east", @@ -294363,7 +321219,7 @@ } }, { - "id": 27261, + "id": 29734, "properties": { "type": "right", "facing": "east", @@ -294371,7 +321227,7 @@ } }, { - "id": 27262, + "id": 29735, "properties": { "type": "right", "facing": "east", @@ -294412,7 +321268,7 @@ }, "states": [ { - "id": 26471, + "id": 28880, "properties": { "facing": "north", "half": "upper", @@ -294422,7 +321278,7 @@ } }, { - "id": 26472, + "id": 28881, "properties": { "facing": "north", "half": "upper", @@ -294432,7 +321288,7 @@ } }, { - "id": 26473, + "id": 28882, "properties": { "facing": "north", "half": "upper", @@ -294442,7 +321298,7 @@ } }, { - "id": 26474, + "id": 28883, "properties": { "facing": "north", "half": "upper", @@ -294452,7 +321308,7 @@ } }, { - "id": 26475, + "id": 28884, "properties": { "facing": "north", "half": "upper", @@ -294462,7 +321318,7 @@ } }, { - "id": 26476, + "id": 28885, "properties": { "facing": "north", "half": "upper", @@ -294472,7 +321328,7 @@ } }, { - "id": 26477, + "id": 28886, "properties": { "facing": "north", "half": "upper", @@ -294482,7 +321338,7 @@ } }, { - "id": 26478, + "id": 28887, "properties": { "facing": "north", "half": "upper", @@ -294492,7 +321348,7 @@ } }, { - "id": 26479, + "id": 28888, "properties": { "facing": "north", "half": "lower", @@ -294502,7 +321358,7 @@ } }, { - "id": 26480, + "id": 28889, "properties": { "facing": "north", "half": "lower", @@ -294512,7 +321368,7 @@ } }, { - "id": 26481, + "id": 28890, "properties": { "facing": "north", "half": "lower", @@ -294523,7 +321379,7 @@ }, { "default": true, - "id": 26482, + "id": 28891, "properties": { "facing": "north", "half": "lower", @@ -294533,7 +321389,7 @@ } }, { - "id": 26483, + "id": 28892, "properties": { "facing": "north", "half": "lower", @@ -294543,7 +321399,7 @@ } }, { - "id": 26484, + "id": 28893, "properties": { "facing": "north", "half": "lower", @@ -294553,7 +321409,7 @@ } }, { - "id": 26485, + "id": 28894, "properties": { "facing": "north", "half": "lower", @@ -294563,7 +321419,7 @@ } }, { - "id": 26486, + "id": 28895, "properties": { "facing": "north", "half": "lower", @@ -294573,7 +321429,7 @@ } }, { - "id": 26487, + "id": 28896, "properties": { "facing": "south", "half": "upper", @@ -294583,7 +321439,7 @@ } }, { - "id": 26488, + "id": 28897, "properties": { "facing": "south", "half": "upper", @@ -294593,7 +321449,7 @@ } }, { - "id": 26489, + "id": 28898, "properties": { "facing": "south", "half": "upper", @@ -294603,7 +321459,7 @@ } }, { - "id": 26490, + "id": 28899, "properties": { "facing": "south", "half": "upper", @@ -294613,7 +321469,7 @@ } }, { - "id": 26491, + "id": 28900, "properties": { "facing": "south", "half": "upper", @@ -294623,7 +321479,7 @@ } }, { - "id": 26492, + "id": 28901, "properties": { "facing": "south", "half": "upper", @@ -294633,7 +321489,7 @@ } }, { - "id": 26493, + "id": 28902, "properties": { "facing": "south", "half": "upper", @@ -294643,7 +321499,7 @@ } }, { - "id": 26494, + "id": 28903, "properties": { "facing": "south", "half": "upper", @@ -294653,7 +321509,7 @@ } }, { - "id": 26495, + "id": 28904, "properties": { "facing": "south", "half": "lower", @@ -294663,7 +321519,7 @@ } }, { - "id": 26496, + "id": 28905, "properties": { "facing": "south", "half": "lower", @@ -294673,7 +321529,7 @@ } }, { - "id": 26497, + "id": 28906, "properties": { "facing": "south", "half": "lower", @@ -294683,7 +321539,7 @@ } }, { - "id": 26498, + "id": 28907, "properties": { "facing": "south", "half": "lower", @@ -294693,7 +321549,7 @@ } }, { - "id": 26499, + "id": 28908, "properties": { "facing": "south", "half": "lower", @@ -294703,7 +321559,7 @@ } }, { - "id": 26500, + "id": 28909, "properties": { "facing": "south", "half": "lower", @@ -294713,7 +321569,7 @@ } }, { - "id": 26501, + "id": 28910, "properties": { "facing": "south", "half": "lower", @@ -294723,7 +321579,7 @@ } }, { - "id": 26502, + "id": 28911, "properties": { "facing": "south", "half": "lower", @@ -294733,7 +321589,7 @@ } }, { - "id": 26503, + "id": 28912, "properties": { "facing": "west", "half": "upper", @@ -294743,7 +321599,7 @@ } }, { - "id": 26504, + "id": 28913, "properties": { "facing": "west", "half": "upper", @@ -294753,7 +321609,7 @@ } }, { - "id": 26505, + "id": 28914, "properties": { "facing": "west", "half": "upper", @@ -294763,7 +321619,7 @@ } }, { - "id": 26506, + "id": 28915, "properties": { "facing": "west", "half": "upper", @@ -294773,7 +321629,7 @@ } }, { - "id": 26507, + "id": 28916, "properties": { "facing": "west", "half": "upper", @@ -294783,7 +321639,7 @@ } }, { - "id": 26508, + "id": 28917, "properties": { "facing": "west", "half": "upper", @@ -294793,7 +321649,7 @@ } }, { - "id": 26509, + "id": 28918, "properties": { "facing": "west", "half": "upper", @@ -294803,7 +321659,7 @@ } }, { - "id": 26510, + "id": 28919, "properties": { "facing": "west", "half": "upper", @@ -294813,7 +321669,7 @@ } }, { - "id": 26511, + "id": 28920, "properties": { "facing": "west", "half": "lower", @@ -294823,7 +321679,7 @@ } }, { - "id": 26512, + "id": 28921, "properties": { "facing": "west", "half": "lower", @@ -294833,7 +321689,7 @@ } }, { - "id": 26513, + "id": 28922, "properties": { "facing": "west", "half": "lower", @@ -294843,7 +321699,7 @@ } }, { - "id": 26514, + "id": 28923, "properties": { "facing": "west", "half": "lower", @@ -294853,7 +321709,7 @@ } }, { - "id": 26515, + "id": 28924, "properties": { "facing": "west", "half": "lower", @@ -294863,7 +321719,7 @@ } }, { - "id": 26516, + "id": 28925, "properties": { "facing": "west", "half": "lower", @@ -294873,7 +321729,7 @@ } }, { - "id": 26517, + "id": 28926, "properties": { "facing": "west", "half": "lower", @@ -294883,7 +321739,7 @@ } }, { - "id": 26518, + "id": 28927, "properties": { "facing": "west", "half": "lower", @@ -294893,7 +321749,7 @@ } }, { - "id": 26519, + "id": 28928, "properties": { "facing": "east", "half": "upper", @@ -294903,7 +321759,7 @@ } }, { - "id": 26520, + "id": 28929, "properties": { "facing": "east", "half": "upper", @@ -294913,7 +321769,7 @@ } }, { - "id": 26521, + "id": 28930, "properties": { "facing": "east", "half": "upper", @@ -294923,7 +321779,7 @@ } }, { - "id": 26522, + "id": 28931, "properties": { "facing": "east", "half": "upper", @@ -294933,7 +321789,7 @@ } }, { - "id": 26523, + "id": 28932, "properties": { "facing": "east", "half": "upper", @@ -294943,7 +321799,7 @@ } }, { - "id": 26524, + "id": 28933, "properties": { "facing": "east", "half": "upper", @@ -294953,7 +321809,7 @@ } }, { - "id": 26525, + "id": 28934, "properties": { "facing": "east", "half": "upper", @@ -294963,7 +321819,7 @@ } }, { - "id": 26526, + "id": 28935, "properties": { "facing": "east", "half": "upper", @@ -294973,7 +321829,7 @@ } }, { - "id": 26527, + "id": 28936, "properties": { "facing": "east", "half": "lower", @@ -294983,7 +321839,7 @@ } }, { - "id": 26528, + "id": 28937, "properties": { "facing": "east", "half": "lower", @@ -294993,7 +321849,7 @@ } }, { - "id": 26529, + "id": 28938, "properties": { "facing": "east", "half": "lower", @@ -295003,7 +321859,7 @@ } }, { - "id": 26530, + "id": 28939, "properties": { "facing": "east", "half": "lower", @@ -295013,7 +321869,7 @@ } }, { - "id": 26531, + "id": 28940, "properties": { "facing": "east", "half": "lower", @@ -295023,7 +321879,7 @@ } }, { - "id": 26532, + "id": 28941, "properties": { "facing": "east", "half": "lower", @@ -295033,7 +321889,7 @@ } }, { - "id": 26533, + "id": 28942, "properties": { "facing": "east", "half": "lower", @@ -295043,7 +321899,7 @@ } }, { - "id": 26534, + "id": 28943, "properties": { "facing": "east", "half": "lower", @@ -295080,7 +321936,7 @@ }, "states": [ { - "id": 27479, + "id": 29952, "properties": { "copper_golem_pose": "standing", "facing": "north", @@ -295089,7 +321945,7 @@ }, { "default": true, - "id": 27480, + "id": 29953, "properties": { "copper_golem_pose": "standing", "facing": "north", @@ -295097,7 +321953,7 @@ } }, { - "id": 27481, + "id": 29954, "properties": { "copper_golem_pose": "standing", "facing": "south", @@ -295105,7 +321961,7 @@ } }, { - "id": 27482, + "id": 29955, "properties": { "copper_golem_pose": "standing", "facing": "south", @@ -295113,7 +321969,7 @@ } }, { - "id": 27483, + "id": 29956, "properties": { "copper_golem_pose": "standing", "facing": "west", @@ -295121,7 +321977,7 @@ } }, { - "id": 27484, + "id": 29957, "properties": { "copper_golem_pose": "standing", "facing": "west", @@ -295129,7 +321985,7 @@ } }, { - "id": 27485, + "id": 29958, "properties": { "copper_golem_pose": "standing", "facing": "east", @@ -295137,7 +321993,7 @@ } }, { - "id": 27486, + "id": 29959, "properties": { "copper_golem_pose": "standing", "facing": "east", @@ -295145,7 +322001,7 @@ } }, { - "id": 27487, + "id": 29960, "properties": { "copper_golem_pose": "sitting", "facing": "north", @@ -295153,7 +322009,7 @@ } }, { - "id": 27488, + "id": 29961, "properties": { "copper_golem_pose": "sitting", "facing": "north", @@ -295161,7 +322017,7 @@ } }, { - "id": 27489, + "id": 29962, "properties": { "copper_golem_pose": "sitting", "facing": "south", @@ -295169,7 +322025,7 @@ } }, { - "id": 27490, + "id": 29963, "properties": { "copper_golem_pose": "sitting", "facing": "south", @@ -295177,7 +322033,7 @@ } }, { - "id": 27491, + "id": 29964, "properties": { "copper_golem_pose": "sitting", "facing": "west", @@ -295185,7 +322041,7 @@ } }, { - "id": 27492, + "id": 29965, "properties": { "copper_golem_pose": "sitting", "facing": "west", @@ -295193,7 +322049,7 @@ } }, { - "id": 27493, + "id": 29966, "properties": { "copper_golem_pose": "sitting", "facing": "east", @@ -295201,7 +322057,7 @@ } }, { - "id": 27494, + "id": 29967, "properties": { "copper_golem_pose": "sitting", "facing": "east", @@ -295209,7 +322065,7 @@ } }, { - "id": 27495, + "id": 29968, "properties": { "copper_golem_pose": "running", "facing": "north", @@ -295217,7 +322073,7 @@ } }, { - "id": 27496, + "id": 29969, "properties": { "copper_golem_pose": "running", "facing": "north", @@ -295225,7 +322081,7 @@ } }, { - "id": 27497, + "id": 29970, "properties": { "copper_golem_pose": "running", "facing": "south", @@ -295233,7 +322089,7 @@ } }, { - "id": 27498, + "id": 29971, "properties": { "copper_golem_pose": "running", "facing": "south", @@ -295241,7 +322097,7 @@ } }, { - "id": 27499, + "id": 29972, "properties": { "copper_golem_pose": "running", "facing": "west", @@ -295249,7 +322105,7 @@ } }, { - "id": 27500, + "id": 29973, "properties": { "copper_golem_pose": "running", "facing": "west", @@ -295257,7 +322113,7 @@ } }, { - "id": 27501, + "id": 29974, "properties": { "copper_golem_pose": "running", "facing": "east", @@ -295265,7 +322121,7 @@ } }, { - "id": 27502, + "id": 29975, "properties": { "copper_golem_pose": "running", "facing": "east", @@ -295273,7 +322129,7 @@ } }, { - "id": 27503, + "id": 29976, "properties": { "copper_golem_pose": "star", "facing": "north", @@ -295281,7 +322137,7 @@ } }, { - "id": 27504, + "id": 29977, "properties": { "copper_golem_pose": "star", "facing": "north", @@ -295289,7 +322145,7 @@ } }, { - "id": 27505, + "id": 29978, "properties": { "copper_golem_pose": "star", "facing": "south", @@ -295297,7 +322153,7 @@ } }, { - "id": 27506, + "id": 29979, "properties": { "copper_golem_pose": "star", "facing": "south", @@ -295305,7 +322161,7 @@ } }, { - "id": 27507, + "id": 29980, "properties": { "copper_golem_pose": "star", "facing": "west", @@ -295313,7 +322169,7 @@ } }, { - "id": 27508, + "id": 29981, "properties": { "copper_golem_pose": "star", "facing": "west", @@ -295321,7 +322177,7 @@ } }, { - "id": 27509, + "id": 29982, "properties": { "copper_golem_pose": "star", "facing": "east", @@ -295329,7 +322185,7 @@ } }, { - "id": 27510, + "id": 29983, "properties": { "copper_golem_pose": "star", "facing": "east", @@ -295351,14 +322207,14 @@ }, "states": [ { - "id": 27059, + "id": 29532, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 27060, + "id": 29533, "properties": { "waterlogged": "false" } @@ -295444,7 +322300,7 @@ }, "states": [ { - "id": 26983, + "id": 29392, "properties": { "facing": "north", "half": "top", @@ -295454,7 +322310,7 @@ } }, { - "id": 26984, + "id": 29393, "properties": { "facing": "north", "half": "top", @@ -295464,7 +322320,7 @@ } }, { - "id": 26985, + "id": 29394, "properties": { "facing": "north", "half": "top", @@ -295474,7 +322330,7 @@ } }, { - "id": 26986, + "id": 29395, "properties": { "facing": "north", "half": "top", @@ -295484,7 +322340,7 @@ } }, { - "id": 26987, + "id": 29396, "properties": { "facing": "north", "half": "top", @@ -295494,7 +322350,7 @@ } }, { - "id": 26988, + "id": 29397, "properties": { "facing": "north", "half": "top", @@ -295504,7 +322360,7 @@ } }, { - "id": 26989, + "id": 29398, "properties": { "facing": "north", "half": "top", @@ -295514,7 +322370,7 @@ } }, { - "id": 26990, + "id": 29399, "properties": { "facing": "north", "half": "top", @@ -295524,7 +322380,7 @@ } }, { - "id": 26991, + "id": 29400, "properties": { "facing": "north", "half": "bottom", @@ -295534,7 +322390,7 @@ } }, { - "id": 26992, + "id": 29401, "properties": { "facing": "north", "half": "bottom", @@ -295544,7 +322400,7 @@ } }, { - "id": 26993, + "id": 29402, "properties": { "facing": "north", "half": "bottom", @@ -295554,7 +322410,7 @@ } }, { - "id": 26994, + "id": 29403, "properties": { "facing": "north", "half": "bottom", @@ -295564,7 +322420,7 @@ } }, { - "id": 26995, + "id": 29404, "properties": { "facing": "north", "half": "bottom", @@ -295574,7 +322430,7 @@ } }, { - "id": 26996, + "id": 29405, "properties": { "facing": "north", "half": "bottom", @@ -295584,7 +322440,7 @@ } }, { - "id": 26997, + "id": 29406, "properties": { "facing": "north", "half": "bottom", @@ -295595,7 +322451,7 @@ }, { "default": true, - "id": 26998, + "id": 29407, "properties": { "facing": "north", "half": "bottom", @@ -295605,7 +322461,7 @@ } }, { - "id": 26999, + "id": 29408, "properties": { "facing": "south", "half": "top", @@ -295615,7 +322471,7 @@ } }, { - "id": 27000, + "id": 29409, "properties": { "facing": "south", "half": "top", @@ -295625,7 +322481,7 @@ } }, { - "id": 27001, + "id": 29410, "properties": { "facing": "south", "half": "top", @@ -295635,7 +322491,7 @@ } }, { - "id": 27002, + "id": 29411, "properties": { "facing": "south", "half": "top", @@ -295645,7 +322501,7 @@ } }, { - "id": 27003, + "id": 29412, "properties": { "facing": "south", "half": "top", @@ -295655,7 +322511,7 @@ } }, { - "id": 27004, + "id": 29413, "properties": { "facing": "south", "half": "top", @@ -295665,7 +322521,7 @@ } }, { - "id": 27005, + "id": 29414, "properties": { "facing": "south", "half": "top", @@ -295675,7 +322531,7 @@ } }, { - "id": 27006, + "id": 29415, "properties": { "facing": "south", "half": "top", @@ -295685,7 +322541,7 @@ } }, { - "id": 27007, + "id": 29416, "properties": { "facing": "south", "half": "bottom", @@ -295695,7 +322551,7 @@ } }, { - "id": 27008, + "id": 29417, "properties": { "facing": "south", "half": "bottom", @@ -295705,7 +322561,7 @@ } }, { - "id": 27009, + "id": 29418, "properties": { "facing": "south", "half": "bottom", @@ -295715,7 +322571,7 @@ } }, { - "id": 27010, + "id": 29419, "properties": { "facing": "south", "half": "bottom", @@ -295725,7 +322581,7 @@ } }, { - "id": 27011, + "id": 29420, "properties": { "facing": "south", "half": "bottom", @@ -295735,7 +322591,7 @@ } }, { - "id": 27012, + "id": 29421, "properties": { "facing": "south", "half": "bottom", @@ -295745,7 +322601,7 @@ } }, { - "id": 27013, + "id": 29422, "properties": { "facing": "south", "half": "bottom", @@ -295755,7 +322611,7 @@ } }, { - "id": 27014, + "id": 29423, "properties": { "facing": "south", "half": "bottom", @@ -295765,7 +322621,7 @@ } }, { - "id": 27015, + "id": 29424, "properties": { "facing": "west", "half": "top", @@ -295775,7 +322631,7 @@ } }, { - "id": 27016, + "id": 29425, "properties": { "facing": "west", "half": "top", @@ -295785,7 +322641,7 @@ } }, { - "id": 27017, + "id": 29426, "properties": { "facing": "west", "half": "top", @@ -295795,7 +322651,7 @@ } }, { - "id": 27018, + "id": 29427, "properties": { "facing": "west", "half": "top", @@ -295805,7 +322661,7 @@ } }, { - "id": 27019, + "id": 29428, "properties": { "facing": "west", "half": "top", @@ -295815,7 +322671,7 @@ } }, { - "id": 27020, + "id": 29429, "properties": { "facing": "west", "half": "top", @@ -295825,7 +322681,7 @@ } }, { - "id": 27021, + "id": 29430, "properties": { "facing": "west", "half": "top", @@ -295835,7 +322691,7 @@ } }, { - "id": 27022, + "id": 29431, "properties": { "facing": "west", "half": "top", @@ -295845,7 +322701,7 @@ } }, { - "id": 27023, + "id": 29432, "properties": { "facing": "west", "half": "bottom", @@ -295855,7 +322711,7 @@ } }, { - "id": 27024, + "id": 29433, "properties": { "facing": "west", "half": "bottom", @@ -295865,7 +322721,7 @@ } }, { - "id": 27025, + "id": 29434, "properties": { "facing": "west", "half": "bottom", @@ -295875,7 +322731,7 @@ } }, { - "id": 27026, + "id": 29435, "properties": { "facing": "west", "half": "bottom", @@ -295885,7 +322741,7 @@ } }, { - "id": 27027, + "id": 29436, "properties": { "facing": "west", "half": "bottom", @@ -295895,7 +322751,7 @@ } }, { - "id": 27028, + "id": 29437, "properties": { "facing": "west", "half": "bottom", @@ -295905,7 +322761,7 @@ } }, { - "id": 27029, + "id": 29438, "properties": { "facing": "west", "half": "bottom", @@ -295915,7 +322771,7 @@ } }, { - "id": 27030, + "id": 29439, "properties": { "facing": "west", "half": "bottom", @@ -295925,7 +322781,7 @@ } }, { - "id": 27031, + "id": 29440, "properties": { "facing": "east", "half": "top", @@ -295935,7 +322791,7 @@ } }, { - "id": 27032, + "id": 29441, "properties": { "facing": "east", "half": "top", @@ -295945,7 +322801,7 @@ } }, { - "id": 27033, + "id": 29442, "properties": { "facing": "east", "half": "top", @@ -295955,7 +322811,7 @@ } }, { - "id": 27034, + "id": 29443, "properties": { "facing": "east", "half": "top", @@ -295965,7 +322821,7 @@ } }, { - "id": 27035, + "id": 29444, "properties": { "facing": "east", "half": "top", @@ -295975,7 +322831,7 @@ } }, { - "id": 27036, + "id": 29445, "properties": { "facing": "east", "half": "top", @@ -295985,7 +322841,7 @@ } }, { - "id": 27037, + "id": 29446, "properties": { "facing": "east", "half": "top", @@ -295995,7 +322851,7 @@ } }, { - "id": 27038, + "id": 29447, "properties": { "facing": "east", "half": "top", @@ -296005,7 +322861,7 @@ } }, { - "id": 27039, + "id": 29448, "properties": { "facing": "east", "half": "bottom", @@ -296015,7 +322871,7 @@ } }, { - "id": 27040, + "id": 29449, "properties": { "facing": "east", "half": "bottom", @@ -296025,7 +322881,7 @@ } }, { - "id": 27041, + "id": 29450, "properties": { "facing": "east", "half": "bottom", @@ -296035,7 +322891,7 @@ } }, { - "id": 27042, + "id": 29451, "properties": { "facing": "east", "half": "bottom", @@ -296045,7 +322901,7 @@ } }, { - "id": 27043, + "id": 29452, "properties": { "facing": "east", "half": "bottom", @@ -296055,7 +322911,7 @@ } }, { - "id": 27044, + "id": 29453, "properties": { "facing": "east", "half": "bottom", @@ -296065,7 +322921,7 @@ } }, { - "id": 27045, + "id": 29454, "properties": { "facing": "east", "half": "bottom", @@ -296075,7 +322931,7 @@ } }, { - "id": 27046, + "id": 29455, "properties": { "facing": "east", "half": "bottom", @@ -296094,7 +322950,7 @@ "states": [ { "default": true, - "id": 25676 + "id": 27798 } ] }, @@ -296116,21 +322972,21 @@ }, "states": [ { - "id": 26005, + "id": 28484, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 26006, + "id": 28485, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 26007, + "id": 28486, "properties": { "type": "bottom", "waterlogged": "true" @@ -296138,21 +322994,21 @@ }, { "default": true, - "id": 26008, + "id": 28487, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 26009, + "id": 28488, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 26010, + "id": 28489, "properties": { "type": "double", "waterlogged": "false" @@ -296193,7 +323049,7 @@ }, "states": [ { - "id": 25759, + "id": 28288, "properties": { "facing": "north", "half": "top", @@ -296202,7 +323058,7 @@ } }, { - "id": 25760, + "id": 28289, "properties": { "facing": "north", "half": "top", @@ -296211,7 +323067,7 @@ } }, { - "id": 25761, + "id": 28290, "properties": { "facing": "north", "half": "top", @@ -296220,7 +323076,7 @@ } }, { - "id": 25762, + "id": 28291, "properties": { "facing": "north", "half": "top", @@ -296229,7 +323085,7 @@ } }, { - "id": 25763, + "id": 28292, "properties": { "facing": "north", "half": "top", @@ -296238,7 +323094,7 @@ } }, { - "id": 25764, + "id": 28293, "properties": { "facing": "north", "half": "top", @@ -296247,7 +323103,7 @@ } }, { - "id": 25765, + "id": 28294, "properties": { "facing": "north", "half": "top", @@ -296256,7 +323112,7 @@ } }, { - "id": 25766, + "id": 28295, "properties": { "facing": "north", "half": "top", @@ -296265,7 +323121,7 @@ } }, { - "id": 25767, + "id": 28296, "properties": { "facing": "north", "half": "top", @@ -296274,7 +323130,7 @@ } }, { - "id": 25768, + "id": 28297, "properties": { "facing": "north", "half": "top", @@ -296283,7 +323139,7 @@ } }, { - "id": 25769, + "id": 28298, "properties": { "facing": "north", "half": "bottom", @@ -296293,7 +323149,7 @@ }, { "default": true, - "id": 25770, + "id": 28299, "properties": { "facing": "north", "half": "bottom", @@ -296302,7 +323158,7 @@ } }, { - "id": 25771, + "id": 28300, "properties": { "facing": "north", "half": "bottom", @@ -296311,7 +323167,7 @@ } }, { - "id": 25772, + "id": 28301, "properties": { "facing": "north", "half": "bottom", @@ -296320,7 +323176,7 @@ } }, { - "id": 25773, + "id": 28302, "properties": { "facing": "north", "half": "bottom", @@ -296329,7 +323185,7 @@ } }, { - "id": 25774, + "id": 28303, "properties": { "facing": "north", "half": "bottom", @@ -296338,7 +323194,7 @@ } }, { - "id": 25775, + "id": 28304, "properties": { "facing": "north", "half": "bottom", @@ -296347,7 +323203,7 @@ } }, { - "id": 25776, + "id": 28305, "properties": { "facing": "north", "half": "bottom", @@ -296356,7 +323212,7 @@ } }, { - "id": 25777, + "id": 28306, "properties": { "facing": "north", "half": "bottom", @@ -296365,7 +323221,7 @@ } }, { - "id": 25778, + "id": 28307, "properties": { "facing": "north", "half": "bottom", @@ -296374,7 +323230,7 @@ } }, { - "id": 25779, + "id": 28308, "properties": { "facing": "south", "half": "top", @@ -296383,7 +323239,7 @@ } }, { - "id": 25780, + "id": 28309, "properties": { "facing": "south", "half": "top", @@ -296392,7 +323248,7 @@ } }, { - "id": 25781, + "id": 28310, "properties": { "facing": "south", "half": "top", @@ -296401,7 +323257,7 @@ } }, { - "id": 25782, + "id": 28311, "properties": { "facing": "south", "half": "top", @@ -296410,7 +323266,7 @@ } }, { - "id": 25783, + "id": 28312, "properties": { "facing": "south", "half": "top", @@ -296419,7 +323275,7 @@ } }, { - "id": 25784, + "id": 28313, "properties": { "facing": "south", "half": "top", @@ -296428,7 +323284,7 @@ } }, { - "id": 25785, + "id": 28314, "properties": { "facing": "south", "half": "top", @@ -296437,7 +323293,7 @@ } }, { - "id": 25786, + "id": 28315, "properties": { "facing": "south", "half": "top", @@ -296446,7 +323302,7 @@ } }, { - "id": 25787, + "id": 28316, "properties": { "facing": "south", "half": "top", @@ -296455,7 +323311,7 @@ } }, { - "id": 25788, + "id": 28317, "properties": { "facing": "south", "half": "top", @@ -296464,7 +323320,7 @@ } }, { - "id": 25789, + "id": 28318, "properties": { "facing": "south", "half": "bottom", @@ -296473,7 +323329,7 @@ } }, { - "id": 25790, + "id": 28319, "properties": { "facing": "south", "half": "bottom", @@ -296482,7 +323338,7 @@ } }, { - "id": 25791, + "id": 28320, "properties": { "facing": "south", "half": "bottom", @@ -296491,7 +323347,7 @@ } }, { - "id": 25792, + "id": 28321, "properties": { "facing": "south", "half": "bottom", @@ -296500,7 +323356,7 @@ } }, { - "id": 25793, + "id": 28322, "properties": { "facing": "south", "half": "bottom", @@ -296509,7 +323365,7 @@ } }, { - "id": 25794, + "id": 28323, "properties": { "facing": "south", "half": "bottom", @@ -296518,7 +323374,7 @@ } }, { - "id": 25795, + "id": 28324, "properties": { "facing": "south", "half": "bottom", @@ -296527,7 +323383,7 @@ } }, { - "id": 25796, + "id": 28325, "properties": { "facing": "south", "half": "bottom", @@ -296536,7 +323392,7 @@ } }, { - "id": 25797, + "id": 28326, "properties": { "facing": "south", "half": "bottom", @@ -296545,7 +323401,7 @@ } }, { - "id": 25798, + "id": 28327, "properties": { "facing": "south", "half": "bottom", @@ -296554,7 +323410,7 @@ } }, { - "id": 25799, + "id": 28328, "properties": { "facing": "west", "half": "top", @@ -296563,7 +323419,7 @@ } }, { - "id": 25800, + "id": 28329, "properties": { "facing": "west", "half": "top", @@ -296572,7 +323428,7 @@ } }, { - "id": 25801, + "id": 28330, "properties": { "facing": "west", "half": "top", @@ -296581,7 +323437,7 @@ } }, { - "id": 25802, + "id": 28331, "properties": { "facing": "west", "half": "top", @@ -296590,7 +323446,7 @@ } }, { - "id": 25803, + "id": 28332, "properties": { "facing": "west", "half": "top", @@ -296599,7 +323455,7 @@ } }, { - "id": 25804, + "id": 28333, "properties": { "facing": "west", "half": "top", @@ -296608,7 +323464,7 @@ } }, { - "id": 25805, + "id": 28334, "properties": { "facing": "west", "half": "top", @@ -296617,7 +323473,7 @@ } }, { - "id": 25806, + "id": 28335, "properties": { "facing": "west", "half": "top", @@ -296626,7 +323482,7 @@ } }, { - "id": 25807, + "id": 28336, "properties": { "facing": "west", "half": "top", @@ -296635,7 +323491,7 @@ } }, { - "id": 25808, + "id": 28337, "properties": { "facing": "west", "half": "top", @@ -296644,7 +323500,7 @@ } }, { - "id": 25809, + "id": 28338, "properties": { "facing": "west", "half": "bottom", @@ -296653,7 +323509,7 @@ } }, { - "id": 25810, + "id": 28339, "properties": { "facing": "west", "half": "bottom", @@ -296662,7 +323518,7 @@ } }, { - "id": 25811, + "id": 28340, "properties": { "facing": "west", "half": "bottom", @@ -296671,7 +323527,7 @@ } }, { - "id": 25812, + "id": 28341, "properties": { "facing": "west", "half": "bottom", @@ -296680,7 +323536,7 @@ } }, { - "id": 25813, + "id": 28342, "properties": { "facing": "west", "half": "bottom", @@ -296689,7 +323545,7 @@ } }, { - "id": 25814, + "id": 28343, "properties": { "facing": "west", "half": "bottom", @@ -296698,7 +323554,7 @@ } }, { - "id": 25815, + "id": 28344, "properties": { "facing": "west", "half": "bottom", @@ -296707,7 +323563,7 @@ } }, { - "id": 25816, + "id": 28345, "properties": { "facing": "west", "half": "bottom", @@ -296716,7 +323572,7 @@ } }, { - "id": 25817, + "id": 28346, "properties": { "facing": "west", "half": "bottom", @@ -296725,7 +323581,7 @@ } }, { - "id": 25818, + "id": 28347, "properties": { "facing": "west", "half": "bottom", @@ -296734,7 +323590,7 @@ } }, { - "id": 25819, + "id": 28348, "properties": { "facing": "east", "half": "top", @@ -296743,7 +323599,7 @@ } }, { - "id": 25820, + "id": 28349, "properties": { "facing": "east", "half": "top", @@ -296752,7 +323608,7 @@ } }, { - "id": 25821, + "id": 28350, "properties": { "facing": "east", "half": "top", @@ -296761,7 +323617,7 @@ } }, { - "id": 25822, + "id": 28351, "properties": { "facing": "east", "half": "top", @@ -296770,7 +323626,7 @@ } }, { - "id": 25823, + "id": 28352, "properties": { "facing": "east", "half": "top", @@ -296779,7 +323635,7 @@ } }, { - "id": 25824, + "id": 28353, "properties": { "facing": "east", "half": "top", @@ -296788,7 +323644,7 @@ } }, { - "id": 25825, + "id": 28354, "properties": { "facing": "east", "half": "top", @@ -296797,7 +323653,7 @@ } }, { - "id": 25826, + "id": 28355, "properties": { "facing": "east", "half": "top", @@ -296806,7 +323662,7 @@ } }, { - "id": 25827, + "id": 28356, "properties": { "facing": "east", "half": "top", @@ -296815,7 +323671,7 @@ } }, { - "id": 25828, + "id": 28357, "properties": { "facing": "east", "half": "top", @@ -296824,7 +323680,7 @@ } }, { - "id": 25829, + "id": 28358, "properties": { "facing": "east", "half": "bottom", @@ -296833,7 +323689,7 @@ } }, { - "id": 25830, + "id": 28359, "properties": { "facing": "east", "half": "bottom", @@ -296842,7 +323698,7 @@ } }, { - "id": 25831, + "id": 28360, "properties": { "facing": "east", "half": "bottom", @@ -296851,7 +323707,7 @@ } }, { - "id": 25832, + "id": 28361, "properties": { "facing": "east", "half": "bottom", @@ -296860,7 +323716,7 @@ } }, { - "id": 25833, + "id": 28362, "properties": { "facing": "east", "half": "bottom", @@ -296869,7 +323725,7 @@ } }, { - "id": 25834, + "id": 28363, "properties": { "facing": "east", "half": "bottom", @@ -296878,7 +323734,7 @@ } }, { - "id": 25835, + "id": 28364, "properties": { "facing": "east", "half": "bottom", @@ -296887,7 +323743,7 @@ } }, { - "id": 25836, + "id": 28365, "properties": { "facing": "east", "half": "bottom", @@ -296896,7 +323752,7 @@ } }, { - "id": 25837, + "id": 28366, "properties": { "facing": "east", "half": "bottom", @@ -296905,7 +323761,7 @@ } }, { - "id": 25838, + "id": 28367, "properties": { "facing": "east", "half": "bottom", @@ -296940,7 +323796,7 @@ }, "states": [ { - "id": 27687, + "id": 30160, "properties": { "facing": "north", "powered": "true", @@ -296948,7 +323804,7 @@ } }, { - "id": 27688, + "id": 30161, "properties": { "facing": "north", "powered": "true", @@ -296956,7 +323812,7 @@ } }, { - "id": 27689, + "id": 30162, "properties": { "facing": "north", "powered": "false", @@ -296964,7 +323820,7 @@ } }, { - "id": 27690, + "id": 30163, "properties": { "facing": "north", "powered": "false", @@ -296972,7 +323828,7 @@ } }, { - "id": 27691, + "id": 30164, "properties": { "facing": "east", "powered": "true", @@ -296980,7 +323836,7 @@ } }, { - "id": 27692, + "id": 30165, "properties": { "facing": "east", "powered": "true", @@ -296988,7 +323844,7 @@ } }, { - "id": 27693, + "id": 30166, "properties": { "facing": "east", "powered": "false", @@ -296996,7 +323852,7 @@ } }, { - "id": 27694, + "id": 30167, "properties": { "facing": "east", "powered": "false", @@ -297004,7 +323860,7 @@ } }, { - "id": 27695, + "id": 30168, "properties": { "facing": "south", "powered": "true", @@ -297012,7 +323868,7 @@ } }, { - "id": 27696, + "id": 30169, "properties": { "facing": "south", "powered": "true", @@ -297020,7 +323876,7 @@ } }, { - "id": 27697, + "id": 30170, "properties": { "facing": "south", "powered": "false", @@ -297028,7 +323884,7 @@ } }, { - "id": 27698, + "id": 30171, "properties": { "facing": "south", "powered": "false", @@ -297036,7 +323892,7 @@ } }, { - "id": 27699, + "id": 30172, "properties": { "facing": "west", "powered": "true", @@ -297044,7 +323900,7 @@ } }, { - "id": 27700, + "id": 30173, "properties": { "facing": "west", "powered": "true", @@ -297052,7 +323908,7 @@ } }, { - "id": 27701, + "id": 30174, "properties": { "facing": "west", "powered": "false", @@ -297060,7 +323916,7 @@ } }, { - "id": 27702, + "id": 30175, "properties": { "facing": "west", "powered": "false", @@ -297068,7 +323924,7 @@ } }, { - "id": 27703, + "id": 30176, "properties": { "facing": "up", "powered": "true", @@ -297076,7 +323932,7 @@ } }, { - "id": 27704, + "id": 30177, "properties": { "facing": "up", "powered": "true", @@ -297084,7 +323940,7 @@ } }, { - "id": 27705, + "id": 30178, "properties": { "facing": "up", "powered": "false", @@ -297093,7 +323949,7 @@ }, { "default": true, - "id": 27706, + "id": 30179, "properties": { "facing": "up", "powered": "false", @@ -297101,7 +323957,7 @@ } }, { - "id": 27707, + "id": 30180, "properties": { "facing": "down", "powered": "true", @@ -297109,7 +323965,7 @@ } }, { - "id": 27708, + "id": 30181, "properties": { "facing": "down", "powered": "true", @@ -297117,7 +323973,7 @@ } }, { - "id": 27709, + "id": 30182, "properties": { "facing": "down", "powered": "false", @@ -297125,7 +323981,7 @@ } }, { - "id": 27710, + "id": 30183, "properties": { "facing": "down", "powered": "false", @@ -297143,7 +323999,7 @@ "states": [ { "default": true, - "id": 25320 + "id": 27802 } ] }, @@ -297156,7 +324012,7 @@ "states": [ { "default": true, - "id": 25311 + "id": 27784 } ] }, @@ -297530,21 +324386,21 @@ }, "states": [ { - "id": 27071, + "id": 29544, "properties": { "lit": "true", "powered": "true" } }, { - "id": 27072, + "id": 29545, "properties": { "lit": "true", "powered": "false" } }, { - "id": 27073, + "id": 29546, "properties": { "lit": "false", "powered": "true" @@ -297552,7 +324408,7 @@ }, { "default": true, - "id": 27074, + "id": 29547, "properties": { "lit": "false", "powered": "false" @@ -297650,7 +324506,7 @@ }, "states": [ { - "id": 27143, + "id": 29616, "properties": { "type": "single", "facing": "north", @@ -297659,7 +324515,7 @@ }, { "default": true, - "id": 27144, + "id": 29617, "properties": { "type": "single", "facing": "north", @@ -297667,7 +324523,7 @@ } }, { - "id": 27145, + "id": 29618, "properties": { "type": "left", "facing": "north", @@ -297675,7 +324531,7 @@ } }, { - "id": 27146, + "id": 29619, "properties": { "type": "left", "facing": "north", @@ -297683,7 +324539,7 @@ } }, { - "id": 27147, + "id": 29620, "properties": { "type": "right", "facing": "north", @@ -297691,7 +324547,7 @@ } }, { - "id": 27148, + "id": 29621, "properties": { "type": "right", "facing": "north", @@ -297699,7 +324555,7 @@ } }, { - "id": 27149, + "id": 29622, "properties": { "type": "single", "facing": "south", @@ -297707,7 +324563,7 @@ } }, { - "id": 27150, + "id": 29623, "properties": { "type": "single", "facing": "south", @@ -297715,7 +324571,7 @@ } }, { - "id": 27151, + "id": 29624, "properties": { "type": "left", "facing": "south", @@ -297723,7 +324579,7 @@ } }, { - "id": 27152, + "id": 29625, "properties": { "type": "left", "facing": "south", @@ -297731,7 +324587,7 @@ } }, { - "id": 27153, + "id": 29626, "properties": { "type": "right", "facing": "south", @@ -297739,7 +324595,7 @@ } }, { - "id": 27154, + "id": 29627, "properties": { "type": "right", "facing": "south", @@ -297747,7 +324603,7 @@ } }, { - "id": 27155, + "id": 29628, "properties": { "type": "single", "facing": "west", @@ -297755,7 +324611,7 @@ } }, { - "id": 27156, + "id": 29629, "properties": { "type": "single", "facing": "west", @@ -297763,7 +324619,7 @@ } }, { - "id": 27157, + "id": 29630, "properties": { "type": "left", "facing": "west", @@ -297771,7 +324627,7 @@ } }, { - "id": 27158, + "id": 29631, "properties": { "type": "left", "facing": "west", @@ -297779,7 +324635,7 @@ } }, { - "id": 27159, + "id": 29632, "properties": { "type": "right", "facing": "west", @@ -297787,7 +324643,7 @@ } }, { - "id": 27160, + "id": 29633, "properties": { "type": "right", "facing": "west", @@ -297795,7 +324651,7 @@ } }, { - "id": 27161, + "id": 29634, "properties": { "type": "single", "facing": "east", @@ -297803,7 +324659,7 @@ } }, { - "id": 27162, + "id": 29635, "properties": { "type": "single", "facing": "east", @@ -297811,7 +324667,7 @@ } }, { - "id": 27163, + "id": 29636, "properties": { "type": "left", "facing": "east", @@ -297819,7 +324675,7 @@ } }, { - "id": 27164, + "id": 29637, "properties": { "type": "left", "facing": "east", @@ -297827,7 +324683,7 @@ } }, { - "id": 27165, + "id": 29638, "properties": { "type": "right", "facing": "east", @@ -297835,7 +324691,7 @@ } }, { - "id": 27166, + "id": 29639, "properties": { "type": "right", "facing": "east", @@ -297877,7 +324733,7 @@ }, "states": [ { - "id": 26215, + "id": 28624, "properties": { "facing": "north", "half": "upper", @@ -297887,7 +324743,7 @@ } }, { - "id": 26216, + "id": 28625, "properties": { "facing": "north", "half": "upper", @@ -297897,7 +324753,7 @@ } }, { - "id": 26217, + "id": 28626, "properties": { "facing": "north", "half": "upper", @@ -297907,7 +324763,7 @@ } }, { - "id": 26218, + "id": 28627, "properties": { "facing": "north", "half": "upper", @@ -297917,7 +324773,7 @@ } }, { - "id": 26219, + "id": 28628, "properties": { "facing": "north", "half": "upper", @@ -297927,7 +324783,7 @@ } }, { - "id": 26220, + "id": 28629, "properties": { "facing": "north", "half": "upper", @@ -297937,7 +324793,7 @@ } }, { - "id": 26221, + "id": 28630, "properties": { "facing": "north", "half": "upper", @@ -297947,7 +324803,7 @@ } }, { - "id": 26222, + "id": 28631, "properties": { "facing": "north", "half": "upper", @@ -297957,7 +324813,7 @@ } }, { - "id": 26223, + "id": 28632, "properties": { "facing": "north", "half": "lower", @@ -297967,7 +324823,7 @@ } }, { - "id": 26224, + "id": 28633, "properties": { "facing": "north", "half": "lower", @@ -297977,7 +324833,7 @@ } }, { - "id": 26225, + "id": 28634, "properties": { "facing": "north", "half": "lower", @@ -297988,7 +324844,7 @@ }, { "default": true, - "id": 26226, + "id": 28635, "properties": { "facing": "north", "half": "lower", @@ -297998,7 +324854,7 @@ } }, { - "id": 26227, + "id": 28636, "properties": { "facing": "north", "half": "lower", @@ -298008,7 +324864,7 @@ } }, { - "id": 26228, + "id": 28637, "properties": { "facing": "north", "half": "lower", @@ -298018,7 +324874,7 @@ } }, { - "id": 26229, + "id": 28638, "properties": { "facing": "north", "half": "lower", @@ -298028,7 +324884,7 @@ } }, { - "id": 26230, + "id": 28639, "properties": { "facing": "north", "half": "lower", @@ -298038,7 +324894,7 @@ } }, { - "id": 26231, + "id": 28640, "properties": { "facing": "south", "half": "upper", @@ -298048,7 +324904,7 @@ } }, { - "id": 26232, + "id": 28641, "properties": { "facing": "south", "half": "upper", @@ -298058,7 +324914,7 @@ } }, { - "id": 26233, + "id": 28642, "properties": { "facing": "south", "half": "upper", @@ -298068,7 +324924,7 @@ } }, { - "id": 26234, + "id": 28643, "properties": { "facing": "south", "half": "upper", @@ -298078,7 +324934,7 @@ } }, { - "id": 26235, + "id": 28644, "properties": { "facing": "south", "half": "upper", @@ -298088,7 +324944,7 @@ } }, { - "id": 26236, + "id": 28645, "properties": { "facing": "south", "half": "upper", @@ -298098,7 +324954,7 @@ } }, { - "id": 26237, + "id": 28646, "properties": { "facing": "south", "half": "upper", @@ -298108,7 +324964,7 @@ } }, { - "id": 26238, + "id": 28647, "properties": { "facing": "south", "half": "upper", @@ -298118,7 +324974,7 @@ } }, { - "id": 26239, + "id": 28648, "properties": { "facing": "south", "half": "lower", @@ -298128,7 +324984,7 @@ } }, { - "id": 26240, + "id": 28649, "properties": { "facing": "south", "half": "lower", @@ -298138,7 +324994,7 @@ } }, { - "id": 26241, + "id": 28650, "properties": { "facing": "south", "half": "lower", @@ -298148,7 +325004,7 @@ } }, { - "id": 26242, + "id": 28651, "properties": { "facing": "south", "half": "lower", @@ -298158,7 +325014,7 @@ } }, { - "id": 26243, + "id": 28652, "properties": { "facing": "south", "half": "lower", @@ -298168,7 +325024,7 @@ } }, { - "id": 26244, + "id": 28653, "properties": { "facing": "south", "half": "lower", @@ -298178,7 +325034,7 @@ } }, { - "id": 26245, + "id": 28654, "properties": { "facing": "south", "half": "lower", @@ -298188,7 +325044,7 @@ } }, { - "id": 26246, + "id": 28655, "properties": { "facing": "south", "half": "lower", @@ -298198,7 +325054,7 @@ } }, { - "id": 26247, + "id": 28656, "properties": { "facing": "west", "half": "upper", @@ -298208,7 +325064,7 @@ } }, { - "id": 26248, + "id": 28657, "properties": { "facing": "west", "half": "upper", @@ -298218,7 +325074,7 @@ } }, { - "id": 26249, + "id": 28658, "properties": { "facing": "west", "half": "upper", @@ -298228,7 +325084,7 @@ } }, { - "id": 26250, + "id": 28659, "properties": { "facing": "west", "half": "upper", @@ -298238,7 +325094,7 @@ } }, { - "id": 26251, + "id": 28660, "properties": { "facing": "west", "half": "upper", @@ -298248,7 +325104,7 @@ } }, { - "id": 26252, + "id": 28661, "properties": { "facing": "west", "half": "upper", @@ -298258,7 +325114,7 @@ } }, { - "id": 26253, + "id": 28662, "properties": { "facing": "west", "half": "upper", @@ -298268,7 +325124,7 @@ } }, { - "id": 26254, + "id": 28663, "properties": { "facing": "west", "half": "upper", @@ -298278,7 +325134,7 @@ } }, { - "id": 26255, + "id": 28664, "properties": { "facing": "west", "half": "lower", @@ -298288,7 +325144,7 @@ } }, { - "id": 26256, + "id": 28665, "properties": { "facing": "west", "half": "lower", @@ -298298,7 +325154,7 @@ } }, { - "id": 26257, + "id": 28666, "properties": { "facing": "west", "half": "lower", @@ -298308,7 +325164,7 @@ } }, { - "id": 26258, + "id": 28667, "properties": { "facing": "west", "half": "lower", @@ -298318,7 +325174,7 @@ } }, { - "id": 26259, + "id": 28668, "properties": { "facing": "west", "half": "lower", @@ -298328,7 +325184,7 @@ } }, { - "id": 26260, + "id": 28669, "properties": { "facing": "west", "half": "lower", @@ -298338,7 +325194,7 @@ } }, { - "id": 26261, + "id": 28670, "properties": { "facing": "west", "half": "lower", @@ -298348,7 +325204,7 @@ } }, { - "id": 26262, + "id": 28671, "properties": { "facing": "west", "half": "lower", @@ -298358,7 +325214,7 @@ } }, { - "id": 26263, + "id": 28672, "properties": { "facing": "east", "half": "upper", @@ -298368,7 +325224,7 @@ } }, { - "id": 26264, + "id": 28673, "properties": { "facing": "east", "half": "upper", @@ -298378,7 +325234,7 @@ } }, { - "id": 26265, + "id": 28674, "properties": { "facing": "east", "half": "upper", @@ -298388,7 +325244,7 @@ } }, { - "id": 26266, + "id": 28675, "properties": { "facing": "east", "half": "upper", @@ -298398,7 +325254,7 @@ } }, { - "id": 26267, + "id": 28676, "properties": { "facing": "east", "half": "upper", @@ -298408,7 +325264,7 @@ } }, { - "id": 26268, + "id": 28677, "properties": { "facing": "east", "half": "upper", @@ -298418,7 +325274,7 @@ } }, { - "id": 26269, + "id": 28678, "properties": { "facing": "east", "half": "upper", @@ -298428,7 +325284,7 @@ } }, { - "id": 26270, + "id": 28679, "properties": { "facing": "east", "half": "upper", @@ -298438,7 +325294,7 @@ } }, { - "id": 26271, + "id": 28680, "properties": { "facing": "east", "half": "lower", @@ -298448,7 +325304,7 @@ } }, { - "id": 26272, + "id": 28681, "properties": { "facing": "east", "half": "lower", @@ -298458,7 +325314,7 @@ } }, { - "id": 26273, + "id": 28682, "properties": { "facing": "east", "half": "lower", @@ -298468,7 +325324,7 @@ } }, { - "id": 26274, + "id": 28683, "properties": { "facing": "east", "half": "lower", @@ -298478,7 +325334,7 @@ } }, { - "id": 26275, + "id": 28684, "properties": { "facing": "east", "half": "lower", @@ -298488,7 +325344,7 @@ } }, { - "id": 26276, + "id": 28685, "properties": { "facing": "east", "half": "lower", @@ -298498,7 +325354,7 @@ } }, { - "id": 26277, + "id": 28686, "properties": { "facing": "east", "half": "lower", @@ -298508,7 +325364,7 @@ } }, { - "id": 26278, + "id": 28687, "properties": { "facing": "east", "half": "lower", @@ -298545,7 +325401,7 @@ }, "states": [ { - "id": 27351, + "id": 29824, "properties": { "copper_golem_pose": "standing", "facing": "north", @@ -298554,7 +325410,7 @@ }, { "default": true, - "id": 27352, + "id": 29825, "properties": { "copper_golem_pose": "standing", "facing": "north", @@ -298562,7 +325418,7 @@ } }, { - "id": 27353, + "id": 29826, "properties": { "copper_golem_pose": "standing", "facing": "south", @@ -298570,7 +325426,7 @@ } }, { - "id": 27354, + "id": 29827, "properties": { "copper_golem_pose": "standing", "facing": "south", @@ -298578,7 +325434,7 @@ } }, { - "id": 27355, + "id": 29828, "properties": { "copper_golem_pose": "standing", "facing": "west", @@ -298586,7 +325442,7 @@ } }, { - "id": 27356, + "id": 29829, "properties": { "copper_golem_pose": "standing", "facing": "west", @@ -298594,7 +325450,7 @@ } }, { - "id": 27357, + "id": 29830, "properties": { "copper_golem_pose": "standing", "facing": "east", @@ -298602,7 +325458,7 @@ } }, { - "id": 27358, + "id": 29831, "properties": { "copper_golem_pose": "standing", "facing": "east", @@ -298610,7 +325466,7 @@ } }, { - "id": 27359, + "id": 29832, "properties": { "copper_golem_pose": "sitting", "facing": "north", @@ -298618,7 +325474,7 @@ } }, { - "id": 27360, + "id": 29833, "properties": { "copper_golem_pose": "sitting", "facing": "north", @@ -298626,7 +325482,7 @@ } }, { - "id": 27361, + "id": 29834, "properties": { "copper_golem_pose": "sitting", "facing": "south", @@ -298634,7 +325490,7 @@ } }, { - "id": 27362, + "id": 29835, "properties": { "copper_golem_pose": "sitting", "facing": "south", @@ -298642,7 +325498,7 @@ } }, { - "id": 27363, + "id": 29836, "properties": { "copper_golem_pose": "sitting", "facing": "west", @@ -298650,7 +325506,7 @@ } }, { - "id": 27364, + "id": 29837, "properties": { "copper_golem_pose": "sitting", "facing": "west", @@ -298658,7 +325514,7 @@ } }, { - "id": 27365, + "id": 29838, "properties": { "copper_golem_pose": "sitting", "facing": "east", @@ -298666,7 +325522,7 @@ } }, { - "id": 27366, + "id": 29839, "properties": { "copper_golem_pose": "sitting", "facing": "east", @@ -298674,7 +325530,7 @@ } }, { - "id": 27367, + "id": 29840, "properties": { "copper_golem_pose": "running", "facing": "north", @@ -298682,7 +325538,7 @@ } }, { - "id": 27368, + "id": 29841, "properties": { "copper_golem_pose": "running", "facing": "north", @@ -298690,7 +325546,7 @@ } }, { - "id": 27369, + "id": 29842, "properties": { "copper_golem_pose": "running", "facing": "south", @@ -298698,7 +325554,7 @@ } }, { - "id": 27370, + "id": 29843, "properties": { "copper_golem_pose": "running", "facing": "south", @@ -298706,7 +325562,7 @@ } }, { - "id": 27371, + "id": 29844, "properties": { "copper_golem_pose": "running", "facing": "west", @@ -298714,7 +325570,7 @@ } }, { - "id": 27372, + "id": 29845, "properties": { "copper_golem_pose": "running", "facing": "west", @@ -298722,7 +325578,7 @@ } }, { - "id": 27373, + "id": 29846, "properties": { "copper_golem_pose": "running", "facing": "east", @@ -298730,7 +325586,7 @@ } }, { - "id": 27374, + "id": 29847, "properties": { "copper_golem_pose": "running", "facing": "east", @@ -298738,7 +325594,7 @@ } }, { - "id": 27375, + "id": 29848, "properties": { "copper_golem_pose": "star", "facing": "north", @@ -298746,7 +325602,7 @@ } }, { - "id": 27376, + "id": 29849, "properties": { "copper_golem_pose": "star", "facing": "north", @@ -298754,7 +325610,7 @@ } }, { - "id": 27377, + "id": 29850, "properties": { "copper_golem_pose": "star", "facing": "south", @@ -298762,7 +325618,7 @@ } }, { - "id": 27378, + "id": 29851, "properties": { "copper_golem_pose": "star", "facing": "south", @@ -298770,7 +325626,7 @@ } }, { - "id": 27379, + "id": 29852, "properties": { "copper_golem_pose": "star", "facing": "west", @@ -298778,7 +325634,7 @@ } }, { - "id": 27380, + "id": 29853, "properties": { "copper_golem_pose": "star", "facing": "west", @@ -298786,7 +325642,7 @@ } }, { - "id": 27381, + "id": 29854, "properties": { "copper_golem_pose": "star", "facing": "east", @@ -298794,7 +325650,7 @@ } }, { - "id": 27382, + "id": 29855, "properties": { "copper_golem_pose": "star", "facing": "east", @@ -298817,14 +325673,14 @@ }, "states": [ { - "id": 27051, + "id": 29524, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 27052, + "id": 29525, "properties": { "waterlogged": "false" } @@ -298881,7 +325737,7 @@ }, "minecraft:weathered_copper_trapdoor": { "definition": { - "type": "minecraft:weathering_copper_trap_door", + "type": "minecraft:weathering_copper_trapdoor", "block_set_type": "copper", "properties": {}, "weathering_state": "weathered" @@ -298912,7 +325768,7 @@ }, "states": [ { - "id": 26727, + "id": 29136, "properties": { "facing": "north", "half": "top", @@ -298922,7 +325778,7 @@ } }, { - "id": 26728, + "id": 29137, "properties": { "facing": "north", "half": "top", @@ -298932,7 +325788,7 @@ } }, { - "id": 26729, + "id": 29138, "properties": { "facing": "north", "half": "top", @@ -298942,7 +325798,7 @@ } }, { - "id": 26730, + "id": 29139, "properties": { "facing": "north", "half": "top", @@ -298952,7 +325808,7 @@ } }, { - "id": 26731, + "id": 29140, "properties": { "facing": "north", "half": "top", @@ -298962,7 +325818,7 @@ } }, { - "id": 26732, + "id": 29141, "properties": { "facing": "north", "half": "top", @@ -298972,7 +325828,7 @@ } }, { - "id": 26733, + "id": 29142, "properties": { "facing": "north", "half": "top", @@ -298982,7 +325838,7 @@ } }, { - "id": 26734, + "id": 29143, "properties": { "facing": "north", "half": "top", @@ -298992,7 +325848,7 @@ } }, { - "id": 26735, + "id": 29144, "properties": { "facing": "north", "half": "bottom", @@ -299002,7 +325858,7 @@ } }, { - "id": 26736, + "id": 29145, "properties": { "facing": "north", "half": "bottom", @@ -299012,7 +325868,7 @@ } }, { - "id": 26737, + "id": 29146, "properties": { "facing": "north", "half": "bottom", @@ -299022,7 +325878,7 @@ } }, { - "id": 26738, + "id": 29147, "properties": { "facing": "north", "half": "bottom", @@ -299032,7 +325888,7 @@ } }, { - "id": 26739, + "id": 29148, "properties": { "facing": "north", "half": "bottom", @@ -299042,7 +325898,7 @@ } }, { - "id": 26740, + "id": 29149, "properties": { "facing": "north", "half": "bottom", @@ -299052,7 +325908,7 @@ } }, { - "id": 26741, + "id": 29150, "properties": { "facing": "north", "half": "bottom", @@ -299063,7 +325919,7 @@ }, { "default": true, - "id": 26742, + "id": 29151, "properties": { "facing": "north", "half": "bottom", @@ -299073,7 +325929,7 @@ } }, { - "id": 26743, + "id": 29152, "properties": { "facing": "south", "half": "top", @@ -299083,7 +325939,7 @@ } }, { - "id": 26744, + "id": 29153, "properties": { "facing": "south", "half": "top", @@ -299093,7 +325949,7 @@ } }, { - "id": 26745, + "id": 29154, "properties": { "facing": "south", "half": "top", @@ -299103,7 +325959,7 @@ } }, { - "id": 26746, + "id": 29155, "properties": { "facing": "south", "half": "top", @@ -299113,7 +325969,7 @@ } }, { - "id": 26747, + "id": 29156, "properties": { "facing": "south", "half": "top", @@ -299123,7 +325979,7 @@ } }, { - "id": 26748, + "id": 29157, "properties": { "facing": "south", "half": "top", @@ -299133,7 +325989,7 @@ } }, { - "id": 26749, + "id": 29158, "properties": { "facing": "south", "half": "top", @@ -299143,7 +325999,7 @@ } }, { - "id": 26750, + "id": 29159, "properties": { "facing": "south", "half": "top", @@ -299153,7 +326009,7 @@ } }, { - "id": 26751, + "id": 29160, "properties": { "facing": "south", "half": "bottom", @@ -299163,7 +326019,7 @@ } }, { - "id": 26752, + "id": 29161, "properties": { "facing": "south", "half": "bottom", @@ -299173,7 +326029,7 @@ } }, { - "id": 26753, + "id": 29162, "properties": { "facing": "south", "half": "bottom", @@ -299183,7 +326039,7 @@ } }, { - "id": 26754, + "id": 29163, "properties": { "facing": "south", "half": "bottom", @@ -299193,7 +326049,7 @@ } }, { - "id": 26755, + "id": 29164, "properties": { "facing": "south", "half": "bottom", @@ -299203,7 +326059,7 @@ } }, { - "id": 26756, + "id": 29165, "properties": { "facing": "south", "half": "bottom", @@ -299213,7 +326069,7 @@ } }, { - "id": 26757, + "id": 29166, "properties": { "facing": "south", "half": "bottom", @@ -299223,7 +326079,7 @@ } }, { - "id": 26758, + "id": 29167, "properties": { "facing": "south", "half": "bottom", @@ -299233,7 +326089,7 @@ } }, { - "id": 26759, + "id": 29168, "properties": { "facing": "west", "half": "top", @@ -299243,7 +326099,7 @@ } }, { - "id": 26760, + "id": 29169, "properties": { "facing": "west", "half": "top", @@ -299253,7 +326109,7 @@ } }, { - "id": 26761, + "id": 29170, "properties": { "facing": "west", "half": "top", @@ -299263,7 +326119,7 @@ } }, { - "id": 26762, + "id": 29171, "properties": { "facing": "west", "half": "top", @@ -299273,7 +326129,7 @@ } }, { - "id": 26763, + "id": 29172, "properties": { "facing": "west", "half": "top", @@ -299283,7 +326139,7 @@ } }, { - "id": 26764, + "id": 29173, "properties": { "facing": "west", "half": "top", @@ -299293,7 +326149,7 @@ } }, { - "id": 26765, + "id": 29174, "properties": { "facing": "west", "half": "top", @@ -299303,7 +326159,7 @@ } }, { - "id": 26766, + "id": 29175, "properties": { "facing": "west", "half": "top", @@ -299313,7 +326169,7 @@ } }, { - "id": 26767, + "id": 29176, "properties": { "facing": "west", "half": "bottom", @@ -299323,7 +326179,7 @@ } }, { - "id": 26768, + "id": 29177, "properties": { "facing": "west", "half": "bottom", @@ -299333,7 +326189,7 @@ } }, { - "id": 26769, + "id": 29178, "properties": { "facing": "west", "half": "bottom", @@ -299343,7 +326199,7 @@ } }, { - "id": 26770, + "id": 29179, "properties": { "facing": "west", "half": "bottom", @@ -299353,7 +326209,7 @@ } }, { - "id": 26771, + "id": 29180, "properties": { "facing": "west", "half": "bottom", @@ -299363,7 +326219,7 @@ } }, { - "id": 26772, + "id": 29181, "properties": { "facing": "west", "half": "bottom", @@ -299373,7 +326229,7 @@ } }, { - "id": 26773, + "id": 29182, "properties": { "facing": "west", "half": "bottom", @@ -299383,7 +326239,7 @@ } }, { - "id": 26774, + "id": 29183, "properties": { "facing": "west", "half": "bottom", @@ -299393,7 +326249,7 @@ } }, { - "id": 26775, + "id": 29184, "properties": { "facing": "east", "half": "top", @@ -299403,7 +326259,7 @@ } }, { - "id": 26776, + "id": 29185, "properties": { "facing": "east", "half": "top", @@ -299413,7 +326269,7 @@ } }, { - "id": 26777, + "id": 29186, "properties": { "facing": "east", "half": "top", @@ -299423,7 +326279,7 @@ } }, { - "id": 26778, + "id": 29187, "properties": { "facing": "east", "half": "top", @@ -299433,7 +326289,7 @@ } }, { - "id": 26779, + "id": 29188, "properties": { "facing": "east", "half": "top", @@ -299443,7 +326299,7 @@ } }, { - "id": 26780, + "id": 29189, "properties": { "facing": "east", "half": "top", @@ -299453,7 +326309,7 @@ } }, { - "id": 26781, + "id": 29190, "properties": { "facing": "east", "half": "top", @@ -299463,7 +326319,7 @@ } }, { - "id": 26782, + "id": 29191, "properties": { "facing": "east", "half": "top", @@ -299473,7 +326329,7 @@ } }, { - "id": 26783, + "id": 29192, "properties": { "facing": "east", "half": "bottom", @@ -299483,7 +326339,7 @@ } }, { - "id": 26784, + "id": 29193, "properties": { "facing": "east", "half": "bottom", @@ -299493,7 +326349,7 @@ } }, { - "id": 26785, + "id": 29194, "properties": { "facing": "east", "half": "bottom", @@ -299503,7 +326359,7 @@ } }, { - "id": 26786, + "id": 29195, "properties": { "facing": "east", "half": "bottom", @@ -299513,7 +326369,7 @@ } }, { - "id": 26787, + "id": 29196, "properties": { "facing": "east", "half": "bottom", @@ -299523,7 +326379,7 @@ } }, { - "id": 26788, + "id": 29197, "properties": { "facing": "east", "half": "bottom", @@ -299533,7 +326389,7 @@ } }, { - "id": 26789, + "id": 29198, "properties": { "facing": "east", "half": "bottom", @@ -299543,7 +326399,7 @@ } }, { - "id": 26790, + "id": 29199, "properties": { "facing": "east", "half": "bottom", @@ -299563,7 +326419,7 @@ "states": [ { "default": true, - "id": 25316 + "id": 27794 } ] }, @@ -299586,21 +326442,21 @@ }, "states": [ { - "id": 25653, + "id": 28460, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 25654, + "id": 28461, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 25655, + "id": 28462, "properties": { "type": "bottom", "waterlogged": "true" @@ -299608,21 +326464,21 @@ }, { "default": true, - "id": 25656, + "id": 28463, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 25657, + "id": 28464, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 25658, + "id": 28465, "properties": { "type": "double", "waterlogged": "false" @@ -299664,7 +326520,7 @@ }, "states": [ { - "id": 25407, + "id": 27968, "properties": { "facing": "north", "half": "top", @@ -299673,7 +326529,7 @@ } }, { - "id": 25408, + "id": 27969, "properties": { "facing": "north", "half": "top", @@ -299682,7 +326538,7 @@ } }, { - "id": 25409, + "id": 27970, "properties": { "facing": "north", "half": "top", @@ -299691,7 +326547,7 @@ } }, { - "id": 25410, + "id": 27971, "properties": { "facing": "north", "half": "top", @@ -299700,7 +326556,7 @@ } }, { - "id": 25411, + "id": 27972, "properties": { "facing": "north", "half": "top", @@ -299709,7 +326565,7 @@ } }, { - "id": 25412, + "id": 27973, "properties": { "facing": "north", "half": "top", @@ -299718,7 +326574,7 @@ } }, { - "id": 25413, + "id": 27974, "properties": { "facing": "north", "half": "top", @@ -299727,7 +326583,7 @@ } }, { - "id": 25414, + "id": 27975, "properties": { "facing": "north", "half": "top", @@ -299736,7 +326592,7 @@ } }, { - "id": 25415, + "id": 27976, "properties": { "facing": "north", "half": "top", @@ -299745,7 +326601,7 @@ } }, { - "id": 25416, + "id": 27977, "properties": { "facing": "north", "half": "top", @@ -299754,7 +326610,7 @@ } }, { - "id": 25417, + "id": 27978, "properties": { "facing": "north", "half": "bottom", @@ -299764,7 +326620,7 @@ }, { "default": true, - "id": 25418, + "id": 27979, "properties": { "facing": "north", "half": "bottom", @@ -299773,7 +326629,7 @@ } }, { - "id": 25419, + "id": 27980, "properties": { "facing": "north", "half": "bottom", @@ -299782,7 +326638,7 @@ } }, { - "id": 25420, + "id": 27981, "properties": { "facing": "north", "half": "bottom", @@ -299791,7 +326647,7 @@ } }, { - "id": 25421, + "id": 27982, "properties": { "facing": "north", "half": "bottom", @@ -299800,7 +326656,7 @@ } }, { - "id": 25422, + "id": 27983, "properties": { "facing": "north", "half": "bottom", @@ -299809,7 +326665,7 @@ } }, { - "id": 25423, + "id": 27984, "properties": { "facing": "north", "half": "bottom", @@ -299818,7 +326674,7 @@ } }, { - "id": 25424, + "id": 27985, "properties": { "facing": "north", "half": "bottom", @@ -299827,7 +326683,7 @@ } }, { - "id": 25425, + "id": 27986, "properties": { "facing": "north", "half": "bottom", @@ -299836,7 +326692,7 @@ } }, { - "id": 25426, + "id": 27987, "properties": { "facing": "north", "half": "bottom", @@ -299845,7 +326701,7 @@ } }, { - "id": 25427, + "id": 27988, "properties": { "facing": "south", "half": "top", @@ -299854,7 +326710,7 @@ } }, { - "id": 25428, + "id": 27989, "properties": { "facing": "south", "half": "top", @@ -299863,7 +326719,7 @@ } }, { - "id": 25429, + "id": 27990, "properties": { "facing": "south", "half": "top", @@ -299872,7 +326728,7 @@ } }, { - "id": 25430, + "id": 27991, "properties": { "facing": "south", "half": "top", @@ -299881,7 +326737,7 @@ } }, { - "id": 25431, + "id": 27992, "properties": { "facing": "south", "half": "top", @@ -299890,7 +326746,7 @@ } }, { - "id": 25432, + "id": 27993, "properties": { "facing": "south", "half": "top", @@ -299899,7 +326755,7 @@ } }, { - "id": 25433, + "id": 27994, "properties": { "facing": "south", "half": "top", @@ -299908,7 +326764,7 @@ } }, { - "id": 25434, + "id": 27995, "properties": { "facing": "south", "half": "top", @@ -299917,7 +326773,7 @@ } }, { - "id": 25435, + "id": 27996, "properties": { "facing": "south", "half": "top", @@ -299926,7 +326782,7 @@ } }, { - "id": 25436, + "id": 27997, "properties": { "facing": "south", "half": "top", @@ -299935,7 +326791,7 @@ } }, { - "id": 25437, + "id": 27998, "properties": { "facing": "south", "half": "bottom", @@ -299944,7 +326800,7 @@ } }, { - "id": 25438, + "id": 27999, "properties": { "facing": "south", "half": "bottom", @@ -299953,7 +326809,7 @@ } }, { - "id": 25439, + "id": 28000, "properties": { "facing": "south", "half": "bottom", @@ -299962,7 +326818,7 @@ } }, { - "id": 25440, + "id": 28001, "properties": { "facing": "south", "half": "bottom", @@ -299971,7 +326827,7 @@ } }, { - "id": 25441, + "id": 28002, "properties": { "facing": "south", "half": "bottom", @@ -299980,7 +326836,7 @@ } }, { - "id": 25442, + "id": 28003, "properties": { "facing": "south", "half": "bottom", @@ -299989,7 +326845,7 @@ } }, { - "id": 25443, + "id": 28004, "properties": { "facing": "south", "half": "bottom", @@ -299998,7 +326854,7 @@ } }, { - "id": 25444, + "id": 28005, "properties": { "facing": "south", "half": "bottom", @@ -300007,7 +326863,7 @@ } }, { - "id": 25445, + "id": 28006, "properties": { "facing": "south", "half": "bottom", @@ -300016,7 +326872,7 @@ } }, { - "id": 25446, + "id": 28007, "properties": { "facing": "south", "half": "bottom", @@ -300025,7 +326881,7 @@ } }, { - "id": 25447, + "id": 28008, "properties": { "facing": "west", "half": "top", @@ -300034,7 +326890,7 @@ } }, { - "id": 25448, + "id": 28009, "properties": { "facing": "west", "half": "top", @@ -300043,7 +326899,7 @@ } }, { - "id": 25449, + "id": 28010, "properties": { "facing": "west", "half": "top", @@ -300052,7 +326908,7 @@ } }, { - "id": 25450, + "id": 28011, "properties": { "facing": "west", "half": "top", @@ -300061,7 +326917,7 @@ } }, { - "id": 25451, + "id": 28012, "properties": { "facing": "west", "half": "top", @@ -300070,7 +326926,7 @@ } }, { - "id": 25452, + "id": 28013, "properties": { "facing": "west", "half": "top", @@ -300079,7 +326935,7 @@ } }, { - "id": 25453, + "id": 28014, "properties": { "facing": "west", "half": "top", @@ -300088,7 +326944,7 @@ } }, { - "id": 25454, + "id": 28015, "properties": { "facing": "west", "half": "top", @@ -300097,7 +326953,7 @@ } }, { - "id": 25455, + "id": 28016, "properties": { "facing": "west", "half": "top", @@ -300106,7 +326962,7 @@ } }, { - "id": 25456, + "id": 28017, "properties": { "facing": "west", "half": "top", @@ -300115,7 +326971,7 @@ } }, { - "id": 25457, + "id": 28018, "properties": { "facing": "west", "half": "bottom", @@ -300124,7 +326980,7 @@ } }, { - "id": 25458, + "id": 28019, "properties": { "facing": "west", "half": "bottom", @@ -300133,7 +326989,7 @@ } }, { - "id": 25459, + "id": 28020, "properties": { "facing": "west", "half": "bottom", @@ -300142,7 +326998,7 @@ } }, { - "id": 25460, + "id": 28021, "properties": { "facing": "west", "half": "bottom", @@ -300151,7 +327007,7 @@ } }, { - "id": 25461, + "id": 28022, "properties": { "facing": "west", "half": "bottom", @@ -300160,7 +327016,7 @@ } }, { - "id": 25462, + "id": 28023, "properties": { "facing": "west", "half": "bottom", @@ -300169,7 +327025,7 @@ } }, { - "id": 25463, + "id": 28024, "properties": { "facing": "west", "half": "bottom", @@ -300178,7 +327034,7 @@ } }, { - "id": 25464, + "id": 28025, "properties": { "facing": "west", "half": "bottom", @@ -300187,7 +327043,7 @@ } }, { - "id": 25465, + "id": 28026, "properties": { "facing": "west", "half": "bottom", @@ -300196,7 +327052,7 @@ } }, { - "id": 25466, + "id": 28027, "properties": { "facing": "west", "half": "bottom", @@ -300205,7 +327061,7 @@ } }, { - "id": 25467, + "id": 28028, "properties": { "facing": "east", "half": "top", @@ -300214,7 +327070,7 @@ } }, { - "id": 25468, + "id": 28029, "properties": { "facing": "east", "half": "top", @@ -300223,7 +327079,7 @@ } }, { - "id": 25469, + "id": 28030, "properties": { "facing": "east", "half": "top", @@ -300232,7 +327088,7 @@ } }, { - "id": 25470, + "id": 28031, "properties": { "facing": "east", "half": "top", @@ -300241,7 +327097,7 @@ } }, { - "id": 25471, + "id": 28032, "properties": { "facing": "east", "half": "top", @@ -300250,7 +327106,7 @@ } }, { - "id": 25472, + "id": 28033, "properties": { "facing": "east", "half": "top", @@ -300259,7 +327115,7 @@ } }, { - "id": 25473, + "id": 28034, "properties": { "facing": "east", "half": "top", @@ -300268,7 +327124,7 @@ } }, { - "id": 25474, + "id": 28035, "properties": { "facing": "east", "half": "top", @@ -300277,7 +327133,7 @@ } }, { - "id": 25475, + "id": 28036, "properties": { "facing": "east", "half": "top", @@ -300286,7 +327142,7 @@ } }, { - "id": 25476, + "id": 28037, "properties": { "facing": "east", "half": "top", @@ -300295,7 +327151,7 @@ } }, { - "id": 25477, + "id": 28038, "properties": { "facing": "east", "half": "bottom", @@ -300304,7 +327160,7 @@ } }, { - "id": 25478, + "id": 28039, "properties": { "facing": "east", "half": "bottom", @@ -300313,7 +327169,7 @@ } }, { - "id": 25479, + "id": 28040, "properties": { "facing": "east", "half": "bottom", @@ -300322,7 +327178,7 @@ } }, { - "id": 25480, + "id": 28041, "properties": { "facing": "east", "half": "bottom", @@ -300331,7 +327187,7 @@ } }, { - "id": 25481, + "id": 28042, "properties": { "facing": "east", "half": "bottom", @@ -300340,7 +327196,7 @@ } }, { - "id": 25482, + "id": 28043, "properties": { "facing": "east", "half": "bottom", @@ -300349,7 +327205,7 @@ } }, { - "id": 25483, + "id": 28044, "properties": { "facing": "east", "half": "bottom", @@ -300358,7 +327214,7 @@ } }, { - "id": 25484, + "id": 28045, "properties": { "facing": "east", "half": "bottom", @@ -300367,7 +327223,7 @@ } }, { - "id": 25485, + "id": 28046, "properties": { "facing": "east", "half": "bottom", @@ -300376,7 +327232,7 @@ } }, { - "id": 25486, + "id": 28047, "properties": { "facing": "east", "half": "bottom", @@ -300412,7 +327268,7 @@ }, "states": [ { - "id": 27591, + "id": 30064, "properties": { "facing": "north", "powered": "true", @@ -300420,7 +327276,7 @@ } }, { - "id": 27592, + "id": 30065, "properties": { "facing": "north", "powered": "true", @@ -300428,7 +327284,7 @@ } }, { - "id": 27593, + "id": 30066, "properties": { "facing": "north", "powered": "false", @@ -300436,7 +327292,7 @@ } }, { - "id": 27594, + "id": 30067, "properties": { "facing": "north", "powered": "false", @@ -300444,7 +327300,7 @@ } }, { - "id": 27595, + "id": 30068, "properties": { "facing": "east", "powered": "true", @@ -300452,7 +327308,7 @@ } }, { - "id": 27596, + "id": 30069, "properties": { "facing": "east", "powered": "true", @@ -300460,7 +327316,7 @@ } }, { - "id": 27597, + "id": 30070, "properties": { "facing": "east", "powered": "false", @@ -300468,7 +327324,7 @@ } }, { - "id": 27598, + "id": 30071, "properties": { "facing": "east", "powered": "false", @@ -300476,7 +327332,7 @@ } }, { - "id": 27599, + "id": 30072, "properties": { "facing": "south", "powered": "true", @@ -300484,7 +327340,7 @@ } }, { - "id": 27600, + "id": 30073, "properties": { "facing": "south", "powered": "true", @@ -300492,7 +327348,7 @@ } }, { - "id": 27601, + "id": 30074, "properties": { "facing": "south", "powered": "false", @@ -300500,7 +327356,7 @@ } }, { - "id": 27602, + "id": 30075, "properties": { "facing": "south", "powered": "false", @@ -300508,7 +327364,7 @@ } }, { - "id": 27603, + "id": 30076, "properties": { "facing": "west", "powered": "true", @@ -300516,7 +327372,7 @@ } }, { - "id": 27604, + "id": 30077, "properties": { "facing": "west", "powered": "true", @@ -300524,7 +327380,7 @@ } }, { - "id": 27605, + "id": 30078, "properties": { "facing": "west", "powered": "false", @@ -300532,7 +327388,7 @@ } }, { - "id": 27606, + "id": 30079, "properties": { "facing": "west", "powered": "false", @@ -300540,7 +327396,7 @@ } }, { - "id": 27607, + "id": 30080, "properties": { "facing": "up", "powered": "true", @@ -300548,7 +327404,7 @@ } }, { - "id": 27608, + "id": 30081, "properties": { "facing": "up", "powered": "true", @@ -300556,7 +327412,7 @@ } }, { - "id": 27609, + "id": 30082, "properties": { "facing": "up", "powered": "false", @@ -300565,7 +327421,7 @@ }, { "default": true, - "id": 27610, + "id": 30083, "properties": { "facing": "up", "powered": "false", @@ -300573,7 +327429,7 @@ } }, { - "id": 27611, + "id": 30084, "properties": { "facing": "down", "powered": "true", @@ -300581,7 +327437,7 @@ } }, { - "id": 27612, + "id": 30085, "properties": { "facing": "down", "powered": "true", @@ -300589,7 +327445,7 @@ } }, { - "id": 27613, + "id": 30086, "properties": { "facing": "down", "powered": "false", @@ -300597,7 +327453,7 @@ } }, { - "id": 27614, + "id": 30087, "properties": { "facing": "down", "powered": "false", @@ -301961,112 +328817,112 @@ "states": [ { "default": true, - "id": 27830, + "id": 30323, "properties": { "facing": "north", "flower_amount": "1" } }, { - "id": 27831, + "id": 30324, "properties": { "facing": "north", "flower_amount": "2" } }, { - "id": 27832, + "id": 30325, "properties": { "facing": "north", "flower_amount": "3" } }, { - "id": 27833, + "id": 30326, "properties": { "facing": "north", "flower_amount": "4" } }, { - "id": 27834, + "id": 30327, "properties": { "facing": "south", "flower_amount": "1" } }, { - "id": 27835, + "id": 30328, "properties": { "facing": "south", "flower_amount": "2" } }, { - "id": 27836, + "id": 30329, "properties": { "facing": "south", "flower_amount": "3" } }, { - "id": 27837, + "id": 30330, "properties": { "facing": "south", "flower_amount": "4" } }, { - "id": 27838, + "id": 30331, "properties": { "facing": "west", "flower_amount": "1" } }, { - "id": 27839, + "id": 30332, "properties": { "facing": "west", "flower_amount": "2" } }, { - "id": 27840, + "id": 30333, "properties": { "facing": "west", "flower_amount": "3" } }, { - "id": 27841, + "id": 30334, "properties": { "facing": "west", "flower_amount": "4" } }, { - "id": 27842, + "id": 30335, "properties": { "facing": "east", "flower_amount": "1" } }, { - "id": 27843, + "id": 30336, "properties": { "facing": "east", "flower_amount": "2" } }, { - "id": 27844, + "id": 30337, "properties": { "facing": "east", "flower_amount": "3" } }, { - "id": 27845, + "id": 30338, "properties": { "facing": "east", "flower_amount": "4" diff --git a/src/main/resources/reports/packets.json b/src/main/resources/reports/packets.json index ccae1f6..f5733b1 100644 --- a/src/main/resources/reports/packets.json +++ b/src/main/resources/reports/packets.json @@ -757,7 +757,7 @@ "minecraft:sign_update": { "protocol_id": 61 }, - "minecraft:spectate_entity": { + "minecraft:spectator_action": { "protocol_id": 62 }, "minecraft:swing": { diff --git a/src/main/resources/reports/registries.json b/src/main/resources/reports/registries.json index 53ab09a..7c2c7f7 100644 --- a/src/main/resources/reports/registries.json +++ b/src/main/resources/reports/registries.json @@ -84,110 +84,125 @@ }, "minecraft:attribute": { "entries": { - "minecraft:armor": { + "minecraft:air_drag_modifier": { "protocol_id": 0 }, - "minecraft:armor_toughness": { + "minecraft:armor": { "protocol_id": 1 }, - "minecraft:attack_damage": { + "minecraft:armor_toughness": { "protocol_id": 2 }, - "minecraft:attack_knockback": { + "minecraft:attack_damage": { "protocol_id": 3 }, - "minecraft:attack_speed": { + "minecraft:attack_knockback": { "protocol_id": 4 }, - "minecraft:block_break_speed": { + "minecraft:attack_speed": { "protocol_id": 5 }, - "minecraft:block_interaction_range": { + "minecraft:below_name_distance": { "protocol_id": 6 }, - "minecraft:burning_time": { + "minecraft:block_break_speed": { "protocol_id": 7 }, - "minecraft:camera_distance": { + "minecraft:block_interaction_range": { "protocol_id": 8 }, - "minecraft:entity_interaction_range": { - "protocol_id": 10 - }, - "minecraft:explosion_knockback_resistance": { + "minecraft:bounciness": { "protocol_id": 9 }, - "minecraft:fall_damage_multiplier": { + "minecraft:burning_time": { + "protocol_id": 10 + }, + "minecraft:camera_distance": { "protocol_id": 11 }, - "minecraft:flying_speed": { - "protocol_id": 12 - }, - "minecraft:follow_range": { + "minecraft:entity_interaction_range": { "protocol_id": 13 }, - "minecraft:gravity": { + "minecraft:explosion_knockback_resistance": { + "protocol_id": 12 + }, + "minecraft:fall_damage_multiplier": { "protocol_id": 14 }, - "minecraft:jump_strength": { + "minecraft:flying_speed": { "protocol_id": 15 }, - "minecraft:knockback_resistance": { + "minecraft:follow_range": { "protocol_id": 16 }, - "minecraft:luck": { + "minecraft:friction_modifier": { "protocol_id": 17 }, - "minecraft:max_absorption": { + "minecraft:gravity": { "protocol_id": 18 }, - "minecraft:max_health": { + "minecraft:jump_strength": { "protocol_id": 19 }, - "minecraft:mining_efficiency": { + "minecraft:knockback_resistance": { "protocol_id": 20 }, - "minecraft:movement_efficiency": { + "minecraft:luck": { "protocol_id": 21 }, - "minecraft:movement_speed": { + "minecraft:max_absorption": { "protocol_id": 22 }, - "minecraft:oxygen_bonus": { + "minecraft:max_health": { "protocol_id": 23 }, - "minecraft:safe_fall_distance": { + "minecraft:mining_efficiency": { "protocol_id": 24 }, - "minecraft:scale": { + "minecraft:movement_efficiency": { "protocol_id": 25 }, - "minecraft:sneaking_speed": { + "minecraft:movement_speed": { "protocol_id": 26 }, - "minecraft:spawn_reinforcements": { + "minecraft:name_tag_distance": { "protocol_id": 27 }, - "minecraft:step_height": { + "minecraft:oxygen_bonus": { "protocol_id": 28 }, - "minecraft:submerged_mining_speed": { + "minecraft:safe_fall_distance": { "protocol_id": 29 }, - "minecraft:sweeping_damage_ratio": { + "minecraft:scale": { "protocol_id": 30 }, - "minecraft:tempt_range": { + "minecraft:sneaking_speed": { "protocol_id": 31 }, - "minecraft:water_movement_efficiency": { + "minecraft:spawn_reinforcements": { "protocol_id": 32 }, - "minecraft:waypoint_receive_range": { + "minecraft:step_height": { + "protocol_id": 33 + }, + "minecraft:submerged_mining_speed": { "protocol_id": 34 }, + "minecraft:sweeping_damage_ratio": { + "protocol_id": 35 + }, + "minecraft:tempt_range": { + "protocol_id": 36 + }, + "minecraft:water_movement_efficiency": { + "protocol_id": 37 + }, + "minecraft:waypoint_receive_range": { + "protocol_id": 39 + }, "minecraft:waypoint_transmit_range": { - "protocol_id": 33 + "protocol_id": 38 } }, "protocol_id": 19 @@ -336,7 +351,7 @@ "protocol_id": 362 }, "minecraft:azalea": { - "protocol_id": 1110 + "protocol_id": 1138 }, "minecraft:azalea_leaves": { "protocol_id": 97 @@ -432,10 +447,10 @@ "protocol_id": 848 }, "minecraft:big_dripleaf": { - "protocol_id": 1117 + "protocol_id": 1145 }, "minecraft:big_dripleaf_stem": { - "protocol_id": 1118 + "protocol_id": 1146 }, "minecraft:birch_button": { "protocol_id": 445 @@ -708,10 +723,10 @@ "protocol_id": 298 }, "minecraft:calcite": { - "protocol_id": 998 + "protocol_id": 1025 }, "minecraft:calibrated_sculk_sensor": { - "protocol_id": 1002 + "protocol_id": 1029 }, "minecraft:campfire": { "protocol_id": 859 @@ -738,10 +753,10 @@ "protocol_id": 795 }, "minecraft:cave_vines": { - "protocol_id": 1107 + "protocol_id": 1135 }, "minecraft:cave_vines_plant": { - "protocol_id": 1108 + "protocol_id": 1136 }, "minecraft:chain_command_block": { "protocol_id": 669 @@ -809,11 +824,14 @@ "minecraft:chiseled_bookshelf": { "protocol_id": 179 }, + "minecraft:chiseled_cinnabar": { + "protocol_id": 1024 + }, "minecraft:chiseled_copper": { - "protocol_id": 1020 + "protocol_id": 1052 }, "minecraft:chiseled_deepslate": { - "protocol_id": 1140 + "protocol_id": 1168 }, "minecraft:chiseled_nether_bricks": { "protocol_id": 941 @@ -836,6 +854,9 @@ "minecraft:chiseled_stone_bricks": { "protocol_id": 329 }, + "minecraft:chiseled_sulfur": { + "protocol_id": 1011 + }, "minecraft:chiseled_tuff": { "protocol_id": 992 }, @@ -848,11 +869,35 @@ "minecraft:chorus_plant": { "protocol_id": 656 }, + "minecraft:cinnabar": { + "protocol_id": 1012 + }, + "minecraft:cinnabar_brick_slab": { + "protocol_id": 1021 + }, + "minecraft:cinnabar_brick_stairs": { + "protocol_id": 1022 + }, + "minecraft:cinnabar_brick_wall": { + "protocol_id": 1023 + }, + "minecraft:cinnabar_bricks": { + "protocol_id": 1020 + }, + "minecraft:cinnabar_slab": { + "protocol_id": 1013 + }, + "minecraft:cinnabar_stairs": { + "protocol_id": 1014 + }, + "minecraft:cinnabar_wall": { + "protocol_id": 1015 + }, "minecraft:clay": { "protocol_id": 281 }, "minecraft:closed_eyeblossom": { - "protocol_id": 1164 + "protocol_id": 1192 }, "minecraft:coal_block": { "protocol_id": 555 @@ -864,16 +909,16 @@ "protocol_id": 10 }, "minecraft:cobbled_deepslate": { - "protocol_id": 1124 + "protocol_id": 1152 }, "minecraft:cobbled_deepslate_slab": { - "protocol_id": 1126 + "protocol_id": 1154 }, "minecraft:cobbled_deepslate_stairs": { - "protocol_id": 1125 + "protocol_id": 1153 }, "minecraft:cobbled_deepslate_wall": { - "protocol_id": 1127 + "protocol_id": 1155 }, "minecraft:cobblestone": { "protocol_id": 12 @@ -909,37 +954,37 @@ "protocol_id": 342 }, "minecraft:copper_block": { - "protocol_id": 1007 + "protocol_id": 1034 }, "minecraft:copper_bulb": { - "protocol_id": 1073 + "protocol_id": 1100 }, "minecraft:copper_chain": { "protocol_id": 351 }, "minecraft:copper_chest": { - "protocol_id": 1081 + "protocol_id": 1108 }, "minecraft:copper_door": { - "protocol_id": 1049 + "protocol_id": 1076 }, "minecraft:copper_golem_statue": { - "protocol_id": 1089 + "protocol_id": 1116 }, "minecraft:copper_grate": { - "protocol_id": 1065 + "protocol_id": 1092 }, "minecraft:copper_lantern": { "protocol_id": 851 }, "minecraft:copper_ore": { - "protocol_id": 1011 + "protocol_id": 1042 }, "minecraft:copper_torch": { "protocol_id": 292 }, "minecraft:copper_trapdoor": { - "protocol_id": 1057 + "protocol_id": 1084 }, "minecraft:copper_wall_torch": { "protocol_id": 293 @@ -948,10 +993,10 @@ "protocol_id": 169 }, "minecraft:cracked_deepslate_bricks": { - "protocol_id": 1141 + "protocol_id": 1169 }, "minecraft:cracked_deepslate_tiles": { - "protocol_id": 1142 + "protocol_id": 1170 }, "minecraft:cracked_nether_bricks": { "protocol_id": 942 @@ -963,7 +1008,7 @@ "protocol_id": 328 }, "minecraft:crafter": { - "protocol_id": 1156 + "protocol_id": 1184 }, "minecraft:crafting_table": { "protocol_id": 206 @@ -1038,13 +1083,13 @@ "protocol_id": 917 }, "minecraft:cut_copper": { - "protocol_id": 1016 + "protocol_id": 1044 }, "minecraft:cut_copper_slab": { - "protocol_id": 1032 + "protocol_id": 1068 }, "minecraft:cut_copper_stairs": { - "protocol_id": 1028 + "protocol_id": 1060 }, "minecraft:cut_red_sandstone": { "protocol_id": 597 @@ -1236,28 +1281,28 @@ "protocol_id": 778 }, "minecraft:decorated_pot": { - "protocol_id": 1155 + "protocol_id": 1183 }, "minecraft:deepslate": { - "protocol_id": 1123 + "protocol_id": 1151 }, "minecraft:deepslate_brick_slab": { - "protocol_id": 1138 + "protocol_id": 1166 }, "minecraft:deepslate_brick_stairs": { - "protocol_id": 1137 + "protocol_id": 1165 }, "minecraft:deepslate_brick_wall": { - "protocol_id": 1139 + "protocol_id": 1167 }, "minecraft:deepslate_bricks": { - "protocol_id": 1136 + "protocol_id": 1164 }, "minecraft:deepslate_coal_ore": { "protocol_id": 47 }, "minecraft:deepslate_copper_ore": { - "protocol_id": 1012 + "protocol_id": 1043 }, "minecraft:deepslate_diamond_ore": { "protocol_id": 204 @@ -1278,16 +1323,16 @@ "protocol_id": 272 }, "minecraft:deepslate_tile_slab": { - "protocol_id": 1134 + "protocol_id": 1162 }, "minecraft:deepslate_tile_stairs": { - "protocol_id": 1133 + "protocol_id": 1161 }, "minecraft:deepslate_tile_wall": { - "protocol_id": 1135 + "protocol_id": 1163 }, "minecraft:deepslate_tiles": { - "protocol_id": 1132 + "protocol_id": 1160 }, "minecraft:detector_rail": { "protocol_id": 127 @@ -1335,7 +1380,7 @@ "protocol_id": 744 }, "minecraft:dripstone_block": { - "protocol_id": 1106 + "protocol_id": 1132 }, "minecraft:dropper": { "protocol_id": 483 @@ -1380,49 +1425,49 @@ "protocol_id": 400 }, "minecraft:exposed_chiseled_copper": { - "protocol_id": 1019 + "protocol_id": 1053 }, "minecraft:exposed_copper": { - "protocol_id": 1008 + "protocol_id": 1035 }, "minecraft:exposed_copper_bars": { "protocol_id": 343 }, "minecraft:exposed_copper_bulb": { - "protocol_id": 1074 + "protocol_id": 1101 }, "minecraft:exposed_copper_chain": { "protocol_id": 352 }, "minecraft:exposed_copper_chest": { - "protocol_id": 1082 + "protocol_id": 1109 }, "minecraft:exposed_copper_door": { - "protocol_id": 1050 + "protocol_id": 1077 }, "minecraft:exposed_copper_golem_statue": { - "protocol_id": 1090 + "protocol_id": 1117 }, "minecraft:exposed_copper_grate": { - "protocol_id": 1066 + "protocol_id": 1093 }, "minecraft:exposed_copper_lantern": { "protocol_id": 852 }, "minecraft:exposed_copper_trapdoor": { - "protocol_id": 1058 + "protocol_id": 1085 }, "minecraft:exposed_cut_copper": { - "protocol_id": 1015 + "protocol_id": 1045 }, "minecraft:exposed_cut_copper_slab": { - "protocol_id": 1031 + "protocol_id": 1069 }, "minecraft:exposed_cut_copper_stairs": { - "protocol_id": 1027 + "protocol_id": 1061 }, "minecraft:exposed_lightning_rod": { - "protocol_id": 1098 + "protocol_id": 1125 }, "minecraft:farmland": { "protocol_id": 208 @@ -1446,7 +1491,7 @@ "protocol_id": 786 }, "minecraft:firefly_bush": { - "protocol_id": 1167 + "protocol_id": 1195 }, "minecraft:fletching_table": { "protocol_id": 843 @@ -1455,13 +1500,13 @@ "protocol_id": 411 }, "minecraft:flowering_azalea": { - "protocol_id": 1111 + "protocol_id": 1139 }, "minecraft:flowering_azalea_leaves": { "protocol_id": 98 }, "minecraft:frogspawn": { - "protocol_id": 1153 + "protocol_id": 1181 }, "minecraft:frosted_ice": { "protocol_id": 670 @@ -1599,13 +1644,13 @@ "protocol_id": 844 }, "minecraft:hanging_roots": { - "protocol_id": 1120 + "protocol_id": 1148 }, "minecraft:hay_block": { "protocol_id": 537 }, "minecraft:heavy_core": { - "protocol_id": 1159 + "protocol_id": 1187 }, "minecraft:heavy_weighted_pressure_plate": { "protocol_id": 472 @@ -1644,7 +1689,7 @@ "protocol_id": 336 }, "minecraft:infested_deepslate": { - "protocol_id": 1143 + "protocol_id": 1171 }, "minecraft:infested_mossy_stone_bricks": { "protocol_id": 335 @@ -1767,7 +1812,7 @@ "protocol_id": 389 }, "minecraft:leaf_litter": { - "protocol_id": 1115 + "protocol_id": 1143 }, "minecraft:lectern": { "protocol_id": 845 @@ -1866,7 +1911,7 @@ "protocol_id": 471 }, "minecraft:lightning_rod": { - "protocol_id": 1097 + "protocol_id": 1124 }, "minecraft:lilac": { "protocol_id": 558 @@ -2037,10 +2082,10 @@ "protocol_id": 365 }, "minecraft:moss_block": { - "protocol_id": 1116 + "protocol_id": 1144 }, "minecraft:moss_carpet": { - "protocol_id": 1112 + "protocol_id": 1140 }, "minecraft:mossy_cobblestone": { "protocol_id": 192 @@ -2070,7 +2115,7 @@ "protocol_id": 156 }, "minecraft:mud": { - "protocol_id": 1122 + "protocol_id": 1150 }, "minecraft:mud_brick_slab": { "protocol_id": 618 @@ -2196,10 +2241,10 @@ "protocol_id": 193 }, "minecraft:ochre_froglight": { - "protocol_id": 1150 + "protocol_id": 1178 }, "minecraft:open_eyeblossom": { - "protocol_id": 1163 + "protocol_id": 1191 }, "minecraft:orange_banner": { "protocol_id": 564 @@ -2250,49 +2295,49 @@ "protocol_id": 168 }, "minecraft:oxidized_chiseled_copper": { - "protocol_id": 1017 + "protocol_id": 1055 }, "minecraft:oxidized_copper": { - "protocol_id": 1010 + "protocol_id": 1037 }, "minecraft:oxidized_copper_bars": { "protocol_id": 345 }, "minecraft:oxidized_copper_bulb": { - "protocol_id": 1076 + "protocol_id": 1103 }, "minecraft:oxidized_copper_chain": { "protocol_id": 354 }, "minecraft:oxidized_copper_chest": { - "protocol_id": 1084 + "protocol_id": 1111 }, "minecraft:oxidized_copper_door": { - "protocol_id": 1051 + "protocol_id": 1079 }, "minecraft:oxidized_copper_golem_statue": { - "protocol_id": 1092 + "protocol_id": 1119 }, "minecraft:oxidized_copper_grate": { - "protocol_id": 1068 + "protocol_id": 1095 }, "minecraft:oxidized_copper_lantern": { "protocol_id": 854 }, "minecraft:oxidized_copper_trapdoor": { - "protocol_id": 1059 + "protocol_id": 1087 }, "minecraft:oxidized_cut_copper": { - "protocol_id": 1013 + "protocol_id": 1047 }, "minecraft:oxidized_cut_copper_slab": { - "protocol_id": 1029 + "protocol_id": 1071 }, "minecraft:oxidized_cut_copper_stairs": { - "protocol_id": 1025 + "protocol_id": 1063 }, "minecraft:oxidized_lightning_rod": { - "protocol_id": 1100 + "protocol_id": 1127 }, "minecraft:packed_ice": { "protocol_id": 556 @@ -2301,13 +2346,13 @@ "protocol_id": 330 }, "minecraft:pale_hanging_moss": { - "protocol_id": 1162 + "protocol_id": 1190 }, "minecraft:pale_moss_block": { - "protocol_id": 1160 + "protocol_id": 1188 }, "minecraft:pale_moss_carpet": { - "protocol_id": 1161 + "protocol_id": 1189 }, "minecraft:pale_oak_button": { "protocol_id": 450 @@ -2364,7 +2409,7 @@ "protocol_id": 20 }, "minecraft:pearlescent_froglight": { - "protocol_id": 1152 + "protocol_id": 1180 }, "minecraft:peony": { "protocol_id": 560 @@ -2403,7 +2448,7 @@ "protocol_id": 700 }, "minecraft:pink_petals": { - "protocol_id": 1113 + "protocol_id": 1141 }, "minecraft:pink_shulker_box": { "protocol_id": 684 @@ -2448,7 +2493,7 @@ "protocol_id": 11 }, "minecraft:pointed_dripstone": { - "protocol_id": 1105 + "protocol_id": 1133 }, "minecraft:polished_andesite": { "protocol_id": 7 @@ -2492,17 +2537,29 @@ "minecraft:polished_blackstone_wall": { "protocol_id": 940 }, + "minecraft:polished_cinnabar": { + "protocol_id": 1016 + }, + "minecraft:polished_cinnabar_slab": { + "protocol_id": 1017 + }, + "minecraft:polished_cinnabar_stairs": { + "protocol_id": 1018 + }, + "minecraft:polished_cinnabar_wall": { + "protocol_id": 1019 + }, "minecraft:polished_deepslate": { - "protocol_id": 1128 + "protocol_id": 1156 }, "minecraft:polished_deepslate_slab": { - "protocol_id": 1130 + "protocol_id": 1158 }, "minecraft:polished_deepslate_stairs": { - "protocol_id": 1129 + "protocol_id": 1157 }, "minecraft:polished_deepslate_wall": { - "protocol_id": 1131 + "protocol_id": 1159 }, "minecraft:polished_diorite": { "protocol_id": 5 @@ -2522,6 +2579,18 @@ "minecraft:polished_granite_stairs": { "protocol_id": 797 }, + "minecraft:polished_sulfur": { + "protocol_id": 1003 + }, + "minecraft:polished_sulfur_slab": { + "protocol_id": 1004 + }, + "minecraft:polished_sulfur_stairs": { + "protocol_id": 1005 + }, + "minecraft:polished_sulfur_wall": { + "protocol_id": 1006 + }, "minecraft:polished_tuff": { "protocol_id": 988 }, @@ -2540,6 +2609,9 @@ "minecraft:potatoes": { "protocol_id": 442 }, + "minecraft:potent_sulfur": { + "protocol_id": 999 + }, "minecraft:potted_acacia_sapling": { "protocol_id": 417 }, @@ -2547,7 +2619,7 @@ "protocol_id": 427 }, "minecraft:potted_azalea_bush": { - "protocol_id": 1148 + "protocol_id": 1176 }, "minecraft:potted_azure_bluet": { "protocol_id": 428 @@ -2571,7 +2643,7 @@ "protocol_id": 418 }, "minecraft:potted_closed_eyeblossom": { - "protocol_id": 1166 + "protocol_id": 1194 }, "minecraft:potted_cornflower": { "protocol_id": 434 @@ -2595,7 +2667,7 @@ "protocol_id": 422 }, "minecraft:potted_flowering_azalea_bush": { - "protocol_id": 1149 + "protocol_id": 1177 }, "minecraft:potted_golden_dandelion": { "protocol_id": 424 @@ -2613,7 +2685,7 @@ "protocol_id": 413 }, "minecraft:potted_open_eyeblossom": { - "protocol_id": 1165 + "protocol_id": 1193 }, "minecraft:potted_orange_tulip": { "protocol_id": 430 @@ -2655,7 +2727,7 @@ "protocol_id": 436 }, "minecraft:powder_snow": { - "protocol_id": 1000 + "protocol_id": 1027 }, "minecraft:powder_snow_cauldron": { "protocol_id": 390 @@ -2763,13 +2835,13 @@ "protocol_id": 222 }, "minecraft:raw_copper_block": { - "protocol_id": 1146 + "protocol_id": 1174 }, "minecraft:raw_gold_block": { - "protocol_id": 1147 + "protocol_id": 1175 }, "minecraft:raw_iron_block": { - "protocol_id": 1145 + "protocol_id": 1173 }, "minecraft:red_banner": { "protocol_id": 577 @@ -2868,7 +2940,7 @@ "protocol_id": 202 }, "minecraft:reinforced_deepslate": { - "protocol_id": 1154 + "protocol_id": 1182 }, "minecraft:repeater": { "protocol_id": 299 @@ -2898,7 +2970,7 @@ "protocol_id": 918 }, "minecraft:rooted_dirt": { - "protocol_id": 1121 + "protocol_id": 1149 }, "minecraft:rose_bush": { "protocol_id": 559 @@ -2922,19 +2994,19 @@ "protocol_id": 837 }, "minecraft:sculk": { - "protocol_id": 1003 + "protocol_id": 1030 }, "minecraft:sculk_catalyst": { - "protocol_id": 1005 + "protocol_id": 1032 }, "minecraft:sculk_sensor": { - "protocol_id": 1001 + "protocol_id": 1028 }, "minecraft:sculk_shrieker": { - "protocol_id": 1006 + "protocol_id": 1033 }, "minecraft:sculk_vein": { - "protocol_id": 1004 + "protocol_id": 1031 }, "minecraft:sea_lantern": { "protocol_id": 536 @@ -2970,7 +3042,7 @@ "protocol_id": 983 }, "minecraft:small_dripleaf": { - "protocol_id": 1119 + "protocol_id": 1147 }, "minecraft:smithing_table": { "protocol_id": 846 @@ -2979,7 +3051,7 @@ "protocol_id": 840 }, "minecraft:smooth_basalt": { - "protocol_id": 1144 + "protocol_id": 1172 }, "minecraft:smooth_quartz": { "protocol_id": 626 @@ -3051,7 +3123,7 @@ "protocol_id": 99 }, "minecraft:spore_blossom": { - "protocol_id": 1109 + "protocol_id": 1137 }, "minecraft:spruce_button": { "protocol_id": 444 @@ -3218,6 +3290,33 @@ "minecraft:sugar_cane": { "protocol_id": 282 }, + "minecraft:sulfur": { + "protocol_id": 998 + }, + "minecraft:sulfur_brick_slab": { + "protocol_id": 1008 + }, + "minecraft:sulfur_brick_stairs": { + "protocol_id": 1009 + }, + "minecraft:sulfur_brick_wall": { + "protocol_id": 1010 + }, + "minecraft:sulfur_bricks": { + "protocol_id": 1007 + }, + "minecraft:sulfur_slab": { + "protocol_id": 1000 + }, + "minecraft:sulfur_spike": { + "protocol_id": 1134 + }, + "minecraft:sulfur_stairs": { + "protocol_id": 1001 + }, + "minecraft:sulfur_wall": { + "protocol_id": 1002 + }, "minecraft:sunflower": { "protocol_id": 557 }, @@ -3252,7 +3351,7 @@ "protocol_id": 908 }, "minecraft:tinted_glass": { - "protocol_id": 999 + "protocol_id": 1026 }, "minecraft:tnt": { "protocol_id": 177 @@ -3270,7 +3369,7 @@ "protocol_id": 470 }, "minecraft:trial_spawner": { - "protocol_id": 1157 + "protocol_id": 1185 }, "minecraft:tripwire": { "protocol_id": 402 @@ -3324,10 +3423,10 @@ "protocol_id": 881 }, "minecraft:vault": { - "protocol_id": 1158 + "protocol_id": 1186 }, "minecraft:verdant_froglight": { - "protocol_id": 1151 + "protocol_id": 1179 }, "minecraft:vine": { "protocol_id": 366 @@ -3405,229 +3504,229 @@ "protocol_id": 388 }, "minecraft:waxed_chiseled_copper": { - "protocol_id": 1024 + "protocol_id": 1056 }, "minecraft:waxed_copper_bars": { "protocol_id": 346 }, "minecraft:waxed_copper_block": { - "protocol_id": 1033 + "protocol_id": 1038 }, "minecraft:waxed_copper_bulb": { - "protocol_id": 1077 + "protocol_id": 1104 }, "minecraft:waxed_copper_chain": { "protocol_id": 355 }, "minecraft:waxed_copper_chest": { - "protocol_id": 1085 + "protocol_id": 1112 }, "minecraft:waxed_copper_door": { - "protocol_id": 1053 + "protocol_id": 1080 }, "minecraft:waxed_copper_golem_statue": { - "protocol_id": 1093 + "protocol_id": 1120 }, "minecraft:waxed_copper_grate": { - "protocol_id": 1069 + "protocol_id": 1096 }, "minecraft:waxed_copper_lantern": { "protocol_id": 855 }, "minecraft:waxed_copper_trapdoor": { - "protocol_id": 1061 + "protocol_id": 1088 }, "minecraft:waxed_cut_copper": { - "protocol_id": 1040 - }, - "minecraft:waxed_cut_copper_slab": { "protocol_id": 1048 }, + "minecraft:waxed_cut_copper_slab": { + "protocol_id": 1072 + }, "minecraft:waxed_cut_copper_stairs": { - "protocol_id": 1044 + "protocol_id": 1064 }, "minecraft:waxed_exposed_chiseled_copper": { - "protocol_id": 1023 + "protocol_id": 1057 }, "minecraft:waxed_exposed_copper": { - "protocol_id": 1035 + "protocol_id": 1039 }, "minecraft:waxed_exposed_copper_bars": { "protocol_id": 347 }, "minecraft:waxed_exposed_copper_bulb": { - "protocol_id": 1078 + "protocol_id": 1105 }, "minecraft:waxed_exposed_copper_chain": { "protocol_id": 356 }, "minecraft:waxed_exposed_copper_chest": { - "protocol_id": 1086 + "protocol_id": 1113 }, "minecraft:waxed_exposed_copper_door": { - "protocol_id": 1054 + "protocol_id": 1081 }, "minecraft:waxed_exposed_copper_golem_statue": { - "protocol_id": 1094 + "protocol_id": 1121 }, "minecraft:waxed_exposed_copper_grate": { - "protocol_id": 1070 + "protocol_id": 1097 }, "minecraft:waxed_exposed_copper_lantern": { "protocol_id": 856 }, "minecraft:waxed_exposed_copper_trapdoor": { - "protocol_id": 1062 + "protocol_id": 1089 }, "minecraft:waxed_exposed_cut_copper": { - "protocol_id": 1039 + "protocol_id": 1049 }, "minecraft:waxed_exposed_cut_copper_slab": { - "protocol_id": 1047 + "protocol_id": 1073 }, "minecraft:waxed_exposed_cut_copper_stairs": { - "protocol_id": 1043 + "protocol_id": 1065 }, "minecraft:waxed_exposed_lightning_rod": { - "protocol_id": 1102 + "protocol_id": 1129 }, "minecraft:waxed_lightning_rod": { - "protocol_id": 1101 + "protocol_id": 1128 }, "minecraft:waxed_oxidized_chiseled_copper": { - "protocol_id": 1021 + "protocol_id": 1059 }, "minecraft:waxed_oxidized_copper": { - "protocol_id": 1036 + "protocol_id": 1041 }, "minecraft:waxed_oxidized_copper_bars": { "protocol_id": 349 }, "minecraft:waxed_oxidized_copper_bulb": { - "protocol_id": 1080 + "protocol_id": 1107 }, "minecraft:waxed_oxidized_copper_chain": { "protocol_id": 358 }, "minecraft:waxed_oxidized_copper_chest": { - "protocol_id": 1088 + "protocol_id": 1115 }, "minecraft:waxed_oxidized_copper_door": { - "protocol_id": 1055 + "protocol_id": 1083 }, "minecraft:waxed_oxidized_copper_golem_statue": { - "protocol_id": 1096 + "protocol_id": 1123 }, "minecraft:waxed_oxidized_copper_grate": { - "protocol_id": 1072 + "protocol_id": 1099 }, "minecraft:waxed_oxidized_copper_lantern": { "protocol_id": 858 }, "minecraft:waxed_oxidized_copper_trapdoor": { - "protocol_id": 1063 + "protocol_id": 1091 }, "minecraft:waxed_oxidized_cut_copper": { - "protocol_id": 1037 + "protocol_id": 1051 }, "minecraft:waxed_oxidized_cut_copper_slab": { - "protocol_id": 1045 + "protocol_id": 1075 }, "minecraft:waxed_oxidized_cut_copper_stairs": { - "protocol_id": 1041 + "protocol_id": 1067 }, "minecraft:waxed_oxidized_lightning_rod": { - "protocol_id": 1104 + "protocol_id": 1131 }, "minecraft:waxed_weathered_chiseled_copper": { - "protocol_id": 1022 + "protocol_id": 1058 }, "minecraft:waxed_weathered_copper": { - "protocol_id": 1034 + "protocol_id": 1040 }, "minecraft:waxed_weathered_copper_bars": { "protocol_id": 348 }, "minecraft:waxed_weathered_copper_bulb": { - "protocol_id": 1079 + "protocol_id": 1106 }, "minecraft:waxed_weathered_copper_chain": { "protocol_id": 357 }, "minecraft:waxed_weathered_copper_chest": { - "protocol_id": 1087 + "protocol_id": 1114 }, "minecraft:waxed_weathered_copper_door": { - "protocol_id": 1056 + "protocol_id": 1082 }, "minecraft:waxed_weathered_copper_golem_statue": { - "protocol_id": 1095 + "protocol_id": 1122 }, "minecraft:waxed_weathered_copper_grate": { - "protocol_id": 1071 + "protocol_id": 1098 }, "minecraft:waxed_weathered_copper_lantern": { "protocol_id": 857 }, "minecraft:waxed_weathered_copper_trapdoor": { - "protocol_id": 1064 + "protocol_id": 1090 }, "minecraft:waxed_weathered_cut_copper": { - "protocol_id": 1038 + "protocol_id": 1050 }, "minecraft:waxed_weathered_cut_copper_slab": { - "protocol_id": 1046 + "protocol_id": 1074 }, "minecraft:waxed_weathered_cut_copper_stairs": { - "protocol_id": 1042 + "protocol_id": 1066 }, "minecraft:waxed_weathered_lightning_rod": { - "protocol_id": 1103 + "protocol_id": 1130 }, "minecraft:weathered_chiseled_copper": { - "protocol_id": 1018 + "protocol_id": 1054 }, "minecraft:weathered_copper": { - "protocol_id": 1009 + "protocol_id": 1036 }, "minecraft:weathered_copper_bars": { "protocol_id": 344 }, "minecraft:weathered_copper_bulb": { - "protocol_id": 1075 + "protocol_id": 1102 }, "minecraft:weathered_copper_chain": { "protocol_id": 353 }, "minecraft:weathered_copper_chest": { - "protocol_id": 1083 + "protocol_id": 1110 }, "minecraft:weathered_copper_door": { - "protocol_id": 1052 + "protocol_id": 1078 }, "minecraft:weathered_copper_golem_statue": { - "protocol_id": 1091 + "protocol_id": 1118 }, "minecraft:weathered_copper_grate": { - "protocol_id": 1067 + "protocol_id": 1094 }, "minecraft:weathered_copper_lantern": { "protocol_id": 853 }, "minecraft:weathered_copper_trapdoor": { - "protocol_id": 1060 + "protocol_id": 1086 }, "minecraft:weathered_cut_copper": { - "protocol_id": 1014 + "protocol_id": 1046 }, "minecraft:weathered_cut_copper_slab": { - "protocol_id": 1030 + "protocol_id": 1070 }, "minecraft:weathered_cut_copper_stairs": { - "protocol_id": 1026 + "protocol_id": 1062 }, "minecraft:weathered_lightning_rod": { - "protocol_id": 1099 + "protocol_id": 1126 }, "minecraft:weeping_vines": { "protocol_id": 878 @@ -3687,7 +3786,7 @@ "protocol_id": 140 }, "minecraft:wildflowers": { - "protocol_id": 1114 + "protocol_id": 1142 }, "minecraft:wither_rose": { "protocol_id": 170 @@ -3755,40 +3854,37 @@ "protocol_id": 20 }, "minecraft:barrel": { - "protocol_id": 27 + "protocol_id": 26 }, "minecraft:beacon": { "protocol_id": 15 }, - "minecraft:bed": { - "protocol_id": 25 - }, "minecraft:beehive": { - "protocol_id": 34 + "protocol_id": 33 }, "minecraft:bell": { - "protocol_id": 31 + "protocol_id": 30 }, "minecraft:blast_furnace": { - "protocol_id": 29 + "protocol_id": 28 }, "minecraft:brewing_stand": { "protocol_id": 12 }, "minecraft:brushable_block": { - "protocol_id": 41 + "protocol_id": 40 }, "minecraft:calibrated_sculk_sensor": { - "protocol_id": 36 + "protocol_id": 35 }, "minecraft:campfire": { - "protocol_id": 33 + "protocol_id": 32 }, "minecraft:chest": { "protocol_id": 1 }, "minecraft:chiseled_bookshelf": { - "protocol_id": 39 + "protocol_id": 38 }, "minecraft:command_block": { "protocol_id": 23 @@ -3797,13 +3893,13 @@ "protocol_id": 19 }, "minecraft:conduit": { - "protocol_id": 26 + "protocol_id": 25 }, "minecraft:copper_golem_statue": { - "protocol_id": 48 + "protocol_id": 47 }, "minecraft:crafter": { - "protocol_id": 43 + "protocol_id": 42 }, "minecraft:creaking_heart": { "protocol_id": 10 @@ -3812,7 +3908,7 @@ "protocol_id": 17 }, "minecraft:decorated_pot": { - "protocol_id": 42 + "protocol_id": 41 }, "minecraft:dispenser": { "protocol_id": 5 @@ -3842,13 +3938,13 @@ "protocol_id": 18 }, "minecraft:jigsaw": { - "protocol_id": 32 + "protocol_id": 31 }, "minecraft:jukebox": { "protocol_id": 4 }, "minecraft:lectern": { - "protocol_id": 30 + "protocol_id": 29 }, "minecraft:mob_spawner": { "protocol_id": 9 @@ -3856,17 +3952,20 @@ "minecraft:piston": { "protocol_id": 11 }, + "minecraft:potent_sulfur": { + "protocol_id": 48 + }, "minecraft:sculk_catalyst": { - "protocol_id": 37 + "protocol_id": 36 }, "minecraft:sculk_sensor": { - "protocol_id": 35 + "protocol_id": 34 }, "minecraft:sculk_shrieker": { - "protocol_id": 38 + "protocol_id": 37 }, "minecraft:shelf": { - "protocol_id": 40 + "protocol_id": 39 }, "minecraft:shulker_box": { "protocol_id": 24 @@ -3878,25 +3977,25 @@ "protocol_id": 16 }, "minecraft:smoker": { - "protocol_id": 28 + "protocol_id": 27 }, "minecraft:structure_block": { "protocol_id": 21 }, "minecraft:test_block": { - "protocol_id": 46 + "protocol_id": 45 }, "minecraft:test_instance_block": { - "protocol_id": 47 + "protocol_id": 46 }, "minecraft:trapped_chest": { "protocol_id": 2 }, "minecraft:trial_spawner": { - "protocol_id": 44 + "protocol_id": 43 }, "minecraft:vault": { - "protocol_id": 45 + "protocol_id": 44 } }, "protocol_id": 10 @@ -3904,16 +4003,19 @@ "minecraft:block_predicate_type": { "entries": { "minecraft:all_of": { - "protocol_id": 9 + "protocol_id": 10 }, "minecraft:any_of": { - "protocol_id": 8 + "protocol_id": 9 }, "minecraft:has_sturdy_face": { - "protocol_id": 3 + "protocol_id": 4 }, "minecraft:inside_world_bounds": { - "protocol_id": 7 + "protocol_id": 8 + }, + "minecraft:matching_biomes": { + "protocol_id": 3 }, "minecraft:matching_block_tag": { "protocol_id": 1 @@ -3925,22 +4027,22 @@ "protocol_id": 2 }, "minecraft:not": { - "protocol_id": 10 - }, - "minecraft:replaceable": { - "protocol_id": 5 - }, - "minecraft:solid": { - "protocol_id": 4 - }, - "minecraft:true": { "protocol_id": 11 }, - "minecraft:unobstructed": { + "minecraft:replaceable": { + "protocol_id": 6 + }, + "minecraft:solid": { + "protocol_id": 5 + }, + "minecraft:true": { "protocol_id": 12 }, + "minecraft:unobstructed": { + "protocol_id": 13 + }, "minecraft:would_survive": { - "protocol_id": 6 + "protocol_id": 7 } }, "protocol_id": 38 @@ -4143,7 +4245,7 @@ "protocol_id": 63 }, "minecraft:creaking_heart": { - "protocol_id": 196 + "protocol_id": 197 }, "minecraft:crop": { "protocol_id": 64 @@ -4332,7 +4434,7 @@ "protocol_id": 126 }, "minecraft:lily_pad": { - "protocol_id": 239 + "protocol_id": 241 }, "minecraft:liquid": { "protocol_id": 127 @@ -4377,7 +4479,7 @@ "protocol_id": 139 }, "minecraft:nether_roots": { - "protocol_id": 169 + "protocol_id": 170 }, "minecraft:nether_sprouts": { "protocol_id": 141 @@ -4421,6 +4523,9 @@ "minecraft:potato": { "protocol_id": 154 }, + "minecraft:potent_sulfur": { + "protocol_id": 158 + }, "minecraft:powder_snow": { "protocol_id": 155 }, @@ -4431,310 +4536,313 @@ "protocol_id": 157 }, "minecraft:pressure_plate": { - "protocol_id": 158 - }, - "minecraft:pumpkin": { "protocol_id": 159 }, - "minecraft:rail": { + "minecraft:pumpkin": { "protocol_id": 160 }, - "minecraft:redstone_lamp": { + "minecraft:rail": { "protocol_id": 161 }, - "minecraft:redstone_ore": { + "minecraft:redstone_lamp": { "protocol_id": 162 }, - "minecraft:redstone_torch": { + "minecraft:redstone_ore": { "protocol_id": 163 }, - "minecraft:redstone_wall_torch": { + "minecraft:redstone_torch": { "protocol_id": 164 }, - "minecraft:redstone_wire": { + "minecraft:redstone_wall_torch": { "protocol_id": 165 }, - "minecraft:repeater": { + "minecraft:redstone_wire": { "protocol_id": 166 }, - "minecraft:respawn_anchor": { + "minecraft:repeater": { "protocol_id": 167 }, - "minecraft:rooted_dirt": { + "minecraft:respawn_anchor": { "protocol_id": 168 }, + "minecraft:rooted_dirt": { + "protocol_id": 169 + }, "minecraft:rotated_pillar": { - "protocol_id": 170 - }, - "minecraft:sand": { - "protocol_id": 172 - }, - "minecraft:sapling": { "protocol_id": 171 }, - "minecraft:scaffolding": { + "minecraft:sand": { "protocol_id": 173 }, - "minecraft:sculk": { - "protocol_id": 175 + "minecraft:sapling": { + "protocol_id": 172 }, - "minecraft:sculk_catalyst": { + "minecraft:scaffolding": { "protocol_id": 174 }, - "minecraft:sculk_sensor": { + "minecraft:sculk": { "protocol_id": 176 }, - "minecraft:sculk_shrieker": { + "minecraft:sculk_catalyst": { + "protocol_id": 175 + }, + "minecraft:sculk_sensor": { "protocol_id": 177 }, - "minecraft:sculk_vein": { + "minecraft:sculk_shrieker": { "protocol_id": 178 }, - "minecraft:sea_pickle": { - "protocol_id": 180 - }, - "minecraft:seagrass": { + "minecraft:sculk_vein": { "protocol_id": 179 }, - "minecraft:shelf": { + "minecraft:sea_pickle": { "protocol_id": 181 }, - "minecraft:short_dry_grass": { + "minecraft:seagrass": { + "protocol_id": 180 + }, + "minecraft:shelf": { "protocol_id": 182 }, - "minecraft:shulker_box": { + "minecraft:short_dry_grass": { "protocol_id": 183 }, - "minecraft:skull": { + "minecraft:shulker_box": { "protocol_id": 184 }, - "minecraft:slab": { + "minecraft:skull": { "protocol_id": 185 }, - "minecraft:slime": { + "minecraft:slab": { "protocol_id": 186 }, - "minecraft:small_dripleaf": { + "minecraft:slime": { "protocol_id": 187 }, - "minecraft:smithing_table": { + "minecraft:small_dripleaf": { "protocol_id": 188 }, - "minecraft:smoker": { + "minecraft:smithing_table": { "protocol_id": 189 }, - "minecraft:sniffer_egg": { + "minecraft:smoker": { "protocol_id": 190 }, - "minecraft:snow_layer": { + "minecraft:sniffer_egg": { "protocol_id": 191 }, - "minecraft:snowy_dirt": { + "minecraft:snow_layer": { "protocol_id": 192 }, - "minecraft:soul_fire": { + "minecraft:snowy_dirt": { "protocol_id": 193 }, - "minecraft:soul_sand": { + "minecraft:soul_fire": { "protocol_id": 194 }, - "minecraft:spawner": { + "minecraft:soul_sand": { "protocol_id": 195 }, - "minecraft:sponge": { - "protocol_id": 197 + "minecraft:spawner": { + "protocol_id": 196 }, - "minecraft:spore_blossom": { + "minecraft:sponge": { "protocol_id": 198 }, - "minecraft:stained_glass": { - "protocol_id": 200 - }, - "minecraft:stained_glass_pane": { + "minecraft:spore_blossom": { "protocol_id": 199 }, - "minecraft:stair": { + "minecraft:stained_glass": { "protocol_id": 201 }, - "minecraft:standing_sign": { + "minecraft:stained_glass_pane": { + "protocol_id": 200 + }, + "minecraft:stair": { "protocol_id": 202 }, - "minecraft:stem": { + "minecraft:standing_sign": { "protocol_id": 203 }, - "minecraft:stonecutter": { + "minecraft:stem": { "protocol_id": 204 }, - "minecraft:structure": { + "minecraft:stonecutter": { "protocol_id": 205 }, - "minecraft:structure_void": { + "minecraft:structure": { "protocol_id": 206 }, - "minecraft:sugar_cane": { + "minecraft:structure_void": { "protocol_id": 207 }, - "minecraft:sweet_berry_bush": { + "minecraft:sugar_cane": { "protocol_id": 208 }, - "minecraft:tall_dry_grass": { + "minecraft:sulfur_spike": { "protocol_id": 209 }, - "minecraft:tall_flower": { + "minecraft:sweet_berry_bush": { "protocol_id": 210 }, - "minecraft:tall_grass": { + "minecraft:tall_dry_grass": { "protocol_id": 211 }, - "minecraft:tall_seagrass": { + "minecraft:tall_flower": { "protocol_id": 212 }, - "minecraft:target": { + "minecraft:tall_grass": { "protocol_id": 213 }, - "minecraft:test": { + "minecraft:tall_seagrass": { "protocol_id": 214 }, - "minecraft:test_instance": { + "minecraft:target": { "protocol_id": 215 }, - "minecraft:tinted_glass": { + "minecraft:test": { "protocol_id": 216 }, - "minecraft:tinted_particle_leaves": { + "minecraft:test_instance": { "protocol_id": 217 }, - "minecraft:tnt": { + "minecraft:tinted_glass": { "protocol_id": 218 }, - "minecraft:torch": { - "protocol_id": 220 - }, - "minecraft:torchflower_crop": { + "minecraft:tinted_particle_leaves": { "protocol_id": 219 }, - "minecraft:transparent": { - "protocol_id": 221 + "minecraft:tnt": { + "protocol_id": 220 }, - "minecraft:trapdoor": { + "minecraft:torch": { "protocol_id": 222 }, - "minecraft:trapped_chest": { + "minecraft:torchflower_crop": { + "protocol_id": 221 + }, + "minecraft:transparent": { "protocol_id": 223 }, - "minecraft:trial_spawner": { + "minecraft:trapdoor": { "protocol_id": 224 }, - "minecraft:trip_wire_hook": { + "minecraft:trapped_chest": { "protocol_id": 225 }, - "minecraft:tripwire": { + "minecraft:trial_spawner": { "protocol_id": 226 }, - "minecraft:turtle_egg": { + "minecraft:trip_wire_hook": { "protocol_id": 227 }, - "minecraft:twisting_vines": { - "protocol_id": 229 - }, - "minecraft:twisting_vines_plant": { + "minecraft:tripwire": { "protocol_id": 228 }, - "minecraft:untinted_particle_leaves": { - "protocol_id": 230 + "minecraft:turtle_egg": { + "protocol_id": 229 }, - "minecraft:vault": { + "minecraft:twisting_vines": { "protocol_id": 231 }, - "minecraft:vine": { + "minecraft:twisting_vines_plant": { + "protocol_id": 230 + }, + "minecraft:untinted_particle_leaves": { "protocol_id": 232 }, - "minecraft:wall": { - "protocol_id": 238 - }, - "minecraft:wall_banner": { + "minecraft:vault": { "protocol_id": 233 }, - "minecraft:wall_hanging_sign": { + "minecraft:vine": { "protocol_id": 234 }, - "minecraft:wall_sign": { - "protocol_id": 235 - }, - "minecraft:wall_skull": { - "protocol_id": 236 - }, - "minecraft:wall_torch": { - "protocol_id": 237 - }, - "minecraft:waterlogged_transparent": { + "minecraft:wall": { "protocol_id": 240 }, - "minecraft:weathering_copper_bar": { - "protocol_id": 241 + "minecraft:wall_banner": { + "protocol_id": 235 }, - "minecraft:weathering_copper_bulb": { + "minecraft:wall_hanging_sign": { + "protocol_id": 236 + }, + "minecraft:wall_sign": { + "protocol_id": 237 + }, + "minecraft:wall_skull": { + "protocol_id": 238 + }, + "minecraft:wall_torch": { + "protocol_id": 239 + }, + "minecraft:waterlogged_transparent": { "protocol_id": 242 }, - "minecraft:weathering_copper_chain": { + "minecraft:weathering_copper_bar": { "protocol_id": 243 }, - "minecraft:weathering_copper_chest": { + "minecraft:weathering_copper_bulb": { "protocol_id": 244 }, - "minecraft:weathering_copper_door": { + "minecraft:weathering_copper_chain": { "protocol_id": 245 }, - "minecraft:weathering_copper_full": { + "minecraft:weathering_copper_chest": { "protocol_id": 246 }, - "minecraft:weathering_copper_golem_statue": { + "minecraft:weathering_copper_door": { "protocol_id": 247 }, - "minecraft:weathering_copper_grate": { + "minecraft:weathering_copper_full": { "protocol_id": 248 }, - "minecraft:weathering_copper_slab": { + "minecraft:weathering_copper_golem_statue": { "protocol_id": 249 }, - "minecraft:weathering_copper_stair": { + "minecraft:weathering_copper_grate": { "protocol_id": 250 }, - "minecraft:weathering_copper_trap_door": { + "minecraft:weathering_copper_slab": { "protocol_id": 251 }, - "minecraft:weathering_lantern": { + "minecraft:weathering_copper_stair": { "protocol_id": 252 }, - "minecraft:weathering_lightning_rod": { + "minecraft:weathering_copper_trapdoor": { "protocol_id": 253 }, - "minecraft:web": { + "minecraft:weathering_lantern": { "protocol_id": 254 }, - "minecraft:weeping_vines": { - "protocol_id": 256 - }, - "minecraft:weeping_vines_plant": { + "minecraft:weathering_lightning_rod": { "protocol_id": 255 }, - "minecraft:weighted_pressure_plate": { - "protocol_id": 257 + "minecraft:web": { + "protocol_id": 256 }, - "minecraft:wet_sponge": { + "minecraft:weeping_vines": { "protocol_id": 258 }, - "minecraft:wither_rose": { + "minecraft:weeping_vines_plant": { + "protocol_id": 257 + }, + "minecraft:weighted_pressure_plate": { "protocol_id": 259 }, - "minecraft:wither_skull": { + "minecraft:wet_sponge": { "protocol_id": 260 }, - "minecraft:wither_wall_skull": { + "minecraft:wither_rose": { "protocol_id": 261 }, - "minecraft:wool_carpet": { + "minecraft:wither_skull": { "protocol_id": 262 + }, + "minecraft:wither_wall_skull": { + "protocol_id": 263 + }, + "minecraft:wool_carpet": { + "protocol_id": 264 } }, "protocol_id": 56 @@ -4813,9 +4921,6 @@ "minecraft:block_state": { "protocol_id": 12 }, - "minecraft:color": { - "protocol_id": 16 - }, "minecraft:column_pos": { "protocol_id": 9 }, @@ -4936,6 +5041,9 @@ "minecraft:team": { "protocol_id": 33 }, + "minecraft:team_color": { + "protocol_id": 16 + }, "minecraft:template_mirror": { "protocol_id": 49 }, @@ -5322,7 +5430,7 @@ "protocol_id": 16 }, "minecraft:axolotl/variant": { - "protocol_id": 104 + "protocol_id": 105 }, "minecraft:banner_patterns": { "protocol_id": 72 @@ -5343,7 +5451,7 @@ "protocol_id": 37 }, "minecraft:break_sound": { - "protocol_id": 80 + "protocol_id": 81 }, "minecraft:bucket_entity_data": { "protocol_id": 59 @@ -5358,22 +5466,22 @@ "protocol_id": 14 }, "minecraft:cat/collar": { - "protocol_id": 107 + "protocol_id": 108 }, "minecraft:cat/sound_variant": { - "protocol_id": 106 + "protocol_id": 107 }, "minecraft:cat/variant": { - "protocol_id": 105 + "protocol_id": 106 }, "minecraft:charged_projectiles": { "protocol_id": 49 }, "minecraft:chicken/sound_variant": { - "protocol_id": 98 + "protocol_id": 99 }, "minecraft:chicken/variant": { - "protocol_id": 97 + "protocol_id": 98 }, "minecraft:consumable": { "protocol_id": 24 @@ -5382,13 +5490,13 @@ "protocol_id": 75 }, "minecraft:container_loot": { - "protocol_id": 79 + "protocol_id": 80 }, "minecraft:cow/sound_variant": { - "protocol_id": 96 + "protocol_id": 97 }, "minecraft:cow/variant": { - "protocol_id": 95 + "protocol_id": 96 }, "minecraft:creative_slot_lock": { "protocol_id": 20 @@ -5448,16 +5556,16 @@ "protocol_id": 23 }, "minecraft:fox/variant": { - "protocol_id": 85 + "protocol_id": 86 }, "minecraft:frog/variant": { - "protocol_id": 100 + "protocol_id": 101 }, "minecraft:glider": { "protocol_id": 34 }, "minecraft:horse/variant": { - "protocol_id": 101 + "protocol_id": 102 }, "minecraft:instrument": { "protocol_id": 61 @@ -5478,10 +5586,10 @@ "protocol_id": 39 }, "minecraft:llama/variant": { - "protocol_id": 103 + "protocol_id": 104 }, "minecraft:lock": { - "protocol_id": 78 + "protocol_id": 79 }, "minecraft:lodestone_tracker": { "protocol_id": 67 @@ -5511,7 +5619,7 @@ "protocol_id": 7 }, "minecraft:mooshroom/variant": { - "protocol_id": 91 + "protocol_id": 92 }, "minecraft:note_block_sound": { "protocol_id": 71 @@ -5520,19 +5628,19 @@ "protocol_id": 63 }, "minecraft:painting/variant": { - "protocol_id": 102 + "protocol_id": 103 }, "minecraft:parrot/variant": { - "protocol_id": 87 + "protocol_id": 88 }, "minecraft:piercing_weapon": { "protocol_id": 38 }, "minecraft:pig/sound_variant": { - "protocol_id": 94 + "protocol_id": 95 }, "minecraft:pig/variant": { - "protocol_id": 93 + "protocol_id": 94 }, "minecraft:pot_decorations": { "protocol_id": 74 @@ -5553,7 +5661,7 @@ "protocol_id": 62 }, "minecraft:rabbit/variant": { - "protocol_id": 92 + "protocol_id": 93 }, "minecraft:rarity": { "protocol_id": 12 @@ -5568,17 +5676,20 @@ "protocol_id": 33 }, "minecraft:salmon/size": { - "protocol_id": 86 + "protocol_id": 87 }, "minecraft:sheep/color": { - "protocol_id": 108 + "protocol_id": 109 }, "minecraft:shulker/color": { - "protocol_id": 109 + "protocol_id": 110 }, "minecraft:stored_enchantments": { "protocol_id": 42 }, + "minecraft:sulfur_cube_content": { + "protocol_id": 78 + }, "minecraft:suspicious_stew_effects": { "protocol_id": 53 }, @@ -5598,13 +5709,13 @@ "protocol_id": 56 }, "minecraft:tropical_fish/base_color": { - "protocol_id": 89 + "protocol_id": 90 }, "minecraft:tropical_fish/pattern": { - "protocol_id": 88 + "protocol_id": 89 }, "minecraft:tropical_fish/pattern_color": { - "protocol_id": 90 + "protocol_id": 91 }, "minecraft:unbreakable": { "protocol_id": 4 @@ -5619,19 +5730,19 @@ "protocol_id": 25 }, "minecraft:villager/variant": { - "protocol_id": 81 + "protocol_id": 82 }, "minecraft:weapon": { "protocol_id": 29 }, "minecraft:wolf/collar": { - "protocol_id": 84 + "protocol_id": 85 }, "minecraft:wolf/sound_variant": { - "protocol_id": 83 + "protocol_id": 84 }, "minecraft:wolf/variant": { - "protocol_id": 82 + "protocol_id": 83 }, "minecraft:writable_book_content": { "protocol_id": 54 @@ -5640,7 +5751,7 @@ "protocol_id": 55 }, "minecraft:zombie_nautilus/variant": { - "protocol_id": 99 + "protocol_id": 100 } }, "protocol_id": 64 @@ -6101,23 +6212,80 @@ }, "minecraft:entity_sub_predicate_type": { "entries": { - "minecraft:fishing_hook": { - "protocol_id": 1 + "minecraft:components": { + "protocol_id": 16 }, - "minecraft:lightning": { - "protocol_id": 0 - }, - "minecraft:player": { - "protocol_id": 2 - }, - "minecraft:raider": { + "minecraft:distance": { "protocol_id": 4 }, - "minecraft:sheep": { + "minecraft:effects": { + "protocol_id": 6 + }, + "minecraft:entity_tags": { + "protocol_id": 18 + }, + "minecraft:entity_type": { + "protocol_id": 0 + }, + "minecraft:equipment": { + "protocol_id": 9 + }, + "minecraft:flags": { + "protocol_id": 8 + }, + "minecraft:location": { + "protocol_id": 1 + }, + "minecraft:movement": { "protocol_id": 5 }, - "minecraft:slime": { + "minecraft:movement_affected_by": { "protocol_id": 3 + }, + "minecraft:nbt": { + "protocol_id": 7 + }, + "minecraft:passenger": { + "protocol_id": 12 + }, + "minecraft:periodic_tick": { + "protocol_id": 10 + }, + "minecraft:predicates": { + "protocol_id": 17 + }, + "minecraft:slots": { + "protocol_id": 15 + }, + "minecraft:stepping_on": { + "protocol_id": 2 + }, + "minecraft:targeted_entity": { + "protocol_id": 13 + }, + "minecraft:team": { + "protocol_id": 14 + }, + "minecraft:type_specific/cube_mob": { + "protocol_id": 22 + }, + "minecraft:type_specific/fishing_hook": { + "protocol_id": 20 + }, + "minecraft:type_specific/lightning": { + "protocol_id": 19 + }, + "minecraft:type_specific/player": { + "protocol_id": 21 + }, + "minecraft:type_specific/raider": { + "protocol_id": 23 + }, + "minecraft:type_specific/sheep": { + "protocol_id": 24 + }, + "minecraft:vehicle": { + "protocol_id": 11 } }, "protocol_id": 66 @@ -6288,7 +6456,7 @@ "protocol_id": 53 }, "minecraft:fishing_bobber": { - "protocol_id": 156 + "protocol_id": 157 }, "minecraft:fox": { "protocol_id": 54 @@ -6444,7 +6612,7 @@ "protocol_id": 103 }, "minecraft:player": { - "protocol_id": 155 + "protocol_id": 156 }, "minecraft:polar_bear": { "protocol_id": 104 @@ -6521,80 +6689,83 @@ "minecraft:strider": { "protocol_id": 129 }, - "minecraft:tadpole": { + "minecraft:sulfur_cube": { "protocol_id": 130 }, - "minecraft:text_display": { + "minecraft:tadpole": { "protocol_id": 131 }, - "minecraft:tnt": { + "minecraft:text_display": { "protocol_id": 132 }, - "minecraft:tnt_minecart": { + "minecraft:tnt": { "protocol_id": 133 }, - "minecraft:trader_llama": { + "minecraft:tnt_minecart": { "protocol_id": 134 }, - "minecraft:trident": { + "minecraft:trader_llama": { "protocol_id": 135 }, - "minecraft:tropical_fish": { + "minecraft:trident": { "protocol_id": 136 }, - "minecraft:turtle": { + "minecraft:tropical_fish": { "protocol_id": 137 }, - "minecraft:vex": { + "minecraft:turtle": { "protocol_id": 138 }, - "minecraft:villager": { + "minecraft:vex": { "protocol_id": 139 }, - "minecraft:vindicator": { + "minecraft:villager": { "protocol_id": 140 }, - "minecraft:wandering_trader": { + "minecraft:vindicator": { "protocol_id": 141 }, - "minecraft:warden": { + "minecraft:wandering_trader": { "protocol_id": 142 }, - "minecraft:wind_charge": { + "minecraft:warden": { "protocol_id": 143 }, - "minecraft:witch": { + "minecraft:wind_charge": { "protocol_id": 144 }, - "minecraft:wither": { + "minecraft:witch": { "protocol_id": 145 }, - "minecraft:wither_skeleton": { + "minecraft:wither": { "protocol_id": 146 }, - "minecraft:wither_skull": { + "minecraft:wither_skeleton": { "protocol_id": 147 }, - "minecraft:wolf": { + "minecraft:wither_skull": { "protocol_id": 148 }, - "minecraft:zoglin": { + "minecraft:wolf": { "protocol_id": 149 }, - "minecraft:zombie": { + "minecraft:zoglin": { "protocol_id": 150 }, - "minecraft:zombie_horse": { + "minecraft:zombie": { "protocol_id": 151 }, - "minecraft:zombie_nautilus": { + "minecraft:zombie_horse": { "protocol_id": 152 }, - "minecraft:zombie_villager": { + "minecraft:zombie_nautilus": { "protocol_id": 153 }, - "minecraft:zombified_piglin": { + "minecraft:zombie_villager": { "protocol_id": 154 + }, + "minecraft:zombified_piglin": { + "protocol_id": 155 } }, "protocol_id": 6 @@ -6816,158 +6987,161 @@ "minecraft:block_place": { "protocol_id": 8 }, - "minecraft:container_close": { + "minecraft:bounce": { "protocol_id": 9 }, - "minecraft:container_open": { + "minecraft:container_close": { "protocol_id": 10 }, - "minecraft:drink": { + "minecraft:container_open": { "protocol_id": 11 }, - "minecraft:eat": { + "minecraft:drink": { "protocol_id": 12 }, - "minecraft:elytra_glide": { + "minecraft:eat": { "protocol_id": 13 }, - "minecraft:entity_action": { - "protocol_id": 20 - }, - "minecraft:entity_damage": { + "minecraft:elytra_glide": { "protocol_id": 14 }, - "minecraft:entity_die": { - "protocol_id": 15 - }, - "minecraft:entity_dismount": { - "protocol_id": 16 - }, - "minecraft:entity_interact": { - "protocol_id": 17 - }, - "minecraft:entity_mount": { - "protocol_id": 18 - }, - "minecraft:entity_place": { - "protocol_id": 19 - }, - "minecraft:equip": { + "minecraft:entity_action": { "protocol_id": 21 }, - "minecraft:explode": { + "minecraft:entity_damage": { + "protocol_id": 15 + }, + "minecraft:entity_die": { + "protocol_id": 16 + }, + "minecraft:entity_dismount": { + "protocol_id": 17 + }, + "minecraft:entity_interact": { + "protocol_id": 18 + }, + "minecraft:entity_mount": { + "protocol_id": 19 + }, + "minecraft:entity_place": { + "protocol_id": 20 + }, + "minecraft:equip": { "protocol_id": 22 }, - "minecraft:flap": { + "minecraft:explode": { "protocol_id": 23 }, - "minecraft:fluid_pickup": { + "minecraft:flap": { "protocol_id": 24 }, - "minecraft:fluid_place": { + "minecraft:fluid_pickup": { "protocol_id": 25 }, - "minecraft:hit_ground": { + "minecraft:fluid_place": { "protocol_id": 26 }, - "minecraft:instrument_play": { + "minecraft:hit_ground": { "protocol_id": 27 }, - "minecraft:item_interact_finish": { + "minecraft:instrument_play": { "protocol_id": 28 }, - "minecraft:item_interact_start": { + "minecraft:item_interact_finish": { "protocol_id": 29 }, - "minecraft:jukebox_play": { + "minecraft:item_interact_start": { "protocol_id": 30 }, - "minecraft:jukebox_stop_play": { + "minecraft:jukebox_play": { "protocol_id": 31 }, - "minecraft:lightning_strike": { + "minecraft:jukebox_stop_play": { "protocol_id": 32 }, - "minecraft:note_block_play": { + "minecraft:lightning_strike": { "protocol_id": 33 }, - "minecraft:prime_fuse": { + "minecraft:note_block_play": { "protocol_id": 34 }, - "minecraft:projectile_land": { + "minecraft:prime_fuse": { "protocol_id": 35 }, - "minecraft:projectile_shoot": { + "minecraft:projectile_land": { "protocol_id": 36 }, - "minecraft:resonate_1": { - "protocol_id": 45 - }, - "minecraft:resonate_10": { - "protocol_id": 54 - }, - "minecraft:resonate_11": { - "protocol_id": 55 - }, - "minecraft:resonate_12": { - "protocol_id": 56 - }, - "minecraft:resonate_13": { - "protocol_id": 57 - }, - "minecraft:resonate_14": { - "protocol_id": 58 - }, - "minecraft:resonate_15": { - "protocol_id": 59 - }, - "minecraft:resonate_2": { - "protocol_id": 46 - }, - "minecraft:resonate_3": { - "protocol_id": 47 - }, - "minecraft:resonate_4": { - "protocol_id": 48 - }, - "minecraft:resonate_5": { - "protocol_id": 49 - }, - "minecraft:resonate_6": { - "protocol_id": 50 - }, - "minecraft:resonate_7": { - "protocol_id": 51 - }, - "minecraft:resonate_8": { - "protocol_id": 52 - }, - "minecraft:resonate_9": { - "protocol_id": 53 - }, - "minecraft:sculk_sensor_tendrils_clicking": { + "minecraft:projectile_shoot": { "protocol_id": 37 }, - "minecraft:shear": { + "minecraft:resonate_1": { + "protocol_id": 46 + }, + "minecraft:resonate_10": { + "protocol_id": 55 + }, + "minecraft:resonate_11": { + "protocol_id": 56 + }, + "minecraft:resonate_12": { + "protocol_id": 57 + }, + "minecraft:resonate_13": { + "protocol_id": 58 + }, + "minecraft:resonate_14": { + "protocol_id": 59 + }, + "minecraft:resonate_15": { + "protocol_id": 60 + }, + "minecraft:resonate_2": { + "protocol_id": 47 + }, + "minecraft:resonate_3": { + "protocol_id": 48 + }, + "minecraft:resonate_4": { + "protocol_id": 49 + }, + "minecraft:resonate_5": { + "protocol_id": 50 + }, + "minecraft:resonate_6": { + "protocol_id": 51 + }, + "minecraft:resonate_7": { + "protocol_id": 52 + }, + "minecraft:resonate_8": { + "protocol_id": 53 + }, + "minecraft:resonate_9": { + "protocol_id": 54 + }, + "minecraft:sculk_sensor_tendrils_clicking": { "protocol_id": 38 }, - "minecraft:shriek": { + "minecraft:shear": { "protocol_id": 39 }, - "minecraft:splash": { + "minecraft:shriek": { "protocol_id": 40 }, - "minecraft:step": { + "minecraft:splash": { "protocol_id": 41 }, - "minecraft:swim": { + "minecraft:step": { "protocol_id": 42 }, - "minecraft:teleport": { + "minecraft:swim": { "protocol_id": 43 }, - "minecraft:unequip": { + "minecraft:teleport": { "protocol_id": 44 + }, + "minecraft:unequip": { + "protocol_id": 45 } }, "protocol_id": 0 @@ -7436,736 +7610,742 @@ "default": "minecraft:air", "entries": { "minecraft:acacia_boat": { - "protocol_id": 872 + "protocol_id": 899 }, "minecraft:acacia_button": { - "protocol_id": 756 + "protocol_id": 783 }, "minecraft:acacia_chest_boat": { - "protocol_id": 873 + "protocol_id": 900 }, "minecraft:acacia_door": { - "protocol_id": 785 + "protocol_id": 812 }, "minecraft:acacia_fence": { - "protocol_id": 349 + "protocol_id": 376 }, "minecraft:acacia_fence_gate": { - "protocol_id": 826 + "protocol_id": 853 }, "minecraft:acacia_hanging_sign": { - "protocol_id": 1005 + "protocol_id": 1032 }, "minecraft:acacia_leaves": { - "protocol_id": 186 + "protocol_id": 213 }, "minecraft:acacia_log": { - "protocol_id": 138 + "protocol_id": 165 }, "minecraft:acacia_planks": { - "protocol_id": 40 + "protocol_id": 67 }, "minecraft:acacia_pressure_plate": { - "protocol_id": 772 + "protocol_id": 799 }, "minecraft:acacia_sapling": { - "protocol_id": 53 + "protocol_id": 80 }, "minecraft:acacia_shelf": { - "protocol_id": 306 + "protocol_id": 333 }, "minecraft:acacia_sign": { - "protocol_id": 993 + "protocol_id": 1020 }, "minecraft:acacia_slab": { - "protocol_id": 275 + "protocol_id": 302 }, "minecraft:acacia_stairs": { - "protocol_id": 446 + "protocol_id": 473 }, "minecraft:acacia_trapdoor": { - "protocol_id": 806 + "protocol_id": 833 }, "minecraft:acacia_wood": { - "protocol_id": 175 + "protocol_id": 202 }, "minecraft:activator_rail": { - "protocol_id": 837 + "protocol_id": 864 }, "minecraft:air": { "protocol_id": 0 }, "minecraft:allay_spawn_egg": { - "protocol_id": 1164 + "protocol_id": 1192 }, "minecraft:allium": { - "protocol_id": 235 + "protocol_id": 262 }, "minecraft:amethyst_block": { - "protocol_id": 88 + "protocol_id": 115 }, "minecraft:amethyst_cluster": { - "protocol_id": 1419 + "protocol_id": 1449 }, "minecraft:amethyst_shard": { - "protocol_id": 903 + "protocol_id": 930 }, "minecraft:ancient_debris": { - "protocol_id": 82 + "protocol_id": 109 }, "minecraft:andesite": { "protocol_id": 6 }, "minecraft:andesite_slab": { - "protocol_id": 709 + "protocol_id": 736 }, "minecraft:andesite_stairs": { - "protocol_id": 692 + "protocol_id": 719 }, "minecraft:andesite_wall": { - "protocol_id": 467 + "protocol_id": 494 }, "minecraft:angler_pottery_sherd": { - "protocol_id": 1446 + "protocol_id": 1477 }, "minecraft:anvil": { - "protocol_id": 479 + "protocol_id": 506 }, "minecraft:apple": { - "protocol_id": 894 + "protocol_id": 921 }, "minecraft:archer_pottery_sherd": { - "protocol_id": 1447 + "protocol_id": 1478 }, "minecraft:armadillo_scute": { - "protocol_id": 890 + "protocol_id": 917 }, "minecraft:armadillo_spawn_egg": { - "protocol_id": 1142 + "protocol_id": 1170 }, "minecraft:armor_stand": { - "protocol_id": 1255 + "protocol_id": 1284 }, "minecraft:arms_up_pottery_sherd": { - "protocol_id": 1448 + "protocol_id": 1479 }, "minecraft:arrow": { - "protocol_id": 896 + "protocol_id": 923 }, "minecraft:axolotl_bucket": { - "protocol_id": 1024 + "protocol_id": 1051 }, "minecraft:axolotl_spawn_egg": { - "protocol_id": 1152 + "protocol_id": 1180 }, "minecraft:azalea": { - "protocol_id": 205 + "protocol_id": 232 }, "minecraft:azalea_leaves": { - "protocol_id": 191 + "protocol_id": 218 }, "minecraft:azure_bluet": { - "protocol_id": 236 + "protocol_id": 263 }, "minecraft:baked_potato": { - "protocol_id": 1230 + "protocol_id": 1259 }, "minecraft:bamboo": { - "protocol_id": 270 + "protocol_id": 297 }, "minecraft:bamboo_block": { - "protocol_id": 147 + "protocol_id": 174 }, "minecraft:bamboo_button": { - "protocol_id": 761 + "protocol_id": 788 }, "minecraft:bamboo_chest_raft": { - "protocol_id": 883 + "protocol_id": 910 }, "minecraft:bamboo_door": { - "protocol_id": 790 + "protocol_id": 817 }, "minecraft:bamboo_fence": { - "protocol_id": 354 + "protocol_id": 381 }, "minecraft:bamboo_fence_gate": { - "protocol_id": 831 + "protocol_id": 858 }, "minecraft:bamboo_hanging_sign": { - "protocol_id": 1010 - }, - "minecraft:bamboo_mosaic": { - "protocol_id": 48 - }, - "minecraft:bamboo_mosaic_slab": { - "protocol_id": 281 - }, - "minecraft:bamboo_mosaic_stairs": { - "protocol_id": 452 - }, - "minecraft:bamboo_planks": { - "protocol_id": 45 - }, - "minecraft:bamboo_pressure_plate": { - "protocol_id": 777 - }, - "minecraft:bamboo_raft": { - "protocol_id": 882 - }, - "minecraft:bamboo_shelf": { - "protocol_id": 307 - }, - "minecraft:bamboo_sign": { - "protocol_id": 998 - }, - "minecraft:bamboo_slab": { - "protocol_id": 280 - }, - "minecraft:bamboo_stairs": { - "protocol_id": 451 - }, - "minecraft:bamboo_trapdoor": { - "protocol_id": 811 - }, - "minecraft:barrel": { - "protocol_id": 1355 - }, - "minecraft:barrier": { - "protocol_id": 503 - }, - "minecraft:basalt": { - "protocol_id": 363 - }, - "minecraft:bat_spawn_egg": { - "protocol_id": 1143 - }, - "minecraft:beacon": { - "protocol_id": 456 - }, - "minecraft:bedrock": { - "protocol_id": 58 - }, - "minecraft:bee_nest": { - "protocol_id": 1380 - }, - "minecraft:bee_spawn_egg": { - "protocol_id": 1144 - }, - "minecraft:beef": { - "protocol_id": 1111 - }, - "minecraft:beehive": { - "protocol_id": 1381 - }, - "minecraft:beetroot": { - "protocol_id": 1288 - }, - "minecraft:beetroot_seeds": { - "protocol_id": 1289 - }, - "minecraft:beetroot_soup": { - "protocol_id": 1290 - }, - "minecraft:bell": { - "protocol_id": 1363 - }, - "minecraft:big_dripleaf": { - "protocol_id": 268 - }, - "minecraft:birch_boat": { - "protocol_id": 868 - }, - "minecraft:birch_button": { - "protocol_id": 754 - }, - "minecraft:birch_chest_boat": { - "protocol_id": 869 - }, - "minecraft:birch_door": { - "protocol_id": 783 - }, - "minecraft:birch_fence": { - "protocol_id": 347 - }, - "minecraft:birch_fence_gate": { - "protocol_id": 824 - }, - "minecraft:birch_hanging_sign": { - "protocol_id": 1003 - }, - "minecraft:birch_leaves": { - "protocol_id": 184 - }, - "minecraft:birch_log": { - "protocol_id": 136 - }, - "minecraft:birch_planks": { - "protocol_id": 38 - }, - "minecraft:birch_pressure_plate": { - "protocol_id": 770 - }, - "minecraft:birch_sapling": { - "protocol_id": 51 - }, - "minecraft:birch_shelf": { - "protocol_id": 308 - }, - "minecraft:birch_sign": { - "protocol_id": 991 - }, - "minecraft:birch_slab": { - "protocol_id": 273 - }, - "minecraft:birch_stairs": { - "protocol_id": 444 - }, - "minecraft:birch_trapdoor": { - "protocol_id": 804 - }, - "minecraft:birch_wood": { - "protocol_id": 173 - }, - "minecraft:black_banner": { - "protocol_id": 1282 - }, - "minecraft:black_bed": { - "protocol_id": 1102 - }, - "minecraft:black_bundle": { - "protocol_id": 1053 - }, - "minecraft:black_candle": { - "protocol_id": 1415 - }, - "minecraft:black_carpet": { - "protocol_id": 521 - }, - "minecraft:black_concrete": { - "protocol_id": 630 - }, - "minecraft:black_concrete_powder": { - "protocol_id": 646 - }, - "minecraft:black_dye": { - "protocol_id": 1082 - }, - "minecraft:black_glazed_terracotta": { - "protocol_id": 614 - }, - "minecraft:black_harness": { - "protocol_id": 854 - }, - "minecraft:black_shulker_box": { - "protocol_id": 598 - }, - "minecraft:black_stained_glass": { - "protocol_id": 546 - }, - "minecraft:black_stained_glass_pane": { - "protocol_id": 562 - }, - "minecraft:black_terracotta": { - "protocol_id": 502 - }, - "minecraft:black_wool": { - "protocol_id": 228 - }, - "minecraft:blackstone": { - "protocol_id": 1386 - }, - "minecraft:blackstone_slab": { - "protocol_id": 1387 - }, - "minecraft:blackstone_stairs": { - "protocol_id": 1388 - }, - "minecraft:blackstone_wall": { - "protocol_id": 472 - }, - "minecraft:blade_pottery_sherd": { - "protocol_id": 1449 - }, - "minecraft:blast_furnace": { - "protocol_id": 1357 - }, - "minecraft:blaze_powder": { - "protocol_id": 1125 - }, - "minecraft:blaze_rod": { - "protocol_id": 1117 - }, - "minecraft:blaze_spawn_egg": { - "protocol_id": 1204 - }, - "minecraft:blue_banner": { - "protocol_id": 1278 - }, - "minecraft:blue_bed": { - "protocol_id": 1098 - }, - "minecraft:blue_bundle": { - "protocol_id": 1049 - }, - "minecraft:blue_candle": { - "protocol_id": 1411 - }, - "minecraft:blue_carpet": { - "protocol_id": 517 - }, - "minecraft:blue_concrete": { - "protocol_id": 626 - }, - "minecraft:blue_concrete_powder": { - "protocol_id": 642 - }, - "minecraft:blue_dye": { - "protocol_id": 1078 - }, - "minecraft:blue_egg": { - "protocol_id": 1033 - }, - "minecraft:blue_glazed_terracotta": { - "protocol_id": 610 - }, - "minecraft:blue_harness": { - "protocol_id": 850 - }, - "minecraft:blue_ice": { - "protocol_id": 680 - }, - "minecraft:blue_orchid": { - "protocol_id": 234 - }, - "minecraft:blue_shulker_box": { - "protocol_id": 594 - }, - "minecraft:blue_stained_glass": { - "protocol_id": 542 - }, - "minecraft:blue_stained_glass_pane": { - "protocol_id": 558 - }, - "minecraft:blue_terracotta": { - "protocol_id": 498 - }, - "minecraft:blue_wool": { - "protocol_id": 224 - }, - "minecraft:bogged_spawn_egg": { - "protocol_id": 1173 - }, - "minecraft:bolt_armor_trim_smithing_template": { - "protocol_id": 1445 - }, - "minecraft:bone": { - "protocol_id": 1084 - }, - "minecraft:bone_block": { - "protocol_id": 580 - }, - "minecraft:bone_meal": { - "protocol_id": 1083 - }, - "minecraft:book": { - "protocol_id": 1030 - }, - "minecraft:bookshelf": { - "protocol_id": 318 - }, - "minecraft:bordure_indented_banner_pattern": { - "protocol_id": 1352 - }, - "minecraft:bow": { - "protocol_id": 895 - }, - "minecraft:bowl": { - "protocol_id": 893 - }, - "minecraft:brain_coral": { - "protocol_id": 661 - }, - "minecraft:brain_coral_block": { - "protocol_id": 656 - }, - "minecraft:brain_coral_fan": { - "protocol_id": 671 - }, - "minecraft:bread": { - "protocol_id": 954 - }, - "minecraft:breeze_rod": { - "protocol_id": 1223 - }, - "minecraft:breeze_spawn_egg": { - "protocol_id": 1189 - }, - "minecraft:brewer_pottery_sherd": { - "protocol_id": 1450 - }, - "minecraft:brewing_stand": { - "protocol_id": 1127 - }, - "minecraft:brick": { - "protocol_id": 1026 - }, - "minecraft:brick_slab": { - "protocol_id": 290 - }, - "minecraft:brick_stairs": { - "protocol_id": 420 - }, - "minecraft:brick_wall": { - "protocol_id": 459 - }, - "minecraft:bricks": { - "protocol_id": 305 - }, - "minecraft:brown_banner": { - "protocol_id": 1279 - }, - "minecraft:brown_bed": { - "protocol_id": 1099 - }, - "minecraft:brown_bundle": { - "protocol_id": 1050 - }, - "minecraft:brown_candle": { - "protocol_id": 1412 - }, - "minecraft:brown_carpet": { - "protocol_id": 518 - }, - "minecraft:brown_concrete": { - "protocol_id": 627 - }, - "minecraft:brown_concrete_powder": { - "protocol_id": 643 - }, - "minecraft:brown_dye": { - "protocol_id": 1079 - }, - "minecraft:brown_egg": { - "protocol_id": 1034 - }, - "minecraft:brown_glazed_terracotta": { - "protocol_id": 611 - }, - "minecraft:brown_harness": { - "protocol_id": 851 - }, - "minecraft:brown_mushroom": { - "protocol_id": 248 - }, - "minecraft:brown_mushroom_block": { - "protocol_id": 388 - }, - "minecraft:brown_shulker_box": { - "protocol_id": 595 - }, - "minecraft:brown_stained_glass": { - "protocol_id": 543 - }, - "minecraft:brown_stained_glass_pane": { - "protocol_id": 559 - }, - "minecraft:brown_terracotta": { - "protocol_id": 499 - }, - "minecraft:brown_wool": { - "protocol_id": 225 - }, - "minecraft:brush": { - "protocol_id": 1426 - }, - "minecraft:bubble_coral": { - "protocol_id": 662 - }, - "minecraft:bubble_coral_block": { - "protocol_id": 657 - }, - "minecraft:bubble_coral_fan": { - "protocol_id": 672 - }, - "minecraft:bucket": { - "protocol_id": 1013 - }, - "minecraft:budding_amethyst": { - "protocol_id": 89 - }, - "minecraft:bundle": { "protocol_id": 1037 }, + "minecraft:bamboo_mosaic": { + "protocol_id": 75 + }, + "minecraft:bamboo_mosaic_slab": { + "protocol_id": 308 + }, + "minecraft:bamboo_mosaic_stairs": { + "protocol_id": 479 + }, + "minecraft:bamboo_planks": { + "protocol_id": 72 + }, + "minecraft:bamboo_pressure_plate": { + "protocol_id": 804 + }, + "minecraft:bamboo_raft": { + "protocol_id": 909 + }, + "minecraft:bamboo_shelf": { + "protocol_id": 334 + }, + "minecraft:bamboo_sign": { + "protocol_id": 1025 + }, + "minecraft:bamboo_slab": { + "protocol_id": 307 + }, + "minecraft:bamboo_stairs": { + "protocol_id": 478 + }, + "minecraft:bamboo_trapdoor": { + "protocol_id": 838 + }, + "minecraft:barrel": { + "protocol_id": 1385 + }, + "minecraft:barrier": { + "protocol_id": 530 + }, + "minecraft:basalt": { + "protocol_id": 390 + }, + "minecraft:bat_spawn_egg": { + "protocol_id": 1171 + }, + "minecraft:beacon": { + "protocol_id": 483 + }, + "minecraft:bedrock": { + "protocol_id": 85 + }, + "minecraft:bee_nest": { + "protocol_id": 1410 + }, + "minecraft:bee_spawn_egg": { + "protocol_id": 1172 + }, + "minecraft:beef": { + "protocol_id": 1139 + }, + "minecraft:beehive": { + "protocol_id": 1411 + }, + "minecraft:beetroot": { + "protocol_id": 1317 + }, + "minecraft:beetroot_seeds": { + "protocol_id": 1318 + }, + "minecraft:beetroot_soup": { + "protocol_id": 1319 + }, + "minecraft:bell": { + "protocol_id": 1393 + }, + "minecraft:big_dripleaf": { + "protocol_id": 295 + }, + "minecraft:birch_boat": { + "protocol_id": 895 + }, + "minecraft:birch_button": { + "protocol_id": 781 + }, + "minecraft:birch_chest_boat": { + "protocol_id": 896 + }, + "minecraft:birch_door": { + "protocol_id": 810 + }, + "minecraft:birch_fence": { + "protocol_id": 374 + }, + "minecraft:birch_fence_gate": { + "protocol_id": 851 + }, + "minecraft:birch_hanging_sign": { + "protocol_id": 1030 + }, + "minecraft:birch_leaves": { + "protocol_id": 211 + }, + "minecraft:birch_log": { + "protocol_id": 163 + }, + "minecraft:birch_planks": { + "protocol_id": 65 + }, + "minecraft:birch_pressure_plate": { + "protocol_id": 797 + }, + "minecraft:birch_sapling": { + "protocol_id": 78 + }, + "minecraft:birch_shelf": { + "protocol_id": 335 + }, + "minecraft:birch_sign": { + "protocol_id": 1018 + }, + "minecraft:birch_slab": { + "protocol_id": 300 + }, + "minecraft:birch_stairs": { + "protocol_id": 471 + }, + "minecraft:birch_trapdoor": { + "protocol_id": 831 + }, + "minecraft:birch_wood": { + "protocol_id": 200 + }, + "minecraft:black_banner": { + "protocol_id": 1311 + }, + "minecraft:black_bed": { + "protocol_id": 1130 + }, + "minecraft:black_bundle": { + "protocol_id": 1081 + }, + "minecraft:black_candle": { + "protocol_id": 1445 + }, + "minecraft:black_carpet": { + "protocol_id": 548 + }, + "minecraft:black_concrete": { + "protocol_id": 657 + }, + "minecraft:black_concrete_powder": { + "protocol_id": 673 + }, + "minecraft:black_dye": { + "protocol_id": 1110 + }, + "minecraft:black_glazed_terracotta": { + "protocol_id": 641 + }, + "minecraft:black_harness": { + "protocol_id": 881 + }, + "minecraft:black_shulker_box": { + "protocol_id": 625 + }, + "minecraft:black_stained_glass": { + "protocol_id": 573 + }, + "minecraft:black_stained_glass_pane": { + "protocol_id": 589 + }, + "minecraft:black_terracotta": { + "protocol_id": 529 + }, + "minecraft:black_wool": { + "protocol_id": 255 + }, + "minecraft:blackstone": { + "protocol_id": 1416 + }, + "minecraft:blackstone_slab": { + "protocol_id": 1417 + }, + "minecraft:blackstone_stairs": { + "protocol_id": 1418 + }, + "minecraft:blackstone_wall": { + "protocol_id": 499 + }, + "minecraft:blade_pottery_sherd": { + "protocol_id": 1480 + }, + "minecraft:blast_furnace": { + "protocol_id": 1387 + }, + "minecraft:blaze_powder": { + "protocol_id": 1153 + }, + "minecraft:blaze_rod": { + "protocol_id": 1145 + }, + "minecraft:blaze_spawn_egg": { + "protocol_id": 1233 + }, + "minecraft:blue_banner": { + "protocol_id": 1307 + }, + "minecraft:blue_bed": { + "protocol_id": 1126 + }, + "minecraft:blue_bundle": { + "protocol_id": 1077 + }, + "minecraft:blue_candle": { + "protocol_id": 1441 + }, + "minecraft:blue_carpet": { + "protocol_id": 544 + }, + "minecraft:blue_concrete": { + "protocol_id": 653 + }, + "minecraft:blue_concrete_powder": { + "protocol_id": 669 + }, + "minecraft:blue_dye": { + "protocol_id": 1106 + }, + "minecraft:blue_egg": { + "protocol_id": 1061 + }, + "minecraft:blue_glazed_terracotta": { + "protocol_id": 637 + }, + "minecraft:blue_harness": { + "protocol_id": 877 + }, + "minecraft:blue_ice": { + "protocol_id": 707 + }, + "minecraft:blue_orchid": { + "protocol_id": 261 + }, + "minecraft:blue_shulker_box": { + "protocol_id": 621 + }, + "minecraft:blue_stained_glass": { + "protocol_id": 569 + }, + "minecraft:blue_stained_glass_pane": { + "protocol_id": 585 + }, + "minecraft:blue_terracotta": { + "protocol_id": 525 + }, + "minecraft:blue_wool": { + "protocol_id": 251 + }, + "minecraft:bogged_spawn_egg": { + "protocol_id": 1202 + }, + "minecraft:bolt_armor_trim_smithing_template": { + "protocol_id": 1476 + }, + "minecraft:bone": { + "protocol_id": 1112 + }, + "minecraft:bone_block": { + "protocol_id": 607 + }, + "minecraft:bone_meal": { + "protocol_id": 1111 + }, + "minecraft:book": { + "protocol_id": 1058 + }, + "minecraft:bookshelf": { + "protocol_id": 345 + }, + "minecraft:bordure_indented_banner_pattern": { + "protocol_id": 1382 + }, + "minecraft:bow": { + "protocol_id": 922 + }, + "minecraft:bowl": { + "protocol_id": 920 + }, + "minecraft:brain_coral": { + "protocol_id": 688 + }, + "minecraft:brain_coral_block": { + "protocol_id": 683 + }, + "minecraft:brain_coral_fan": { + "protocol_id": 698 + }, + "minecraft:bread": { + "protocol_id": 981 + }, + "minecraft:breeze_rod": { + "protocol_id": 1252 + }, + "minecraft:breeze_spawn_egg": { + "protocol_id": 1218 + }, + "minecraft:brewer_pottery_sherd": { + "protocol_id": 1481 + }, + "minecraft:brewing_stand": { + "protocol_id": 1155 + }, + "minecraft:brick": { + "protocol_id": 1054 + }, + "minecraft:brick_slab": { + "protocol_id": 317 + }, + "minecraft:brick_stairs": { + "protocol_id": 447 + }, + "minecraft:brick_wall": { + "protocol_id": 486 + }, + "minecraft:bricks": { + "protocol_id": 332 + }, + "minecraft:brown_banner": { + "protocol_id": 1308 + }, + "minecraft:brown_bed": { + "protocol_id": 1127 + }, + "minecraft:brown_bundle": { + "protocol_id": 1078 + }, + "minecraft:brown_candle": { + "protocol_id": 1442 + }, + "minecraft:brown_carpet": { + "protocol_id": 545 + }, + "minecraft:brown_concrete": { + "protocol_id": 654 + }, + "minecraft:brown_concrete_powder": { + "protocol_id": 670 + }, + "minecraft:brown_dye": { + "protocol_id": 1107 + }, + "minecraft:brown_egg": { + "protocol_id": 1062 + }, + "minecraft:brown_glazed_terracotta": { + "protocol_id": 638 + }, + "minecraft:brown_harness": { + "protocol_id": 878 + }, + "minecraft:brown_mushroom": { + "protocol_id": 275 + }, + "minecraft:brown_mushroom_block": { + "protocol_id": 415 + }, + "minecraft:brown_shulker_box": { + "protocol_id": 622 + }, + "minecraft:brown_stained_glass": { + "protocol_id": 570 + }, + "minecraft:brown_stained_glass_pane": { + "protocol_id": 586 + }, + "minecraft:brown_terracotta": { + "protocol_id": 526 + }, + "minecraft:brown_wool": { + "protocol_id": 252 + }, + "minecraft:brush": { + "protocol_id": 1457 + }, + "minecraft:bubble_coral": { + "protocol_id": 689 + }, + "minecraft:bubble_coral_block": { + "protocol_id": 684 + }, + "minecraft:bubble_coral_fan": { + "protocol_id": 699 + }, + "minecraft:bucket": { + "protocol_id": 1040 + }, + "minecraft:budding_amethyst": { + "protocol_id": 116 + }, + "minecraft:bundle": { + "protocol_id": 1065 + }, "minecraft:burn_pottery_sherd": { - "protocol_id": 1451 + "protocol_id": 1482 }, "minecraft:bush": { - "protocol_id": 204 + "protocol_id": 231 }, "minecraft:cactus": { - "protocol_id": 341 + "protocol_id": 368 }, "minecraft:cactus_flower": { - "protocol_id": 342 + "protocol_id": 369 }, "minecraft:cake": { - "protocol_id": 1086 + "protocol_id": 1114 }, "minecraft:calcite": { "protocol_id": 11 }, "minecraft:calibrated_sculk_sensor": { - "protocol_id": 744 + "protocol_id": 771 }, "minecraft:camel_husk_spawn_egg": { - "protocol_id": 1174 + "protocol_id": 1203 }, "minecraft:camel_spawn_egg": { - "protocol_id": 1135 + "protocol_id": 1163 }, "minecraft:campfire": { - "protocol_id": 1376 + "protocol_id": 1406 }, "minecraft:candle": { - "protocol_id": 1399 + "protocol_id": 1429 }, "minecraft:carrot": { - "protocol_id": 1228 + "protocol_id": 1257 }, "minecraft:carrot_on_a_stick": { - "protocol_id": 860 + "protocol_id": 887 }, "minecraft:cartography_table": { - "protocol_id": 1358 + "protocol_id": 1388 }, "minecraft:carved_pumpkin": { - "protocol_id": 358 + "protocol_id": 385 }, "minecraft:cat_spawn_egg": { - "protocol_id": 1139 + "protocol_id": 1167 }, "minecraft:cauldron": { - "protocol_id": 1128 + "protocol_id": 1156 }, "minecraft:cave_spider_spawn_egg": { - "protocol_id": 1187 + "protocol_id": 1216 }, "minecraft:chain_command_block": { - "protocol_id": 575 + "protocol_id": 602 }, "minecraft:chainmail_boots": { - "protocol_id": 966 + "protocol_id": 993 }, "minecraft:chainmail_chestplate": { - "protocol_id": 964 + "protocol_id": 991 }, "minecraft:chainmail_helmet": { - "protocol_id": 963 + "protocol_id": 990 }, "minecraft:chainmail_leggings": { - "protocol_id": 965 + "protocol_id": 992 }, "minecraft:charcoal": { - "protocol_id": 898 + "protocol_id": 925 }, "minecraft:cherry_boat": { - "protocol_id": 874 + "protocol_id": 901 }, "minecraft:cherry_button": { - "protocol_id": 757 + "protocol_id": 784 }, "minecraft:cherry_chest_boat": { - "protocol_id": 875 + "protocol_id": 902 }, "minecraft:cherry_door": { - "protocol_id": 786 + "protocol_id": 813 }, "minecraft:cherry_fence": { - "protocol_id": 350 + "protocol_id": 377 }, "minecraft:cherry_fence_gate": { - "protocol_id": 827 + "protocol_id": 854 }, "minecraft:cherry_hanging_sign": { - "protocol_id": 1006 + "protocol_id": 1033 }, "minecraft:cherry_leaves": { - "protocol_id": 187 + "protocol_id": 214 }, "minecraft:cherry_log": { - "protocol_id": 139 + "protocol_id": 166 }, "minecraft:cherry_planks": { - "protocol_id": 41 + "protocol_id": 68 }, "minecraft:cherry_pressure_plate": { - "protocol_id": 773 + "protocol_id": 800 }, "minecraft:cherry_sapling": { - "protocol_id": 54 + "protocol_id": 81 }, "minecraft:cherry_shelf": { - "protocol_id": 309 + "protocol_id": 336 }, "minecraft:cherry_sign": { - "protocol_id": 994 + "protocol_id": 1021 }, "minecraft:cherry_slab": { - "protocol_id": 276 + "protocol_id": 303 }, "minecraft:cherry_stairs": { - "protocol_id": 447 + "protocol_id": 474 }, "minecraft:cherry_trapdoor": { - "protocol_id": 807 + "protocol_id": 834 }, "minecraft:cherry_wood": { - "protocol_id": 176 + "protocol_id": 203 }, "minecraft:chest": { - "protocol_id": 332 + "protocol_id": 359 }, "minecraft:chest_minecart": { - "protocol_id": 856 + "protocol_id": 883 }, "minecraft:chicken": { - "protocol_id": 1113 + "protocol_id": 1141 }, "minecraft:chicken_spawn_egg": { - "protocol_id": 1131 + "protocol_id": 1159 }, "minecraft:chipped_anvil": { - "protocol_id": 480 + "protocol_id": 507 }, "minecraft:chiseled_bookshelf": { - "protocol_id": 319 + "protocol_id": 346 + }, + "minecraft:chiseled_cinnabar": { + "protocol_id": 52 }, "minecraft:chiseled_copper": { - "protocol_id": 98 + "protocol_id": 129 }, "minecraft:chiseled_deepslate": { - "protocol_id": 386 + "protocol_id": 413 }, "minecraft:chiseled_nether_bricks": { - "protocol_id": 427 + "protocol_id": 454 }, "minecraft:chiseled_polished_blackstone": { - "protocol_id": 1393 + "protocol_id": 1423 }, "minecraft:chiseled_quartz_block": { - "protocol_id": 482 + "protocol_id": 509 }, "minecraft:chiseled_red_sandstone": { - "protocol_id": 571 + "protocol_id": 598 }, "minecraft:chiseled_resin_bricks": { - "protocol_id": 419 + "protocol_id": 446 }, "minecraft:chiseled_sandstone": { - "protocol_id": 199 + "protocol_id": 226 }, "minecraft:chiseled_stone_bricks": { - "protocol_id": 379 + "protocol_id": 406 + }, + "minecraft:chiseled_sulfur": { + "protocol_id": 39 }, "minecraft:chiseled_tuff": { "protocol_id": 16 @@ -8174,2362 +8354,2413 @@ "protocol_id": 25 }, "minecraft:chorus_flower": { - "protocol_id": 326 + "protocol_id": 353 }, "minecraft:chorus_fruit": { - "protocol_id": 1284 + "protocol_id": 1313 }, "minecraft:chorus_plant": { - "protocol_id": 325 + "protocol_id": 352 + }, + "minecraft:cinnabar": { + "protocol_id": 40 + }, + "minecraft:cinnabar_brick_slab": { + "protocol_id": 49 + }, + "minecraft:cinnabar_brick_stairs": { + "protocol_id": 50 + }, + "minecraft:cinnabar_brick_wall": { + "protocol_id": 51 + }, + "minecraft:cinnabar_bricks": { + "protocol_id": 48 + }, + "minecraft:cinnabar_slab": { + "protocol_id": 41 + }, + "minecraft:cinnabar_stairs": { + "protocol_id": 42 + }, + "minecraft:cinnabar_wall": { + "protocol_id": 43 }, "minecraft:clay": { - "protocol_id": 343 + "protocol_id": 370 }, "minecraft:clay_ball": { - "protocol_id": 1027 - }, - "minecraft:clock": { "protocol_id": 1055 }, + "minecraft:clock": { + "protocol_id": 1083 + }, "minecraft:closed_eyeblossom": { - "protocol_id": 232 + "protocol_id": 259 }, "minecraft:coal": { - "protocol_id": 897 + "protocol_id": 924 }, "minecraft:coal_block": { - "protocol_id": 83 + "protocol_id": 110 }, "minecraft:coal_ore": { - "protocol_id": 64 + "protocol_id": 91 }, "minecraft:coarse_dirt": { - "protocol_id": 29 + "protocol_id": 56 }, "minecraft:coast_armor_trim_smithing_template": { - "protocol_id": 1430 + "protocol_id": 1461 }, "minecraft:cobbled_deepslate": { "protocol_id": 9 }, "minecraft:cobbled_deepslate_slab": { - "protocol_id": 713 + "protocol_id": 740 }, "minecraft:cobbled_deepslate_stairs": { - "protocol_id": 696 + "protocol_id": 723 }, "minecraft:cobbled_deepslate_wall": { - "protocol_id": 475 + "protocol_id": 502 }, "minecraft:cobblestone": { - "protocol_id": 35 + "protocol_id": 62 }, "minecraft:cobblestone_slab": { - "protocol_id": 289 + "protocol_id": 316 }, "minecraft:cobblestone_stairs": { - "protocol_id": 337 + "protocol_id": 364 }, "minecraft:cobblestone_wall": { - "protocol_id": 457 + "protocol_id": 484 }, "minecraft:cobweb": { - "protocol_id": 201 + "protocol_id": 228 }, "minecraft:cocoa_beans": { - "protocol_id": 1066 + "protocol_id": 1094 }, "minecraft:cod": { - "protocol_id": 1058 + "protocol_id": 1086 }, "minecraft:cod_bucket": { - "protocol_id": 1022 + "protocol_id": 1049 }, "minecraft:cod_spawn_egg": { - "protocol_id": 1153 + "protocol_id": 1181 }, "minecraft:command_block": { - "protocol_id": 455 + "protocol_id": 482 }, "minecraft:command_block_minecart": { - "protocol_id": 1264 + "protocol_id": 1293 }, "minecraft:comparator": { - "protocol_id": 722 + "protocol_id": 749 }, "minecraft:compass": { - "protocol_id": 1035 - }, - "minecraft:composter": { - "protocol_id": 1354 - }, - "minecraft:conduit": { - "protocol_id": 681 - }, - "minecraft:cooked_beef": { - "protocol_id": 1112 - }, - "minecraft:cooked_chicken": { - "protocol_id": 1114 - }, - "minecraft:cooked_cod": { - "protocol_id": 1062 - }, - "minecraft:cooked_mutton": { - "protocol_id": 1266 - }, - "minecraft:cooked_porkchop": { - "protocol_id": 985 - }, - "minecraft:cooked_rabbit": { - "protocol_id": 1251 - }, - "minecraft:cooked_salmon": { "protocol_id": 1063 }, + "minecraft:composter": { + "protocol_id": 1384 + }, + "minecraft:conduit": { + "protocol_id": 708 + }, + "minecraft:cooked_beef": { + "protocol_id": 1140 + }, + "minecraft:cooked_chicken": { + "protocol_id": 1142 + }, + "minecraft:cooked_cod": { + "protocol_id": 1090 + }, + "minecraft:cooked_mutton": { + "protocol_id": 1295 + }, + "minecraft:cooked_porkchop": { + "protocol_id": 1012 + }, + "minecraft:cooked_rabbit": { + "protocol_id": 1280 + }, + "minecraft:cooked_salmon": { + "protocol_id": 1091 + }, "minecraft:cookie": { - "protocol_id": 1103 + "protocol_id": 1131 }, "minecraft:copper_axe": { - "protocol_id": 920 + "protocol_id": 947 }, "minecraft:copper_bars": { - "protocol_id": 392 + "protocol_id": 419 }, "minecraft:copper_block": { - "protocol_id": 91 + "protocol_id": 118 }, "minecraft:copper_boots": { - "protocol_id": 962 + "protocol_id": 989 }, "minecraft:copper_bulb": { - "protocol_id": 1477 + "protocol_id": 1508 }, "minecraft:copper_chain": { - "protocol_id": 401 + "protocol_id": 428 }, "minecraft:copper_chest": { - "protocol_id": 1485 + "protocol_id": 1516 }, "minecraft:copper_chestplate": { - "protocol_id": 960 + "protocol_id": 987 }, "minecraft:copper_door": { - "protocol_id": 793 + "protocol_id": 820 }, "minecraft:copper_golem_spawn_egg": { - "protocol_id": 1167 + "protocol_id": 1196 }, "minecraft:copper_golem_statue": { - "protocol_id": 1493 + "protocol_id": 1524 }, "minecraft:copper_grate": { - "protocol_id": 1469 + "protocol_id": 1500 }, "minecraft:copper_helmet": { - "protocol_id": 959 + "protocol_id": 986 }, "minecraft:copper_hoe": { - "protocol_id": 921 + "protocol_id": 948 }, "minecraft:copper_horse_armor": { - "protocol_id": 1256 + "protocol_id": 1285 }, "minecraft:copper_ingot": { - "protocol_id": 907 + "protocol_id": 934 }, "minecraft:copper_lantern": { - "protocol_id": 1366 + "protocol_id": 1396 }, "minecraft:copper_leggings": { - "protocol_id": 961 + "protocol_id": 988 }, "minecraft:copper_nautilus_armor": { - "protocol_id": 1338 + "protocol_id": 1368 }, "minecraft:copper_nugget": { - "protocol_id": 1307 + "protocol_id": 1336 }, "minecraft:copper_ore": { - "protocol_id": 68 + "protocol_id": 95 }, "minecraft:copper_pickaxe": { - "protocol_id": 919 + "protocol_id": 946 }, "minecraft:copper_shovel": { - "protocol_id": 918 + "protocol_id": 945 }, "minecraft:copper_spear": { - "protocol_id": 1299 + "protocol_id": 1328 }, "minecraft:copper_sword": { - "protocol_id": 917 + "protocol_id": 944 }, "minecraft:copper_torch": { - "protocol_id": 367 + "protocol_id": 394 }, "minecraft:copper_trapdoor": { - "protocol_id": 814 + "protocol_id": 841 }, "minecraft:cornflower": { - "protocol_id": 242 + "protocol_id": 269 }, "minecraft:cow_spawn_egg": { - "protocol_id": 1132 + "protocol_id": 1160 }, "minecraft:cracked_deepslate_bricks": { - "protocol_id": 383 + "protocol_id": 410 }, "minecraft:cracked_deepslate_tiles": { - "protocol_id": 385 + "protocol_id": 412 }, "minecraft:cracked_nether_bricks": { - "protocol_id": 426 - }, - "minecraft:cracked_polished_blackstone_bricks": { - "protocol_id": 1397 - }, - "minecraft:cracked_stone_bricks": { - "protocol_id": 378 - }, - "minecraft:crafter": { - "protocol_id": 1104 - }, - "minecraft:crafting_table": { - "protocol_id": 333 - }, - "minecraft:creaking_heart": { - "protocol_id": 331 - }, - "minecraft:creaking_spawn_egg": { - "protocol_id": 1190 - }, - "minecraft:creeper_banner_pattern": { - "protocol_id": 1344 - }, - "minecraft:creeper_head": { - "protocol_id": 1238 - }, - "minecraft:creeper_spawn_egg": { - "protocol_id": 1191 - }, - "minecraft:crimson_button": { - "protocol_id": 762 - }, - "minecraft:crimson_door": { - "protocol_id": 791 - }, - "minecraft:crimson_fence": { - "protocol_id": 355 - }, - "minecraft:crimson_fence_gate": { - "protocol_id": 832 - }, - "minecraft:crimson_fungus": { - "protocol_id": 250 - }, - "minecraft:crimson_hanging_sign": { - "protocol_id": 1011 - }, - "minecraft:crimson_hyphae": { - "protocol_id": 180 - }, - "minecraft:crimson_nylium": { - "protocol_id": 33 - }, - "minecraft:crimson_planks": { - "protocol_id": 46 - }, - "minecraft:crimson_pressure_plate": { - "protocol_id": 778 - }, - "minecraft:crimson_roots": { - "protocol_id": 252 - }, - "minecraft:crimson_shelf": { - "protocol_id": 310 - }, - "minecraft:crimson_sign": { - "protocol_id": 999 - }, - "minecraft:crimson_slab": { - "protocol_id": 282 - }, - "minecraft:crimson_stairs": { "protocol_id": 453 }, - "minecraft:crimson_stem": { - "protocol_id": 145 + "minecraft:cracked_polished_blackstone_bricks": { + "protocol_id": 1427 }, - "minecraft:crimson_trapdoor": { - "protocol_id": 812 + "minecraft:cracked_stone_bricks": { + "protocol_id": 405 }, - "minecraft:crossbow": { - "protocol_id": 1340 + "minecraft:crafter": { + "protocol_id": 1132 }, - "minecraft:crying_obsidian": { - "protocol_id": 1385 + "minecraft:crafting_table": { + "protocol_id": 360 }, - "minecraft:cut_copper": { - "protocol_id": 102 + "minecraft:creaking_heart": { + "protocol_id": 358 }, - "minecraft:cut_copper_slab": { - "protocol_id": 110 + "minecraft:creaking_spawn_egg": { + "protocol_id": 1219 }, - "minecraft:cut_copper_stairs": { - "protocol_id": 106 + "minecraft:creeper_banner_pattern": { + "protocol_id": 1374 }, - "minecraft:cut_red_sandstone": { - "protocol_id": 572 + "minecraft:creeper_head": { + "protocol_id": 1267 }, - "minecraft:cut_red_sandstone_slab": { - "protocol_id": 296 + "minecraft:creeper_spawn_egg": { + "protocol_id": 1220 }, - "minecraft:cut_sandstone": { - "protocol_id": 200 + "minecraft:crimson_button": { + "protocol_id": 789 }, - "minecraft:cut_sandstone_slab": { - "protocol_id": 287 + "minecraft:crimson_door": { + "protocol_id": 818 }, - "minecraft:cyan_banner": { - "protocol_id": 1276 + "minecraft:crimson_fence": { + "protocol_id": 382 }, - "minecraft:cyan_bed": { - "protocol_id": 1096 + "minecraft:crimson_fence_gate": { + "protocol_id": 859 }, - "minecraft:cyan_bundle": { - "protocol_id": 1047 - }, - "minecraft:cyan_candle": { - "protocol_id": 1409 - }, - "minecraft:cyan_carpet": { - "protocol_id": 515 - }, - "minecraft:cyan_concrete": { - "protocol_id": 624 - }, - "minecraft:cyan_concrete_powder": { - "protocol_id": 640 - }, - "minecraft:cyan_dye": { - "protocol_id": 1076 - }, - "minecraft:cyan_glazed_terracotta": { - "protocol_id": 608 - }, - "minecraft:cyan_harness": { - "protocol_id": 848 - }, - "minecraft:cyan_shulker_box": { - "protocol_id": 592 - }, - "minecraft:cyan_stained_glass": { - "protocol_id": 540 - }, - "minecraft:cyan_stained_glass_pane": { - "protocol_id": 556 - }, - "minecraft:cyan_terracotta": { - "protocol_id": 496 - }, - "minecraft:cyan_wool": { - "protocol_id": 222 - }, - "minecraft:damaged_anvil": { - "protocol_id": 481 - }, - "minecraft:dandelion": { - "protocol_id": 229 - }, - "minecraft:danger_pottery_sherd": { - "protocol_id": 1452 - }, - "minecraft:dark_oak_boat": { - "protocol_id": 876 - }, - "minecraft:dark_oak_button": { - "protocol_id": 758 - }, - "minecraft:dark_oak_chest_boat": { - "protocol_id": 877 - }, - "minecraft:dark_oak_door": { - "protocol_id": 787 - }, - "minecraft:dark_oak_fence": { - "protocol_id": 351 - }, - "minecraft:dark_oak_fence_gate": { - "protocol_id": 828 - }, - "minecraft:dark_oak_hanging_sign": { - "protocol_id": 1007 - }, - "minecraft:dark_oak_leaves": { - "protocol_id": 188 - }, - "minecraft:dark_oak_log": { - "protocol_id": 141 - }, - "minecraft:dark_oak_planks": { - "protocol_id": 42 - }, - "minecraft:dark_oak_pressure_plate": { - "protocol_id": 774 - }, - "minecraft:dark_oak_sapling": { - "protocol_id": 55 - }, - "minecraft:dark_oak_shelf": { - "protocol_id": 311 - }, - "minecraft:dark_oak_sign": { - "protocol_id": 995 - }, - "minecraft:dark_oak_slab": { + "minecraft:crimson_fungus": { "protocol_id": 277 }, - "minecraft:dark_oak_stairs": { - "protocol_id": 448 + "minecraft:crimson_hanging_sign": { + "protocol_id": 1038 }, - "minecraft:dark_oak_trapdoor": { - "protocol_id": 808 - }, - "minecraft:dark_oak_wood": { - "protocol_id": 178 - }, - "minecraft:dark_prismarine": { - "protocol_id": 565 - }, - "minecraft:dark_prismarine_slab": { - "protocol_id": 300 - }, - "minecraft:dark_prismarine_stairs": { - "protocol_id": 568 - }, - "minecraft:daylight_detector": { - "protocol_id": 742 - }, - "minecraft:dead_brain_coral": { - "protocol_id": 665 - }, - "minecraft:dead_brain_coral_block": { - "protocol_id": 651 - }, - "minecraft:dead_brain_coral_fan": { - "protocol_id": 676 - }, - "minecraft:dead_bubble_coral": { - "protocol_id": 666 - }, - "minecraft:dead_bubble_coral_block": { - "protocol_id": 652 - }, - "minecraft:dead_bubble_coral_fan": { - "protocol_id": 677 - }, - "minecraft:dead_bush": { + "minecraft:crimson_hyphae": { "protocol_id": 207 }, - "minecraft:dead_fire_coral": { + "minecraft:crimson_nylium": { + "protocol_id": 60 + }, + "minecraft:crimson_planks": { + "protocol_id": 73 + }, + "minecraft:crimson_pressure_plate": { + "protocol_id": 805 + }, + "minecraft:crimson_roots": { + "protocol_id": 279 + }, + "minecraft:crimson_shelf": { + "protocol_id": 337 + }, + "minecraft:crimson_sign": { + "protocol_id": 1026 + }, + "minecraft:crimson_slab": { + "protocol_id": 309 + }, + "minecraft:crimson_stairs": { + "protocol_id": 480 + }, + "minecraft:crimson_stem": { + "protocol_id": 172 + }, + "minecraft:crimson_trapdoor": { + "protocol_id": 839 + }, + "minecraft:crossbow": { + "protocol_id": 1370 + }, + "minecraft:crying_obsidian": { + "protocol_id": 1415 + }, + "minecraft:cut_copper": { + "protocol_id": 137 + }, + "minecraft:cut_copper_slab": { + "protocol_id": 153 + }, + "minecraft:cut_copper_stairs": { + "protocol_id": 145 + }, + "minecraft:cut_red_sandstone": { + "protocol_id": 599 + }, + "minecraft:cut_red_sandstone_slab": { + "protocol_id": 323 + }, + "minecraft:cut_sandstone": { + "protocol_id": 227 + }, + "minecraft:cut_sandstone_slab": { + "protocol_id": 314 + }, + "minecraft:cyan_banner": { + "protocol_id": 1305 + }, + "minecraft:cyan_bed": { + "protocol_id": 1124 + }, + "minecraft:cyan_bundle": { + "protocol_id": 1075 + }, + "minecraft:cyan_candle": { + "protocol_id": 1439 + }, + "minecraft:cyan_carpet": { + "protocol_id": 542 + }, + "minecraft:cyan_concrete": { + "protocol_id": 651 + }, + "minecraft:cyan_concrete_powder": { "protocol_id": 667 }, - "minecraft:dead_fire_coral_block": { - "protocol_id": 653 + "minecraft:cyan_dye": { + "protocol_id": 1104 }, - "minecraft:dead_fire_coral_fan": { + "minecraft:cyan_glazed_terracotta": { + "protocol_id": 635 + }, + "minecraft:cyan_harness": { + "protocol_id": 875 + }, + "minecraft:cyan_shulker_box": { + "protocol_id": 619 + }, + "minecraft:cyan_stained_glass": { + "protocol_id": 567 + }, + "minecraft:cyan_stained_glass_pane": { + "protocol_id": 583 + }, + "minecraft:cyan_terracotta": { + "protocol_id": 523 + }, + "minecraft:cyan_wool": { + "protocol_id": 249 + }, + "minecraft:damaged_anvil": { + "protocol_id": 508 + }, + "minecraft:dandelion": { + "protocol_id": 256 + }, + "minecraft:danger_pottery_sherd": { + "protocol_id": 1483 + }, + "minecraft:dark_oak_boat": { + "protocol_id": 903 + }, + "minecraft:dark_oak_button": { + "protocol_id": 785 + }, + "minecraft:dark_oak_chest_boat": { + "protocol_id": 904 + }, + "minecraft:dark_oak_door": { + "protocol_id": 814 + }, + "minecraft:dark_oak_fence": { + "protocol_id": 378 + }, + "minecraft:dark_oak_fence_gate": { + "protocol_id": 855 + }, + "minecraft:dark_oak_hanging_sign": { + "protocol_id": 1034 + }, + "minecraft:dark_oak_leaves": { + "protocol_id": 215 + }, + "minecraft:dark_oak_log": { + "protocol_id": 168 + }, + "minecraft:dark_oak_planks": { + "protocol_id": 69 + }, + "minecraft:dark_oak_pressure_plate": { + "protocol_id": 801 + }, + "minecraft:dark_oak_sapling": { + "protocol_id": 82 + }, + "minecraft:dark_oak_shelf": { + "protocol_id": 338 + }, + "minecraft:dark_oak_sign": { + "protocol_id": 1022 + }, + "minecraft:dark_oak_slab": { + "protocol_id": 304 + }, + "minecraft:dark_oak_stairs": { + "protocol_id": 475 + }, + "minecraft:dark_oak_trapdoor": { + "protocol_id": 835 + }, + "minecraft:dark_oak_wood": { + "protocol_id": 205 + }, + "minecraft:dark_prismarine": { + "protocol_id": 592 + }, + "minecraft:dark_prismarine_slab": { + "protocol_id": 327 + }, + "minecraft:dark_prismarine_stairs": { + "protocol_id": 595 + }, + "minecraft:daylight_detector": { + "protocol_id": 769 + }, + "minecraft:dead_brain_coral": { + "protocol_id": 692 + }, + "minecraft:dead_brain_coral_block": { "protocol_id": 678 }, - "minecraft:dead_horn_coral": { - "protocol_id": 668 + "minecraft:dead_brain_coral_fan": { + "protocol_id": 703 }, - "minecraft:dead_horn_coral_block": { - "protocol_id": 654 + "minecraft:dead_bubble_coral": { + "protocol_id": 693 }, - "minecraft:dead_horn_coral_fan": { + "minecraft:dead_bubble_coral_block": { "protocol_id": 679 }, + "minecraft:dead_bubble_coral_fan": { + "protocol_id": 704 + }, + "minecraft:dead_bush": { + "protocol_id": 234 + }, + "minecraft:dead_fire_coral": { + "protocol_id": 694 + }, + "minecraft:dead_fire_coral_block": { + "protocol_id": 680 + }, + "minecraft:dead_fire_coral_fan": { + "protocol_id": 705 + }, + "minecraft:dead_horn_coral": { + "protocol_id": 695 + }, + "minecraft:dead_horn_coral_block": { + "protocol_id": 681 + }, + "minecraft:dead_horn_coral_fan": { + "protocol_id": 706 + }, "minecraft:dead_tube_coral": { - "protocol_id": 669 + "protocol_id": 696 }, "minecraft:dead_tube_coral_block": { - "protocol_id": 650 + "protocol_id": 677 }, "minecraft:dead_tube_coral_fan": { - "protocol_id": 675 + "protocol_id": 702 }, "minecraft:debug_stick": { - "protocol_id": 1309 + "protocol_id": 1338 }, "minecraft:decorated_pot": { - "protocol_id": 320 + "protocol_id": 347 }, "minecraft:deepslate": { "protocol_id": 8 }, "minecraft:deepslate_brick_slab": { - "protocol_id": 715 + "protocol_id": 742 }, "minecraft:deepslate_brick_stairs": { - "protocol_id": 698 + "protocol_id": 725 }, "minecraft:deepslate_brick_wall": { - "protocol_id": 477 + "protocol_id": 504 }, "minecraft:deepslate_bricks": { - "protocol_id": 382 + "protocol_id": 409 }, "minecraft:deepslate_coal_ore": { - "protocol_id": 65 + "protocol_id": 92 }, "minecraft:deepslate_copper_ore": { - "protocol_id": 69 + "protocol_id": 96 }, "minecraft:deepslate_diamond_ore": { - "protocol_id": 79 + "protocol_id": 106 }, "minecraft:deepslate_emerald_ore": { - "protocol_id": 75 + "protocol_id": 102 }, "minecraft:deepslate_gold_ore": { - "protocol_id": 71 + "protocol_id": 98 }, "minecraft:deepslate_iron_ore": { - "protocol_id": 67 + "protocol_id": 94 }, "minecraft:deepslate_lapis_ore": { - "protocol_id": 77 + "protocol_id": 104 }, "minecraft:deepslate_redstone_ore": { - "protocol_id": 73 + "protocol_id": 100 }, "minecraft:deepslate_tile_slab": { - "protocol_id": 716 + "protocol_id": 743 }, "minecraft:deepslate_tile_stairs": { - "protocol_id": 699 + "protocol_id": 726 }, "minecraft:deepslate_tile_wall": { - "protocol_id": 478 + "protocol_id": 505 }, "minecraft:deepslate_tiles": { - "protocol_id": 384 + "protocol_id": 411 }, "minecraft:detector_rail": { - "protocol_id": 835 + "protocol_id": 862 }, "minecraft:diamond": { - "protocol_id": 899 + "protocol_id": 926 }, "minecraft:diamond_axe": { - "protocol_id": 940 + "protocol_id": 967 }, "minecraft:diamond_block": { - "protocol_id": 93 + "protocol_id": 127 }, "minecraft:diamond_boots": { - "protocol_id": 974 + "protocol_id": 1001 }, "minecraft:diamond_chestplate": { - "protocol_id": 972 + "protocol_id": 999 }, "minecraft:diamond_helmet": { - "protocol_id": 971 + "protocol_id": 998 }, "minecraft:diamond_hoe": { - "protocol_id": 941 + "protocol_id": 968 }, "minecraft:diamond_horse_armor": { - "protocol_id": 1259 + "protocol_id": 1288 }, "minecraft:diamond_leggings": { - "protocol_id": 973 + "protocol_id": 1000 }, "minecraft:diamond_nautilus_armor": { - "protocol_id": 1336 + "protocol_id": 1366 }, "minecraft:diamond_ore": { - "protocol_id": 78 + "protocol_id": 105 }, "minecraft:diamond_pickaxe": { - "protocol_id": 939 + "protocol_id": 966 }, "minecraft:diamond_shovel": { - "protocol_id": 938 + "protocol_id": 965 }, "minecraft:diamond_spear": { - "protocol_id": 1302 + "protocol_id": 1331 }, "minecraft:diamond_sword": { - "protocol_id": 937 + "protocol_id": 964 }, "minecraft:diorite": { "protocol_id": 4 }, "minecraft:diorite_slab": { - "protocol_id": 712 + "protocol_id": 739 }, "minecraft:diorite_stairs": { - "protocol_id": 695 + "protocol_id": 722 }, "minecraft:diorite_wall": { - "protocol_id": 471 + "protocol_id": 498 }, "minecraft:dirt": { - "protocol_id": 28 + "protocol_id": 55 }, "minecraft:dirt_path": { - "protocol_id": 524 + "protocol_id": 551 }, "minecraft:disc_fragment_5": { - "protocol_id": 1331 + "protocol_id": 1361 }, "minecraft:dispenser": { - "protocol_id": 729 + "protocol_id": 756 }, "minecraft:dolphin_spawn_egg": { - "protocol_id": 1154 + "protocol_id": 1182 }, "minecraft:donkey_spawn_egg": { - "protocol_id": 1136 + "protocol_id": 1164 }, "minecraft:dragon_breath": { - "protocol_id": 1291 + "protocol_id": 1320 }, "minecraft:dragon_egg": { - "protocol_id": 438 + "protocol_id": 465 }, "minecraft:dragon_head": { - "protocol_id": 1239 + "protocol_id": 1268 }, "minecraft:dried_ghast": { - "protocol_id": 649 + "protocol_id": 676 }, "minecraft:dried_kelp": { - "protocol_id": 1108 + "protocol_id": 1136 }, "minecraft:dried_kelp_block": { - "protocol_id": 1028 + "protocol_id": 1056 }, "minecraft:dripstone_block": { - "protocol_id": 26 + "protocol_id": 53 }, "minecraft:dropper": { - "protocol_id": 730 + "protocol_id": 757 }, "minecraft:drowned_spawn_egg": { - "protocol_id": 1175 + "protocol_id": 1204 }, "minecraft:dune_armor_trim_smithing_template": { - "protocol_id": 1429 + "protocol_id": 1460 }, "minecraft:echo_shard": { - "protocol_id": 1425 + "protocol_id": 1456 }, "minecraft:egg": { - "protocol_id": 1032 + "protocol_id": 1060 }, "minecraft:elder_guardian_spawn_egg": { - "protocol_id": 1192 + "protocol_id": 1221 }, "minecraft:elytra": { - "protocol_id": 863 + "protocol_id": 890 }, "minecraft:emerald": { - "protocol_id": 900 + "protocol_id": 927 }, "minecraft:emerald_block": { - "protocol_id": 441 + "protocol_id": 468 }, "minecraft:emerald_ore": { - "protocol_id": 74 + "protocol_id": 101 }, "minecraft:enchanted_book": { - "protocol_id": 1245 + "protocol_id": 1274 }, "minecraft:enchanted_golden_apple": { - "protocol_id": 988 + "protocol_id": 1015 }, "minecraft:enchanting_table": { - "protocol_id": 434 + "protocol_id": 461 }, "minecraft:end_crystal": { - "protocol_id": 1283 + "protocol_id": 1312 }, "minecraft:end_portal_frame": { - "protocol_id": 435 + "protocol_id": 462 }, "minecraft:end_rod": { - "protocol_id": 324 + "protocol_id": 351 }, "minecraft:end_stone": { - "protocol_id": 436 + "protocol_id": 463 }, "minecraft:end_stone_brick_slab": { - "protocol_id": 705 + "protocol_id": 732 }, "minecraft:end_stone_brick_stairs": { - "protocol_id": 687 + "protocol_id": 714 }, "minecraft:end_stone_brick_wall": { - "protocol_id": 470 + "protocol_id": 497 }, "minecraft:end_stone_bricks": { - "protocol_id": 437 + "protocol_id": 464 }, "minecraft:ender_chest": { - "protocol_id": 440 + "protocol_id": 467 }, "minecraft:ender_dragon_spawn_egg": { - "protocol_id": 1214 - }, - "minecraft:ender_eye": { - "protocol_id": 1129 - }, - "minecraft:ender_pearl": { - "protocol_id": 1116 - }, - "minecraft:enderman_spawn_egg": { - "protocol_id": 1215 - }, - "minecraft:endermite_spawn_egg": { - "protocol_id": 1216 - }, - "minecraft:evoker_spawn_egg": { - "protocol_id": 1199 - }, - "minecraft:experience_bottle": { - "protocol_id": 1218 - }, - "minecraft:explorer_pottery_sherd": { - "protocol_id": 1453 - }, - "minecraft:exposed_chiseled_copper": { - "protocol_id": 99 - }, - "minecraft:exposed_copper": { - "protocol_id": 95 - }, - "minecraft:exposed_copper_bars": { - "protocol_id": 393 - }, - "minecraft:exposed_copper_bulb": { - "protocol_id": 1478 - }, - "minecraft:exposed_copper_chain": { - "protocol_id": 402 - }, - "minecraft:exposed_copper_chest": { - "protocol_id": 1486 - }, - "minecraft:exposed_copper_door": { - "protocol_id": 794 - }, - "minecraft:exposed_copper_golem_statue": { - "protocol_id": 1494 - }, - "minecraft:exposed_copper_grate": { - "protocol_id": 1470 - }, - "minecraft:exposed_copper_lantern": { - "protocol_id": 1367 - }, - "minecraft:exposed_copper_trapdoor": { - "protocol_id": 815 - }, - "minecraft:exposed_cut_copper": { - "protocol_id": 103 - }, - "minecraft:exposed_cut_copper_slab": { - "protocol_id": 111 - }, - "minecraft:exposed_cut_copper_stairs": { - "protocol_id": 107 - }, - "minecraft:exposed_lightning_rod": { - "protocol_id": 735 - }, - "minecraft:eye_armor_trim_smithing_template": { - "protocol_id": 1433 - }, - "minecraft:farmland": { - "protocol_id": 334 - }, - "minecraft:feather": { - "protocol_id": 950 - }, - "minecraft:fermented_spider_eye": { - "protocol_id": 1124 - }, - "minecraft:fern": { - "protocol_id": 203 - }, - "minecraft:field_masoned_banner_pattern": { - "protocol_id": 1351 - }, - "minecraft:filled_map": { - "protocol_id": 1105 - }, - "minecraft:fire_charge": { - "protocol_id": 1219 - }, - "minecraft:fire_coral": { - "protocol_id": 663 - }, - "minecraft:fire_coral_block": { - "protocol_id": 658 - }, - "minecraft:fire_coral_fan": { - "protocol_id": 673 - }, - "minecraft:firefly_bush": { - "protocol_id": 208 - }, - "minecraft:firework_rocket": { "protocol_id": 1243 }, - "minecraft:firework_star": { + "minecraft:ender_eye": { + "protocol_id": 1157 + }, + "minecraft:ender_pearl": { + "protocol_id": 1144 + }, + "minecraft:enderman_spawn_egg": { "protocol_id": 1244 }, - "minecraft:fishing_rod": { - "protocol_id": 1054 + "minecraft:endermite_spawn_egg": { + "protocol_id": 1245 }, - "minecraft:fletching_table": { - "protocol_id": 1359 + "minecraft:evoker_spawn_egg": { + "protocol_id": 1228 }, - "minecraft:flint": { - "protocol_id": 983 + "minecraft:experience_bottle": { + "protocol_id": 1247 }, - "minecraft:flint_and_steel": { - "protocol_id": 892 + "minecraft:explorer_pottery_sherd": { + "protocol_id": 1484 }, - "minecraft:flow_armor_trim_smithing_template": { - "protocol_id": 1444 + "minecraft:exposed_chiseled_copper": { + "protocol_id": 130 }, - "minecraft:flow_banner_pattern": { - "protocol_id": 1349 + "minecraft:exposed_copper": { + "protocol_id": 119 }, - "minecraft:flow_pottery_sherd": { - "protocol_id": 1454 + "minecraft:exposed_copper_bars": { + "protocol_id": 420 }, - "minecraft:flower_banner_pattern": { - "protocol_id": 1343 + "minecraft:exposed_copper_bulb": { + "protocol_id": 1509 }, - "minecraft:flower_pot": { - "protocol_id": 1227 + "minecraft:exposed_copper_chain": { + "protocol_id": 429 }, - "minecraft:flowering_azalea": { - "protocol_id": 206 + "minecraft:exposed_copper_chest": { + "protocol_id": 1517 }, - "minecraft:flowering_azalea_leaves": { - "protocol_id": 192 + "minecraft:exposed_copper_door": { + "protocol_id": 821 }, - "minecraft:fox_spawn_egg": { - "protocol_id": 1145 + "minecraft:exposed_copper_golem_statue": { + "protocol_id": 1525 }, - "minecraft:friend_pottery_sherd": { - "protocol_id": 1455 + "minecraft:exposed_copper_grate": { + "protocol_id": 1501 }, - "minecraft:frog_spawn_egg": { - "protocol_id": 1155 + "minecraft:exposed_copper_lantern": { + "protocol_id": 1397 }, - "minecraft:frogspawn": { - "protocol_id": 1424 + "minecraft:exposed_copper_trapdoor": { + "protocol_id": 842 }, - "minecraft:furnace": { - "protocol_id": 335 + "minecraft:exposed_cut_copper": { + "protocol_id": 138 }, - "minecraft:furnace_minecart": { - "protocol_id": 857 + "minecraft:exposed_cut_copper_slab": { + "protocol_id": 154 }, - "minecraft:ghast_spawn_egg": { - "protocol_id": 1205 + "minecraft:exposed_cut_copper_stairs": { + "protocol_id": 146 }, - "minecraft:ghast_tear": { - "protocol_id": 1118 + "minecraft:exposed_lightning_rod": { + "protocol_id": 762 }, - "minecraft:gilded_blackstone": { - "protocol_id": 1389 + "minecraft:eye_armor_trim_smithing_template": { + "protocol_id": 1464 }, - "minecraft:glass": { - "protocol_id": 195 + "minecraft:farmland": { + "protocol_id": 361 }, - "minecraft:glass_bottle": { - "protocol_id": 1121 - }, - "minecraft:glass_pane": { - "protocol_id": 409 - }, - "minecraft:glistering_melon_slice": { - "protocol_id": 1130 - }, - "minecraft:globe_banner_pattern": { - "protocol_id": 1347 - }, - "minecraft:glow_berries": { - "protocol_id": 1375 - }, - "minecraft:glow_ink_sac": { - "protocol_id": 1065 - }, - "minecraft:glow_item_frame": { - "protocol_id": 1226 - }, - "minecraft:glow_lichen": { - "protocol_id": 412 - }, - "minecraft:glow_squid_spawn_egg": { - "protocol_id": 1156 - }, - "minecraft:glowstone": { - "protocol_id": 368 - }, - "minecraft:glowstone_dust": { - "protocol_id": 1057 - }, - "minecraft:goat_horn": { - "protocol_id": 1353 - }, - "minecraft:goat_spawn_egg": { - "protocol_id": 1146 - }, - "minecraft:gold_block": { - "protocol_id": 92 - }, - "minecraft:gold_ingot": { - "protocol_id": 909 - }, - "minecraft:gold_nugget": { - "protocol_id": 1119 - }, - "minecraft:gold_ore": { - "protocol_id": 70 - }, - "minecraft:golden_apple": { - "protocol_id": 987 - }, - "minecraft:golden_axe": { - "protocol_id": 930 - }, - "minecraft:golden_boots": { - "protocol_id": 978 - }, - "minecraft:golden_carrot": { - "protocol_id": 1233 - }, - "minecraft:golden_chestplate": { - "protocol_id": 976 - }, - "minecraft:golden_dandelion": { - "protocol_id": 230 - }, - "minecraft:golden_helmet": { - "protocol_id": 975 - }, - "minecraft:golden_hoe": { - "protocol_id": 931 - }, - "minecraft:golden_horse_armor": { - "protocol_id": 1258 - }, - "minecraft:golden_leggings": { + "minecraft:feather": { "protocol_id": 977 }, + "minecraft:fermented_spider_eye": { + "protocol_id": 1152 + }, + "minecraft:fern": { + "protocol_id": 230 + }, + "minecraft:field_masoned_banner_pattern": { + "protocol_id": 1381 + }, + "minecraft:filled_map": { + "protocol_id": 1133 + }, + "minecraft:fire_charge": { + "protocol_id": 1248 + }, + "minecraft:fire_coral": { + "protocol_id": 690 + }, + "minecraft:fire_coral_block": { + "protocol_id": 685 + }, + "minecraft:fire_coral_fan": { + "protocol_id": 700 + }, + "minecraft:firefly_bush": { + "protocol_id": 235 + }, + "minecraft:firework_rocket": { + "protocol_id": 1272 + }, + "minecraft:firework_star": { + "protocol_id": 1273 + }, + "minecraft:fishing_rod": { + "protocol_id": 1082 + }, + "minecraft:fletching_table": { + "protocol_id": 1389 + }, + "minecraft:flint": { + "protocol_id": 1010 + }, + "minecraft:flint_and_steel": { + "protocol_id": 919 + }, + "minecraft:flow_armor_trim_smithing_template": { + "protocol_id": 1475 + }, + "minecraft:flow_banner_pattern": { + "protocol_id": 1379 + }, + "minecraft:flow_pottery_sherd": { + "protocol_id": 1485 + }, + "minecraft:flower_banner_pattern": { + "protocol_id": 1373 + }, + "minecraft:flower_pot": { + "protocol_id": 1256 + }, + "minecraft:flowering_azalea": { + "protocol_id": 233 + }, + "minecraft:flowering_azalea_leaves": { + "protocol_id": 219 + }, + "minecraft:fox_spawn_egg": { + "protocol_id": 1173 + }, + "minecraft:friend_pottery_sherd": { + "protocol_id": 1486 + }, + "minecraft:frog_spawn_egg": { + "protocol_id": 1183 + }, + "minecraft:frogspawn": { + "protocol_id": 1455 + }, + "minecraft:furnace": { + "protocol_id": 362 + }, + "minecraft:furnace_minecart": { + "protocol_id": 884 + }, + "minecraft:ghast_spawn_egg": { + "protocol_id": 1234 + }, + "minecraft:ghast_tear": { + "protocol_id": 1146 + }, + "minecraft:gilded_blackstone": { + "protocol_id": 1419 + }, + "minecraft:glass": { + "protocol_id": 222 + }, + "minecraft:glass_bottle": { + "protocol_id": 1149 + }, + "minecraft:glass_pane": { + "protocol_id": 436 + }, + "minecraft:glistering_melon_slice": { + "protocol_id": 1158 + }, + "minecraft:globe_banner_pattern": { + "protocol_id": 1377 + }, + "minecraft:glow_berries": { + "protocol_id": 1405 + }, + "minecraft:glow_ink_sac": { + "protocol_id": 1093 + }, + "minecraft:glow_item_frame": { + "protocol_id": 1255 + }, + "minecraft:glow_lichen": { + "protocol_id": 439 + }, + "minecraft:glow_squid_spawn_egg": { + "protocol_id": 1184 + }, + "minecraft:glowstone": { + "protocol_id": 395 + }, + "minecraft:glowstone_dust": { + "protocol_id": 1085 + }, + "minecraft:goat_horn": { + "protocol_id": 1383 + }, + "minecraft:goat_spawn_egg": { + "protocol_id": 1174 + }, + "minecraft:gold_block": { + "protocol_id": 126 + }, + "minecraft:gold_ingot": { + "protocol_id": 936 + }, + "minecraft:gold_nugget": { + "protocol_id": 1147 + }, + "minecraft:gold_ore": { + "protocol_id": 97 + }, + "minecraft:golden_apple": { + "protocol_id": 1014 + }, + "minecraft:golden_axe": { + "protocol_id": 957 + }, + "minecraft:golden_boots": { + "protocol_id": 1005 + }, + "minecraft:golden_carrot": { + "protocol_id": 1262 + }, + "minecraft:golden_chestplate": { + "protocol_id": 1003 + }, + "minecraft:golden_dandelion": { + "protocol_id": 257 + }, + "minecraft:golden_helmet": { + "protocol_id": 1002 + }, + "minecraft:golden_hoe": { + "protocol_id": 958 + }, + "minecraft:golden_horse_armor": { + "protocol_id": 1287 + }, + "minecraft:golden_leggings": { + "protocol_id": 1004 + }, "minecraft:golden_nautilus_armor": { - "protocol_id": 1335 + "protocol_id": 1365 }, "minecraft:golden_pickaxe": { - "protocol_id": 929 + "protocol_id": 956 }, "minecraft:golden_shovel": { - "protocol_id": 928 + "protocol_id": 955 }, "minecraft:golden_spear": { - "protocol_id": 1301 + "protocol_id": 1330 }, "minecraft:golden_sword": { - "protocol_id": 927 + "protocol_id": 954 }, "minecraft:granite": { "protocol_id": 2 }, "minecraft:granite_slab": { - "protocol_id": 708 + "protocol_id": 735 }, "minecraft:granite_stairs": { - "protocol_id": 691 + "protocol_id": 718 }, "minecraft:granite_wall": { - "protocol_id": 463 - }, - "minecraft:grass_block": { - "protocol_id": 27 - }, - "minecraft:gravel": { - "protocol_id": 63 - }, - "minecraft:gray_banner": { - "protocol_id": 1274 - }, - "minecraft:gray_bed": { - "protocol_id": 1094 - }, - "minecraft:gray_bundle": { - "protocol_id": 1045 - }, - "minecraft:gray_candle": { - "protocol_id": 1407 - }, - "minecraft:gray_carpet": { - "protocol_id": 513 - }, - "minecraft:gray_concrete": { - "protocol_id": 622 - }, - "minecraft:gray_concrete_powder": { - "protocol_id": 638 - }, - "minecraft:gray_dye": { - "protocol_id": 1074 - }, - "minecraft:gray_glazed_terracotta": { - "protocol_id": 606 - }, - "minecraft:gray_harness": { - "protocol_id": 846 - }, - "minecraft:gray_shulker_box": { - "protocol_id": 590 - }, - "minecraft:gray_stained_glass": { - "protocol_id": 538 - }, - "minecraft:gray_stained_glass_pane": { - "protocol_id": 554 - }, - "minecraft:gray_terracotta": { - "protocol_id": 494 - }, - "minecraft:gray_wool": { - "protocol_id": 220 - }, - "minecraft:green_banner": { - "protocol_id": 1280 - }, - "minecraft:green_bed": { - "protocol_id": 1100 - }, - "minecraft:green_bundle": { - "protocol_id": 1051 - }, - "minecraft:green_candle": { - "protocol_id": 1413 - }, - "minecraft:green_carpet": { - "protocol_id": 519 - }, - "minecraft:green_concrete": { - "protocol_id": 628 - }, - "minecraft:green_concrete_powder": { - "protocol_id": 644 - }, - "minecraft:green_dye": { - "protocol_id": 1080 - }, - "minecraft:green_glazed_terracotta": { - "protocol_id": 612 - }, - "minecraft:green_harness": { - "protocol_id": 852 - }, - "minecraft:green_shulker_box": { - "protocol_id": 596 - }, - "minecraft:green_stained_glass": { - "protocol_id": 544 - }, - "minecraft:green_stained_glass_pane": { - "protocol_id": 560 - }, - "minecraft:green_terracotta": { - "protocol_id": 500 - }, - "minecraft:green_wool": { - "protocol_id": 226 - }, - "minecraft:grindstone": { - "protocol_id": 1360 - }, - "minecraft:guardian_spawn_egg": { - "protocol_id": 1193 - }, - "minecraft:gunpowder": { - "protocol_id": 951 - }, - "minecraft:guster_banner_pattern": { - "protocol_id": 1350 - }, - "minecraft:guster_pottery_sherd": { - "protocol_id": 1456 - }, - "minecraft:hanging_roots": { - "protocol_id": 267 - }, - "minecraft:happy_ghast_spawn_egg": { - "protocol_id": 1206 - }, - "minecraft:hay_block": { - "protocol_id": 505 - }, - "minecraft:heart_of_the_sea": { - "protocol_id": 1339 - }, - "minecraft:heart_pottery_sherd": { - "protocol_id": 1457 - }, - "minecraft:heartbreak_pottery_sherd": { - "protocol_id": 1458 - }, - "minecraft:heavy_core": { - "protocol_id": 87 - }, - "minecraft:heavy_weighted_pressure_plate": { - "protocol_id": 767 - }, - "minecraft:hoglin_spawn_egg": { - "protocol_id": 1207 - }, - "minecraft:honey_block": { - "protocol_id": 726 - }, - "minecraft:honey_bottle": { - "protocol_id": 1382 - }, - "minecraft:honeycomb": { - "protocol_id": 1379 - }, - "minecraft:honeycomb_block": { - "protocol_id": 1383 - }, - "minecraft:hopper": { - "protocol_id": 728 - }, - "minecraft:hopper_minecart": { - "protocol_id": 859 - }, - "minecraft:horn_coral": { - "protocol_id": 664 - }, - "minecraft:horn_coral_block": { - "protocol_id": 659 - }, - "minecraft:horn_coral_fan": { - "protocol_id": 674 - }, - "minecraft:horse_spawn_egg": { - "protocol_id": 1137 - }, - "minecraft:host_armor_trim_smithing_template": { - "protocol_id": 1443 - }, - "minecraft:howl_pottery_sherd": { - "protocol_id": 1459 - }, - "minecraft:husk_spawn_egg": { - "protocol_id": 1176 - }, - "minecraft:ice": { - "protocol_id": 339 - }, - "minecraft:infested_chiseled_stone_bricks": { - "protocol_id": 374 - }, - "minecraft:infested_cobblestone": { - "protocol_id": 370 - }, - "minecraft:infested_cracked_stone_bricks": { - "protocol_id": 373 - }, - "minecraft:infested_deepslate": { - "protocol_id": 375 - }, - "minecraft:infested_mossy_stone_bricks": { - "protocol_id": 372 - }, - "minecraft:infested_stone": { - "protocol_id": 369 - }, - "minecraft:infested_stone_bricks": { - "protocol_id": 371 - }, - "minecraft:ink_sac": { - "protocol_id": 1064 - }, - "minecraft:iron_axe": { - "protocol_id": 935 - }, - "minecraft:iron_bars": { - "protocol_id": 391 - }, - "minecraft:iron_block": { - "protocol_id": 90 - }, - "minecraft:iron_boots": { - "protocol_id": 970 - }, - "minecraft:iron_chain": { - "protocol_id": 400 - }, - "minecraft:iron_chestplate": { - "protocol_id": 968 - }, - "minecraft:iron_door": { - "protocol_id": 780 - }, - "minecraft:iron_golem_spawn_egg": { - "protocol_id": 1168 - }, - "minecraft:iron_helmet": { - "protocol_id": 967 - }, - "minecraft:iron_hoe": { - "protocol_id": 936 - }, - "minecraft:iron_horse_armor": { - "protocol_id": 1257 - }, - "minecraft:iron_ingot": { - "protocol_id": 905 - }, - "minecraft:iron_leggings": { - "protocol_id": 969 - }, - "minecraft:iron_nautilus_armor": { - "protocol_id": 1334 - }, - "minecraft:iron_nugget": { - "protocol_id": 1306 - }, - "minecraft:iron_ore": { - "protocol_id": 66 - }, - "minecraft:iron_pickaxe": { - "protocol_id": 934 - }, - "minecraft:iron_shovel": { - "protocol_id": 933 - }, - "minecraft:iron_spear": { - "protocol_id": 1300 - }, - "minecraft:iron_sword": { - "protocol_id": 932 - }, - "minecraft:iron_trapdoor": { - "protocol_id": 801 - }, - "minecraft:item_frame": { - "protocol_id": 1225 - }, - "minecraft:jack_o_lantern": { - "protocol_id": 359 - }, - "minecraft:jigsaw": { - "protocol_id": 885 - }, - "minecraft:jukebox": { - "protocol_id": 344 - }, - "minecraft:jungle_boat": { - "protocol_id": 870 - }, - "minecraft:jungle_button": { - "protocol_id": 755 - }, - "minecraft:jungle_chest_boat": { - "protocol_id": 871 - }, - "minecraft:jungle_door": { - "protocol_id": 784 - }, - "minecraft:jungle_fence": { - "protocol_id": 348 - }, - "minecraft:jungle_fence_gate": { - "protocol_id": 825 - }, - "minecraft:jungle_hanging_sign": { - "protocol_id": 1004 - }, - "minecraft:jungle_leaves": { - "protocol_id": 185 - }, - "minecraft:jungle_log": { - "protocol_id": 137 - }, - "minecraft:jungle_planks": { - "protocol_id": 39 - }, - "minecraft:jungle_pressure_plate": { - "protocol_id": 771 - }, - "minecraft:jungle_sapling": { - "protocol_id": 52 - }, - "minecraft:jungle_shelf": { - "protocol_id": 312 - }, - "minecraft:jungle_sign": { - "protocol_id": 992 - }, - "minecraft:jungle_slab": { - "protocol_id": 274 - }, - "minecraft:jungle_stairs": { - "protocol_id": 445 - }, - "minecraft:jungle_trapdoor": { - "protocol_id": 805 - }, - "minecraft:jungle_wood": { - "protocol_id": 174 - }, - "minecraft:kelp": { - "protocol_id": 258 - }, - "minecraft:knowledge_book": { - "protocol_id": 1308 - }, - "minecraft:ladder": { - "protocol_id": 336 - }, - "minecraft:lantern": { - "protocol_id": 1364 - }, - "minecraft:lapis_block": { - "protocol_id": 197 - }, - "minecraft:lapis_lazuli": { - "protocol_id": 901 - }, - "minecraft:lapis_ore": { - "protocol_id": 76 - }, - "minecraft:large_amethyst_bud": { - "protocol_id": 1418 - }, - "minecraft:large_fern": { - "protocol_id": 530 - }, - "minecraft:lava_bucket": { - "protocol_id": 1015 - }, - "minecraft:lead": { - "protocol_id": 1262 - }, - "minecraft:leaf_litter": { - "protocol_id": 261 - }, - "minecraft:leather": { - "protocol_id": 1018 - }, - "minecraft:leather_boots": { - "protocol_id": 958 - }, - "minecraft:leather_chestplate": { - "protocol_id": 956 - }, - "minecraft:leather_helmet": { - "protocol_id": 955 - }, - "minecraft:leather_horse_armor": { - "protocol_id": 1261 - }, - "minecraft:leather_leggings": { - "protocol_id": 957 - }, - "minecraft:lectern": { - "protocol_id": 731 - }, - "minecraft:lever": { - "protocol_id": 733 - }, - "minecraft:light": { - "protocol_id": 504 - }, - "minecraft:light_blue_banner": { - "protocol_id": 1270 - }, - "minecraft:light_blue_bed": { - "protocol_id": 1090 - }, - "minecraft:light_blue_bundle": { - "protocol_id": 1041 - }, - "minecraft:light_blue_candle": { - "protocol_id": 1403 - }, - "minecraft:light_blue_carpet": { - "protocol_id": 509 - }, - "minecraft:light_blue_concrete": { - "protocol_id": 618 - }, - "minecraft:light_blue_concrete_powder": { - "protocol_id": 634 - }, - "minecraft:light_blue_dye": { - "protocol_id": 1070 - }, - "minecraft:light_blue_glazed_terracotta": { - "protocol_id": 602 - }, - "minecraft:light_blue_harness": { - "protocol_id": 842 - }, - "minecraft:light_blue_shulker_box": { - "protocol_id": 586 - }, - "minecraft:light_blue_stained_glass": { - "protocol_id": 534 - }, - "minecraft:light_blue_stained_glass_pane": { - "protocol_id": 550 - }, - "minecraft:light_blue_terracotta": { "protocol_id": 490 }, - "minecraft:light_blue_wool": { - "protocol_id": 216 + "minecraft:grass_block": { + "protocol_id": 54 }, - "minecraft:light_gray_banner": { - "protocol_id": 1275 + "minecraft:gravel": { + "protocol_id": 90 }, - "minecraft:light_gray_bed": { - "protocol_id": 1095 - }, - "minecraft:light_gray_bundle": { - "protocol_id": 1046 - }, - "minecraft:light_gray_candle": { - "protocol_id": 1408 - }, - "minecraft:light_gray_carpet": { - "protocol_id": 514 - }, - "minecraft:light_gray_concrete": { - "protocol_id": 623 - }, - "minecraft:light_gray_concrete_powder": { - "protocol_id": 639 - }, - "minecraft:light_gray_dye": { - "protocol_id": 1075 - }, - "minecraft:light_gray_glazed_terracotta": { - "protocol_id": 607 - }, - "minecraft:light_gray_harness": { - "protocol_id": 847 - }, - "minecraft:light_gray_shulker_box": { - "protocol_id": 591 - }, - "minecraft:light_gray_stained_glass": { - "protocol_id": 539 - }, - "minecraft:light_gray_stained_glass_pane": { - "protocol_id": 555 - }, - "minecraft:light_gray_terracotta": { - "protocol_id": 495 - }, - "minecraft:light_gray_wool": { - "protocol_id": 221 - }, - "minecraft:light_weighted_pressure_plate": { - "protocol_id": 766 - }, - "minecraft:lightning_rod": { - "protocol_id": 734 - }, - "minecraft:lilac": { - "protocol_id": 526 - }, - "minecraft:lily_of_the_valley": { - "protocol_id": 243 - }, - "minecraft:lily_pad": { - "protocol_id": 424 - }, - "minecraft:lime_banner": { - "protocol_id": 1272 - }, - "minecraft:lime_bed": { - "protocol_id": 1092 - }, - "minecraft:lime_bundle": { - "protocol_id": 1043 - }, - "minecraft:lime_candle": { - "protocol_id": 1405 - }, - "minecraft:lime_carpet": { - "protocol_id": 511 - }, - "minecraft:lime_concrete": { - "protocol_id": 620 - }, - "minecraft:lime_concrete_powder": { - "protocol_id": 636 - }, - "minecraft:lime_dye": { - "protocol_id": 1072 - }, - "minecraft:lime_glazed_terracotta": { - "protocol_id": 604 - }, - "minecraft:lime_harness": { - "protocol_id": 844 - }, - "minecraft:lime_shulker_box": { - "protocol_id": 588 - }, - "minecraft:lime_stained_glass": { - "protocol_id": 536 - }, - "minecraft:lime_stained_glass_pane": { - "protocol_id": 552 - }, - "minecraft:lime_terracotta": { - "protocol_id": 492 - }, - "minecraft:lime_wool": { - "protocol_id": 218 - }, - "minecraft:lingering_potion": { - "protocol_id": 1295 - }, - "minecraft:llama_spawn_egg": { - "protocol_id": 1147 - }, - "minecraft:lodestone": { - "protocol_id": 1384 - }, - "minecraft:loom": { - "protocol_id": 1342 - }, - "minecraft:mace": { - "protocol_id": 1224 - }, - "minecraft:magenta_banner": { - "protocol_id": 1269 - }, - "minecraft:magenta_bed": { - "protocol_id": 1089 - }, - "minecraft:magenta_bundle": { - "protocol_id": 1040 - }, - "minecraft:magenta_candle": { - "protocol_id": 1402 - }, - "minecraft:magenta_carpet": { - "protocol_id": 508 - }, - "minecraft:magenta_concrete": { - "protocol_id": 617 - }, - "minecraft:magenta_concrete_powder": { - "protocol_id": 633 - }, - "minecraft:magenta_dye": { - "protocol_id": 1069 - }, - "minecraft:magenta_glazed_terracotta": { - "protocol_id": 601 - }, - "minecraft:magenta_harness": { - "protocol_id": 841 - }, - "minecraft:magenta_shulker_box": { - "protocol_id": 585 - }, - "minecraft:magenta_stained_glass": { - "protocol_id": 533 - }, - "minecraft:magenta_stained_glass_pane": { - "protocol_id": 549 - }, - "minecraft:magenta_terracotta": { - "protocol_id": 489 - }, - "minecraft:magenta_wool": { - "protocol_id": 215 - }, - "minecraft:magma_block": { - "protocol_id": 576 - }, - "minecraft:magma_cream": { - "protocol_id": 1126 - }, - "minecraft:magma_cube_spawn_egg": { - "protocol_id": 1208 - }, - "minecraft:mangrove_boat": { - "protocol_id": 880 - }, - "minecraft:mangrove_button": { - "protocol_id": 760 - }, - "minecraft:mangrove_chest_boat": { - "protocol_id": 881 - }, - "minecraft:mangrove_door": { - "protocol_id": 789 - }, - "minecraft:mangrove_fence": { - "protocol_id": 353 - }, - "minecraft:mangrove_fence_gate": { - "protocol_id": 830 - }, - "minecraft:mangrove_hanging_sign": { - "protocol_id": 1009 - }, - "minecraft:mangrove_leaves": { - "protocol_id": 190 - }, - "minecraft:mangrove_log": { - "protocol_id": 142 - }, - "minecraft:mangrove_planks": { - "protocol_id": 44 - }, - "minecraft:mangrove_pressure_plate": { - "protocol_id": 776 - }, - "minecraft:mangrove_propagule": { - "protocol_id": 57 - }, - "minecraft:mangrove_roots": { - "protocol_id": 143 - }, - "minecraft:mangrove_shelf": { - "protocol_id": 313 - }, - "minecraft:mangrove_sign": { - "protocol_id": 997 - }, - "minecraft:mangrove_slab": { - "protocol_id": 279 - }, - "minecraft:mangrove_stairs": { - "protocol_id": 450 - }, - "minecraft:mangrove_trapdoor": { - "protocol_id": 810 - }, - "minecraft:mangrove_wood": { - "protocol_id": 179 - }, - "minecraft:map": { - "protocol_id": 1232 - }, - "minecraft:medium_amethyst_bud": { - "protocol_id": 1417 - }, - "minecraft:melon": { - "protocol_id": 410 - }, - "minecraft:melon_seeds": { - "protocol_id": 1110 - }, - "minecraft:melon_slice": { - "protocol_id": 1107 - }, - "minecraft:milk_bucket": { - "protocol_id": 1019 - }, - "minecraft:minecart": { - "protocol_id": 855 - }, - "minecraft:miner_pottery_sherd": { - "protocol_id": 1460 - }, - "minecraft:mojang_banner_pattern": { - "protocol_id": 1346 - }, - "minecraft:mooshroom_spawn_egg": { - "protocol_id": 1165 - }, - "minecraft:moss_block": { - "protocol_id": 263 - }, - "minecraft:moss_carpet": { - "protocol_id": 262 - }, - "minecraft:mossy_cobblestone": { - "protocol_id": 321 - }, - "minecraft:mossy_cobblestone_slab": { - "protocol_id": 704 - }, - "minecraft:mossy_cobblestone_stairs": { - "protocol_id": 686 - }, - "minecraft:mossy_cobblestone_wall": { - "protocol_id": 458 - }, - "minecraft:mossy_stone_brick_slab": { - "protocol_id": 702 - }, - "minecraft:mossy_stone_brick_stairs": { - "protocol_id": 684 - }, - "minecraft:mossy_stone_brick_wall": { - "protocol_id": 462 - }, - "minecraft:mossy_stone_bricks": { - "protocol_id": 377 - }, - "minecraft:mourner_pottery_sherd": { - "protocol_id": 1461 - }, - "minecraft:mud": { - "protocol_id": 32 - }, - "minecraft:mud_brick_slab": { - "protocol_id": 292 - }, - "minecraft:mud_brick_stairs": { - "protocol_id": 422 - }, - "minecraft:mud_brick_wall": { - "protocol_id": 465 - }, - "minecraft:mud_bricks": { - "protocol_id": 381 - }, - "minecraft:muddy_mangrove_roots": { - "protocol_id": 144 - }, - "minecraft:mule_spawn_egg": { - "protocol_id": 1138 - }, - "minecraft:mushroom_stem": { - "protocol_id": 390 - }, - "minecraft:mushroom_stew": { - "protocol_id": 948 - }, - "minecraft:music_disc_11": { - "protocol_id": 1323 - }, - "minecraft:music_disc_13": { - "protocol_id": 1310 - }, - "minecraft:music_disc_5": { - "protocol_id": 1327 - }, - "minecraft:music_disc_blocks": { - "protocol_id": 1312 - }, - "minecraft:music_disc_cat": { - "protocol_id": 1311 - }, - "minecraft:music_disc_chirp": { - "protocol_id": 1313 - }, - "minecraft:music_disc_creator": { - "protocol_id": 1314 - }, - "minecraft:music_disc_creator_music_box": { - "protocol_id": 1315 - }, - "minecraft:music_disc_far": { - "protocol_id": 1316 - }, - "minecraft:music_disc_lava_chicken": { - "protocol_id": 1317 - }, - "minecraft:music_disc_mall": { - "protocol_id": 1318 - }, - "minecraft:music_disc_mellohi": { - "protocol_id": 1319 - }, - "minecraft:music_disc_otherside": { - "protocol_id": 1325 - }, - "minecraft:music_disc_pigstep": { - "protocol_id": 1328 - }, - "minecraft:music_disc_precipice": { - "protocol_id": 1329 - }, - "minecraft:music_disc_relic": { - "protocol_id": 1326 - }, - "minecraft:music_disc_stal": { - "protocol_id": 1320 - }, - "minecraft:music_disc_strad": { - "protocol_id": 1321 - }, - "minecraft:music_disc_tears": { - "protocol_id": 1330 - }, - "minecraft:music_disc_wait": { - "protocol_id": 1324 - }, - "minecraft:music_disc_ward": { - "protocol_id": 1322 - }, - "minecraft:mutton": { - "protocol_id": 1265 - }, - "minecraft:mycelium": { - "protocol_id": 423 - }, - "minecraft:name_tag": { - "protocol_id": 1263 - }, - "minecraft:nautilus_shell": { - "protocol_id": 1333 - }, - "minecraft:nautilus_spawn_egg": { - "protocol_id": 1157 - }, - "minecraft:nether_brick": { - "protocol_id": 1246 - }, - "minecraft:nether_brick_fence": { - "protocol_id": 428 - }, - "minecraft:nether_brick_slab": { - "protocol_id": 293 - }, - "minecraft:nether_brick_stairs": { - "protocol_id": 429 - }, - "minecraft:nether_brick_wall": { - "protocol_id": 466 - }, - "minecraft:nether_bricks": { - "protocol_id": 425 - }, - "minecraft:nether_gold_ore": { - "protocol_id": 80 - }, - "minecraft:nether_quartz_ore": { - "protocol_id": 81 - }, - "minecraft:nether_sprouts": { - "protocol_id": 254 - }, - "minecraft:nether_star": { - "protocol_id": 1241 - }, - "minecraft:nether_wart": { - "protocol_id": 1120 - }, - "minecraft:nether_wart_block": { - "protocol_id": 577 - }, - "minecraft:netherite_axe": { - "protocol_id": 945 - }, - "minecraft:netherite_block": { - "protocol_id": 94 - }, - "minecraft:netherite_boots": { - "protocol_id": 982 - }, - "minecraft:netherite_chestplate": { - "protocol_id": 980 - }, - "minecraft:netherite_helmet": { - "protocol_id": 979 - }, - "minecraft:netherite_hoe": { - "protocol_id": 946 - }, - "minecraft:netherite_horse_armor": { - "protocol_id": 1260 - }, - "minecraft:netherite_ingot": { - "protocol_id": 910 - }, - "minecraft:netherite_leggings": { - "protocol_id": 981 - }, - "minecraft:netherite_nautilus_armor": { - "protocol_id": 1337 - }, - "minecraft:netherite_pickaxe": { - "protocol_id": 944 - }, - "minecraft:netherite_scrap": { - "protocol_id": 911 - }, - "minecraft:netherite_shovel": { - "protocol_id": 943 - }, - "minecraft:netherite_spear": { + "minecraft:gray_banner": { "protocol_id": 1303 }, - "minecraft:netherite_sword": { - "protocol_id": 942 + "minecraft:gray_bed": { + "protocol_id": 1122 }, - "minecraft:netherite_upgrade_smithing_template": { - "protocol_id": 1427 - }, - "minecraft:netherrack": { - "protocol_id": 360 - }, - "minecraft:note_block": { - "protocol_id": 749 - }, - "minecraft:oak_boat": { - "protocol_id": 864 - }, - "minecraft:oak_button": { - "protocol_id": 752 - }, - "minecraft:oak_chest_boat": { - "protocol_id": 865 - }, - "minecraft:oak_door": { - "protocol_id": 781 - }, - "minecraft:oak_fence": { - "protocol_id": 345 - }, - "minecraft:oak_fence_gate": { - "protocol_id": 822 - }, - "minecraft:oak_hanging_sign": { - "protocol_id": 1001 - }, - "minecraft:oak_leaves": { - "protocol_id": 182 - }, - "minecraft:oak_log": { - "protocol_id": 134 - }, - "minecraft:oak_planks": { - "protocol_id": 36 - }, - "minecraft:oak_pressure_plate": { - "protocol_id": 768 - }, - "minecraft:oak_sapling": { - "protocol_id": 49 - }, - "minecraft:oak_shelf": { - "protocol_id": 314 - }, - "minecraft:oak_sign": { - "protocol_id": 989 - }, - "minecraft:oak_slab": { - "protocol_id": 271 - }, - "minecraft:oak_stairs": { - "protocol_id": 442 - }, - "minecraft:oak_trapdoor": { - "protocol_id": 802 - }, - "minecraft:oak_wood": { - "protocol_id": 171 - }, - "minecraft:observer": { - "protocol_id": 727 - }, - "minecraft:obsidian": { - "protocol_id": 322 - }, - "minecraft:ocelot_spawn_egg": { - "protocol_id": 1148 - }, - "minecraft:ochre_froglight": { - "protocol_id": 1421 - }, - "minecraft:ominous_bottle": { - "protocol_id": 1505 - }, - "minecraft:ominous_trial_key": { - "protocol_id": 1503 - }, - "minecraft:open_eyeblossom": { - "protocol_id": 231 - }, - "minecraft:orange_banner": { - "protocol_id": 1268 - }, - "minecraft:orange_bed": { - "protocol_id": 1088 - }, - "minecraft:orange_bundle": { - "protocol_id": 1039 - }, - "minecraft:orange_candle": { - "protocol_id": 1401 - }, - "minecraft:orange_carpet": { - "protocol_id": 507 - }, - "minecraft:orange_concrete": { - "protocol_id": 616 - }, - "minecraft:orange_concrete_powder": { - "protocol_id": 632 - }, - "minecraft:orange_dye": { - "protocol_id": 1068 - }, - "minecraft:orange_glazed_terracotta": { - "protocol_id": 600 - }, - "minecraft:orange_harness": { - "protocol_id": 840 - }, - "minecraft:orange_shulker_box": { - "protocol_id": 584 - }, - "minecraft:orange_stained_glass": { - "protocol_id": 532 - }, - "minecraft:orange_stained_glass_pane": { - "protocol_id": 548 - }, - "minecraft:orange_terracotta": { - "protocol_id": 488 - }, - "minecraft:orange_tulip": { - "protocol_id": 238 - }, - "minecraft:orange_wool": { - "protocol_id": 214 - }, - "minecraft:oxeye_daisy": { - "protocol_id": 241 - }, - "minecraft:oxidized_chiseled_copper": { - "protocol_id": 101 - }, - "minecraft:oxidized_copper": { - "protocol_id": 97 - }, - "minecraft:oxidized_copper_bars": { - "protocol_id": 395 - }, - "minecraft:oxidized_copper_bulb": { - "protocol_id": 1480 - }, - "minecraft:oxidized_copper_chain": { - "protocol_id": 404 - }, - "minecraft:oxidized_copper_chest": { - "protocol_id": 1488 - }, - "minecraft:oxidized_copper_door": { - "protocol_id": 796 - }, - "minecraft:oxidized_copper_golem_statue": { - "protocol_id": 1496 - }, - "minecraft:oxidized_copper_grate": { - "protocol_id": 1472 - }, - "minecraft:oxidized_copper_lantern": { - "protocol_id": 1369 - }, - "minecraft:oxidized_copper_trapdoor": { - "protocol_id": 817 - }, - "minecraft:oxidized_cut_copper": { - "protocol_id": 105 - }, - "minecraft:oxidized_cut_copper_slab": { - "protocol_id": 113 - }, - "minecraft:oxidized_cut_copper_stairs": { - "protocol_id": 109 - }, - "minecraft:oxidized_lightning_rod": { - "protocol_id": 737 - }, - "minecraft:packed_ice": { - "protocol_id": 523 - }, - "minecraft:packed_mud": { - "protocol_id": 380 - }, - "minecraft:painting": { - "protocol_id": 986 - }, - "minecraft:pale_hanging_moss": { - "protocol_id": 265 - }, - "minecraft:pale_moss_block": { - "protocol_id": 266 - }, - "minecraft:pale_moss_carpet": { - "protocol_id": 264 - }, - "minecraft:pale_oak_boat": { - "protocol_id": 878 - }, - "minecraft:pale_oak_button": { - "protocol_id": 759 - }, - "minecraft:pale_oak_chest_boat": { - "protocol_id": 879 - }, - "minecraft:pale_oak_door": { - "protocol_id": 788 - }, - "minecraft:pale_oak_fence": { - "protocol_id": 352 - }, - "minecraft:pale_oak_fence_gate": { - "protocol_id": 829 - }, - "minecraft:pale_oak_hanging_sign": { - "protocol_id": 1008 - }, - "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": 775 - }, - "minecraft:pale_oak_sapling": { - "protocol_id": 56 - }, - "minecraft:pale_oak_shelf": { - "protocol_id": 315 - }, - "minecraft:pale_oak_sign": { - "protocol_id": 996 - }, - "minecraft:pale_oak_slab": { - "protocol_id": 278 - }, - "minecraft:pale_oak_stairs": { - "protocol_id": 449 - }, - "minecraft:pale_oak_trapdoor": { - "protocol_id": 809 - }, - "minecraft:pale_oak_wood": { - "protocol_id": 177 - }, - "minecraft:panda_spawn_egg": { - "protocol_id": 1149 - }, - "minecraft:paper": { - "protocol_id": 1029 - }, - "minecraft:parched_spawn_egg": { - "protocol_id": 1177 - }, - "minecraft:parrot_spawn_egg": { - "protocol_id": 1140 - }, - "minecraft:pearlescent_froglight": { - "protocol_id": 1423 - }, - "minecraft:peony": { - "protocol_id": 528 - }, - "minecraft:petrified_oak_slab": { - "protocol_id": 288 - }, - "minecraft:phantom_membrane": { - "protocol_id": 862 - }, - "minecraft:phantom_spawn_egg": { - "protocol_id": 1194 - }, - "minecraft:pig_spawn_egg": { - "protocol_id": 1133 - }, - "minecraft:piglin_banner_pattern": { - "protocol_id": 1348 - }, - "minecraft:piglin_brute_spawn_egg": { - "protocol_id": 1210 - }, - "minecraft:piglin_head": { - "protocol_id": 1240 - }, - "minecraft:piglin_spawn_egg": { - "protocol_id": 1209 - }, - "minecraft:pillager_spawn_egg": { - "protocol_id": 1200 - }, - "minecraft:pink_banner": { - "protocol_id": 1273 - }, - "minecraft:pink_bed": { - "protocol_id": 1093 - }, - "minecraft:pink_bundle": { - "protocol_id": 1044 - }, - "minecraft:pink_candle": { - "protocol_id": 1406 - }, - "minecraft:pink_carpet": { - "protocol_id": 512 - }, - "minecraft:pink_concrete": { - "protocol_id": 621 - }, - "minecraft:pink_concrete_powder": { - "protocol_id": 637 - }, - "minecraft:pink_dye": { + "minecraft:gray_bundle": { "protocol_id": 1073 }, - "minecraft:pink_glazed_terracotta": { - "protocol_id": 605 + "minecraft:gray_candle": { + "protocol_id": 1437 }, - "minecraft:pink_harness": { - "protocol_id": 845 + "minecraft:gray_carpet": { + "protocol_id": 540 }, - "minecraft:pink_petals": { - "protocol_id": 259 + "minecraft:gray_concrete": { + "protocol_id": 649 }, - "minecraft:pink_shulker_box": { - "protocol_id": 589 + "minecraft:gray_concrete_powder": { + "protocol_id": 665 }, - "minecraft:pink_stained_glass": { - "protocol_id": 537 + "minecraft:gray_dye": { + "protocol_id": 1102 }, - "minecraft:pink_stained_glass_pane": { - "protocol_id": 553 + "minecraft:gray_glazed_terracotta": { + "protocol_id": 633 }, - "minecraft:pink_terracotta": { - "protocol_id": 493 + "minecraft:gray_harness": { + "protocol_id": 873 }, - "minecraft:pink_tulip": { - "protocol_id": 240 + "minecraft:gray_shulker_box": { + "protocol_id": 617 }, - "minecraft:pink_wool": { - "protocol_id": 219 + "minecraft:gray_stained_glass": { + "protocol_id": 565 }, - "minecraft:piston": { - "protocol_id": 723 + "minecraft:gray_stained_glass_pane": { + "protocol_id": 581 }, - "minecraft:pitcher_plant": { - "protocol_id": 246 + "minecraft:gray_terracotta": { + "protocol_id": 521 }, - "minecraft:pitcher_pod": { - "protocol_id": 1287 + "minecraft:gray_wool": { + "protocol_id": 247 }, - "minecraft:player_head": { + "minecraft:green_banner": { + "protocol_id": 1309 + }, + "minecraft:green_bed": { + "protocol_id": 1128 + }, + "minecraft:green_bundle": { + "protocol_id": 1079 + }, + "minecraft:green_candle": { + "protocol_id": 1443 + }, + "minecraft:green_carpet": { + "protocol_id": 546 + }, + "minecraft:green_concrete": { + "protocol_id": 655 + }, + "minecraft:green_concrete_powder": { + "protocol_id": 671 + }, + "minecraft:green_dye": { + "protocol_id": 1108 + }, + "minecraft:green_glazed_terracotta": { + "protocol_id": 639 + }, + "minecraft:green_harness": { + "protocol_id": 879 + }, + "minecraft:green_shulker_box": { + "protocol_id": 623 + }, + "minecraft:green_stained_glass": { + "protocol_id": 571 + }, + "minecraft:green_stained_glass_pane": { + "protocol_id": 587 + }, + "minecraft:green_terracotta": { + "protocol_id": 527 + }, + "minecraft:green_wool": { + "protocol_id": 253 + }, + "minecraft:grindstone": { + "protocol_id": 1390 + }, + "minecraft:guardian_spawn_egg": { + "protocol_id": 1222 + }, + "minecraft:gunpowder": { + "protocol_id": 978 + }, + "minecraft:guster_banner_pattern": { + "protocol_id": 1380 + }, + "minecraft:guster_pottery_sherd": { + "protocol_id": 1487 + }, + "minecraft:hanging_roots": { + "protocol_id": 294 + }, + "minecraft:happy_ghast_spawn_egg": { + "protocol_id": 1235 + }, + "minecraft:hay_block": { + "protocol_id": 532 + }, + "minecraft:heart_of_the_sea": { + "protocol_id": 1369 + }, + "minecraft:heart_pottery_sherd": { + "protocol_id": 1488 + }, + "minecraft:heartbreak_pottery_sherd": { + "protocol_id": 1489 + }, + "minecraft:heavy_core": { + "protocol_id": 114 + }, + "minecraft:heavy_weighted_pressure_plate": { + "protocol_id": 794 + }, + "minecraft:hoglin_spawn_egg": { "protocol_id": 1236 }, + "minecraft:honey_block": { + "protocol_id": 753 + }, + "minecraft:honey_bottle": { + "protocol_id": 1412 + }, + "minecraft:honeycomb": { + "protocol_id": 1409 + }, + "minecraft:honeycomb_block": { + "protocol_id": 1413 + }, + "minecraft:hopper": { + "protocol_id": 755 + }, + "minecraft:hopper_minecart": { + "protocol_id": 886 + }, + "minecraft:horn_coral": { + "protocol_id": 691 + }, + "minecraft:horn_coral_block": { + "protocol_id": 686 + }, + "minecraft:horn_coral_fan": { + "protocol_id": 701 + }, + "minecraft:horse_spawn_egg": { + "protocol_id": 1165 + }, + "minecraft:host_armor_trim_smithing_template": { + "protocol_id": 1474 + }, + "minecraft:howl_pottery_sherd": { + "protocol_id": 1490 + }, + "minecraft:husk_spawn_egg": { + "protocol_id": 1205 + }, + "minecraft:ice": { + "protocol_id": 366 + }, + "minecraft:infested_chiseled_stone_bricks": { + "protocol_id": 401 + }, + "minecraft:infested_cobblestone": { + "protocol_id": 397 + }, + "minecraft:infested_cracked_stone_bricks": { + "protocol_id": 400 + }, + "minecraft:infested_deepslate": { + "protocol_id": 402 + }, + "minecraft:infested_mossy_stone_bricks": { + "protocol_id": 399 + }, + "minecraft:infested_stone": { + "protocol_id": 396 + }, + "minecraft:infested_stone_bricks": { + "protocol_id": 398 + }, + "minecraft:ink_sac": { + "protocol_id": 1092 + }, + "minecraft:iron_axe": { + "protocol_id": 962 + }, + "minecraft:iron_bars": { + "protocol_id": 418 + }, + "minecraft:iron_block": { + "protocol_id": 117 + }, + "minecraft:iron_boots": { + "protocol_id": 997 + }, + "minecraft:iron_chain": { + "protocol_id": 427 + }, + "minecraft:iron_chestplate": { + "protocol_id": 995 + }, + "minecraft:iron_door": { + "protocol_id": 807 + }, + "minecraft:iron_golem_spawn_egg": { + "protocol_id": 1197 + }, + "minecraft:iron_helmet": { + "protocol_id": 994 + }, + "minecraft:iron_hoe": { + "protocol_id": 963 + }, + "minecraft:iron_horse_armor": { + "protocol_id": 1286 + }, + "minecraft:iron_ingot": { + "protocol_id": 932 + }, + "minecraft:iron_leggings": { + "protocol_id": 996 + }, + "minecraft:iron_nautilus_armor": { + "protocol_id": 1364 + }, + "minecraft:iron_nugget": { + "protocol_id": 1335 + }, + "minecraft:iron_ore": { + "protocol_id": 93 + }, + "minecraft:iron_pickaxe": { + "protocol_id": 961 + }, + "minecraft:iron_shovel": { + "protocol_id": 960 + }, + "minecraft:iron_spear": { + "protocol_id": 1329 + }, + "minecraft:iron_sword": { + "protocol_id": 959 + }, + "minecraft:iron_trapdoor": { + "protocol_id": 828 + }, + "minecraft:item_frame": { + "protocol_id": 1254 + }, + "minecraft:jack_o_lantern": { + "protocol_id": 386 + }, + "minecraft:jigsaw": { + "protocol_id": 912 + }, + "minecraft:jukebox": { + "protocol_id": 371 + }, + "minecraft:jungle_boat": { + "protocol_id": 897 + }, + "minecraft:jungle_button": { + "protocol_id": 782 + }, + "minecraft:jungle_chest_boat": { + "protocol_id": 898 + }, + "minecraft:jungle_door": { + "protocol_id": 811 + }, + "minecraft:jungle_fence": { + "protocol_id": 375 + }, + "minecraft:jungle_fence_gate": { + "protocol_id": 852 + }, + "minecraft:jungle_hanging_sign": { + "protocol_id": 1031 + }, + "minecraft:jungle_leaves": { + "protocol_id": 212 + }, + "minecraft:jungle_log": { + "protocol_id": 164 + }, + "minecraft:jungle_planks": { + "protocol_id": 66 + }, + "minecraft:jungle_pressure_plate": { + "protocol_id": 798 + }, + "minecraft:jungle_sapling": { + "protocol_id": 79 + }, + "minecraft:jungle_shelf": { + "protocol_id": 339 + }, + "minecraft:jungle_sign": { + "protocol_id": 1019 + }, + "minecraft:jungle_slab": { + "protocol_id": 301 + }, + "minecraft:jungle_stairs": { + "protocol_id": 472 + }, + "minecraft:jungle_trapdoor": { + "protocol_id": 832 + }, + "minecraft:jungle_wood": { + "protocol_id": 201 + }, + "minecraft:kelp": { + "protocol_id": 285 + }, + "minecraft:knowledge_book": { + "protocol_id": 1337 + }, + "minecraft:ladder": { + "protocol_id": 363 + }, + "minecraft:lantern": { + "protocol_id": 1394 + }, + "minecraft:lapis_block": { + "protocol_id": 224 + }, + "minecraft:lapis_lazuli": { + "protocol_id": 928 + }, + "minecraft:lapis_ore": { + "protocol_id": 103 + }, + "minecraft:large_amethyst_bud": { + "protocol_id": 1448 + }, + "minecraft:large_fern": { + "protocol_id": 557 + }, + "minecraft:lava_bucket": { + "protocol_id": 1042 + }, + "minecraft:lead": { + "protocol_id": 1291 + }, + "minecraft:leaf_litter": { + "protocol_id": 288 + }, + "minecraft:leather": { + "protocol_id": 1045 + }, + "minecraft:leather_boots": { + "protocol_id": 985 + }, + "minecraft:leather_chestplate": { + "protocol_id": 983 + }, + "minecraft:leather_helmet": { + "protocol_id": 982 + }, + "minecraft:leather_horse_armor": { + "protocol_id": 1290 + }, + "minecraft:leather_leggings": { + "protocol_id": 984 + }, + "minecraft:lectern": { + "protocol_id": 758 + }, + "minecraft:lever": { + "protocol_id": 760 + }, + "minecraft:light": { + "protocol_id": 531 + }, + "minecraft:light_blue_banner": { + "protocol_id": 1299 + }, + "minecraft:light_blue_bed": { + "protocol_id": 1118 + }, + "minecraft:light_blue_bundle": { + "protocol_id": 1069 + }, + "minecraft:light_blue_candle": { + "protocol_id": 1433 + }, + "minecraft:light_blue_carpet": { + "protocol_id": 536 + }, + "minecraft:light_blue_concrete": { + "protocol_id": 645 + }, + "minecraft:light_blue_concrete_powder": { + "protocol_id": 661 + }, + "minecraft:light_blue_dye": { + "protocol_id": 1098 + }, + "minecraft:light_blue_glazed_terracotta": { + "protocol_id": 629 + }, + "minecraft:light_blue_harness": { + "protocol_id": 869 + }, + "minecraft:light_blue_shulker_box": { + "protocol_id": 613 + }, + "minecraft:light_blue_stained_glass": { + "protocol_id": 561 + }, + "minecraft:light_blue_stained_glass_pane": { + "protocol_id": 577 + }, + "minecraft:light_blue_terracotta": { + "protocol_id": 517 + }, + "minecraft:light_blue_wool": { + "protocol_id": 243 + }, + "minecraft:light_gray_banner": { + "protocol_id": 1304 + }, + "minecraft:light_gray_bed": { + "protocol_id": 1123 + }, + "minecraft:light_gray_bundle": { + "protocol_id": 1074 + }, + "minecraft:light_gray_candle": { + "protocol_id": 1438 + }, + "minecraft:light_gray_carpet": { + "protocol_id": 541 + }, + "minecraft:light_gray_concrete": { + "protocol_id": 650 + }, + "minecraft:light_gray_concrete_powder": { + "protocol_id": 666 + }, + "minecraft:light_gray_dye": { + "protocol_id": 1103 + }, + "minecraft:light_gray_glazed_terracotta": { + "protocol_id": 634 + }, + "minecraft:light_gray_harness": { + "protocol_id": 874 + }, + "minecraft:light_gray_shulker_box": { + "protocol_id": 618 + }, + "minecraft:light_gray_stained_glass": { + "protocol_id": 566 + }, + "minecraft:light_gray_stained_glass_pane": { + "protocol_id": 582 + }, + "minecraft:light_gray_terracotta": { + "protocol_id": 522 + }, + "minecraft:light_gray_wool": { + "protocol_id": 248 + }, + "minecraft:light_weighted_pressure_plate": { + "protocol_id": 793 + }, + "minecraft:lightning_rod": { + "protocol_id": 761 + }, + "minecraft:lilac": { + "protocol_id": 553 + }, + "minecraft:lily_of_the_valley": { + "protocol_id": 270 + }, + "minecraft:lily_pad": { + "protocol_id": 451 + }, + "minecraft:lime_banner": { + "protocol_id": 1301 + }, + "minecraft:lime_bed": { + "protocol_id": 1120 + }, + "minecraft:lime_bundle": { + "protocol_id": 1071 + }, + "minecraft:lime_candle": { + "protocol_id": 1435 + }, + "minecraft:lime_carpet": { + "protocol_id": 538 + }, + "minecraft:lime_concrete": { + "protocol_id": 647 + }, + "minecraft:lime_concrete_powder": { + "protocol_id": 663 + }, + "minecraft:lime_dye": { + "protocol_id": 1100 + }, + "minecraft:lime_glazed_terracotta": { + "protocol_id": 631 + }, + "minecraft:lime_harness": { + "protocol_id": 871 + }, + "minecraft:lime_shulker_box": { + "protocol_id": 615 + }, + "minecraft:lime_stained_glass": { + "protocol_id": 563 + }, + "minecraft:lime_stained_glass_pane": { + "protocol_id": 579 + }, + "minecraft:lime_terracotta": { + "protocol_id": 519 + }, + "minecraft:lime_wool": { + "protocol_id": 245 + }, + "minecraft:lingering_potion": { + "protocol_id": 1324 + }, + "minecraft:llama_spawn_egg": { + "protocol_id": 1175 + }, + "minecraft:lodestone": { + "protocol_id": 1414 + }, + "minecraft:loom": { + "protocol_id": 1372 + }, + "minecraft:mace": { + "protocol_id": 1253 + }, + "minecraft:magenta_banner": { + "protocol_id": 1298 + }, + "minecraft:magenta_bed": { + "protocol_id": 1117 + }, + "minecraft:magenta_bundle": { + "protocol_id": 1068 + }, + "minecraft:magenta_candle": { + "protocol_id": 1432 + }, + "minecraft:magenta_carpet": { + "protocol_id": 535 + }, + "minecraft:magenta_concrete": { + "protocol_id": 644 + }, + "minecraft:magenta_concrete_powder": { + "protocol_id": 660 + }, + "minecraft:magenta_dye": { + "protocol_id": 1097 + }, + "minecraft:magenta_glazed_terracotta": { + "protocol_id": 628 + }, + "minecraft:magenta_harness": { + "protocol_id": 868 + }, + "minecraft:magenta_shulker_box": { + "protocol_id": 612 + }, + "minecraft:magenta_stained_glass": { + "protocol_id": 560 + }, + "minecraft:magenta_stained_glass_pane": { + "protocol_id": 576 + }, + "minecraft:magenta_terracotta": { + "protocol_id": 516 + }, + "minecraft:magenta_wool": { + "protocol_id": 242 + }, + "minecraft:magma_block": { + "protocol_id": 603 + }, + "minecraft:magma_cream": { + "protocol_id": 1154 + }, + "minecraft:magma_cube_spawn_egg": { + "protocol_id": 1237 + }, + "minecraft:mangrove_boat": { + "protocol_id": 907 + }, + "minecraft:mangrove_button": { + "protocol_id": 787 + }, + "minecraft:mangrove_chest_boat": { + "protocol_id": 908 + }, + "minecraft:mangrove_door": { + "protocol_id": 816 + }, + "minecraft:mangrove_fence": { + "protocol_id": 380 + }, + "minecraft:mangrove_fence_gate": { + "protocol_id": 857 + }, + "minecraft:mangrove_hanging_sign": { + "protocol_id": 1036 + }, + "minecraft:mangrove_leaves": { + "protocol_id": 217 + }, + "minecraft:mangrove_log": { + "protocol_id": 169 + }, + "minecraft:mangrove_planks": { + "protocol_id": 71 + }, + "minecraft:mangrove_pressure_plate": { + "protocol_id": 803 + }, + "minecraft:mangrove_propagule": { + "protocol_id": 84 + }, + "minecraft:mangrove_roots": { + "protocol_id": 170 + }, + "minecraft:mangrove_shelf": { + "protocol_id": 340 + }, + "minecraft:mangrove_sign": { + "protocol_id": 1024 + }, + "minecraft:mangrove_slab": { + "protocol_id": 306 + }, + "minecraft:mangrove_stairs": { + "protocol_id": 477 + }, + "minecraft:mangrove_trapdoor": { + "protocol_id": 837 + }, + "minecraft:mangrove_wood": { + "protocol_id": 206 + }, + "minecraft:map": { + "protocol_id": 1261 + }, + "minecraft:medium_amethyst_bud": { + "protocol_id": 1447 + }, + "minecraft:melon": { + "protocol_id": 437 + }, + "minecraft:melon_seeds": { + "protocol_id": 1138 + }, + "minecraft:melon_slice": { + "protocol_id": 1135 + }, + "minecraft:milk_bucket": { + "protocol_id": 1046 + }, + "minecraft:minecart": { + "protocol_id": 882 + }, + "minecraft:miner_pottery_sherd": { + "protocol_id": 1491 + }, + "minecraft:mojang_banner_pattern": { + "protocol_id": 1376 + }, + "minecraft:mooshroom_spawn_egg": { + "protocol_id": 1193 + }, + "minecraft:moss_block": { + "protocol_id": 290 + }, + "minecraft:moss_carpet": { + "protocol_id": 289 + }, + "minecraft:mossy_cobblestone": { + "protocol_id": 348 + }, + "minecraft:mossy_cobblestone_slab": { + "protocol_id": 731 + }, + "minecraft:mossy_cobblestone_stairs": { + "protocol_id": 713 + }, + "minecraft:mossy_cobblestone_wall": { + "protocol_id": 485 + }, + "minecraft:mossy_stone_brick_slab": { + "protocol_id": 729 + }, + "minecraft:mossy_stone_brick_stairs": { + "protocol_id": 711 + }, + "minecraft:mossy_stone_brick_wall": { + "protocol_id": 489 + }, + "minecraft:mossy_stone_bricks": { + "protocol_id": 404 + }, + "minecraft:mourner_pottery_sherd": { + "protocol_id": 1492 + }, + "minecraft:mud": { + "protocol_id": 59 + }, + "minecraft:mud_brick_slab": { + "protocol_id": 319 + }, + "minecraft:mud_brick_stairs": { + "protocol_id": 449 + }, + "minecraft:mud_brick_wall": { + "protocol_id": 492 + }, + "minecraft:mud_bricks": { + "protocol_id": 408 + }, + "minecraft:muddy_mangrove_roots": { + "protocol_id": 171 + }, + "minecraft:mule_spawn_egg": { + "protocol_id": 1166 + }, + "minecraft:mushroom_stem": { + "protocol_id": 417 + }, + "minecraft:mushroom_stew": { + "protocol_id": 975 + }, + "minecraft:music_disc_11": { + "protocol_id": 1353 + }, + "minecraft:music_disc_13": { + "protocol_id": 1339 + }, + "minecraft:music_disc_5": { + "protocol_id": 1357 + }, + "minecraft:music_disc_blocks": { + "protocol_id": 1341 + }, + "minecraft:music_disc_bounce": { + "protocol_id": 1342 + }, + "minecraft:music_disc_cat": { + "protocol_id": 1340 + }, + "minecraft:music_disc_chirp": { + "protocol_id": 1343 + }, + "minecraft:music_disc_creator": { + "protocol_id": 1344 + }, + "minecraft:music_disc_creator_music_box": { + "protocol_id": 1345 + }, + "minecraft:music_disc_far": { + "protocol_id": 1346 + }, + "minecraft:music_disc_lava_chicken": { + "protocol_id": 1347 + }, + "minecraft:music_disc_mall": { + "protocol_id": 1348 + }, + "minecraft:music_disc_mellohi": { + "protocol_id": 1349 + }, + "minecraft:music_disc_otherside": { + "protocol_id": 1355 + }, + "minecraft:music_disc_pigstep": { + "protocol_id": 1358 + }, + "minecraft:music_disc_precipice": { + "protocol_id": 1359 + }, + "minecraft:music_disc_relic": { + "protocol_id": 1356 + }, + "minecraft:music_disc_stal": { + "protocol_id": 1350 + }, + "minecraft:music_disc_strad": { + "protocol_id": 1351 + }, + "minecraft:music_disc_tears": { + "protocol_id": 1360 + }, + "minecraft:music_disc_wait": { + "protocol_id": 1354 + }, + "minecraft:music_disc_ward": { + "protocol_id": 1352 + }, + "minecraft:mutton": { + "protocol_id": 1294 + }, + "minecraft:mycelium": { + "protocol_id": 450 + }, + "minecraft:name_tag": { + "protocol_id": 1292 + }, + "minecraft:nautilus_shell": { + "protocol_id": 1363 + }, + "minecraft:nautilus_spawn_egg": { + "protocol_id": 1185 + }, + "minecraft:nether_brick": { + "protocol_id": 1275 + }, + "minecraft:nether_brick_fence": { + "protocol_id": 455 + }, + "minecraft:nether_brick_slab": { + "protocol_id": 320 + }, + "minecraft:nether_brick_stairs": { + "protocol_id": 456 + }, + "minecraft:nether_brick_wall": { + "protocol_id": 493 + }, + "minecraft:nether_bricks": { + "protocol_id": 452 + }, + "minecraft:nether_gold_ore": { + "protocol_id": 107 + }, + "minecraft:nether_quartz_ore": { + "protocol_id": 108 + }, + "minecraft:nether_sprouts": { + "protocol_id": 281 + }, + "minecraft:nether_star": { + "protocol_id": 1270 + }, + "minecraft:nether_wart": { + "protocol_id": 1148 + }, + "minecraft:nether_wart_block": { + "protocol_id": 604 + }, + "minecraft:netherite_axe": { + "protocol_id": 972 + }, + "minecraft:netherite_block": { + "protocol_id": 128 + }, + "minecraft:netherite_boots": { + "protocol_id": 1009 + }, + "minecraft:netherite_chestplate": { + "protocol_id": 1007 + }, + "minecraft:netherite_helmet": { + "protocol_id": 1006 + }, + "minecraft:netherite_hoe": { + "protocol_id": 973 + }, + "minecraft:netherite_horse_armor": { + "protocol_id": 1289 + }, + "minecraft:netherite_ingot": { + "protocol_id": 937 + }, + "minecraft:netherite_leggings": { + "protocol_id": 1008 + }, + "minecraft:netherite_nautilus_armor": { + "protocol_id": 1367 + }, + "minecraft:netherite_pickaxe": { + "protocol_id": 971 + }, + "minecraft:netherite_scrap": { + "protocol_id": 938 + }, + "minecraft:netherite_shovel": { + "protocol_id": 970 + }, + "minecraft:netherite_spear": { + "protocol_id": 1332 + }, + "minecraft:netherite_sword": { + "protocol_id": 969 + }, + "minecraft:netherite_upgrade_smithing_template": { + "protocol_id": 1458 + }, + "minecraft:netherrack": { + "protocol_id": 387 + }, + "minecraft:note_block": { + "protocol_id": 776 + }, + "minecraft:oak_boat": { + "protocol_id": 891 + }, + "minecraft:oak_button": { + "protocol_id": 779 + }, + "minecraft:oak_chest_boat": { + "protocol_id": 892 + }, + "minecraft:oak_door": { + "protocol_id": 808 + }, + "minecraft:oak_fence": { + "protocol_id": 372 + }, + "minecraft:oak_fence_gate": { + "protocol_id": 849 + }, + "minecraft:oak_hanging_sign": { + "protocol_id": 1028 + }, + "minecraft:oak_leaves": { + "protocol_id": 209 + }, + "minecraft:oak_log": { + "protocol_id": 161 + }, + "minecraft:oak_planks": { + "protocol_id": 63 + }, + "minecraft:oak_pressure_plate": { + "protocol_id": 795 + }, + "minecraft:oak_sapling": { + "protocol_id": 76 + }, + "minecraft:oak_shelf": { + "protocol_id": 341 + }, + "minecraft:oak_sign": { + "protocol_id": 1016 + }, + "minecraft:oak_slab": { + "protocol_id": 298 + }, + "minecraft:oak_stairs": { + "protocol_id": 469 + }, + "minecraft:oak_trapdoor": { + "protocol_id": 829 + }, + "minecraft:oak_wood": { + "protocol_id": 198 + }, + "minecraft:observer": { + "protocol_id": 754 + }, + "minecraft:obsidian": { + "protocol_id": 349 + }, + "minecraft:ocelot_spawn_egg": { + "protocol_id": 1176 + }, + "minecraft:ochre_froglight": { + "protocol_id": 1452 + }, + "minecraft:ominous_bottle": { + "protocol_id": 1536 + }, + "minecraft:ominous_trial_key": { + "protocol_id": 1534 + }, + "minecraft:open_eyeblossom": { + "protocol_id": 258 + }, + "minecraft:orange_banner": { + "protocol_id": 1297 + }, + "minecraft:orange_bed": { + "protocol_id": 1116 + }, + "minecraft:orange_bundle": { + "protocol_id": 1067 + }, + "minecraft:orange_candle": { + "protocol_id": 1431 + }, + "minecraft:orange_carpet": { + "protocol_id": 534 + }, + "minecraft:orange_concrete": { + "protocol_id": 643 + }, + "minecraft:orange_concrete_powder": { + "protocol_id": 659 + }, + "minecraft:orange_dye": { + "protocol_id": 1096 + }, + "minecraft:orange_glazed_terracotta": { + "protocol_id": 627 + }, + "minecraft:orange_harness": { + "protocol_id": 867 + }, + "minecraft:orange_shulker_box": { + "protocol_id": 611 + }, + "minecraft:orange_stained_glass": { + "protocol_id": 559 + }, + "minecraft:orange_stained_glass_pane": { + "protocol_id": 575 + }, + "minecraft:orange_terracotta": { + "protocol_id": 515 + }, + "minecraft:orange_tulip": { + "protocol_id": 265 + }, + "minecraft:orange_wool": { + "protocol_id": 241 + }, + "minecraft:oxeye_daisy": { + "protocol_id": 268 + }, + "minecraft:oxidized_chiseled_copper": { + "protocol_id": 132 + }, + "minecraft:oxidized_copper": { + "protocol_id": 121 + }, + "minecraft:oxidized_copper_bars": { + "protocol_id": 422 + }, + "minecraft:oxidized_copper_bulb": { + "protocol_id": 1511 + }, + "minecraft:oxidized_copper_chain": { + "protocol_id": 431 + }, + "minecraft:oxidized_copper_chest": { + "protocol_id": 1519 + }, + "minecraft:oxidized_copper_door": { + "protocol_id": 823 + }, + "minecraft:oxidized_copper_golem_statue": { + "protocol_id": 1527 + }, + "minecraft:oxidized_copper_grate": { + "protocol_id": 1503 + }, + "minecraft:oxidized_copper_lantern": { + "protocol_id": 1399 + }, + "minecraft:oxidized_copper_trapdoor": { + "protocol_id": 844 + }, + "minecraft:oxidized_cut_copper": { + "protocol_id": 140 + }, + "minecraft:oxidized_cut_copper_slab": { + "protocol_id": 156 + }, + "minecraft:oxidized_cut_copper_stairs": { + "protocol_id": 148 + }, + "minecraft:oxidized_lightning_rod": { + "protocol_id": 764 + }, + "minecraft:packed_ice": { + "protocol_id": 550 + }, + "minecraft:packed_mud": { + "protocol_id": 407 + }, + "minecraft:painting": { + "protocol_id": 1013 + }, + "minecraft:pale_hanging_moss": { + "protocol_id": 292 + }, + "minecraft:pale_moss_block": { + "protocol_id": 293 + }, + "minecraft:pale_moss_carpet": { + "protocol_id": 291 + }, + "minecraft:pale_oak_boat": { + "protocol_id": 905 + }, + "minecraft:pale_oak_button": { + "protocol_id": 786 + }, + "minecraft:pale_oak_chest_boat": { + "protocol_id": 906 + }, + "minecraft:pale_oak_door": { + "protocol_id": 815 + }, + "minecraft:pale_oak_fence": { + "protocol_id": 379 + }, + "minecraft:pale_oak_fence_gate": { + "protocol_id": 856 + }, + "minecraft:pale_oak_hanging_sign": { + "protocol_id": 1035 + }, + "minecraft:pale_oak_leaves": { + "protocol_id": 216 + }, + "minecraft:pale_oak_log": { + "protocol_id": 167 + }, + "minecraft:pale_oak_planks": { + "protocol_id": 70 + }, + "minecraft:pale_oak_pressure_plate": { + "protocol_id": 802 + }, + "minecraft:pale_oak_sapling": { + "protocol_id": 83 + }, + "minecraft:pale_oak_shelf": { + "protocol_id": 342 + }, + "minecraft:pale_oak_sign": { + "protocol_id": 1023 + }, + "minecraft:pale_oak_slab": { + "protocol_id": 305 + }, + "minecraft:pale_oak_stairs": { + "protocol_id": 476 + }, + "minecraft:pale_oak_trapdoor": { + "protocol_id": 836 + }, + "minecraft:pale_oak_wood": { + "protocol_id": 204 + }, + "minecraft:panda_spawn_egg": { + "protocol_id": 1177 + }, + "minecraft:paper": { + "protocol_id": 1057 + }, + "minecraft:parched_spawn_egg": { + "protocol_id": 1206 + }, + "minecraft:parrot_spawn_egg": { + "protocol_id": 1168 + }, + "minecraft:pearlescent_froglight": { + "protocol_id": 1454 + }, + "minecraft:peony": { + "protocol_id": 555 + }, + "minecraft:petrified_oak_slab": { + "protocol_id": 315 + }, + "minecraft:phantom_membrane": { + "protocol_id": 889 + }, + "minecraft:phantom_spawn_egg": { + "protocol_id": 1223 + }, + "minecraft:pig_spawn_egg": { + "protocol_id": 1161 + }, + "minecraft:piglin_banner_pattern": { + "protocol_id": 1378 + }, + "minecraft:piglin_brute_spawn_egg": { + "protocol_id": 1239 + }, + "minecraft:piglin_head": { + "protocol_id": 1269 + }, + "minecraft:piglin_spawn_egg": { + "protocol_id": 1238 + }, + "minecraft:pillager_spawn_egg": { + "protocol_id": 1229 + }, + "minecraft:pink_banner": { + "protocol_id": 1302 + }, + "minecraft:pink_bed": { + "protocol_id": 1121 + }, + "minecraft:pink_bundle": { + "protocol_id": 1072 + }, + "minecraft:pink_candle": { + "protocol_id": 1436 + }, + "minecraft:pink_carpet": { + "protocol_id": 539 + }, + "minecraft:pink_concrete": { + "protocol_id": 648 + }, + "minecraft:pink_concrete_powder": { + "protocol_id": 664 + }, + "minecraft:pink_dye": { + "protocol_id": 1101 + }, + "minecraft:pink_glazed_terracotta": { + "protocol_id": 632 + }, + "minecraft:pink_harness": { + "protocol_id": 872 + }, + "minecraft:pink_petals": { + "protocol_id": 286 + }, + "minecraft:pink_shulker_box": { + "protocol_id": 616 + }, + "minecraft:pink_stained_glass": { + "protocol_id": 564 + }, + "minecraft:pink_stained_glass_pane": { + "protocol_id": 580 + }, + "minecraft:pink_terracotta": { + "protocol_id": 520 + }, + "minecraft:pink_tulip": { + "protocol_id": 267 + }, + "minecraft:pink_wool": { + "protocol_id": 246 + }, + "minecraft:piston": { + "protocol_id": 750 + }, + "minecraft:pitcher_plant": { + "protocol_id": 273 + }, + "minecraft:pitcher_pod": { + "protocol_id": 1316 + }, + "minecraft:player_head": { + "protocol_id": 1265 + }, "minecraft:plenty_pottery_sherd": { - "protocol_id": 1462 + "protocol_id": 1493 }, "minecraft:podzol": { - "protocol_id": 30 + "protocol_id": 57 }, "minecraft:pointed_dripstone": { - "protocol_id": 1420 + "protocol_id": 1450 }, "minecraft:poisonous_potato": { - "protocol_id": 1231 + "protocol_id": 1260 }, "minecraft:polar_bear_spawn_egg": { - "protocol_id": 1150 + "protocol_id": 1178 }, "minecraft:polished_andesite": { "protocol_id": 7 }, "minecraft:polished_andesite_slab": { - "protocol_id": 711 + "protocol_id": 738 }, "minecraft:polished_andesite_stairs": { - "protocol_id": 694 + "protocol_id": 721 }, "minecraft:polished_basalt": { - "protocol_id": 364 + "protocol_id": 391 }, "minecraft:polished_blackstone": { - "protocol_id": 1390 + "protocol_id": 1420 }, "minecraft:polished_blackstone_brick_slab": { - "protocol_id": 1395 + "protocol_id": 1425 }, "minecraft:polished_blackstone_brick_stairs": { - "protocol_id": 1396 + "protocol_id": 1426 }, "minecraft:polished_blackstone_brick_wall": { - "protocol_id": 474 + "protocol_id": 501 }, "minecraft:polished_blackstone_bricks": { - "protocol_id": 1394 + "protocol_id": 1424 }, "minecraft:polished_blackstone_button": { - "protocol_id": 751 + "protocol_id": 778 }, "minecraft:polished_blackstone_pressure_plate": { - "protocol_id": 765 + "protocol_id": 792 }, "minecraft:polished_blackstone_slab": { - "protocol_id": 1391 + "protocol_id": 1421 }, "minecraft:polished_blackstone_stairs": { - "protocol_id": 1392 + "protocol_id": 1422 }, "minecraft:polished_blackstone_wall": { - "protocol_id": 473 + "protocol_id": 500 + }, + "minecraft:polished_cinnabar": { + "protocol_id": 44 + }, + "minecraft:polished_cinnabar_slab": { + "protocol_id": 45 + }, + "minecraft:polished_cinnabar_stairs": { + "protocol_id": 46 + }, + "minecraft:polished_cinnabar_wall": { + "protocol_id": 47 }, "minecraft:polished_deepslate": { "protocol_id": 10 }, "minecraft:polished_deepslate_slab": { - "protocol_id": 714 + "protocol_id": 741 }, "minecraft:polished_deepslate_stairs": { - "protocol_id": 697 + "protocol_id": 724 }, "minecraft:polished_deepslate_wall": { - "protocol_id": 476 + "protocol_id": 503 }, "minecraft:polished_diorite": { "protocol_id": 5 }, "minecraft:polished_diorite_slab": { - "protocol_id": 703 + "protocol_id": 730 }, "minecraft:polished_diorite_stairs": { - "protocol_id": 685 + "protocol_id": 712 }, "minecraft:polished_granite": { "protocol_id": 3 }, "minecraft:polished_granite_slab": { - "protocol_id": 700 + "protocol_id": 727 }, "minecraft:polished_granite_stairs": { - "protocol_id": 682 + "protocol_id": 709 + }, + "minecraft:polished_sulfur": { + "protocol_id": 31 + }, + "minecraft:polished_sulfur_slab": { + "protocol_id": 32 + }, + "minecraft:polished_sulfur_stairs": { + "protocol_id": 33 + }, + "minecraft:polished_sulfur_wall": { + "protocol_id": 34 }, "minecraft:polished_tuff": { "protocol_id": 17 @@ -10544,877 +10775,913 @@ "protocol_id": 20 }, "minecraft:popped_chorus_fruit": { - "protocol_id": 1285 + "protocol_id": 1314 }, "minecraft:poppy": { - "protocol_id": 233 + "protocol_id": 260 }, "minecraft:porkchop": { - "protocol_id": 984 + "protocol_id": 1011 }, "minecraft:potato": { - "protocol_id": 1229 + "protocol_id": 1258 + }, + "minecraft:potent_sulfur": { + "protocol_id": 27 }, "minecraft:potion": { - "protocol_id": 1122 + "protocol_id": 1150 }, "minecraft:powder_snow_bucket": { - "protocol_id": 1016 + "protocol_id": 1043 }, "minecraft:powered_rail": { - "protocol_id": 834 + "protocol_id": 861 }, "minecraft:prismarine": { - "protocol_id": 563 + "protocol_id": 590 }, "minecraft:prismarine_brick_slab": { - "protocol_id": 299 + "protocol_id": 326 }, "minecraft:prismarine_brick_stairs": { - "protocol_id": 567 + "protocol_id": 594 }, "minecraft:prismarine_bricks": { - "protocol_id": 564 + "protocol_id": 591 }, "minecraft:prismarine_crystals": { - "protocol_id": 1249 + "protocol_id": 1278 }, "minecraft:prismarine_shard": { - "protocol_id": 1248 - }, - "minecraft:prismarine_slab": { - "protocol_id": 298 - }, - "minecraft:prismarine_stairs": { - "protocol_id": 566 - }, - "minecraft:prismarine_wall": { - "protocol_id": 460 - }, - "minecraft:prize_pottery_sherd": { - "protocol_id": 1463 - }, - "minecraft:pufferfish": { - "protocol_id": 1061 - }, - "minecraft:pufferfish_bucket": { - "protocol_id": 1020 - }, - "minecraft:pufferfish_spawn_egg": { - "protocol_id": 1158 - }, - "minecraft:pumpkin": { - "protocol_id": 357 - }, - "minecraft:pumpkin_pie": { - "protocol_id": 1242 - }, - "minecraft:pumpkin_seeds": { - "protocol_id": 1109 - }, - "minecraft:purple_banner": { "protocol_id": 1277 }, - "minecraft:purple_bed": { - "protocol_id": 1097 + "minecraft:prismarine_slab": { + "protocol_id": 325 }, - "minecraft:purple_bundle": { - "protocol_id": 1048 - }, - "minecraft:purple_candle": { - "protocol_id": 1410 - }, - "minecraft:purple_carpet": { - "protocol_id": 516 - }, - "minecraft:purple_concrete": { - "protocol_id": 625 - }, - "minecraft:purple_concrete_powder": { - "protocol_id": 641 - }, - "minecraft:purple_dye": { - "protocol_id": 1077 - }, - "minecraft:purple_glazed_terracotta": { - "protocol_id": 609 - }, - "minecraft:purple_harness": { - "protocol_id": 849 - }, - "minecraft:purple_shulker_box": { + "minecraft:prismarine_stairs": { "protocol_id": 593 }, - "minecraft:purple_stained_glass": { - "protocol_id": 541 + "minecraft:prismarine_wall": { + "protocol_id": 487 }, - "minecraft:purple_stained_glass_pane": { - "protocol_id": 557 + "minecraft:prize_pottery_sherd": { + "protocol_id": 1494 }, - "minecraft:purple_terracotta": { - "protocol_id": 497 + "minecraft:pufferfish": { + "protocol_id": 1089 }, - "minecraft:purple_wool": { - "protocol_id": 223 + "minecraft:pufferfish_bucket": { + "protocol_id": 1047 }, - "minecraft:purpur_block": { - "protocol_id": 327 + "minecraft:pufferfish_spawn_egg": { + "protocol_id": 1186 }, - "minecraft:purpur_pillar": { - "protocol_id": 328 + "minecraft:pumpkin": { + "protocol_id": 384 }, - "minecraft:purpur_slab": { - "protocol_id": 297 + "minecraft:pumpkin_pie": { + "protocol_id": 1271 }, - "minecraft:purpur_stairs": { - "protocol_id": 329 + "minecraft:pumpkin_seeds": { + "protocol_id": 1137 }, - "minecraft:quartz": { - "protocol_id": 902 + "minecraft:purple_banner": { + "protocol_id": 1306 }, - "minecraft:quartz_block": { - "protocol_id": 483 + "minecraft:purple_bed": { + "protocol_id": 1125 }, - "minecraft:quartz_bricks": { - "protocol_id": 484 + "minecraft:purple_bundle": { + "protocol_id": 1076 }, - "minecraft:quartz_pillar": { - "protocol_id": 485 - }, - "minecraft:quartz_slab": { - "protocol_id": 294 - }, - "minecraft:quartz_stairs": { - "protocol_id": 486 - }, - "minecraft:rabbit": { - "protocol_id": 1250 - }, - "minecraft:rabbit_foot": { - "protocol_id": 1253 - }, - "minecraft:rabbit_hide": { - "protocol_id": 1254 - }, - "minecraft:rabbit_spawn_egg": { - "protocol_id": 1151 - }, - "minecraft:rabbit_stew": { - "protocol_id": 1252 - }, - "minecraft:rail": { - "protocol_id": 836 - }, - "minecraft:raiser_armor_trim_smithing_template": { - "protocol_id": 1442 - }, - "minecraft:ravager_spawn_egg": { - "protocol_id": 1201 - }, - "minecraft:raw_copper": { - "protocol_id": 906 - }, - "minecraft:raw_copper_block": { - "protocol_id": 85 - }, - "minecraft:raw_gold": { - "protocol_id": 908 - }, - "minecraft:raw_gold_block": { - "protocol_id": 86 - }, - "minecraft:raw_iron": { - "protocol_id": 904 - }, - "minecraft:raw_iron_block": { - "protocol_id": 84 - }, - "minecraft:recovery_compass": { - "protocol_id": 1036 - }, - "minecraft:red_banner": { - "protocol_id": 1281 - }, - "minecraft:red_bed": { - "protocol_id": 1101 - }, - "minecraft:red_bundle": { - "protocol_id": 1052 - }, - "minecraft:red_candle": { - "protocol_id": 1414 - }, - "minecraft:red_carpet": { - "protocol_id": 520 - }, - "minecraft:red_concrete": { - "protocol_id": 629 - }, - "minecraft:red_concrete_powder": { - "protocol_id": 645 - }, - "minecraft:red_dye": { - "protocol_id": 1081 - }, - "minecraft:red_glazed_terracotta": { - "protocol_id": 613 - }, - "minecraft:red_harness": { - "protocol_id": 853 - }, - "minecraft:red_mushroom": { - "protocol_id": 249 - }, - "minecraft:red_mushroom_block": { - "protocol_id": 389 - }, - "minecraft:red_nether_brick_slab": { - "protocol_id": 710 - }, - "minecraft:red_nether_brick_stairs": { - "protocol_id": 693 - }, - "minecraft:red_nether_brick_wall": { - "protocol_id": 468 - }, - "minecraft:red_nether_bricks": { - "protocol_id": 579 - }, - "minecraft:red_sand": { - "protocol_id": 62 - }, - "minecraft:red_sandstone": { - "protocol_id": 570 - }, - "minecraft:red_sandstone_slab": { - "protocol_id": 295 - }, - "minecraft:red_sandstone_stairs": { - "protocol_id": 573 - }, - "minecraft:red_sandstone_wall": { - "protocol_id": 461 - }, - "minecraft:red_shulker_box": { - "protocol_id": 597 - }, - "minecraft:red_stained_glass": { - "protocol_id": 545 - }, - "minecraft:red_stained_glass_pane": { - "protocol_id": 561 - }, - "minecraft:red_terracotta": { - "protocol_id": 501 - }, - "minecraft:red_tulip": { - "protocol_id": 237 - }, - "minecraft:red_wool": { - "protocol_id": 227 - }, - "minecraft:redstone": { - "protocol_id": 718 - }, - "minecraft:redstone_block": { - "protocol_id": 720 - }, - "minecraft:redstone_lamp": { - "protocol_id": 748 - }, - "minecraft:redstone_ore": { - "protocol_id": 72 - }, - "minecraft:redstone_torch": { - "protocol_id": 719 - }, - "minecraft:reinforced_deepslate": { - "protocol_id": 387 - }, - "minecraft:repeater": { - "protocol_id": 721 - }, - "minecraft:repeating_command_block": { - "protocol_id": 574 - }, - "minecraft:resin_block": { - "protocol_id": 414 - }, - "minecraft:resin_brick": { - "protocol_id": 1247 - }, - "minecraft:resin_brick_slab": { - "protocol_id": 417 - }, - "minecraft:resin_brick_stairs": { - "protocol_id": 416 - }, - "minecraft:resin_brick_wall": { - "protocol_id": 418 - }, - "minecraft:resin_bricks": { - "protocol_id": 415 - }, - "minecraft:resin_clump": { - "protocol_id": 413 - }, - "minecraft:respawn_anchor": { - "protocol_id": 1398 - }, - "minecraft:rib_armor_trim_smithing_template": { - "protocol_id": 1437 - }, - "minecraft:rooted_dirt": { - "protocol_id": 31 - }, - "minecraft:rose_bush": { - "protocol_id": 527 - }, - "minecraft:rotten_flesh": { - "protocol_id": 1115 - }, - "minecraft:saddle": { - "protocol_id": 838 - }, - "minecraft:salmon": { - "protocol_id": 1059 - }, - "minecraft:salmon_bucket": { - "protocol_id": 1021 - }, - "minecraft:salmon_spawn_egg": { - "protocol_id": 1159 - }, - "minecraft:sand": { - "protocol_id": 59 - }, - "minecraft:sandstone": { - "protocol_id": 198 - }, - "minecraft:sandstone_slab": { - "protocol_id": 286 - }, - "minecraft:sandstone_stairs": { - "protocol_id": 439 - }, - "minecraft:sandstone_wall": { - "protocol_id": 469 - }, - "minecraft:scaffolding": { - "protocol_id": 717 - }, - "minecraft:scrape_pottery_sherd": { - "protocol_id": 1464 - }, - "minecraft:sculk": { - "protocol_id": 430 - }, - "minecraft:sculk_catalyst": { - "protocol_id": 432 - }, - "minecraft:sculk_sensor": { - "protocol_id": 743 - }, - "minecraft:sculk_shrieker": { - "protocol_id": 433 - }, - "minecraft:sculk_vein": { - "protocol_id": 431 - }, - "minecraft:sea_lantern": { - "protocol_id": 569 - }, - "minecraft:sea_pickle": { - "protocol_id": 212 - }, - "minecraft:seagrass": { - "protocol_id": 211 - }, - "minecraft:sentry_armor_trim_smithing_template": { - "protocol_id": 1428 - }, - "minecraft:shaper_armor_trim_smithing_template": { + "minecraft:purple_candle": { "protocol_id": 1440 }, - "minecraft:sheaf_pottery_sherd": { - "protocol_id": 1465 + "minecraft:purple_carpet": { + "protocol_id": 543 }, - "minecraft:shears": { - "protocol_id": 1106 + "minecraft:purple_concrete": { + "protocol_id": 652 }, - "minecraft:sheep_spawn_egg": { - "protocol_id": 1134 + "minecraft:purple_concrete_powder": { + "protocol_id": 668 }, - "minecraft:shelter_pottery_sherd": { - "protocol_id": 1466 + "minecraft:purple_dye": { + "protocol_id": 1105 }, - "minecraft:shield": { - "protocol_id": 1296 + "minecraft:purple_glazed_terracotta": { + "protocol_id": 636 }, - "minecraft:short_dry_grass": { - "protocol_id": 209 + "minecraft:purple_harness": { + "protocol_id": 876 }, - "minecraft:short_grass": { - "protocol_id": 202 + "minecraft:purple_shulker_box": { + "protocol_id": 620 }, - "minecraft:shroomlight": { - "protocol_id": 1378 + "minecraft:purple_stained_glass": { + "protocol_id": 568 }, - "minecraft:shulker_box": { - "protocol_id": 582 + "minecraft:purple_stained_glass_pane": { + "protocol_id": 584 }, - "minecraft:shulker_shell": { - "protocol_id": 1305 + "minecraft:purple_terracotta": { + "protocol_id": 524 }, - "minecraft:shulker_spawn_egg": { - "protocol_id": 1217 + "minecraft:purple_wool": { + "protocol_id": 250 }, - "minecraft:silence_armor_trim_smithing_template": { - "protocol_id": 1441 + "minecraft:purpur_block": { + "protocol_id": 354 }, - "minecraft:silverfish_spawn_egg": { - "protocol_id": 1195 + "minecraft:purpur_pillar": { + "protocol_id": 355 }, - "minecraft:skeleton_horse_spawn_egg": { + "minecraft:purpur_slab": { + "protocol_id": 324 + }, + "minecraft:purpur_stairs": { + "protocol_id": 356 + }, + "minecraft:quartz": { + "protocol_id": 929 + }, + "minecraft:quartz_block": { + "protocol_id": 510 + }, + "minecraft:quartz_bricks": { + "protocol_id": 511 + }, + "minecraft:quartz_pillar": { + "protocol_id": 512 + }, + "minecraft:quartz_slab": { + "protocol_id": 321 + }, + "minecraft:quartz_stairs": { + "protocol_id": 513 + }, + "minecraft:rabbit": { + "protocol_id": 1279 + }, + "minecraft:rabbit_foot": { + "protocol_id": 1282 + }, + "minecraft:rabbit_hide": { + "protocol_id": 1283 + }, + "minecraft:rabbit_spawn_egg": { "protocol_id": 1179 }, - "minecraft:skeleton_skull": { - "protocol_id": 1234 + "minecraft:rabbit_stew": { + "protocol_id": 1281 }, - "minecraft:skeleton_spawn_egg": { - "protocol_id": 1178 + "minecraft:rail": { + "protocol_id": 863 }, - "minecraft:skull_banner_pattern": { - "protocol_id": 1345 + "minecraft:raiser_armor_trim_smithing_template": { + "protocol_id": 1473 }, - "minecraft:skull_pottery_sherd": { - "protocol_id": 1467 + "minecraft:ravager_spawn_egg": { + "protocol_id": 1230 }, - "minecraft:slime_ball": { - "protocol_id": 1031 + "minecraft:raw_copper": { + "protocol_id": 933 }, - "minecraft:slime_block": { - "protocol_id": 725 + "minecraft:raw_copper_block": { + "protocol_id": 112 }, - "minecraft:slime_spawn_egg": { - "protocol_id": 1196 + "minecraft:raw_gold": { + "protocol_id": 935 }, - "minecraft:small_amethyst_bud": { - "protocol_id": 1416 + "minecraft:raw_gold_block": { + "protocol_id": 113 }, - "minecraft:small_dripleaf": { - "protocol_id": 269 + "minecraft:raw_iron": { + "protocol_id": 931 }, - "minecraft:smithing_table": { - "protocol_id": 1361 + "minecraft:raw_iron_block": { + "protocol_id": 111 }, - "minecraft:smoker": { - "protocol_id": 1356 + "minecraft:recovery_compass": { + "protocol_id": 1064 }, - "minecraft:smooth_basalt": { - "protocol_id": 365 + "minecraft:red_banner": { + "protocol_id": 1310 }, - "minecraft:smooth_quartz": { - "protocol_id": 301 + "minecraft:red_bed": { + "protocol_id": 1129 }, - "minecraft:smooth_quartz_slab": { - "protocol_id": 707 + "minecraft:red_bundle": { + "protocol_id": 1080 }, - "minecraft:smooth_quartz_stairs": { - "protocol_id": 690 + "minecraft:red_candle": { + "protocol_id": 1444 }, - "minecraft:smooth_red_sandstone": { - "protocol_id": 302 + "minecraft:red_carpet": { + "protocol_id": 547 }, - "minecraft:smooth_red_sandstone_slab": { - "protocol_id": 701 + "minecraft:red_concrete": { + "protocol_id": 656 }, - "minecraft:smooth_red_sandstone_stairs": { - "protocol_id": 683 + "minecraft:red_concrete_powder": { + "protocol_id": 672 }, - "minecraft:smooth_sandstone": { - "protocol_id": 303 + "minecraft:red_dye": { + "protocol_id": 1109 }, - "minecraft:smooth_sandstone_slab": { - "protocol_id": 706 + "minecraft:red_glazed_terracotta": { + "protocol_id": 640 }, - "minecraft:smooth_sandstone_stairs": { - "protocol_id": 689 + "minecraft:red_harness": { + "protocol_id": 880 }, - "minecraft:smooth_stone": { - "protocol_id": 304 + "minecraft:red_mushroom": { + "protocol_id": 276 }, - "minecraft:smooth_stone_slab": { - "protocol_id": 285 + "minecraft:red_mushroom_block": { + "protocol_id": 416 }, - "minecraft:sniffer_egg": { - "protocol_id": 648 + "minecraft:red_nether_brick_slab": { + "protocol_id": 737 }, - "minecraft:sniffer_spawn_egg": { - "protocol_id": 1166 + "minecraft:red_nether_brick_stairs": { + "protocol_id": 720 }, - "minecraft:snort_pottery_sherd": { - "protocol_id": 1468 + "minecraft:red_nether_brick_wall": { + "protocol_id": 495 }, - "minecraft:snout_armor_trim_smithing_template": { - "protocol_id": 1436 + "minecraft:red_nether_bricks": { + "protocol_id": 606 }, - "minecraft:snow": { - "protocol_id": 338 + "minecraft:red_sand": { + "protocol_id": 89 }, - "minecraft:snow_block": { - "protocol_id": 340 + "minecraft:red_sandstone": { + "protocol_id": 597 }, - "minecraft:snow_golem_spawn_egg": { - "protocol_id": 1169 + "minecraft:red_sandstone_slab": { + "protocol_id": 322 }, - "minecraft:snowball": { - "protocol_id": 1017 + "minecraft:red_sandstone_stairs": { + "protocol_id": 600 }, - "minecraft:soul_campfire": { - "protocol_id": 1377 + "minecraft:red_sandstone_wall": { + "protocol_id": 488 }, - "minecraft:soul_lantern": { - "protocol_id": 1365 + "minecraft:red_shulker_box": { + "protocol_id": 624 }, - "minecraft:soul_sand": { - "protocol_id": 361 + "minecraft:red_stained_glass": { + "protocol_id": 572 }, - "minecraft:soul_soil": { - "protocol_id": 362 + "minecraft:red_stained_glass_pane": { + "protocol_id": 588 }, - "minecraft:soul_torch": { - "protocol_id": 366 + "minecraft:red_terracotta": { + "protocol_id": 528 }, - "minecraft:spawner": { - "protocol_id": 330 + "minecraft:red_tulip": { + "protocol_id": 264 }, - "minecraft:spectral_arrow": { - "protocol_id": 1293 + "minecraft:red_wool": { + "protocol_id": 254 }, - "minecraft:spider_eye": { - "protocol_id": 1123 + "minecraft:redstone": { + "protocol_id": 745 }, - "minecraft:spider_spawn_egg": { - "protocol_id": 1188 + "minecraft:redstone_block": { + "protocol_id": 747 }, - "minecraft:spire_armor_trim_smithing_template": { - "protocol_id": 1438 + "minecraft:redstone_lamp": { + "protocol_id": 775 }, - "minecraft:splash_potion": { - "protocol_id": 1292 + "minecraft:redstone_ore": { + "protocol_id": 99 }, - "minecraft:sponge": { - "protocol_id": 193 + "minecraft:redstone_torch": { + "protocol_id": 746 }, - "minecraft:spore_blossom": { - "protocol_id": 247 + "minecraft:reinforced_deepslate": { + "protocol_id": 414 }, - "minecraft:spruce_boat": { - "protocol_id": 866 + "minecraft:repeater": { + "protocol_id": 748 }, - "minecraft:spruce_button": { - "protocol_id": 753 + "minecraft:repeating_command_block": { + "protocol_id": 601 }, - "minecraft:spruce_chest_boat": { - "protocol_id": 867 + "minecraft:resin_block": { + "protocol_id": 441 }, - "minecraft:spruce_door": { - "protocol_id": 782 + "minecraft:resin_brick": { + "protocol_id": 1276 }, - "minecraft:spruce_fence": { - "protocol_id": 346 + "minecraft:resin_brick_slab": { + "protocol_id": 444 }, - "minecraft:spruce_fence_gate": { - "protocol_id": 823 - }, - "minecraft:spruce_hanging_sign": { - "protocol_id": 1002 - }, - "minecraft:spruce_leaves": { - "protocol_id": 183 - }, - "minecraft:spruce_log": { - "protocol_id": 135 - }, - "minecraft:spruce_planks": { - "protocol_id": 37 - }, - "minecraft:spruce_pressure_plate": { - "protocol_id": 769 - }, - "minecraft:spruce_sapling": { - "protocol_id": 50 - }, - "minecraft:spruce_shelf": { - "protocol_id": 316 - }, - "minecraft:spruce_sign": { - "protocol_id": 990 - }, - "minecraft:spruce_slab": { - "protocol_id": 272 - }, - "minecraft:spruce_stairs": { + "minecraft:resin_brick_stairs": { "protocol_id": 443 }, + "minecraft:resin_brick_wall": { + "protocol_id": 445 + }, + "minecraft:resin_bricks": { + "protocol_id": 442 + }, + "minecraft:resin_clump": { + "protocol_id": 440 + }, + "minecraft:respawn_anchor": { + "protocol_id": 1428 + }, + "minecraft:rib_armor_trim_smithing_template": { + "protocol_id": 1468 + }, + "minecraft:rooted_dirt": { + "protocol_id": 58 + }, + "minecraft:rose_bush": { + "protocol_id": 554 + }, + "minecraft:rotten_flesh": { + "protocol_id": 1143 + }, + "minecraft:saddle": { + "protocol_id": 865 + }, + "minecraft:salmon": { + "protocol_id": 1087 + }, + "minecraft:salmon_bucket": { + "protocol_id": 1048 + }, + "minecraft:salmon_spawn_egg": { + "protocol_id": 1187 + }, + "minecraft:sand": { + "protocol_id": 86 + }, + "minecraft:sandstone": { + "protocol_id": 225 + }, + "minecraft:sandstone_slab": { + "protocol_id": 313 + }, + "minecraft:sandstone_stairs": { + "protocol_id": 466 + }, + "minecraft:sandstone_wall": { + "protocol_id": 496 + }, + "minecraft:scaffolding": { + "protocol_id": 744 + }, + "minecraft:scrape_pottery_sherd": { + "protocol_id": 1495 + }, + "minecraft:sculk": { + "protocol_id": 457 + }, + "minecraft:sculk_catalyst": { + "protocol_id": 459 + }, + "minecraft:sculk_sensor": { + "protocol_id": 770 + }, + "minecraft:sculk_shrieker": { + "protocol_id": 460 + }, + "minecraft:sculk_vein": { + "protocol_id": 458 + }, + "minecraft:sea_lantern": { + "protocol_id": 596 + }, + "minecraft:sea_pickle": { + "protocol_id": 239 + }, + "minecraft:seagrass": { + "protocol_id": 238 + }, + "minecraft:sentry_armor_trim_smithing_template": { + "protocol_id": 1459 + }, + "minecraft:shaper_armor_trim_smithing_template": { + "protocol_id": 1471 + }, + "minecraft:sheaf_pottery_sherd": { + "protocol_id": 1496 + }, + "minecraft:shears": { + "protocol_id": 1134 + }, + "minecraft:sheep_spawn_egg": { + "protocol_id": 1162 + }, + "minecraft:shelter_pottery_sherd": { + "protocol_id": 1497 + }, + "minecraft:shield": { + "protocol_id": 1325 + }, + "minecraft:short_dry_grass": { + "protocol_id": 236 + }, + "minecraft:short_grass": { + "protocol_id": 229 + }, + "minecraft:shroomlight": { + "protocol_id": 1408 + }, + "minecraft:shulker_box": { + "protocol_id": 609 + }, + "minecraft:shulker_shell": { + "protocol_id": 1334 + }, + "minecraft:shulker_spawn_egg": { + "protocol_id": 1246 + }, + "minecraft:silence_armor_trim_smithing_template": { + "protocol_id": 1472 + }, + "minecraft:silverfish_spawn_egg": { + "protocol_id": 1224 + }, + "minecraft:skeleton_horse_spawn_egg": { + "protocol_id": 1208 + }, + "minecraft:skeleton_skull": { + "protocol_id": 1263 + }, + "minecraft:skeleton_spawn_egg": { + "protocol_id": 1207 + }, + "minecraft:skull_banner_pattern": { + "protocol_id": 1375 + }, + "minecraft:skull_pottery_sherd": { + "protocol_id": 1498 + }, + "minecraft:slime_ball": { + "protocol_id": 1059 + }, + "minecraft:slime_block": { + "protocol_id": 752 + }, + "minecraft:slime_spawn_egg": { + "protocol_id": 1225 + }, + "minecraft:small_amethyst_bud": { + "protocol_id": 1446 + }, + "minecraft:small_dripleaf": { + "protocol_id": 296 + }, + "minecraft:smithing_table": { + "protocol_id": 1391 + }, + "minecraft:smoker": { + "protocol_id": 1386 + }, + "minecraft:smooth_basalt": { + "protocol_id": 392 + }, + "minecraft:smooth_quartz": { + "protocol_id": 328 + }, + "minecraft:smooth_quartz_slab": { + "protocol_id": 734 + }, + "minecraft:smooth_quartz_stairs": { + "protocol_id": 717 + }, + "minecraft:smooth_red_sandstone": { + "protocol_id": 329 + }, + "minecraft:smooth_red_sandstone_slab": { + "protocol_id": 728 + }, + "minecraft:smooth_red_sandstone_stairs": { + "protocol_id": 710 + }, + "minecraft:smooth_sandstone": { + "protocol_id": 330 + }, + "minecraft:smooth_sandstone_slab": { + "protocol_id": 733 + }, + "minecraft:smooth_sandstone_stairs": { + "protocol_id": 716 + }, + "minecraft:smooth_stone": { + "protocol_id": 331 + }, + "minecraft:smooth_stone_slab": { + "protocol_id": 312 + }, + "minecraft:sniffer_egg": { + "protocol_id": 675 + }, + "minecraft:sniffer_spawn_egg": { + "protocol_id": 1194 + }, + "minecraft:snort_pottery_sherd": { + "protocol_id": 1499 + }, + "minecraft:snout_armor_trim_smithing_template": { + "protocol_id": 1467 + }, + "minecraft:snow": { + "protocol_id": 365 + }, + "minecraft:snow_block": { + "protocol_id": 367 + }, + "minecraft:snow_golem_spawn_egg": { + "protocol_id": 1198 + }, + "minecraft:snowball": { + "protocol_id": 1044 + }, + "minecraft:soul_campfire": { + "protocol_id": 1407 + }, + "minecraft:soul_lantern": { + "protocol_id": 1395 + }, + "minecraft:soul_sand": { + "protocol_id": 388 + }, + "minecraft:soul_soil": { + "protocol_id": 389 + }, + "minecraft:soul_torch": { + "protocol_id": 393 + }, + "minecraft:spawner": { + "protocol_id": 357 + }, + "minecraft:spectral_arrow": { + "protocol_id": 1322 + }, + "minecraft:spider_eye": { + "protocol_id": 1151 + }, + "minecraft:spider_spawn_egg": { + "protocol_id": 1217 + }, + "minecraft:spire_armor_trim_smithing_template": { + "protocol_id": 1469 + }, + "minecraft:splash_potion": { + "protocol_id": 1321 + }, + "minecraft:sponge": { + "protocol_id": 220 + }, + "minecraft:spore_blossom": { + "protocol_id": 274 + }, + "minecraft:spruce_boat": { + "protocol_id": 893 + }, + "minecraft:spruce_button": { + "protocol_id": 780 + }, + "minecraft:spruce_chest_boat": { + "protocol_id": 894 + }, + "minecraft:spruce_door": { + "protocol_id": 809 + }, + "minecraft:spruce_fence": { + "protocol_id": 373 + }, + "minecraft:spruce_fence_gate": { + "protocol_id": 850 + }, + "minecraft:spruce_hanging_sign": { + "protocol_id": 1029 + }, + "minecraft:spruce_leaves": { + "protocol_id": 210 + }, + "minecraft:spruce_log": { + "protocol_id": 162 + }, + "minecraft:spruce_planks": { + "protocol_id": 64 + }, + "minecraft:spruce_pressure_plate": { + "protocol_id": 796 + }, + "minecraft:spruce_sapling": { + "protocol_id": 77 + }, + "minecraft:spruce_shelf": { + "protocol_id": 343 + }, + "minecraft:spruce_sign": { + "protocol_id": 1017 + }, + "minecraft:spruce_slab": { + "protocol_id": 299 + }, + "minecraft:spruce_stairs": { + "protocol_id": 470 + }, "minecraft:spruce_trapdoor": { - "protocol_id": 803 + "protocol_id": 830 }, "minecraft:spruce_wood": { - "protocol_id": 172 + "protocol_id": 199 }, "minecraft:spyglass": { - "protocol_id": 1056 + "protocol_id": 1084 }, "minecraft:squid_spawn_egg": { - "protocol_id": 1160 + "protocol_id": 1188 }, "minecraft:stick": { - "protocol_id": 947 + "protocol_id": 974 }, "minecraft:sticky_piston": { - "protocol_id": 724 + "protocol_id": 751 }, "minecraft:stone": { "protocol_id": 1 }, "minecraft:stone_axe": { - "protocol_id": 925 + "protocol_id": 952 }, "minecraft:stone_brick_slab": { - "protocol_id": 291 + "protocol_id": 318 }, "minecraft:stone_brick_stairs": { - "protocol_id": 421 + "protocol_id": 448 }, "minecraft:stone_brick_wall": { - "protocol_id": 464 + "protocol_id": 491 }, "minecraft:stone_bricks": { - "protocol_id": 376 + "protocol_id": 403 }, "minecraft:stone_button": { - "protocol_id": 750 + "protocol_id": 777 }, "minecraft:stone_hoe": { - "protocol_id": 926 + "protocol_id": 953 }, "minecraft:stone_pickaxe": { - "protocol_id": 924 + "protocol_id": 951 }, "minecraft:stone_pressure_plate": { - "protocol_id": 764 + "protocol_id": 791 }, "minecraft:stone_shovel": { - "protocol_id": 923 + "protocol_id": 950 }, "minecraft:stone_slab": { - "protocol_id": 284 + "protocol_id": 311 }, "minecraft:stone_spear": { - "protocol_id": 1298 + "protocol_id": 1327 }, "minecraft:stone_stairs": { - "protocol_id": 688 + "protocol_id": 715 }, "minecraft:stone_sword": { - "protocol_id": 922 - }, - "minecraft:stonecutter": { - "protocol_id": 1362 - }, - "minecraft:stray_spawn_egg": { - "protocol_id": 1180 - }, - "minecraft:strider_spawn_egg": { - "protocol_id": 1211 - }, - "minecraft:string": { "protocol_id": 949 }, + "minecraft:stonecutter": { + "protocol_id": 1392 + }, + "minecraft:stray_spawn_egg": { + "protocol_id": 1209 + }, + "minecraft:strider_spawn_egg": { + "protocol_id": 1240 + }, + "minecraft:string": { + "protocol_id": 976 + }, "minecraft:stripped_acacia_log": { - "protocol_id": 152 + "protocol_id": 179 }, "minecraft:stripped_acacia_wood": { - "protocol_id": 163 + "protocol_id": 190 }, "minecraft:stripped_bamboo_block": { - "protocol_id": 170 + "protocol_id": 197 }, "minecraft:stripped_birch_log": { - "protocol_id": 150 + "protocol_id": 177 }, "minecraft:stripped_birch_wood": { - "protocol_id": 161 + "protocol_id": 188 }, "minecraft:stripped_cherry_log": { - "protocol_id": 153 + "protocol_id": 180 }, "minecraft:stripped_cherry_wood": { - "protocol_id": 164 + "protocol_id": 191 }, "minecraft:stripped_crimson_hyphae": { - "protocol_id": 168 + "protocol_id": 195 }, "minecraft:stripped_crimson_stem": { - "protocol_id": 157 + "protocol_id": 184 }, "minecraft:stripped_dark_oak_log": { - "protocol_id": 154 + "protocol_id": 181 }, "minecraft:stripped_dark_oak_wood": { - "protocol_id": 165 + "protocol_id": 192 }, "minecraft:stripped_jungle_log": { - "protocol_id": 151 + "protocol_id": 178 }, "minecraft:stripped_jungle_wood": { - "protocol_id": 162 + "protocol_id": 189 }, "minecraft:stripped_mangrove_log": { - "protocol_id": 156 + "protocol_id": 183 }, "minecraft:stripped_mangrove_wood": { - "protocol_id": 167 + "protocol_id": 194 }, "minecraft:stripped_oak_log": { - "protocol_id": 148 + "protocol_id": 175 }, "minecraft:stripped_oak_wood": { - "protocol_id": 159 + "protocol_id": 186 }, "minecraft:stripped_pale_oak_log": { - "protocol_id": 155 + "protocol_id": 182 }, "minecraft:stripped_pale_oak_wood": { - "protocol_id": 166 + "protocol_id": 193 }, "minecraft:stripped_spruce_log": { - "protocol_id": 149 + "protocol_id": 176 }, "minecraft:stripped_spruce_wood": { - "protocol_id": 160 + "protocol_id": 187 }, "minecraft:stripped_warped_hyphae": { - "protocol_id": 169 - }, - "minecraft:stripped_warped_stem": { - "protocol_id": 158 - }, - "minecraft:structure_block": { - "protocol_id": 884 - }, - "minecraft:structure_void": { - "protocol_id": 581 - }, - "minecraft:sugar": { - "protocol_id": 1085 - }, - "minecraft:sugar_cane": { - "protocol_id": 257 - }, - "minecraft:sunflower": { - "protocol_id": 525 - }, - "minecraft:suspicious_gravel": { - "protocol_id": 61 - }, - "minecraft:suspicious_sand": { - "protocol_id": 60 - }, - "minecraft:suspicious_stew": { - "protocol_id": 1341 - }, - "minecraft:sweet_berries": { - "protocol_id": 1374 - }, - "minecraft:tadpole_bucket": { - "protocol_id": 1025 - }, - "minecraft:tadpole_spawn_egg": { - "protocol_id": 1161 - }, - "minecraft:tall_dry_grass": { - "protocol_id": 210 - }, - "minecraft:tall_grass": { - "protocol_id": 529 - }, - "minecraft:target": { - "protocol_id": 732 - }, - "minecraft:terracotta": { - "protocol_id": 522 - }, - "minecraft:test_block": { - "protocol_id": 886 - }, - "minecraft:test_instance_block": { - "protocol_id": 887 - }, - "minecraft:tide_armor_trim_smithing_template": { - "protocol_id": 1435 - }, - "minecraft:tinted_glass": { "protocol_id": 196 }, + "minecraft:stripped_warped_stem": { + "protocol_id": 185 + }, + "minecraft:structure_block": { + "protocol_id": 911 + }, + "minecraft:structure_void": { + "protocol_id": 608 + }, + "minecraft:sugar": { + "protocol_id": 1113 + }, + "minecraft:sugar_cane": { + "protocol_id": 284 + }, + "minecraft:sulfur": { + "protocol_id": 26 + }, + "minecraft:sulfur_brick_slab": { + "protocol_id": 36 + }, + "minecraft:sulfur_brick_stairs": { + "protocol_id": 37 + }, + "minecraft:sulfur_brick_wall": { + "protocol_id": 38 + }, + "minecraft:sulfur_bricks": { + "protocol_id": 35 + }, + "minecraft:sulfur_cube_bucket": { + "protocol_id": 1052 + }, + "minecraft:sulfur_cube_spawn_egg": { + "protocol_id": 1195 + }, + "minecraft:sulfur_slab": { + "protocol_id": 28 + }, + "minecraft:sulfur_spike": { + "protocol_id": 1451 + }, + "minecraft:sulfur_stairs": { + "protocol_id": 29 + }, + "minecraft:sulfur_wall": { + "protocol_id": 30 + }, + "minecraft:sunflower": { + "protocol_id": 552 + }, + "minecraft:suspicious_gravel": { + "protocol_id": 88 + }, + "minecraft:suspicious_sand": { + "protocol_id": 87 + }, + "minecraft:suspicious_stew": { + "protocol_id": 1371 + }, + "minecraft:sweet_berries": { + "protocol_id": 1404 + }, + "minecraft:tadpole_bucket": { + "protocol_id": 1053 + }, + "minecraft:tadpole_spawn_egg": { + "protocol_id": 1189 + }, + "minecraft:tall_dry_grass": { + "protocol_id": 237 + }, + "minecraft:tall_grass": { + "protocol_id": 556 + }, + "minecraft:target": { + "protocol_id": 759 + }, + "minecraft:terracotta": { + "protocol_id": 549 + }, + "minecraft:test_block": { + "protocol_id": 913 + }, + "minecraft:test_instance_block": { + "protocol_id": 914 + }, + "minecraft:tide_armor_trim_smithing_template": { + "protocol_id": 1466 + }, + "minecraft:tinted_glass": { + "protocol_id": 223 + }, "minecraft:tipped_arrow": { - "protocol_id": 1294 + "protocol_id": 1323 }, "minecraft:tnt": { - "protocol_id": 747 + "protocol_id": 774 }, "minecraft:tnt_minecart": { - "protocol_id": 858 + "protocol_id": 885 }, "minecraft:torch": { - "protocol_id": 323 + "protocol_id": 350 }, "minecraft:torchflower": { - "protocol_id": 245 + "protocol_id": 272 }, "minecraft:torchflower_seeds": { - "protocol_id": 1286 + "protocol_id": 1315 }, "minecraft:totem_of_undying": { - "protocol_id": 1304 + "protocol_id": 1333 }, "minecraft:trader_llama_spawn_egg": { - "protocol_id": 1170 + "protocol_id": 1199 }, "minecraft:trapped_chest": { - "protocol_id": 746 + "protocol_id": 773 }, "minecraft:trial_key": { - "protocol_id": 1502 + "protocol_id": 1533 }, "minecraft:trial_spawner": { - "protocol_id": 1501 + "protocol_id": 1532 }, "minecraft:trident": { - "protocol_id": 1332 + "protocol_id": 1362 }, "minecraft:tripwire_hook": { - "protocol_id": 745 + "protocol_id": 772 }, "minecraft:tropical_fish": { - "protocol_id": 1060 + "protocol_id": 1088 }, "minecraft:tropical_fish_bucket": { - "protocol_id": 1023 + "protocol_id": 1050 }, "minecraft:tropical_fish_spawn_egg": { - "protocol_id": 1162 + "protocol_id": 1190 }, "minecraft:tube_coral": { - "protocol_id": 660 + "protocol_id": 687 }, "minecraft:tube_coral_block": { - "protocol_id": 655 + "protocol_id": 682 }, "minecraft:tube_coral_fan": { - "protocol_id": 670 + "protocol_id": 697 }, "minecraft:tuff": { "protocol_id": 12 @@ -11441,517 +11708,517 @@ "protocol_id": 15 }, "minecraft:turtle_egg": { - "protocol_id": 647 + "protocol_id": 674 }, "minecraft:turtle_helmet": { - "protocol_id": 888 - }, - "minecraft:turtle_scute": { - "protocol_id": 889 - }, - "minecraft:turtle_spawn_egg": { - "protocol_id": 1163 - }, - "minecraft:twisting_vines": { - "protocol_id": 256 - }, - "minecraft:vault": { - "protocol_id": 1504 - }, - "minecraft:verdant_froglight": { - "protocol_id": 1422 - }, - "minecraft:vex_armor_trim_smithing_template": { - "protocol_id": 1434 - }, - "minecraft:vex_spawn_egg": { - "protocol_id": 1203 - }, - "minecraft:villager_spawn_egg": { - "protocol_id": 1171 - }, - "minecraft:vindicator_spawn_egg": { - "protocol_id": 1202 - }, - "minecraft:vine": { - "protocol_id": 411 - }, - "minecraft:wandering_trader_spawn_egg": { - "protocol_id": 1172 - }, - "minecraft:ward_armor_trim_smithing_template": { - "protocol_id": 1432 - }, - "minecraft:warden_spawn_egg": { - "protocol_id": 1197 - }, - "minecraft:warped_button": { - "protocol_id": 763 - }, - "minecraft:warped_door": { - "protocol_id": 792 - }, - "minecraft:warped_fence": { - "protocol_id": 356 - }, - "minecraft:warped_fence_gate": { - "protocol_id": 833 - }, - "minecraft:warped_fungus": { - "protocol_id": 251 - }, - "minecraft:warped_fungus_on_a_stick": { - "protocol_id": 861 - }, - "minecraft:warped_hanging_sign": { - "protocol_id": 1012 - }, - "minecraft:warped_hyphae": { - "protocol_id": 181 - }, - "minecraft:warped_nylium": { - "protocol_id": 34 - }, - "minecraft:warped_planks": { - "protocol_id": 47 - }, - "minecraft:warped_pressure_plate": { - "protocol_id": 779 - }, - "minecraft:warped_roots": { - "protocol_id": 253 - }, - "minecraft:warped_shelf": { - "protocol_id": 317 - }, - "minecraft:warped_sign": { - "protocol_id": 1000 - }, - "minecraft:warped_slab": { - "protocol_id": 283 - }, - "minecraft:warped_stairs": { - "protocol_id": 454 - }, - "minecraft:warped_stem": { - "protocol_id": 146 - }, - "minecraft:warped_trapdoor": { - "protocol_id": 813 - }, - "minecraft:warped_wart_block": { - "protocol_id": 578 - }, - "minecraft:water_bucket": { - "protocol_id": 1014 - }, - "minecraft:waxed_chiseled_copper": { - "protocol_id": 118 - }, - "minecraft:waxed_copper_bars": { - "protocol_id": 396 - }, - "minecraft:waxed_copper_block": { - "protocol_id": 114 - }, - "minecraft:waxed_copper_bulb": { - "protocol_id": 1481 - }, - "minecraft:waxed_copper_chain": { - "protocol_id": 405 - }, - "minecraft:waxed_copper_chest": { - "protocol_id": 1489 - }, - "minecraft:waxed_copper_door": { - "protocol_id": 797 - }, - "minecraft:waxed_copper_golem_statue": { - "protocol_id": 1497 - }, - "minecraft:waxed_copper_grate": { - "protocol_id": 1473 - }, - "minecraft:waxed_copper_lantern": { - "protocol_id": 1370 - }, - "minecraft:waxed_copper_trapdoor": { - "protocol_id": 818 - }, - "minecraft:waxed_cut_copper": { - "protocol_id": 122 - }, - "minecraft:waxed_cut_copper_slab": { - "protocol_id": 130 - }, - "minecraft:waxed_cut_copper_stairs": { - "protocol_id": 126 - }, - "minecraft:waxed_exposed_chiseled_copper": { - "protocol_id": 119 - }, - "minecraft:waxed_exposed_copper": { - "protocol_id": 115 - }, - "minecraft:waxed_exposed_copper_bars": { - "protocol_id": 397 - }, - "minecraft:waxed_exposed_copper_bulb": { - "protocol_id": 1482 - }, - "minecraft:waxed_exposed_copper_chain": { - "protocol_id": 406 - }, - "minecraft:waxed_exposed_copper_chest": { - "protocol_id": 1490 - }, - "minecraft:waxed_exposed_copper_door": { - "protocol_id": 798 - }, - "minecraft:waxed_exposed_copper_golem_statue": { - "protocol_id": 1498 - }, - "minecraft:waxed_exposed_copper_grate": { - "protocol_id": 1474 - }, - "minecraft:waxed_exposed_copper_lantern": { - "protocol_id": 1371 - }, - "minecraft:waxed_exposed_copper_trapdoor": { - "protocol_id": 819 - }, - "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_exposed_lightning_rod": { - "protocol_id": 739 - }, - "minecraft:waxed_lightning_rod": { - "protocol_id": 738 - }, - "minecraft:waxed_oxidized_chiseled_copper": { - "protocol_id": 121 - }, - "minecraft:waxed_oxidized_copper": { - "protocol_id": 117 - }, - "minecraft:waxed_oxidized_copper_bars": { - "protocol_id": 399 - }, - "minecraft:waxed_oxidized_copper_bulb": { - "protocol_id": 1484 - }, - "minecraft:waxed_oxidized_copper_chain": { - "protocol_id": 408 - }, - "minecraft:waxed_oxidized_copper_chest": { - "protocol_id": 1492 - }, - "minecraft:waxed_oxidized_copper_door": { - "protocol_id": 800 - }, - "minecraft:waxed_oxidized_copper_golem_statue": { - "protocol_id": 1500 - }, - "minecraft:waxed_oxidized_copper_grate": { - "protocol_id": 1476 - }, - "minecraft:waxed_oxidized_copper_lantern": { - "protocol_id": 1373 - }, - "minecraft:waxed_oxidized_copper_trapdoor": { - "protocol_id": 821 - }, - "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_oxidized_lightning_rod": { - "protocol_id": 741 - }, - "minecraft:waxed_weathered_chiseled_copper": { - "protocol_id": 120 - }, - "minecraft:waxed_weathered_copper": { - "protocol_id": 116 - }, - "minecraft:waxed_weathered_copper_bars": { - "protocol_id": 398 - }, - "minecraft:waxed_weathered_copper_bulb": { - "protocol_id": 1483 - }, - "minecraft:waxed_weathered_copper_chain": { - "protocol_id": 407 - }, - "minecraft:waxed_weathered_copper_chest": { - "protocol_id": 1491 - }, - "minecraft:waxed_weathered_copper_door": { - "protocol_id": 799 - }, - "minecraft:waxed_weathered_copper_golem_statue": { - "protocol_id": 1499 - }, - "minecraft:waxed_weathered_copper_grate": { - "protocol_id": 1475 - }, - "minecraft:waxed_weathered_copper_lantern": { - "protocol_id": 1372 - }, - "minecraft:waxed_weathered_copper_trapdoor": { - "protocol_id": 820 - }, - "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:waxed_weathered_lightning_rod": { - "protocol_id": 740 - }, - "minecraft:wayfinder_armor_trim_smithing_template": { - "protocol_id": 1439 - }, - "minecraft:weathered_chiseled_copper": { - "protocol_id": 100 - }, - "minecraft:weathered_copper": { - "protocol_id": 96 - }, - "minecraft:weathered_copper_bars": { - "protocol_id": 394 - }, - "minecraft:weathered_copper_bulb": { - "protocol_id": 1479 - }, - "minecraft:weathered_copper_chain": { - "protocol_id": 403 - }, - "minecraft:weathered_copper_chest": { - "protocol_id": 1487 - }, - "minecraft:weathered_copper_door": { - "protocol_id": 795 - }, - "minecraft:weathered_copper_golem_statue": { - "protocol_id": 1495 - }, - "minecraft:weathered_copper_grate": { - "protocol_id": 1471 - }, - "minecraft:weathered_copper_lantern": { - "protocol_id": 1368 - }, - "minecraft:weathered_copper_trapdoor": { - "protocol_id": 816 - }, - "minecraft:weathered_cut_copper": { - "protocol_id": 104 - }, - "minecraft:weathered_cut_copper_slab": { - "protocol_id": 112 - }, - "minecraft:weathered_cut_copper_stairs": { - "protocol_id": 108 - }, - "minecraft:weathered_lightning_rod": { - "protocol_id": 736 - }, - "minecraft:weeping_vines": { - "protocol_id": 255 - }, - "minecraft:wet_sponge": { - "protocol_id": 194 - }, - "minecraft:wheat": { - "protocol_id": 953 - }, - "minecraft:wheat_seeds": { - "protocol_id": 952 - }, - "minecraft:white_banner": { - "protocol_id": 1267 - }, - "minecraft:white_bed": { - "protocol_id": 1087 - }, - "minecraft:white_bundle": { - "protocol_id": 1038 - }, - "minecraft:white_candle": { - "protocol_id": 1400 - }, - "minecraft:white_carpet": { - "protocol_id": 506 - }, - "minecraft:white_concrete": { - "protocol_id": 615 - }, - "minecraft:white_concrete_powder": { - "protocol_id": 631 - }, - "minecraft:white_dye": { - "protocol_id": 1067 - }, - "minecraft:white_glazed_terracotta": { - "protocol_id": 599 - }, - "minecraft:white_harness": { - "protocol_id": 839 - }, - "minecraft:white_shulker_box": { - "protocol_id": 583 - }, - "minecraft:white_stained_glass": { - "protocol_id": 531 - }, - "minecraft:white_stained_glass_pane": { - "protocol_id": 547 - }, - "minecraft:white_terracotta": { - "protocol_id": 487 - }, - "minecraft:white_tulip": { - "protocol_id": 239 - }, - "minecraft:white_wool": { - "protocol_id": 213 - }, - "minecraft:wild_armor_trim_smithing_template": { - "protocol_id": 1431 - }, - "minecraft:wildflowers": { - "protocol_id": 260 - }, - "minecraft:wind_charge": { - "protocol_id": 1220 - }, - "minecraft:witch_spawn_egg": { - "protocol_id": 1198 - }, - "minecraft:wither_rose": { - "protocol_id": 244 - }, - "minecraft:wither_skeleton_skull": { - "protocol_id": 1235 - }, - "minecraft:wither_skeleton_spawn_egg": { - "protocol_id": 1182 - }, - "minecraft:wither_spawn_egg": { - "protocol_id": 1181 - }, - "minecraft:wolf_armor": { - "protocol_id": 891 - }, - "minecraft:wolf_spawn_egg": { - "protocol_id": 1141 - }, - "minecraft:wooden_axe": { "protocol_id": 915 }, - "minecraft:wooden_hoe": { + "minecraft:turtle_scute": { "protocol_id": 916 }, - "minecraft:wooden_pickaxe": { - "protocol_id": 914 + "minecraft:turtle_spawn_egg": { + "protocol_id": 1191 }, - "minecraft:wooden_shovel": { - "protocol_id": 913 + "minecraft:twisting_vines": { + "protocol_id": 283 }, - "minecraft:wooden_spear": { - "protocol_id": 1297 + "minecraft:vault": { + "protocol_id": 1535 }, - "minecraft:wooden_sword": { - "protocol_id": 912 + "minecraft:verdant_froglight": { + "protocol_id": 1453 }, - "minecraft:writable_book": { - "protocol_id": 1221 + "minecraft:vex_armor_trim_smithing_template": { + "protocol_id": 1465 }, - "minecraft:written_book": { - "protocol_id": 1222 + "minecraft:vex_spawn_egg": { + "protocol_id": 1232 }, - "minecraft:yellow_banner": { - "protocol_id": 1271 + "minecraft:villager_spawn_egg": { + "protocol_id": 1200 }, - "minecraft:yellow_bed": { - "protocol_id": 1091 + "minecraft:vindicator_spawn_egg": { + "protocol_id": 1231 }, - "minecraft:yellow_bundle": { - "protocol_id": 1042 + "minecraft:vine": { + "protocol_id": 438 }, - "minecraft:yellow_candle": { - "protocol_id": 1404 + "minecraft:wandering_trader_spawn_egg": { + "protocol_id": 1201 }, - "minecraft:yellow_carpet": { - "protocol_id": 510 + "minecraft:ward_armor_trim_smithing_template": { + "protocol_id": 1463 }, - "minecraft:yellow_concrete": { - "protocol_id": 619 + "minecraft:warden_spawn_egg": { + "protocol_id": 1226 }, - "minecraft:yellow_concrete_powder": { - "protocol_id": 635 + "minecraft:warped_button": { + "protocol_id": 790 }, - "minecraft:yellow_dye": { - "protocol_id": 1071 + "minecraft:warped_door": { + "protocol_id": 819 }, - "minecraft:yellow_glazed_terracotta": { - "protocol_id": 603 + "minecraft:warped_fence": { + "protocol_id": 383 }, - "minecraft:yellow_harness": { + "minecraft:warped_fence_gate": { + "protocol_id": 860 + }, + "minecraft:warped_fungus": { + "protocol_id": 278 + }, + "minecraft:warped_fungus_on_a_stick": { + "protocol_id": 888 + }, + "minecraft:warped_hanging_sign": { + "protocol_id": 1039 + }, + "minecraft:warped_hyphae": { + "protocol_id": 208 + }, + "minecraft:warped_nylium": { + "protocol_id": 61 + }, + "minecraft:warped_planks": { + "protocol_id": 74 + }, + "minecraft:warped_pressure_plate": { + "protocol_id": 806 + }, + "minecraft:warped_roots": { + "protocol_id": 280 + }, + "minecraft:warped_shelf": { + "protocol_id": 344 + }, + "minecraft:warped_sign": { + "protocol_id": 1027 + }, + "minecraft:warped_slab": { + "protocol_id": 310 + }, + "minecraft:warped_stairs": { + "protocol_id": 481 + }, + "minecraft:warped_stem": { + "protocol_id": 173 + }, + "minecraft:warped_trapdoor": { + "protocol_id": 840 + }, + "minecraft:warped_wart_block": { + "protocol_id": 605 + }, + "minecraft:water_bucket": { + "protocol_id": 1041 + }, + "minecraft:waxed_chiseled_copper": { + "protocol_id": 133 + }, + "minecraft:waxed_copper_bars": { + "protocol_id": 423 + }, + "minecraft:waxed_copper_block": { + "protocol_id": 122 + }, + "minecraft:waxed_copper_bulb": { + "protocol_id": 1512 + }, + "minecraft:waxed_copper_chain": { + "protocol_id": 432 + }, + "minecraft:waxed_copper_chest": { + "protocol_id": 1520 + }, + "minecraft:waxed_copper_door": { + "protocol_id": 824 + }, + "minecraft:waxed_copper_golem_statue": { + "protocol_id": 1528 + }, + "minecraft:waxed_copper_grate": { + "protocol_id": 1504 + }, + "minecraft:waxed_copper_lantern": { + "protocol_id": 1400 + }, + "minecraft:waxed_copper_trapdoor": { + "protocol_id": 845 + }, + "minecraft:waxed_cut_copper": { + "protocol_id": 141 + }, + "minecraft:waxed_cut_copper_slab": { + "protocol_id": 157 + }, + "minecraft:waxed_cut_copper_stairs": { + "protocol_id": 149 + }, + "minecraft:waxed_exposed_chiseled_copper": { + "protocol_id": 134 + }, + "minecraft:waxed_exposed_copper": { + "protocol_id": 123 + }, + "minecraft:waxed_exposed_copper_bars": { + "protocol_id": 424 + }, + "minecraft:waxed_exposed_copper_bulb": { + "protocol_id": 1513 + }, + "minecraft:waxed_exposed_copper_chain": { + "protocol_id": 433 + }, + "minecraft:waxed_exposed_copper_chest": { + "protocol_id": 1521 + }, + "minecraft:waxed_exposed_copper_door": { + "protocol_id": 825 + }, + "minecraft:waxed_exposed_copper_golem_statue": { + "protocol_id": 1529 + }, + "minecraft:waxed_exposed_copper_grate": { + "protocol_id": 1505 + }, + "minecraft:waxed_exposed_copper_lantern": { + "protocol_id": 1401 + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "protocol_id": 846 + }, + "minecraft:waxed_exposed_cut_copper": { + "protocol_id": 142 + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "protocol_id": 158 + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "protocol_id": 150 + }, + "minecraft:waxed_exposed_lightning_rod": { + "protocol_id": 766 + }, + "minecraft:waxed_lightning_rod": { + "protocol_id": 765 + }, + "minecraft:waxed_oxidized_chiseled_copper": { + "protocol_id": 136 + }, + "minecraft:waxed_oxidized_copper": { + "protocol_id": 125 + }, + "minecraft:waxed_oxidized_copper_bars": { + "protocol_id": 426 + }, + "minecraft:waxed_oxidized_copper_bulb": { + "protocol_id": 1515 + }, + "minecraft:waxed_oxidized_copper_chain": { + "protocol_id": 435 + }, + "minecraft:waxed_oxidized_copper_chest": { + "protocol_id": 1523 + }, + "minecraft:waxed_oxidized_copper_door": { + "protocol_id": 827 + }, + "minecraft:waxed_oxidized_copper_golem_statue": { + "protocol_id": 1531 + }, + "minecraft:waxed_oxidized_copper_grate": { + "protocol_id": 1507 + }, + "minecraft:waxed_oxidized_copper_lantern": { + "protocol_id": 1403 + }, + "minecraft:waxed_oxidized_copper_trapdoor": { + "protocol_id": 848 + }, + "minecraft:waxed_oxidized_cut_copper": { + "protocol_id": 144 + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "protocol_id": 160 + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "protocol_id": 152 + }, + "minecraft:waxed_oxidized_lightning_rod": { + "protocol_id": 768 + }, + "minecraft:waxed_weathered_chiseled_copper": { + "protocol_id": 135 + }, + "minecraft:waxed_weathered_copper": { + "protocol_id": 124 + }, + "minecraft:waxed_weathered_copper_bars": { + "protocol_id": 425 + }, + "minecraft:waxed_weathered_copper_bulb": { + "protocol_id": 1514 + }, + "minecraft:waxed_weathered_copper_chain": { + "protocol_id": 434 + }, + "minecraft:waxed_weathered_copper_chest": { + "protocol_id": 1522 + }, + "minecraft:waxed_weathered_copper_door": { + "protocol_id": 826 + }, + "minecraft:waxed_weathered_copper_golem_statue": { + "protocol_id": 1530 + }, + "minecraft:waxed_weathered_copper_grate": { + "protocol_id": 1506 + }, + "minecraft:waxed_weathered_copper_lantern": { + "protocol_id": 1402 + }, + "minecraft:waxed_weathered_copper_trapdoor": { + "protocol_id": 847 + }, + "minecraft:waxed_weathered_cut_copper": { + "protocol_id": 143 + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "protocol_id": 159 + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "protocol_id": 151 + }, + "minecraft:waxed_weathered_lightning_rod": { + "protocol_id": 767 + }, + "minecraft:wayfinder_armor_trim_smithing_template": { + "protocol_id": 1470 + }, + "minecraft:weathered_chiseled_copper": { + "protocol_id": 131 + }, + "minecraft:weathered_copper": { + "protocol_id": 120 + }, + "minecraft:weathered_copper_bars": { + "protocol_id": 421 + }, + "minecraft:weathered_copper_bulb": { + "protocol_id": 1510 + }, + "minecraft:weathered_copper_chain": { + "protocol_id": 430 + }, + "minecraft:weathered_copper_chest": { + "protocol_id": 1518 + }, + "minecraft:weathered_copper_door": { + "protocol_id": 822 + }, + "minecraft:weathered_copper_golem_statue": { + "protocol_id": 1526 + }, + "minecraft:weathered_copper_grate": { + "protocol_id": 1502 + }, + "minecraft:weathered_copper_lantern": { + "protocol_id": 1398 + }, + "minecraft:weathered_copper_trapdoor": { "protocol_id": 843 }, + "minecraft:weathered_cut_copper": { + "protocol_id": 139 + }, + "minecraft:weathered_cut_copper_slab": { + "protocol_id": 155 + }, + "minecraft:weathered_cut_copper_stairs": { + "protocol_id": 147 + }, + "minecraft:weathered_lightning_rod": { + "protocol_id": 763 + }, + "minecraft:weeping_vines": { + "protocol_id": 282 + }, + "minecraft:wet_sponge": { + "protocol_id": 221 + }, + "minecraft:wheat": { + "protocol_id": 980 + }, + "minecraft:wheat_seeds": { + "protocol_id": 979 + }, + "minecraft:white_banner": { + "protocol_id": 1296 + }, + "minecraft:white_bed": { + "protocol_id": 1115 + }, + "minecraft:white_bundle": { + "protocol_id": 1066 + }, + "minecraft:white_candle": { + "protocol_id": 1430 + }, + "minecraft:white_carpet": { + "protocol_id": 533 + }, + "minecraft:white_concrete": { + "protocol_id": 642 + }, + "minecraft:white_concrete_powder": { + "protocol_id": 658 + }, + "minecraft:white_dye": { + "protocol_id": 1095 + }, + "minecraft:white_glazed_terracotta": { + "protocol_id": 626 + }, + "minecraft:white_harness": { + "protocol_id": 866 + }, + "minecraft:white_shulker_box": { + "protocol_id": 610 + }, + "minecraft:white_stained_glass": { + "protocol_id": 558 + }, + "minecraft:white_stained_glass_pane": { + "protocol_id": 574 + }, + "minecraft:white_terracotta": { + "protocol_id": 514 + }, + "minecraft:white_tulip": { + "protocol_id": 266 + }, + "minecraft:white_wool": { + "protocol_id": 240 + }, + "minecraft:wild_armor_trim_smithing_template": { + "protocol_id": 1462 + }, + "minecraft:wildflowers": { + "protocol_id": 287 + }, + "minecraft:wind_charge": { + "protocol_id": 1249 + }, + "minecraft:witch_spawn_egg": { + "protocol_id": 1227 + }, + "minecraft:wither_rose": { + "protocol_id": 271 + }, + "minecraft:wither_skeleton_skull": { + "protocol_id": 1264 + }, + "minecraft:wither_skeleton_spawn_egg": { + "protocol_id": 1211 + }, + "minecraft:wither_spawn_egg": { + "protocol_id": 1210 + }, + "minecraft:wolf_armor": { + "protocol_id": 918 + }, + "minecraft:wolf_spawn_egg": { + "protocol_id": 1169 + }, + "minecraft:wooden_axe": { + "protocol_id": 942 + }, + "minecraft:wooden_hoe": { + "protocol_id": 943 + }, + "minecraft:wooden_pickaxe": { + "protocol_id": 941 + }, + "minecraft:wooden_shovel": { + "protocol_id": 940 + }, + "minecraft:wooden_spear": { + "protocol_id": 1326 + }, + "minecraft:wooden_sword": { + "protocol_id": 939 + }, + "minecraft:writable_book": { + "protocol_id": 1250 + }, + "minecraft:written_book": { + "protocol_id": 1251 + }, + "minecraft:yellow_banner": { + "protocol_id": 1300 + }, + "minecraft:yellow_bed": { + "protocol_id": 1119 + }, + "minecraft:yellow_bundle": { + "protocol_id": 1070 + }, + "minecraft:yellow_candle": { + "protocol_id": 1434 + }, + "minecraft:yellow_carpet": { + "protocol_id": 537 + }, + "minecraft:yellow_concrete": { + "protocol_id": 646 + }, + "minecraft:yellow_concrete_powder": { + "protocol_id": 662 + }, + "minecraft:yellow_dye": { + "protocol_id": 1099 + }, + "minecraft:yellow_glazed_terracotta": { + "protocol_id": 630 + }, + "minecraft:yellow_harness": { + "protocol_id": 870 + }, "minecraft:yellow_shulker_box": { - "protocol_id": 587 + "protocol_id": 614 }, "minecraft:yellow_stained_glass": { - "protocol_id": 535 + "protocol_id": 562 }, "minecraft:yellow_stained_glass_pane": { - "protocol_id": 551 + "protocol_id": 578 }, "minecraft:yellow_terracotta": { - "protocol_id": 491 + "protocol_id": 518 }, "minecraft:yellow_wool": { - "protocol_id": 217 + "protocol_id": 244 }, "minecraft:zoglin_spawn_egg": { - "protocol_id": 1212 + "protocol_id": 1241 }, "minecraft:zombie_head": { - "protocol_id": 1237 + "protocol_id": 1266 }, "minecraft:zombie_horse_spawn_egg": { - "protocol_id": 1184 + "protocol_id": 1213 }, "minecraft:zombie_nautilus_spawn_egg": { - "protocol_id": 1185 + "protocol_id": 1214 }, "minecraft:zombie_spawn_egg": { - "protocol_id": 1183 + "protocol_id": 1212 }, "minecraft:zombie_villager_spawn_egg": { - "protocol_id": 1186 + "protocol_id": 1215 }, "minecraft:zombified_piglin_spawn_egg": { - "protocol_id": 1213 + "protocol_id": 1242 } }, "protocol_id": 7 @@ -12983,13 +13250,13 @@ "protocol_id": 0 }, "minecraft:ash": { - "protocol_id": 84 + "protocol_id": 91 }, "minecraft:block": { "protocol_id": 1 }, "minecraft:block_crumble": { - "protocol_id": 115 + "protocol_id": 122 }, "minecraft:block_marker": { "protocol_id": 2 @@ -12998,337 +13265,361 @@ "protocol_id": 3 }, "minecraft:bubble_column_up": { - "protocol_id": 74 - }, - "minecraft:bubble_pop": { - "protocol_id": 72 - }, - "minecraft:campfire_cosy_smoke": { - "protocol_id": 77 - }, - "minecraft:campfire_signal_smoke": { - "protocol_id": 78 - }, - "minecraft:cherry_leaves": { - "protocol_id": 34 - }, - "minecraft:cloud": { - "protocol_id": 4 - }, - "minecraft:composter": { - "protocol_id": 44 - }, - "minecraft:copper_fire_flame": { - "protocol_id": 5 - }, - "minecraft:crimson_spore": { - "protocol_id": 85 - }, - "minecraft:crit": { - "protocol_id": 6 - }, - "minecraft:current_down": { - "protocol_id": 73 - }, - "minecraft:damage_indicator": { - "protocol_id": 7 - }, - "minecraft:dolphin": { - "protocol_id": 76 - }, - "minecraft:dragon_breath": { - "protocol_id": 8 - }, - "minecraft:dripping_dripstone_lava": { - "protocol_id": 95 - }, - "minecraft:dripping_dripstone_water": { - "protocol_id": 97 - }, - "minecraft:dripping_honey": { - "protocol_id": 79 - }, - "minecraft:dripping_lava": { - "protocol_id": 9 - }, - "minecraft:dripping_obsidian_tear": { - "protocol_id": 88 - }, - "minecraft:dripping_water": { - "protocol_id": 12 - }, - "minecraft:dust": { - "protocol_id": 14 - }, - "minecraft:dust_color_transition": { - "protocol_id": 15 - }, - "minecraft:dust_pillar": { - "protocol_id": 111 - }, - "minecraft:dust_plume": { - "protocol_id": 107 - }, - "minecraft:effect": { - "protocol_id": 16 - }, - "minecraft:egg_crack": { - "protocol_id": 106 - }, - "minecraft:elder_guardian": { - "protocol_id": 17 - }, - "minecraft:electric_spark": { - "protocol_id": 103 - }, - "minecraft:enchant": { - "protocol_id": 19 - }, - "minecraft:enchanted_hit": { - "protocol_id": 18 - }, - "minecraft:end_rod": { - "protocol_id": 20 - }, - "minecraft:entity_effect": { - "protocol_id": 21 - }, - "minecraft:explosion": { - "protocol_id": 23 - }, - "minecraft:explosion_emitter": { - "protocol_id": 22 - }, - "minecraft:falling_dripstone_lava": { - "protocol_id": 96 - }, - "minecraft:falling_dripstone_water": { - "protocol_id": 98 - }, - "minecraft:falling_dust": { - "protocol_id": 29 - }, - "minecraft:falling_honey": { - "protocol_id": 80 - }, - "minecraft:falling_lava": { - "protocol_id": 10 - }, - "minecraft:falling_nectar": { - "protocol_id": 82 - }, - "minecraft:falling_obsidian_tear": { - "protocol_id": 89 - }, - "minecraft:falling_spore_blossom": { - "protocol_id": 83 - }, - "minecraft:falling_water": { - "protocol_id": 13 - }, - "minecraft:firefly": { - "protocol_id": 116 - }, - "minecraft:firework": { - "protocol_id": 30 - }, - "minecraft:fishing": { - "protocol_id": 31 - }, - "minecraft:flame": { - "protocol_id": 32 - }, - "minecraft:flash": { - "protocol_id": 42 - }, - "minecraft:glow": { - "protocol_id": 100 - }, - "minecraft:glow_squid_ink": { - "protocol_id": 99 - }, - "minecraft:gust": { - "protocol_id": 24 - }, - "minecraft:gust_emitter_large": { - "protocol_id": 26 - }, - "minecraft:gust_emitter_small": { - "protocol_id": 27 - }, - "minecraft:happy_villager": { - "protocol_id": 43 - }, - "minecraft:heart": { - "protocol_id": 45 - }, - "minecraft:infested": { - "protocol_id": 33 - }, - "minecraft:instant_effect": { - "protocol_id": 46 - }, - "minecraft:item": { - "protocol_id": 47 - }, - "minecraft:item_cobweb": { - "protocol_id": 53 - }, - "minecraft:item_slime": { - "protocol_id": 52 - }, - "minecraft:item_snowball": { - "protocol_id": 54 - }, - "minecraft:landing_honey": { "protocol_id": 81 }, - "minecraft:landing_lava": { - "protocol_id": 11 + "minecraft:bubble_pop": { + "protocol_id": 79 }, - "minecraft:landing_obsidian_tear": { - "protocol_id": 90 + "minecraft:campfire_cosy_smoke": { + "protocol_id": 84 }, - "minecraft:large_smoke": { - "protocol_id": 55 + "minecraft:campfire_signal_smoke": { + "protocol_id": 85 }, - "minecraft:lava": { - "protocol_id": 56 - }, - "minecraft:mycelium": { - "protocol_id": 57 - }, - "minecraft:nautilus": { - "protocol_id": 75 - }, - "minecraft:note": { - "protocol_id": 58 - }, - "minecraft:ominous_spawning": { - "protocol_id": 112 - }, - "minecraft:pale_oak_leaves": { - "protocol_id": 35 - }, - "minecraft:pause_mob_growth": { - "protocol_id": 50 - }, - "minecraft:poof": { - "protocol_id": 59 - }, - "minecraft:portal": { - "protocol_id": 60 - }, - "minecraft:raid_omen": { - "protocol_id": 113 - }, - "minecraft:rain": { - "protocol_id": 61 - }, - "minecraft:reset_mob_growth": { - "protocol_id": 51 - }, - "minecraft:reverse_portal": { - "protocol_id": 91 - }, - "minecraft:scrape": { - "protocol_id": 104 - }, - "minecraft:sculk_charge": { - "protocol_id": 38 - }, - "minecraft:sculk_charge_pop": { - "protocol_id": 39 - }, - "minecraft:sculk_soul": { - "protocol_id": 37 - }, - "minecraft:shriek": { - "protocol_id": 105 - }, - "minecraft:small_flame": { - "protocol_id": 93 - }, - "minecraft:small_gust": { - "protocol_id": 25 - }, - "minecraft:smoke": { - "protocol_id": 62 - }, - "minecraft:sneeze": { - "protocol_id": 64 - }, - "minecraft:snowflake": { - "protocol_id": 94 - }, - "minecraft:sonic_boom": { - "protocol_id": 28 - }, - "minecraft:soul": { + "minecraft:cherry_leaves": { "protocol_id": 41 }, - "minecraft:soul_fire_flame": { - "protocol_id": 40 + "minecraft:cloud": { + "protocol_id": 11 }, - "minecraft:spit": { - "protocol_id": 65 + "minecraft:composter": { + "protocol_id": 51 }, - "minecraft:splash": { - "protocol_id": 70 + "minecraft:copper_fire_flame": { + "protocol_id": 12 }, - "minecraft:spore_blossom_air": { - "protocol_id": 87 - }, - "minecraft:squid_ink": { - "protocol_id": 66 - }, - "minecraft:sweep_attack": { - "protocol_id": 67 - }, - "minecraft:tinted_leaves": { - "protocol_id": 36 - }, - "minecraft:totem_of_undying": { - "protocol_id": 68 - }, - "minecraft:trail": { - "protocol_id": 49 - }, - "minecraft:trial_omen": { - "protocol_id": 114 - }, - "minecraft:trial_spawner_detection": { - "protocol_id": 108 - }, - "minecraft:trial_spawner_detection_ominous": { - "protocol_id": 109 - }, - "minecraft:underwater": { - "protocol_id": 69 - }, - "minecraft:vault_connection": { - "protocol_id": 110 - }, - "minecraft:vibration": { - "protocol_id": 48 - }, - "minecraft:warped_spore": { - "protocol_id": 86 - }, - "minecraft:wax_off": { - "protocol_id": 102 - }, - "minecraft:wax_on": { - "protocol_id": 101 - }, - "minecraft:white_ash": { + "minecraft:crimson_spore": { "protocol_id": 92 }, - "minecraft:white_smoke": { + "minecraft:crit": { + "protocol_id": 13 + }, + "minecraft:current_down": { + "protocol_id": 80 + }, + "minecraft:damage_indicator": { + "protocol_id": 14 + }, + "minecraft:dolphin": { + "protocol_id": 83 + }, + "minecraft:dragon_breath": { + "protocol_id": 15 + }, + "minecraft:dripping_dripstone_lava": { + "protocol_id": 102 + }, + "minecraft:dripping_dripstone_water": { + "protocol_id": 104 + }, + "minecraft:dripping_honey": { + "protocol_id": 86 + }, + "minecraft:dripping_lava": { + "protocol_id": 16 + }, + "minecraft:dripping_obsidian_tear": { + "protocol_id": 95 + }, + "minecraft:dripping_water": { + "protocol_id": 19 + }, + "minecraft:dust": { + "protocol_id": 21 + }, + "minecraft:dust_color_transition": { + "protocol_id": 22 + }, + "minecraft:dust_pillar": { + "protocol_id": 118 + }, + "minecraft:dust_plume": { + "protocol_id": 114 + }, + "minecraft:effect": { + "protocol_id": 23 + }, + "minecraft:egg_crack": { + "protocol_id": 113 + }, + "minecraft:elder_guardian": { + "protocol_id": 24 + }, + "minecraft:electric_spark": { + "protocol_id": 110 + }, + "minecraft:enchant": { + "protocol_id": 26 + }, + "minecraft:enchanted_hit": { + "protocol_id": 25 + }, + "minecraft:end_rod": { + "protocol_id": 27 + }, + "minecraft:entity_effect": { + "protocol_id": 28 + }, + "minecraft:explosion": { + "protocol_id": 30 + }, + "minecraft:explosion_emitter": { + "protocol_id": 29 + }, + "minecraft:falling_dripstone_lava": { + "protocol_id": 103 + }, + "minecraft:falling_dripstone_water": { + "protocol_id": 105 + }, + "minecraft:falling_dust": { + "protocol_id": 36 + }, + "minecraft:falling_honey": { + "protocol_id": 87 + }, + "minecraft:falling_lava": { + "protocol_id": 17 + }, + "minecraft:falling_nectar": { + "protocol_id": 89 + }, + "minecraft:falling_obsidian_tear": { + "protocol_id": 96 + }, + "minecraft:falling_spore_blossom": { + "protocol_id": 90 + }, + "minecraft:falling_water": { + "protocol_id": 20 + }, + "minecraft:firefly": { + "protocol_id": 123 + }, + "minecraft:firework": { + "protocol_id": 37 + }, + "minecraft:fishing": { + "protocol_id": 38 + }, + "minecraft:flame": { + "protocol_id": 39 + }, + "minecraft:flash": { + "protocol_id": 49 + }, + "minecraft:geyser": { + "protocol_id": 7 + }, + "minecraft:geyser_base": { + "protocol_id": 8 + }, + "minecraft:geyser_plume": { + "protocol_id": 10 + }, + "minecraft:geyser_poof": { + "protocol_id": 9 + }, + "minecraft:glow": { + "protocol_id": 107 + }, + "minecraft:glow_squid_ink": { + "protocol_id": 106 + }, + "minecraft:gust": { + "protocol_id": 31 + }, + "minecraft:gust_emitter_large": { + "protocol_id": 33 + }, + "minecraft:gust_emitter_small": { + "protocol_id": 34 + }, + "minecraft:happy_villager": { + "protocol_id": 50 + }, + "minecraft:heart": { + "protocol_id": 52 + }, + "minecraft:infested": { + "protocol_id": 40 + }, + "minecraft:instant_effect": { + "protocol_id": 53 + }, + "minecraft:item": { + "protocol_id": 54 + }, + "minecraft:item_cobweb": { + "protocol_id": 60 + }, + "minecraft:item_slime": { + "protocol_id": 59 + }, + "minecraft:item_snowball": { + "protocol_id": 61 + }, + "minecraft:landing_honey": { + "protocol_id": 88 + }, + "minecraft:landing_lava": { + "protocol_id": 18 + }, + "minecraft:landing_obsidian_tear": { + "protocol_id": 97 + }, + "minecraft:large_smoke": { + "protocol_id": 62 + }, + "minecraft:lava": { "protocol_id": 63 }, - "minecraft:witch": { + "minecraft:mycelium": { + "protocol_id": 64 + }, + "minecraft:nautilus": { + "protocol_id": 82 + }, + "minecraft:note": { + "protocol_id": 65 + }, + "minecraft:noxious_gas": { + "protocol_id": 5 + }, + "minecraft:noxious_gas_cloud": { + "protocol_id": 6 + }, + "minecraft:ominous_spawning": { + "protocol_id": 119 + }, + "minecraft:pale_oak_leaves": { + "protocol_id": 42 + }, + "minecraft:pause_mob_growth": { + "protocol_id": 57 + }, + "minecraft:poof": { + "protocol_id": 66 + }, + "minecraft:portal": { + "protocol_id": 67 + }, + "minecraft:raid_omen": { + "protocol_id": 120 + }, + "minecraft:rain": { + "protocol_id": 68 + }, + "minecraft:reset_mob_growth": { + "protocol_id": 58 + }, + "minecraft:reverse_portal": { + "protocol_id": 98 + }, + "minecraft:scrape": { + "protocol_id": 111 + }, + "minecraft:sculk_charge": { + "protocol_id": 45 + }, + "minecraft:sculk_charge_pop": { + "protocol_id": 46 + }, + "minecraft:sculk_soul": { + "protocol_id": 44 + }, + "minecraft:shriek": { + "protocol_id": 112 + }, + "minecraft:small_flame": { + "protocol_id": 100 + }, + "minecraft:small_gust": { + "protocol_id": 32 + }, + "minecraft:smoke": { + "protocol_id": 69 + }, + "minecraft:sneeze": { "protocol_id": 71 + }, + "minecraft:snowflake": { + "protocol_id": 101 + }, + "minecraft:sonic_boom": { + "protocol_id": 35 + }, + "minecraft:soul": { + "protocol_id": 48 + }, + "minecraft:soul_fire_flame": { + "protocol_id": 47 + }, + "minecraft:spit": { + "protocol_id": 72 + }, + "minecraft:splash": { + "protocol_id": 77 + }, + "minecraft:spore_blossom_air": { + "protocol_id": 94 + }, + "minecraft:squid_ink": { + "protocol_id": 73 + }, + "minecraft:sulfur_bubbles": { + "protocol_id": 4 + }, + "minecraft:sulfur_cube_goo": { + "protocol_id": 124 + }, + "minecraft:sweep_attack": { + "protocol_id": 74 + }, + "minecraft:tinted_leaves": { + "protocol_id": 43 + }, + "minecraft:totem_of_undying": { + "protocol_id": 75 + }, + "minecraft:trail": { + "protocol_id": 56 + }, + "minecraft:trial_omen": { + "protocol_id": 121 + }, + "minecraft:trial_spawner_detection": { + "protocol_id": 115 + }, + "minecraft:trial_spawner_detection_ominous": { + "protocol_id": 116 + }, + "minecraft:underwater": { + "protocol_id": 76 + }, + "minecraft:vault_connection": { + "protocol_id": 117 + }, + "minecraft:vibration": { + "protocol_id": 55 + }, + "minecraft:warped_spore": { + "protocol_id": 93 + }, + "minecraft:wax_off": { + "protocol_id": 109 + }, + "minecraft:wax_on": { + "protocol_id": 108 + }, + "minecraft:white_ash": { + "protocol_id": 99 + }, + "minecraft:white_smoke": { + "protocol_id": 70 + }, + "minecraft:witch": { + "protocol_id": 78 } }, "protocol_id": 9 @@ -14159,19 +14450,19 @@ "protocol_id": 139 }, "minecraft:block.bamboo_wood_hanging_sign.break": { - "protocol_id": 798 - }, - "minecraft:block.bamboo_wood_hanging_sign.fall": { - "protocol_id": 799 - }, - "minecraft:block.bamboo_wood_hanging_sign.hit": { "protocol_id": 800 }, - "minecraft:block.bamboo_wood_hanging_sign.place": { + "minecraft:block.bamboo_wood_hanging_sign.fall": { "protocol_id": 801 }, + "minecraft:block.bamboo_wood_hanging_sign.hit": { + "protocol_id": 802 + }, + "minecraft:block.bamboo_wood_hanging_sign.place": { + "protocol_id": 803 + }, "minecraft:block.bamboo_wood_hanging_sign.step": { - "protocol_id": 797 + "protocol_id": 799 }, "minecraft:block.bamboo_wood_pressure_plate.click_off": { "protocol_id": 136 @@ -14255,10 +14546,10 @@ "protocol_id": 173 }, "minecraft:block.big_dripleaf.tilt_down": { - "protocol_id": 558 + "protocol_id": 560 }, "minecraft:block.big_dripleaf.tilt_up": { - "protocol_id": 559 + "protocol_id": 561 }, "minecraft:block.blastfurnace.fire_crackle": { "protocol_id": 194 @@ -14297,2122 +14588,2200 @@ "protocol_id": 221 }, "minecraft:block.cactus_flower.break": { - "protocol_id": 239 - }, - "minecraft:block.cactus_flower.place": { - "protocol_id": 240 - }, - "minecraft:block.cake.add_candle": { "protocol_id": 241 }, - "minecraft:block.calcite.break": { + "minecraft:block.cactus_flower.place": { "protocol_id": 242 }, - "minecraft:block.calcite.fall": { - "protocol_id": 246 - }, - "minecraft:block.calcite.hit": { - "protocol_id": 245 - }, - "minecraft:block.calcite.place": { - "protocol_id": 244 - }, - "minecraft:block.calcite.step": { + "minecraft:block.cake.add_candle": { "protocol_id": 243 }, + "minecraft:block.calcite.break": { + "protocol_id": 244 + }, + "minecraft:block.calcite.fall": { + "protocol_id": 248 + }, + "minecraft:block.calcite.hit": { + "protocol_id": 247 + }, + "minecraft:block.calcite.place": { + "protocol_id": 246 + }, + "minecraft:block.calcite.step": { + "protocol_id": 245 + }, "minecraft:block.campfire.crackle": { - "protocol_id": 269 - }, - "minecraft:block.candle.ambient": { - "protocol_id": 270 - }, - "minecraft:block.candle.break": { "protocol_id": 271 }, - "minecraft:block.candle.extinguish": { + "minecraft:block.candle.ambient": { "protocol_id": 272 }, - "minecraft:block.candle.fall": { + "minecraft:block.candle.break": { "protocol_id": 273 }, - "minecraft:block.candle.hit": { + "minecraft:block.candle.extinguish": { "protocol_id": 274 }, - "minecraft:block.candle.place": { + "minecraft:block.candle.fall": { "protocol_id": 275 }, - "minecraft:block.candle.step": { + "minecraft:block.candle.hit": { "protocol_id": 276 }, + "minecraft:block.candle.place": { + "protocol_id": 277 + }, + "minecraft:block.candle.step": { + "protocol_id": 278 + }, "minecraft:block.cave_vines.break": { - "protocol_id": 304 - }, - "minecraft:block.cave_vines.fall": { - "protocol_id": 305 - }, - "minecraft:block.cave_vines.hit": { "protocol_id": 306 }, - "minecraft:block.cave_vines.pick_berries": { - "protocol_id": 309 - }, - "minecraft:block.cave_vines.place": { + "minecraft:block.cave_vines.fall": { "protocol_id": 307 }, - "minecraft:block.cave_vines.step": { + "minecraft:block.cave_vines.hit": { "protocol_id": 308 }, - "minecraft:block.chain.break": { - "protocol_id": 310 - }, - "minecraft:block.chain.fall": { + "minecraft:block.cave_vines.pick_berries": { "protocol_id": 311 }, - "minecraft:block.chain.hit": { + "minecraft:block.cave_vines.place": { + "protocol_id": 309 + }, + "minecraft:block.cave_vines.step": { + "protocol_id": 310 + }, + "minecraft:block.chain.break": { "protocol_id": 312 }, - "minecraft:block.chain.place": { + "minecraft:block.chain.fall": { "protocol_id": 313 }, - "minecraft:block.chain.step": { + "minecraft:block.chain.hit": { "protocol_id": 314 }, - "minecraft:block.cherry_leaves.break": { - "protocol_id": 325 - }, - "minecraft:block.cherry_leaves.fall": { - "protocol_id": 326 - }, - "minecraft:block.cherry_leaves.hit": { - "protocol_id": 327 - }, - "minecraft:block.cherry_leaves.place": { - "protocol_id": 328 - }, - "minecraft:block.cherry_leaves.step": { - "protocol_id": 329 - }, - "minecraft:block.cherry_sapling.break": { - "protocol_id": 320 - }, - "minecraft:block.cherry_sapling.fall": { - "protocol_id": 321 - }, - "minecraft:block.cherry_sapling.hit": { - "protocol_id": 322 - }, - "minecraft:block.cherry_sapling.place": { - "protocol_id": 323 - }, - "minecraft:block.cherry_sapling.step": { - "protocol_id": 324 - }, - "minecraft:block.cherry_wood.break": { + "minecraft:block.chain.place": { "protocol_id": 315 }, - "minecraft:block.cherry_wood.fall": { + "minecraft:block.chain.step": { "protocol_id": 316 }, - "minecraft:block.cherry_wood.hit": { - "protocol_id": 317 + "minecraft:block.cherry_leaves.break": { + "protocol_id": 327 }, - "minecraft:block.cherry_wood.place": { - "protocol_id": 318 + "minecraft:block.cherry_leaves.fall": { + "protocol_id": 328 }, - "minecraft:block.cherry_wood.step": { - "protocol_id": 319 + "minecraft:block.cherry_leaves.hit": { + "protocol_id": 329 }, - "minecraft:block.cherry_wood_button.click_off": { - "protocol_id": 339 - }, - "minecraft:block.cherry_wood_button.click_on": { - "protocol_id": 340 - }, - "minecraft:block.cherry_wood_door.close": { - "protocol_id": 335 - }, - "minecraft:block.cherry_wood_door.open": { - "protocol_id": 336 - }, - "minecraft:block.cherry_wood_fence_gate.close": { - "protocol_id": 343 - }, - "minecraft:block.cherry_wood_fence_gate.open": { - "protocol_id": 344 - }, - "minecraft:block.cherry_wood_hanging_sign.break": { - "protocol_id": 331 - }, - "minecraft:block.cherry_wood_hanging_sign.fall": { - "protocol_id": 332 - }, - "minecraft:block.cherry_wood_hanging_sign.hit": { - "protocol_id": 333 - }, - "minecraft:block.cherry_wood_hanging_sign.place": { - "protocol_id": 334 - }, - "minecraft:block.cherry_wood_hanging_sign.step": { + "minecraft:block.cherry_leaves.place": { "protocol_id": 330 }, - "minecraft:block.cherry_wood_pressure_plate.click_off": { + "minecraft:block.cherry_leaves.step": { + "protocol_id": 331 + }, + "minecraft:block.cherry_sapling.break": { + "protocol_id": 322 + }, + "minecraft:block.cherry_sapling.fall": { + "protocol_id": 323 + }, + "minecraft:block.cherry_sapling.hit": { + "protocol_id": 324 + }, + "minecraft:block.cherry_sapling.place": { + "protocol_id": 325 + }, + "minecraft:block.cherry_sapling.step": { + "protocol_id": 326 + }, + "minecraft:block.cherry_wood.break": { + "protocol_id": 317 + }, + "minecraft:block.cherry_wood.fall": { + "protocol_id": 318 + }, + "minecraft:block.cherry_wood.hit": { + "protocol_id": 319 + }, + "minecraft:block.cherry_wood.place": { + "protocol_id": 320 + }, + "minecraft:block.cherry_wood.step": { + "protocol_id": 321 + }, + "minecraft:block.cherry_wood_button.click_off": { "protocol_id": 341 }, - "minecraft:block.cherry_wood_pressure_plate.click_on": { + "minecraft:block.cherry_wood_button.click_on": { "protocol_id": 342 }, - "minecraft:block.cherry_wood_trapdoor.close": { + "minecraft:block.cherry_wood_door.close": { "protocol_id": 337 }, - "minecraft:block.cherry_wood_trapdoor.open": { + "minecraft:block.cherry_wood_door.open": { "protocol_id": 338 }, - "minecraft:block.chest.close": { + "minecraft:block.cherry_wood_fence_gate.close": { "protocol_id": 345 }, - "minecraft:block.chest.locked": { + "minecraft:block.cherry_wood_fence_gate.open": { "protocol_id": 346 }, - "minecraft:block.chest.open": { + "minecraft:block.cherry_wood_hanging_sign.break": { + "protocol_id": 333 + }, + "minecraft:block.cherry_wood_hanging_sign.fall": { + "protocol_id": 334 + }, + "minecraft:block.cherry_wood_hanging_sign.hit": { + "protocol_id": 335 + }, + "minecraft:block.cherry_wood_hanging_sign.place": { + "protocol_id": 336 + }, + "minecraft:block.cherry_wood_hanging_sign.step": { + "protocol_id": 332 + }, + "minecraft:block.cherry_wood_pressure_plate.click_off": { + "protocol_id": 343 + }, + "minecraft:block.cherry_wood_pressure_plate.click_on": { + "protocol_id": 344 + }, + "minecraft:block.cherry_wood_trapdoor.close": { + "protocol_id": 339 + }, + "minecraft:block.cherry_wood_trapdoor.open": { + "protocol_id": 340 + }, + "minecraft:block.chest.close": { "protocol_id": 347 }, + "minecraft:block.chest.locked": { + "protocol_id": 348 + }, + "minecraft:block.chest.open": { + "protocol_id": 349 + }, "minecraft:block.chiseled_bookshelf.break": { - "protocol_id": 360 - }, - "minecraft:block.chiseled_bookshelf.fall": { - "protocol_id": 361 - }, - "minecraft:block.chiseled_bookshelf.hit": { "protocol_id": 362 }, - "minecraft:block.chiseled_bookshelf.insert": { + "minecraft:block.chiseled_bookshelf.fall": { "protocol_id": 363 }, - "minecraft:block.chiseled_bookshelf.insert.enchanted": { + "minecraft:block.chiseled_bookshelf.hit": { "protocol_id": 364 }, - "minecraft:block.chiseled_bookshelf.pickup": { - "protocol_id": 366 - }, - "minecraft:block.chiseled_bookshelf.pickup.enchanted": { - "protocol_id": 367 - }, - "minecraft:block.chiseled_bookshelf.place": { - "protocol_id": 368 - }, - "minecraft:block.chiseled_bookshelf.step": { + "minecraft:block.chiseled_bookshelf.insert": { "protocol_id": 365 }, - "minecraft:block.chorus_flower.death": { + "minecraft:block.chiseled_bookshelf.insert.enchanted": { + "protocol_id": 366 + }, + "minecraft:block.chiseled_bookshelf.pickup": { + "protocol_id": 368 + }, + "minecraft:block.chiseled_bookshelf.pickup.enchanted": { "protocol_id": 369 }, - "minecraft:block.chorus_flower.grow": { + "minecraft:block.chiseled_bookshelf.place": { "protocol_id": 370 }, - "minecraft:block.cobweb.break": { + "minecraft:block.chiseled_bookshelf.step": { + "protocol_id": 367 + }, + "minecraft:block.chorus_flower.death": { + "protocol_id": 371 + }, + "minecraft:block.chorus_flower.grow": { "protocol_id": 372 }, - "minecraft:block.cobweb.fall": { - "protocol_id": 376 + "minecraft:block.cinnabar.break": { + "protocol_id": 1926 }, - "minecraft:block.cobweb.hit": { - "protocol_id": 375 + "minecraft:block.cinnabar.fall": { + "protocol_id": 1930 }, - "minecraft:block.cobweb.place": { + "minecraft:block.cinnabar.hit": { + "protocol_id": 1929 + }, + "minecraft:block.cinnabar.place": { + "protocol_id": 1928 + }, + "minecraft:block.cinnabar.step": { + "protocol_id": 1927 + }, + "minecraft:block.cobweb.break": { "protocol_id": 374 }, + "minecraft:block.cobweb.fall": { + "protocol_id": 378 + }, + "minecraft:block.cobweb.hit": { + "protocol_id": 377 + }, + "minecraft:block.cobweb.place": { + "protocol_id": 376 + }, "minecraft:block.cobweb.step": { - "protocol_id": 373 + "protocol_id": 375 }, "minecraft:block.comparator.click": { - "protocol_id": 381 - }, - "minecraft:block.composter.empty": { - "protocol_id": 382 - }, - "minecraft:block.composter.fill": { "protocol_id": 383 }, - "minecraft:block.composter.fill_success": { + "minecraft:block.composter.empty": { "protocol_id": 384 }, - "minecraft:block.composter.ready": { + "minecraft:block.composter.fill": { "protocol_id": 385 }, - "minecraft:block.conduit.activate": { + "minecraft:block.composter.fill_success": { "protocol_id": 386 }, - "minecraft:block.conduit.ambient": { + "minecraft:block.composter.ready": { "protocol_id": 387 }, - "minecraft:block.conduit.ambient.short": { + "minecraft:block.conduit.activate": { "protocol_id": 388 }, - "minecraft:block.conduit.attack.target": { + "minecraft:block.conduit.ambient": { "protocol_id": 389 }, - "minecraft:block.conduit.deactivate": { + "minecraft:block.conduit.ambient.short": { "protocol_id": 390 }, - "minecraft:block.copper.break": { - "protocol_id": 398 - }, - "minecraft:block.copper.fall": { - "protocol_id": 402 - }, - "minecraft:block.copper.hit": { - "protocol_id": 401 - }, - "minecraft:block.copper.place": { - "protocol_id": 400 - }, - "minecraft:block.copper.step": { - "protocol_id": 399 - }, - "minecraft:block.copper_bulb.break": { + "minecraft:block.conduit.attack.target": { "protocol_id": 391 }, - "minecraft:block.copper_bulb.fall": { - "protocol_id": 395 - }, - "minecraft:block.copper_bulb.hit": { - "protocol_id": 394 - }, - "minecraft:block.copper_bulb.place": { - "protocol_id": 393 - }, - "minecraft:block.copper_bulb.step": { + "minecraft:block.conduit.deactivate": { "protocol_id": 392 }, - "minecraft:block.copper_bulb.turn_off": { - "protocol_id": 397 + "minecraft:block.copper.break": { + "protocol_id": 400 }, - "minecraft:block.copper_bulb.turn_on": { - "protocol_id": 396 - }, - "minecraft:block.copper_chest.close": { - "protocol_id": 403 - }, - "minecraft:block.copper_chest.open": { + "minecraft:block.copper.fall": { "protocol_id": 404 }, - "minecraft:block.copper_chest_oxidized.close": { - "protocol_id": 407 + "minecraft:block.copper.hit": { + "protocol_id": 403 }, - "minecraft:block.copper_chest_oxidized.open": { - "protocol_id": 408 + "minecraft:block.copper.place": { + "protocol_id": 402 }, - "minecraft:block.copper_chest_weathered.close": { + "minecraft:block.copper.step": { + "protocol_id": 401 + }, + "minecraft:block.copper_bulb.break": { + "protocol_id": 393 + }, + "minecraft:block.copper_bulb.fall": { + "protocol_id": 397 + }, + "minecraft:block.copper_bulb.hit": { + "protocol_id": 396 + }, + "minecraft:block.copper_bulb.place": { + "protocol_id": 395 + }, + "minecraft:block.copper_bulb.step": { + "protocol_id": 394 + }, + "minecraft:block.copper_bulb.turn_off": { + "protocol_id": 399 + }, + "minecraft:block.copper_bulb.turn_on": { + "protocol_id": 398 + }, + "minecraft:block.copper_chest.close": { "protocol_id": 405 }, - "minecraft:block.copper_chest_weathered.open": { + "minecraft:block.copper_chest.open": { "protocol_id": 406 }, - "minecraft:block.copper_door.close": { + "minecraft:block.copper_chest_oxidized.close": { "protocol_id": 409 }, - "minecraft:block.copper_door.open": { + "minecraft:block.copper_chest_oxidized.open": { "protocol_id": 410 }, + "minecraft:block.copper_chest_weathered.close": { + "protocol_id": 407 + }, + "minecraft:block.copper_chest_weathered.open": { + "protocol_id": 408 + }, + "minecraft:block.copper_door.close": { + "protocol_id": 411 + }, + "minecraft:block.copper_door.open": { + "protocol_id": 412 + }, "minecraft:block.copper_golem_statue.break": { - "protocol_id": 428 - }, - "minecraft:block.copper_golem_statue.fall": { - "protocol_id": 432 - }, - "minecraft:block.copper_golem_statue.hit": { "protocol_id": 430 }, - "minecraft:block.copper_golem_statue.place": { - "protocol_id": 429 + "minecraft:block.copper_golem_statue.fall": { + "protocol_id": 434 }, - "minecraft:block.copper_golem_statue.step": { + "minecraft:block.copper_golem_statue.hit": { + "protocol_id": 432 + }, + "minecraft:block.copper_golem_statue.place": { "protocol_id": 431 }, + "minecraft:block.copper_golem_statue.step": { + "protocol_id": 433 + }, "minecraft:block.copper_grate.break": { - "protocol_id": 435 - }, - "minecraft:block.copper_grate.fall": { - "protocol_id": 439 - }, - "minecraft:block.copper_grate.hit": { - "protocol_id": 438 - }, - "minecraft:block.copper_grate.place": { "protocol_id": 437 }, - "minecraft:block.copper_grate.step": { - "protocol_id": 436 - }, - "minecraft:block.copper_trapdoor.close": { - "protocol_id": 440 - }, - "minecraft:block.copper_trapdoor.open": { + "minecraft:block.copper_grate.fall": { "protocol_id": 441 }, - "minecraft:block.coral_block.break": { + "minecraft:block.copper_grate.hit": { + "protocol_id": 440 + }, + "minecraft:block.copper_grate.place": { + "protocol_id": 439 + }, + "minecraft:block.copper_grate.step": { + "protocol_id": 438 + }, + "minecraft:block.copper_trapdoor.close": { "protocol_id": 442 }, - "minecraft:block.coral_block.fall": { + "minecraft:block.copper_trapdoor.open": { "protocol_id": 443 }, - "minecraft:block.coral_block.hit": { + "minecraft:block.coral_block.break": { "protocol_id": 444 }, - "minecraft:block.coral_block.place": { + "minecraft:block.coral_block.fall": { "protocol_id": 445 }, - "minecraft:block.coral_block.step": { + "minecraft:block.coral_block.hit": { "protocol_id": 446 }, + "minecraft:block.coral_block.place": { + "protocol_id": 447 + }, + "minecraft:block.coral_block.step": { + "protocol_id": 448 + }, "minecraft:block.crafter.craft": { - "protocol_id": 456 + "protocol_id": 458 }, "minecraft:block.crafter.fail": { - "protocol_id": 457 + "protocol_id": 459 }, "minecraft:block.creaking_heart.break": { - "protocol_id": 469 - }, - "minecraft:block.creaking_heart.fall": { - "protocol_id": 470 - }, - "minecraft:block.creaking_heart.hit": { "protocol_id": 471 }, - "minecraft:block.creaking_heart.hurt": { + "minecraft:block.creaking_heart.fall": { "protocol_id": 472 }, - "minecraft:block.creaking_heart.idle": { - "protocol_id": 475 - }, - "minecraft:block.creaking_heart.place": { + "minecraft:block.creaking_heart.hit": { "protocol_id": 473 }, - "minecraft:block.creaking_heart.spawn": { - "protocol_id": 476 - }, - "minecraft:block.creaking_heart.step": { + "minecraft:block.creaking_heart.hurt": { "protocol_id": 474 }, + "minecraft:block.creaking_heart.idle": { + "protocol_id": 477 + }, + "minecraft:block.creaking_heart.place": { + "protocol_id": 475 + }, + "minecraft:block.creaking_heart.spawn": { + "protocol_id": 478 + }, + "minecraft:block.creaking_heart.step": { + "protocol_id": 476 + }, "minecraft:block.crop.break": { - "protocol_id": 480 + "protocol_id": 482 }, "minecraft:block.deadbush.idle": { - "protocol_id": 490 - }, - "minecraft:block.decorated_pot.break": { - "protocol_id": 491 - }, - "minecraft:block.decorated_pot.fall": { "protocol_id": 492 }, - "minecraft:block.decorated_pot.hit": { + "minecraft:block.decorated_pot.break": { "protocol_id": 493 }, - "minecraft:block.decorated_pot.insert": { + "minecraft:block.decorated_pot.fall": { "protocol_id": 494 }, - "minecraft:block.decorated_pot.insert_fail": { + "minecraft:block.decorated_pot.hit": { "protocol_id": 495 }, - "minecraft:block.decorated_pot.place": { - "protocol_id": 497 - }, - "minecraft:block.decorated_pot.shatter": { - "protocol_id": 498 - }, - "minecraft:block.decorated_pot.step": { + "minecraft:block.decorated_pot.insert": { "protocol_id": 496 }, - "minecraft:block.deepslate.break": { - "protocol_id": 504 + "minecraft:block.decorated_pot.insert_fail": { + "protocol_id": 497 }, - "minecraft:block.deepslate.fall": { - "protocol_id": 505 - }, - "minecraft:block.deepslate.hit": { - "protocol_id": 506 - }, - "minecraft:block.deepslate.place": { - "protocol_id": 507 - }, - "minecraft:block.deepslate.step": { - "protocol_id": 508 - }, - "minecraft:block.deepslate_bricks.break": { + "minecraft:block.decorated_pot.place": { "protocol_id": 499 }, - "minecraft:block.deepslate_bricks.fall": { + "minecraft:block.decorated_pot.shatter": { "protocol_id": 500 }, - "minecraft:block.deepslate_bricks.hit": { - "protocol_id": 501 + "minecraft:block.decorated_pot.step": { + "protocol_id": 498 }, - "minecraft:block.deepslate_bricks.place": { - "protocol_id": 502 + "minecraft:block.deepslate.break": { + "protocol_id": 506 }, - "minecraft:block.deepslate_bricks.step": { - "protocol_id": 503 + "minecraft:block.deepslate.fall": { + "protocol_id": 507 }, - "minecraft:block.deepslate_tiles.break": { + "minecraft:block.deepslate.hit": { + "protocol_id": 508 + }, + "minecraft:block.deepslate.place": { "protocol_id": 509 }, - "minecraft:block.deepslate_tiles.fall": { + "minecraft:block.deepslate.step": { "protocol_id": 510 }, - "minecraft:block.deepslate_tiles.hit": { + "minecraft:block.deepslate_bricks.break": { + "protocol_id": 501 + }, + "minecraft:block.deepslate_bricks.fall": { + "protocol_id": 502 + }, + "minecraft:block.deepslate_bricks.hit": { + "protocol_id": 503 + }, + "minecraft:block.deepslate_bricks.place": { + "protocol_id": 504 + }, + "minecraft:block.deepslate_bricks.step": { + "protocol_id": 505 + }, + "minecraft:block.deepslate_tiles.break": { "protocol_id": 511 }, - "minecraft:block.deepslate_tiles.place": { + "minecraft:block.deepslate_tiles.fall": { "protocol_id": 512 }, - "minecraft:block.deepslate_tiles.step": { + "minecraft:block.deepslate_tiles.hit": { "protocol_id": 513 }, - "minecraft:block.dispenser.dispense": { + "minecraft:block.deepslate_tiles.place": { "protocol_id": 514 }, - "minecraft:block.dispenser.fail": { + "minecraft:block.deepslate_tiles.step": { "protocol_id": 515 }, - "minecraft:block.dispenser.launch": { + "minecraft:block.dispenser.dispense": { "protocol_id": 516 }, + "minecraft:block.dispenser.fail": { + "protocol_id": 517 + }, + "minecraft:block.dispenser.launch": { + "protocol_id": 518 + }, "minecraft:block.dried_ghast.ambient": { - "protocol_id": 537 - }, - "minecraft:block.dried_ghast.ambient_water": { - "protocol_id": 538 - }, - "minecraft:block.dried_ghast.break": { - "protocol_id": 534 - }, - "minecraft:block.dried_ghast.fall": { - "protocol_id": 536 - }, - "minecraft:block.dried_ghast.place": { "protocol_id": 539 }, - "minecraft:block.dried_ghast.place_in_water": { + "minecraft:block.dried_ghast.ambient_water": { "protocol_id": 540 }, - "minecraft:block.dried_ghast.step": { - "protocol_id": 535 + "minecraft:block.dried_ghast.break": { + "protocol_id": 536 }, - "minecraft:block.dried_ghast.transition": { + "minecraft:block.dried_ghast.fall": { + "protocol_id": 538 + }, + "minecraft:block.dried_ghast.place": { "protocol_id": 541 }, - "minecraft:block.dripstone_block.break": { + "minecraft:block.dried_ghast.place_in_water": { "protocol_id": 542 }, - "minecraft:block.dripstone_block.fall": { - "protocol_id": 546 + "minecraft:block.dried_ghast.step": { + "protocol_id": 537 }, - "minecraft:block.dripstone_block.hit": { - "protocol_id": 545 - }, - "minecraft:block.dripstone_block.place": { - "protocol_id": 544 - }, - "minecraft:block.dripstone_block.step": { + "minecraft:block.dried_ghast.transition": { "protocol_id": 543 }, - "minecraft:block.dry_grass.ambient": { - "protocol_id": 547 + "minecraft:block.dripstone_block.break": { + "protocol_id": 544 }, - "minecraft:block.enchantment_table.use": { - "protocol_id": 580 - }, - "minecraft:block.end_gateway.spawn": { - "protocol_id": 603 - }, - "minecraft:block.end_portal.spawn": { - "protocol_id": 605 - }, - "minecraft:block.end_portal_frame.fill": { - "protocol_id": 604 - }, - "minecraft:block.ender_chest.close": { - "protocol_id": 581 - }, - "minecraft:block.ender_chest.open": { - "protocol_id": 582 - }, - "minecraft:block.eyeblossom.close": { - "protocol_id": 620 - }, - "minecraft:block.eyeblossom.close_long": { - "protocol_id": 619 - }, - "minecraft:block.eyeblossom.idle": { - "protocol_id": 621 - }, - "minecraft:block.eyeblossom.open": { - "protocol_id": 618 - }, - "minecraft:block.eyeblossom.open_long": { - "protocol_id": 617 - }, - "minecraft:block.fence_gate.close": { - "protocol_id": 622 - }, - "minecraft:block.fence_gate.open": { - "protocol_id": 623 - }, - "minecraft:block.fire.ambient": { - "protocol_id": 634 - }, - "minecraft:block.fire.extinguish": { - "protocol_id": 635 - }, - "minecraft:block.firefly_bush.idle": { - "protocol_id": 625 - }, - "minecraft:block.flowering_azalea.break": { - "protocol_id": 641 - }, - "minecraft:block.flowering_azalea.fall": { - "protocol_id": 642 - }, - "minecraft:block.flowering_azalea.hit": { - "protocol_id": 643 - }, - "minecraft:block.flowering_azalea.place": { - "protocol_id": 644 - }, - "minecraft:block.flowering_azalea.step": { - "protocol_id": 645 - }, - "minecraft:block.froglight.break": { - "protocol_id": 667 - }, - "minecraft:block.froglight.fall": { - "protocol_id": 668 - }, - "minecraft:block.froglight.hit": { - "protocol_id": 669 - }, - "minecraft:block.froglight.place": { - "protocol_id": 670 - }, - "minecraft:block.froglight.step": { - "protocol_id": 671 - }, - "minecraft:block.frogspawn.break": { - "protocol_id": 673 - }, - "minecraft:block.frogspawn.fall": { - "protocol_id": 674 - }, - "minecraft:block.frogspawn.hatch": { - "protocol_id": 675 - }, - "minecraft:block.frogspawn.hit": { - "protocol_id": 676 - }, - "minecraft:block.frogspawn.place": { - "protocol_id": 677 - }, - "minecraft:block.frogspawn.step": { - "protocol_id": 672 - }, - "minecraft:block.fungus.break": { - "protocol_id": 1132 - }, - "minecraft:block.fungus.fall": { - "protocol_id": 1136 - }, - "minecraft:block.fungus.hit": { - "protocol_id": 1135 - }, - "minecraft:block.fungus.place": { - "protocol_id": 1134 - }, - "minecraft:block.fungus.step": { - "protocol_id": 1133 - }, - "minecraft:block.furnace.fire_crackle": { - "protocol_id": 691 - }, - "minecraft:block.gilded_blackstone.break": { - "protocol_id": 713 - }, - "minecraft:block.gilded_blackstone.fall": { - "protocol_id": 714 - }, - "minecraft:block.gilded_blackstone.hit": { - "protocol_id": 715 - }, - "minecraft:block.gilded_blackstone.place": { - "protocol_id": 716 - }, - "minecraft:block.gilded_blackstone.step": { - "protocol_id": 717 - }, - "minecraft:block.glass.break": { - "protocol_id": 718 - }, - "minecraft:block.glass.fall": { - "protocol_id": 719 - }, - "minecraft:block.glass.hit": { - "protocol_id": 720 - }, - "minecraft:block.glass.place": { - "protocol_id": 721 - }, - "minecraft:block.glass.step": { - "protocol_id": 722 - }, - "minecraft:block.grass.break": { - "protocol_id": 753 - }, - "minecraft:block.grass.fall": { - "protocol_id": 754 - }, - "minecraft:block.grass.hit": { - "protocol_id": 755 - }, - "minecraft:block.grass.place": { - "protocol_id": 756 - }, - "minecraft:block.grass.step": { - "protocol_id": 757 - }, - "minecraft:block.gravel.break": { - "protocol_id": 758 - }, - "minecraft:block.gravel.fall": { - "protocol_id": 759 - }, - "minecraft:block.gravel.hit": { - "protocol_id": 760 - }, - "minecraft:block.gravel.place": { - "protocol_id": 761 - }, - "minecraft:block.gravel.step": { - "protocol_id": 762 - }, - "minecraft:block.grindstone.use": { - "protocol_id": 763 - }, - "minecraft:block.growing_plant.crop": { - "protocol_id": 764 - }, - "minecraft:block.hanging_roots.break": { - "protocol_id": 773 - }, - "minecraft:block.hanging_roots.fall": { - "protocol_id": 774 - }, - "minecraft:block.hanging_roots.hit": { - "protocol_id": 775 - }, - "minecraft:block.hanging_roots.place": { - "protocol_id": 776 - }, - "minecraft:block.hanging_roots.step": { - "protocol_id": 777 - }, - "minecraft:block.hanging_sign.break": { - "protocol_id": 779 - }, - "minecraft:block.hanging_sign.fall": { - "protocol_id": 780 - }, - "minecraft:block.hanging_sign.hit": { - "protocol_id": 781 - }, - "minecraft:block.hanging_sign.place": { - "protocol_id": 782 - }, - "minecraft:block.hanging_sign.step": { - "protocol_id": 778 - }, - "minecraft:block.hanging_sign.waxed_interact_fail": { - "protocol_id": 1745 - }, - "minecraft:block.heavy_core.break": { - "protocol_id": 787 - }, - "minecraft:block.heavy_core.fall": { - "protocol_id": 788 - }, - "minecraft:block.heavy_core.hit": { - "protocol_id": 789 - }, - "minecraft:block.heavy_core.place": { - "protocol_id": 790 - }, - "minecraft:block.heavy_core.step": { - "protocol_id": 791 - }, - "minecraft:block.honey_block.break": { - "protocol_id": 831 - }, - "minecraft:block.honey_block.fall": { - "protocol_id": 832 - }, - "minecraft:block.honey_block.hit": { - "protocol_id": 833 - }, - "minecraft:block.honey_block.place": { - "protocol_id": 834 - }, - "minecraft:block.honey_block.slide": { - "protocol_id": 835 - }, - "minecraft:block.honey_block.step": { - "protocol_id": 836 - }, - "minecraft:block.iron.break": { - "protocol_id": 888 - }, - "minecraft:block.iron.fall": { - "protocol_id": 892 - }, - "minecraft:block.iron.hit": { - "protocol_id": 891 - }, - "minecraft:block.iron.place": { - "protocol_id": 890 - }, - "minecraft:block.iron.step": { - "protocol_id": 889 - }, - "minecraft:block.iron_door.close": { - "protocol_id": 893 - }, - "minecraft:block.iron_door.open": { - "protocol_id": 894 - }, - "minecraft:block.iron_trapdoor.close": { - "protocol_id": 901 - }, - "minecraft:block.iron_trapdoor.open": { - "protocol_id": 902 - }, - "minecraft:block.ladder.break": { - "protocol_id": 910 - }, - "minecraft:block.ladder.fall": { - "protocol_id": 911 - }, - "minecraft:block.ladder.hit": { - "protocol_id": 912 - }, - "minecraft:block.ladder.place": { - "protocol_id": 913 - }, - "minecraft:block.ladder.step": { - "protocol_id": 914 - }, - "minecraft:block.lantern.break": { - "protocol_id": 915 - }, - "minecraft:block.lantern.fall": { - "protocol_id": 916 - }, - "minecraft:block.lantern.hit": { - "protocol_id": 917 - }, - "minecraft:block.lantern.place": { - "protocol_id": 918 - }, - "minecraft:block.lantern.step": { - "protocol_id": 919 - }, - "minecraft:block.large_amethyst_bud.break": { - "protocol_id": 920 - }, - "minecraft:block.large_amethyst_bud.place": { - "protocol_id": 921 - }, - "minecraft:block.lava.ambient": { - "protocol_id": 922 - }, - "minecraft:block.lava.extinguish": { - "protocol_id": 923 - }, - "minecraft:block.lava.pop": { - "protocol_id": 924 - }, - "minecraft:block.leaf_litter.break": { - "protocol_id": 925 - }, - "minecraft:block.leaf_litter.fall": { - "protocol_id": 929 - }, - "minecraft:block.leaf_litter.hit": { - "protocol_id": 928 - }, - "minecraft:block.leaf_litter.place": { - "protocol_id": 927 - }, - "minecraft:block.leaf_litter.step": { - "protocol_id": 926 - }, - "minecraft:block.lever.click": { - "protocol_id": 933 - }, - "minecraft:block.lily_pad.place": { - "protocol_id": 1714 - }, - "minecraft:block.lodestone.break": { - "protocol_id": 948 - }, - "minecraft:block.lodestone.fall": { - "protocol_id": 952 - }, - "minecraft:block.lodestone.hit": { - "protocol_id": 951 - }, - "minecraft:block.lodestone.place": { - "protocol_id": 950 - }, - "minecraft:block.lodestone.step": { - "protocol_id": 949 - }, - "minecraft:block.mangrove_roots.break": { - "protocol_id": 966 - }, - "minecraft:block.mangrove_roots.fall": { - "protocol_id": 967 - }, - "minecraft:block.mangrove_roots.hit": { - "protocol_id": 968 - }, - "minecraft:block.mangrove_roots.place": { - "protocol_id": 969 - }, - "minecraft:block.mangrove_roots.step": { - "protocol_id": 970 - }, - "minecraft:block.medium_amethyst_bud.break": { - "protocol_id": 971 - }, - "minecraft:block.medium_amethyst_bud.place": { - "protocol_id": 972 - }, - "minecraft:block.metal.break": { - "protocol_id": 973 - }, - "minecraft:block.metal.fall": { - "protocol_id": 974 - }, - "minecraft:block.metal.hit": { - "protocol_id": 975 - }, - "minecraft:block.metal.place": { - "protocol_id": 976 - }, - "minecraft:block.metal.step": { - "protocol_id": 979 - }, - "minecraft:block.metal_pressure_plate.click_off": { - "protocol_id": 977 - }, - "minecraft:block.metal_pressure_plate.click_on": { - "protocol_id": 978 - }, - "minecraft:block.moss.break": { - "protocol_id": 998 - }, - "minecraft:block.moss.fall": { - "protocol_id": 999 - }, - "minecraft:block.moss.hit": { - "protocol_id": 1000 - }, - "minecraft:block.moss.place": { - "protocol_id": 1001 - }, - "minecraft:block.moss.step": { - "protocol_id": 1002 - }, - "minecraft:block.moss_carpet.break": { - "protocol_id": 988 - }, - "minecraft:block.moss_carpet.fall": { - "protocol_id": 989 - }, - "minecraft:block.moss_carpet.hit": { - "protocol_id": 990 - }, - "minecraft:block.moss_carpet.place": { - "protocol_id": 991 - }, - "minecraft:block.moss_carpet.step": { - "protocol_id": 992 - }, - "minecraft:block.mud.break": { - "protocol_id": 1003 - }, - "minecraft:block.mud.fall": { - "protocol_id": 1004 - }, - "minecraft:block.mud.hit": { - "protocol_id": 1005 - }, - "minecraft:block.mud.place": { - "protocol_id": 1006 - }, - "minecraft:block.mud.step": { - "protocol_id": 1007 - }, - "minecraft:block.mud_bricks.break": { - "protocol_id": 1008 - }, - "minecraft:block.mud_bricks.fall": { - "protocol_id": 1009 - }, - "minecraft:block.mud_bricks.hit": { - "protocol_id": 1010 - }, - "minecraft:block.mud_bricks.place": { - "protocol_id": 1011 - }, - "minecraft:block.mud_bricks.step": { - "protocol_id": 1012 - }, - "minecraft:block.muddy_mangrove_roots.break": { - "protocol_id": 1013 - }, - "minecraft:block.muddy_mangrove_roots.fall": { - "protocol_id": 1014 - }, - "minecraft:block.muddy_mangrove_roots.hit": { - "protocol_id": 1015 - }, - "minecraft:block.muddy_mangrove_roots.place": { - "protocol_id": 1016 - }, - "minecraft:block.muddy_mangrove_roots.step": { - "protocol_id": 1017 - }, - "minecraft:block.nether_bricks.break": { - "protocol_id": 1089 - }, - "minecraft:block.nether_bricks.fall": { - "protocol_id": 1093 - }, - "minecraft:block.nether_bricks.hit": { - "protocol_id": 1092 - }, - "minecraft:block.nether_bricks.place": { - "protocol_id": 1091 - }, - "minecraft:block.nether_bricks.step": { - "protocol_id": 1090 - }, - "minecraft:block.nether_gold_ore.break": { - "protocol_id": 1359 - }, - "minecraft:block.nether_gold_ore.fall": { - "protocol_id": 1360 - }, - "minecraft:block.nether_gold_ore.hit": { - "protocol_id": 1361 - }, - "minecraft:block.nether_gold_ore.place": { - "protocol_id": 1362 - }, - "minecraft:block.nether_gold_ore.step": { - "protocol_id": 1363 - }, - "minecraft:block.nether_ore.break": { - "protocol_id": 1364 - }, - "minecraft:block.nether_ore.fall": { - "protocol_id": 1365 - }, - "minecraft:block.nether_ore.hit": { - "protocol_id": 1366 - }, - "minecraft:block.nether_ore.place": { - "protocol_id": 1367 - }, - "minecraft:block.nether_ore.step": { - "protocol_id": 1368 - }, - "minecraft:block.nether_sprouts.break": { - "protocol_id": 1127 - }, - "minecraft:block.nether_sprouts.fall": { - "protocol_id": 1131 - }, - "minecraft:block.nether_sprouts.hit": { - "protocol_id": 1130 - }, - "minecraft:block.nether_sprouts.place": { - "protocol_id": 1129 - }, - "minecraft:block.nether_sprouts.step": { - "protocol_id": 1128 - }, - "minecraft:block.nether_wart.break": { - "protocol_id": 1094 - }, - "minecraft:block.nether_wood.break": { - "protocol_id": 1096 - }, - "minecraft:block.nether_wood.fall": { - "protocol_id": 1097 - }, - "minecraft:block.nether_wood.hit": { - "protocol_id": 1098 - }, - "minecraft:block.nether_wood.place": { - "protocol_id": 1099 - }, - "minecraft:block.nether_wood.step": { - "protocol_id": 1100 - }, - "minecraft:block.nether_wood_button.click_off": { - "protocol_id": 1105 - }, - "minecraft:block.nether_wood_button.click_on": { - "protocol_id": 1106 - }, - "minecraft:block.nether_wood_door.close": { - "protocol_id": 1101 - }, - "minecraft:block.nether_wood_door.open": { - "protocol_id": 1102 - }, - "minecraft:block.nether_wood_fence_gate.close": { - "protocol_id": 1109 - }, - "minecraft:block.nether_wood_fence_gate.open": { - "protocol_id": 1110 - }, - "minecraft:block.nether_wood_hanging_sign.break": { - "protocol_id": 793 - }, - "minecraft:block.nether_wood_hanging_sign.fall": { - "protocol_id": 794 - }, - "minecraft:block.nether_wood_hanging_sign.hit": { - "protocol_id": 795 - }, - "minecraft:block.nether_wood_hanging_sign.place": { - "protocol_id": 796 - }, - "minecraft:block.nether_wood_hanging_sign.step": { - "protocol_id": 792 - }, - "minecraft:block.nether_wood_pressure_plate.click_off": { - "protocol_id": 1107 - }, - "minecraft:block.nether_wood_pressure_plate.click_on": { - "protocol_id": 1108 - }, - "minecraft:block.nether_wood_trapdoor.close": { - "protocol_id": 1103 - }, - "minecraft:block.nether_wood_trapdoor.open": { - "protocol_id": 1104 - }, - "minecraft:block.netherite_block.break": { - "protocol_id": 1147 - }, - "minecraft:block.netherite_block.fall": { - "protocol_id": 1151 - }, - "minecraft:block.netherite_block.hit": { - "protocol_id": 1150 - }, - "minecraft:block.netherite_block.place": { - "protocol_id": 1149 - }, - "minecraft:block.netherite_block.step": { - "protocol_id": 1148 - }, - "minecraft:block.netherrack.break": { - "protocol_id": 1152 - }, - "minecraft:block.netherrack.fall": { - "protocol_id": 1156 - }, - "minecraft:block.netherrack.hit": { - "protocol_id": 1155 - }, - "minecraft:block.netherrack.place": { - "protocol_id": 1154 - }, - "minecraft:block.netherrack.step": { - "protocol_id": 1153 - }, - "minecraft:block.note_block.banjo": { - "protocol_id": 1176 - }, - "minecraft:block.note_block.basedrum": { - "protocol_id": 1157 - }, - "minecraft:block.note_block.bass": { - "protocol_id": 1158 - }, - "minecraft:block.note_block.bell": { - "protocol_id": 1159 - }, - "minecraft:block.note_block.bit": { - "protocol_id": 1175 - }, - "minecraft:block.note_block.chime": { - "protocol_id": 1160 - }, - "minecraft:block.note_block.cow_bell": { - "protocol_id": 1173 - }, - "minecraft:block.note_block.didgeridoo": { - "protocol_id": 1174 - }, - "minecraft:block.note_block.flute": { - "protocol_id": 1161 - }, - "minecraft:block.note_block.guitar": { - "protocol_id": 1162 - }, - "minecraft:block.note_block.harp": { - "protocol_id": 1163 - }, - "minecraft:block.note_block.hat": { - "protocol_id": 1164 - }, - "minecraft:block.note_block.imitate.creeper": { - "protocol_id": 1179 - }, - "minecraft:block.note_block.imitate.ender_dragon": { - "protocol_id": 1180 - }, - "minecraft:block.note_block.imitate.piglin": { - "protocol_id": 1182 - }, - "minecraft:block.note_block.imitate.skeleton": { - "protocol_id": 1178 - }, - "minecraft:block.note_block.imitate.wither_skeleton": { - "protocol_id": 1181 - }, - "minecraft:block.note_block.imitate.zombie": { - "protocol_id": 1177 - }, - "minecraft:block.note_block.iron_xylophone": { - "protocol_id": 1172 - }, - "minecraft:block.note_block.pling": { - "protocol_id": 1165 - }, - "minecraft:block.note_block.snare": { - "protocol_id": 1166 - }, - "minecraft:block.note_block.trumpet": { - "protocol_id": 1167 - }, - "minecraft:block.note_block.trumpet_exposed": { - "protocol_id": 1168 - }, - "minecraft:block.note_block.trumpet_oxidized": { - "protocol_id": 1169 - }, - "minecraft:block.note_block.trumpet_weathered": { - "protocol_id": 1170 - }, - "minecraft:block.note_block.xylophone": { - "protocol_id": 1171 - }, - "minecraft:block.nylium.break": { - "protocol_id": 1122 - }, - "minecraft:block.nylium.fall": { - "protocol_id": 1126 - }, - "minecraft:block.nylium.hit": { - "protocol_id": 1125 - }, - "minecraft:block.nylium.place": { - "protocol_id": 1124 - }, - "minecraft:block.nylium.step": { - "protocol_id": 1123 - }, - "minecraft:block.packed_mud.break": { - "protocol_id": 1112 - }, - "minecraft:block.packed_mud.fall": { - "protocol_id": 1113 - }, - "minecraft:block.packed_mud.hit": { - "protocol_id": 1114 - }, - "minecraft:block.packed_mud.place": { - "protocol_id": 1115 - }, - "minecraft:block.packed_mud.step": { - "protocol_id": 1116 - }, - "minecraft:block.pale_hanging_moss.idle": { - "protocol_id": 1189 - }, - "minecraft:block.pink_petals.break": { - "protocol_id": 993 - }, - "minecraft:block.pink_petals.fall": { - "protocol_id": 994 - }, - "minecraft:block.pink_petals.hit": { - "protocol_id": 995 - }, - "minecraft:block.pink_petals.place": { - "protocol_id": 996 - }, - "minecraft:block.pink_petals.step": { - "protocol_id": 997 - }, - "minecraft:block.piston.contract": { - "protocol_id": 1296 - }, - "minecraft:block.piston.extend": { - "protocol_id": 1297 - }, - "minecraft:block.pointed_dripstone.break": { + "minecraft:block.dripstone_block.fall": { "protocol_id": 548 }, - "minecraft:block.pointed_dripstone.drip_lava": { - "protocol_id": 554 + "minecraft:block.dripstone_block.hit": { + "protocol_id": 547 }, - "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": { - "protocol_id": 556 + "minecraft:block.dripstone_block.place": { + "protocol_id": 546 }, - "minecraft:block.pointed_dripstone.drip_water": { - "protocol_id": 555 + "minecraft:block.dripstone_block.step": { + "protocol_id": 545 }, - "minecraft:block.pointed_dripstone.drip_water_into_cauldron": { - "protocol_id": 557 - }, - "minecraft:block.pointed_dripstone.fall": { - "protocol_id": 552 - }, - "minecraft:block.pointed_dripstone.hit": { - "protocol_id": 551 - }, - "minecraft:block.pointed_dripstone.land": { - "protocol_id": 553 - }, - "minecraft:block.pointed_dripstone.place": { - "protocol_id": 550 - }, - "minecraft:block.pointed_dripstone.step": { + "minecraft:block.dry_grass.ambient": { "protocol_id": 549 }, - "minecraft:block.polished_deepslate.break": { - "protocol_id": 1325 + "minecraft:block.enchantment_table.use": { + "protocol_id": 582 }, - "minecraft:block.polished_deepslate.fall": { - "protocol_id": 1326 + "minecraft:block.end_gateway.spawn": { + "protocol_id": 605 }, - "minecraft:block.polished_deepslate.hit": { - "protocol_id": 1327 + "minecraft:block.end_portal.spawn": { + "protocol_id": 607 }, - "minecraft:block.polished_deepslate.place": { - "protocol_id": 1328 + "minecraft:block.end_portal_frame.fill": { + "protocol_id": 606 }, - "minecraft:block.polished_deepslate.step": { - "protocol_id": 1329 + "minecraft:block.ender_chest.close": { + "protocol_id": 583 }, - "minecraft:block.polished_tuff.break": { - "protocol_id": 1641 + "minecraft:block.ender_chest.open": { + "protocol_id": 584 }, - "minecraft:block.polished_tuff.fall": { - "protocol_id": 1642 + "minecraft:block.eyeblossom.close": { + "protocol_id": 622 }, - "minecraft:block.polished_tuff.hit": { - "protocol_id": 1643 + "minecraft:block.eyeblossom.close_long": { + "protocol_id": 621 }, - "minecraft:block.polished_tuff.place": { - "protocol_id": 1644 + "minecraft:block.eyeblossom.idle": { + "protocol_id": 623 }, - "minecraft:block.polished_tuff.step": { - "protocol_id": 1645 + "minecraft:block.eyeblossom.open": { + "protocol_id": 620 }, - "minecraft:block.portal.ambient": { - "protocol_id": 1330 + "minecraft:block.eyeblossom.open_long": { + "protocol_id": 619 }, - "minecraft:block.portal.travel": { - "protocol_id": 1331 + "minecraft:block.fence_gate.close": { + "protocol_id": 624 }, - "minecraft:block.portal.trigger": { - "protocol_id": 1332 + "minecraft:block.fence_gate.open": { + "protocol_id": 625 }, - "minecraft:block.powder_snow.break": { - "protocol_id": 1333 + "minecraft:block.fire.ambient": { + "protocol_id": 636 }, - "minecraft:block.powder_snow.fall": { - "protocol_id": 1334 + "minecraft:block.fire.extinguish": { + "protocol_id": 637 }, - "minecraft:block.powder_snow.hit": { - "protocol_id": 1335 + "minecraft:block.firefly_bush.idle": { + "protocol_id": 627 }, - "minecraft:block.powder_snow.place": { - "protocol_id": 1336 + "minecraft:block.flowering_azalea.break": { + "protocol_id": 643 }, - "minecraft:block.powder_snow.step": { - "protocol_id": 1337 + "minecraft:block.flowering_azalea.fall": { + "protocol_id": 644 }, - "minecraft:block.pumpkin.carve": { - "protocol_id": 1344 + "minecraft:block.flowering_azalea.hit": { + "protocol_id": 645 }, - "minecraft:block.redstone_torch.burnout": { - "protocol_id": 1369 + "minecraft:block.flowering_azalea.place": { + "protocol_id": 646 }, - "minecraft:block.resin.break": { - "protocol_id": 1370 + "minecraft:block.flowering_azalea.step": { + "protocol_id": 647 }, - "minecraft:block.resin.fall": { - "protocol_id": 1371 + "minecraft:block.froglight.break": { + "protocol_id": 669 }, - "minecraft:block.resin.place": { - "protocol_id": 1372 + "minecraft:block.froglight.fall": { + "protocol_id": 670 }, - "minecraft:block.resin.step": { - "protocol_id": 1373 + "minecraft:block.froglight.hit": { + "protocol_id": 671 }, - "minecraft:block.resin_bricks.break": { - "protocol_id": 1374 + "minecraft:block.froglight.place": { + "protocol_id": 672 }, - "minecraft:block.resin_bricks.fall": { - "protocol_id": 1375 + "minecraft:block.froglight.step": { + "protocol_id": 673 }, - "minecraft:block.resin_bricks.hit": { - "protocol_id": 1376 + "minecraft:block.frogspawn.break": { + "protocol_id": 675 }, - "minecraft:block.resin_bricks.place": { - "protocol_id": 1377 + "minecraft:block.frogspawn.fall": { + "protocol_id": 676 }, - "minecraft:block.resin_bricks.step": { - "protocol_id": 1378 + "minecraft:block.frogspawn.hatch": { + "protocol_id": 677 }, - "minecraft:block.respawn_anchor.ambient": { - "protocol_id": 1379 + "minecraft:block.frogspawn.hit": { + "protocol_id": 678 }, - "minecraft:block.respawn_anchor.charge": { - "protocol_id": 1380 + "minecraft:block.frogspawn.place": { + "protocol_id": 679 }, - "minecraft:block.respawn_anchor.deplete": { - "protocol_id": 1381 + "minecraft:block.frogspawn.step": { + "protocol_id": 674 }, - "minecraft:block.respawn_anchor.set_spawn": { - "protocol_id": 1382 + "minecraft:block.fungus.break": { + "protocol_id": 1136 }, - "minecraft:block.rooted_dirt.break": { - "protocol_id": 1383 - }, - "minecraft:block.rooted_dirt.fall": { - "protocol_id": 1384 - }, - "minecraft:block.rooted_dirt.hit": { - "protocol_id": 1385 - }, - "minecraft:block.rooted_dirt.place": { - "protocol_id": 1386 - }, - "minecraft:block.rooted_dirt.step": { - "protocol_id": 1387 - }, - "minecraft:block.roots.break": { - "protocol_id": 686 - }, - "minecraft:block.roots.fall": { - "protocol_id": 690 - }, - "minecraft:block.roots.hit": { - "protocol_id": 689 - }, - "minecraft:block.roots.place": { - "protocol_id": 688 - }, - "minecraft:block.roots.step": { - "protocol_id": 687 - }, - "minecraft:block.sand.break": { - "protocol_id": 1392 - }, - "minecraft:block.sand.fall": { - "protocol_id": 1393 - }, - "minecraft:block.sand.hit": { - "protocol_id": 1394 - }, - "minecraft:block.sand.idle": { - "protocol_id": 1397 - }, - "minecraft:block.sand.place": { - "protocol_id": 1395 - }, - "minecraft:block.sand.step": { - "protocol_id": 1396 - }, - "minecraft:block.scaffolding.break": { - "protocol_id": 1398 - }, - "minecraft:block.scaffolding.fall": { - "protocol_id": 1399 - }, - "minecraft:block.scaffolding.hit": { - "protocol_id": 1400 - }, - "minecraft:block.scaffolding.place": { - "protocol_id": 1401 - }, - "minecraft:block.scaffolding.step": { - "protocol_id": 1402 - }, - "minecraft:block.sculk.break": { - "protocol_id": 1405 - }, - "minecraft:block.sculk.charge": { - "protocol_id": 1404 - }, - "minecraft:block.sculk.fall": { - "protocol_id": 1406 - }, - "minecraft:block.sculk.hit": { - "protocol_id": 1407 - }, - "minecraft:block.sculk.place": { - "protocol_id": 1408 - }, - "minecraft:block.sculk.spread": { - "protocol_id": 1403 - }, - "minecraft:block.sculk.step": { - "protocol_id": 1409 - }, - "minecraft:block.sculk_catalyst.bloom": { - "protocol_id": 1410 - }, - "minecraft:block.sculk_catalyst.break": { - "protocol_id": 1411 - }, - "minecraft:block.sculk_catalyst.fall": { - "protocol_id": 1412 - }, - "minecraft:block.sculk_catalyst.hit": { - "protocol_id": 1413 - }, - "minecraft:block.sculk_catalyst.place": { - "protocol_id": 1414 - }, - "minecraft:block.sculk_catalyst.step": { - "protocol_id": 1415 - }, - "minecraft:block.sculk_sensor.break": { - "protocol_id": 1418 - }, - "minecraft:block.sculk_sensor.clicking": { - "protocol_id": 1416 - }, - "minecraft:block.sculk_sensor.clicking_stop": { - "protocol_id": 1417 - }, - "minecraft:block.sculk_sensor.fall": { - "protocol_id": 1419 - }, - "minecraft:block.sculk_sensor.hit": { - "protocol_id": 1420 - }, - "minecraft:block.sculk_sensor.place": { - "protocol_id": 1421 - }, - "minecraft:block.sculk_sensor.step": { - "protocol_id": 1422 - }, - "minecraft:block.sculk_shrieker.break": { - "protocol_id": 1423 - }, - "minecraft:block.sculk_shrieker.fall": { - "protocol_id": 1424 - }, - "minecraft:block.sculk_shrieker.hit": { - "protocol_id": 1425 - }, - "minecraft:block.sculk_shrieker.place": { - "protocol_id": 1426 - }, - "minecraft:block.sculk_shrieker.shriek": { - "protocol_id": 1427 - }, - "minecraft:block.sculk_shrieker.step": { - "protocol_id": 1428 - }, - "minecraft:block.sculk_vein.break": { - "protocol_id": 1429 - }, - "minecraft:block.sculk_vein.fall": { - "protocol_id": 1430 - }, - "minecraft:block.sculk_vein.hit": { - "protocol_id": 1431 - }, - "minecraft:block.sculk_vein.place": { - "protocol_id": 1432 - }, - "minecraft:block.sculk_vein.step": { - "protocol_id": 1433 - }, - "minecraft:block.shelf.activate": { - "protocol_id": 1440 - }, - "minecraft:block.shelf.break": { - "protocol_id": 1441 - }, - "minecraft:block.shelf.deactivate": { - "protocol_id": 1442 - }, - "minecraft:block.shelf.fall": { - "protocol_id": 1443 - }, - "minecraft:block.shelf.hit": { - "protocol_id": 1444 - }, - "minecraft:block.shelf.multi_swap": { - "protocol_id": 1445 - }, - "minecraft:block.shelf.place": { - "protocol_id": 1446 - }, - "minecraft:block.shelf.place_item": { - "protocol_id": 1447 - }, - "minecraft:block.shelf.single_swap": { - "protocol_id": 1448 - }, - "minecraft:block.shelf.step": { - "protocol_id": 1449 - }, - "minecraft:block.shelf.take_item": { - "protocol_id": 1450 - }, - "minecraft:block.shroomlight.break": { - "protocol_id": 1453 - }, - "minecraft:block.shroomlight.fall": { - "protocol_id": 1457 - }, - "minecraft:block.shroomlight.hit": { - "protocol_id": 1456 - }, - "minecraft:block.shroomlight.place": { - "protocol_id": 1455 - }, - "minecraft:block.shroomlight.step": { - "protocol_id": 1454 - }, - "minecraft:block.shulker_box.close": { - "protocol_id": 1460 - }, - "minecraft:block.shulker_box.open": { - "protocol_id": 1461 - }, - "minecraft:block.sign.waxed_interact_fail": { - "protocol_id": 1746 - }, - "minecraft:block.slime_block.break": { - "protocol_id": 1494 - }, - "minecraft:block.slime_block.fall": { - "protocol_id": 1495 - }, - "minecraft:block.slime_block.hit": { - "protocol_id": 1496 - }, - "minecraft:block.slime_block.place": { - "protocol_id": 1497 - }, - "minecraft:block.slime_block.step": { - "protocol_id": 1498 - }, - "minecraft:block.small_amethyst_bud.break": { - "protocol_id": 1499 - }, - "minecraft:block.small_amethyst_bud.place": { - "protocol_id": 1500 - }, - "minecraft:block.small_dripleaf.break": { - "protocol_id": 1501 - }, - "minecraft:block.small_dripleaf.fall": { - "protocol_id": 1502 - }, - "minecraft:block.small_dripleaf.hit": { - "protocol_id": 1503 - }, - "minecraft:block.small_dripleaf.place": { - "protocol_id": 1504 - }, - "minecraft:block.small_dripleaf.step": { - "protocol_id": 1505 - }, - "minecraft:block.smithing_table.use": { - "protocol_id": 1546 - }, - "minecraft:block.smoker.smoke": { - "protocol_id": 1547 - }, - "minecraft:block.sniffer_egg.crack": { - "protocol_id": 1561 - }, - "minecraft:block.sniffer_egg.hatch": { - "protocol_id": 1562 - }, - "minecraft:block.sniffer_egg.plop": { - "protocol_id": 1560 - }, - "minecraft:block.snow.break": { - "protocol_id": 1564 - }, - "minecraft:block.snow.fall": { - "protocol_id": 1565 - }, - "minecraft:block.snow.hit": { - "protocol_id": 1571 - }, - "minecraft:block.snow.place": { - "protocol_id": 1572 - }, - "minecraft:block.snow.step": { - "protocol_id": 1573 - }, - "minecraft:block.soul_sand.break": { - "protocol_id": 1506 - }, - "minecraft:block.soul_sand.fall": { - "protocol_id": 1510 - }, - "minecraft:block.soul_sand.hit": { - "protocol_id": 1509 - }, - "minecraft:block.soul_sand.place": { - "protocol_id": 1508 - }, - "minecraft:block.soul_sand.step": { - "protocol_id": 1507 - }, - "minecraft:block.soul_soil.break": { - "protocol_id": 1511 - }, - "minecraft:block.soul_soil.fall": { - "protocol_id": 1515 - }, - "minecraft:block.soul_soil.hit": { - "protocol_id": 1514 - }, - "minecraft:block.soul_soil.place": { - "protocol_id": 1513 - }, - "minecraft:block.soul_soil.step": { - "protocol_id": 1512 - }, - "minecraft:block.spawner.break": { - "protocol_id": 1517 - }, - "minecraft:block.spawner.fall": { - "protocol_id": 1518 - }, - "minecraft:block.spawner.hit": { - "protocol_id": 1519 - }, - "minecraft:block.spawner.place": { - "protocol_id": 1520 - }, - "minecraft:block.spawner.step": { - "protocol_id": 1521 - }, - "minecraft:block.sponge.absorb": { - "protocol_id": 1585 - }, - "minecraft:block.sponge.break": { - "protocol_id": 1580 - }, - "minecraft:block.sponge.fall": { - "protocol_id": 1581 - }, - "minecraft:block.sponge.hit": { - "protocol_id": 1582 - }, - "minecraft:block.sponge.place": { - "protocol_id": 1583 - }, - "minecraft:block.sponge.step": { - "protocol_id": 1584 - }, - "minecraft:block.spore_blossom.break": { - "protocol_id": 1528 - }, - "minecraft:block.spore_blossom.fall": { - "protocol_id": 1529 - }, - "minecraft:block.spore_blossom.hit": { - "protocol_id": 1530 - }, - "minecraft:block.spore_blossom.place": { - "protocol_id": 1531 - }, - "minecraft:block.spore_blossom.step": { - "protocol_id": 1532 - }, - "minecraft:block.stem.break": { - "protocol_id": 1117 - }, - "minecraft:block.stem.fall": { - "protocol_id": 1121 - }, - "minecraft:block.stem.hit": { - "protocol_id": 1120 - }, - "minecraft:block.stem.place": { - "protocol_id": 1119 - }, - "minecraft:block.stem.step": { - "protocol_id": 1118 - }, - "minecraft:block.stone.break": { - "protocol_id": 1592 - }, - "minecraft:block.stone.fall": { - "protocol_id": 1595 - }, - "minecraft:block.stone.hit": { - "protocol_id": 1596 - }, - "minecraft:block.stone.place": { - "protocol_id": 1597 - }, - "minecraft:block.stone.step": { - "protocol_id": 1600 - }, - "minecraft:block.stone_button.click_off": { - "protocol_id": 1593 - }, - "minecraft:block.stone_button.click_on": { - "protocol_id": 1594 - }, - "minecraft:block.stone_pressure_plate.click_off": { - "protocol_id": 1598 - }, - "minecraft:block.stone_pressure_plate.click_on": { - "protocol_id": 1599 - }, - "minecraft:block.suspicious_gravel.break": { - "protocol_id": 662 - }, - "minecraft:block.suspicious_gravel.fall": { - "protocol_id": 666 - }, - "minecraft:block.suspicious_gravel.hit": { - "protocol_id": 665 - }, - "minecraft:block.suspicious_gravel.place": { - "protocol_id": 664 - }, - "minecraft:block.suspicious_gravel.step": { - "protocol_id": 663 - }, - "minecraft:block.suspicious_sand.break": { - "protocol_id": 657 - }, - "minecraft:block.suspicious_sand.fall": { - "protocol_id": 661 - }, - "minecraft:block.suspicious_sand.hit": { - "protocol_id": 660 - }, - "minecraft:block.suspicious_sand.place": { - "protocol_id": 659 - }, - "minecraft:block.suspicious_sand.step": { - "protocol_id": 658 - }, - "minecraft:block.sweet_berry_bush.break": { - "protocol_id": 1605 - }, - "minecraft:block.sweet_berry_bush.pick_berries": { - "protocol_id": 1607 - }, - "minecraft:block.sweet_berry_bush.place": { - "protocol_id": 1606 - }, - "minecraft:block.trial_spawner.about_to_spawn_item": { - "protocol_id": 808 - }, - "minecraft:block.trial_spawner.ambient": { - "protocol_id": 813 - }, - "minecraft:block.trial_spawner.ambient_ominous": { - "protocol_id": 814 - }, - "minecraft:block.trial_spawner.break": { - "protocol_id": 802 - }, - "minecraft:block.trial_spawner.close_shutter": { - "protocol_id": 816 - }, - "minecraft:block.trial_spawner.detect_player": { - "protocol_id": 811 - }, - "minecraft:block.trial_spawner.eject_item": { - "protocol_id": 817 - }, - "minecraft:block.trial_spawner.fall": { - "protocol_id": 806 - }, - "minecraft:block.trial_spawner.hit": { - "protocol_id": 805 - }, - "minecraft:block.trial_spawner.ominous_activate": { - "protocol_id": 812 - }, - "minecraft:block.trial_spawner.open_shutter": { - "protocol_id": 815 - }, - "minecraft:block.trial_spawner.place": { - "protocol_id": 804 - }, - "minecraft:block.trial_spawner.spawn_item": { - "protocol_id": 809 - }, - "minecraft:block.trial_spawner.spawn_item_begin": { - "protocol_id": 810 - }, - "minecraft:block.trial_spawner.spawn_mob": { - "protocol_id": 807 - }, - "minecraft:block.trial_spawner.step": { - "protocol_id": 803 - }, - "minecraft:block.tripwire.attach": { - "protocol_id": 1623 - }, - "minecraft:block.tripwire.click_off": { - "protocol_id": 1624 - }, - "minecraft:block.tripwire.click_on": { - "protocol_id": 1625 - }, - "minecraft:block.tripwire.detach": { - "protocol_id": 1626 - }, - "minecraft:block.tuff.break": { - "protocol_id": 1631 - }, - "minecraft:block.tuff.fall": { - "protocol_id": 1635 - }, - "minecraft:block.tuff.hit": { - "protocol_id": 1634 - }, - "minecraft:block.tuff.place": { - "protocol_id": 1633 - }, - "minecraft:block.tuff.step": { - "protocol_id": 1632 - }, - "minecraft:block.tuff_bricks.break": { - "protocol_id": 1636 - }, - "minecraft:block.tuff_bricks.fall": { - "protocol_id": 1637 - }, - "minecraft:block.tuff_bricks.hit": { - "protocol_id": 1638 - }, - "minecraft:block.tuff_bricks.place": { - "protocol_id": 1639 - }, - "minecraft:block.tuff_bricks.step": { - "protocol_id": 1640 - }, - "minecraft:block.vault.activate": { - "protocol_id": 1667 - }, - "minecraft:block.vault.ambient": { - "protocol_id": 1668 - }, - "minecraft:block.vault.break": { - "protocol_id": 1669 - }, - "minecraft:block.vault.close_shutter": { - "protocol_id": 1670 - }, - "minecraft:block.vault.deactivate": { - "protocol_id": 1671 - }, - "minecraft:block.vault.eject_item": { - "protocol_id": 1672 - }, - "minecraft:block.vault.fall": { - "protocol_id": 1674 - }, - "minecraft:block.vault.hit": { - "protocol_id": 1675 - }, - "minecraft:block.vault.insert_item": { - "protocol_id": 1676 - }, - "minecraft:block.vault.insert_item_fail": { - "protocol_id": 1677 - }, - "minecraft:block.vault.open_shutter": { - "protocol_id": 1678 - }, - "minecraft:block.vault.place": { - "protocol_id": 1679 - }, - "minecraft:block.vault.reject_rewarded_player": { - "protocol_id": 1673 - }, - "minecraft:block.vault.step": { - "protocol_id": 1680 - }, - "minecraft:block.vine.break": { - "protocol_id": 1709 - }, - "minecraft:block.vine.fall": { - "protocol_id": 1710 - }, - "minecraft:block.vine.hit": { - "protocol_id": 1711 - }, - "minecraft:block.vine.place": { - "protocol_id": 1712 - }, - "minecraft:block.vine.step": { - "protocol_id": 1713 - }, - "minecraft:block.wart_block.break": { - "protocol_id": 1142 - }, - "minecraft:block.wart_block.fall": { - "protocol_id": 1146 - }, - "minecraft:block.wart_block.hit": { - "protocol_id": 1145 - }, - "minecraft:block.wart_block.place": { - "protocol_id": 1144 - }, - "minecraft:block.wart_block.step": { - "protocol_id": 1143 - }, - "minecraft:block.water.ambient": { - "protocol_id": 1747 - }, - "minecraft:block.weeping_vines.break": { - "protocol_id": 1137 - }, - "minecraft:block.weeping_vines.fall": { - "protocol_id": 1141 - }, - "minecraft:block.weeping_vines.hit": { + "minecraft:block.fungus.fall": { "protocol_id": 1140 }, - "minecraft:block.weeping_vines.place": { + "minecraft:block.fungus.hit": { "protocol_id": 1139 }, - "minecraft:block.weeping_vines.step": { + "minecraft:block.fungus.place": { "protocol_id": 1138 }, - "minecraft:block.wet_grass.break": { - "protocol_id": 1751 + "minecraft:block.fungus.step": { + "protocol_id": 1137 }, - "minecraft:block.wet_grass.fall": { - "protocol_id": 1752 + "minecraft:block.furnace.fire_crackle": { + "protocol_id": 693 }, - "minecraft:block.wet_grass.hit": { - "protocol_id": 1753 + "minecraft:block.gilded_blackstone.break": { + "protocol_id": 715 }, - "minecraft:block.wet_grass.place": { - "protocol_id": 1754 + "minecraft:block.gilded_blackstone.fall": { + "protocol_id": 716 }, - "minecraft:block.wet_grass.step": { + "minecraft:block.gilded_blackstone.hit": { + "protocol_id": 717 + }, + "minecraft:block.gilded_blackstone.place": { + "protocol_id": 718 + }, + "minecraft:block.gilded_blackstone.step": { + "protocol_id": 719 + }, + "minecraft:block.glass.break": { + "protocol_id": 720 + }, + "minecraft:block.glass.fall": { + "protocol_id": 721 + }, + "minecraft:block.glass.hit": { + "protocol_id": 722 + }, + "minecraft:block.glass.place": { + "protocol_id": 723 + }, + "minecraft:block.glass.step": { + "protocol_id": 724 + }, + "minecraft:block.grass.break": { + "protocol_id": 755 + }, + "minecraft:block.grass.fall": { + "protocol_id": 756 + }, + "minecraft:block.grass.hit": { + "protocol_id": 757 + }, + "minecraft:block.grass.place": { + "protocol_id": 758 + }, + "minecraft:block.grass.step": { + "protocol_id": 759 + }, + "minecraft:block.gravel.break": { + "protocol_id": 760 + }, + "minecraft:block.gravel.fall": { + "protocol_id": 761 + }, + "minecraft:block.gravel.hit": { + "protocol_id": 762 + }, + "minecraft:block.gravel.place": { + "protocol_id": 763 + }, + "minecraft:block.gravel.step": { + "protocol_id": 764 + }, + "minecraft:block.grindstone.use": { + "protocol_id": 765 + }, + "minecraft:block.growing_plant.crop": { + "protocol_id": 766 + }, + "minecraft:block.hanging_roots.break": { + "protocol_id": 775 + }, + "minecraft:block.hanging_roots.fall": { + "protocol_id": 776 + }, + "minecraft:block.hanging_roots.hit": { + "protocol_id": 777 + }, + "minecraft:block.hanging_roots.place": { + "protocol_id": 778 + }, + "minecraft:block.hanging_roots.step": { + "protocol_id": 779 + }, + "minecraft:block.hanging_sign.break": { + "protocol_id": 781 + }, + "minecraft:block.hanging_sign.fall": { + "protocol_id": 782 + }, + "minecraft:block.hanging_sign.hit": { + "protocol_id": 783 + }, + "minecraft:block.hanging_sign.place": { + "protocol_id": 784 + }, + "minecraft:block.hanging_sign.step": { + "protocol_id": 780 + }, + "minecraft:block.hanging_sign.waxed_interact_fail": { "protocol_id": 1755 }, - "minecraft:block.wet_sponge.break": { + "minecraft:block.heavy_core.break": { + "protocol_id": 789 + }, + "minecraft:block.heavy_core.fall": { + "protocol_id": 790 + }, + "minecraft:block.heavy_core.hit": { + "protocol_id": 791 + }, + "minecraft:block.heavy_core.place": { + "protocol_id": 792 + }, + "minecraft:block.heavy_core.step": { + "protocol_id": 793 + }, + "minecraft:block.honey_block.break": { + "protocol_id": 833 + }, + "minecraft:block.honey_block.fall": { + "protocol_id": 834 + }, + "minecraft:block.honey_block.hit": { + "protocol_id": 835 + }, + "minecraft:block.honey_block.place": { + "protocol_id": 836 + }, + "minecraft:block.honey_block.slide": { + "protocol_id": 837 + }, + "minecraft:block.honey_block.step": { + "protocol_id": 838 + }, + "minecraft:block.iron.break": { + "protocol_id": 890 + }, + "minecraft:block.iron.fall": { + "protocol_id": 894 + }, + "minecraft:block.iron.hit": { + "protocol_id": 893 + }, + "minecraft:block.iron.place": { + "protocol_id": 892 + }, + "minecraft:block.iron.step": { + "protocol_id": 891 + }, + "minecraft:block.iron_door.close": { + "protocol_id": 895 + }, + "minecraft:block.iron_door.open": { + "protocol_id": 896 + }, + "minecraft:block.iron_trapdoor.close": { + "protocol_id": 903 + }, + "minecraft:block.iron_trapdoor.open": { + "protocol_id": 904 + }, + "minecraft:block.ladder.break": { + "protocol_id": 912 + }, + "minecraft:block.ladder.fall": { + "protocol_id": 913 + }, + "minecraft:block.ladder.hit": { + "protocol_id": 914 + }, + "minecraft:block.ladder.place": { + "protocol_id": 915 + }, + "minecraft:block.ladder.step": { + "protocol_id": 916 + }, + "minecraft:block.lantern.break": { + "protocol_id": 917 + }, + "minecraft:block.lantern.fall": { + "protocol_id": 918 + }, + "minecraft:block.lantern.hit": { + "protocol_id": 919 + }, + "minecraft:block.lantern.place": { + "protocol_id": 920 + }, + "minecraft:block.lantern.step": { + "protocol_id": 921 + }, + "minecraft:block.large_amethyst_bud.break": { + "protocol_id": 922 + }, + "minecraft:block.large_amethyst_bud.place": { + "protocol_id": 923 + }, + "minecraft:block.lava.ambient": { + "protocol_id": 924 + }, + "minecraft:block.lava.extinguish": { + "protocol_id": 925 + }, + "minecraft:block.lava.pop": { + "protocol_id": 926 + }, + "minecraft:block.leaf_litter.break": { + "protocol_id": 927 + }, + "minecraft:block.leaf_litter.fall": { + "protocol_id": 931 + }, + "minecraft:block.leaf_litter.hit": { + "protocol_id": 930 + }, + "minecraft:block.leaf_litter.place": { + "protocol_id": 929 + }, + "minecraft:block.leaf_litter.step": { + "protocol_id": 928 + }, + "minecraft:block.lever.click": { + "protocol_id": 935 + }, + "minecraft:block.lily_pad.place": { + "protocol_id": 1724 + }, + "minecraft:block.lodestone.break": { + "protocol_id": 950 + }, + "minecraft:block.lodestone.fall": { + "protocol_id": 954 + }, + "minecraft:block.lodestone.hit": { + "protocol_id": 953 + }, + "minecraft:block.lodestone.place": { + "protocol_id": 952 + }, + "minecraft:block.lodestone.step": { + "protocol_id": 951 + }, + "minecraft:block.mangrove_roots.break": { + "protocol_id": 968 + }, + "minecraft:block.mangrove_roots.fall": { + "protocol_id": 969 + }, + "minecraft:block.mangrove_roots.hit": { + "protocol_id": 970 + }, + "minecraft:block.mangrove_roots.place": { + "protocol_id": 971 + }, + "minecraft:block.mangrove_roots.step": { + "protocol_id": 972 + }, + "minecraft:block.medium_amethyst_bud.break": { + "protocol_id": 973 + }, + "minecraft:block.medium_amethyst_bud.place": { + "protocol_id": 974 + }, + "minecraft:block.metal.break": { + "protocol_id": 975 + }, + "minecraft:block.metal.fall": { + "protocol_id": 976 + }, + "minecraft:block.metal.hit": { + "protocol_id": 977 + }, + "minecraft:block.metal.place": { + "protocol_id": 978 + }, + "minecraft:block.metal.step": { + "protocol_id": 981 + }, + "minecraft:block.metal_pressure_plate.click_off": { + "protocol_id": 979 + }, + "minecraft:block.metal_pressure_plate.click_on": { + "protocol_id": 980 + }, + "minecraft:block.moss.break": { + "protocol_id": 1000 + }, + "minecraft:block.moss.fall": { + "protocol_id": 1001 + }, + "minecraft:block.moss.hit": { + "protocol_id": 1002 + }, + "minecraft:block.moss.place": { + "protocol_id": 1003 + }, + "minecraft:block.moss.step": { + "protocol_id": 1004 + }, + "minecraft:block.moss_carpet.break": { + "protocol_id": 990 + }, + "minecraft:block.moss_carpet.fall": { + "protocol_id": 991 + }, + "minecraft:block.moss_carpet.hit": { + "protocol_id": 992 + }, + "minecraft:block.moss_carpet.place": { + "protocol_id": 993 + }, + "minecraft:block.moss_carpet.step": { + "protocol_id": 994 + }, + "minecraft:block.mud.break": { + "protocol_id": 1005 + }, + "minecraft:block.mud.fall": { + "protocol_id": 1006 + }, + "minecraft:block.mud.hit": { + "protocol_id": 1007 + }, + "minecraft:block.mud.place": { + "protocol_id": 1008 + }, + "minecraft:block.mud.step": { + "protocol_id": 1009 + }, + "minecraft:block.mud_bricks.break": { + "protocol_id": 1010 + }, + "minecraft:block.mud_bricks.fall": { + "protocol_id": 1011 + }, + "minecraft:block.mud_bricks.hit": { + "protocol_id": 1012 + }, + "minecraft:block.mud_bricks.place": { + "protocol_id": 1013 + }, + "minecraft:block.mud_bricks.step": { + "protocol_id": 1014 + }, + "minecraft:block.muddy_mangrove_roots.break": { + "protocol_id": 1015 + }, + "minecraft:block.muddy_mangrove_roots.fall": { + "protocol_id": 1016 + }, + "minecraft:block.muddy_mangrove_roots.hit": { + "protocol_id": 1017 + }, + "minecraft:block.muddy_mangrove_roots.place": { + "protocol_id": 1018 + }, + "minecraft:block.muddy_mangrove_roots.step": { + "protocol_id": 1019 + }, + "minecraft:block.nether_bricks.break": { + "protocol_id": 1093 + }, + "minecraft:block.nether_bricks.fall": { + "protocol_id": 1097 + }, + "minecraft:block.nether_bricks.hit": { + "protocol_id": 1096 + }, + "minecraft:block.nether_bricks.place": { + "protocol_id": 1095 + }, + "minecraft:block.nether_bricks.step": { + "protocol_id": 1094 + }, + "minecraft:block.nether_gold_ore.break": { + "protocol_id": 1363 + }, + "minecraft:block.nether_gold_ore.fall": { + "protocol_id": 1364 + }, + "minecraft:block.nether_gold_ore.hit": { + "protocol_id": 1365 + }, + "minecraft:block.nether_gold_ore.place": { + "protocol_id": 1366 + }, + "minecraft:block.nether_gold_ore.step": { + "protocol_id": 1367 + }, + "minecraft:block.nether_ore.break": { + "protocol_id": 1368 + }, + "minecraft:block.nether_ore.fall": { + "protocol_id": 1369 + }, + "minecraft:block.nether_ore.hit": { + "protocol_id": 1370 + }, + "minecraft:block.nether_ore.place": { + "protocol_id": 1371 + }, + "minecraft:block.nether_ore.step": { + "protocol_id": 1372 + }, + "minecraft:block.nether_sprouts.break": { + "protocol_id": 1131 + }, + "minecraft:block.nether_sprouts.fall": { + "protocol_id": 1135 + }, + "minecraft:block.nether_sprouts.hit": { + "protocol_id": 1134 + }, + "minecraft:block.nether_sprouts.place": { + "protocol_id": 1133 + }, + "minecraft:block.nether_sprouts.step": { + "protocol_id": 1132 + }, + "minecraft:block.nether_wart.break": { + "protocol_id": 1098 + }, + "minecraft:block.nether_wood.break": { + "protocol_id": 1100 + }, + "minecraft:block.nether_wood.fall": { + "protocol_id": 1101 + }, + "minecraft:block.nether_wood.hit": { + "protocol_id": 1102 + }, + "minecraft:block.nether_wood.place": { + "protocol_id": 1103 + }, + "minecraft:block.nether_wood.step": { + "protocol_id": 1104 + }, + "minecraft:block.nether_wood_button.click_off": { + "protocol_id": 1109 + }, + "minecraft:block.nether_wood_button.click_on": { + "protocol_id": 1110 + }, + "minecraft:block.nether_wood_door.close": { + "protocol_id": 1105 + }, + "minecraft:block.nether_wood_door.open": { + "protocol_id": 1106 + }, + "minecraft:block.nether_wood_fence_gate.close": { + "protocol_id": 1113 + }, + "minecraft:block.nether_wood_fence_gate.open": { + "protocol_id": 1114 + }, + "minecraft:block.nether_wood_hanging_sign.break": { + "protocol_id": 795 + }, + "minecraft:block.nether_wood_hanging_sign.fall": { + "protocol_id": 796 + }, + "minecraft:block.nether_wood_hanging_sign.hit": { + "protocol_id": 797 + }, + "minecraft:block.nether_wood_hanging_sign.place": { + "protocol_id": 798 + }, + "minecraft:block.nether_wood_hanging_sign.step": { + "protocol_id": 794 + }, + "minecraft:block.nether_wood_pressure_plate.click_off": { + "protocol_id": 1111 + }, + "minecraft:block.nether_wood_pressure_plate.click_on": { + "protocol_id": 1112 + }, + "minecraft:block.nether_wood_trapdoor.close": { + "protocol_id": 1107 + }, + "minecraft:block.nether_wood_trapdoor.open": { + "protocol_id": 1108 + }, + "minecraft:block.netherite_block.break": { + "protocol_id": 1151 + }, + "minecraft:block.netherite_block.fall": { + "protocol_id": 1155 + }, + "minecraft:block.netherite_block.hit": { + "protocol_id": 1154 + }, + "minecraft:block.netherite_block.place": { + "protocol_id": 1153 + }, + "minecraft:block.netherite_block.step": { + "protocol_id": 1152 + }, + "minecraft:block.netherrack.break": { + "protocol_id": 1156 + }, + "minecraft:block.netherrack.fall": { + "protocol_id": 1160 + }, + "minecraft:block.netherrack.hit": { + "protocol_id": 1159 + }, + "minecraft:block.netherrack.place": { + "protocol_id": 1158 + }, + "minecraft:block.netherrack.step": { + "protocol_id": 1157 + }, + "minecraft:block.note_block.banjo": { + "protocol_id": 1180 + }, + "minecraft:block.note_block.basedrum": { + "protocol_id": 1161 + }, + "minecraft:block.note_block.bass": { + "protocol_id": 1162 + }, + "minecraft:block.note_block.bell": { + "protocol_id": 1163 + }, + "minecraft:block.note_block.bit": { + "protocol_id": 1179 + }, + "minecraft:block.note_block.chime": { + "protocol_id": 1164 + }, + "minecraft:block.note_block.cow_bell": { + "protocol_id": 1177 + }, + "minecraft:block.note_block.didgeridoo": { + "protocol_id": 1178 + }, + "minecraft:block.note_block.flute": { + "protocol_id": 1165 + }, + "minecraft:block.note_block.guitar": { + "protocol_id": 1166 + }, + "minecraft:block.note_block.harp": { + "protocol_id": 1167 + }, + "minecraft:block.note_block.hat": { + "protocol_id": 1168 + }, + "minecraft:block.note_block.imitate.creeper": { + "protocol_id": 1183 + }, + "minecraft:block.note_block.imitate.ender_dragon": { + "protocol_id": 1184 + }, + "minecraft:block.note_block.imitate.piglin": { + "protocol_id": 1186 + }, + "minecraft:block.note_block.imitate.skeleton": { + "protocol_id": 1182 + }, + "minecraft:block.note_block.imitate.wither_skeleton": { + "protocol_id": 1185 + }, + "minecraft:block.note_block.imitate.zombie": { + "protocol_id": 1181 + }, + "minecraft:block.note_block.iron_xylophone": { + "protocol_id": 1176 + }, + "minecraft:block.note_block.pling": { + "protocol_id": 1169 + }, + "minecraft:block.note_block.snare": { + "protocol_id": 1170 + }, + "minecraft:block.note_block.trumpet": { + "protocol_id": 1171 + }, + "minecraft:block.note_block.trumpet_exposed": { + "protocol_id": 1172 + }, + "minecraft:block.note_block.trumpet_oxidized": { + "protocol_id": 1173 + }, + "minecraft:block.note_block.trumpet_weathered": { + "protocol_id": 1174 + }, + "minecraft:block.note_block.xylophone": { + "protocol_id": 1175 + }, + "minecraft:block.nylium.break": { + "protocol_id": 1126 + }, + "minecraft:block.nylium.fall": { + "protocol_id": 1130 + }, + "minecraft:block.nylium.hit": { + "protocol_id": 1129 + }, + "minecraft:block.nylium.place": { + "protocol_id": 1128 + }, + "minecraft:block.nylium.step": { + "protocol_id": 1127 + }, + "minecraft:block.packed_mud.break": { + "protocol_id": 1116 + }, + "minecraft:block.packed_mud.fall": { + "protocol_id": 1117 + }, + "minecraft:block.packed_mud.hit": { + "protocol_id": 1118 + }, + "minecraft:block.packed_mud.place": { + "protocol_id": 1119 + }, + "minecraft:block.packed_mud.step": { + "protocol_id": 1120 + }, + "minecraft:block.pale_hanging_moss.idle": { + "protocol_id": 1193 + }, + "minecraft:block.pink_petals.break": { + "protocol_id": 995 + }, + "minecraft:block.pink_petals.fall": { + "protocol_id": 996 + }, + "minecraft:block.pink_petals.hit": { + "protocol_id": 997 + }, + "minecraft:block.pink_petals.place": { + "protocol_id": 998 + }, + "minecraft:block.pink_petals.step": { + "protocol_id": 999 + }, + "minecraft:block.piston.contract": { + "protocol_id": 1300 + }, + "minecraft:block.piston.extend": { + "protocol_id": 1301 + }, + "minecraft:block.pointed_dripstone.break": { + "protocol_id": 550 + }, + "minecraft:block.pointed_dripstone.drip_lava": { + "protocol_id": 556 + }, + "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": { + "protocol_id": 558 + }, + "minecraft:block.pointed_dripstone.drip_water": { + "protocol_id": 557 + }, + "minecraft:block.pointed_dripstone.drip_water_into_cauldron": { + "protocol_id": 559 + }, + "minecraft:block.pointed_dripstone.fall": { + "protocol_id": 554 + }, + "minecraft:block.pointed_dripstone.hit": { + "protocol_id": 553 + }, + "minecraft:block.pointed_dripstone.land": { + "protocol_id": 555 + }, + "minecraft:block.pointed_dripstone.place": { + "protocol_id": 552 + }, + "minecraft:block.pointed_dripstone.step": { + "protocol_id": 551 + }, + "minecraft:block.polished_deepslate.break": { + "protocol_id": 1329 + }, + "minecraft:block.polished_deepslate.fall": { + "protocol_id": 1330 + }, + "minecraft:block.polished_deepslate.hit": { + "protocol_id": 1331 + }, + "minecraft:block.polished_deepslate.place": { + "protocol_id": 1332 + }, + "minecraft:block.polished_deepslate.step": { + "protocol_id": 1333 + }, + "minecraft:block.polished_tuff.break": { + "protocol_id": 1651 + }, + "minecraft:block.polished_tuff.fall": { + "protocol_id": 1652 + }, + "minecraft:block.polished_tuff.hit": { + "protocol_id": 1653 + }, + "minecraft:block.polished_tuff.place": { + "protocol_id": 1654 + }, + "minecraft:block.polished_tuff.step": { + "protocol_id": 1655 + }, + "minecraft:block.portal.ambient": { + "protocol_id": 1334 + }, + "minecraft:block.portal.travel": { + "protocol_id": 1335 + }, + "minecraft:block.portal.trigger": { + "protocol_id": 1336 + }, + "minecraft:block.potent_sulfur.break": { + "protocol_id": 1917 + }, + "minecraft:block.potent_sulfur.fall": { + "protocol_id": 1921 + }, + "minecraft:block.potent_sulfur.geyser_continuous_eruption": { + "protocol_id": 1924 + }, + "minecraft:block.potent_sulfur.geyser_continuous_eruption_active": { + "protocol_id": 1925 + }, + "minecraft:block.potent_sulfur.geyser_eruption": { + "protocol_id": 1922 + }, + "minecraft:block.potent_sulfur.geyser_eruption_active": { + "protocol_id": 1923 + }, + "minecraft:block.potent_sulfur.hit": { + "protocol_id": 1920 + }, + "minecraft:block.potent_sulfur.noxious_gas": { + "protocol_id": 1962 + }, + "minecraft:block.potent_sulfur.place": { + "protocol_id": 1919 + }, + "minecraft:block.potent_sulfur.step": { + "protocol_id": 1918 + }, + "minecraft:block.powder_snow.break": { + "protocol_id": 1337 + }, + "minecraft:block.powder_snow.fall": { + "protocol_id": 1338 + }, + "minecraft:block.powder_snow.hit": { + "protocol_id": 1339 + }, + "minecraft:block.powder_snow.place": { + "protocol_id": 1340 + }, + "minecraft:block.powder_snow.step": { + "protocol_id": 1341 + }, + "minecraft:block.pumpkin.carve": { + "protocol_id": 1348 + }, + "minecraft:block.redstone_torch.burnout": { + "protocol_id": 1373 + }, + "minecraft:block.resin.break": { + "protocol_id": 1374 + }, + "minecraft:block.resin.fall": { + "protocol_id": 1375 + }, + "minecraft:block.resin.place": { + "protocol_id": 1376 + }, + "minecraft:block.resin.step": { + "protocol_id": 1377 + }, + "minecraft:block.resin_bricks.break": { + "protocol_id": 1378 + }, + "minecraft:block.resin_bricks.fall": { + "protocol_id": 1379 + }, + "minecraft:block.resin_bricks.hit": { + "protocol_id": 1380 + }, + "minecraft:block.resin_bricks.place": { + "protocol_id": 1381 + }, + "minecraft:block.resin_bricks.step": { + "protocol_id": 1382 + }, + "minecraft:block.respawn_anchor.ambient": { + "protocol_id": 1383 + }, + "minecraft:block.respawn_anchor.charge": { + "protocol_id": 1384 + }, + "minecraft:block.respawn_anchor.deplete": { + "protocol_id": 1385 + }, + "minecraft:block.respawn_anchor.set_spawn": { + "protocol_id": 1386 + }, + "minecraft:block.rooted_dirt.break": { + "protocol_id": 1387 + }, + "minecraft:block.rooted_dirt.fall": { + "protocol_id": 1388 + }, + "minecraft:block.rooted_dirt.hit": { + "protocol_id": 1389 + }, + "minecraft:block.rooted_dirt.place": { + "protocol_id": 1390 + }, + "minecraft:block.rooted_dirt.step": { + "protocol_id": 1391 + }, + "minecraft:block.roots.break": { + "protocol_id": 688 + }, + "minecraft:block.roots.fall": { + "protocol_id": 692 + }, + "minecraft:block.roots.hit": { + "protocol_id": 691 + }, + "minecraft:block.roots.place": { + "protocol_id": 690 + }, + "minecraft:block.roots.step": { + "protocol_id": 689 + }, + "minecraft:block.sand.break": { + "protocol_id": 1396 + }, + "minecraft:block.sand.fall": { + "protocol_id": 1397 + }, + "minecraft:block.sand.hit": { + "protocol_id": 1398 + }, + "minecraft:block.sand.idle": { + "protocol_id": 1401 + }, + "minecraft:block.sand.place": { + "protocol_id": 1399 + }, + "minecraft:block.sand.step": { + "protocol_id": 1400 + }, + "minecraft:block.scaffolding.break": { + "protocol_id": 1402 + }, + "minecraft:block.scaffolding.fall": { + "protocol_id": 1403 + }, + "minecraft:block.scaffolding.hit": { + "protocol_id": 1404 + }, + "minecraft:block.scaffolding.place": { + "protocol_id": 1405 + }, + "minecraft:block.scaffolding.step": { + "protocol_id": 1406 + }, + "minecraft:block.sculk.break": { + "protocol_id": 1409 + }, + "minecraft:block.sculk.charge": { + "protocol_id": 1408 + }, + "minecraft:block.sculk.fall": { + "protocol_id": 1410 + }, + "minecraft:block.sculk.hit": { + "protocol_id": 1411 + }, + "minecraft:block.sculk.place": { + "protocol_id": 1412 + }, + "minecraft:block.sculk.spread": { + "protocol_id": 1407 + }, + "minecraft:block.sculk.step": { + "protocol_id": 1413 + }, + "minecraft:block.sculk_catalyst.bloom": { + "protocol_id": 1414 + }, + "minecraft:block.sculk_catalyst.break": { + "protocol_id": 1415 + }, + "minecraft:block.sculk_catalyst.fall": { + "protocol_id": 1416 + }, + "minecraft:block.sculk_catalyst.hit": { + "protocol_id": 1417 + }, + "minecraft:block.sculk_catalyst.place": { + "protocol_id": 1418 + }, + "minecraft:block.sculk_catalyst.step": { + "protocol_id": 1419 + }, + "minecraft:block.sculk_sensor.break": { + "protocol_id": 1422 + }, + "minecraft:block.sculk_sensor.clicking": { + "protocol_id": 1420 + }, + "minecraft:block.sculk_sensor.clicking_stop": { + "protocol_id": 1421 + }, + "minecraft:block.sculk_sensor.fall": { + "protocol_id": 1423 + }, + "minecraft:block.sculk_sensor.hit": { + "protocol_id": 1424 + }, + "minecraft:block.sculk_sensor.place": { + "protocol_id": 1425 + }, + "minecraft:block.sculk_sensor.step": { + "protocol_id": 1426 + }, + "minecraft:block.sculk_shrieker.break": { + "protocol_id": 1427 + }, + "minecraft:block.sculk_shrieker.fall": { + "protocol_id": 1428 + }, + "minecraft:block.sculk_shrieker.hit": { + "protocol_id": 1429 + }, + "minecraft:block.sculk_shrieker.place": { + "protocol_id": 1430 + }, + "minecraft:block.sculk_shrieker.shriek": { + "protocol_id": 1431 + }, + "minecraft:block.sculk_shrieker.step": { + "protocol_id": 1432 + }, + "minecraft:block.sculk_vein.break": { + "protocol_id": 1433 + }, + "minecraft:block.sculk_vein.fall": { + "protocol_id": 1434 + }, + "minecraft:block.sculk_vein.hit": { + "protocol_id": 1435 + }, + "minecraft:block.sculk_vein.place": { + "protocol_id": 1436 + }, + "minecraft:block.sculk_vein.step": { + "protocol_id": 1437 + }, + "minecraft:block.shelf.activate": { + "protocol_id": 1444 + }, + "minecraft:block.shelf.break": { + "protocol_id": 1445 + }, + "minecraft:block.shelf.deactivate": { + "protocol_id": 1446 + }, + "minecraft:block.shelf.fall": { + "protocol_id": 1447 + }, + "minecraft:block.shelf.hit": { + "protocol_id": 1448 + }, + "minecraft:block.shelf.multi_swap": { + "protocol_id": 1449 + }, + "minecraft:block.shelf.place": { + "protocol_id": 1450 + }, + "minecraft:block.shelf.place_item": { + "protocol_id": 1451 + }, + "minecraft:block.shelf.single_swap": { + "protocol_id": 1452 + }, + "minecraft:block.shelf.step": { + "protocol_id": 1453 + }, + "minecraft:block.shelf.take_item": { + "protocol_id": 1454 + }, + "minecraft:block.shroomlight.break": { + "protocol_id": 1457 + }, + "minecraft:block.shroomlight.fall": { + "protocol_id": 1461 + }, + "minecraft:block.shroomlight.hit": { + "protocol_id": 1460 + }, + "minecraft:block.shroomlight.place": { + "protocol_id": 1459 + }, + "minecraft:block.shroomlight.step": { + "protocol_id": 1458 + }, + "minecraft:block.shulker_box.close": { + "protocol_id": 1464 + }, + "minecraft:block.shulker_box.open": { + "protocol_id": 1465 + }, + "minecraft:block.sign.waxed_interact_fail": { "protocol_id": 1756 }, - "minecraft:block.wet_sponge.dries": { + "minecraft:block.slime_block.break": { + "protocol_id": 1498 + }, + "minecraft:block.slime_block.fall": { + "protocol_id": 1499 + }, + "minecraft:block.slime_block.hit": { + "protocol_id": 1500 + }, + "minecraft:block.slime_block.place": { + "protocol_id": 1501 + }, + "minecraft:block.slime_block.step": { + "protocol_id": 1502 + }, + "minecraft:block.small_amethyst_bud.break": { + "protocol_id": 1503 + }, + "minecraft:block.small_amethyst_bud.place": { + "protocol_id": 1504 + }, + "minecraft:block.small_dripleaf.break": { + "protocol_id": 1505 + }, + "minecraft:block.small_dripleaf.fall": { + "protocol_id": 1506 + }, + "minecraft:block.small_dripleaf.hit": { + "protocol_id": 1507 + }, + "minecraft:block.small_dripleaf.place": { + "protocol_id": 1508 + }, + "minecraft:block.small_dripleaf.step": { + "protocol_id": 1509 + }, + "minecraft:block.smithing_table.use": { + "protocol_id": 1550 + }, + "minecraft:block.smoker.smoke": { + "protocol_id": 1551 + }, + "minecraft:block.sniffer_egg.crack": { + "protocol_id": 1565 + }, + "minecraft:block.sniffer_egg.hatch": { + "protocol_id": 1566 + }, + "minecraft:block.sniffer_egg.plop": { + "protocol_id": 1564 + }, + "minecraft:block.snow.break": { + "protocol_id": 1568 + }, + "minecraft:block.snow.fall": { + "protocol_id": 1569 + }, + "minecraft:block.snow.hit": { + "protocol_id": 1575 + }, + "minecraft:block.snow.place": { + "protocol_id": 1576 + }, + "minecraft:block.snow.step": { + "protocol_id": 1577 + }, + "minecraft:block.soul_sand.break": { + "protocol_id": 1510 + }, + "minecraft:block.soul_sand.fall": { + "protocol_id": 1514 + }, + "minecraft:block.soul_sand.hit": { + "protocol_id": 1513 + }, + "minecraft:block.soul_sand.place": { + "protocol_id": 1512 + }, + "minecraft:block.soul_sand.step": { + "protocol_id": 1511 + }, + "minecraft:block.soul_soil.break": { + "protocol_id": 1515 + }, + "minecraft:block.soul_soil.fall": { + "protocol_id": 1519 + }, + "minecraft:block.soul_soil.hit": { + "protocol_id": 1518 + }, + "minecraft:block.soul_soil.place": { + "protocol_id": 1517 + }, + "minecraft:block.soul_soil.step": { + "protocol_id": 1516 + }, + "minecraft:block.spawner.break": { + "protocol_id": 1521 + }, + "minecraft:block.spawner.fall": { + "protocol_id": 1522 + }, + "minecraft:block.spawner.hit": { + "protocol_id": 1523 + }, + "minecraft:block.spawner.place": { + "protocol_id": 1524 + }, + "minecraft:block.spawner.step": { + "protocol_id": 1525 + }, + "minecraft:block.sponge.absorb": { + "protocol_id": 1589 + }, + "minecraft:block.sponge.break": { + "protocol_id": 1584 + }, + "minecraft:block.sponge.fall": { + "protocol_id": 1585 + }, + "minecraft:block.sponge.hit": { + "protocol_id": 1586 + }, + "minecraft:block.sponge.place": { + "protocol_id": 1587 + }, + "minecraft:block.sponge.step": { + "protocol_id": 1588 + }, + "minecraft:block.spore_blossom.break": { + "protocol_id": 1532 + }, + "minecraft:block.spore_blossom.fall": { + "protocol_id": 1533 + }, + "minecraft:block.spore_blossom.hit": { + "protocol_id": 1534 + }, + "minecraft:block.spore_blossom.place": { + "protocol_id": 1535 + }, + "minecraft:block.spore_blossom.step": { + "protocol_id": 1536 + }, + "minecraft:block.stem.break": { + "protocol_id": 1121 + }, + "minecraft:block.stem.fall": { + "protocol_id": 1125 + }, + "minecraft:block.stem.hit": { + "protocol_id": 1124 + }, + "minecraft:block.stem.place": { + "protocol_id": 1123 + }, + "minecraft:block.stem.step": { + "protocol_id": 1122 + }, + "minecraft:block.stone.break": { + "protocol_id": 1596 + }, + "minecraft:block.stone.fall": { + "protocol_id": 1599 + }, + "minecraft:block.stone.hit": { + "protocol_id": 1600 + }, + "minecraft:block.stone.place": { + "protocol_id": 1601 + }, + "minecraft:block.stone.step": { + "protocol_id": 1604 + }, + "minecraft:block.stone_button.click_off": { + "protocol_id": 1597 + }, + "minecraft:block.stone_button.click_on": { + "protocol_id": 1598 + }, + "minecraft:block.stone_pressure_plate.click_off": { + "protocol_id": 1602 + }, + "minecraft:block.stone_pressure_plate.click_on": { + "protocol_id": 1603 + }, + "minecraft:block.sulfur.break": { + "protocol_id": 1912 + }, + "minecraft:block.sulfur.fall": { + "protocol_id": 1916 + }, + "minecraft:block.sulfur.hit": { + "protocol_id": 1915 + }, + "minecraft:block.sulfur.place": { + "protocol_id": 1914 + }, + "minecraft:block.sulfur.step": { + "protocol_id": 1913 + }, + "minecraft:block.sulfur_spike.break": { + "protocol_id": 1609 + }, + "minecraft:block.sulfur_spike.fall": { + "protocol_id": 1613 + }, + "minecraft:block.sulfur_spike.hit": { + "protocol_id": 1612 + }, + "minecraft:block.sulfur_spike.land": { + "protocol_id": 1614 + }, + "minecraft:block.sulfur_spike.place": { + "protocol_id": 1611 + }, + "minecraft:block.sulfur_spike.step": { + "protocol_id": 1610 + }, + "minecraft:block.suspicious_gravel.break": { + "protocol_id": 664 + }, + "minecraft:block.suspicious_gravel.fall": { + "protocol_id": 668 + }, + "minecraft:block.suspicious_gravel.hit": { + "protocol_id": 667 + }, + "minecraft:block.suspicious_gravel.place": { + "protocol_id": 666 + }, + "minecraft:block.suspicious_gravel.step": { + "protocol_id": 665 + }, + "minecraft:block.suspicious_sand.break": { + "protocol_id": 659 + }, + "minecraft:block.suspicious_sand.fall": { + "protocol_id": 663 + }, + "minecraft:block.suspicious_sand.hit": { + "protocol_id": 662 + }, + "minecraft:block.suspicious_sand.place": { + "protocol_id": 661 + }, + "minecraft:block.suspicious_sand.step": { + "protocol_id": 660 + }, + "minecraft:block.sweet_berry_bush.break": { + "protocol_id": 1615 + }, + "minecraft:block.sweet_berry_bush.pick_berries": { + "protocol_id": 1617 + }, + "minecraft:block.sweet_berry_bush.place": { + "protocol_id": 1616 + }, + "minecraft:block.trial_spawner.about_to_spawn_item": { + "protocol_id": 810 + }, + "minecraft:block.trial_spawner.ambient": { + "protocol_id": 815 + }, + "minecraft:block.trial_spawner.ambient_ominous": { + "protocol_id": 816 + }, + "minecraft:block.trial_spawner.break": { + "protocol_id": 804 + }, + "minecraft:block.trial_spawner.close_shutter": { + "protocol_id": 818 + }, + "minecraft:block.trial_spawner.detect_player": { + "protocol_id": 813 + }, + "minecraft:block.trial_spawner.eject_item": { + "protocol_id": 819 + }, + "minecraft:block.trial_spawner.fall": { + "protocol_id": 808 + }, + "minecraft:block.trial_spawner.hit": { + "protocol_id": 807 + }, + "minecraft:block.trial_spawner.ominous_activate": { + "protocol_id": 814 + }, + "minecraft:block.trial_spawner.open_shutter": { + "protocol_id": 817 + }, + "minecraft:block.trial_spawner.place": { + "protocol_id": 806 + }, + "minecraft:block.trial_spawner.spawn_item": { + "protocol_id": 811 + }, + "minecraft:block.trial_spawner.spawn_item_begin": { + "protocol_id": 812 + }, + "minecraft:block.trial_spawner.spawn_mob": { + "protocol_id": 809 + }, + "minecraft:block.trial_spawner.step": { + "protocol_id": 805 + }, + "minecraft:block.tripwire.attach": { + "protocol_id": 1633 + }, + "minecraft:block.tripwire.click_off": { + "protocol_id": 1634 + }, + "minecraft:block.tripwire.click_on": { + "protocol_id": 1635 + }, + "minecraft:block.tripwire.detach": { + "protocol_id": 1636 + }, + "minecraft:block.tuff.break": { + "protocol_id": 1641 + }, + "minecraft:block.tuff.fall": { + "protocol_id": 1645 + }, + "minecraft:block.tuff.hit": { + "protocol_id": 1644 + }, + "minecraft:block.tuff.place": { + "protocol_id": 1643 + }, + "minecraft:block.tuff.step": { + "protocol_id": 1642 + }, + "minecraft:block.tuff_bricks.break": { + "protocol_id": 1646 + }, + "minecraft:block.tuff_bricks.fall": { + "protocol_id": 1647 + }, + "minecraft:block.tuff_bricks.hit": { + "protocol_id": 1648 + }, + "minecraft:block.tuff_bricks.place": { + "protocol_id": 1649 + }, + "minecraft:block.tuff_bricks.step": { + "protocol_id": 1650 + }, + "minecraft:block.vault.activate": { + "protocol_id": 1677 + }, + "minecraft:block.vault.ambient": { + "protocol_id": 1678 + }, + "minecraft:block.vault.break": { + "protocol_id": 1679 + }, + "minecraft:block.vault.close_shutter": { + "protocol_id": 1680 + }, + "minecraft:block.vault.deactivate": { + "protocol_id": 1681 + }, + "minecraft:block.vault.eject_item": { + "protocol_id": 1682 + }, + "minecraft:block.vault.fall": { + "protocol_id": 1684 + }, + "minecraft:block.vault.hit": { + "protocol_id": 1685 + }, + "minecraft:block.vault.insert_item": { + "protocol_id": 1686 + }, + "minecraft:block.vault.insert_item_fail": { + "protocol_id": 1687 + }, + "minecraft:block.vault.open_shutter": { + "protocol_id": 1688 + }, + "minecraft:block.vault.place": { + "protocol_id": 1689 + }, + "minecraft:block.vault.reject_rewarded_player": { + "protocol_id": 1683 + }, + "minecraft:block.vault.step": { + "protocol_id": 1690 + }, + "minecraft:block.vine.break": { + "protocol_id": 1719 + }, + "minecraft:block.vine.fall": { + "protocol_id": 1720 + }, + "minecraft:block.vine.hit": { + "protocol_id": 1721 + }, + "minecraft:block.vine.place": { + "protocol_id": 1722 + }, + "minecraft:block.vine.step": { + "protocol_id": 1723 + }, + "minecraft:block.wart_block.break": { + "protocol_id": 1146 + }, + "minecraft:block.wart_block.fall": { + "protocol_id": 1150 + }, + "minecraft:block.wart_block.hit": { + "protocol_id": 1149 + }, + "minecraft:block.wart_block.place": { + "protocol_id": 1148 + }, + "minecraft:block.wart_block.step": { + "protocol_id": 1147 + }, + "minecraft:block.water.ambient": { "protocol_id": 1757 }, - "minecraft:block.wet_sponge.fall": { - "protocol_id": 1758 + "minecraft:block.weeping_vines.break": { + "protocol_id": 1141 }, - "minecraft:block.wet_sponge.hit": { - "protocol_id": 1759 + "minecraft:block.weeping_vines.fall": { + "protocol_id": 1145 }, - "minecraft:block.wet_sponge.place": { - "protocol_id": 1760 + "minecraft:block.weeping_vines.hit": { + "protocol_id": 1144 }, - "minecraft:block.wet_sponge.step": { + "minecraft:block.weeping_vines.place": { + "protocol_id": 1143 + }, + "minecraft:block.weeping_vines.step": { + "protocol_id": 1142 + }, + "minecraft:block.wet_grass.break": { "protocol_id": 1761 }, + "minecraft:block.wet_grass.fall": { + "protocol_id": 1762 + }, + "minecraft:block.wet_grass.hit": { + "protocol_id": 1763 + }, + "minecraft:block.wet_grass.place": { + "protocol_id": 1764 + }, + "minecraft:block.wet_grass.step": { + "protocol_id": 1765 + }, + "minecraft:block.wet_sponge.break": { + "protocol_id": 1766 + }, + "minecraft:block.wet_sponge.dries": { + "protocol_id": 1767 + }, + "minecraft:block.wet_sponge.fall": { + "protocol_id": 1768 + }, + "minecraft:block.wet_sponge.hit": { + "protocol_id": 1769 + }, + "minecraft:block.wet_sponge.place": { + "protocol_id": 1770 + }, + "minecraft:block.wet_sponge.step": { + "protocol_id": 1771 + }, "minecraft:block.wood.break": { - "protocol_id": 1843 + "protocol_id": 1853 }, "minecraft:block.wood.fall": { - "protocol_id": 1844 + "protocol_id": 1854 }, "minecraft:block.wood.hit": { - "protocol_id": 1845 + "protocol_id": 1855 }, "minecraft:block.wood.place": { - "protocol_id": 1846 + "protocol_id": 1856 }, "minecraft:block.wood.step": { - "protocol_id": 1847 + "protocol_id": 1857 }, "minecraft:block.wooden_button.click_off": { - "protocol_id": 1839 - }, - "minecraft:block.wooden_button.click_on": { - "protocol_id": 1840 - }, - "minecraft:block.wooden_door.close": { - "protocol_id": 1835 - }, - "minecraft:block.wooden_door.open": { - "protocol_id": 1836 - }, - "minecraft:block.wooden_pressure_plate.click_off": { - "protocol_id": 1841 - }, - "minecraft:block.wooden_pressure_plate.click_on": { - "protocol_id": 1842 - }, - "minecraft:block.wooden_trapdoor.close": { - "protocol_id": 1837 - }, - "minecraft:block.wooden_trapdoor.open": { - "protocol_id": 1838 - }, - "minecraft:block.wool.break": { - "protocol_id": 1848 - }, - "minecraft:block.wool.fall": { "protocol_id": 1849 }, - "minecraft:block.wool.hit": { + "minecraft:block.wooden_button.click_on": { "protocol_id": 1850 }, - "minecraft:block.wool.place": { + "minecraft:block.wooden_door.close": { + "protocol_id": 1845 + }, + "minecraft:block.wooden_door.open": { + "protocol_id": 1846 + }, + "minecraft:block.wooden_pressure_plate.click_off": { "protocol_id": 1851 }, - "minecraft:block.wool.step": { + "minecraft:block.wooden_pressure_plate.click_on": { "protocol_id": 1852 }, + "minecraft:block.wooden_trapdoor.close": { + "protocol_id": 1847 + }, + "minecraft:block.wooden_trapdoor.open": { + "protocol_id": 1848 + }, + "minecraft:block.wool.break": { + "protocol_id": 1858 + }, + "minecraft:block.wool.fall": { + "protocol_id": 1859 + }, + "minecraft:block.wool.hit": { + "protocol_id": 1860 + }, + "minecraft:block.wool.place": { + "protocol_id": 1861 + }, + "minecraft:block.wool.step": { + "protocol_id": 1862 + }, "minecraft:enchant.thorns.hit": { - "protocol_id": 1612 + "protocol_id": 1622 }, "minecraft:entity.allay.ambient_with_item": { "protocol_id": 0 @@ -16517,67 +16886,67 @@ "protocol_id": 97 }, "minecraft:entity.baby_cat.ambient": { - "protocol_id": 277 - }, - "minecraft:entity.baby_cat.beg_for_food": { - "protocol_id": 282 - }, - "minecraft:entity.baby_cat.death": { "protocol_id": 279 }, - "minecraft:entity.baby_cat.eat": { - "protocol_id": 280 - }, - "minecraft:entity.baby_cat.hiss": { - "protocol_id": 281 - }, - "minecraft:entity.baby_cat.hurt": { - "protocol_id": 283 - }, - "minecraft:entity.baby_cat.purr": { + "minecraft:entity.baby_cat.beg_for_food": { "protocol_id": 284 }, - "minecraft:entity.baby_cat.purreow": { + "minecraft:entity.baby_cat.death": { + "protocol_id": 281 + }, + "minecraft:entity.baby_cat.eat": { + "protocol_id": 282 + }, + "minecraft:entity.baby_cat.hiss": { + "protocol_id": 283 + }, + "minecraft:entity.baby_cat.hurt": { "protocol_id": 285 }, + "minecraft:entity.baby_cat.purr": { + "protocol_id": 286 + }, + "minecraft:entity.baby_cat.purreow": { + "protocol_id": 287 + }, "minecraft:entity.baby_cat.stray_ambient": { - "protocol_id": 278 + "protocol_id": 280 }, "minecraft:entity.baby_chicken.ambient": { - "protocol_id": 348 + "protocol_id": 350 }, "minecraft:entity.baby_chicken.death": { - "protocol_id": 349 - }, - "minecraft:entity.baby_chicken.hurt": { "protocol_id": 351 }, - "minecraft:entity.baby_chicken.step": { + "minecraft:entity.baby_chicken.hurt": { "protocol_id": 353 }, - "minecraft:entity.baby_horse.ambient": { - "protocol_id": 848 + "minecraft:entity.baby_chicken.step": { + "protocol_id": 355 }, - "minecraft:entity.baby_horse.angry": { + "minecraft:entity.baby_horse.ambient": { "protocol_id": 850 }, - "minecraft:entity.baby_horse.breathe": { - "protocol_id": 854 + "minecraft:entity.baby_horse.angry": { + "protocol_id": 852 }, - "minecraft:entity.baby_horse.death": { + "minecraft:entity.baby_horse.breathe": { "protocol_id": 856 }, - "minecraft:entity.baby_horse.eat": { + "minecraft:entity.baby_horse.death": { "protocol_id": 858 }, + "minecraft:entity.baby_horse.eat": { + "protocol_id": 860 + }, "minecraft:entity.baby_horse.hurt": { - "protocol_id": 861 + "protocol_id": 863 }, "minecraft:entity.baby_horse.land": { - "protocol_id": 864 + "protocol_id": 866 }, "minecraft:entity.baby_horse.step": { - "protocol_id": 867 + "protocol_id": 869 }, "minecraft:entity.baby_nautilus.ambient": { "protocol_id": 108 @@ -16604,40 +16973,40 @@ "protocol_id": 116 }, "minecraft:entity.baby_pig.ambient": { - "protocol_id": 1260 + "protocol_id": 1264 }, "minecraft:entity.baby_pig.death": { - "protocol_id": 1263 + "protocol_id": 1267 }, "minecraft:entity.baby_pig.eat": { - "protocol_id": 1261 + "protocol_id": 1265 }, "minecraft:entity.baby_pig.hurt": { - "protocol_id": 1262 + "protocol_id": 1266 }, "minecraft:entity.baby_pig.step": { - "protocol_id": 1259 + "protocol_id": 1263 }, "minecraft:entity.baby_wolf.ambient": { - "protocol_id": 1781 - }, - "minecraft:entity.baby_wolf.death": { - "protocol_id": 1785 - }, - "minecraft:entity.baby_wolf.growl": { - "protocol_id": 1786 - }, - "minecraft:entity.baby_wolf.hurt": { - "protocol_id": 1787 - }, - "minecraft:entity.baby_wolf.pant": { - "protocol_id": 1788 - }, - "minecraft:entity.baby_wolf.step": { "protocol_id": 1791 }, + "minecraft:entity.baby_wolf.death": { + "protocol_id": 1795 + }, + "minecraft:entity.baby_wolf.growl": { + "protocol_id": 1796 + }, + "minecraft:entity.baby_wolf.hurt": { + "protocol_id": 1797 + }, + "minecraft:entity.baby_wolf.pant": { + "protocol_id": 1798 + }, + "minecraft:entity.baby_wolf.step": { + "protocol_id": 1801 + }, "minecraft:entity.baby_wolf.whine": { - "protocol_id": 1792 + "protocol_id": 1802 }, "minecraft:entity.bat.ambient": { "protocol_id": 147 @@ -16748,2350 +17117,2458 @@ "protocol_id": 210 }, "minecraft:entity.camel.ambient": { - "protocol_id": 258 - }, - "minecraft:entity.camel.dash": { - "protocol_id": 259 - }, - "minecraft:entity.camel.dash_ready": { "protocol_id": 260 }, - "minecraft:entity.camel.death": { + "minecraft:entity.camel.dash": { "protocol_id": 261 }, - "minecraft:entity.camel.eat": { + "minecraft:entity.camel.dash_ready": { "protocol_id": 262 }, - "minecraft:entity.camel.hurt": { + "minecraft:entity.camel.death": { "protocol_id": 263 }, - "minecraft:entity.camel.saddle": { + "minecraft:entity.camel.eat": { "protocol_id": 264 }, - "minecraft:entity.camel.sit": { + "minecraft:entity.camel.hurt": { "protocol_id": 265 }, - "minecraft:entity.camel.stand": { + "minecraft:entity.camel.saddle": { "protocol_id": 266 }, - "minecraft:entity.camel.step": { + "minecraft:entity.camel.sit": { "protocol_id": 267 }, - "minecraft:entity.camel.step_sand": { + "minecraft:entity.camel.stand": { "protocol_id": 268 }, + "minecraft:entity.camel.step": { + "protocol_id": 269 + }, + "minecraft:entity.camel.step_sand": { + "protocol_id": 270 + }, "minecraft:entity.camel_husk.ambient": { - "protocol_id": 247 - }, - "minecraft:entity.camel_husk.dash": { - "protocol_id": 248 - }, - "minecraft:entity.camel_husk.dash_ready": { "protocol_id": 249 }, - "minecraft:entity.camel_husk.death": { + "minecraft:entity.camel_husk.dash": { "protocol_id": 250 }, - "minecraft:entity.camel_husk.eat": { + "minecraft:entity.camel_husk.dash_ready": { "protocol_id": 251 }, - "minecraft:entity.camel_husk.hurt": { + "minecraft:entity.camel_husk.death": { "protocol_id": 252 }, - "minecraft:entity.camel_husk.saddle": { + "minecraft:entity.camel_husk.eat": { "protocol_id": 253 }, - "minecraft:entity.camel_husk.sit": { + "minecraft:entity.camel_husk.hurt": { "protocol_id": 254 }, - "minecraft:entity.camel_husk.stand": { + "minecraft:entity.camel_husk.saddle": { "protocol_id": 255 }, - "minecraft:entity.camel_husk.step": { + "minecraft:entity.camel_husk.sit": { "protocol_id": 256 }, - "minecraft:entity.camel_husk.step_sand": { + "minecraft:entity.camel_husk.stand": { "protocol_id": 257 }, + "minecraft:entity.camel_husk.step": { + "protocol_id": 258 + }, + "minecraft:entity.camel_husk.step_sand": { + "protocol_id": 259 + }, "minecraft:entity.cat.ambient": { - "protocol_id": 286 - }, - "minecraft:entity.cat.beg_for_food": { - "protocol_id": 292 - }, - "minecraft:entity.cat.death": { - "protocol_id": 290 - }, - "minecraft:entity.cat.eat": { - "protocol_id": 291 - }, - "minecraft:entity.cat.hiss": { "protocol_id": 288 }, - "minecraft:entity.cat.hurt": { - "protocol_id": 289 - }, - "minecraft:entity.cat.purr": { - "protocol_id": 293 - }, - "minecraft:entity.cat.purreow": { + "minecraft:entity.cat.beg_for_food": { "protocol_id": 294 }, - "minecraft:entity.cat.stray_ambient": { - "protocol_id": 287 + "minecraft:entity.cat.death": { + "protocol_id": 292 }, - "minecraft:entity.cat_royal.ambient": { + "minecraft:entity.cat.eat": { + "protocol_id": 293 + }, + "minecraft:entity.cat.hiss": { + "protocol_id": 290 + }, + "minecraft:entity.cat.hurt": { + "protocol_id": 291 + }, + "minecraft:entity.cat.purr": { "protocol_id": 295 }, - "minecraft:entity.cat_royal.beg_for_food": { - "protocol_id": 301 - }, - "minecraft:entity.cat_royal.death": { - "protocol_id": 299 - }, - "minecraft:entity.cat_royal.eat": { - "protocol_id": 300 - }, - "minecraft:entity.cat_royal.hiss": { - "protocol_id": 297 - }, - "minecraft:entity.cat_royal.hurt": { - "protocol_id": 298 - }, - "minecraft:entity.cat_royal.purr": { - "protocol_id": 302 - }, - "minecraft:entity.cat_royal.purreow": { - "protocol_id": 303 - }, - "minecraft:entity.cat_royal.stray_ambient": { + "minecraft:entity.cat.purreow": { "protocol_id": 296 }, - "minecraft:entity.chicken.ambient": { - "protocol_id": 354 + "minecraft:entity.cat.stray_ambient": { + "protocol_id": 289 }, - "minecraft:entity.chicken.death": { + "minecraft:entity.cat_royal.ambient": { + "protocol_id": 297 + }, + "minecraft:entity.cat_royal.beg_for_food": { + "protocol_id": 303 + }, + "minecraft:entity.cat_royal.death": { + "protocol_id": 301 + }, + "minecraft:entity.cat_royal.eat": { + "protocol_id": 302 + }, + "minecraft:entity.cat_royal.hiss": { + "protocol_id": 299 + }, + "minecraft:entity.cat_royal.hurt": { + "protocol_id": 300 + }, + "minecraft:entity.cat_royal.purr": { + "protocol_id": 304 + }, + "minecraft:entity.cat_royal.purreow": { + "protocol_id": 305 + }, + "minecraft:entity.cat_royal.stray_ambient": { + "protocol_id": 298 + }, + "minecraft:entity.chicken.ambient": { "protocol_id": 356 }, - "minecraft:entity.chicken.egg": { - "protocol_id": 350 - }, - "minecraft:entity.chicken.hurt": { - "protocol_id": 355 - }, - "minecraft:entity.chicken.step": { - "protocol_id": 352 - }, - "minecraft:entity.chicken_picky.ambient": { - "protocol_id": 357 - }, - "minecraft:entity.chicken_picky.death": { - "protocol_id": 359 - }, - "minecraft:entity.chicken_picky.hurt": { + "minecraft:entity.chicken.death": { "protocol_id": 358 }, + "minecraft:entity.chicken.egg": { + "protocol_id": 352 + }, + "minecraft:entity.chicken.hurt": { + "protocol_id": 357 + }, + "minecraft:entity.chicken.step": { + "protocol_id": 354 + }, + "minecraft:entity.chicken_picky.ambient": { + "protocol_id": 359 + }, + "minecraft:entity.chicken_picky.death": { + "protocol_id": 361 + }, + "minecraft:entity.chicken_picky.hurt": { + "protocol_id": 360 + }, "minecraft:entity.cod.ambient": { - "protocol_id": 377 - }, - "minecraft:entity.cod.death": { - "protocol_id": 378 - }, - "minecraft:entity.cod.flop": { "protocol_id": 379 }, - "minecraft:entity.cod.hurt": { + "minecraft:entity.cod.death": { "protocol_id": 380 }, + "minecraft:entity.cod.flop": { + "protocol_id": 381 + }, + "minecraft:entity.cod.hurt": { + "protocol_id": 382 + }, "minecraft:entity.copper_golem.death": { - "protocol_id": 413 - }, - "minecraft:entity.copper_golem.hurt": { - "protocol_id": 412 - }, - "minecraft:entity.copper_golem.item_drop": { - "protocol_id": 425 - }, - "minecraft:entity.copper_golem.item_no_drop": { - "protocol_id": 426 - }, - "minecraft:entity.copper_golem.no_item_get": { - "protocol_id": 423 - }, - "minecraft:entity.copper_golem.no_item_no_get": { - "protocol_id": 424 - }, - "minecraft:entity.copper_golem.shear": { - "protocol_id": 434 - }, - "minecraft:entity.copper_golem.spawn": { - "protocol_id": 433 - }, - "minecraft:entity.copper_golem.spin": { - "protocol_id": 420 - }, - "minecraft:entity.copper_golem.step": { - "protocol_id": 411 - }, - "minecraft:entity.copper_golem_become_statue": { - "protocol_id": 427 - }, - "minecraft:entity.copper_golem_oxidized.death": { - "protocol_id": 419 - }, - "minecraft:entity.copper_golem_oxidized.hurt": { - "protocol_id": 418 - }, - "minecraft:entity.copper_golem_oxidized.spin": { - "protocol_id": 422 - }, - "minecraft:entity.copper_golem_oxidized.step": { - "protocol_id": 417 - }, - "minecraft:entity.copper_golem_weathered.death": { - "protocol_id": 416 - }, - "minecraft:entity.copper_golem_weathered.hurt": { "protocol_id": 415 }, - "minecraft:entity.copper_golem_weathered.spin": { - "protocol_id": 421 - }, - "minecraft:entity.copper_golem_weathered.step": { + "minecraft:entity.copper_golem.hurt": { "protocol_id": 414 }, - "minecraft:entity.cow.ambient": { - "protocol_id": 448 + "minecraft:entity.copper_golem.item_drop": { + "protocol_id": 427 }, - "minecraft:entity.cow.death": { + "minecraft:entity.copper_golem.item_no_drop": { + "protocol_id": 428 + }, + "minecraft:entity.copper_golem.no_item_get": { + "protocol_id": 425 + }, + "minecraft:entity.copper_golem.no_item_no_get": { + "protocol_id": 426 + }, + "minecraft:entity.copper_golem.shear": { + "protocol_id": 436 + }, + "minecraft:entity.copper_golem.spawn": { + "protocol_id": 435 + }, + "minecraft:entity.copper_golem.spin": { + "protocol_id": 422 + }, + "minecraft:entity.copper_golem.step": { + "protocol_id": 413 + }, + "minecraft:entity.copper_golem_become_statue": { + "protocol_id": 429 + }, + "minecraft:entity.copper_golem_oxidized.death": { + "protocol_id": 421 + }, + "minecraft:entity.copper_golem_oxidized.hurt": { + "protocol_id": 420 + }, + "minecraft:entity.copper_golem_oxidized.spin": { + "protocol_id": 424 + }, + "minecraft:entity.copper_golem_oxidized.step": { + "protocol_id": 419 + }, + "minecraft:entity.copper_golem_weathered.death": { + "protocol_id": 418 + }, + "minecraft:entity.copper_golem_weathered.hurt": { + "protocol_id": 417 + }, + "minecraft:entity.copper_golem_weathered.spin": { + "protocol_id": 423 + }, + "minecraft:entity.copper_golem_weathered.step": { + "protocol_id": 416 + }, + "minecraft:entity.cow.ambient": { "protocol_id": 450 }, - "minecraft:entity.cow.hurt": { - "protocol_id": 449 - }, - "minecraft:entity.cow.milk": { - "protocol_id": 447 - }, - "minecraft:entity.cow.step": { - "protocol_id": 451 - }, - "minecraft:entity.cow_moody.ambient": { + "minecraft:entity.cow.death": { "protocol_id": 452 }, - "minecraft:entity.cow_moody.death": { - "protocol_id": 454 + "minecraft:entity.cow.hurt": { + "protocol_id": 451 }, - "minecraft:entity.cow_moody.hurt": { + "minecraft:entity.cow.milk": { + "protocol_id": 449 + }, + "minecraft:entity.cow.step": { "protocol_id": 453 }, - "minecraft:entity.cow_moody.step": { + "minecraft:entity.cow_moody.ambient": { + "protocol_id": 454 + }, + "minecraft:entity.cow_moody.death": { + "protocol_id": 456 + }, + "minecraft:entity.cow_moody.hurt": { "protocol_id": 455 }, + "minecraft:entity.cow_moody.step": { + "protocol_id": 457 + }, "minecraft:entity.creaking.activate": { - "protocol_id": 459 - }, - "minecraft:entity.creaking.ambient": { - "protocol_id": 458 - }, - "minecraft:entity.creaking.attack": { "protocol_id": 461 }, - "minecraft:entity.creaking.deactivate": { + "minecraft:entity.creaking.ambient": { "protocol_id": 460 }, - "minecraft:entity.creaking.death": { - "protocol_id": 462 - }, - "minecraft:entity.creaking.freeze": { - "protocol_id": 464 - }, - "minecraft:entity.creaking.spawn": { - "protocol_id": 466 - }, - "minecraft:entity.creaking.step": { + "minecraft:entity.creaking.attack": { "protocol_id": 463 }, - "minecraft:entity.creaking.sway": { - "protocol_id": 467 + "minecraft:entity.creaking.deactivate": { + "protocol_id": 462 }, - "minecraft:entity.creaking.twitch": { + "minecraft:entity.creaking.death": { + "protocol_id": 464 + }, + "minecraft:entity.creaking.freeze": { + "protocol_id": 466 + }, + "minecraft:entity.creaking.spawn": { "protocol_id": 468 }, - "minecraft:entity.creaking.unfreeze": { + "minecraft:entity.creaking.step": { "protocol_id": 465 }, + "minecraft:entity.creaking.sway": { + "protocol_id": 469 + }, + "minecraft:entity.creaking.twitch": { + "protocol_id": 470 + }, + "minecraft:entity.creaking.unfreeze": { + "protocol_id": 467 + }, "minecraft:entity.creeper.death": { - "protocol_id": 477 - }, - "minecraft:entity.creeper.hurt": { - "protocol_id": 478 - }, - "minecraft:entity.creeper.primed": { "protocol_id": 479 }, + "minecraft:entity.creeper.hurt": { + "protocol_id": 480 + }, + "minecraft:entity.creeper.primed": { + "protocol_id": 481 + }, "minecraft:entity.dolphin.ambient": { - "protocol_id": 517 - }, - "minecraft:entity.dolphin.ambient_water": { - "protocol_id": 518 - }, - "minecraft:entity.dolphin.attack": { "protocol_id": 519 }, - "minecraft:entity.dolphin.death": { + "minecraft:entity.dolphin.ambient_water": { "protocol_id": 520 }, - "minecraft:entity.dolphin.eat": { + "minecraft:entity.dolphin.attack": { "protocol_id": 521 }, - "minecraft:entity.dolphin.hurt": { + "minecraft:entity.dolphin.death": { "protocol_id": 522 }, - "minecraft:entity.dolphin.jump": { + "minecraft:entity.dolphin.eat": { "protocol_id": 523 }, - "minecraft:entity.dolphin.play": { + "minecraft:entity.dolphin.hurt": { "protocol_id": 524 }, - "minecraft:entity.dolphin.splash": { + "minecraft:entity.dolphin.jump": { "protocol_id": 525 }, - "minecraft:entity.dolphin.swim": { + "minecraft:entity.dolphin.play": { "protocol_id": 526 }, - "minecraft:entity.donkey.ambient": { + "minecraft:entity.dolphin.splash": { "protocol_id": 527 }, - "minecraft:entity.donkey.angry": { + "minecraft:entity.dolphin.swim": { "protocol_id": 528 }, - "minecraft:entity.donkey.chest": { + "minecraft:entity.donkey.ambient": { "protocol_id": 529 }, - "minecraft:entity.donkey.death": { + "minecraft:entity.donkey.angry": { "protocol_id": 530 }, - "minecraft:entity.donkey.eat": { + "minecraft:entity.donkey.chest": { "protocol_id": 531 }, - "minecraft:entity.donkey.hurt": { + "minecraft:entity.donkey.death": { "protocol_id": 532 }, - "minecraft:entity.donkey.jump": { + "minecraft:entity.donkey.eat": { "protocol_id": 533 }, + "minecraft:entity.donkey.hurt": { + "protocol_id": 534 + }, + "minecraft:entity.donkey.jump": { + "protocol_id": 535 + }, "minecraft:entity.dragon_fireball.explode": { - "protocol_id": 585 - }, - "minecraft:entity.drowned.ambient": { - "protocol_id": 560 - }, - "minecraft:entity.drowned.ambient_water": { - "protocol_id": 561 - }, - "minecraft:entity.drowned.death": { - "protocol_id": 562 - }, - "minecraft:entity.drowned.death_water": { - "protocol_id": 563 - }, - "minecraft:entity.drowned.hurt": { - "protocol_id": 564 - }, - "minecraft:entity.drowned.hurt_water": { - "protocol_id": 565 - }, - "minecraft:entity.drowned.shoot": { - "protocol_id": 566 - }, - "minecraft:entity.drowned.step": { - "protocol_id": 567 - }, - "minecraft:entity.drowned.swim": { - "protocol_id": 568 - }, - "minecraft:entity.egg.throw": { - "protocol_id": 570 - }, - "minecraft:entity.elder_guardian.ambient": { - "protocol_id": 571 - }, - "minecraft:entity.elder_guardian.ambient_land": { - "protocol_id": 572 - }, - "minecraft:entity.elder_guardian.curse": { - "protocol_id": 573 - }, - "minecraft:entity.elder_guardian.death": { - "protocol_id": 574 - }, - "minecraft:entity.elder_guardian.death_land": { - "protocol_id": 575 - }, - "minecraft:entity.elder_guardian.flop": { - "protocol_id": 576 - }, - "minecraft:entity.elder_guardian.hurt": { - "protocol_id": 577 - }, - "minecraft:entity.elder_guardian.hurt_land": { - "protocol_id": 578 - }, - "minecraft:entity.ender_dragon.ambient": { - "protocol_id": 583 - }, - "minecraft:entity.ender_dragon.death": { - "protocol_id": 584 - }, - "minecraft:entity.ender_dragon.flap": { - "protocol_id": 586 - }, - "minecraft:entity.ender_dragon.growl": { "protocol_id": 587 }, - "minecraft:entity.ender_dragon.hurt": { + "minecraft:entity.drowned.ambient": { + "protocol_id": 562 + }, + "minecraft:entity.drowned.ambient_water": { + "protocol_id": 563 + }, + "minecraft:entity.drowned.death": { + "protocol_id": 564 + }, + "minecraft:entity.drowned.death_water": { + "protocol_id": 565 + }, + "minecraft:entity.drowned.hurt": { + "protocol_id": 566 + }, + "minecraft:entity.drowned.hurt_water": { + "protocol_id": 567 + }, + "minecraft:entity.drowned.shoot": { + "protocol_id": 568 + }, + "minecraft:entity.drowned.step": { + "protocol_id": 569 + }, + "minecraft:entity.drowned.swim": { + "protocol_id": 570 + }, + "minecraft:entity.egg.throw": { + "protocol_id": 572 + }, + "minecraft:entity.elder_guardian.ambient": { + "protocol_id": 573 + }, + "minecraft:entity.elder_guardian.ambient_land": { + "protocol_id": 574 + }, + "minecraft:entity.elder_guardian.curse": { + "protocol_id": 575 + }, + "minecraft:entity.elder_guardian.death": { + "protocol_id": 576 + }, + "minecraft:entity.elder_guardian.death_land": { + "protocol_id": 577 + }, + "minecraft:entity.elder_guardian.flop": { + "protocol_id": 578 + }, + "minecraft:entity.elder_guardian.hurt": { + "protocol_id": 579 + }, + "minecraft:entity.elder_guardian.hurt_land": { + "protocol_id": 580 + }, + "minecraft:entity.ender_dragon.ambient": { + "protocol_id": 585 + }, + "minecraft:entity.ender_dragon.death": { + "protocol_id": 586 + }, + "minecraft:entity.ender_dragon.flap": { "protocol_id": 588 }, - "minecraft:entity.ender_dragon.shoot": { + "minecraft:entity.ender_dragon.growl": { "protocol_id": 589 }, - "minecraft:entity.ender_eye.death": { + "minecraft:entity.ender_dragon.hurt": { "protocol_id": 590 }, - "minecraft:entity.ender_eye.launch": { + "minecraft:entity.ender_dragon.shoot": { "protocol_id": 591 }, - "minecraft:entity.ender_pearl.throw": { - "protocol_id": 602 - }, - "minecraft:entity.enderman.ambient": { + "minecraft:entity.ender_eye.death": { "protocol_id": 592 }, - "minecraft:entity.enderman.death": { + "minecraft:entity.ender_eye.launch": { "protocol_id": 593 }, - "minecraft:entity.enderman.hurt": { + "minecraft:entity.ender_pearl.throw": { + "protocol_id": 604 + }, + "minecraft:entity.enderman.ambient": { "protocol_id": 594 }, - "minecraft:entity.enderman.scream": { + "minecraft:entity.enderman.death": { "protocol_id": 595 }, - "minecraft:entity.enderman.stare": { + "minecraft:entity.enderman.hurt": { "protocol_id": 596 }, - "minecraft:entity.enderman.teleport": { + "minecraft:entity.enderman.scream": { "protocol_id": 597 }, - "minecraft:entity.endermite.ambient": { + "minecraft:entity.enderman.stare": { "protocol_id": 598 }, - "minecraft:entity.endermite.death": { + "minecraft:entity.enderman.teleport": { "protocol_id": 599 }, - "minecraft:entity.endermite.hurt": { + "minecraft:entity.endermite.ambient": { "protocol_id": 600 }, - "minecraft:entity.endermite.step": { + "minecraft:entity.endermite.death": { "protocol_id": 601 }, + "minecraft:entity.endermite.hurt": { + "protocol_id": 602 + }, + "minecraft:entity.endermite.step": { + "protocol_id": 603 + }, "minecraft:entity.evoker.ambient": { - "protocol_id": 606 - }, - "minecraft:entity.evoker.cast_spell": { - "protocol_id": 607 - }, - "minecraft:entity.evoker.celebrate": { "protocol_id": 608 }, - "minecraft:entity.evoker.death": { + "minecraft:entity.evoker.cast_spell": { "protocol_id": 609 }, - "minecraft:entity.evoker.hurt": { - "protocol_id": 611 - }, - "minecraft:entity.evoker.prepare_attack": { - "protocol_id": 612 - }, - "minecraft:entity.evoker.prepare_summon": { - "protocol_id": 613 - }, - "minecraft:entity.evoker.prepare_wololo": { - "protocol_id": 614 - }, - "minecraft:entity.evoker_fangs.attack": { + "minecraft:entity.evoker.celebrate": { "protocol_id": 610 }, - "minecraft:entity.experience_bottle.throw": { + "minecraft:entity.evoker.death": { + "protocol_id": 611 + }, + "minecraft:entity.evoker.hurt": { + "protocol_id": 613 + }, + "minecraft:entity.evoker.prepare_attack": { + "protocol_id": 614 + }, + "minecraft:entity.evoker.prepare_summon": { "protocol_id": 615 }, - "minecraft:entity.experience_orb.pickup": { + "minecraft:entity.evoker.prepare_wololo": { "protocol_id": 616 }, + "minecraft:entity.evoker_fangs.attack": { + "protocol_id": 612 + }, + "minecraft:entity.experience_bottle.throw": { + "protocol_id": 617 + }, + "minecraft:entity.experience_orb.pickup": { + "protocol_id": 618 + }, "minecraft:entity.firework_rocket.blast": { - "protocol_id": 626 - }, - "minecraft:entity.firework_rocket.blast_far": { - "protocol_id": 627 - }, - "minecraft:entity.firework_rocket.large_blast": { "protocol_id": 628 }, - "minecraft:entity.firework_rocket.large_blast_far": { + "minecraft:entity.firework_rocket.blast_far": { "protocol_id": 629 }, - "minecraft:entity.firework_rocket.launch": { + "minecraft:entity.firework_rocket.large_blast": { "protocol_id": 630 }, - "minecraft:entity.firework_rocket.shoot": { + "minecraft:entity.firework_rocket.large_blast_far": { "protocol_id": 631 }, - "minecraft:entity.firework_rocket.twinkle": { + "minecraft:entity.firework_rocket.launch": { "protocol_id": 632 }, - "minecraft:entity.firework_rocket.twinkle_far": { + "minecraft:entity.firework_rocket.shoot": { "protocol_id": 633 }, + "minecraft:entity.firework_rocket.twinkle": { + "protocol_id": 634 + }, + "minecraft:entity.firework_rocket.twinkle_far": { + "protocol_id": 635 + }, "minecraft:entity.fish.swim": { - "protocol_id": 636 - }, - "minecraft:entity.fishing_bobber.retrieve": { - "protocol_id": 637 - }, - "minecraft:entity.fishing_bobber.splash": { "protocol_id": 638 }, - "minecraft:entity.fishing_bobber.throw": { + "minecraft:entity.fishing_bobber.retrieve": { "protocol_id": 639 }, + "minecraft:entity.fishing_bobber.splash": { + "protocol_id": 640 + }, + "minecraft:entity.fishing_bobber.throw": { + "protocol_id": 641 + }, "minecraft:entity.fox.aggro": { - "protocol_id": 646 - }, - "minecraft:entity.fox.ambient": { - "protocol_id": 647 - }, - "minecraft:entity.fox.bite": { "protocol_id": 648 }, - "minecraft:entity.fox.death": { + "minecraft:entity.fox.ambient": { "protocol_id": 649 }, - "minecraft:entity.fox.eat": { + "minecraft:entity.fox.bite": { "protocol_id": 650 }, - "minecraft:entity.fox.hurt": { + "minecraft:entity.fox.death": { "protocol_id": 651 }, - "minecraft:entity.fox.screech": { + "minecraft:entity.fox.eat": { "protocol_id": 652 }, - "minecraft:entity.fox.sleep": { + "minecraft:entity.fox.hurt": { "protocol_id": 653 }, - "minecraft:entity.fox.sniff": { + "minecraft:entity.fox.screech": { "protocol_id": 654 }, - "minecraft:entity.fox.spit": { + "minecraft:entity.fox.sleep": { "protocol_id": 655 }, - "minecraft:entity.fox.teleport": { + "minecraft:entity.fox.sniff": { "protocol_id": 656 }, + "minecraft:entity.fox.spit": { + "protocol_id": 657 + }, + "minecraft:entity.fox.teleport": { + "protocol_id": 658 + }, "minecraft:entity.frog.ambient": { - "protocol_id": 678 - }, - "minecraft:entity.frog.death": { - "protocol_id": 679 - }, - "minecraft:entity.frog.eat": { "protocol_id": 680 }, - "minecraft:entity.frog.hurt": { + "minecraft:entity.frog.death": { "protocol_id": 681 }, - "minecraft:entity.frog.lay_spawn": { + "minecraft:entity.frog.eat": { "protocol_id": 682 }, - "minecraft:entity.frog.long_jump": { + "minecraft:entity.frog.hurt": { "protocol_id": 683 }, - "minecraft:entity.frog.step": { + "minecraft:entity.frog.lay_spawn": { "protocol_id": 684 }, - "minecraft:entity.frog.tongue": { + "minecraft:entity.frog.long_jump": { "protocol_id": 685 }, + "minecraft:entity.frog.step": { + "protocol_id": 686 + }, + "minecraft:entity.frog.tongue": { + "protocol_id": 687 + }, "minecraft:entity.generic.big_fall": { - "protocol_id": 692 - }, - "minecraft:entity.generic.burn": { - "protocol_id": 693 - }, - "minecraft:entity.generic.death": { "protocol_id": 694 }, - "minecraft:entity.generic.drink": { + "minecraft:entity.generic.burn": { "protocol_id": 695 }, - "minecraft:entity.generic.eat": { + "minecraft:entity.generic.death": { "protocol_id": 696 }, - "minecraft:entity.generic.explode": { + "minecraft:entity.generic.drink": { "protocol_id": 697 }, - "minecraft:entity.generic.extinguish_fire": { + "minecraft:entity.generic.eat": { "protocol_id": 698 }, - "minecraft:entity.generic.hurt": { + "minecraft:entity.generic.explode": { "protocol_id": 699 }, - "minecraft:entity.generic.small_fall": { + "minecraft:entity.generic.extinguish_fire": { "protocol_id": 700 }, - "minecraft:entity.generic.splash": { + "minecraft:entity.generic.hurt": { "protocol_id": 701 }, - "minecraft:entity.generic.swim": { + "minecraft:entity.generic.small_fall": { "protocol_id": 702 }, - "minecraft:entity.ghast.ambient": { + "minecraft:entity.generic.splash": { "protocol_id": 703 }, - "minecraft:entity.ghast.death": { + "minecraft:entity.generic.swim": { "protocol_id": 704 }, - "minecraft:entity.ghast.hurt": { + "minecraft:entity.ghast.ambient": { "protocol_id": 705 }, - "minecraft:entity.ghast.scream": { + "minecraft:entity.ghast.death": { "protocol_id": 706 }, - "minecraft:entity.ghast.shoot": { + "minecraft:entity.ghast.hurt": { "protocol_id": 707 }, - "minecraft:entity.ghast.warn": { + "minecraft:entity.ghast.scream": { "protocol_id": 708 }, - "minecraft:entity.ghastling.ambient": { + "minecraft:entity.ghast.shoot": { "protocol_id": 709 }, - "minecraft:entity.ghastling.death": { + "minecraft:entity.ghast.warn": { "protocol_id": 710 }, - "minecraft:entity.ghastling.hurt": { + "minecraft:entity.ghastling.ambient": { "protocol_id": 711 }, - "minecraft:entity.ghastling.spawn": { + "minecraft:entity.ghastling.death": { "protocol_id": 712 }, + "minecraft:entity.ghastling.hurt": { + "protocol_id": 713 + }, + "minecraft:entity.ghastling.spawn": { + "protocol_id": 714 + }, "minecraft:entity.glow_item_frame.add_item": { - "protocol_id": 724 - }, - "minecraft:entity.glow_item_frame.break": { - "protocol_id": 725 - }, - "minecraft:entity.glow_item_frame.place": { "protocol_id": 726 }, - "minecraft:entity.glow_item_frame.remove_item": { + "minecraft:entity.glow_item_frame.break": { "protocol_id": 727 }, - "minecraft:entity.glow_item_frame.rotate_item": { + "minecraft:entity.glow_item_frame.place": { "protocol_id": 728 }, - "minecraft:entity.glow_squid.ambient": { + "minecraft:entity.glow_item_frame.remove_item": { "protocol_id": 729 }, - "minecraft:entity.glow_squid.death": { + "minecraft:entity.glow_item_frame.rotate_item": { "protocol_id": 730 }, - "minecraft:entity.glow_squid.hurt": { + "minecraft:entity.glow_squid.ambient": { "protocol_id": 731 }, - "minecraft:entity.glow_squid.squirt": { + "minecraft:entity.glow_squid.death": { "protocol_id": 732 }, - "minecraft:entity.goat.ambient": { + "minecraft:entity.glow_squid.hurt": { "protocol_id": 733 }, - "minecraft:entity.goat.death": { + "minecraft:entity.glow_squid.squirt": { "protocol_id": 734 }, - "minecraft:entity.goat.eat": { + "minecraft:entity.goat.ambient": { "protocol_id": 735 }, - "minecraft:entity.goat.horn_break": { - "protocol_id": 741 - }, - "minecraft:entity.goat.hurt": { + "minecraft:entity.goat.death": { "protocol_id": 736 }, - "minecraft:entity.goat.long_jump": { + "minecraft:entity.goat.eat": { "protocol_id": 737 }, - "minecraft:entity.goat.milk": { - "protocol_id": 738 - }, - "minecraft:entity.goat.prepare_ram": { - "protocol_id": 739 - }, - "minecraft:entity.goat.ram_impact": { - "protocol_id": 740 - }, - "minecraft:entity.goat.screaming.ambient": { - "protocol_id": 742 - }, - "minecraft:entity.goat.screaming.death": { + "minecraft:entity.goat.horn_break": { "protocol_id": 743 }, - "minecraft:entity.goat.screaming.eat": { + "minecraft:entity.goat.hurt": { + "protocol_id": 738 + }, + "minecraft:entity.goat.long_jump": { + "protocol_id": 739 + }, + "minecraft:entity.goat.milk": { + "protocol_id": 740 + }, + "minecraft:entity.goat.prepare_ram": { + "protocol_id": 741 + }, + "minecraft:entity.goat.ram_impact": { + "protocol_id": 742 + }, + "minecraft:entity.goat.screaming.ambient": { "protocol_id": 744 }, - "minecraft:entity.goat.screaming.hurt": { + "minecraft:entity.goat.screaming.death": { "protocol_id": 745 }, - "minecraft:entity.goat.screaming.long_jump": { + "minecraft:entity.goat.screaming.eat": { "protocol_id": 746 }, - "minecraft:entity.goat.screaming.milk": { + "minecraft:entity.goat.screaming.hurt": { "protocol_id": 747 }, - "minecraft:entity.goat.screaming.prepare_ram": { + "minecraft:entity.goat.screaming.long_jump": { "protocol_id": 748 }, - "minecraft:entity.goat.screaming.ram_impact": { + "minecraft:entity.goat.screaming.milk": { "protocol_id": 749 }, - "minecraft:entity.goat.step": { + "minecraft:entity.goat.screaming.prepare_ram": { "protocol_id": 750 }, + "minecraft:entity.goat.screaming.ram_impact": { + "protocol_id": 751 + }, + "minecraft:entity.goat.step": { + "protocol_id": 752 + }, "minecraft:entity.guardian.ambient": { - "protocol_id": 765 - }, - "minecraft:entity.guardian.ambient_land": { - "protocol_id": 766 - }, - "minecraft:entity.guardian.attack": { "protocol_id": 767 }, - "minecraft:entity.guardian.death": { + "minecraft:entity.guardian.ambient_land": { "protocol_id": 768 }, - "minecraft:entity.guardian.death_land": { + "minecraft:entity.guardian.attack": { "protocol_id": 769 }, - "minecraft:entity.guardian.flop": { + "minecraft:entity.guardian.death": { "protocol_id": 770 }, - "minecraft:entity.guardian.hurt": { + "minecraft:entity.guardian.death_land": { "protocol_id": 771 }, - "minecraft:entity.guardian.hurt_land": { + "minecraft:entity.guardian.flop": { "protocol_id": 772 }, + "minecraft:entity.guardian.hurt": { + "protocol_id": 773 + }, + "minecraft:entity.guardian.hurt_land": { + "protocol_id": 774 + }, "minecraft:entity.happy_ghast.ambient": { - "protocol_id": 783 - }, - "minecraft:entity.happy_ghast.death": { - "protocol_id": 784 - }, - "minecraft:entity.happy_ghast.equip": { - "protocol_id": 818 - }, - "minecraft:entity.happy_ghast.harness_goggles_down": { - "protocol_id": 821 - }, - "minecraft:entity.happy_ghast.harness_goggles_up": { - "protocol_id": 820 - }, - "minecraft:entity.happy_ghast.hurt": { "protocol_id": 785 }, - "minecraft:entity.happy_ghast.riding": { + "minecraft:entity.happy_ghast.death": { "protocol_id": 786 }, - "minecraft:entity.happy_ghast.unequip": { - "protocol_id": 819 + "minecraft:entity.happy_ghast.equip": { + "protocol_id": 820 }, - "minecraft:entity.hoglin.ambient": { + "minecraft:entity.happy_ghast.harness_goggles_down": { "protocol_id": 823 }, - "minecraft:entity.hoglin.angry": { - "protocol_id": 824 + "minecraft:entity.happy_ghast.harness_goggles_up": { + "protocol_id": 822 }, - "minecraft:entity.hoglin.attack": { + "minecraft:entity.happy_ghast.hurt": { + "protocol_id": 787 + }, + "minecraft:entity.happy_ghast.riding": { + "protocol_id": 788 + }, + "minecraft:entity.happy_ghast.unequip": { + "protocol_id": 821 + }, + "minecraft:entity.hoglin.ambient": { "protocol_id": 825 }, - "minecraft:entity.hoglin.converted_to_zombified": { + "minecraft:entity.hoglin.angry": { "protocol_id": 826 }, - "minecraft:entity.hoglin.death": { + "minecraft:entity.hoglin.attack": { "protocol_id": 827 }, - "minecraft:entity.hoglin.hurt": { + "minecraft:entity.hoglin.converted_to_zombified": { "protocol_id": 828 }, - "minecraft:entity.hoglin.retreat": { + "minecraft:entity.hoglin.death": { "protocol_id": 829 }, - "minecraft:entity.hoglin.step": { + "minecraft:entity.hoglin.hurt": { "protocol_id": 830 }, - "minecraft:entity.horse.ambient": { - "protocol_id": 847 + "minecraft:entity.hoglin.retreat": { + "protocol_id": 831 }, - "minecraft:entity.horse.angry": { + "minecraft:entity.hoglin.step": { + "protocol_id": 832 + }, + "minecraft:entity.horse.ambient": { "protocol_id": 849 }, - "minecraft:entity.horse.armor": { + "minecraft:entity.horse.angry": { "protocol_id": 851 }, - "minecraft:entity.horse.breathe": { + "minecraft:entity.horse.armor": { "protocol_id": 853 }, - "minecraft:entity.horse.death": { + "minecraft:entity.horse.breathe": { "protocol_id": 855 }, - "minecraft:entity.horse.eat": { + "minecraft:entity.horse.death": { "protocol_id": 857 }, - "minecraft:entity.horse.gallop": { + "minecraft:entity.horse.eat": { "protocol_id": 859 }, - "minecraft:entity.horse.hurt": { - "protocol_id": 860 + "minecraft:entity.horse.gallop": { + "protocol_id": 861 }, - "minecraft:entity.horse.jump": { + "minecraft:entity.horse.hurt": { "protocol_id": 862 }, - "minecraft:entity.horse.land": { - "protocol_id": 863 + "minecraft:entity.horse.jump": { + "protocol_id": 864 }, - "minecraft:entity.horse.saddle": { + "minecraft:entity.horse.land": { "protocol_id": 865 }, - "minecraft:entity.horse.step": { - "protocol_id": 866 + "minecraft:entity.horse.saddle": { + "protocol_id": 867 }, - "minecraft:entity.horse.step_wood": { + "minecraft:entity.horse.step": { "protocol_id": 868 }, - "minecraft:entity.hostile.big_fall": { - "protocol_id": 869 - }, - "minecraft:entity.hostile.death": { + "minecraft:entity.horse.step_wood": { "protocol_id": 870 }, - "minecraft:entity.hostile.hurt": { + "minecraft:entity.hostile.big_fall": { "protocol_id": 871 }, - "minecraft:entity.hostile.small_fall": { + "minecraft:entity.hostile.death": { "protocol_id": 872 }, - "minecraft:entity.hostile.splash": { + "minecraft:entity.hostile.hurt": { "protocol_id": 873 }, - "minecraft:entity.hostile.swim": { + "minecraft:entity.hostile.small_fall": { "protocol_id": 874 }, - "minecraft:entity.husk.ambient": { + "minecraft:entity.hostile.splash": { "protocol_id": 875 }, - "minecraft:entity.husk.converted_to_zombie": { + "minecraft:entity.hostile.swim": { "protocol_id": 876 }, - "minecraft:entity.husk.death": { + "minecraft:entity.husk.ambient": { "protocol_id": 877 }, - "minecraft:entity.husk.hurt": { + "minecraft:entity.husk.converted_to_zombie": { "protocol_id": 878 }, - "minecraft:entity.husk.step": { + "minecraft:entity.husk.death": { "protocol_id": 879 }, - "minecraft:entity.illusioner.ambient": { + "minecraft:entity.husk.hurt": { "protocol_id": 880 }, - "minecraft:entity.illusioner.cast_spell": { + "minecraft:entity.husk.step": { "protocol_id": 881 }, - "minecraft:entity.illusioner.death": { + "minecraft:entity.illusioner.ambient": { "protocol_id": 882 }, - "minecraft:entity.illusioner.hurt": { + "minecraft:entity.illusioner.cast_spell": { "protocol_id": 883 }, - "minecraft:entity.illusioner.mirror_move": { + "minecraft:entity.illusioner.death": { "protocol_id": 884 }, - "minecraft:entity.illusioner.prepare_blindness": { + "minecraft:entity.illusioner.hurt": { "protocol_id": 885 }, - "minecraft:entity.illusioner.prepare_mirror": { + "minecraft:entity.illusioner.mirror_move": { "protocol_id": 886 }, + "minecraft:entity.illusioner.prepare_blindness": { + "protocol_id": 887 + }, + "minecraft:entity.illusioner.prepare_mirror": { + "protocol_id": 888 + }, "minecraft:entity.iron_golem.attack": { - "protocol_id": 895 - }, - "minecraft:entity.iron_golem.damage": { - "protocol_id": 896 - }, - "minecraft:entity.iron_golem.death": { "protocol_id": 897 }, - "minecraft:entity.iron_golem.hurt": { + "minecraft:entity.iron_golem.damage": { "protocol_id": 898 }, - "minecraft:entity.iron_golem.repair": { + "minecraft:entity.iron_golem.death": { "protocol_id": 899 }, - "minecraft:entity.iron_golem.step": { + "minecraft:entity.iron_golem.hurt": { "protocol_id": 900 }, + "minecraft:entity.iron_golem.repair": { + "protocol_id": 901 + }, + "minecraft:entity.iron_golem.step": { + "protocol_id": 902 + }, "minecraft:entity.item.break": { - "protocol_id": 908 + "protocol_id": 910 }, "minecraft:entity.item.pickup": { - "protocol_id": 909 + "protocol_id": 911 }, "minecraft:entity.item_frame.add_item": { - "protocol_id": 903 - }, - "minecraft:entity.item_frame.break": { - "protocol_id": 904 - }, - "minecraft:entity.item_frame.place": { "protocol_id": 905 }, - "minecraft:entity.item_frame.remove_item": { + "minecraft:entity.item_frame.break": { "protocol_id": 906 }, - "minecraft:entity.item_frame.rotate_item": { + "minecraft:entity.item_frame.place": { "protocol_id": 907 }, + "minecraft:entity.item_frame.remove_item": { + "protocol_id": 908 + }, + "minecraft:entity.item_frame.rotate_item": { + "protocol_id": 909 + }, "minecraft:entity.lightning_bolt.impact": { - "protocol_id": 934 - }, - "minecraft:entity.lightning_bolt.thunder": { - "protocol_id": 935 - }, - "minecraft:entity.lingering_potion.throw": { "protocol_id": 936 }, - "minecraft:entity.llama.ambient": { + "minecraft:entity.lightning_bolt.thunder": { "protocol_id": 937 }, - "minecraft:entity.llama.angry": { + "minecraft:entity.lingering_potion.throw": { "protocol_id": 938 }, - "minecraft:entity.llama.chest": { + "minecraft:entity.llama.ambient": { "protocol_id": 939 }, - "minecraft:entity.llama.death": { + "minecraft:entity.llama.angry": { "protocol_id": 940 }, - "minecraft:entity.llama.eat": { + "minecraft:entity.llama.chest": { "protocol_id": 941 }, - "minecraft:entity.llama.hurt": { + "minecraft:entity.llama.death": { "protocol_id": 942 }, - "minecraft:entity.llama.spit": { + "minecraft:entity.llama.eat": { "protocol_id": 943 }, - "minecraft:entity.llama.step": { + "minecraft:entity.llama.hurt": { "protocol_id": 944 }, - "minecraft:entity.llama.swag": { + "minecraft:entity.llama.spit": { "protocol_id": 945 }, - "minecraft:entity.magma_cube.death": { - "protocol_id": 960 + "minecraft:entity.llama.step": { + "protocol_id": 946 }, - "minecraft:entity.magma_cube.death_small": { + "minecraft:entity.llama.swag": { "protocol_id": 947 }, - "minecraft:entity.magma_cube.hurt": { - "protocol_id": 961 - }, - "minecraft:entity.magma_cube.hurt_small": { + "minecraft:entity.magma_cube.death": { "protocol_id": 962 }, - "minecraft:entity.magma_cube.jump": { + "minecraft:entity.magma_cube.death_small": { + "protocol_id": 949 + }, + "minecraft:entity.magma_cube.hurt": { "protocol_id": 963 }, - "minecraft:entity.magma_cube.squish": { + "minecraft:entity.magma_cube.hurt_small": { "protocol_id": 964 }, - "minecraft:entity.magma_cube.squish_small": { + "minecraft:entity.magma_cube.jump": { "protocol_id": 965 }, + "minecraft:entity.magma_cube.squish": { + "protocol_id": 966 + }, + "minecraft:entity.magma_cube.squish_small": { + "protocol_id": 967 + }, "minecraft:entity.minecart.inside": { - "protocol_id": 981 - }, - "minecraft:entity.minecart.inside.underwater": { - "protocol_id": 980 - }, - "minecraft:entity.minecart.riding": { - "protocol_id": 982 - }, - "minecraft:entity.mooshroom.convert": { "protocol_id": 983 }, - "minecraft:entity.mooshroom.eat": { + "minecraft:entity.minecart.inside.underwater": { + "protocol_id": 982 + }, + "minecraft:entity.minecart.riding": { "protocol_id": 984 }, - "minecraft:entity.mooshroom.milk": { + "minecraft:entity.mooshroom.convert": { "protocol_id": 985 }, - "minecraft:entity.mooshroom.shear": { - "protocol_id": 987 - }, - "minecraft:entity.mooshroom.suspicious_milk": { + "minecraft:entity.mooshroom.eat": { "protocol_id": 986 }, + "minecraft:entity.mooshroom.milk": { + "protocol_id": 987 + }, + "minecraft:entity.mooshroom.shear": { + "protocol_id": 989 + }, + "minecraft:entity.mooshroom.suspicious_milk": { + "protocol_id": 988 + }, "minecraft:entity.mule.ambient": { - "protocol_id": 1018 - }, - "minecraft:entity.mule.angry": { - "protocol_id": 1019 - }, - "minecraft:entity.mule.chest": { "protocol_id": 1020 }, - "minecraft:entity.mule.death": { + "minecraft:entity.mule.angry": { "protocol_id": 1021 }, - "minecraft:entity.mule.eat": { + "minecraft:entity.mule.chest": { "protocol_id": 1022 }, - "minecraft:entity.mule.hurt": { + "minecraft:entity.mule.death": { "protocol_id": 1023 }, - "minecraft:entity.mule.jump": { + "minecraft:entity.mule.eat": { "protocol_id": 1024 }, + "minecraft:entity.mule.hurt": { + "protocol_id": 1025 + }, + "minecraft:entity.mule.jump": { + "protocol_id": 1026 + }, "minecraft:entity.nautilus.ambient": { - "protocol_id": 1077 - }, - "minecraft:entity.nautilus.ambient_land": { - "protocol_id": 1078 - }, - "minecraft:entity.nautilus.dash": { - "protocol_id": 1079 - }, - "minecraft:entity.nautilus.dash_land": { - "protocol_id": 1080 - }, - "minecraft:entity.nautilus.dash_ready": { "protocol_id": 1081 }, - "minecraft:entity.nautilus.dash_ready_land": { + "minecraft:entity.nautilus.ambient_land": { "protocol_id": 1082 }, - "minecraft:entity.nautilus.death": { + "minecraft:entity.nautilus.dash": { "protocol_id": 1083 }, - "minecraft:entity.nautilus.death_land": { + "minecraft:entity.nautilus.dash_land": { "protocol_id": 1084 }, - "minecraft:entity.nautilus.eat": { + "minecraft:entity.nautilus.dash_ready": { "protocol_id": 1085 }, - "minecraft:entity.nautilus.hurt": { + "minecraft:entity.nautilus.dash_ready_land": { "protocol_id": 1086 }, - "minecraft:entity.nautilus.hurt_land": { + "minecraft:entity.nautilus.death": { "protocol_id": 1087 }, + "minecraft:entity.nautilus.death_land": { + "protocol_id": 1088 + }, + "minecraft:entity.nautilus.eat": { + "protocol_id": 1089 + }, + "minecraft:entity.nautilus.hurt": { + "protocol_id": 1090 + }, + "minecraft:entity.nautilus.hurt_land": { + "protocol_id": 1091 + }, "minecraft:entity.nautilus.riding": { "protocol_id": 115 }, "minecraft:entity.nautilus.swim": { - "protocol_id": 1088 + "protocol_id": 1092 }, "minecraft:entity.ocelot.ambient": { - "protocol_id": 1184 - }, - "minecraft:entity.ocelot.death": { - "protocol_id": 1185 - }, - "minecraft:entity.ocelot.hurt": { - "protocol_id": 1183 - }, - "minecraft:entity.painting.break": { - "protocol_id": 1187 - }, - "minecraft:entity.painting.place": { "protocol_id": 1188 }, - "minecraft:entity.panda.aggressive_ambient": { - "protocol_id": 1197 + "minecraft:entity.ocelot.death": { + "protocol_id": 1189 }, - "minecraft:entity.panda.ambient": { - "protocol_id": 1192 + "minecraft:entity.ocelot.hurt": { + "protocol_id": 1187 }, - "minecraft:entity.panda.bite": { - "protocol_id": 1200 - }, - "minecraft:entity.panda.cant_breed": { - "protocol_id": 1196 - }, - "minecraft:entity.panda.death": { - "protocol_id": 1193 - }, - "minecraft:entity.panda.eat": { - "protocol_id": 1194 - }, - "minecraft:entity.panda.hurt": { - "protocol_id": 1199 - }, - "minecraft:entity.panda.pre_sneeze": { - "protocol_id": 1190 - }, - "minecraft:entity.panda.sneeze": { + "minecraft:entity.painting.break": { "protocol_id": 1191 }, - "minecraft:entity.panda.step": { - "protocol_id": 1195 + "minecraft:entity.painting.place": { + "protocol_id": 1192 }, - "minecraft:entity.panda.worried_ambient": { - "protocol_id": 1198 - }, - "minecraft:entity.parched.ambient": { + "minecraft:entity.panda.aggressive_ambient": { "protocol_id": 1201 }, - "minecraft:entity.parched.death": { - "protocol_id": 1202 + "minecraft:entity.panda.ambient": { + "protocol_id": 1196 }, - "minecraft:entity.parched.hurt": { - "protocol_id": 1203 - }, - "minecraft:entity.parched.step": { + "minecraft:entity.panda.bite": { "protocol_id": 1204 }, - "minecraft:entity.parrot.ambient": { + "minecraft:entity.panda.cant_breed": { + "protocol_id": 1200 + }, + "minecraft:entity.panda.death": { + "protocol_id": 1197 + }, + "minecraft:entity.panda.eat": { + "protocol_id": 1198 + }, + "minecraft:entity.panda.hurt": { + "protocol_id": 1203 + }, + "minecraft:entity.panda.pre_sneeze": { + "protocol_id": 1194 + }, + "minecraft:entity.panda.sneeze": { + "protocol_id": 1195 + }, + "minecraft:entity.panda.step": { + "protocol_id": 1199 + }, + "minecraft:entity.panda.worried_ambient": { + "protocol_id": 1202 + }, + "minecraft:entity.parched.ambient": { "protocol_id": 1205 }, - "minecraft:entity.parrot.death": { + "minecraft:entity.parched.death": { "protocol_id": 1206 }, - "minecraft:entity.parrot.eat": { + "minecraft:entity.parched.hurt": { "protocol_id": 1207 }, - "minecraft:entity.parrot.fly": { + "minecraft:entity.parched.step": { "protocol_id": 1208 }, - "minecraft:entity.parrot.hurt": { + "minecraft:entity.parrot.ambient": { "protocol_id": 1209 }, - "minecraft:entity.parrot.imitate.blaze": { + "minecraft:entity.parrot.death": { "protocol_id": 1210 }, - "minecraft:entity.parrot.imitate.bogged": { + "minecraft:entity.parrot.eat": { "protocol_id": 1211 }, - "minecraft:entity.parrot.imitate.breeze": { + "minecraft:entity.parrot.fly": { "protocol_id": 1212 }, - "minecraft:entity.parrot.imitate.camel_husk": { + "minecraft:entity.parrot.hurt": { "protocol_id": 1213 }, - "minecraft:entity.parrot.imitate.creaking": { + "minecraft:entity.parrot.imitate.blaze": { "protocol_id": 1214 }, - "minecraft:entity.parrot.imitate.creeper": { + "minecraft:entity.parrot.imitate.bogged": { "protocol_id": 1215 }, - "minecraft:entity.parrot.imitate.drowned": { + "minecraft:entity.parrot.imitate.breeze": { "protocol_id": 1216 }, - "minecraft:entity.parrot.imitate.elder_guardian": { + "minecraft:entity.parrot.imitate.camel_husk": { "protocol_id": 1217 }, - "minecraft:entity.parrot.imitate.ender_dragon": { + "minecraft:entity.parrot.imitate.creaking": { "protocol_id": 1218 }, - "minecraft:entity.parrot.imitate.endermite": { + "minecraft:entity.parrot.imitate.creeper": { "protocol_id": 1219 }, - "minecraft:entity.parrot.imitate.evoker": { + "minecraft:entity.parrot.imitate.drowned": { "protocol_id": 1220 }, - "minecraft:entity.parrot.imitate.ghast": { + "minecraft:entity.parrot.imitate.elder_guardian": { "protocol_id": 1221 }, - "minecraft:entity.parrot.imitate.guardian": { + "minecraft:entity.parrot.imitate.ender_dragon": { "protocol_id": 1222 }, - "minecraft:entity.parrot.imitate.hoglin": { + "minecraft:entity.parrot.imitate.endermite": { "protocol_id": 1223 }, - "minecraft:entity.parrot.imitate.husk": { + "minecraft:entity.parrot.imitate.evoker": { "protocol_id": 1224 }, - "minecraft:entity.parrot.imitate.illusioner": { + "minecraft:entity.parrot.imitate.ghast": { "protocol_id": 1225 }, - "minecraft:entity.parrot.imitate.magma_cube": { + "minecraft:entity.parrot.imitate.guardian": { "protocol_id": 1226 }, - "minecraft:entity.parrot.imitate.parched": { - "protocol_id": 1228 - }, - "minecraft:entity.parrot.imitate.phantom": { + "minecraft:entity.parrot.imitate.hoglin": { "protocol_id": 1227 }, - "minecraft:entity.parrot.imitate.piglin": { + "minecraft:entity.parrot.imitate.husk": { + "protocol_id": 1228 + }, + "minecraft:entity.parrot.imitate.illusioner": { "protocol_id": 1229 }, - "minecraft:entity.parrot.imitate.piglin_brute": { + "minecraft:entity.parrot.imitate.magma_cube": { "protocol_id": 1230 }, - "minecraft:entity.parrot.imitate.pillager": { - "protocol_id": 1231 - }, - "minecraft:entity.parrot.imitate.ravager": { + "minecraft:entity.parrot.imitate.parched": { "protocol_id": 1232 }, - "minecraft:entity.parrot.imitate.shulker": { + "minecraft:entity.parrot.imitate.phantom": { + "protocol_id": 1231 + }, + "minecraft:entity.parrot.imitate.piglin": { "protocol_id": 1233 }, - "minecraft:entity.parrot.imitate.silverfish": { + "minecraft:entity.parrot.imitate.piglin_brute": { "protocol_id": 1234 }, - "minecraft:entity.parrot.imitate.skeleton": { + "minecraft:entity.parrot.imitate.pillager": { "protocol_id": 1235 }, - "minecraft:entity.parrot.imitate.slime": { + "minecraft:entity.parrot.imitate.ravager": { "protocol_id": 1236 }, - "minecraft:entity.parrot.imitate.spider": { + "minecraft:entity.parrot.imitate.shulker": { "protocol_id": 1237 }, - "minecraft:entity.parrot.imitate.stray": { + "minecraft:entity.parrot.imitate.silverfish": { "protocol_id": 1238 }, - "minecraft:entity.parrot.imitate.vex": { + "minecraft:entity.parrot.imitate.skeleton": { "protocol_id": 1239 }, - "minecraft:entity.parrot.imitate.vindicator": { + "minecraft:entity.parrot.imitate.slime": { "protocol_id": 1240 }, - "minecraft:entity.parrot.imitate.warden": { + "minecraft:entity.parrot.imitate.spider": { "protocol_id": 1241 }, - "minecraft:entity.parrot.imitate.witch": { + "minecraft:entity.parrot.imitate.stray": { "protocol_id": 1242 }, - "minecraft:entity.parrot.imitate.wither": { + "minecraft:entity.parrot.imitate.vex": { "protocol_id": 1243 }, - "minecraft:entity.parrot.imitate.wither_skeleton": { + "minecraft:entity.parrot.imitate.vindicator": { "protocol_id": 1244 }, - "minecraft:entity.parrot.imitate.zoglin": { + "minecraft:entity.parrot.imitate.warden": { "protocol_id": 1245 }, - "minecraft:entity.parrot.imitate.zombie": { + "minecraft:entity.parrot.imitate.witch": { "protocol_id": 1246 }, - "minecraft:entity.parrot.imitate.zombie_horse": { + "minecraft:entity.parrot.imitate.wither": { "protocol_id": 1247 }, - "minecraft:entity.parrot.imitate.zombie_nautilus": { + "minecraft:entity.parrot.imitate.wither_skeleton": { "protocol_id": 1248 }, - "minecraft:entity.parrot.imitate.zombie_villager": { + "minecraft:entity.parrot.imitate.zoglin": { "protocol_id": 1249 }, - "minecraft:entity.parrot.step": { + "minecraft:entity.parrot.imitate.zombie": { "protocol_id": 1250 }, - "minecraft:entity.phantom.ambient": { + "minecraft:entity.parrot.imitate.zombie_horse": { "protocol_id": 1251 }, - "minecraft:entity.phantom.bite": { + "minecraft:entity.parrot.imitate.zombie_nautilus": { "protocol_id": 1252 }, - "minecraft:entity.phantom.death": { + "minecraft:entity.parrot.imitate.zombie_villager": { "protocol_id": 1253 }, - "minecraft:entity.phantom.flap": { + "minecraft:entity.parrot.step": { "protocol_id": 1254 }, - "minecraft:entity.phantom.hurt": { + "minecraft:entity.phantom.ambient": { "protocol_id": 1255 }, - "minecraft:entity.phantom.swoop": { + "minecraft:entity.phantom.bite": { "protocol_id": 1256 }, - "minecraft:entity.pig.ambient": { - "protocol_id": 1264 - }, - "minecraft:entity.pig.death": { - "protocol_id": 1266 - }, - "minecraft:entity.pig.eat": { - "protocol_id": 1267 - }, - "minecraft:entity.pig.hurt": { - "protocol_id": 1265 - }, - "minecraft:entity.pig.saddle": { + "minecraft:entity.phantom.death": { "protocol_id": 1257 }, - "minecraft:entity.pig.step": { + "minecraft:entity.phantom.flap": { "protocol_id": 1258 }, - "minecraft:entity.pig_big.ambient": { - "protocol_id": 1272 + "minecraft:entity.phantom.hurt": { + "protocol_id": 1259 }, - "minecraft:entity.pig_big.death": { - "protocol_id": 1274 + "minecraft:entity.phantom.swoop": { + "protocol_id": 1260 }, - "minecraft:entity.pig_big.eat": { - "protocol_id": 1275 - }, - "minecraft:entity.pig_big.hurt": { - "protocol_id": 1273 - }, - "minecraft:entity.pig_mini.ambient": { + "minecraft:entity.pig.ambient": { "protocol_id": 1268 }, - "minecraft:entity.pig_mini.death": { + "minecraft:entity.pig.death": { "protocol_id": 1270 }, - "minecraft:entity.pig_mini.eat": { + "minecraft:entity.pig.eat": { "protocol_id": 1271 }, - "minecraft:entity.pig_mini.hurt": { + "minecraft:entity.pig.hurt": { "protocol_id": 1269 }, - "minecraft:entity.piglin.admiring_item": { + "minecraft:entity.pig.saddle": { + "protocol_id": 1261 + }, + "minecraft:entity.pig.step": { + "protocol_id": 1262 + }, + "minecraft:entity.pig_big.ambient": { "protocol_id": 1276 }, - "minecraft:entity.piglin.ambient": { - "protocol_id": 1277 - }, - "minecraft:entity.piglin.angry": { + "minecraft:entity.pig_big.death": { "protocol_id": 1278 }, - "minecraft:entity.piglin.celebrate": { + "minecraft:entity.pig_big.eat": { "protocol_id": 1279 }, - "minecraft:entity.piglin.converted_to_zombified": { - "protocol_id": 1285 + "minecraft:entity.pig_big.hurt": { + "protocol_id": 1277 }, - "minecraft:entity.piglin.death": { + "minecraft:entity.pig_mini.ambient": { + "protocol_id": 1272 + }, + "minecraft:entity.pig_mini.death": { + "protocol_id": 1274 + }, + "minecraft:entity.pig_mini.eat": { + "protocol_id": 1275 + }, + "minecraft:entity.pig_mini.hurt": { + "protocol_id": 1273 + }, + "minecraft:entity.piglin.admiring_item": { "protocol_id": 1280 }, - "minecraft:entity.piglin.hurt": { - "protocol_id": 1282 - }, - "minecraft:entity.piglin.jealous": { + "minecraft:entity.piglin.ambient": { "protocol_id": 1281 }, - "minecraft:entity.piglin.retreat": { + "minecraft:entity.piglin.angry": { + "protocol_id": 1282 + }, + "minecraft:entity.piglin.celebrate": { "protocol_id": 1283 }, - "minecraft:entity.piglin.step": { - "protocol_id": 1284 - }, - "minecraft:entity.piglin_brute.ambient": { - "protocol_id": 1286 - }, - "minecraft:entity.piglin_brute.angry": { - "protocol_id": 1287 - }, - "minecraft:entity.piglin_brute.converted_to_zombified": { - "protocol_id": 1291 - }, - "minecraft:entity.piglin_brute.death": { - "protocol_id": 1288 - }, - "minecraft:entity.piglin_brute.hurt": { + "minecraft:entity.piglin.converted_to_zombified": { "protocol_id": 1289 }, - "minecraft:entity.piglin_brute.step": { + "minecraft:entity.piglin.death": { + "protocol_id": 1284 + }, + "minecraft:entity.piglin.hurt": { + "protocol_id": 1286 + }, + "minecraft:entity.piglin.jealous": { + "protocol_id": 1285 + }, + "minecraft:entity.piglin.retreat": { + "protocol_id": 1287 + }, + "minecraft:entity.piglin.step": { + "protocol_id": 1288 + }, + "minecraft:entity.piglin_brute.ambient": { "protocol_id": 1290 }, - "minecraft:entity.pillager.ambient": { - "protocol_id": 1292 + "minecraft:entity.piglin_brute.angry": { + "protocol_id": 1291 }, - "minecraft:entity.pillager.celebrate": { - "protocol_id": 1293 - }, - "minecraft:entity.pillager.death": { - "protocol_id": 1294 - }, - "minecraft:entity.pillager.hurt": { + "minecraft:entity.piglin_brute.converted_to_zombified": { "protocol_id": 1295 }, - "minecraft:entity.player.attack.crit": { + "minecraft:entity.piglin_brute.death": { + "protocol_id": 1292 + }, + "minecraft:entity.piglin_brute.hurt": { + "protocol_id": 1293 + }, + "minecraft:entity.piglin_brute.step": { + "protocol_id": 1294 + }, + "minecraft:entity.pillager.ambient": { + "protocol_id": 1296 + }, + "minecraft:entity.pillager.celebrate": { + "protocol_id": 1297 + }, + "minecraft:entity.pillager.death": { "protocol_id": 1298 }, - "minecraft:entity.player.attack.knockback": { + "minecraft:entity.pillager.hurt": { "protocol_id": 1299 }, - "minecraft:entity.player.attack.nodamage": { - "protocol_id": 1300 - }, - "minecraft:entity.player.attack.strong": { - "protocol_id": 1301 - }, - "minecraft:entity.player.attack.sweep": { + "minecraft:entity.player.attack.crit": { "protocol_id": 1302 }, - "minecraft:entity.player.attack.weak": { + "minecraft:entity.player.attack.knockback": { "protocol_id": 1303 }, - "minecraft:entity.player.big_fall": { + "minecraft:entity.player.attack.nodamage": { "protocol_id": 1304 }, - "minecraft:entity.player.breath": { + "minecraft:entity.player.attack.strong": { "protocol_id": 1305 }, - "minecraft:entity.player.burp": { + "minecraft:entity.player.attack.sweep": { "protocol_id": 1306 }, - "minecraft:entity.player.death": { + "minecraft:entity.player.attack.weak": { "protocol_id": 1307 }, - "minecraft:entity.player.hurt": { + "minecraft:entity.player.big_fall": { "protocol_id": 1308 }, - "minecraft:entity.player.hurt_drown": { + "minecraft:entity.player.breath": { "protocol_id": 1309 }, - "minecraft:entity.player.hurt_freeze": { + "minecraft:entity.player.burp": { "protocol_id": 1310 }, - "minecraft:entity.player.hurt_on_fire": { + "minecraft:entity.player.death": { "protocol_id": 1311 }, - "minecraft:entity.player.hurt_sweet_berry_bush": { + "minecraft:entity.player.hurt": { "protocol_id": 1312 }, - "minecraft:entity.player.levelup": { + "minecraft:entity.player.hurt_drown": { "protocol_id": 1313 }, - "minecraft:entity.player.small_fall": { + "minecraft:entity.player.hurt_freeze": { "protocol_id": 1314 }, - "minecraft:entity.player.splash": { + "minecraft:entity.player.hurt_on_fire": { "protocol_id": 1315 }, - "minecraft:entity.player.splash.high_speed": { + "minecraft:entity.player.hurt_sweet_berry_bush": { "protocol_id": 1316 }, - "minecraft:entity.player.swim": { + "minecraft:entity.player.levelup": { "protocol_id": 1317 }, - "minecraft:entity.player.teleport": { + "minecraft:entity.player.small_fall": { "protocol_id": 1318 }, - "minecraft:entity.polar_bear.ambient": { + "minecraft:entity.player.splash": { "protocol_id": 1319 }, - "minecraft:entity.polar_bear.ambient_baby": { + "minecraft:entity.player.splash.high_speed": { "protocol_id": 1320 }, - "minecraft:entity.polar_bear.death": { + "minecraft:entity.player.swim": { "protocol_id": 1321 }, - "minecraft:entity.polar_bear.hurt": { + "minecraft:entity.player.teleport": { "protocol_id": 1322 }, - "minecraft:entity.polar_bear.step": { + "minecraft:entity.polar_bear.ambient": { "protocol_id": 1323 }, - "minecraft:entity.polar_bear.warning": { + "minecraft:entity.polar_bear.ambient_baby": { "protocol_id": 1324 }, + "minecraft:entity.polar_bear.death": { + "protocol_id": 1325 + }, + "minecraft:entity.polar_bear.hurt": { + "protocol_id": 1326 + }, + "minecraft:entity.polar_bear.step": { + "protocol_id": 1327 + }, + "minecraft:entity.polar_bear.warning": { + "protocol_id": 1328 + }, "minecraft:entity.puffer_fish.blow_out": { - "protocol_id": 1338 - }, - "minecraft:entity.puffer_fish.blow_up": { - "protocol_id": 1339 - }, - "minecraft:entity.puffer_fish.death": { - "protocol_id": 1340 - }, - "minecraft:entity.puffer_fish.flop": { - "protocol_id": 1341 - }, - "minecraft:entity.puffer_fish.hurt": { "protocol_id": 1342 }, - "minecraft:entity.puffer_fish.sting": { + "minecraft:entity.puffer_fish.blow_up": { "protocol_id": 1343 }, - "minecraft:entity.rabbit.ambient": { + "minecraft:entity.puffer_fish.death": { + "protocol_id": 1344 + }, + "minecraft:entity.puffer_fish.flop": { "protocol_id": 1345 }, - "minecraft:entity.rabbit.attack": { + "minecraft:entity.puffer_fish.hurt": { "protocol_id": 1346 }, - "minecraft:entity.rabbit.death": { + "minecraft:entity.puffer_fish.sting": { "protocol_id": 1347 }, - "minecraft:entity.rabbit.hurt": { - "protocol_id": 1348 - }, - "minecraft:entity.rabbit.jump": { + "minecraft:entity.rabbit.ambient": { "protocol_id": 1349 }, - "minecraft:entity.ravager.ambient": { - "protocol_id": 1351 - }, - "minecraft:entity.ravager.attack": { - "protocol_id": 1352 - }, - "minecraft:entity.ravager.celebrate": { - "protocol_id": 1353 - }, - "minecraft:entity.ravager.death": { - "protocol_id": 1354 - }, - "minecraft:entity.ravager.hurt": { - "protocol_id": 1355 - }, - "minecraft:entity.ravager.roar": { - "protocol_id": 1358 - }, - "minecraft:entity.ravager.step": { - "protocol_id": 1356 - }, - "minecraft:entity.ravager.stunned": { - "protocol_id": 1357 - }, - "minecraft:entity.salmon.ambient": { - "protocol_id": 1388 - }, - "minecraft:entity.salmon.death": { - "protocol_id": 1389 - }, - "minecraft:entity.salmon.flop": { - "protocol_id": 1390 - }, - "minecraft:entity.salmon.hurt": { - "protocol_id": 1391 - }, - "minecraft:entity.sheep.ambient": { - "protocol_id": 1434 - }, - "minecraft:entity.sheep.death": { - "protocol_id": 1435 - }, - "minecraft:entity.sheep.hurt": { - "protocol_id": 1436 - }, - "minecraft:entity.sheep.shear": { - "protocol_id": 1437 - }, - "minecraft:entity.sheep.step": { - "protocol_id": 1438 - }, - "minecraft:entity.shulker.ambient": { - "protocol_id": 1459 - }, - "minecraft:entity.shulker.close": { - "protocol_id": 1464 - }, - "minecraft:entity.shulker.death": { - "protocol_id": 1465 - }, - "minecraft:entity.shulker.hurt": { - "protocol_id": 1466 - }, - "minecraft:entity.shulker.hurt_closed": { - "protocol_id": 1467 - }, - "minecraft:entity.shulker.open": { - "protocol_id": 1468 - }, - "minecraft:entity.shulker.shoot": { - "protocol_id": 1469 - }, - "minecraft:entity.shulker.teleport": { - "protocol_id": 1470 - }, - "minecraft:entity.shulker_bullet.hit": { - "protocol_id": 1462 - }, - "minecraft:entity.shulker_bullet.hurt": { - "protocol_id": 1463 - }, - "minecraft:entity.silverfish.ambient": { - "protocol_id": 1471 - }, - "minecraft:entity.silverfish.death": { - "protocol_id": 1472 - }, - "minecraft:entity.silverfish.hurt": { - "protocol_id": 1473 - }, - "minecraft:entity.silverfish.step": { - "protocol_id": 1474 - }, - "minecraft:entity.skeleton.ambient": { - "protocol_id": 1475 - }, - "minecraft:entity.skeleton.converted_to_stray": { - "protocol_id": 1476 - }, - "minecraft:entity.skeleton.death": { - "protocol_id": 1477 - }, - "minecraft:entity.skeleton.hurt": { - "protocol_id": 1486 - }, - "minecraft:entity.skeleton.shoot": { - "protocol_id": 1487 - }, - "minecraft:entity.skeleton.step": { - "protocol_id": 1488 - }, - "minecraft:entity.skeleton_horse.ambient": { - "protocol_id": 1478 - }, - "minecraft:entity.skeleton_horse.ambient_water": { - "protocol_id": 1482 - }, - "minecraft:entity.skeleton_horse.death": { - "protocol_id": 1479 - }, - "minecraft:entity.skeleton_horse.gallop_water": { - "protocol_id": 1483 - }, - "minecraft:entity.skeleton_horse.hurt": { - "protocol_id": 1480 - }, - "minecraft:entity.skeleton_horse.jump_water": { - "protocol_id": 1484 - }, - "minecraft:entity.skeleton_horse.step_water": { - "protocol_id": 1485 - }, - "minecraft:entity.skeleton_horse.swim": { - "protocol_id": 1481 - }, - "minecraft:entity.slime.attack": { - "protocol_id": 1489 - }, - "minecraft:entity.slime.death": { - "protocol_id": 1490 - }, - "minecraft:entity.slime.death_small": { - "protocol_id": 1542 - }, - "minecraft:entity.slime.hurt": { - "protocol_id": 1491 - }, - "minecraft:entity.slime.hurt_small": { - "protocol_id": 1543 - }, - "minecraft:entity.slime.jump": { - "protocol_id": 1492 - }, - "minecraft:entity.slime.jump_small": { - "protocol_id": 1544 - }, - "minecraft:entity.slime.squish": { - "protocol_id": 1493 - }, - "minecraft:entity.slime.squish_small": { - "protocol_id": 1545 - }, - "minecraft:entity.sniffer.death": { - "protocol_id": 1552 - }, - "minecraft:entity.sniffer.digging": { - "protocol_id": 1557 - }, - "minecraft:entity.sniffer.digging_stop": { - "protocol_id": 1558 - }, - "minecraft:entity.sniffer.drop_seed": { - "protocol_id": 1553 - }, - "minecraft:entity.sniffer.eat": { - "protocol_id": 1549 - }, - "minecraft:entity.sniffer.happy": { - "protocol_id": 1559 - }, - "minecraft:entity.sniffer.hurt": { - "protocol_id": 1551 - }, - "minecraft:entity.sniffer.idle": { - "protocol_id": 1550 - }, - "minecraft:entity.sniffer.scenting": { - "protocol_id": 1554 - }, - "minecraft:entity.sniffer.searching": { - "protocol_id": 1556 - }, - "minecraft:entity.sniffer.sniffing": { - "protocol_id": 1555 - }, - "minecraft:entity.sniffer.step": { - "protocol_id": 1548 - }, - "minecraft:entity.snow_golem.ambient": { - "protocol_id": 1566 - }, - "minecraft:entity.snow_golem.death": { - "protocol_id": 1567 - }, - "minecraft:entity.snow_golem.hurt": { - "protocol_id": 1568 - }, - "minecraft:entity.snow_golem.shear": { - "protocol_id": 1570 - }, - "minecraft:entity.snow_golem.shoot": { - "protocol_id": 1569 - }, - "minecraft:entity.snowball.throw": { - "protocol_id": 1563 - }, - "minecraft:entity.spider.ambient": { - "protocol_id": 1574 - }, - "minecraft:entity.spider.death": { - "protocol_id": 1575 - }, - "minecraft:entity.spider.hurt": { - "protocol_id": 1576 - }, - "minecraft:entity.spider.step": { - "protocol_id": 1577 - }, - "minecraft:entity.splash_potion.break": { - "protocol_id": 1578 - }, - "minecraft:entity.splash_potion.throw": { - "protocol_id": 1579 - }, - "minecraft:entity.squid.ambient": { - "protocol_id": 1588 - }, - "minecraft:entity.squid.death": { - "protocol_id": 1589 - }, - "minecraft:entity.squid.hurt": { - "protocol_id": 1590 - }, - "minecraft:entity.squid.squirt": { - "protocol_id": 1591 - }, - "minecraft:entity.stray.ambient": { - "protocol_id": 1601 - }, - "minecraft:entity.stray.death": { - "protocol_id": 1602 - }, - "minecraft:entity.stray.hurt": { - "protocol_id": 1603 - }, - "minecraft:entity.stray.step": { - "protocol_id": 1604 - }, - "minecraft:entity.strider.ambient": { - "protocol_id": 1533 - }, - "minecraft:entity.strider.death": { - "protocol_id": 1536 - }, - "minecraft:entity.strider.eat": { - "protocol_id": 1540 - }, - "minecraft:entity.strider.happy": { - "protocol_id": 1534 - }, - "minecraft:entity.strider.hurt": { - "protocol_id": 1537 - }, - "minecraft:entity.strider.retreat": { - "protocol_id": 1535 - }, - "minecraft:entity.strider.saddle": { - "protocol_id": 1541 - }, - "minecraft:entity.strider.step": { - "protocol_id": 1538 - }, - "minecraft:entity.strider.step_lava": { - "protocol_id": 1539 - }, - "minecraft:entity.tadpole.death": { - "protocol_id": 1608 - }, - "minecraft:entity.tadpole.flop": { - "protocol_id": 1609 - }, - "minecraft:entity.tadpole.grow_up": { - "protocol_id": 1610 - }, - "minecraft:entity.tadpole.hurt": { - "protocol_id": 1611 - }, - "minecraft:entity.tnt.primed": { - "protocol_id": 1613 - }, - "minecraft:entity.tropical_fish.ambient": { - "protocol_id": 1627 - }, - "minecraft:entity.tropical_fish.death": { - "protocol_id": 1628 - }, - "minecraft:entity.tropical_fish.flop": { - "protocol_id": 1629 - }, - "minecraft:entity.tropical_fish.hurt": { - "protocol_id": 1630 - }, - "minecraft:entity.turtle.ambient_land": { - "protocol_id": 1646 - }, - "minecraft:entity.turtle.death": { - "protocol_id": 1647 - }, - "minecraft:entity.turtle.death_baby": { - "protocol_id": 1648 - }, - "minecraft:entity.turtle.egg_break": { - "protocol_id": 1649 - }, - "minecraft:entity.turtle.egg_crack": { - "protocol_id": 1650 - }, - "minecraft:entity.turtle.egg_hatch": { - "protocol_id": 1651 - }, - "minecraft:entity.turtle.hurt": { - "protocol_id": 1652 - }, - "minecraft:entity.turtle.hurt_baby": { - "protocol_id": 1653 - }, - "minecraft:entity.turtle.lay_egg": { - "protocol_id": 1654 - }, - "minecraft:entity.turtle.shamble": { - "protocol_id": 1655 - }, - "minecraft:entity.turtle.shamble_baby": { - "protocol_id": 1656 - }, - "minecraft:entity.turtle.swim": { - "protocol_id": 1657 - }, - "minecraft:entity.vex.ambient": { - "protocol_id": 1681 - }, - "minecraft:entity.vex.charge": { - "protocol_id": 1682 - }, - "minecraft:entity.vex.death": { - "protocol_id": 1683 - }, - "minecraft:entity.vex.hurt": { - "protocol_id": 1684 - }, - "minecraft:entity.villager.ambient": { - "protocol_id": 1685 - }, - "minecraft:entity.villager.celebrate": { - "protocol_id": 1686 - }, - "minecraft:entity.villager.death": { - "protocol_id": 1687 - }, - "minecraft:entity.villager.hurt": { - "protocol_id": 1688 - }, - "minecraft:entity.villager.no": { - "protocol_id": 1689 - }, - "minecraft:entity.villager.trade": { - "protocol_id": 1690 - }, - "minecraft:entity.villager.work_armorer": { - "protocol_id": 1692 - }, - "minecraft:entity.villager.work_butcher": { - "protocol_id": 1693 - }, - "minecraft:entity.villager.work_cartographer": { - "protocol_id": 1694 - }, - "minecraft:entity.villager.work_cleric": { - "protocol_id": 1695 - }, - "minecraft:entity.villager.work_farmer": { - "protocol_id": 1696 - }, - "minecraft:entity.villager.work_fisherman": { - "protocol_id": 1697 - }, - "minecraft:entity.villager.work_fletcher": { - "protocol_id": 1698 - }, - "minecraft:entity.villager.work_leatherworker": { - "protocol_id": 1699 - }, - "minecraft:entity.villager.work_librarian": { - "protocol_id": 1700 - }, - "minecraft:entity.villager.work_mason": { - "protocol_id": 1701 - }, - "minecraft:entity.villager.work_shepherd": { - "protocol_id": 1702 - }, - "minecraft:entity.villager.work_toolsmith": { - "protocol_id": 1703 - }, - "minecraft:entity.villager.work_weaponsmith": { - "protocol_id": 1704 - }, - "minecraft:entity.villager.yes": { - "protocol_id": 1691 - }, - "minecraft:entity.vindicator.ambient": { - "protocol_id": 1705 - }, - "minecraft:entity.vindicator.celebrate": { - "protocol_id": 1706 - }, - "minecraft:entity.vindicator.death": { - "protocol_id": 1707 - }, - "minecraft:entity.vindicator.hurt": { - "protocol_id": 1708 - }, - "minecraft:entity.wandering_trader.ambient": { - "protocol_id": 1715 - }, - "minecraft:entity.wandering_trader.death": { - "protocol_id": 1716 - }, - "minecraft:entity.wandering_trader.disappeared": { - "protocol_id": 1717 - }, - "minecraft:entity.wandering_trader.drink_milk": { - "protocol_id": 1718 - }, - "minecraft:entity.wandering_trader.drink_potion": { - "protocol_id": 1719 - }, - "minecraft:entity.wandering_trader.hurt": { - "protocol_id": 1720 - }, - "minecraft:entity.wandering_trader.no": { - "protocol_id": 1721 - }, - "minecraft:entity.wandering_trader.reappeared": { - "protocol_id": 1722 - }, - "minecraft:entity.wandering_trader.trade": { - "protocol_id": 1723 - }, - "minecraft:entity.wandering_trader.yes": { - "protocol_id": 1724 - }, - "minecraft:entity.warden.agitated": { - "protocol_id": 1725 - }, - "minecraft:entity.warden.ambient": { - "protocol_id": 1726 - }, - "minecraft:entity.warden.angry": { - "protocol_id": 1727 - }, - "minecraft:entity.warden.attack_impact": { - "protocol_id": 1728 - }, - "minecraft:entity.warden.death": { - "protocol_id": 1729 - }, - "minecraft:entity.warden.dig": { - "protocol_id": 1730 - }, - "minecraft:entity.warden.emerge": { - "protocol_id": 1731 - }, - "minecraft:entity.warden.heartbeat": { - "protocol_id": 1732 - }, - "minecraft:entity.warden.hurt": { - "protocol_id": 1733 - }, - "minecraft:entity.warden.listening": { - "protocol_id": 1734 - }, - "minecraft:entity.warden.listening_angry": { - "protocol_id": 1735 - }, - "minecraft:entity.warden.nearby_close": { - "protocol_id": 1736 - }, - "minecraft:entity.warden.nearby_closer": { - "protocol_id": 1737 - }, - "minecraft:entity.warden.nearby_closest": { - "protocol_id": 1738 - }, - "minecraft:entity.warden.roar": { - "protocol_id": 1739 - }, - "minecraft:entity.warden.sniff": { - "protocol_id": 1740 - }, - "minecraft:entity.warden.sonic_boom": { - "protocol_id": 1741 - }, - "minecraft:entity.warden.sonic_charge": { - "protocol_id": 1742 - }, - "minecraft:entity.warden.step": { - "protocol_id": 1743 - }, - "minecraft:entity.warden.tendril_clicks": { - "protocol_id": 1744 - }, - "minecraft:entity.wind_charge.throw": { - "protocol_id": 1763 - }, - "minecraft:entity.wind_charge.wind_burst": { - "protocol_id": 1762 - }, - "minecraft:entity.witch.ambient": { - "protocol_id": 1764 - }, - "minecraft:entity.witch.celebrate": { - "protocol_id": 1765 - }, - "minecraft:entity.witch.death": { - "protocol_id": 1766 - }, - "minecraft:entity.witch.drink": { - "protocol_id": 1767 - }, - "minecraft:entity.witch.hurt": { - "protocol_id": 1768 - }, - "minecraft:entity.witch.throw": { - "protocol_id": 1769 - }, - "minecraft:entity.wither.ambient": { - "protocol_id": 1770 - }, - "minecraft:entity.wither.break_block": { - "protocol_id": 1771 - }, - "minecraft:entity.wither.death": { - "protocol_id": 1772 - }, - "minecraft:entity.wither.hurt": { - "protocol_id": 1773 - }, - "minecraft:entity.wither.shoot": { - "protocol_id": 1774 - }, - "minecraft:entity.wither.spawn": { - "protocol_id": 1779 - }, - "minecraft:entity.wither_skeleton.ambient": { - "protocol_id": 1775 - }, - "minecraft:entity.wither_skeleton.death": { - "protocol_id": 1776 - }, - "minecraft:entity.wither_skeleton.hurt": { - "protocol_id": 1777 - }, - "minecraft:entity.wither_skeleton.step": { - "protocol_id": 1778 - }, - "minecraft:entity.wolf.ambient": { - "protocol_id": 1793 - }, - "minecraft:entity.wolf.death": { - "protocol_id": 1794 - }, - "minecraft:entity.wolf.growl": { - "protocol_id": 1795 - }, - "minecraft:entity.wolf.hurt": { - "protocol_id": 1796 - }, - "minecraft:entity.wolf.pant": { - "protocol_id": 1797 - }, - "minecraft:entity.wolf.shake": { - "protocol_id": 1789 - }, - "minecraft:entity.wolf.step": { - "protocol_id": 1790 - }, - "minecraft:entity.wolf.whine": { - "protocol_id": 1798 - }, - "minecraft:entity.wolf_angry.ambient": { - "protocol_id": 1811 - }, - "minecraft:entity.wolf_angry.death": { - "protocol_id": 1812 - }, - "minecraft:entity.wolf_angry.growl": { - "protocol_id": 1813 - }, - "minecraft:entity.wolf_angry.hurt": { - "protocol_id": 1814 - }, - "minecraft:entity.wolf_angry.pant": { - "protocol_id": 1815 - }, - "minecraft:entity.wolf_angry.whine": { - "protocol_id": 1816 - }, - "minecraft:entity.wolf_big.ambient": { - "protocol_id": 1823 - }, - "minecraft:entity.wolf_big.death": { - "protocol_id": 1824 - }, - "minecraft:entity.wolf_big.growl": { - "protocol_id": 1825 - }, - "minecraft:entity.wolf_big.hurt": { - "protocol_id": 1826 - }, - "minecraft:entity.wolf_big.pant": { - "protocol_id": 1827 - }, - "minecraft:entity.wolf_big.whine": { - "protocol_id": 1828 - }, - "minecraft:entity.wolf_cute.ambient": { - "protocol_id": 1829 - }, - "minecraft:entity.wolf_cute.death": { - "protocol_id": 1830 - }, - "minecraft:entity.wolf_cute.growl": { - "protocol_id": 1831 - }, - "minecraft:entity.wolf_cute.hurt": { - "protocol_id": 1832 - }, - "minecraft:entity.wolf_cute.pant": { - "protocol_id": 1833 - }, - "minecraft:entity.wolf_cute.whine": { - "protocol_id": 1834 - }, - "minecraft:entity.wolf_grumpy.ambient": { - "protocol_id": 1817 - }, - "minecraft:entity.wolf_grumpy.death": { - "protocol_id": 1818 - }, - "minecraft:entity.wolf_grumpy.growl": { - "protocol_id": 1819 - }, - "minecraft:entity.wolf_grumpy.hurt": { - "protocol_id": 1820 - }, - "minecraft:entity.wolf_grumpy.pant": { - "protocol_id": 1821 - }, - "minecraft:entity.wolf_grumpy.whine": { - "protocol_id": 1822 - }, - "minecraft:entity.wolf_puglin.ambient": { - "protocol_id": 1799 - }, - "minecraft:entity.wolf_puglin.death": { - "protocol_id": 1800 - }, - "minecraft:entity.wolf_puglin.growl": { - "protocol_id": 1801 - }, - "minecraft:entity.wolf_puglin.hurt": { - "protocol_id": 1802 - }, - "minecraft:entity.wolf_puglin.pant": { - "protocol_id": 1803 - }, - "minecraft:entity.wolf_puglin.whine": { - "protocol_id": 1804 - }, - "minecraft:entity.wolf_sad.ambient": { - "protocol_id": 1805 - }, - "minecraft:entity.wolf_sad.death": { - "protocol_id": 1806 - }, - "minecraft:entity.wolf_sad.growl": { - "protocol_id": 1807 - }, - "minecraft:entity.wolf_sad.hurt": { - "protocol_id": 1808 - }, - "minecraft:entity.wolf_sad.pant": { - "protocol_id": 1809 - }, - "minecraft:entity.wolf_sad.whine": { - "protocol_id": 1810 - }, - "minecraft:entity.zoglin.ambient": { - "protocol_id": 1853 - }, - "minecraft:entity.zoglin.angry": { - "protocol_id": 1854 - }, - "minecraft:entity.zoglin.attack": { - "protocol_id": 1855 - }, - "minecraft:entity.zoglin.death": { - "protocol_id": 1856 - }, - "minecraft:entity.zoglin.hurt": { - "protocol_id": 1857 - }, - "minecraft:entity.zoglin.step": { - "protocol_id": 1858 - }, - "minecraft:entity.zombie.ambient": { - "protocol_id": 1859 - }, - "minecraft:entity.zombie.attack_iron_door": { - "protocol_id": 1861 - }, - "minecraft:entity.zombie.attack_wooden_door": { - "protocol_id": 1860 - }, - "minecraft:entity.zombie.break_wooden_door": { - "protocol_id": 1862 - }, - "minecraft:entity.zombie.converted_to_drowned": { - "protocol_id": 1863 - }, - "minecraft:entity.zombie.death": { - "protocol_id": 1864 - }, - "minecraft:entity.zombie.destroy_egg": { - "protocol_id": 1865 - }, - "minecraft:entity.zombie.hurt": { - "protocol_id": 1871 - }, - "minecraft:entity.zombie.infect": { - "protocol_id": 1872 - }, - "minecraft:entity.zombie.step": { - "protocol_id": 1889 - }, - "minecraft:entity.zombie_horse.ambient": { - "protocol_id": 1866 - }, - "minecraft:entity.zombie_horse.angry": { - "protocol_id": 1867 - }, - "minecraft:entity.zombie_horse.death": { - "protocol_id": 1868 - }, - "minecraft:entity.zombie_horse.eat": { - "protocol_id": 1869 - }, - "minecraft:entity.zombie_horse.hurt": { - "protocol_id": 1870 - }, - "minecraft:entity.zombie_nautilus.ambient": { - "protocol_id": 1873 - }, - "minecraft:entity.zombie_nautilus.ambient_land": { - "protocol_id": 1874 - }, - "minecraft:entity.zombie_nautilus.dash": { - "protocol_id": 1875 - }, - "minecraft:entity.zombie_nautilus.dash_land": { - "protocol_id": 1876 - }, - "minecraft:entity.zombie_nautilus.dash_ready": { - "protocol_id": 1877 - }, - "minecraft:entity.zombie_nautilus.dash_ready_land": { - "protocol_id": 1878 - }, - "minecraft:entity.zombie_nautilus.death": { - "protocol_id": 1879 - }, - "minecraft:entity.zombie_nautilus.death_land": { - "protocol_id": 1880 - }, - "minecraft:entity.zombie_nautilus.eat": { - "protocol_id": 1881 - }, - "minecraft:entity.zombie_nautilus.hurt": { - "protocol_id": 1882 - }, - "minecraft:entity.zombie_nautilus.hurt_land": { - "protocol_id": 1883 - }, - "minecraft:entity.zombie_nautilus.swim": { - "protocol_id": 1884 - }, - "minecraft:entity.zombie_villager.ambient": { - "protocol_id": 1890 - }, - "minecraft:entity.zombie_villager.converted": { - "protocol_id": 1891 - }, - "minecraft:entity.zombie_villager.cure": { - "protocol_id": 1892 - }, - "minecraft:entity.zombie_villager.death": { - "protocol_id": 1893 - }, - "minecraft:entity.zombie_villager.hurt": { - "protocol_id": 1894 - }, - "minecraft:entity.zombie_villager.step": { - "protocol_id": 1895 - }, - "minecraft:entity.zombified_piglin.ambient": { - "protocol_id": 1885 - }, - "minecraft:entity.zombified_piglin.angry": { - "protocol_id": 1886 - }, - "minecraft:entity.zombified_piglin.death": { - "protocol_id": 1887 - }, - "minecraft:entity.zombified_piglin.hurt": { - "protocol_id": 1888 - }, - "minecraft:event.mob_effect.bad_omen": { - "protocol_id": 1896 - }, - "minecraft:event.mob_effect.raid_omen": { - "protocol_id": 1898 - }, - "minecraft:event.mob_effect.trial_omen": { - "protocol_id": 1897 - }, - "minecraft:event.raid.horn": { + "minecraft:entity.rabbit.attack": { "protocol_id": 1350 }, + "minecraft:entity.rabbit.death": { + "protocol_id": 1351 + }, + "minecraft:entity.rabbit.hurt": { + "protocol_id": 1352 + }, + "minecraft:entity.rabbit.jump": { + "protocol_id": 1353 + }, + "minecraft:entity.ravager.ambient": { + "protocol_id": 1355 + }, + "minecraft:entity.ravager.attack": { + "protocol_id": 1356 + }, + "minecraft:entity.ravager.celebrate": { + "protocol_id": 1357 + }, + "minecraft:entity.ravager.death": { + "protocol_id": 1358 + }, + "minecraft:entity.ravager.hurt": { + "protocol_id": 1359 + }, + "minecraft:entity.ravager.roar": { + "protocol_id": 1362 + }, + "minecraft:entity.ravager.step": { + "protocol_id": 1360 + }, + "minecraft:entity.ravager.stunned": { + "protocol_id": 1361 + }, + "minecraft:entity.salmon.ambient": { + "protocol_id": 1392 + }, + "minecraft:entity.salmon.death": { + "protocol_id": 1393 + }, + "minecraft:entity.salmon.flop": { + "protocol_id": 1394 + }, + "minecraft:entity.salmon.hurt": { + "protocol_id": 1395 + }, + "minecraft:entity.sheep.ambient": { + "protocol_id": 1438 + }, + "minecraft:entity.sheep.death": { + "protocol_id": 1439 + }, + "minecraft:entity.sheep.hurt": { + "protocol_id": 1440 + }, + "minecraft:entity.sheep.shear": { + "protocol_id": 1441 + }, + "minecraft:entity.sheep.step": { + "protocol_id": 1442 + }, + "minecraft:entity.shulker.ambient": { + "protocol_id": 1463 + }, + "minecraft:entity.shulker.close": { + "protocol_id": 1468 + }, + "minecraft:entity.shulker.death": { + "protocol_id": 1469 + }, + "minecraft:entity.shulker.hurt": { + "protocol_id": 1470 + }, + "minecraft:entity.shulker.hurt_closed": { + "protocol_id": 1471 + }, + "minecraft:entity.shulker.open": { + "protocol_id": 1472 + }, + "minecraft:entity.shulker.shoot": { + "protocol_id": 1473 + }, + "minecraft:entity.shulker.teleport": { + "protocol_id": 1474 + }, + "minecraft:entity.shulker_bullet.hit": { + "protocol_id": 1466 + }, + "minecraft:entity.shulker_bullet.hurt": { + "protocol_id": 1467 + }, + "minecraft:entity.silverfish.ambient": { + "protocol_id": 1475 + }, + "minecraft:entity.silverfish.death": { + "protocol_id": 1476 + }, + "minecraft:entity.silverfish.hurt": { + "protocol_id": 1477 + }, + "minecraft:entity.silverfish.step": { + "protocol_id": 1478 + }, + "minecraft:entity.skeleton.ambient": { + "protocol_id": 1479 + }, + "minecraft:entity.skeleton.converted_to_stray": { + "protocol_id": 1480 + }, + "minecraft:entity.skeleton.death": { + "protocol_id": 1481 + }, + "minecraft:entity.skeleton.hurt": { + "protocol_id": 1490 + }, + "minecraft:entity.skeleton.shoot": { + "protocol_id": 1491 + }, + "minecraft:entity.skeleton.step": { + "protocol_id": 1492 + }, + "minecraft:entity.skeleton_horse.ambient": { + "protocol_id": 1482 + }, + "minecraft:entity.skeleton_horse.ambient_water": { + "protocol_id": 1486 + }, + "minecraft:entity.skeleton_horse.death": { + "protocol_id": 1483 + }, + "minecraft:entity.skeleton_horse.gallop_water": { + "protocol_id": 1487 + }, + "minecraft:entity.skeleton_horse.hurt": { + "protocol_id": 1484 + }, + "minecraft:entity.skeleton_horse.jump_water": { + "protocol_id": 1488 + }, + "minecraft:entity.skeleton_horse.step_water": { + "protocol_id": 1489 + }, + "minecraft:entity.skeleton_horse.swim": { + "protocol_id": 1485 + }, + "minecraft:entity.slime.attack": { + "protocol_id": 1493 + }, + "minecraft:entity.slime.death": { + "protocol_id": 1494 + }, + "minecraft:entity.slime.death_small": { + "protocol_id": 1546 + }, + "minecraft:entity.slime.hurt": { + "protocol_id": 1495 + }, + "minecraft:entity.slime.hurt_small": { + "protocol_id": 1547 + }, + "minecraft:entity.slime.jump": { + "protocol_id": 1496 + }, + "minecraft:entity.slime.jump_small": { + "protocol_id": 1548 + }, + "minecraft:entity.slime.squish": { + "protocol_id": 1497 + }, + "minecraft:entity.slime.squish_small": { + "protocol_id": 1549 + }, + "minecraft:entity.small_sulfur_cube.death": { + "protocol_id": 1963 + }, + "minecraft:entity.small_sulfur_cube.eat": { + "protocol_id": 1967 + }, + "minecraft:entity.small_sulfur_cube.hurt": { + "protocol_id": 1964 + }, + "minecraft:entity.small_sulfur_cube.jump": { + "protocol_id": 1965 + }, + "minecraft:entity.small_sulfur_cube.squish": { + "protocol_id": 1966 + }, + "minecraft:entity.sniffer.death": { + "protocol_id": 1556 + }, + "minecraft:entity.sniffer.digging": { + "protocol_id": 1561 + }, + "minecraft:entity.sniffer.digging_stop": { + "protocol_id": 1562 + }, + "minecraft:entity.sniffer.drop_seed": { + "protocol_id": 1557 + }, + "minecraft:entity.sniffer.eat": { + "protocol_id": 1553 + }, + "minecraft:entity.sniffer.happy": { + "protocol_id": 1563 + }, + "minecraft:entity.sniffer.hurt": { + "protocol_id": 1555 + }, + "minecraft:entity.sniffer.idle": { + "protocol_id": 1554 + }, + "minecraft:entity.sniffer.scenting": { + "protocol_id": 1558 + }, + "minecraft:entity.sniffer.searching": { + "protocol_id": 1560 + }, + "minecraft:entity.sniffer.sniffing": { + "protocol_id": 1559 + }, + "minecraft:entity.sniffer.step": { + "protocol_id": 1552 + }, + "minecraft:entity.snow_golem.ambient": { + "protocol_id": 1570 + }, + "minecraft:entity.snow_golem.death": { + "protocol_id": 1571 + }, + "minecraft:entity.snow_golem.hurt": { + "protocol_id": 1572 + }, + "minecraft:entity.snow_golem.shear": { + "protocol_id": 1574 + }, + "minecraft:entity.snow_golem.shoot": { + "protocol_id": 1573 + }, + "minecraft:entity.snowball.throw": { + "protocol_id": 1567 + }, + "minecraft:entity.spider.ambient": { + "protocol_id": 1578 + }, + "minecraft:entity.spider.death": { + "protocol_id": 1579 + }, + "minecraft:entity.spider.hurt": { + "protocol_id": 1580 + }, + "minecraft:entity.spider.step": { + "protocol_id": 1581 + }, + "minecraft:entity.splash_potion.break": { + "protocol_id": 1582 + }, + "minecraft:entity.splash_potion.throw": { + "protocol_id": 1583 + }, + "minecraft:entity.squid.ambient": { + "protocol_id": 1592 + }, + "minecraft:entity.squid.death": { + "protocol_id": 1593 + }, + "minecraft:entity.squid.hurt": { + "protocol_id": 1594 + }, + "minecraft:entity.squid.squirt": { + "protocol_id": 1595 + }, + "minecraft:entity.stray.ambient": { + "protocol_id": 1605 + }, + "minecraft:entity.stray.death": { + "protocol_id": 1606 + }, + "minecraft:entity.stray.hurt": { + "protocol_id": 1607 + }, + "minecraft:entity.stray.step": { + "protocol_id": 1608 + }, + "minecraft:entity.strider.ambient": { + "protocol_id": 1537 + }, + "minecraft:entity.strider.death": { + "protocol_id": 1540 + }, + "minecraft:entity.strider.eat": { + "protocol_id": 1544 + }, + "minecraft:entity.strider.happy": { + "protocol_id": 1538 + }, + "minecraft:entity.strider.hurt": { + "protocol_id": 1541 + }, + "minecraft:entity.strider.retreat": { + "protocol_id": 1539 + }, + "minecraft:entity.strider.saddle": { + "protocol_id": 1545 + }, + "minecraft:entity.strider.step": { + "protocol_id": 1542 + }, + "minecraft:entity.strider.step_lava": { + "protocol_id": 1543 + }, + "minecraft:entity.sulfur_cube.absorb": { + "protocol_id": 1931 + }, + "minecraft:entity.sulfur_cube.bounce": { + "protocol_id": 1932 + }, + "minecraft:entity.sulfur_cube.bouncy.hit": { + "protocol_id": 1939 + }, + "minecraft:entity.sulfur_cube.bouncy.push": { + "protocol_id": 1940 + }, + "minecraft:entity.sulfur_cube.death": { + "protocol_id": 1933 + }, + "minecraft:entity.sulfur_cube.eject": { + "protocol_id": 1934 + }, + "minecraft:entity.sulfur_cube.explosive.hit": { + "protocol_id": 1957 + }, + "minecraft:entity.sulfur_cube.explosive.push": { + "protocol_id": 1958 + }, + "minecraft:entity.sulfur_cube.fast_flat.hit": { + "protocol_id": 1945 + }, + "minecraft:entity.sulfur_cube.fast_flat.push": { + "protocol_id": 1946 + }, + "minecraft:entity.sulfur_cube.fast_sliding.hit": { + "protocol_id": 1949 + }, + "minecraft:entity.sulfur_cube.fast_sliding.push": { + "protocol_id": 1950 + }, + "minecraft:entity.sulfur_cube.high_resistance.hit": { + "protocol_id": 1955 + }, + "minecraft:entity.sulfur_cube.high_resistance.push": { + "protocol_id": 1956 + }, + "minecraft:entity.sulfur_cube.hot.hit": { + "protocol_id": 1959 + }, + "minecraft:entity.sulfur_cube.hot.push": { + "protocol_id": 1960 + }, + "minecraft:entity.sulfur_cube.hurt": { + "protocol_id": 1935 + }, + "minecraft:entity.sulfur_cube.jump": { + "protocol_id": 1936 + }, + "minecraft:entity.sulfur_cube.light.hit": { + "protocol_id": 1947 + }, + "minecraft:entity.sulfur_cube.light.push": { + "protocol_id": 1948 + }, + "minecraft:entity.sulfur_cube.regular.hit": { + "protocol_id": 1937 + }, + "minecraft:entity.sulfur_cube.regular.push": { + "protocol_id": 1938 + }, + "minecraft:entity.sulfur_cube.slow_bouncy.hit": { + "protocol_id": 1941 + }, + "minecraft:entity.sulfur_cube.slow_bouncy.push": { + "protocol_id": 1942 + }, + "minecraft:entity.sulfur_cube.slow_flat.hit": { + "protocol_id": 1943 + }, + "minecraft:entity.sulfur_cube.slow_flat.push": { + "protocol_id": 1944 + }, + "minecraft:entity.sulfur_cube.slow_sliding.hit": { + "protocol_id": 1951 + }, + "minecraft:entity.sulfur_cube.slow_sliding.push": { + "protocol_id": 1952 + }, + "minecraft:entity.sulfur_cube.squish": { + "protocol_id": 1961 + }, + "minecraft:entity.sulfur_cube.sticky.hit": { + "protocol_id": 1953 + }, + "minecraft:entity.sulfur_cube.sticky.push": { + "protocol_id": 1954 + }, + "minecraft:entity.tadpole.death": { + "protocol_id": 1618 + }, + "minecraft:entity.tadpole.flop": { + "protocol_id": 1619 + }, + "minecraft:entity.tadpole.grow_up": { + "protocol_id": 1620 + }, + "minecraft:entity.tadpole.hurt": { + "protocol_id": 1621 + }, + "minecraft:entity.tnt.primed": { + "protocol_id": 1623 + }, + "minecraft:entity.tropical_fish.ambient": { + "protocol_id": 1637 + }, + "minecraft:entity.tropical_fish.death": { + "protocol_id": 1638 + }, + "minecraft:entity.tropical_fish.flop": { + "protocol_id": 1639 + }, + "minecraft:entity.tropical_fish.hurt": { + "protocol_id": 1640 + }, + "minecraft:entity.turtle.ambient_land": { + "protocol_id": 1656 + }, + "minecraft:entity.turtle.death": { + "protocol_id": 1657 + }, + "minecraft:entity.turtle.death_baby": { + "protocol_id": 1658 + }, + "minecraft:entity.turtle.egg_break": { + "protocol_id": 1659 + }, + "minecraft:entity.turtle.egg_crack": { + "protocol_id": 1660 + }, + "minecraft:entity.turtle.egg_hatch": { + "protocol_id": 1661 + }, + "minecraft:entity.turtle.hurt": { + "protocol_id": 1662 + }, + "minecraft:entity.turtle.hurt_baby": { + "protocol_id": 1663 + }, + "minecraft:entity.turtle.lay_egg": { + "protocol_id": 1664 + }, + "minecraft:entity.turtle.shamble": { + "protocol_id": 1665 + }, + "minecraft:entity.turtle.shamble_baby": { + "protocol_id": 1666 + }, + "minecraft:entity.turtle.swim": { + "protocol_id": 1667 + }, + "minecraft:entity.vex.ambient": { + "protocol_id": 1691 + }, + "minecraft:entity.vex.charge": { + "protocol_id": 1692 + }, + "minecraft:entity.vex.death": { + "protocol_id": 1693 + }, + "minecraft:entity.vex.hurt": { + "protocol_id": 1694 + }, + "minecraft:entity.villager.ambient": { + "protocol_id": 1695 + }, + "minecraft:entity.villager.celebrate": { + "protocol_id": 1696 + }, + "minecraft:entity.villager.death": { + "protocol_id": 1697 + }, + "minecraft:entity.villager.hurt": { + "protocol_id": 1698 + }, + "minecraft:entity.villager.no": { + "protocol_id": 1699 + }, + "minecraft:entity.villager.trade": { + "protocol_id": 1700 + }, + "minecraft:entity.villager.work_armorer": { + "protocol_id": 1702 + }, + "minecraft:entity.villager.work_butcher": { + "protocol_id": 1703 + }, + "minecraft:entity.villager.work_cartographer": { + "protocol_id": 1704 + }, + "minecraft:entity.villager.work_cleric": { + "protocol_id": 1705 + }, + "minecraft:entity.villager.work_farmer": { + "protocol_id": 1706 + }, + "minecraft:entity.villager.work_fisherman": { + "protocol_id": 1707 + }, + "minecraft:entity.villager.work_fletcher": { + "protocol_id": 1708 + }, + "minecraft:entity.villager.work_leatherworker": { + "protocol_id": 1709 + }, + "minecraft:entity.villager.work_librarian": { + "protocol_id": 1710 + }, + "minecraft:entity.villager.work_mason": { + "protocol_id": 1711 + }, + "minecraft:entity.villager.work_shepherd": { + "protocol_id": 1712 + }, + "minecraft:entity.villager.work_toolsmith": { + "protocol_id": 1713 + }, + "minecraft:entity.villager.work_weaponsmith": { + "protocol_id": 1714 + }, + "minecraft:entity.villager.yes": { + "protocol_id": 1701 + }, + "minecraft:entity.vindicator.ambient": { + "protocol_id": 1715 + }, + "minecraft:entity.vindicator.celebrate": { + "protocol_id": 1716 + }, + "minecraft:entity.vindicator.death": { + "protocol_id": 1717 + }, + "minecraft:entity.vindicator.hurt": { + "protocol_id": 1718 + }, + "minecraft:entity.wandering_trader.ambient": { + "protocol_id": 1725 + }, + "minecraft:entity.wandering_trader.death": { + "protocol_id": 1726 + }, + "minecraft:entity.wandering_trader.disappeared": { + "protocol_id": 1727 + }, + "minecraft:entity.wandering_trader.drink_milk": { + "protocol_id": 1728 + }, + "minecraft:entity.wandering_trader.drink_potion": { + "protocol_id": 1729 + }, + "minecraft:entity.wandering_trader.hurt": { + "protocol_id": 1730 + }, + "minecraft:entity.wandering_trader.no": { + "protocol_id": 1731 + }, + "minecraft:entity.wandering_trader.reappeared": { + "protocol_id": 1732 + }, + "minecraft:entity.wandering_trader.trade": { + "protocol_id": 1733 + }, + "minecraft:entity.wandering_trader.yes": { + "protocol_id": 1734 + }, + "minecraft:entity.warden.agitated": { + "protocol_id": 1735 + }, + "minecraft:entity.warden.ambient": { + "protocol_id": 1736 + }, + "minecraft:entity.warden.angry": { + "protocol_id": 1737 + }, + "minecraft:entity.warden.attack_impact": { + "protocol_id": 1738 + }, + "minecraft:entity.warden.death": { + "protocol_id": 1739 + }, + "minecraft:entity.warden.dig": { + "protocol_id": 1740 + }, + "minecraft:entity.warden.emerge": { + "protocol_id": 1741 + }, + "minecraft:entity.warden.heartbeat": { + "protocol_id": 1742 + }, + "minecraft:entity.warden.hurt": { + "protocol_id": 1743 + }, + "minecraft:entity.warden.listening": { + "protocol_id": 1744 + }, + "minecraft:entity.warden.listening_angry": { + "protocol_id": 1745 + }, + "minecraft:entity.warden.nearby_close": { + "protocol_id": 1746 + }, + "minecraft:entity.warden.nearby_closer": { + "protocol_id": 1747 + }, + "minecraft:entity.warden.nearby_closest": { + "protocol_id": 1748 + }, + "minecraft:entity.warden.roar": { + "protocol_id": 1749 + }, + "minecraft:entity.warden.sniff": { + "protocol_id": 1750 + }, + "minecraft:entity.warden.sonic_boom": { + "protocol_id": 1751 + }, + "minecraft:entity.warden.sonic_charge": { + "protocol_id": 1752 + }, + "minecraft:entity.warden.step": { + "protocol_id": 1753 + }, + "minecraft:entity.warden.tendril_clicks": { + "protocol_id": 1754 + }, + "minecraft:entity.wind_charge.throw": { + "protocol_id": 1773 + }, + "minecraft:entity.wind_charge.wind_burst": { + "protocol_id": 1772 + }, + "minecraft:entity.witch.ambient": { + "protocol_id": 1774 + }, + "minecraft:entity.witch.celebrate": { + "protocol_id": 1775 + }, + "minecraft:entity.witch.death": { + "protocol_id": 1776 + }, + "minecraft:entity.witch.drink": { + "protocol_id": 1777 + }, + "minecraft:entity.witch.hurt": { + "protocol_id": 1778 + }, + "minecraft:entity.witch.throw": { + "protocol_id": 1779 + }, + "minecraft:entity.wither.ambient": { + "protocol_id": 1780 + }, + "minecraft:entity.wither.break_block": { + "protocol_id": 1781 + }, + "minecraft:entity.wither.death": { + "protocol_id": 1782 + }, + "minecraft:entity.wither.hurt": { + "protocol_id": 1783 + }, + "minecraft:entity.wither.shoot": { + "protocol_id": 1784 + }, + "minecraft:entity.wither.spawn": { + "protocol_id": 1789 + }, + "minecraft:entity.wither_skeleton.ambient": { + "protocol_id": 1785 + }, + "minecraft:entity.wither_skeleton.death": { + "protocol_id": 1786 + }, + "minecraft:entity.wither_skeleton.hurt": { + "protocol_id": 1787 + }, + "minecraft:entity.wither_skeleton.step": { + "protocol_id": 1788 + }, + "minecraft:entity.wolf.ambient": { + "protocol_id": 1803 + }, + "minecraft:entity.wolf.death": { + "protocol_id": 1804 + }, + "minecraft:entity.wolf.growl": { + "protocol_id": 1805 + }, + "minecraft:entity.wolf.hurt": { + "protocol_id": 1806 + }, + "minecraft:entity.wolf.pant": { + "protocol_id": 1807 + }, + "minecraft:entity.wolf.shake": { + "protocol_id": 1799 + }, + "minecraft:entity.wolf.step": { + "protocol_id": 1800 + }, + "minecraft:entity.wolf.whine": { + "protocol_id": 1808 + }, + "minecraft:entity.wolf_angry.ambient": { + "protocol_id": 1821 + }, + "minecraft:entity.wolf_angry.death": { + "protocol_id": 1822 + }, + "minecraft:entity.wolf_angry.growl": { + "protocol_id": 1823 + }, + "minecraft:entity.wolf_angry.hurt": { + "protocol_id": 1824 + }, + "minecraft:entity.wolf_angry.pant": { + "protocol_id": 1825 + }, + "minecraft:entity.wolf_angry.whine": { + "protocol_id": 1826 + }, + "minecraft:entity.wolf_big.ambient": { + "protocol_id": 1833 + }, + "minecraft:entity.wolf_big.death": { + "protocol_id": 1834 + }, + "minecraft:entity.wolf_big.growl": { + "protocol_id": 1835 + }, + "minecraft:entity.wolf_big.hurt": { + "protocol_id": 1836 + }, + "minecraft:entity.wolf_big.pant": { + "protocol_id": 1837 + }, + "minecraft:entity.wolf_big.whine": { + "protocol_id": 1838 + }, + "minecraft:entity.wolf_cute.ambient": { + "protocol_id": 1839 + }, + "minecraft:entity.wolf_cute.death": { + "protocol_id": 1840 + }, + "minecraft:entity.wolf_cute.growl": { + "protocol_id": 1841 + }, + "minecraft:entity.wolf_cute.hurt": { + "protocol_id": 1842 + }, + "minecraft:entity.wolf_cute.pant": { + "protocol_id": 1843 + }, + "minecraft:entity.wolf_cute.whine": { + "protocol_id": 1844 + }, + "minecraft:entity.wolf_grumpy.ambient": { + "protocol_id": 1827 + }, + "minecraft:entity.wolf_grumpy.death": { + "protocol_id": 1828 + }, + "minecraft:entity.wolf_grumpy.growl": { + "protocol_id": 1829 + }, + "minecraft:entity.wolf_grumpy.hurt": { + "protocol_id": 1830 + }, + "minecraft:entity.wolf_grumpy.pant": { + "protocol_id": 1831 + }, + "minecraft:entity.wolf_grumpy.whine": { + "protocol_id": 1832 + }, + "minecraft:entity.wolf_puglin.ambient": { + "protocol_id": 1809 + }, + "minecraft:entity.wolf_puglin.death": { + "protocol_id": 1810 + }, + "minecraft:entity.wolf_puglin.growl": { + "protocol_id": 1811 + }, + "minecraft:entity.wolf_puglin.hurt": { + "protocol_id": 1812 + }, + "minecraft:entity.wolf_puglin.pant": { + "protocol_id": 1813 + }, + "minecraft:entity.wolf_puglin.whine": { + "protocol_id": 1814 + }, + "minecraft:entity.wolf_sad.ambient": { + "protocol_id": 1815 + }, + "minecraft:entity.wolf_sad.death": { + "protocol_id": 1816 + }, + "minecraft:entity.wolf_sad.growl": { + "protocol_id": 1817 + }, + "minecraft:entity.wolf_sad.hurt": { + "protocol_id": 1818 + }, + "minecraft:entity.wolf_sad.pant": { + "protocol_id": 1819 + }, + "minecraft:entity.wolf_sad.whine": { + "protocol_id": 1820 + }, + "minecraft:entity.zoglin.ambient": { + "protocol_id": 1863 + }, + "minecraft:entity.zoglin.angry": { + "protocol_id": 1864 + }, + "minecraft:entity.zoglin.attack": { + "protocol_id": 1865 + }, + "minecraft:entity.zoglin.death": { + "protocol_id": 1866 + }, + "minecraft:entity.zoglin.hurt": { + "protocol_id": 1867 + }, + "minecraft:entity.zoglin.step": { + "protocol_id": 1868 + }, + "minecraft:entity.zombie.ambient": { + "protocol_id": 1869 + }, + "minecraft:entity.zombie.attack_iron_door": { + "protocol_id": 1871 + }, + "minecraft:entity.zombie.attack_wooden_door": { + "protocol_id": 1870 + }, + "minecraft:entity.zombie.break_wooden_door": { + "protocol_id": 1872 + }, + "minecraft:entity.zombie.converted_to_drowned": { + "protocol_id": 1873 + }, + "minecraft:entity.zombie.death": { + "protocol_id": 1874 + }, + "minecraft:entity.zombie.destroy_egg": { + "protocol_id": 1875 + }, + "minecraft:entity.zombie.hurt": { + "protocol_id": 1881 + }, + "minecraft:entity.zombie.infect": { + "protocol_id": 1882 + }, + "minecraft:entity.zombie.step": { + "protocol_id": 1899 + }, + "minecraft:entity.zombie_horse.ambient": { + "protocol_id": 1876 + }, + "minecraft:entity.zombie_horse.angry": { + "protocol_id": 1877 + }, + "minecraft:entity.zombie_horse.death": { + "protocol_id": 1878 + }, + "minecraft:entity.zombie_horse.eat": { + "protocol_id": 1879 + }, + "minecraft:entity.zombie_horse.hurt": { + "protocol_id": 1880 + }, + "minecraft:entity.zombie_nautilus.ambient": { + "protocol_id": 1883 + }, + "minecraft:entity.zombie_nautilus.ambient_land": { + "protocol_id": 1884 + }, + "minecraft:entity.zombie_nautilus.dash": { + "protocol_id": 1885 + }, + "minecraft:entity.zombie_nautilus.dash_land": { + "protocol_id": 1886 + }, + "minecraft:entity.zombie_nautilus.dash_ready": { + "protocol_id": 1887 + }, + "minecraft:entity.zombie_nautilus.dash_ready_land": { + "protocol_id": 1888 + }, + "minecraft:entity.zombie_nautilus.death": { + "protocol_id": 1889 + }, + "minecraft:entity.zombie_nautilus.death_land": { + "protocol_id": 1890 + }, + "minecraft:entity.zombie_nautilus.eat": { + "protocol_id": 1891 + }, + "minecraft:entity.zombie_nautilus.hurt": { + "protocol_id": 1892 + }, + "minecraft:entity.zombie_nautilus.hurt_land": { + "protocol_id": 1893 + }, + "minecraft:entity.zombie_nautilus.swim": { + "protocol_id": 1894 + }, + "minecraft:entity.zombie_villager.ambient": { + "protocol_id": 1900 + }, + "minecraft:entity.zombie_villager.converted": { + "protocol_id": 1901 + }, + "minecraft:entity.zombie_villager.cure": { + "protocol_id": 1902 + }, + "minecraft:entity.zombie_villager.death": { + "protocol_id": 1903 + }, + "minecraft:entity.zombie_villager.hurt": { + "protocol_id": 1904 + }, + "minecraft:entity.zombie_villager.step": { + "protocol_id": 1905 + }, + "minecraft:entity.zombified_piglin.ambient": { + "protocol_id": 1895 + }, + "minecraft:entity.zombified_piglin.angry": { + "protocol_id": 1896 + }, + "minecraft:entity.zombified_piglin.death": { + "protocol_id": 1897 + }, + "minecraft:entity.zombified_piglin.hurt": { + "protocol_id": 1898 + }, + "minecraft:event.mob_effect.bad_omen": { + "protocol_id": 1906 + }, + "minecraft:event.mob_effect.raid_omen": { + "protocol_id": 1908 + }, + "minecraft:event.mob_effect.trial_omen": { + "protocol_id": 1907 + }, + "minecraft:event.raid.horn": { + "protocol_id": 1354 + }, "minecraft:intentionally_empty": { - "protocol_id": 1111 + "protocol_id": 1115 }, "minecraft:item.armor.equip_chain": { "protocol_id": 67 @@ -19192,449 +19669,461 @@ "minecraft:item.bucket.empty_powder_snow": { "protocol_id": 227 }, - "minecraft:item.bucket.empty_tadpole": { + "minecraft:item.bucket.empty_sulfur_cube": { "protocol_id": 228 }, - "minecraft:item.bucket.fill": { + "minecraft:item.bucket.empty_tadpole": { "protocol_id": 229 }, - "minecraft:item.bucket.fill_axolotl": { + "minecraft:item.bucket.fill": { "protocol_id": 230 }, - "minecraft:item.bucket.fill_fish": { + "minecraft:item.bucket.fill_axolotl": { "protocol_id": 231 }, - "minecraft:item.bucket.fill_lava": { + "minecraft:item.bucket.fill_fish": { "protocol_id": 232 }, - "minecraft:item.bucket.fill_powder_snow": { + "minecraft:item.bucket.fill_lava": { "protocol_id": 233 }, - "minecraft:item.bucket.fill_tadpole": { + "minecraft:item.bucket.fill_powder_snow": { "protocol_id": 234 }, - "minecraft:item.bundle.drop_contents": { + "minecraft:item.bucket.fill_sulfur_cube": { "protocol_id": 235 }, - "minecraft:item.bundle.insert": { + "minecraft:item.bucket.fill_tadpole": { "protocol_id": 236 }, - "minecraft:item.bundle.insert_fail": { + "minecraft:item.bundle.drop_contents": { "protocol_id": 237 }, - "minecraft:item.bundle.remove_one": { + "minecraft:item.bundle.insert": { "protocol_id": 238 }, + "minecraft:item.bundle.insert_fail": { + "protocol_id": 239 + }, + "minecraft:item.bundle.remove_one": { + "protocol_id": 240 + }, "minecraft:item.chorus_fruit.teleport": { - "protocol_id": 371 + "protocol_id": 373 }, "minecraft:item.crop.plant": { - "protocol_id": 481 - }, - "minecraft:item.crossbow.hit": { - "protocol_id": 482 - }, - "minecraft:item.crossbow.loading_end": { "protocol_id": 483 }, - "minecraft:item.crossbow.loading_middle": { + "minecraft:item.crossbow.hit": { "protocol_id": 484 }, - "minecraft:item.crossbow.loading_start": { + "minecraft:item.crossbow.loading_end": { "protocol_id": 485 }, - "minecraft:item.crossbow.quick_charge_1": { + "minecraft:item.crossbow.loading_middle": { "protocol_id": 486 }, - "minecraft:item.crossbow.quick_charge_2": { + "minecraft:item.crossbow.loading_start": { "protocol_id": 487 }, - "minecraft:item.crossbow.quick_charge_3": { + "minecraft:item.crossbow.quick_charge_1": { "protocol_id": 488 }, - "minecraft:item.crossbow.shoot": { + "minecraft:item.crossbow.quick_charge_2": { "protocol_id": 489 }, + "minecraft:item.crossbow.quick_charge_3": { + "protocol_id": 490 + }, + "minecraft:item.crossbow.shoot": { + "protocol_id": 491 + }, "minecraft:item.dye.use": { - "protocol_id": 569 + "protocol_id": 571 }, "minecraft:item.elytra.flying": { - "protocol_id": 579 + "protocol_id": 581 }, "minecraft:item.firecharge.use": { - "protocol_id": 624 + "protocol_id": 626 }, "minecraft:item.flintandsteel.use": { - "protocol_id": 640 + "protocol_id": 642 }, "minecraft:item.glow_ink_sac.use": { - "protocol_id": 723 + "protocol_id": 725 }, "minecraft:item.goat_horn.sound.0": { - "protocol_id": 839 - }, - "minecraft:item.goat_horn.sound.1": { - "protocol_id": 840 - }, - "minecraft:item.goat_horn.sound.2": { "protocol_id": 841 }, - "minecraft:item.goat_horn.sound.3": { + "minecraft:item.goat_horn.sound.1": { "protocol_id": 842 }, - "minecraft:item.goat_horn.sound.4": { + "minecraft:item.goat_horn.sound.2": { "protocol_id": 843 }, - "minecraft:item.goat_horn.sound.5": { + "minecraft:item.goat_horn.sound.3": { "protocol_id": 844 }, - "minecraft:item.goat_horn.sound.6": { + "minecraft:item.goat_horn.sound.4": { "protocol_id": 845 }, - "minecraft:item.goat_horn.sound.7": { + "minecraft:item.goat_horn.sound.5": { "protocol_id": 846 }, + "minecraft:item.goat_horn.sound.6": { + "protocol_id": 847 + }, + "minecraft:item.goat_horn.sound.7": { + "protocol_id": 848 + }, "minecraft:item.golden_dandelion.unuse": { - "protocol_id": 752 + "protocol_id": 754 }, "minecraft:item.golden_dandelion.use": { - "protocol_id": 751 + "protocol_id": 753 }, "minecraft:item.hoe.till": { - "protocol_id": 822 + "protocol_id": 824 }, "minecraft:item.honey_bottle.drink": { - "protocol_id": 838 + "protocol_id": 840 }, "minecraft:item.honeycomb.wax_on": { - "protocol_id": 837 + "protocol_id": 839 }, "minecraft:item.horse_armor.unequip": { - "protocol_id": 852 + "protocol_id": 854 }, "minecraft:item.ink_sac.use": { - "protocol_id": 887 + "protocol_id": 889 }, "minecraft:item.lead.break": { - "protocol_id": 932 + "protocol_id": 934 }, "minecraft:item.lead.tied": { - "protocol_id": 931 + "protocol_id": 933 }, "minecraft:item.lead.untied": { - "protocol_id": 930 + "protocol_id": 932 }, "minecraft:item.llama_carpet.unequip": { - "protocol_id": 946 + "protocol_id": 948 }, "minecraft:item.lodestone_compass.lock": { - "protocol_id": 953 - }, - "minecraft:item.mace.smash_air": { - "protocol_id": 957 - }, - "minecraft:item.mace.smash_ground": { - "protocol_id": 958 - }, - "minecraft:item.mace.smash_ground_heavy": { - "protocol_id": 959 - }, - "minecraft:item.nautilus_saddle_equip": { - "protocol_id": 1901 - }, - "minecraft:item.nautilus_saddle_underwater_equip": { - "protocol_id": 1900 - }, - "minecraft:item.nether_wart.plant": { - "protocol_id": 1095 - }, - "minecraft:item.ominous_bottle.dispose": { - "protocol_id": 1186 - }, - "minecraft:item.saddle.unequip": { - "protocol_id": 1899 - }, - "minecraft:item.shears.snip": { - "protocol_id": 1439 - }, - "minecraft:item.shield.block": { - "protocol_id": 1451 - }, - "minecraft:item.shield.break": { - "protocol_id": 1452 - }, - "minecraft:item.shovel.flatten": { - "protocol_id": 1458 - }, - "minecraft:item.spear.attack": { - "protocol_id": 1524 - }, - "minecraft:item.spear.hit": { - "protocol_id": 1523 - }, - "minecraft:item.spear.lunge_1": { - "protocol_id": 954 - }, - "minecraft:item.spear.lunge_2": { "protocol_id": 955 }, - "minecraft:item.spear.lunge_3": { - "protocol_id": 956 + "minecraft:item.mace.smash_air": { + "protocol_id": 959 }, - "minecraft:item.spear.use": { - "protocol_id": 1522 + "minecraft:item.mace.smash_ground": { + "protocol_id": 960 }, - "minecraft:item.spear_wood.attack": { + "minecraft:item.mace.smash_ground_heavy": { + "protocol_id": 961 + }, + "minecraft:item.nautilus_saddle_equip": { + "protocol_id": 1911 + }, + "minecraft:item.nautilus_saddle_underwater_equip": { + "protocol_id": 1910 + }, + "minecraft:item.nether_wart.plant": { + "protocol_id": 1099 + }, + "minecraft:item.ominous_bottle.dispose": { + "protocol_id": 1190 + }, + "minecraft:item.saddle.unequip": { + "protocol_id": 1909 + }, + "minecraft:item.shears.snip": { + "protocol_id": 1443 + }, + "minecraft:item.shield.block": { + "protocol_id": 1455 + }, + "minecraft:item.shield.break": { + "protocol_id": 1456 + }, + "minecraft:item.shovel.flatten": { + "protocol_id": 1462 + }, + "minecraft:item.spear.attack": { + "protocol_id": 1528 + }, + "minecraft:item.spear.hit": { "protocol_id": 1527 }, - "minecraft:item.spear_wood.hit": { + "minecraft:item.spear.lunge_1": { + "protocol_id": 956 + }, + "minecraft:item.spear.lunge_2": { + "protocol_id": 957 + }, + "minecraft:item.spear.lunge_3": { + "protocol_id": 958 + }, + "minecraft:item.spear.use": { "protocol_id": 1526 }, + "minecraft:item.spear_wood.attack": { + "protocol_id": 1531 + }, + "minecraft:item.spear_wood.hit": { + "protocol_id": 1530 + }, "minecraft:item.spear_wood.use": { - "protocol_id": 1525 + "protocol_id": 1529 }, "minecraft:item.spyglass.stop_using": { - "protocol_id": 1587 + "protocol_id": 1591 }, "minecraft:item.spyglass.use": { - "protocol_id": 1586 + "protocol_id": 1590 }, "minecraft:item.totem.use": { - "protocol_id": 1614 + "protocol_id": 1624 }, "minecraft:item.trident.hit": { - "protocol_id": 1615 + "protocol_id": 1625 }, "minecraft:item.trident.hit_ground": { - "protocol_id": 1616 + "protocol_id": 1626 }, "minecraft:item.trident.return": { - "protocol_id": 1617 + "protocol_id": 1627 }, "minecraft:item.trident.riptide_1": { - "protocol_id": 1618 + "protocol_id": 1628 }, "minecraft:item.trident.riptide_2": { - "protocol_id": 1619 + "protocol_id": 1629 }, "minecraft:item.trident.riptide_3": { - "protocol_id": 1620 + "protocol_id": 1630 }, "minecraft:item.trident.throw": { - "protocol_id": 1621 + "protocol_id": 1631 }, "minecraft:item.trident.thunder": { - "protocol_id": 1622 + "protocol_id": 1632 }, "minecraft:item.wolf_armor.break": { - "protocol_id": 1780 + "protocol_id": 1790 }, "minecraft:item.wolf_armor.crack": { - "protocol_id": 1782 + "protocol_id": 1792 }, "minecraft:item.wolf_armor.damage": { - "protocol_id": 1783 + "protocol_id": 1793 }, "minecraft:item.wolf_armor.repair": { - "protocol_id": 1784 + "protocol_id": 1794 }, "minecraft:music.creative": { - "protocol_id": 1025 - }, - "minecraft:music.credits": { - "protocol_id": 1026 - }, - "minecraft:music.dragon": { - "protocol_id": 1048 - }, - "minecraft:music.end": { - "protocol_id": 1049 - }, - "minecraft:music.game": { - "protocol_id": 1050 - }, - "minecraft:music.menu": { - "protocol_id": 1051 - }, - "minecraft:music.nether.basalt_deltas": { - "protocol_id": 1052 - }, - "minecraft:music.nether.crimson_forest": { - "protocol_id": 1053 - }, - "minecraft:music.nether.nether_wastes": { - "protocol_id": 1064 - }, - "minecraft:music.nether.soul_sand_valley": { - "protocol_id": 1067 - }, - "minecraft:music.nether.warped_forest": { - "protocol_id": 1069 - }, - "minecraft:music.overworld.badlands": { - "protocol_id": 1072 - }, - "minecraft:music.overworld.bamboo_jungle": { - "protocol_id": 1075 - }, - "minecraft:music.overworld.cherry_grove": { - "protocol_id": 1063 - }, - "minecraft:music.overworld.deep_dark": { - "protocol_id": 1054 - }, - "minecraft:music.overworld.desert": { - "protocol_id": 1071 - }, - "minecraft:music.overworld.dripstone_caves": { - "protocol_id": 1055 - }, - "minecraft:music.overworld.flower_forest": { - "protocol_id": 1070 - }, - "minecraft:music.overworld.forest": { - "protocol_id": 1060 - }, - "minecraft:music.overworld.frozen_peaks": { - "protocol_id": 1065 - }, - "minecraft:music.overworld.grove": { - "protocol_id": 1056 - }, - "minecraft:music.overworld.jagged_peaks": { - "protocol_id": 1057 - }, - "minecraft:music.overworld.jungle": { - "protocol_id": 1073 - }, - "minecraft:music.overworld.lush_caves": { - "protocol_id": 1058 - }, - "minecraft:music.overworld.meadow": { - "protocol_id": 1062 - }, - "minecraft:music.overworld.old_growth_taiga": { - "protocol_id": 1061 - }, - "minecraft:music.overworld.snowy_slopes": { - "protocol_id": 1066 - }, - "minecraft:music.overworld.sparse_jungle": { - "protocol_id": 1074 - }, - "minecraft:music.overworld.stony_peaks": { - "protocol_id": 1068 - }, - "minecraft:music.overworld.swamp": { - "protocol_id": 1059 - }, - "minecraft:music.under_water": { - "protocol_id": 1076 - }, - "minecraft:music_disc.11": { - "protocol_id": 1028 - }, - "minecraft:music_disc.13": { - "protocol_id": 1029 - }, - "minecraft:music_disc.5": { "protocol_id": 1027 }, - "minecraft:music_disc.blocks": { + "minecraft:music.credits": { + "protocol_id": 1028 + }, + "minecraft:music.dragon": { + "protocol_id": 1051 + }, + "minecraft:music.end": { + "protocol_id": 1052 + }, + "minecraft:music.game": { + "protocol_id": 1053 + }, + "minecraft:music.menu": { + "protocol_id": 1054 + }, + "minecraft:music.nether.basalt_deltas": { + "protocol_id": 1055 + }, + "minecraft:music.nether.crimson_forest": { + "protocol_id": 1056 + }, + "minecraft:music.nether.nether_wastes": { + "protocol_id": 1067 + }, + "minecraft:music.nether.soul_sand_valley": { + "protocol_id": 1070 + }, + "minecraft:music.nether.warped_forest": { + "protocol_id": 1072 + }, + "minecraft:music.overworld.badlands": { + "protocol_id": 1075 + }, + "minecraft:music.overworld.bamboo_jungle": { + "protocol_id": 1078 + }, + "minecraft:music.overworld.cherry_grove": { + "protocol_id": 1066 + }, + "minecraft:music.overworld.deep_dark": { + "protocol_id": 1057 + }, + "minecraft:music.overworld.desert": { + "protocol_id": 1074 + }, + "minecraft:music.overworld.dripstone_caves": { + "protocol_id": 1058 + }, + "minecraft:music.overworld.flower_forest": { + "protocol_id": 1073 + }, + "minecraft:music.overworld.forest": { + "protocol_id": 1063 + }, + "minecraft:music.overworld.frozen_peaks": { + "protocol_id": 1068 + }, + "minecraft:music.overworld.grove": { + "protocol_id": 1059 + }, + "minecraft:music.overworld.jagged_peaks": { + "protocol_id": 1060 + }, + "minecraft:music.overworld.jungle": { + "protocol_id": 1076 + }, + "minecraft:music.overworld.lush_caves": { + "protocol_id": 1061 + }, + "minecraft:music.overworld.meadow": { + "protocol_id": 1065 + }, + "minecraft:music.overworld.old_growth_taiga": { + "protocol_id": 1064 + }, + "minecraft:music.overworld.snowy_slopes": { + "protocol_id": 1069 + }, + "minecraft:music.overworld.sparse_jungle": { + "protocol_id": 1077 + }, + "minecraft:music.overworld.stony_peaks": { + "protocol_id": 1071 + }, + "minecraft:music.overworld.sulfur_caves": { + "protocol_id": 1079 + }, + "minecraft:music.overworld.swamp": { + "protocol_id": 1062 + }, + "minecraft:music.under_water": { + "protocol_id": 1080 + }, + "minecraft:music_disc.11": { "protocol_id": 1030 }, - "minecraft:music_disc.cat": { + "minecraft:music_disc.13": { "protocol_id": 1031 }, - "minecraft:music_disc.chirp": { + "minecraft:music_disc.5": { + "protocol_id": 1029 + }, + "minecraft:music_disc.blocks": { "protocol_id": 1032 }, - "minecraft:music_disc.creator": { - "protocol_id": 1044 - }, - "minecraft:music_disc.creator_music_box": { - "protocol_id": 1045 - }, - "minecraft:music_disc.far": { + "minecraft:music_disc.bounce": { "protocol_id": 1033 }, - "minecraft:music_disc.lava_chicken": { + "minecraft:music_disc.cat": { "protocol_id": 1034 }, - "minecraft:music_disc.mall": { + "minecraft:music_disc.chirp": { "protocol_id": 1035 }, - "minecraft:music_disc.mellohi": { - "protocol_id": 1036 - }, - "minecraft:music_disc.otherside": { - "protocol_id": 1042 - }, - "minecraft:music_disc.pigstep": { - "protocol_id": 1037 - }, - "minecraft:music_disc.precipice": { - "protocol_id": 1046 - }, - "minecraft:music_disc.relic": { - "protocol_id": 1043 - }, - "minecraft:music_disc.stal": { - "protocol_id": 1038 - }, - "minecraft:music_disc.strad": { - "protocol_id": 1039 - }, - "minecraft:music_disc.tears": { + "minecraft:music_disc.creator": { "protocol_id": 1047 }, - "minecraft:music_disc.wait": { + "minecraft:music_disc.creator_music_box": { + "protocol_id": 1048 + }, + "minecraft:music_disc.far": { + "protocol_id": 1036 + }, + "minecraft:music_disc.lava_chicken": { + "protocol_id": 1037 + }, + "minecraft:music_disc.mall": { + "protocol_id": 1038 + }, + "minecraft:music_disc.mellohi": { + "protocol_id": 1039 + }, + "minecraft:music_disc.otherside": { + "protocol_id": 1045 + }, + "minecraft:music_disc.pigstep": { "protocol_id": 1040 }, - "minecraft:music_disc.ward": { + "minecraft:music_disc.precipice": { + "protocol_id": 1049 + }, + "minecraft:music_disc.relic": { + "protocol_id": 1046 + }, + "minecraft:music_disc.stal": { "protocol_id": 1041 }, + "minecraft:music_disc.strad": { + "protocol_id": 1042 + }, + "minecraft:music_disc.tears": { + "protocol_id": 1050 + }, + "minecraft:music_disc.wait": { + "protocol_id": 1043 + }, + "minecraft:music_disc.ward": { + "protocol_id": 1044 + }, "minecraft:particle.soul_escape": { - "protocol_id": 1516 + "protocol_id": 1520 }, "minecraft:ui.button.click": { - "protocol_id": 1658 + "protocol_id": 1668 }, "minecraft:ui.cartography_table.take_result": { - "protocol_id": 1661 + "protocol_id": 1671 }, "minecraft:ui.hud.bubble_pop": { "protocol_id": 222 }, "minecraft:ui.loom.select_pattern": { - "protocol_id": 1659 + "protocol_id": 1669 }, "minecraft:ui.loom.take_result": { - "protocol_id": 1660 + "protocol_id": 1670 }, "minecraft:ui.stonecutter.select_recipe": { - "protocol_id": 1663 + "protocol_id": 1673 }, "minecraft:ui.stonecutter.take_result": { - "protocol_id": 1662 + "protocol_id": 1672 }, "minecraft:ui.toast.challenge_complete": { - "protocol_id": 1664 + "protocol_id": 1674 }, "minecraft:ui.toast.in": { - "protocol_id": 1665 + "protocol_id": 1675 }, "minecraft:ui.toast.out": { - "protocol_id": 1666 + "protocol_id": 1676 }, "minecraft:weather.end_flash": { - "protocol_id": 1748 + "protocol_id": 1758 }, "minecraft:weather.rain": { - "protocol_id": 1749 + "protocol_id": 1759 }, "minecraft:weather.rain.above": { - "protocol_id": 1750 + "protocol_id": 1760 } }, "protocol_id": 1 @@ -19691,19 +20180,22 @@ "protocol_id": 0 }, "minecraft:clock_time": { + "protocol_id": 1 + }, + "minecraft:difficulty": { "protocol_id": 2 }, "minecraft:function": { - "protocol_id": 5 - }, - "minecraft:game_rules": { - "protocol_id": 1 - }, - "minecraft:timeline_attributes": { "protocol_id": 3 }, - "minecraft:weather": { + "minecraft:game_rules": { "protocol_id": 4 + }, + "minecraft:timeline_attributes": { + "protocol_id": 5 + }, + "minecraft:weather": { + "protocol_id": 6 } }, "protocol_id": 82 @@ -20105,7 +20597,7 @@ "protocol_id": 0 }, "minecraft:blend_density": { - "protocol_id": 17 + "protocol_id": 9 }, "minecraft:blend_offset": { "protocol_id": 1 @@ -20129,7 +20621,7 @@ "protocol_id": 21 }, "minecraft:end_islands": { - "protocol_id": 10 + "protocol_id": 11 }, "minecraft:find_top_surface": { "protocol_id": 33 @@ -20143,6 +20635,9 @@ "minecraft:interpolated": { "protocol_id": 4 }, + "minecraft:interval_select": { + "protocol_id": 14 + }, "minecraft:invert": { "protocol_id": 24 }, @@ -20156,7 +20651,7 @@ "protocol_id": 27 }, "minecraft:noise": { - "protocol_id": 9 + "protocol_id": 10 }, "minecraft:old_blended_noise": { "protocol_id": 3 @@ -20168,13 +20663,13 @@ "protocol_id": 13 }, "minecraft:shift": { - "protocol_id": 16 + "protocol_id": 17 }, "minecraft:shift_a": { - "protocol_id": 14 + "protocol_id": 15 }, "minecraft:shift_b": { - "protocol_id": 15 + "protocol_id": 16 }, "minecraft:shifted_noise": { "protocol_id": 12 @@ -20188,9 +20683,6 @@ "minecraft:squeeze": { "protocol_id": 25 }, - "minecraft:weird_scaled_sampler": { - "protocol_id": 11 - }, "minecraft:y_clamped_gradient": { "protocol_id": 32 } @@ -20244,9 +20736,6 @@ "minecraft:disk": { "protocol_id": 26 }, - "minecraft:dripstone_cluster": { - "protocol_id": 56 - }, "minecraft:end_gateway": { "protocol_id": 32 }, @@ -20272,7 +20761,7 @@ "protocol_id": 14 }, "minecraft:geode": { - "protocol_id": 55 + "protocol_id": 58 }, "minecraft:glowstone_blob": { "protocol_id": 13 @@ -20296,7 +20785,7 @@ "protocol_id": 27 }, "minecraft:large_dripstone": { - "protocol_id": 57 + "protocol_id": 60 }, "minecraft:monster_room": { "protocol_id": 22 @@ -20316,11 +20805,8 @@ "minecraft:ore": { "protocol_id": 28 }, - "minecraft:pointed_dripstone": { - "protocol_id": 58 - }, "minecraft:random_boolean_selector": { - "protocol_id": 54 + "protocol_id": 55 }, "minecraft:random_selector": { "protocol_id": 52 @@ -20335,7 +20821,7 @@ "protocol_id": 51 }, "minecraft:sculk_patch": { - "protocol_id": 59 + "protocol_id": 62 }, "minecraft:sea_pickle": { "protocol_id": 38 @@ -20343,11 +20829,20 @@ "minecraft:seagrass": { "protocol_id": 33 }, + "minecraft:sequence": { + "protocol_id": 56 + }, "minecraft:simple_block": { "protocol_id": 39 }, "minecraft:simple_random_selector": { - "protocol_id": 53 + "protocol_id": 54 + }, + "minecraft:speleothem": { + "protocol_id": 61 + }, + "minecraft:speleothem_cluster": { + "protocol_id": 59 }, "minecraft:spike": { "protocol_id": 12 @@ -20355,6 +20850,9 @@ "minecraft:spring_feature": { "protocol_id": 4 }, + "minecraft:template": { + "protocol_id": 57 + }, "minecraft:tree": { "protocol_id": 1 }, @@ -20378,6 +20876,9 @@ }, "minecraft:weeping_vines": { "protocol_id": 43 + }, + "minecraft:weighted_random_selector": { + "protocol_id": 53 } }, "protocol_id": 40 @@ -20765,37 +21266,37 @@ "minecraft:worldgen/structure_processor": { "entries": { "minecraft:blackstone_replace": { - "protocol_id": 7 - }, - "minecraft:block_age": { - "protocol_id": 6 - }, - "minecraft:block_ignore": { "protocol_id": 0 }, - "minecraft:block_rot": { + "minecraft:block_age": { "protocol_id": 1 }, - "minecraft:capped": { - "protocol_id": 10 - }, - "minecraft:gravity": { + "minecraft:block_ignore": { "protocol_id": 2 }, - "minecraft:jigsaw_replacement": { + "minecraft:block_rot": { "protocol_id": 3 }, + "minecraft:capped": { + "protocol_id": 4 + }, + "minecraft:gravity": { + "protocol_id": 5 + }, + "minecraft:jigsaw_replacement": { + "protocol_id": 6 + }, "minecraft:lava_submerged_block": { - "protocol_id": 8 + "protocol_id": 7 }, "minecraft:nop": { - "protocol_id": 5 + "protocol_id": 8 }, "minecraft:protected_blocks": { "protocol_id": 9 }, "minecraft:rule": { - "protocol_id": 4 + "protocol_id": 10 } }, "protocol_id": 57