diff --git a/README.md b/README.md index c79482298..3af1b1e92 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The ultimate goal of this project is to allow Minecraft: Bedrock Edition users t Special thanks to the DragonProxy project for being a trailblazer in protocol translation and for all the team members who have joined us here! -### Currently supporting Minecraft Bedrock v1.16.220.52 and Minecraft Java 21w20a. +### Currently supporting Minecraft Bedrock v1.17.0.58 and Minecraft Java 1.17-pre3. ## Setting Up Take a look [here](https://github.com/GeyserMC/Geyser/wiki#Setup) for how to set up Geyser. diff --git a/connector/pom.xml b/connector/pom.xml index 4aa6269b9..44cf15a14 100644 --- a/connector/pom.xml +++ b/connector/pom.xml @@ -31,8 +31,8 @@ com.github.CloudburstMC.Protocol - bedrock-v431 - 530a0e3 + bedrock-v440 + a8f4e93 compile @@ -120,9 +120,9 @@ compile - com.github.steveice10 - mcprotocollib - 1.17-pre1-SNAPSHOT + com.github.GeyserMC + MCProtocolLib + 9ba9d7e compile diff --git a/connector/src/main/java/org/geysermc/connector/network/BedrockProtocol.java b/connector/src/main/java/org/geysermc/connector/network/BedrockProtocol.java index 234b85884..84fc449e9 100644 --- a/connector/src/main/java/org/geysermc/connector/network/BedrockProtocol.java +++ b/connector/src/main/java/org/geysermc/connector/network/BedrockProtocol.java @@ -26,7 +26,7 @@ package org.geysermc.connector.network; import com.nukkitx.protocol.bedrock.BedrockPacketCodec; -import com.nukkitx.protocol.bedrock.v431.Bedrock_v431; +import com.nukkitx.protocol.bedrock.v440.Bedrock_v440; import java.util.ArrayList; import java.util.List; @@ -39,7 +39,7 @@ public class BedrockProtocol { * Default Bedrock codec that should act as a fallback. Should represent the latest available * release of the game that Geyser supports. */ - public static final BedrockPacketCodec DEFAULT_BEDROCK_CODEC = Bedrock_v431.V431_CODEC; + public static final BedrockPacketCodec DEFAULT_BEDROCK_CODEC = Bedrock_v440.V440_CODEC; /** * A list of all supported Bedrock versions that can join Geyser */ diff --git a/connector/src/main/java/org/geysermc/connector/network/UpstreamPacketHandler.java b/connector/src/main/java/org/geysermc/connector/network/UpstreamPacketHandler.java index 17446effc..de5526d52 100644 --- a/connector/src/main/java/org/geysermc/connector/network/UpstreamPacketHandler.java +++ b/connector/src/main/java/org/geysermc/connector/network/UpstreamPacketHandler.java @@ -37,7 +37,7 @@ import org.geysermc.connector.network.session.GeyserSession; import org.geysermc.connector.network.session.cache.AdvancementsCache; import org.geysermc.connector.network.translators.PacketTranslatorRegistry; import org.geysermc.connector.network.translators.item.ItemRegistry; -import org.geysermc.connector.network.translators.world.block.BlockTranslator1_16_210; +import org.geysermc.connector.network.translators.world.block.BlockTranslator1_17_0; import org.geysermc.connector.utils.*; import java.io.FileInputStream; @@ -72,7 +72,7 @@ public class UpstreamPacketHandler extends LoggingPacketHandler { session.getUpstream().getSession().setPacketCodec(packetCodec); // Set the block translation based off of version - session.setBlockTranslator(BlockTranslator1_16_210.INSTANCE); + session.setBlockTranslator(BlockTranslator1_17_0.INSTANCE); LoginEncryptionUtils.encryptPlayerConnection(connector, session, loginPacket); @@ -137,8 +137,6 @@ public class UpstreamPacketHandler extends LoggingPacketHandler { stackPacket.getExperiments().add(new ExperimentData("data_driven_items", true)); } - stackPacket.getExperiments().add(new ExperimentData("caves_and_cliffs", true)); - session.sendUpstreamPacket(stackPacket); break; diff --git a/connector/src/main/java/org/geysermc/connector/network/session/GeyserSession.java b/connector/src/main/java/org/geysermc/connector/network/session/GeyserSession.java index 9f3e09381..346fc18f5 100644 --- a/connector/src/main/java/org/geysermc/connector/network/session/GeyserSession.java +++ b/connector/src/main/java/org/geysermc/connector/network/session/GeyserSession.java @@ -512,12 +512,7 @@ public class GeyserSession implements CommandSender { upstream.sendPacket(entityPacket); CreativeContentPacket creativePacket = new CreativeContentPacket(); - if (upstream.getSession().getPacketCodec().getProtocolVersion() < Bedrock_v431.V431_CODEC.getProtocolVersion()) { - creativePacket.setContents(ItemRegistry.getPre1_16_220CreativeContents()); - } else { - // No additional work required - creativePacket.setContents(ItemRegistry.CREATIVE_ITEMS); - } + creativePacket.setContents(ItemRegistry.CREATIVE_ITEMS); upstream.sendPacket(creativePacket); PlayStatusPacket playStatusPacket = new PlayStatusPacket(); @@ -1048,14 +1043,13 @@ public class GeyserSession implements CommandSender { startGamePacket.setItemEntries(ItemRegistry.ITEMS); startGamePacket.setVanillaVersion("*"); startGamePacket.setInventoriesServerAuthoritative(true); + startGamePacket.setServerEngine(""); // Do we want to fill this in? SyncedPlayerMovementSettings settings = new SyncedPlayerMovementSettings(); settings.setMovementMode(AuthoritativeMovementMode.CLIENT); settings.setRewindHistorySize(0); settings.setServerAuthoritativeBlockBreaking(false); startGamePacket.setPlayerMovementSettings(settings); - - startGamePacket.getExperiments().add(new ExperimentData("caves_and_cliffs", true)); upstream.sendPacket(startGamePacket); } diff --git a/connector/src/main/java/org/geysermc/connector/network/translators/item/ItemEntry.java b/connector/src/main/java/org/geysermc/connector/network/translators/item/ItemEntry.java index 2ac203e87..5acaa2e26 100644 --- a/connector/src/main/java/org/geysermc/connector/network/translators/item/ItemEntry.java +++ b/connector/src/main/java/org/geysermc/connector/network/translators/item/ItemEntry.java @@ -28,7 +28,7 @@ package org.geysermc.connector.network.translators.item; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.ToString; -import org.geysermc.connector.network.translators.world.block.BlockTranslator1_16_210; +import org.geysermc.connector.network.translators.world.block.BlockTranslator1_17_0; @Getter @AllArgsConstructor @@ -36,7 +36,7 @@ import org.geysermc.connector.network.translators.world.block.BlockTranslator1_1 public class ItemEntry { public static ItemEntry AIR = new ItemEntry("minecraft:air", "minecraft:air", 0, 0, 0, - BlockTranslator1_16_210.INSTANCE.getBedrockAirId(), 64); + BlockTranslator1_17_0.INSTANCE.getBedrockAirId(), 64); private final String javaIdentifier; private final String bedrockIdentifier; diff --git a/connector/src/main/java/org/geysermc/connector/network/translators/item/ItemRegistry.java b/connector/src/main/java/org/geysermc/connector/network/translators/item/ItemRegistry.java index 0e1a28d54..558146d14 100644 --- a/connector/src/main/java/org/geysermc/connector/network/translators/item/ItemRegistry.java +++ b/connector/src/main/java/org/geysermc/connector/network/translators/item/ItemRegistry.java @@ -45,7 +45,7 @@ import it.unimi.dsi.fastutil.objects.Object2IntOpenHashMap; import it.unimi.dsi.fastutil.objects.ObjectOpenHashSet; import org.geysermc.connector.GeyserConnector; import org.geysermc.connector.network.translators.world.block.BlockTranslator; -import org.geysermc.connector.network.translators.world.block.BlockTranslator1_16_210; +import org.geysermc.connector.network.translators.world.block.BlockTranslator1_17_0; import org.geysermc.connector.utils.FileUtils; import org.geysermc.connector.utils.LanguageUtils; @@ -250,7 +250,7 @@ public class ItemRegistry { throw new AssertionError(LanguageUtils.getLocaleStringLog("geyser.toolbox.fail.runtime_java"), e); } - BlockTranslator blockTranslator = BlockTranslator1_16_210.INSTANCE; + BlockTranslator blockTranslator = BlockTranslator1_17_0.INSTANCE; int itemIndex = 0; int javaFurnaceMinecartId = 0; @@ -537,37 +537,6 @@ public class ItemRegistry { JAVA_ONLY_ITEMS = ImmutableSet.copyOf(javaOnlyItems); } - /* pre-1.16.220 support start */ - - private static ItemData[] LEGACY_CREATIVE_CONTENTS = null; - - /** - * Built on the fly so extra memory isn't used if there are no 1.16.210-or-below clients joining. - * - * @return a list of creative items built for versions before 1.16.220. - */ - public static ItemData[] getPre1_16_220CreativeContents() { - if (LEGACY_CREATIVE_CONTENTS != null) { - return LEGACY_CREATIVE_CONTENTS; - } - - // Pre-1.16.220 relies on item damage values that the creative content packet drops - ItemData[] creativeContents = new ItemData[CREATIVE_ITEMS.length]; - for (int i = 0; i < CREATIVE_ITEMS.length; i++) { - ItemData item = CREATIVE_ITEMS[i]; - if (item.getBlockRuntimeId() != 0) { - creativeContents[i] = item.toBuilder().damage(getItem(item).getBedrockData()).build(); - } else { - // No block runtime ID means that this item is backwards-compatible - creativeContents[i] = item; - } - } - LEGACY_CREATIVE_CONTENTS = creativeContents; - return creativeContents; - } - - /* pre-1.16.220 support end */ - /** * Gets an {@link ItemEntry} from the given {@link ItemStack}. * diff --git a/connector/src/main/java/org/geysermc/connector/network/translators/world/block/BlockTranslator.java b/connector/src/main/java/org/geysermc/connector/network/translators/world/block/BlockTranslator.java index efa3a7c2b..5f55809f1 100644 --- a/connector/src/main/java/org/geysermc/connector/network/translators/world/block/BlockTranslator.java +++ b/connector/src/main/java/org/geysermc/connector/network/translators/world/block/BlockTranslator.java @@ -43,9 +43,7 @@ import org.geysermc.connector.utils.FileUtils; import java.io.DataInputStream; import java.io.InputStream; -import java.util.HashMap; -import java.util.Iterator; -import java.util.Map; +import java.util.*; import java.util.zip.GZIPInputStream; public abstract class BlockTranslator { @@ -221,7 +219,7 @@ public abstract class BlockTranslator { BlockMapping.AIR = JAVA_RUNTIME_ID_TO_BLOCK_MAPPING.get(JAVA_AIR_ID); - BlockTranslator1_16_210.init(); + BlockTranslator1_17_0.init(); BLOCKS_JSON = null; // We no longer require this so let it garbage collect away } diff --git a/connector/src/main/java/org/geysermc/connector/network/translators/world/block/BlockTranslator1_16_210.java b/connector/src/main/java/org/geysermc/connector/network/translators/world/block/BlockTranslator1_17_0.java similarity index 85% rename from connector/src/main/java/org/geysermc/connector/network/translators/world/block/BlockTranslator1_16_210.java rename to connector/src/main/java/org/geysermc/connector/network/translators/world/block/BlockTranslator1_17_0.java index 58861cb9c..d86d0e71f 100644 --- a/connector/src/main/java/org/geysermc/connector/network/translators/world/block/BlockTranslator1_16_210.java +++ b/connector/src/main/java/org/geysermc/connector/network/translators/world/block/BlockTranslator1_17_0.java @@ -25,11 +25,11 @@ package org.geysermc.connector.network.translators.world.block; -public class BlockTranslator1_16_210 extends BlockTranslator { - public static final BlockTranslator1_16_210 INSTANCE = new BlockTranslator1_16_210(); +public class BlockTranslator1_17_0 extends BlockTranslator { + public static final BlockTranslator1_17_0 INSTANCE = new BlockTranslator1_17_0(); - public BlockTranslator1_16_210() { - super("bedrock/blockpalette.1_16_210.nbt"); + public BlockTranslator1_17_0() { + super("bedrock/block_palette.1_17_0.nbt"); } @Override diff --git a/connector/src/main/java/org/geysermc/connector/utils/ChunkUtils.java b/connector/src/main/java/org/geysermc/connector/utils/ChunkUtils.java index 39c47c829..e88111fd4 100644 --- a/connector/src/main/java/org/geysermc/connector/utils/ChunkUtils.java +++ b/connector/src/main/java/org/geysermc/connector/utils/ChunkUtils.java @@ -74,17 +74,7 @@ public class ChunkUtils { public static ChunkData translateToBedrock(GeyserSession session, Column column) { Chunk[] javaSections = column.getChunks(); - - //FIXME TEMPORARY UNTIL THE CAVES AND CLIFFS EXPERIMENTAL DATA IS REMOVED UNLESS IT'S NOT REMOVED THEN HMMMM - int sectionYOffset; - if (session.getDimension().equals(DimensionUtils.OVERWORLD)) { - sectionYOffset = 4; - } else { - sectionYOffset = 0; - } - //FIXME END - - ChunkSection[] sections = new ChunkSection[javaSections.length + sectionYOffset]; + ChunkSection[] sections = new ChunkSection[javaSections.length]; // Temporarily stores compound tags of Bedrock-only block entities List bedrockOnlyBlockEntities = new ArrayList<>(); @@ -197,7 +187,7 @@ public class ChunkUtils { layers = new BlockStorage[]{ layer0, new BlockStorage(BitArrayVersion.V1.createArray(BlockStorage.SIZE, layer1Data), layer1Palette) }; } - sections[sectionY + sectionYOffset] = new ChunkSection(layers); + sections[sectionY] = new ChunkSection(layers); } CompoundTag[] blockEntities = column.getTileEntities(); diff --git a/connector/src/main/resources/bedrock/biome_definitions.dat b/connector/src/main/resources/bedrock/biome_definitions.dat index 6d72cc924..8fe3b95a5 100644 Binary files a/connector/src/main/resources/bedrock/biome_definitions.dat and b/connector/src/main/resources/bedrock/biome_definitions.dat differ diff --git a/connector/src/main/resources/bedrock/block_palette.1_17_0.nbt b/connector/src/main/resources/bedrock/block_palette.1_17_0.nbt new file mode 100644 index 000000000..c4f908b5e Binary files /dev/null and b/connector/src/main/resources/bedrock/block_palette.1_17_0.nbt differ diff --git a/connector/src/main/resources/bedrock/blockpalette.1_16_210.nbt b/connector/src/main/resources/bedrock/blockpalette.1_16_210.nbt deleted file mode 100644 index aef6203a9..000000000 Binary files a/connector/src/main/resources/bedrock/blockpalette.1_16_210.nbt and /dev/null differ diff --git a/connector/src/main/resources/bedrock/creative_items.json b/connector/src/main/resources/bedrock/creative_items.json index 73172ca53..2226e8272 100644 --- a/connector/src/main/resources/bedrock/creative_items.json +++ b/connector/src/main/resources/bedrock/creative_items.json @@ -2,155 +2,171 @@ "items" : [ { "id" : "minecraft:planks", - "blockRuntimeId" : 5004 + "blockRuntimeId" : 5640 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5005 + "blockRuntimeId" : 5641 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5006 + "blockRuntimeId" : 5642 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5007 + "blockRuntimeId" : 5643 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5008 + "blockRuntimeId" : 5644 }, { "id" : "minecraft:planks", - "blockRuntimeId" : 5009 + "blockRuntimeId" : 5645 }, { "id" : "minecraft:crimson_planks", - "blockRuntimeId" : 3605 + "blockRuntimeId" : 3799 }, { "id" : "minecraft:warped_planks", - "blockRuntimeId" : 6529 + "blockRuntimeId" : 7352 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1086 + "blockRuntimeId" : 1278 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1087 + "blockRuntimeId" : 1279 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1088 + "blockRuntimeId" : 1280 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1089 + "blockRuntimeId" : 1281 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1090 + "blockRuntimeId" : 1282 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1091 + "blockRuntimeId" : 1283 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1098 + "blockRuntimeId" : 1290 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1093 + "blockRuntimeId" : 1285 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1094 + "blockRuntimeId" : 1286 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1092 + "blockRuntimeId" : 1284 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1095 + "blockRuntimeId" : 1287 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1099 + "blockRuntimeId" : 1291 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1096 + "blockRuntimeId" : 1288 }, { "id" : "minecraft:cobblestone_wall", - "blockRuntimeId" : 1097 + "blockRuntimeId" : 1289 }, { "id" : "minecraft:blackstone_wall", - "blockRuntimeId" : 490 + "blockRuntimeId" : 497 }, { "id" : "minecraft:polished_blackstone_wall", - "blockRuntimeId" : 5248 + "blockRuntimeId" : 5884 }, { "id" : "minecraft:polished_blackstone_brick_wall", - "blockRuntimeId" : 5045 + "blockRuntimeId" : 5681 + }, + { + "id" : "minecraft:cobbled_deepslate_wall", + "blockRuntimeId" : 1115 + }, + { + "id" : "minecraft:deepslate_tile_wall", + "blockRuntimeId" : 4247 + }, + { + "id" : "minecraft:polished_deepslate_wall", + "blockRuntimeId" : 6059 + }, + { + "id" : "minecraft:deepslate_brick_wall", + "blockRuntimeId" : 4064 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4174 + "blockRuntimeId" : 4723 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4175 + "blockRuntimeId" : 4724 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4176 + "blockRuntimeId" : 4725 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4177 + "blockRuntimeId" : 4726 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4178 + "blockRuntimeId" : 4727 }, { "id" : "minecraft:fence", - "blockRuntimeId" : 4179 + "blockRuntimeId" : 4728 }, { "id" : "minecraft:nether_brick_fence", - "blockRuntimeId" : 4916 + "blockRuntimeId" : 5552 }, { "id" : "minecraft:crimson_fence", - "blockRuntimeId" : 3583 + "blockRuntimeId" : 3777 }, { "id" : "minecraft:warped_fence", - "blockRuntimeId" : 6507 + "blockRuntimeId" : 7330 }, { "id" : "minecraft:fence_gate", - "blockRuntimeId" : 4180 + "blockRuntimeId" : 4729 }, { "id" : "minecraft:spruce_fence_gate", - "blockRuntimeId" : 5943 + "blockRuntimeId" : 6764 }, { "id" : "minecraft:birch_fence_gate", - "blockRuntimeId" : 393 + "blockRuntimeId" : 400 }, { "id" : "minecraft:jungle_fence_gate", - "blockRuntimeId" : 4542 + "blockRuntimeId" : 5158 }, { "id" : "minecraft:acacia_fence_gate", @@ -158,43 +174,43 @@ }, { "id" : "minecraft:dark_oak_fence_gate", - "blockRuntimeId" : 3736 + "blockRuntimeId" : 3930 }, { "id" : "minecraft:crimson_fence_gate", - "blockRuntimeId" : 3584 + "blockRuntimeId" : 3778 }, { "id" : "minecraft:warped_fence_gate", - "blockRuntimeId" : 6508 + "blockRuntimeId" : 7331 }, { "id" : "minecraft:normal_stone_stairs", - "blockRuntimeId" : 4935 + "blockRuntimeId" : 5571 }, { "id" : "minecraft:stone_stairs", - "blockRuntimeId" : 6214 + "blockRuntimeId" : 7035 }, { "id" : "minecraft:mossy_cobblestone_stairs", - "blockRuntimeId" : 4897 + "blockRuntimeId" : 5533 }, { "id" : "minecraft:oak_stairs", - "blockRuntimeId" : 4944 + "blockRuntimeId" : 5580 }, { "id" : "minecraft:spruce_stairs", - "blockRuntimeId" : 5975 + "blockRuntimeId" : 6796 }, { "id" : "minecraft:birch_stairs", - "blockRuntimeId" : 425 + "blockRuntimeId" : 432 }, { "id" : "minecraft:jungle_stairs", - "blockRuntimeId" : 4574 + "blockRuntimeId" : 5190 }, { "id" : "minecraft:acacia_stairs", @@ -202,143 +218,163 @@ }, { "id" : "minecraft:dark_oak_stairs", - "blockRuntimeId" : 3768 + "blockRuntimeId" : 3962 }, { "id" : "minecraft:stone_brick_stairs", - "blockRuntimeId" : 6120 + "blockRuntimeId" : 6941 }, { "id" : "minecraft:mossy_stone_brick_stairs", - "blockRuntimeId" : 4905 + "blockRuntimeId" : 5541 }, { "id" : "minecraft:sandstone_stairs", - "blockRuntimeId" : 5719 + "blockRuntimeId" : 6533 }, { "id" : "minecraft:smooth_sandstone_stairs", - "blockRuntimeId" : 5836 + "blockRuntimeId" : 6657 }, { "id" : "minecraft:red_sandstone_stairs", - "blockRuntimeId" : 5646 + "blockRuntimeId" : 6460 }, { "id" : "minecraft:smooth_red_sandstone_stairs", - "blockRuntimeId" : 5828 + "blockRuntimeId" : 6649 }, { "id" : "minecraft:granite_stairs", - "blockRuntimeId" : 4301 + "blockRuntimeId" : 4914 }, { "id" : "minecraft:polished_granite_stairs", - "blockRuntimeId" : 5418 + "blockRuntimeId" : 6229 }, { "id" : "minecraft:diorite_stairs", - "blockRuntimeId" : 3870 + "blockRuntimeId" : 4425 }, { "id" : "minecraft:polished_diorite_stairs", - "blockRuntimeId" : 5410 + "blockRuntimeId" : 6221 }, { "id" : "minecraft:andesite_stairs", - "blockRuntimeId" : 137 + "blockRuntimeId" : 144 }, { "id" : "minecraft:polished_andesite_stairs", - "blockRuntimeId" : 5021 + "blockRuntimeId" : 5657 }, { "id" : "minecraft:brick_stairs", - "blockRuntimeId" : 849 + "blockRuntimeId" : 856 }, { "id" : "minecraft:nether_brick_stairs", - "blockRuntimeId" : 4917 + "blockRuntimeId" : 5553 }, { "id" : "minecraft:red_nether_brick_stairs", - "blockRuntimeId" : 5634 + "blockRuntimeId" : 6448 }, { "id" : "minecraft:end_brick_stairs", - "blockRuntimeId" : 4120 + "blockRuntimeId" : 4669 }, { "id" : "minecraft:quartz_stairs", - "blockRuntimeId" : 5581 + "blockRuntimeId" : 6392 }, { "id" : "minecraft:smooth_quartz_stairs", - "blockRuntimeId" : 5820 + "blockRuntimeId" : 6641 }, { "id" : "minecraft:purpur_stairs", - "blockRuntimeId" : 5559 + "blockRuntimeId" : 6370 }, { "id" : "minecraft:prismarine_stairs", - "blockRuntimeId" : 5481 + "blockRuntimeId" : 6292 }, { "id" : "minecraft:dark_prismarine_stairs", - "blockRuntimeId" : 3792 + "blockRuntimeId" : 3986 }, { "id" : "minecraft:prismarine_bricks_stairs", - "blockRuntimeId" : 5473 + "blockRuntimeId" : 6284 }, { "id" : "minecraft:crimson_stairs", - "blockRuntimeId" : 3625 + "blockRuntimeId" : 3819 }, { "id" : "minecraft:warped_stairs", - "blockRuntimeId" : 6549 + "blockRuntimeId" : 7372 }, { "id" : "minecraft:blackstone_stairs", - "blockRuntimeId" : 482 + "blockRuntimeId" : 489 }, { "id" : "minecraft:polished_blackstone_stairs", - "blockRuntimeId" : 5240 + "blockRuntimeId" : 5876 }, { "id" : "minecraft:polished_blackstone_brick_stairs", - "blockRuntimeId" : 5037 + "blockRuntimeId" : 5673 }, { "id" : "minecraft:cut_copper_stairs", - "blockRuntimeId" : 3678 + "blockRuntimeId" : 3872 }, { "id" : "minecraft:exposed_cut_copper_stairs", - "blockRuntimeId" : 4156 + "blockRuntimeId" : 4705 }, { "id" : "minecraft:weathered_cut_copper_stairs", - "blockRuntimeId" : 6662 + "blockRuntimeId" : 7499 }, { "id" : "minecraft:oxidized_cut_copper_stairs", - "blockRuntimeId" : 4975 + "blockRuntimeId" : 5611 }, { "id" : "minecraft:waxed_cut_copper_stairs", - "blockRuntimeId" : 6620 + "blockRuntimeId" : 7443 }, { "id" : "minecraft:waxed_exposed_cut_copper_stairs", - "blockRuntimeId" : 6634 + "blockRuntimeId" : 7457 }, { "id" : "minecraft:waxed_weathered_cut_copper_stairs", - "blockRuntimeId" : 6648 + "blockRuntimeId" : 7485 + }, + { + "id" : "minecraft:waxed_oxidized_cut_copper_stairs", + "blockRuntimeId" : 7471 + }, + { + "id" : "minecraft:cobbled_deepslate_stairs", + "blockRuntimeId" : 1107 + }, + { + "id" : "minecraft:deepslate_tile_stairs", + "blockRuntimeId" : 4239 + }, + { + "id" : "minecraft:polished_deepslate_stairs", + "blockRuntimeId" : 6051 + }, + { + "id" : "minecraft:deepslate_brick_stairs", + "blockRuntimeId" : 4056 }, { "id" : "minecraft:wooden_door" @@ -369,19 +405,19 @@ }, { "id" : "minecraft:trapdoor", - "blockRuntimeId" : 6295 + "blockRuntimeId" : 7117 }, { "id" : "minecraft:spruce_trapdoor", - "blockRuntimeId" : 5999 + "blockRuntimeId" : 6820 }, { "id" : "minecraft:birch_trapdoor", - "blockRuntimeId" : 449 + "blockRuntimeId" : 456 }, { "id" : "minecraft:jungle_trapdoor", - "blockRuntimeId" : 4598 + "blockRuntimeId" : 5214 }, { "id" : "minecraft:acacia_trapdoor", @@ -389,699 +425,727 @@ }, { "id" : "minecraft:dark_oak_trapdoor", - "blockRuntimeId" : 3776 + "blockRuntimeId" : 3970 }, { "id" : "minecraft:iron_trapdoor", - "blockRuntimeId" : 4457 + "blockRuntimeId" : 5073 }, { "id" : "minecraft:crimson_trapdoor", - "blockRuntimeId" : 3652 + "blockRuntimeId" : 3846 }, { "id" : "minecraft:warped_trapdoor", - "blockRuntimeId" : 6576 + "blockRuntimeId" : 7399 }, { "id" : "minecraft:iron_bars", - "blockRuntimeId" : 4422 + "blockRuntimeId" : 5038 }, { "id" : "minecraft:glass", - "blockRuntimeId" : 4271 + "blockRuntimeId" : 4820 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6021 + "blockRuntimeId" : 6842 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6029 + "blockRuntimeId" : 6850 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6028 + "blockRuntimeId" : 6849 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6036 + "blockRuntimeId" : 6857 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6033 + "blockRuntimeId" : 6854 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6035 + "blockRuntimeId" : 6856 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6022 + "blockRuntimeId" : 6843 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6025 + "blockRuntimeId" : 6846 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6026 + "blockRuntimeId" : 6847 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6034 + "blockRuntimeId" : 6855 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6030 + "blockRuntimeId" : 6851 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6024 + "blockRuntimeId" : 6845 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6032 + "blockRuntimeId" : 6853 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6031 + "blockRuntimeId" : 6852 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6023 + "blockRuntimeId" : 6844 }, { "id" : "minecraft:stained_glass", - "blockRuntimeId" : 6027 + "blockRuntimeId" : 6848 + }, + { + "id" : "minecraft:tinted_glass", + "blockRuntimeId" : 7106 }, { "id" : "minecraft:glass_pane", - "blockRuntimeId" : 4272 + "blockRuntimeId" : 4821 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6037 + "blockRuntimeId" : 6858 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6045 + "blockRuntimeId" : 6866 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6044 + "blockRuntimeId" : 6865 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6052 + "blockRuntimeId" : 6873 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6049 + "blockRuntimeId" : 6870 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6051 + "blockRuntimeId" : 6872 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6038 + "blockRuntimeId" : 6859 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6041 + "blockRuntimeId" : 6862 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6042 + "blockRuntimeId" : 6863 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6050 + "blockRuntimeId" : 6871 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6046 + "blockRuntimeId" : 6867 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6040 + "blockRuntimeId" : 6861 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6048 + "blockRuntimeId" : 6869 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6047 + "blockRuntimeId" : 6868 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6039 + "blockRuntimeId" : 6860 }, { "id" : "minecraft:stained_glass_pane", - "blockRuntimeId" : 6043 + "blockRuntimeId" : 6864 }, { "id" : "minecraft:ladder", - "blockRuntimeId" : 4646 + "blockRuntimeId" : 5262 }, { "id" : "minecraft:scaffolding", - "blockRuntimeId" : 5739 + "blockRuntimeId" : 6553 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6156 + "blockRuntimeId" : 6977 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 6206 + "blockRuntimeId" : 7027 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6159 + "blockRuntimeId" : 6980 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6177 + "blockRuntimeId" : 6998 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 6810 + "blockRuntimeId" : 7647 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 6811 + "blockRuntimeId" : 7648 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 6812 + "blockRuntimeId" : 7649 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 6813 + "blockRuntimeId" : 7650 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 6814 + "blockRuntimeId" : 7651 }, { "id" : "minecraft:wooden_slab", - "blockRuntimeId" : 6815 + "blockRuntimeId" : 7652 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6161 + "blockRuntimeId" : 6982 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 6204 + "blockRuntimeId" : 7025 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6157 + "blockRuntimeId" : 6978 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 6207 + "blockRuntimeId" : 7028 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6178 + "blockRuntimeId" : 6999 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6172 + "blockRuntimeId" : 6993 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 6208 + "blockRuntimeId" : 7029 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 6189 + "blockRuntimeId" : 7010 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 6194 + "blockRuntimeId" : 7015 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 6195 + "blockRuntimeId" : 7016 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 6192 + "blockRuntimeId" : 7013 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 6193 + "blockRuntimeId" : 7014 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 6191 + "blockRuntimeId" : 7012 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 6190 + "blockRuntimeId" : 7011 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6160 + "blockRuntimeId" : 6981 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6163 + "blockRuntimeId" : 6984 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6179 + "blockRuntimeId" : 7000 }, { "id" : "minecraft:double_stone_slab3", - "blockRuntimeId" : 6188 + "blockRuntimeId" : 7009 }, { "id" : "minecraft:double_stone_slab", - "blockRuntimeId" : 6162 + "blockRuntimeId" : 6983 }, { "id" : "minecraft:double_stone_slab4", - "blockRuntimeId" : 6205 + "blockRuntimeId" : 7026 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6173 + "blockRuntimeId" : 6994 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6174 + "blockRuntimeId" : 6995 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6175 + "blockRuntimeId" : 6996 }, { "id" : "minecraft:double_stone_slab2", - "blockRuntimeId" : 6176 + "blockRuntimeId" : 6997 }, { "id" : "minecraft:crimson_slab", - "blockRuntimeId" : 3623 + "blockRuntimeId" : 3817 }, { "id" : "minecraft:warped_slab", - "blockRuntimeId" : 6547 + "blockRuntimeId" : 7370 }, { "id" : "minecraft:blackstone_slab", - "blockRuntimeId" : 480 + "blockRuntimeId" : 487 }, { "id" : "minecraft:polished_blackstone_slab", - "blockRuntimeId" : 5238 + "blockRuntimeId" : 5874 }, { "id" : "minecraft:polished_blackstone_brick_slab", - "blockRuntimeId" : 5035 + "blockRuntimeId" : 5671 }, { "id" : "minecraft:cut_copper_slab", - "blockRuntimeId" : 3676 + "blockRuntimeId" : 3870 }, { "id" : "minecraft:exposed_cut_copper_slab", - "blockRuntimeId" : 4154 + "blockRuntimeId" : 4703 }, { "id" : "minecraft:weathered_cut_copper_slab", - "blockRuntimeId" : 6660 + "blockRuntimeId" : 7497 }, { "id" : "minecraft:oxidized_cut_copper_slab", - "blockRuntimeId" : 4973 + "blockRuntimeId" : 5609 }, { "id" : "minecraft:waxed_cut_copper_slab", - "blockRuntimeId" : 6618 + "blockRuntimeId" : 7441 }, { "id" : "minecraft:waxed_exposed_cut_copper_slab", - "blockRuntimeId" : 6632 + "blockRuntimeId" : 7455 }, { "id" : "minecraft:waxed_weathered_cut_copper_slab", - "blockRuntimeId" : 6646 + "blockRuntimeId" : 7483 + }, + { + "id" : "minecraft:waxed_oxidized_cut_copper_slab", + "blockRuntimeId" : 7469 + }, + { + "id" : "minecraft:cobbled_deepslate_slab", + "blockRuntimeId" : 1105 + }, + { + "id" : "minecraft:polished_deepslate_slab", + "blockRuntimeId" : 6049 + }, + { + "id" : "minecraft:deepslate_tile_slab", + "blockRuntimeId" : 4237 + }, + { + "id" : "minecraft:deepslate_brick_slab", + "blockRuntimeId" : 4054 }, { "id" : "minecraft:brick_block", - "blockRuntimeId" : 848 + "blockRuntimeId" : 855 }, { "id" : "minecraft:chiseled_nether_bricks", - "blockRuntimeId" : 1073 + "blockRuntimeId" : 1090 }, { "id" : "minecraft:cracked_nether_bricks", - "blockRuntimeId" : 3534 + "blockRuntimeId" : 3728 }, { "id" : "minecraft:quartz_bricks", - "blockRuntimeId" : 5579 + "blockRuntimeId" : 6390 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 6222 + "blockRuntimeId" : 7043 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 6223 + "blockRuntimeId" : 7044 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 6224 + "blockRuntimeId" : 7045 }, { "id" : "minecraft:stonebrick", - "blockRuntimeId" : 6225 + "blockRuntimeId" : 7046 }, { "id" : "minecraft:end_bricks", - "blockRuntimeId" : 4128 + "blockRuntimeId" : 4677 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 5472 + "blockRuntimeId" : 6283 }, { "id" : "minecraft:polished_blackstone_bricks", - "blockRuntimeId" : 5207 + "blockRuntimeId" : 5843 }, { "id" : "minecraft:cracked_polished_blackstone_bricks", - "blockRuntimeId" : 3535 + "blockRuntimeId" : 3729 }, { "id" : "minecraft:gilded_blackstone", - "blockRuntimeId" : 4270 + "blockRuntimeId" : 4819 }, { "id" : "minecraft:chiseled_polished_blackstone", - "blockRuntimeId" : 1074 + "blockRuntimeId" : 1091 + }, + { + "id" : "minecraft:deepslate_tiles", + "blockRuntimeId" : 4409 + }, + { + "id" : "minecraft:cracked_deepslate_tiles", + "blockRuntimeId" : 3727 + }, + { + "id" : "minecraft:deepslate_bricks", + "blockRuntimeId" : 4226 + }, + { + "id" : "minecraft:cracked_deepslate_bricks", + "blockRuntimeId" : 3726 + }, + { + "id" : "minecraft:chiseled_deepslate", + "blockRuntimeId" : 1089 }, { "id" : "minecraft:cobblestone", - "blockRuntimeId" : 1085 + "blockRuntimeId" : 1277 }, { "id" : "minecraft:mossy_cobblestone", - "blockRuntimeId" : 4896 + "blockRuntimeId" : 5532 + }, + { + "id" : "minecraft:cobbled_deepslate", + "blockRuntimeId" : 1102 }, { "id" : "minecraft:smooth_stone", - "blockRuntimeId" : 5844 + "blockRuntimeId" : 6665 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 5715 + "blockRuntimeId" : 6529 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 5716 + "blockRuntimeId" : 6530 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 5717 + "blockRuntimeId" : 6531 }, { "id" : "minecraft:sandstone", - "blockRuntimeId" : 5718 + "blockRuntimeId" : 6532 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 5642 + "blockRuntimeId" : 6456 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 5643 + "blockRuntimeId" : 6457 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 5644 + "blockRuntimeId" : 6458 }, { "id" : "minecraft:red_sandstone", - "blockRuntimeId" : 5645 + "blockRuntimeId" : 6459 }, { "id" : "minecraft:coal_block", - "blockRuntimeId" : 1083 + "blockRuntimeId" : 1100 }, { "id" : "minecraft:dried_kelp_block", - "blockRuntimeId" : 3978 + "blockRuntimeId" : 4533 }, { "id" : "minecraft:gold_block", - "blockRuntimeId" : 4287 + "blockRuntimeId" : 4900 }, { "id" : "minecraft:iron_block", - "blockRuntimeId" : 4423 + "blockRuntimeId" : 5039 }, { "id" : "minecraft:copper_block", - "blockRuntimeId" : 3444 + "blockRuntimeId" : 3636 }, { "id" : "minecraft:exposed_copper", - "blockRuntimeId" : 4152 + "blockRuntimeId" : 4701 }, { "id" : "minecraft:weathered_copper", - "blockRuntimeId" : 6658 + "blockRuntimeId" : 7495 }, { "id" : "minecraft:oxidized_copper", - "blockRuntimeId" : 4971 + "blockRuntimeId" : 5607 }, { "id" : "minecraft:waxed_copper", - "blockRuntimeId" : 6616 + "blockRuntimeId" : 7439 }, { "id" : "minecraft:waxed_exposed_copper", - "blockRuntimeId" : 6630 + "blockRuntimeId" : 7453 }, { "id" : "minecraft:waxed_weathered_copper", - "blockRuntimeId" : 6644 + "blockRuntimeId" : 7481 + }, + { + "id" : "minecraft:waxed_oxidized_copper", + "blockRuntimeId" : 7467 }, { "id" : "minecraft:cut_copper", - "blockRuntimeId" : 3675 + "blockRuntimeId" : 3869 }, { "id" : "minecraft:exposed_cut_copper", - "blockRuntimeId" : 4153 + "blockRuntimeId" : 4702 }, { "id" : "minecraft:weathered_cut_copper", - "blockRuntimeId" : 6659 + "blockRuntimeId" : 7496 }, { "id" : "minecraft:oxidized_cut_copper", - "blockRuntimeId" : 4972 + "blockRuntimeId" : 5608 }, { "id" : "minecraft:waxed_cut_copper", - "blockRuntimeId" : 6617 + "blockRuntimeId" : 7440 }, { "id" : "minecraft:waxed_exposed_cut_copper", - "blockRuntimeId" : 6631 + "blockRuntimeId" : 7454 }, { "id" : "minecraft:waxed_weathered_cut_copper", - "blockRuntimeId" : 6645 + "blockRuntimeId" : 7482 + }, + { + "id" : "minecraft:waxed_oxidized_cut_copper", + "blockRuntimeId" : 7468 }, { "id" : "minecraft:emerald_block", - "blockRuntimeId" : 4117 + "blockRuntimeId" : 4666 }, { "id" : "minecraft:diamond_block", - "blockRuntimeId" : 3868 + "blockRuntimeId" : 4423 }, { "id" : "minecraft:lapis_block", - "blockRuntimeId" : 4654 + "blockRuntimeId" : 5270 + }, + { + "id" : "minecraft:raw_iron_block", + "blockRuntimeId" : 6412 + }, + { + "id" : "minecraft:raw_copper_block", + "blockRuntimeId" : 6410 + }, + { + "id" : "minecraft:raw_gold_block", + "blockRuntimeId" : 6411 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 5567 + "blockRuntimeId" : 6378 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 5569 + "blockRuntimeId" : 6380 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 5568 + "blockRuntimeId" : 6379 }, { "id" : "minecraft:quartz_block", - "blockRuntimeId" : 5570 + "blockRuntimeId" : 6381 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 5470 + "blockRuntimeId" : 6281 }, { "id" : "minecraft:prismarine", - "blockRuntimeId" : 5471 + "blockRuntimeId" : 6282 }, { "id" : "minecraft:slime", - "blockRuntimeId" : 5804 + "blockRuntimeId" : 6618 }, { "id" : "minecraft:honey_block", - "blockRuntimeId" : 4404 + "blockRuntimeId" : 5017 }, { "id" : "minecraft:honeycomb_block", - "blockRuntimeId" : 4405 + "blockRuntimeId" : 5018 }, { "id" : "minecraft:hay_block", - "blockRuntimeId" : 4376 + "blockRuntimeId" : 4989 }, { "id" : "minecraft:bone_block", - "blockRuntimeId" : 665 + "blockRuntimeId" : 672 }, { "id" : "minecraft:nether_brick", - "blockRuntimeId" : 4915 + "blockRuntimeId" : 5551 }, { "id" : "minecraft:red_nether_brick", - "blockRuntimeId" : 5633 + "blockRuntimeId" : 6447 }, { "id" : "minecraft:netherite_block", - "blockRuntimeId" : 4932 + "blockRuntimeId" : 5568 }, { "id" : "minecraft:lodestone", - "blockRuntimeId" : 4808 + "blockRuntimeId" : 5438 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 6822 + "blockRuntimeId" : 7659 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 6830 + "blockRuntimeId" : 7667 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 6829 + "blockRuntimeId" : 7666 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 6837 + "blockRuntimeId" : 7674 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 6834 + "blockRuntimeId" : 7671 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 6836 + "blockRuntimeId" : 7673 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 6823 + "blockRuntimeId" : 7660 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 6826 + "blockRuntimeId" : 7663 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 6827 + "blockRuntimeId" : 7664 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 6835 + "blockRuntimeId" : 7672 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 6831 + "blockRuntimeId" : 7668 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 6825 + "blockRuntimeId" : 7662 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 6833 + "blockRuntimeId" : 7670 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 6832 + "blockRuntimeId" : 7669 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 6824 + "blockRuntimeId" : 7661 }, { "id" : "minecraft:wool", - "blockRuntimeId" : 6828 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 914 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 922 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 921 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 929 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 926 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 928 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 915 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 918 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 919 - }, - { - "id" : "minecraft:carpet", - "blockRuntimeId" : 927 + "blockRuntimeId" : 7665 }, { "id" : "minecraft:carpet", @@ -1089,11 +1153,23 @@ }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 917 + "blockRuntimeId" : 931 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 925 + "blockRuntimeId" : 930 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 938 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 935 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 937 }, { "id" : "minecraft:carpet", @@ -1101,627 +1177,699 @@ }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 916 + "blockRuntimeId" : 927 }, { "id" : "minecraft:carpet", - "blockRuntimeId" : 920 + "blockRuntimeId" : 928 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 936 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 932 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 926 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 934 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 933 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 925 + }, + { + "id" : "minecraft:carpet", + "blockRuntimeId" : 929 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3427 + "blockRuntimeId" : 3619 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3435 + "blockRuntimeId" : 3627 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3434 + "blockRuntimeId" : 3626 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3442 + "blockRuntimeId" : 3634 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3439 + "blockRuntimeId" : 3631 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3441 + "blockRuntimeId" : 3633 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3428 + "blockRuntimeId" : 3620 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3431 + "blockRuntimeId" : 3623 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3432 + "blockRuntimeId" : 3624 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3440 + "blockRuntimeId" : 3632 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3436 + "blockRuntimeId" : 3628 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3430 + "blockRuntimeId" : 3622 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3438 + "blockRuntimeId" : 3630 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3437 + "blockRuntimeId" : 3629 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3429 + "blockRuntimeId" : 3621 }, { "id" : "minecraft:concrete_powder", - "blockRuntimeId" : 3433 + "blockRuntimeId" : 3625 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3411 + "blockRuntimeId" : 3603 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3419 + "blockRuntimeId" : 3611 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3418 + "blockRuntimeId" : 3610 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3426 + "blockRuntimeId" : 3618 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3423 + "blockRuntimeId" : 3615 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3425 + "blockRuntimeId" : 3617 }, { "id" : "minecraft:concrete", - "blockRuntimeId" : 3412 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3415 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3416 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3424 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3420 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3414 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3422 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3421 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3413 - }, - { - "id" : "minecraft:concrete", - "blockRuntimeId" : 3417 - }, - { - "id" : "minecraft:clay", - "blockRuntimeId" : 1082 - }, - { - "id" : "minecraft:hardened_clay", - "blockRuntimeId" : 4375 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6053 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6061 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6060 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6068 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6065 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6067 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6054 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6057 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6058 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6066 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6062 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6056 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6064 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6063 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6055 - }, - { - "id" : "minecraft:stained_hardened_clay", - "blockRuntimeId" : 6059 - }, - { - "id" : "minecraft:white_glazed_terracotta", - "blockRuntimeId" : 6707 - }, - { - "id" : "minecraft:silver_glazed_terracotta", - "blockRuntimeId" : 5786 - }, - { - "id" : "minecraft:gray_glazed_terracotta", - "blockRuntimeId" : 4312 - }, - { - "id" : "minecraft:black_glazed_terracotta", - "blockRuntimeId" : 471 - }, - { - "id" : "minecraft:brown_glazed_terracotta", - "blockRuntimeId" : 857 - }, - { - "id" : "minecraft:red_glazed_terracotta", - "blockRuntimeId" : 5610 - }, - { - "id" : "minecraft:orange_glazed_terracotta", - "blockRuntimeId" : 4965 - }, - { - "id" : "minecraft:yellow_glazed_terracotta", - "blockRuntimeId" : 6839 - }, - { - "id" : "minecraft:lime_glazed_terracotta", - "blockRuntimeId" : 4778 - }, - { - "id" : "minecraft:green_glazed_terracotta", - "blockRuntimeId" : 4318 - }, - { - "id" : "minecraft:cyan_glazed_terracotta", - "blockRuntimeId" : 3686 - }, - { - "id" : "minecraft:light_blue_glazed_terracotta", - "blockRuntimeId" : 4750 - }, - { - "id" : "minecraft:blue_glazed_terracotta", - "blockRuntimeId" : 658 - }, - { - "id" : "minecraft:purple_glazed_terracotta", - "blockRuntimeId" : 5541 - }, - { - "id" : "minecraft:magenta_glazed_terracotta", - "blockRuntimeId" : 4831 - }, - { - "id" : "minecraft:pink_glazed_terracotta", - "blockRuntimeId" : 4986 - }, - { - "id" : "minecraft:purpur_block", - "blockRuntimeId" : 5547 - }, - { - "id" : "minecraft:purpur_block", - "blockRuntimeId" : 5549 - }, - { - "id" : "minecraft:nether_wart_block", - "blockRuntimeId" : 4931 - }, - { - "id" : "minecraft:warped_wart_block", - "blockRuntimeId" : 6598 - }, - { - "id" : "minecraft:shroomlight", - "blockRuntimeId" : 5769 - }, - { - "id" : "minecraft:crimson_nylium", "blockRuntimeId" : 3604 }, { - "id" : "minecraft:warped_nylium", - "blockRuntimeId" : 6528 + "id" : "minecraft:concrete", + "blockRuntimeId" : 3607 }, { - "id" : "minecraft:basalt", - "blockRuntimeId" : 207 + "id" : "minecraft:concrete", + "blockRuntimeId" : 3608 }, { - "id" : "minecraft:polished_basalt", - "blockRuntimeId" : 5029 + "id" : "minecraft:concrete", + "blockRuntimeId" : 3616 }, { - "id" : "minecraft:soul_soil", - "blockRuntimeId" : 5889 + "id" : "minecraft:concrete", + "blockRuntimeId" : 3612 }, { - "id" : "minecraft:dirt", - "blockRuntimeId" : 3878 + "id" : "minecraft:concrete", + "blockRuntimeId" : 3606 }, { - "id" : "minecraft:dirt", - "blockRuntimeId" : 3879 + "id" : "minecraft:concrete", + "blockRuntimeId" : 3614 }, { - "id" : "minecraft:farmland", - "blockRuntimeId" : 4166 + "id" : "minecraft:concrete", + "blockRuntimeId" : 3613 }, { - "id" : "minecraft:grass", - "blockRuntimeId" : 4309 + "id" : "minecraft:concrete", + "blockRuntimeId" : 3605 }, { - "id" : "minecraft:grass_path", - "blockRuntimeId" : 4310 + "id" : "minecraft:concrete", + "blockRuntimeId" : 3609 }, { - "id" : "minecraft:podzol", - "blockRuntimeId" : 5010 + "id" : "minecraft:clay", + "blockRuntimeId" : 1099 }, { - "id" : "minecraft:mycelium", - "blockRuntimeId" : 4914 + "id" : "minecraft:hardened_clay", + "blockRuntimeId" : 4988 }, { - "id" : "minecraft:stone", - "blockRuntimeId" : 6113 + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6874 }, { - "id" : "minecraft:iron_ore", - "blockRuntimeId" : 4456 + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6882 }, { - "id" : "minecraft:gold_ore", - "blockRuntimeId" : 4288 + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6881 }, { - "id" : "minecraft:diamond_ore", - "blockRuntimeId" : 3869 + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6889 }, { - "id" : "minecraft:lapis_ore", - "blockRuntimeId" : 4655 + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6886 }, { - "id" : "minecraft:redstone_ore", - "blockRuntimeId" : 5656 + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6888 }, { - "id" : "minecraft:coal_ore", - "blockRuntimeId" : 1084 + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6875 }, { - "id" : "minecraft:emerald_ore", - "blockRuntimeId" : 4118 + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6878 }, { - "id" : "minecraft:quartz_ore", - "blockRuntimeId" : 5580 + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6879 }, { - "id" : "minecraft:nether_gold_ore", + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6887 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6883 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6877 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6885 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6884 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6876 + }, + { + "id" : "minecraft:stained_hardened_clay", + "blockRuntimeId" : 6880 + }, + { + "id" : "minecraft:white_glazed_terracotta", + "blockRuntimeId" : 7544 + }, + { + "id" : "minecraft:silver_glazed_terracotta", + "blockRuntimeId" : 6600 + }, + { + "id" : "minecraft:gray_glazed_terracotta", "blockRuntimeId" : 4925 }, + { + "id" : "minecraft:black_glazed_terracotta", + "blockRuntimeId" : 478 + }, + { + "id" : "minecraft:brown_glazed_terracotta", + "blockRuntimeId" : 864 + }, + { + "id" : "minecraft:red_glazed_terracotta", + "blockRuntimeId" : 6424 + }, + { + "id" : "minecraft:orange_glazed_terracotta", + "blockRuntimeId" : 5601 + }, + { + "id" : "minecraft:yellow_glazed_terracotta", + "blockRuntimeId" : 7676 + }, + { + "id" : "minecraft:lime_glazed_terracotta", + "blockRuntimeId" : 5407 + }, + { + "id" : "minecraft:green_glazed_terracotta", + "blockRuntimeId" : 4931 + }, + { + "id" : "minecraft:cyan_glazed_terracotta", + "blockRuntimeId" : 3880 + }, + { + "id" : "minecraft:light_blue_glazed_terracotta", + "blockRuntimeId" : 5379 + }, + { + "id" : "minecraft:blue_glazed_terracotta", + "blockRuntimeId" : 665 + }, + { + "id" : "minecraft:purple_glazed_terracotta", + "blockRuntimeId" : 6352 + }, + { + "id" : "minecraft:magenta_glazed_terracotta", + "blockRuntimeId" : 5461 + }, + { + "id" : "minecraft:pink_glazed_terracotta", + "blockRuntimeId" : 5622 + }, + { + "id" : "minecraft:purpur_block", + "blockRuntimeId" : 6358 + }, + { + "id" : "minecraft:purpur_block", + "blockRuntimeId" : 6360 + }, + { + "id" : "minecraft:nether_wart_block", + "blockRuntimeId" : 5567 + }, + { + "id" : "minecraft:warped_wart_block", + "blockRuntimeId" : 7421 + }, + { + "id" : "minecraft:shroomlight", + "blockRuntimeId" : 6583 + }, + { + "id" : "minecraft:crimson_nylium", + "blockRuntimeId" : 3798 + }, + { + "id" : "minecraft:warped_nylium", + "blockRuntimeId" : 7351 + }, + { + "id" : "minecraft:basalt", + "blockRuntimeId" : 214 + }, + { + "id" : "minecraft:polished_basalt", + "blockRuntimeId" : 5665 + }, + { + "id" : "minecraft:smooth_basalt", + "blockRuntimeId" : 6640 + }, + { + "id" : "minecraft:soul_soil", + "blockRuntimeId" : 6710 + }, + { + "id" : "minecraft:dirt", + "blockRuntimeId" : 4433 + }, + { + "id" : "minecraft:dirt", + "blockRuntimeId" : 4434 + }, + { + "id" : "minecraft:farmland", + "blockRuntimeId" : 4715 + }, + { + "id" : "minecraft:grass", + "blockRuntimeId" : 4922 + }, + { + "id" : "minecraft:grass_path", + "blockRuntimeId" : 4923 + }, + { + "id" : "minecraft:podzol", + "blockRuntimeId" : 5646 + }, + { + "id" : "minecraft:mycelium", + "blockRuntimeId" : 5550 + }, + { + "id" : "minecraft:stone", + "blockRuntimeId" : 6934 + }, + { + "id" : "minecraft:iron_ore", + "blockRuntimeId" : 5072 + }, + { + "id" : "minecraft:gold_ore", + "blockRuntimeId" : 4901 + }, + { + "id" : "minecraft:diamond_ore", + "blockRuntimeId" : 4424 + }, + { + "id" : "minecraft:lapis_ore", + "blockRuntimeId" : 5271 + }, + { + "id" : "minecraft:redstone_ore", + "blockRuntimeId" : 6470 + }, + { + "id" : "minecraft:coal_ore", + "blockRuntimeId" : 1101 + }, + { + "id" : "minecraft:emerald_ore", + "blockRuntimeId" : 4667 + }, + { + "id" : "minecraft:quartz_ore", + "blockRuntimeId" : 6391 + }, + { + "id" : "minecraft:nether_gold_ore", + "blockRuntimeId" : 5561 + }, { "id" : "minecraft:ancient_debris", - "blockRuntimeId" : 136 + "blockRuntimeId" : 143 }, { "id" : "minecraft:copper_ore", - "blockRuntimeId" : 3445 + "blockRuntimeId" : 3637 + }, + { + "id" : "minecraft:deepslate_iron_ore", + "blockRuntimeId" : 4232 + }, + { + "id" : "minecraft:deepslate_gold_ore", + "blockRuntimeId" : 4231 + }, + { + "id" : "minecraft:deepslate_diamond_ore", + "blockRuntimeId" : 4229 + }, + { + "id" : "minecraft:deepslate_lapis_ore", + "blockRuntimeId" : 4233 + }, + { + "id" : "minecraft:deepslate_redstone_ore", + "blockRuntimeId" : 4234 + }, + { + "id" : "minecraft:deepslate_emerald_ore", + "blockRuntimeId" : 4230 + }, + { + "id" : "minecraft:deepslate_coal_ore", + "blockRuntimeId" : 4227 + }, + { + "id" : "minecraft:deepslate_copper_ore", + "blockRuntimeId" : 4228 }, { "id" : "minecraft:gravel", - "blockRuntimeId" : 4311 + "blockRuntimeId" : 4924 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 6114 + "blockRuntimeId" : 6935 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 6116 + "blockRuntimeId" : 6937 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 6118 + "blockRuntimeId" : 6939 }, { "id" : "minecraft:blackstone", - "blockRuntimeId" : 477 + "blockRuntimeId" : 484 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 6115 + "blockRuntimeId" : 6936 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 6117 + "blockRuntimeId" : 6938 }, { "id" : "minecraft:stone", - "blockRuntimeId" : 6119 + "blockRuntimeId" : 6940 }, { "id" : "minecraft:polished_blackstone", - "blockRuntimeId" : 5032 + "blockRuntimeId" : 5668 + }, + { + "id" : "minecraft:deepslate", + "blockRuntimeId" : 4049 + }, + { + "id" : "minecraft:polished_deepslate", + "blockRuntimeId" : 6046 }, { "id" : "minecraft:sand", - "blockRuntimeId" : 5713 + "blockRuntimeId" : 6527 }, { "id" : "minecraft:sand", - "blockRuntimeId" : 5714 + "blockRuntimeId" : 6528 }, { "id" : "minecraft:cactus", - "blockRuntimeId" : 882 + "blockRuntimeId" : 890 }, { "id" : "minecraft:log", - "blockRuntimeId" : 4809 + "blockRuntimeId" : 5439 }, { "id" : "minecraft:stripped_oak_log", - "blockRuntimeId" : 6252 + "blockRuntimeId" : 7073 }, { "id" : "minecraft:log", - "blockRuntimeId" : 4810 + "blockRuntimeId" : 5440 }, { "id" : "minecraft:stripped_spruce_log", - "blockRuntimeId" : 6255 + "blockRuntimeId" : 7076 }, { "id" : "minecraft:log", - "blockRuntimeId" : 4811 + "blockRuntimeId" : 5441 }, { "id" : "minecraft:stripped_birch_log", - "blockRuntimeId" : 6237 + "blockRuntimeId" : 7058 }, { "id" : "minecraft:log", - "blockRuntimeId" : 4812 + "blockRuntimeId" : 5442 }, { "id" : "minecraft:stripped_jungle_log", - "blockRuntimeId" : 6249 + "blockRuntimeId" : 7070 }, { "id" : "minecraft:log2", - "blockRuntimeId" : 4821 + "blockRuntimeId" : 5451 }, { "id" : "minecraft:stripped_acacia_log", - "blockRuntimeId" : 6234 + "blockRuntimeId" : 7055 }, { "id" : "minecraft:log2", - "blockRuntimeId" : 4822 + "blockRuntimeId" : 5452 }, { "id" : "minecraft:stripped_dark_oak_log", - "blockRuntimeId" : 6246 + "blockRuntimeId" : 7067 }, { "id" : "minecraft:crimson_stem", - "blockRuntimeId" : 3649 + "blockRuntimeId" : 3843 }, { "id" : "minecraft:stripped_crimson_stem", - "blockRuntimeId" : 6243 + "blockRuntimeId" : 7064 }, { "id" : "minecraft:warped_stem", - "blockRuntimeId" : 6573 + "blockRuntimeId" : 7396 }, { "id" : "minecraft:stripped_warped_stem", - "blockRuntimeId" : 6261 + "blockRuntimeId" : 7082 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 6714 + "blockRuntimeId" : 7551 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 6720 + "blockRuntimeId" : 7557 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 6715 + "blockRuntimeId" : 7552 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 6721 + "blockRuntimeId" : 7558 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 6716 + "blockRuntimeId" : 7553 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 6722 + "blockRuntimeId" : 7559 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 6717 + "blockRuntimeId" : 7554 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 6723 + "blockRuntimeId" : 7560 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 6718 + "blockRuntimeId" : 7555 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 6724 + "blockRuntimeId" : 7561 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 6719 + "blockRuntimeId" : 7556 }, { "id" : "minecraft:wood", - "blockRuntimeId" : 6725 + "blockRuntimeId" : 7562 }, { "id" : "minecraft:crimson_hyphae", - "blockRuntimeId" : 3601 + "blockRuntimeId" : 3795 }, { "id" : "minecraft:stripped_crimson_hyphae", - "blockRuntimeId" : 6240 + "blockRuntimeId" : 7061 }, { "id" : "minecraft:warped_hyphae", - "blockRuntimeId" : 6525 + "blockRuntimeId" : 7348 }, { "id" : "minecraft:stripped_warped_hyphae", - "blockRuntimeId" : 6258 + "blockRuntimeId" : 7079 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 4686 + "blockRuntimeId" : 5315 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 4687 + "blockRuntimeId" : 5316 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 4688 + "blockRuntimeId" : 5317 }, { "id" : "minecraft:leaves", - "blockRuntimeId" : 4689 + "blockRuntimeId" : 5318 }, { "id" : "minecraft:leaves2", - "blockRuntimeId" : 4702 + "blockRuntimeId" : 5331 }, { "id" : "minecraft:leaves2", - "blockRuntimeId" : 4703 + "blockRuntimeId" : 5332 }, { "id" : "minecraft:azalea_leaves", - "blockRuntimeId" : 162 + "blockRuntimeId" : 169 }, { "id" : "minecraft:azalea_leaves_flowered", - "blockRuntimeId" : 166 + "blockRuntimeId" : 173 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 5727 + "blockRuntimeId" : 6541 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 5728 + "blockRuntimeId" : 6542 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 5729 + "blockRuntimeId" : 6543 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 5730 + "blockRuntimeId" : 6544 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 5731 + "blockRuntimeId" : 6545 }, { "id" : "minecraft:sapling", - "blockRuntimeId" : 5732 + "blockRuntimeId" : 6546 }, { "id" : "minecraft:bee_nest", - "blockRuntimeId" : 229 + "blockRuntimeId" : 236 }, { "id" : "minecraft:wheat_seeds" @@ -1764,7 +1912,7 @@ }, { "id" : "minecraft:melon_block", - "blockRuntimeId" : 4838 + "blockRuntimeId" : 5474 }, { "id" : "minecraft:melon_slice" @@ -1780,200 +1928,200 @@ }, { "id" : "minecraft:pumpkin", - "blockRuntimeId" : 5489 + "blockRuntimeId" : 6300 }, { "id" : "minecraft:carved_pumpkin", - "blockRuntimeId" : 939 + "blockRuntimeId" : 948 }, { "id" : "minecraft:lit_pumpkin", - "blockRuntimeId" : 4796 + "blockRuntimeId" : 5426 }, { "id" : "minecraft:honeycomb" }, { "id" : "minecraft:tallgrass", - "blockRuntimeId" : 6282 + "blockRuntimeId" : 7103 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 3898 + "blockRuntimeId" : 4453 }, { "id" : "minecraft:tallgrass", - "blockRuntimeId" : 6281 + "blockRuntimeId" : 7102 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 3897 + "blockRuntimeId" : 4452 }, { "id" : "minecraft:nether_sprouts" }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3449 + "blockRuntimeId" : 3641 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3447 + "blockRuntimeId" : 3639 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3448 + "blockRuntimeId" : 3640 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3446 + "blockRuntimeId" : 3638 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3450 + "blockRuntimeId" : 3642 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3454 + "blockRuntimeId" : 3646 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3452 + "blockRuntimeId" : 3644 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3453 + "blockRuntimeId" : 3645 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3451 + "blockRuntimeId" : 3643 }, { "id" : "minecraft:coral", - "blockRuntimeId" : 3455 + "blockRuntimeId" : 3647 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3469 + "blockRuntimeId" : 3661 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3467 + "blockRuntimeId" : 3659 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3468 + "blockRuntimeId" : 3660 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3466 + "blockRuntimeId" : 3658 }, { "id" : "minecraft:coral_fan", - "blockRuntimeId" : 3470 + "blockRuntimeId" : 3662 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3479 + "blockRuntimeId" : 3671 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3477 + "blockRuntimeId" : 3669 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3478 + "blockRuntimeId" : 3670 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3476 + "blockRuntimeId" : 3668 }, { "id" : "minecraft:coral_fan_dead", - "blockRuntimeId" : 3480 + "blockRuntimeId" : 3672 }, { "id" : "minecraft:kelp" }, { "id" : "minecraft:seagrass", - "blockRuntimeId" : 5765 + "blockRuntimeId" : 6579 }, { "id" : "minecraft:crimson_roots", - "blockRuntimeId" : 3622 + "blockRuntimeId" : 3816 }, { "id" : "minecraft:warped_roots", - "blockRuntimeId" : 6546 + "blockRuntimeId" : 7369 }, { "id" : "minecraft:yellow_flower", - "blockRuntimeId" : 6838 + "blockRuntimeId" : 7675 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 5599 + "blockRuntimeId" : 6413 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 5600 + "blockRuntimeId" : 6414 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 5601 + "blockRuntimeId" : 6415 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 5602 + "blockRuntimeId" : 6416 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 5603 + "blockRuntimeId" : 6417 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 5604 + "blockRuntimeId" : 6418 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 5605 + "blockRuntimeId" : 6419 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 5606 + "blockRuntimeId" : 6420 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 5607 + "blockRuntimeId" : 6421 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 5608 + "blockRuntimeId" : 6422 }, { "id" : "minecraft:red_flower", - "blockRuntimeId" : 5609 + "blockRuntimeId" : 6423 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 3895 + "blockRuntimeId" : 4450 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 3896 + "blockRuntimeId" : 4451 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 3899 + "blockRuntimeId" : 4454 }, { "id" : "minecraft:double_plant", - "blockRuntimeId" : 3900 + "blockRuntimeId" : 4455 }, { "id" : "minecraft:wither_rose", - "blockRuntimeId" : 6713 + "blockRuntimeId" : 7550 }, { "id" : "minecraft:white_dye" @@ -2040,95 +2188,127 @@ }, { "id" : "minecraft:vine", - "blockRuntimeId" : 6433 + "blockRuntimeId" : 7256 }, { "id" : "minecraft:weeping_vines", - "blockRuntimeId" : 6673 + "blockRuntimeId" : 7510 }, { "id" : "minecraft:twisting_vines", - "blockRuntimeId" : 6361 + "blockRuntimeId" : 7184 }, { "id" : "minecraft:waterlily", - "blockRuntimeId" : 6615 + "blockRuntimeId" : 7438 }, { "id" : "minecraft:deadbush", - "blockRuntimeId" : 3854 + "blockRuntimeId" : 4048 }, { "id" : "minecraft:bamboo", - "blockRuntimeId" : 170 + "blockRuntimeId" : 177 }, { "id" : "minecraft:snow", - "blockRuntimeId" : 5845 + "blockRuntimeId" : 6666 }, { "id" : "minecraft:ice", - "blockRuntimeId" : 4418 + "blockRuntimeId" : 5031 }, { "id" : "minecraft:packed_ice", - "blockRuntimeId" : 4985 + "blockRuntimeId" : 5621 }, { "id" : "minecraft:blue_ice", - "blockRuntimeId" : 664 + "blockRuntimeId" : 671 }, { "id" : "minecraft:snow_layer", - "blockRuntimeId" : 5846 + "blockRuntimeId" : 6667 }, { "id" : "minecraft:pointed_dripstone", - "blockRuntimeId" : 5016 - }, - { - "id" : "minecraft:sculk_sensor", - "blockRuntimeId" : 5755 + "blockRuntimeId" : 5652 }, { "id" : "minecraft:dripstone_block", - "blockRuntimeId" : 3979 + "blockRuntimeId" : 4534 }, { "id" : "minecraft:moss_carpet", - "blockRuntimeId" : 4895 + "blockRuntimeId" : 5531 }, { "id" : "minecraft:moss_block", - "blockRuntimeId" : 4894 + "blockRuntimeId" : 5530 }, { "id" : "minecraft:dirt_with_roots", - "blockRuntimeId" : 3880 + "blockRuntimeId" : 4435 }, { "id" : "minecraft:hanging_roots", - "blockRuntimeId" : 4340 + "blockRuntimeId" : 4953 }, { "id" : "minecraft:big_dripleaf", - "blockRuntimeId" : 321 + "blockRuntimeId" : 328 }, { "id" : "minecraft:small_dripleaf_block", - "blockRuntimeId" : 5812 + "blockRuntimeId" : 6632 }, { "id" : "minecraft:spore_blossom", - "blockRuntimeId" : 5898 + "blockRuntimeId" : 6719 }, { "id" : "minecraft:azalea", - "blockRuntimeId" : 161 + "blockRuntimeId" : 168 }, { "id" : "minecraft:flowering_azalea", - "blockRuntimeId" : 4215 + "blockRuntimeId" : 4764 + }, + { + "id" : "minecraft:glow_lichen", + "blockRuntimeId" : 4897 + }, + { + "id" : "minecraft:amethyst_block", + "blockRuntimeId" : 136 + }, + { + "id" : "minecraft:budding_amethyst", + "blockRuntimeId" : 889 + }, + { + "id" : "minecraft:amethyst_cluster", + "blockRuntimeId" : 137 + }, + { + "id" : "minecraft:large_amethyst_bud", + "blockRuntimeId" : 5272 + }, + { + "id" : "minecraft:medium_amethyst_bud", + "blockRuntimeId" : 5468 + }, + { + "id" : "minecraft:small_amethyst_bud", + "blockRuntimeId" : 6619 + }, + { + "id" : "minecraft:tuff", + "blockRuntimeId" : 7171 + }, + { + "id" : "minecraft:calcite", + "blockRuntimeId" : 913 }, { "id" : "minecraft:chicken" @@ -2159,35 +2339,35 @@ }, { "id" : "minecraft:brown_mushroom", - "blockRuntimeId" : 863 + "blockRuntimeId" : 870 }, { "id" : "minecraft:red_mushroom", - "blockRuntimeId" : 5616 + "blockRuntimeId" : 6430 }, { "id" : "minecraft:crimson_fungus", - "blockRuntimeId" : 3600 + "blockRuntimeId" : 3794 }, { "id" : "minecraft:warped_fungus", - "blockRuntimeId" : 6524 + "blockRuntimeId" : 7347 }, { "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 878 + "blockRuntimeId" : 885 }, { "id" : "minecraft:red_mushroom_block", - "blockRuntimeId" : 5631 + "blockRuntimeId" : 6445 }, { "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 879 + "blockRuntimeId" : 886 }, { "id" : "minecraft:brown_mushroom_block", - "blockRuntimeId" : 864 + "blockRuntimeId" : 871 }, { "id" : "minecraft:egg" @@ -2206,46 +2386,50 @@ }, { "id" : "minecraft:web", - "blockRuntimeId" : 6672 + "blockRuntimeId" : 7509 }, { "id" : "minecraft:spider_eye" }, { "id" : "minecraft:mob_spawner", - "blockRuntimeId" : 4887 + "blockRuntimeId" : 5523 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 4888 + "blockRuntimeId" : 5524 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 4889 + "blockRuntimeId" : 5525 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 4890 + "blockRuntimeId" : 5526 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 4891 + "blockRuntimeId" : 5527 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 4892 + "blockRuntimeId" : 5528 }, { "id" : "minecraft:monster_egg", - "blockRuntimeId" : 4893 + "blockRuntimeId" : 5529 + }, + { + "id" : "minecraft:infested_deepslate", + "blockRuntimeId" : 5032 }, { "id" : "minecraft:dragon_egg", - "blockRuntimeId" : 3977 + "blockRuntimeId" : 4532 }, { "id" : "minecraft:turtle_egg", - "blockRuntimeId" : 6349 + "blockRuntimeId" : 7172 }, { "id" : "minecraft:chicken_spawn_egg" @@ -2406,6 +2590,9 @@ { "id" : "minecraft:goat_spawn_egg" }, + { + "id" : "minecraft:axolotl_spawn_egg" + }, { "id" : "minecraft:ghast_spawn_egg" }, @@ -2444,42 +2631,42 @@ }, { "id" : "minecraft:obsidian", - "blockRuntimeId" : 4964 + "blockRuntimeId" : 5600 }, { "id" : "minecraft:crying_obsidian", - "blockRuntimeId" : 3674 + "blockRuntimeId" : 3868 }, { "id" : "minecraft:bedrock", - "blockRuntimeId" : 227 + "blockRuntimeId" : 234 }, { "id" : "minecraft:soul_sand", - "blockRuntimeId" : 5888 + "blockRuntimeId" : 6709 }, { "id" : "minecraft:netherrack", - "blockRuntimeId" : 4933 + "blockRuntimeId" : 5569 }, { "id" : "minecraft:magma", - "blockRuntimeId" : 4837 + "blockRuntimeId" : 5467 }, { "id" : "minecraft:nether_wart" }, { "id" : "minecraft:end_stone", - "blockRuntimeId" : 4145 + "blockRuntimeId" : 4694 }, { "id" : "minecraft:chorus_flower", - "blockRuntimeId" : 1075 + "blockRuntimeId" : 1092 }, { "id" : "minecraft:chorus_plant", - "blockRuntimeId" : 1081 + "blockRuntimeId" : 1098 }, { "id" : "minecraft:chorus_fruit" @@ -2489,51 +2676,51 @@ }, { "id" : "minecraft:sponge", - "blockRuntimeId" : 5896 + "blockRuntimeId" : 6717 }, { "id" : "minecraft:sponge", - "blockRuntimeId" : 5897 + "blockRuntimeId" : 6718 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3456 + "blockRuntimeId" : 3648 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3457 + "blockRuntimeId" : 3649 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3458 + "blockRuntimeId" : 3650 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3459 + "blockRuntimeId" : 3651 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3460 + "blockRuntimeId" : 3652 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3461 + "blockRuntimeId" : 3653 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3462 + "blockRuntimeId" : 3654 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3463 + "blockRuntimeId" : 3655 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3464 + "blockRuntimeId" : 3656 }, { "id" : "minecraft:coral_block", - "blockRuntimeId" : 3465 + "blockRuntimeId" : 3657 }, { "id" : "minecraft:leather_helmet" @@ -2946,9 +3133,6 @@ { "id" : "minecraft:saddle" }, - { - "id" : "minecraft:goat_horn" - }, { "id" : "minecraft:leather_horse_armor" }, @@ -3492,6 +3676,9 @@ "id" : "minecraft:lingering_potion", "damage" : 42 }, + { + "id" : "minecraft:spyglass" + }, { "id" : "minecraft:stick" }, @@ -3560,43 +3747,43 @@ }, { "id" : "minecraft:torch", - "blockRuntimeId" : 6289 + "blockRuntimeId" : 7111 }, { "id" : "minecraft:soul_torch", - "blockRuntimeId" : 5890 + "blockRuntimeId" : 6711 }, { "id" : "minecraft:sea_pickle", - "blockRuntimeId" : 5757 + "blockRuntimeId" : 6571 }, { "id" : "minecraft:lantern", - "blockRuntimeId" : 4652 + "blockRuntimeId" : 5268 }, { "id" : "minecraft:soul_lantern", - "blockRuntimeId" : 5886 + "blockRuntimeId" : 6707 }, { "id" : "minecraft:crafting_table", - "blockRuntimeId" : 3536 + "blockRuntimeId" : 3730 }, { "id" : "minecraft:cartography_table", - "blockRuntimeId" : 938 + "blockRuntimeId" : 947 }, { "id" : "minecraft:fletching_table", - "blockRuntimeId" : 4212 + "blockRuntimeId" : 4761 }, { "id" : "minecraft:smithing_table", - "blockRuntimeId" : 5813 + "blockRuntimeId" : 6633 }, { "id" : "minecraft:beehive", - "blockRuntimeId" : 253 + "blockRuntimeId" : 260 }, { "id" : "minecraft:campfire" @@ -3606,152 +3793,152 @@ }, { "id" : "minecraft:furnace", - "blockRuntimeId" : 4264 + "blockRuntimeId" : 4813 }, { "id" : "minecraft:blast_furnace", - "blockRuntimeId" : 652 + "blockRuntimeId" : 659 }, { "id" : "minecraft:smoker", - "blockRuntimeId" : 5814 + "blockRuntimeId" : 6634 }, { "id" : "minecraft:respawn_anchor", - "blockRuntimeId" : 5708 + "blockRuntimeId" : 6522 }, { "id" : "minecraft:brewing_stand" }, { "id" : "minecraft:anvil", - "blockRuntimeId" : 145 + "blockRuntimeId" : 152 }, { "id" : "minecraft:anvil", - "blockRuntimeId" : 149 + "blockRuntimeId" : 156 }, { "id" : "minecraft:anvil", - "blockRuntimeId" : 153 + "blockRuntimeId" : 160 }, { "id" : "minecraft:grindstone", - "blockRuntimeId" : 4324 + "blockRuntimeId" : 4937 }, { "id" : "minecraft:enchanting_table", - "blockRuntimeId" : 4119 + "blockRuntimeId" : 4668 }, { "id" : "minecraft:bookshelf", - "blockRuntimeId" : 677 + "blockRuntimeId" : 684 }, { "id" : "minecraft:lectern", - "blockRuntimeId" : 4710 + "blockRuntimeId" : 5339 }, { "id" : "minecraft:cauldron" }, { "id" : "minecraft:composter", - "blockRuntimeId" : 3402 + "blockRuntimeId" : 3594 }, { "id" : "minecraft:chest", - "blockRuntimeId" : 1067 + "blockRuntimeId" : 1083 }, { "id" : "minecraft:trapped_chest", - "blockRuntimeId" : 6311 + "blockRuntimeId" : 7133 }, { "id" : "minecraft:ender_chest", - "blockRuntimeId" : 4146 + "blockRuntimeId" : 4695 }, { "id" : "minecraft:barrel", - "blockRuntimeId" : 194 + "blockRuntimeId" : 201 }, { "id" : "minecraft:undyed_shulker_box", - "blockRuntimeId" : 6393 + "blockRuntimeId" : 7216 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 5770 + "blockRuntimeId" : 6584 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 5778 + "blockRuntimeId" : 6592 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 5777 + "blockRuntimeId" : 6591 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 5785 + "blockRuntimeId" : 6599 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 5782 + "blockRuntimeId" : 6596 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 5784 + "blockRuntimeId" : 6598 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 5771 + "blockRuntimeId" : 6585 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 5774 + "blockRuntimeId" : 6588 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 5775 + "blockRuntimeId" : 6589 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 5783 + "blockRuntimeId" : 6597 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 5779 + "blockRuntimeId" : 6593 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 5773 + "blockRuntimeId" : 6587 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 5781 + "blockRuntimeId" : 6595 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 5780 + "blockRuntimeId" : 6594 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 5772 + "blockRuntimeId" : 6586 }, { "id" : "minecraft:shulker_box", - "blockRuntimeId" : 5776 + "blockRuntimeId" : 6590 }, { "id" : "minecraft:armor_stand" }, { "id" : "minecraft:noteblock", - "blockRuntimeId" : 4943 + "blockRuntimeId" : 5579 }, { "id" : "minecraft:jukebox", - "blockRuntimeId" : 4497 + "blockRuntimeId" : 5113 }, { "id" : "minecraft:music_disc_13" @@ -3797,15 +3984,15 @@ }, { "id" : "minecraft:glowstone", - "blockRuntimeId" : 4286 + "blockRuntimeId" : 4899 }, { "id" : "minecraft:redstone_lamp", - "blockRuntimeId" : 5655 + "blockRuntimeId" : 6469 }, { "id" : "minecraft:sealantern", - "blockRuntimeId" : 5768 + "blockRuntimeId" : 6582 }, { "id" : "minecraft:oak_sign" @@ -3873,6 +4060,9 @@ { "id" : "minecraft:powder_snow_bucket" }, + { + "id" : "minecraft:axolotl_bucket" + }, { "id" : "minecraft:glow_frame" }, @@ -3901,23 +4091,23 @@ }, { "id" : "minecraft:beacon", - "blockRuntimeId" : 210 + "blockRuntimeId" : 217 }, { "id" : "minecraft:bell", - "blockRuntimeId" : 285 + "blockRuntimeId" : 292 }, { "id" : "minecraft:conduit", - "blockRuntimeId" : 3443 + "blockRuntimeId" : 3635 }, { "id" : "minecraft:stonecutter_block", - "blockRuntimeId" : 6228 + "blockRuntimeId" : 7049 }, { "id" : "minecraft:end_portal_frame", - "blockRuntimeId" : 4131 + "blockRuntimeId" : 4680 }, { "id" : "minecraft:coal" @@ -3931,6 +4121,15 @@ { "id" : "minecraft:iron_nugget" }, + { + "id" : "minecraft:raw_iron" + }, + { + "id" : "minecraft:raw_gold" + }, + { + "id" : "minecraft:raw_copper" + }, { "id" : "minecraft:copper_ingot" }, @@ -3967,6 +4166,9 @@ { "id" : "minecraft:prismarine_shard" }, + { + "id" : "minecraft:amethyst_shard" + }, { "id" : "minecraft:prismarine_crystals" }, @@ -4041,11 +4243,11 @@ }, { "id" : "minecraft:end_rod", - "blockRuntimeId" : 4139 + "blockRuntimeId" : 4688 }, { "id" : "minecraft:lightning_rod", - "blockRuntimeId" : 4772 + "blockRuntimeId" : 5401 }, { "id" : "minecraft:end_crystal" @@ -4507,15 +4709,15 @@ }, { "id" : "minecraft:rail", - "blockRuntimeId" : 5589 + "blockRuntimeId" : 6400 }, { "id" : "minecraft:golden_rail", - "blockRuntimeId" : 4289 + "blockRuntimeId" : 4902 }, { "id" : "minecraft:detector_rail", - "blockRuntimeId" : 3856 + "blockRuntimeId" : 4411 }, { "id" : "minecraft:activator_rail", @@ -4538,74 +4740,74 @@ }, { "id" : "minecraft:redstone_block", - "blockRuntimeId" : 5654 + "blockRuntimeId" : 6468 }, { "id" : "minecraft:redstone_torch", - "blockRuntimeId" : 5657 + "blockRuntimeId" : 6471 }, { "id" : "minecraft:lever", - "blockRuntimeId" : 4718 + "blockRuntimeId" : 5347 }, { "id" : "minecraft:wooden_button", - "blockRuntimeId" : 6750 + "blockRuntimeId" : 7587 }, { "id" : "minecraft:spruce_button", - "blockRuntimeId" : 5899 + "blockRuntimeId" : 6720 }, { "id" : "minecraft:birch_button", - "blockRuntimeId" : 349 + "blockRuntimeId" : 356 }, { "id" : "minecraft:jungle_button", - "blockRuntimeId" : 4498 + "blockRuntimeId" : 5114 }, { "id" : "minecraft:acacia_button" }, { "id" : "minecraft:dark_oak_button", - "blockRuntimeId" : 3692 + "blockRuntimeId" : 3886 }, { "id" : "minecraft:stone_button", - "blockRuntimeId" : 6128 + "blockRuntimeId" : 6949 }, { "id" : "minecraft:crimson_button", - "blockRuntimeId" : 3537 + "blockRuntimeId" : 3731 }, { "id" : "minecraft:warped_button", - "blockRuntimeId" : 6461 + "blockRuntimeId" : 7284 }, { "id" : "minecraft:polished_blackstone_button", - "blockRuntimeId" : 5208 + "blockRuntimeId" : 5844 }, { "id" : "minecraft:tripwire_hook", - "blockRuntimeId" : 6333 + "blockRuntimeId" : 7155 }, { "id" : "minecraft:wooden_pressure_plate", - "blockRuntimeId" : 6794 + "blockRuntimeId" : 7631 }, { "id" : "minecraft:spruce_pressure_plate", - "blockRuntimeId" : 5959 + "blockRuntimeId" : 6780 }, { "id" : "minecraft:birch_pressure_plate", - "blockRuntimeId" : 409 + "blockRuntimeId" : 416 }, { "id" : "minecraft:jungle_pressure_plate", - "blockRuntimeId" : 4558 + "blockRuntimeId" : 5174 }, { "id" : "minecraft:acacia_pressure_plate", @@ -4613,39 +4815,39 @@ }, { "id" : "minecraft:dark_oak_pressure_plate", - "blockRuntimeId" : 3752 + "blockRuntimeId" : 3946 }, { "id" : "minecraft:crimson_pressure_plate", - "blockRuntimeId" : 3606 + "blockRuntimeId" : 3800 }, { "id" : "minecraft:warped_pressure_plate", - "blockRuntimeId" : 6530 + "blockRuntimeId" : 7353 }, { "id" : "minecraft:stone_pressure_plate", - "blockRuntimeId" : 6140 + "blockRuntimeId" : 6961 }, { "id" : "minecraft:light_weighted_pressure_plate", - "blockRuntimeId" : 4756 + "blockRuntimeId" : 5385 }, { "id" : "minecraft:heavy_weighted_pressure_plate", - "blockRuntimeId" : 4388 + "blockRuntimeId" : 5001 }, { "id" : "minecraft:polished_blackstone_pressure_plate", - "blockRuntimeId" : 5222 + "blockRuntimeId" : 5858 }, { "id" : "minecraft:observer", - "blockRuntimeId" : 4952 + "blockRuntimeId" : 5588 }, { "id" : "minecraft:daylight_detector", - "blockRuntimeId" : 3822 + "blockRuntimeId" : 4016 }, { "id" : "minecraft:repeater" @@ -4658,30 +4860,30 @@ }, { "id" : "minecraft:dropper", - "blockRuntimeId" : 3989 + "blockRuntimeId" : 4538 }, { "id" : "minecraft:dispenser", - "blockRuntimeId" : 3884 + "blockRuntimeId" : 4439 }, { "id" : "minecraft:piston", - "blockRuntimeId" : 4993 + "blockRuntimeId" : 5629 }, { "id" : "minecraft:sticky_piston", - "blockRuntimeId" : 6102 + "blockRuntimeId" : 6923 }, { "id" : "minecraft:tnt", - "blockRuntimeId" : 6285 + "blockRuntimeId" : 7107 }, { "id" : "minecraft:name_tag" }, { "id" : "minecraft:loom", - "blockRuntimeId" : 4827 + "blockRuntimeId" : 5457 }, { "id" : "minecraft:banner" @@ -4924,13 +5126,10 @@ }, { "id" : "minecraft:target", - "blockRuntimeId" : 6284 + "blockRuntimeId" : 7105 }, { "id" : "minecraft:lodestone_compass" - }, - { - "id" : "minecraft:item.glow_frame" } ] } \ No newline at end of file diff --git a/connector/src/main/resources/bedrock/entity_identifiers.dat b/connector/src/main/resources/bedrock/entity_identifiers.dat index c9477ba85..b9da310f5 100644 Binary files a/connector/src/main/resources/bedrock/entity_identifiers.dat and b/connector/src/main/resources/bedrock/entity_identifiers.dat differ diff --git a/connector/src/main/resources/bedrock/runtime_item_states.json b/connector/src/main/resources/bedrock/runtime_item_states.json index 6171ef9bf..d52495ed4 100644 --- a/connector/src/main/resources/bedrock/runtime_item_states.json +++ b/connector/src/main/resources/bedrock/runtime_item_states.json @@ -1,7 +1,7 @@ [ { "name" : "minecraft:acacia_boat", - "id" : 380 + "id" : 379 }, { "name" : "minecraft:acacia_button", @@ -9,7 +9,7 @@ }, { "name" : "minecraft:acacia_door", - "id" : 552 + "id" : 556 }, { "name" : "minecraft:acacia_fence_gate", @@ -21,7 +21,7 @@ }, { "name" : "minecraft:acacia_sign", - "id" : 575 + "id" : 579 }, { "name" : "minecraft:acacia_stairs", @@ -45,7 +45,7 @@ }, { "name" : "minecraft:agent_spawn_egg", - "id" : 488 + "id" : 487 }, { "name" : "minecraft:air", @@ -55,6 +55,18 @@ "name" : "minecraft:allow", "id" : 210 }, + { + "name" : "minecraft:amethyst_block", + "id" : -327 + }, + { + "name" : "minecraft:amethyst_cluster", + "id" : -329 + }, + { + "name" : "minecraft:amethyst_shard", + "id" : 623 + }, { "name" : "minecraft:ancient_debris", "id" : -271 @@ -73,12 +85,20 @@ }, { "name" : "minecraft:armor_stand", - "id" : 548 + "id" : 552 }, { "name" : "minecraft:arrow", "id" : 301 }, + { + "name" : "minecraft:axolotl_bucket", + "id" : 369 + }, + { + "name" : "minecraft:axolotl_spawn_egg", + "id" : 500 + }, { "name" : "minecraft:azalea", "id" : -337 @@ -97,7 +117,7 @@ }, { "name" : "minecraft:balloon", - "id" : 593 + "id" : 597 }, { "name" : "minecraft:bamboo", @@ -109,11 +129,11 @@ }, { "name" : "minecraft:banner", - "id" : 563 + "id" : 567 }, { "name" : "minecraft:banner_pattern", - "id" : 621 + "id" : 627 }, { "name" : "minecraft:barrel", @@ -129,7 +149,7 @@ }, { "name" : "minecraft:bat_spawn_egg", - "id" : 454 + "id" : 453 }, { "name" : "minecraft:beacon", @@ -137,7 +157,7 @@ }, { "name" : "minecraft:bed", - "id" : 419 + "id" : 418 }, { "name" : "minecraft:bedrock", @@ -149,7 +169,7 @@ }, { "name" : "minecraft:bee_spawn_egg", - "id" : 495 + "id" : 494 }, { "name" : "minecraft:beef", @@ -181,7 +201,7 @@ }, { "name" : "minecraft:birch_boat", - "id" : 377 + "id" : 376 }, { "name" : "minecraft:birch_button", @@ -189,7 +209,7 @@ }, { "name" : "minecraft:birch_door", - "id" : 550 + "id" : 554 }, { "name" : "minecraft:birch_fence_gate", @@ -201,7 +221,7 @@ }, { "name" : "minecraft:birch_sign", - "id" : 573 + "id" : 577 }, { "name" : "minecraft:birch_stairs", @@ -221,7 +241,7 @@ }, { "name" : "minecraft:black_dye", - "id" : 396 + "id" : 395 }, { "name" : "minecraft:black_glazed_terracotta", @@ -253,23 +273,23 @@ }, { "name" : "minecraft:blaze_powder", - "id" : 430 + "id" : 429 }, { "name" : "minecraft:blaze_rod", - "id" : 424 + "id" : 423 }, { "name" : "minecraft:blaze_spawn_egg", - "id" : 457 + "id" : 456 }, { "name" : "minecraft:bleach", - "id" : 591 + "id" : 595 }, { "name" : "minecraft:blue_dye", - "id" : 400 + "id" : 399 }, { "name" : "minecraft:blue_glazed_terracotta", @@ -281,11 +301,11 @@ }, { "name" : "minecraft:boat", - "id" : 619 + "id" : 625 }, { "name" : "minecraft:bone", - "id" : 416 + "id" : 415 }, { "name" : "minecraft:bone_block", @@ -293,11 +313,11 @@ }, { "name" : "minecraft:bone_meal", - "id" : 412 + "id" : 411 }, { "name" : "minecraft:book", - "id" : 388 + "id" : 387 }, { "name" : "minecraft:bookshelf", @@ -309,7 +329,7 @@ }, { "name" : "minecraft:bordure_indented_banner_pattern", - "id" : 582 + "id" : 586 }, { "name" : "minecraft:bow", @@ -325,7 +345,7 @@ }, { "name" : "minecraft:brewing_stand", - "id" : 432 + "id" : 431 }, { "name" : "minecraft:brewingstandblock", @@ -333,7 +353,7 @@ }, { "name" : "minecraft:brick", - "id" : 384 + "id" : 383 }, { "name" : "minecraft:brick_block", @@ -345,7 +365,7 @@ }, { "name" : "minecraft:brown_dye", - "id" : 399 + "id" : 398 }, { "name" : "minecraft:brown_glazed_terracotta", @@ -367,21 +387,29 @@ "name" : "minecraft:bucket", "id" : 360 }, + { + "name" : "minecraft:budding_amethyst", + "id" : -328 + }, { "name" : "minecraft:cactus", "id" : 81 }, { "name" : "minecraft:cake", - "id" : 418 + "id" : 417 + }, + { + "name" : "minecraft:calcite", + "id" : -326 }, { "name" : "minecraft:camera", - "id" : 588 + "id" : 592 }, { "name" : "minecraft:campfire", - "id" : 584 + "id" : 588 }, { "name" : "minecraft:carpet", @@ -393,7 +421,7 @@ }, { "name" : "minecraft:carrot_on_a_stick", - "id" : 513 + "id" : 517 }, { "name" : "minecraft:carrots", @@ -409,15 +437,15 @@ }, { "name" : "minecraft:cat_spawn_egg", - "id" : 489 + "id" : 488 }, { "name" : "minecraft:cauldron", - "id" : 433 + "id" : 432 }, { "name" : "minecraft:cave_spider_spawn_egg", - "id" : 458 + "id" : 457 }, { "name" : "minecraft:cave_vines", @@ -433,7 +461,7 @@ }, { "name" : "minecraft:chain", - "id" : 613 + "id" : 617 }, { "name" : "minecraft:chain_command_block", @@ -473,7 +501,7 @@ }, { "name" : "minecraft:chest_minecart", - "id" : 390 + "id" : 389 }, { "name" : "minecraft:chicken", @@ -481,7 +509,11 @@ }, { "name" : "minecraft:chicken_spawn_egg", - "id" : 436 + "id" : 435 + }, + { + "name" : "minecraft:chiseled_deepslate", + "id" : -395 }, { "name" : "minecraft:chiseled_nether_bricks", @@ -497,7 +529,7 @@ }, { "name" : "minecraft:chorus_fruit", - "id" : 554 + "id" : 558 }, { "name" : "minecraft:chorus_plant", @@ -509,11 +541,11 @@ }, { "name" : "minecraft:clay_ball", - "id" : 385 + "id" : 384 }, { "name" : "minecraft:clock", - "id" : 394 + "id" : 393 }, { "name" : "minecraft:coal", @@ -527,6 +559,26 @@ "name" : "minecraft:coal_ore", "id" : 16 }, + { + "name" : "minecraft:cobbled_deepslate", + "id" : -379 + }, + { + "name" : "minecraft:cobbled_deepslate_double_slab", + "id" : -396 + }, + { + "name" : "minecraft:cobbled_deepslate_slab", + "id" : -380 + }, + { + "name" : "minecraft:cobbled_deepslate_stairs", + "id" : -381 + }, + { + "name" : "minecraft:cobbled_deepslate_wall", + "id" : -382 + }, { "name" : "minecraft:cobblestone", "id" : 4 @@ -541,7 +593,7 @@ }, { "name" : "minecraft:cocoa_beans", - "id" : 413 + "id" : 412 }, { "name" : "minecraft:cod", @@ -553,7 +605,7 @@ }, { "name" : "minecraft:cod_spawn_egg", - "id" : 481 + "id" : 480 }, { "name" : "minecraft:colored_torch_bp", @@ -569,15 +621,15 @@ }, { "name" : "minecraft:command_block_minecart", - "id" : 559 + "id" : 563 }, { "name" : "minecraft:comparator", - "id" : 518 + "id" : 522 }, { "name" : "minecraft:compass", - "id" : 392 + "id" : 391 }, { "name" : "minecraft:composter", @@ -585,7 +637,7 @@ }, { "name" : "minecraft:compound", - "id" : 589 + "id" : 593 }, { "name" : "minecraft:concrete", @@ -613,7 +665,7 @@ }, { "name" : "minecraft:cooked_mutton", - "id" : 547 + "id" : 551 }, { "name" : "minecraft:cooked_porkchop", @@ -637,7 +689,7 @@ }, { "name" : "minecraft:copper_ingot", - "id" : 502 + "id" : 504 }, { "name" : "minecraft:copper_ore", @@ -673,7 +725,15 @@ }, { "name" : "minecraft:cow_spawn_egg", - "id" : 437 + "id" : 436 + }, + { + "name" : "minecraft:cracked_deepslate_bricks", + "id" : -410 + }, + { + "name" : "minecraft:cracked_deepslate_tiles", + "id" : -409 }, { "name" : "minecraft:cracked_nether_bricks", @@ -689,11 +749,11 @@ }, { "name" : "minecraft:creeper_banner_pattern", - "id" : 578 + "id" : 582 }, { "name" : "minecraft:creeper_spawn_egg", - "id" : 442 + "id" : 441 }, { "name" : "minecraft:crimson_button", @@ -701,7 +761,7 @@ }, { "name" : "minecraft:crimson_door", - "id" : 610 + "id" : 614 }, { "name" : "minecraft:crimson_double_slab", @@ -741,7 +801,7 @@ }, { "name" : "minecraft:crimson_sign", - "id" : 608 + "id" : 612 }, { "name" : "minecraft:crimson_slab", @@ -769,7 +829,7 @@ }, { "name" : "minecraft:crossbow", - "id" : 571 + "id" : 575 }, { "name" : "minecraft:crying_obsidian", @@ -789,7 +849,7 @@ }, { "name" : "minecraft:cyan_dye", - "id" : 402 + "id" : 401 }, { "name" : "minecraft:cyan_glazed_terracotta", @@ -797,7 +857,7 @@ }, { "name" : "minecraft:dark_oak_boat", - "id" : 381 + "id" : 380 }, { "name" : "minecraft:dark_oak_button", @@ -805,7 +865,7 @@ }, { "name" : "minecraft:dark_oak_door", - "id" : 553 + "id" : 557 }, { "name" : "minecraft:dark_oak_fence_gate", @@ -817,7 +877,7 @@ }, { "name" : "minecraft:dark_oak_sign", - "id" : 576 + "id" : 580 }, { "name" : "minecraft:dark_oak_stairs", @@ -851,6 +911,82 @@ "name" : "minecraft:deadbush", "id" : 32 }, + { + "name" : "minecraft:deepslate", + "id" : -378 + }, + { + "name" : "minecraft:deepslate_brick_double_slab", + "id" : -399 + }, + { + "name" : "minecraft:deepslate_brick_slab", + "id" : -392 + }, + { + "name" : "minecraft:deepslate_brick_stairs", + "id" : -393 + }, + { + "name" : "minecraft:deepslate_brick_wall", + "id" : -394 + }, + { + "name" : "minecraft:deepslate_bricks", + "id" : -391 + }, + { + "name" : "minecraft:deepslate_coal_ore", + "id" : -406 + }, + { + "name" : "minecraft:deepslate_copper_ore", + "id" : -408 + }, + { + "name" : "minecraft:deepslate_diamond_ore", + "id" : -405 + }, + { + "name" : "minecraft:deepslate_emerald_ore", + "id" : -407 + }, + { + "name" : "minecraft:deepslate_gold_ore", + "id" : -402 + }, + { + "name" : "minecraft:deepslate_iron_ore", + "id" : -401 + }, + { + "name" : "minecraft:deepslate_lapis_ore", + "id" : -400 + }, + { + "name" : "minecraft:deepslate_redstone_ore", + "id" : -403 + }, + { + "name" : "minecraft:deepslate_tile_double_slab", + "id" : -398 + }, + { + "name" : "minecraft:deepslate_tile_slab", + "id" : -388 + }, + { + "name" : "minecraft:deepslate_tile_stairs", + "id" : -389 + }, + { + "name" : "minecraft:deepslate_tile_wall", + "id" : -390 + }, + { + "name" : "minecraft:deepslate_tiles", + "id" : -387 + }, { "name" : "minecraft:deny", "id" : 211 @@ -889,7 +1025,7 @@ }, { "name" : "minecraft:diamond_horse_armor", - "id" : 529 + "id" : 533 }, { "name" : "minecraft:diamond_leggings", @@ -929,11 +1065,11 @@ }, { "name" : "minecraft:dolphin_spawn_egg", - "id" : 485 + "id" : 484 }, { "name" : "minecraft:donkey_spawn_egg", - "id" : 466 + "id" : 465 }, { "name" : "minecraft:double_cut_copper_slab", @@ -965,7 +1101,7 @@ }, { "name" : "minecraft:dragon_breath", - "id" : 556 + "id" : 560 }, { "name" : "minecraft:dragon_egg", @@ -989,19 +1125,19 @@ }, { "name" : "minecraft:drowned_spawn_egg", - "id" : 484 + "id" : 483 }, { "name" : "minecraft:dye", - "id" : 620 + "id" : 626 }, { "name" : "minecraft:egg", - "id" : 391 + "id" : 390 }, { "name" : "minecraft:elder_guardian_spawn_egg", - "id" : 472 + "id" : 471 }, { "name" : "minecraft:element_0", @@ -1481,11 +1617,11 @@ }, { "name" : "minecraft:elytra", - "id" : 560 + "id" : 564 }, { "name" : "minecraft:emerald", - "id" : 508 + "id" : 512 }, { "name" : "minecraft:emerald_block", @@ -1497,11 +1633,11 @@ }, { "name" : "minecraft:empty_map", - "id" : 511 + "id" : 515 }, { "name" : "minecraft:enchanted_book", - "id" : 517 + "id" : 521 }, { "name" : "minecraft:enchanted_golden_apple", @@ -1521,7 +1657,7 @@ }, { "name" : "minecraft:end_crystal", - "id" : 623 + "id" : 629 }, { "name" : "minecraft:end_gateway", @@ -1549,27 +1685,27 @@ }, { "name" : "minecraft:ender_eye", - "id" : 434 + "id" : 433 }, { "name" : "minecraft:ender_pearl", - "id" : 423 + "id" : 422 }, { "name" : "minecraft:enderman_spawn_egg", - "id" : 443 + "id" : 442 }, { "name" : "minecraft:endermite_spawn_egg", - "id" : 461 + "id" : 460 }, { "name" : "minecraft:evoker_spawn_egg", - "id" : 476 + "id" : 475 }, { "name" : "minecraft:experience_bottle", - "id" : 504 + "id" : 508 }, { "name" : "minecraft:exposed_copper", @@ -1609,15 +1745,15 @@ }, { "name" : "minecraft:fermented_spider_eye", - "id" : 429 + "id" : 428 }, { "name" : "minecraft:field_masoned_banner_pattern", - "id" : 581 + "id" : 585 }, { "name" : "minecraft:filled_map", - "id" : 421 + "id" : 420 }, { "name" : "minecraft:fire", @@ -1625,19 +1761,19 @@ }, { "name" : "minecraft:fire_charge", - "id" : 505 + "id" : 509 }, { "name" : "minecraft:firework_rocket", - "id" : 515 + "id" : 519 }, { "name" : "minecraft:firework_star", - "id" : 516 + "id" : 520 }, { "name" : "minecraft:fishing_rod", - "id" : 393 + "id" : 392 }, { "name" : "minecraft:fletching_table", @@ -1653,11 +1789,11 @@ }, { "name" : "minecraft:flower_banner_pattern", - "id" : 577 + "id" : 581 }, { "name" : "minecraft:flower_pot", - "id" : 510 + "id" : 514 }, { "name" : "minecraft:flowering_azalea", @@ -1673,11 +1809,11 @@ }, { "name" : "minecraft:fox_spawn_egg", - "id" : 491 + "id" : 490 }, { "name" : "minecraft:frame", - "id" : 509 + "id" : 513 }, { "name" : "minecraft:frosted_ice", @@ -1689,11 +1825,11 @@ }, { "name" : "minecraft:ghast_spawn_egg", - "id" : 455 + "id" : 454 }, { "name" : "minecraft:ghast_tear", - "id" : 425 + "id" : 424 }, { "name" : "minecraft:gilded_blackstone", @@ -1705,7 +1841,7 @@ }, { "name" : "minecraft:glass_bottle", - "id" : 428 + "id" : 427 }, { "name" : "minecraft:glass_pane", @@ -1713,23 +1849,27 @@ }, { "name" : "minecraft:glistering_melon_slice", - "id" : 435 + "id" : 434 }, { "name" : "minecraft:glow_berries", - "id" : 369 + "id" : 630 }, { "name" : "minecraft:glow_frame", - "id" : 618 + "id" : 621 }, { "name" : "minecraft:glow_ink_sac", - "id" : 370 + "id" : 503 + }, + { + "name" : "minecraft:glow_lichen", + "id" : -411 }, { "name" : "minecraft:glow_squid_spawn_egg", - "id" : 503 + "id" : 502 }, { "name" : "minecraft:glow_stick", @@ -1745,11 +1885,11 @@ }, { "name" : "minecraft:glowstone_dust", - "id" : 395 + "id" : 394 }, { "name" : "minecraft:goat_horn", - "id" : 617 + "id" : 622 }, { "name" : "minecraft:goat_spawn_egg", @@ -1765,7 +1905,7 @@ }, { "name" : "minecraft:gold_nugget", - "id" : 426 + "id" : 425 }, { "name" : "minecraft:gold_ore", @@ -1801,7 +1941,7 @@ }, { "name" : "minecraft:golden_horse_armor", - "id" : 528 + "id" : 532 }, { "name" : "minecraft:golden_leggings", @@ -1841,7 +1981,7 @@ }, { "name" : "minecraft:gray_dye", - "id" : 404 + "id" : 403 }, { "name" : "minecraft:gray_glazed_terracotta", @@ -1849,7 +1989,7 @@ }, { "name" : "minecraft:green_dye", - "id" : 398 + "id" : 397 }, { "name" : "minecraft:green_glazed_terracotta", @@ -1861,7 +2001,7 @@ }, { "name" : "minecraft:guardian_spawn_egg", - "id" : 462 + "id" : 461 }, { "name" : "minecraft:gunpowder", @@ -1897,7 +2037,7 @@ }, { "name" : "minecraft:heart_of_the_sea", - "id" : 567 + "id" : 571 }, { "name" : "minecraft:heavy_weighted_pressure_plate", @@ -1905,7 +2045,7 @@ }, { "name" : "minecraft:hoglin_spawn_egg", - "id" : 497 + "id" : 496 }, { "name" : "minecraft:honey_block", @@ -1913,11 +2053,11 @@ }, { "name" : "minecraft:honey_bottle", - "id" : 587 + "id" : 591 }, { "name" : "minecraft:honeycomb", - "id" : 586 + "id" : 590 }, { "name" : "minecraft:honeycomb_block", @@ -1925,19 +2065,19 @@ }, { "name" : "minecraft:hopper", - "id" : 523 + "id" : 527 }, { "name" : "minecraft:hopper_minecart", - "id" : 522 + "id" : 526 }, { "name" : "minecraft:horse_spawn_egg", - "id" : 459 + "id" : 458 }, { "name" : "minecraft:husk_spawn_egg", - "id" : 464 + "id" : 463 }, { "name" : "minecraft:ice", @@ -1945,7 +2085,11 @@ }, { "name" : "minecraft:ice_bomb", - "id" : 590 + "id" : 594 + }, + { + "name" : "minecraft:infested_deepslate", + "id" : -454 }, { "name" : "minecraft:info_update", @@ -1957,7 +2101,7 @@ }, { "name" : "minecraft:ink_sac", - "id" : 414 + "id" : 413 }, { "name" : "minecraft:invisiblebedrock", @@ -1985,7 +2129,7 @@ }, { "name" : "minecraft:iron_door", - "id" : 373 + "id" : 372 }, { "name" : "minecraft:iron_helmet", @@ -1997,7 +2141,7 @@ }, { "name" : "minecraft:iron_horse_armor", - "id" : 527 + "id" : 531 }, { "name" : "minecraft:iron_ingot", @@ -2009,7 +2153,7 @@ }, { "name" : "minecraft:iron_nugget", - "id" : 565 + "id" : 569 }, { "name" : "minecraft:iron_ore", @@ -2149,7 +2293,7 @@ }, { "name" : "minecraft:jungle_boat", - "id" : 378 + "id" : 377 }, { "name" : "minecraft:jungle_button", @@ -2157,7 +2301,7 @@ }, { "name" : "minecraft:jungle_door", - "id" : 551 + "id" : 555 }, { "name" : "minecraft:jungle_fence_gate", @@ -2169,7 +2313,7 @@ }, { "name" : "minecraft:jungle_sign", - "id" : 574 + "id" : 578 }, { "name" : "minecraft:jungle_stairs", @@ -2189,7 +2333,7 @@ }, { "name" : "minecraft:kelp", - "id" : 383 + "id" : 382 }, { "name" : "minecraft:ladder", @@ -2205,12 +2349,16 @@ }, { "name" : "minecraft:lapis_lazuli", - "id" : 415 + "id" : 414 }, { "name" : "minecraft:lapis_ore", "id" : 21 }, + { + "name" : "minecraft:large_amethyst_bud", + "id" : -330 + }, { "name" : "minecraft:lava", "id" : 11 @@ -2225,11 +2373,11 @@ }, { "name" : "minecraft:lead", - "id" : 543 + "id" : 547 }, { "name" : "minecraft:leather", - "id" : 382 + "id" : 381 }, { "name" : "minecraft:leather_boots", @@ -2245,7 +2393,7 @@ }, { "name" : "minecraft:leather_horse_armor", - "id" : 526 + "id" : 530 }, { "name" : "minecraft:leather_leggings", @@ -2273,7 +2421,7 @@ }, { "name" : "minecraft:light_blue_dye", - "id" : 408 + "id" : 407 }, { "name" : "minecraft:light_blue_glazed_terracotta", @@ -2281,7 +2429,7 @@ }, { "name" : "minecraft:light_gray_dye", - "id" : 403 + "id" : 402 }, { "name" : "minecraft:light_weighted_pressure_plate", @@ -2293,7 +2441,7 @@ }, { "name" : "minecraft:lime_dye", - "id" : 406 + "id" : 405 }, { "name" : "minecraft:lime_glazed_terracotta", @@ -2301,12 +2449,16 @@ }, { "name" : "minecraft:lingering_potion", - "id" : 558 + "id" : 562 }, { "name" : "minecraft:lit_blast_furnace", "id" : -214 }, + { + "name" : "minecraft:lit_deepslate_redstone_ore", + "id" : -404 + }, { "name" : "minecraft:lit_furnace", "id" : 62 @@ -2329,7 +2481,7 @@ }, { "name" : "minecraft:llama_spawn_egg", - "id" : 474 + "id" : 473 }, { "name" : "minecraft:lodestone", @@ -2337,7 +2489,7 @@ }, { "name" : "minecraft:lodestone_compass", - "id" : 596 + "id" : 600 }, { "name" : "minecraft:log", @@ -2353,7 +2505,7 @@ }, { "name" : "minecraft:magenta_dye", - "id" : 409 + "id" : 408 }, { "name" : "minecraft:magenta_glazed_terracotta", @@ -2365,15 +2517,19 @@ }, { "name" : "minecraft:magma_cream", - "id" : 431 + "id" : 430 }, { "name" : "minecraft:magma_cube_spawn_egg", - "id" : 456 + "id" : 455 }, { "name" : "minecraft:medicine", - "id" : 594 + "id" : 598 + }, + { + "name" : "minecraft:medium_amethyst_bud", + "id" : -331 }, { "name" : "minecraft:melon_block", @@ -2397,7 +2553,7 @@ }, { "name" : "minecraft:minecart", - "id" : 371 + "id" : 370 }, { "name" : "minecraft:mob_spawner", @@ -2405,7 +2561,7 @@ }, { "name" : "minecraft:mojang_banner_pattern", - "id" : 580 + "id" : 584 }, { "name" : "minecraft:monster_egg", @@ -2413,7 +2569,7 @@ }, { "name" : "minecraft:mooshroom_spawn_egg", - "id" : 441 + "id" : 440 }, { "name" : "minecraft:moss_block", @@ -2441,7 +2597,7 @@ }, { "name" : "minecraft:mule_spawn_egg", - "id" : 467 + "id" : 466 }, { "name" : "minecraft:mushroom_stew", @@ -2449,59 +2605,59 @@ }, { "name" : "minecraft:music_disc_11", - "id" : 540 + "id" : 544 }, { "name" : "minecraft:music_disc_13", - "id" : 530 - }, - { - "name" : "minecraft:music_disc_blocks", - "id" : 532 - }, - { - "name" : "minecraft:music_disc_cat", - "id" : 531 - }, - { - "name" : "minecraft:music_disc_chirp", - "id" : 533 - }, - { - "name" : "minecraft:music_disc_far", "id" : 534 }, { - "name" : "minecraft:music_disc_mall", - "id" : 535 - }, - { - "name" : "minecraft:music_disc_mellohi", + "name" : "minecraft:music_disc_blocks", "id" : 536 }, { - "name" : "minecraft:music_disc_pigstep", - "id" : 614 + "name" : "minecraft:music_disc_cat", + "id" : 535 }, { - "name" : "minecraft:music_disc_stal", + "name" : "minecraft:music_disc_chirp", "id" : 537 }, { - "name" : "minecraft:music_disc_strad", + "name" : "minecraft:music_disc_far", "id" : 538 }, { - "name" : "minecraft:music_disc_wait", - "id" : 541 - }, - { - "name" : "minecraft:music_disc_ward", + "name" : "minecraft:music_disc_mall", "id" : 539 }, + { + "name" : "minecraft:music_disc_mellohi", + "id" : 540 + }, + { + "name" : "minecraft:music_disc_pigstep", + "id" : 618 + }, + { + "name" : "minecraft:music_disc_stal", + "id" : 541 + }, + { + "name" : "minecraft:music_disc_strad", + "id" : 542 + }, + { + "name" : "minecraft:music_disc_wait", + "id" : 545 + }, + { + "name" : "minecraft:music_disc_ward", + "id" : 543 + }, { "name" : "minecraft:mutton", - "id" : 546 + "id" : 550 }, { "name" : "minecraft:mycelium", @@ -2509,11 +2665,11 @@ }, { "name" : "minecraft:name_tag", - "id" : 544 + "id" : 548 }, { "name" : "minecraft:nautilus_shell", - "id" : 566 + "id" : 570 }, { "name" : "minecraft:nether_brick", @@ -2533,11 +2689,11 @@ }, { "name" : "minecraft:nether_sprouts", - "id" : 615 + "id" : 619 }, { "name" : "minecraft:nether_star", - "id" : 514 + "id" : 518 }, { "name" : "minecraft:nether_wart", @@ -2549,11 +2705,11 @@ }, { "name" : "minecraft:netherbrick", - "id" : 519 + "id" : 523 }, { "name" : "minecraft:netherite_axe", - "id" : 601 + "id" : 605 }, { "name" : "minecraft:netherite_block", @@ -2561,43 +2717,43 @@ }, { "name" : "minecraft:netherite_boots", - "id" : 606 + "id" : 610 }, { "name" : "minecraft:netherite_chestplate", - "id" : 604 + "id" : 608 }, { "name" : "minecraft:netherite_helmet", - "id" : 603 - }, - { - "name" : "minecraft:netherite_hoe", - "id" : 602 - }, - { - "name" : "minecraft:netherite_ingot", - "id" : 597 - }, - { - "name" : "minecraft:netherite_leggings", - "id" : 605 - }, - { - "name" : "minecraft:netherite_pickaxe", - "id" : 600 - }, - { - "name" : "minecraft:netherite_scrap", "id" : 607 }, + { + "name" : "minecraft:netherite_hoe", + "id" : 606 + }, + { + "name" : "minecraft:netherite_ingot", + "id" : 601 + }, + { + "name" : "minecraft:netherite_leggings", + "id" : 609 + }, + { + "name" : "minecraft:netherite_pickaxe", + "id" : 604 + }, + { + "name" : "minecraft:netherite_scrap", + "id" : 611 + }, { "name" : "minecraft:netherite_shovel", - "id" : 599 + "id" : 603 }, { "name" : "minecraft:netherite_sword", - "id" : 598 + "id" : 602 }, { "name" : "minecraft:netherrack", @@ -2617,11 +2773,11 @@ }, { "name" : "minecraft:npc_spawn_egg", - "id" : 471 + "id" : 470 }, { "name" : "minecraft:oak_boat", - "id" : 376 + "id" : 375 }, { "name" : "minecraft:oak_sign", @@ -2641,11 +2797,11 @@ }, { "name" : "minecraft:ocelot_spawn_egg", - "id" : 452 + "id" : 451 }, { "name" : "minecraft:orange_dye", - "id" : 410 + "id" : 409 }, { "name" : "minecraft:orange_glazed_terracotta", @@ -2681,47 +2837,47 @@ }, { "name" : "minecraft:panda_spawn_egg", - "id" : 490 + "id" : 489 }, { "name" : "minecraft:paper", - "id" : 387 + "id" : 386 }, { "name" : "minecraft:parrot_spawn_egg", - "id" : 479 + "id" : 478 }, { "name" : "minecraft:phantom_membrane", - "id" : 570 + "id" : 574 }, { "name" : "minecraft:phantom_spawn_egg", - "id" : 487 + "id" : 486 }, { "name" : "minecraft:pig_spawn_egg", - "id" : 438 + "id" : 437 }, { "name" : "minecraft:piglin_banner_pattern", - "id" : 583 + "id" : 587 }, { "name" : "minecraft:piglin_brute_spawn_egg", - "id" : 500 + "id" : 499 }, { "name" : "minecraft:piglin_spawn_egg", - "id" : 498 + "id" : 497 }, { "name" : "minecraft:pillager_spawn_egg", - "id" : 492 + "id" : 491 }, { "name" : "minecraft:pink_dye", - "id" : 405 + "id" : 404 }, { "name" : "minecraft:pink_glazed_terracotta", @@ -2753,7 +2909,7 @@ }, { "name" : "minecraft:polar_bear_spawn_egg", - "id" : 473 + "id" : 472 }, { "name" : "minecraft:polished_andesite_stairs", @@ -2811,6 +2967,26 @@ "name" : "minecraft:polished_blackstone_wall", "id" : -297 }, + { + "name" : "minecraft:polished_deepslate", + "id" : -383 + }, + { + "name" : "minecraft:polished_deepslate_double_slab", + "id" : -397 + }, + { + "name" : "minecraft:polished_deepslate_slab", + "id" : -384 + }, + { + "name" : "minecraft:polished_deepslate_stairs", + "id" : -385 + }, + { + "name" : "minecraft:polished_deepslate_wall", + "id" : -386 + }, { "name" : "minecraft:polished_diorite_stairs", "id" : -173 @@ -2821,7 +2997,7 @@ }, { "name" : "minecraft:popped_chorus_fruit", - "id" : 555 + "id" : 559 }, { "name" : "minecraft:porkchop", @@ -2841,7 +3017,7 @@ }, { "name" : "minecraft:potion", - "id" : 427 + "id" : 426 }, { "name" : "minecraft:powder_snow", @@ -2869,11 +3045,11 @@ }, { "name" : "minecraft:prismarine_crystals", - "id" : 545 + "id" : 549 }, { "name" : "minecraft:prismarine_shard", - "id" : 561 + "id" : 565 }, { "name" : "minecraft:prismarine_stairs", @@ -2889,7 +3065,7 @@ }, { "name" : "minecraft:pufferfish_spawn_egg", - "id" : 482 + "id" : 481 }, { "name" : "minecraft:pumpkin", @@ -2909,7 +3085,7 @@ }, { "name" : "minecraft:purple_dye", - "id" : 401 + "id" : 400 }, { "name" : "minecraft:purple_glazed_terracotta", @@ -2925,7 +3101,7 @@ }, { "name" : "minecraft:quartz", - "id" : 520 + "id" : 524 }, { "name" : "minecraft:quartz_block", @@ -2949,15 +3125,15 @@ }, { "name" : "minecraft:rabbit_foot", - "id" : 524 + "id" : 528 }, { "name" : "minecraft:rabbit_hide", - "id" : 525 + "id" : 529 }, { "name" : "minecraft:rabbit_spawn_egg", - "id" : 460 + "id" : 459 }, { "name" : "minecraft:rabbit_stew", @@ -2969,11 +3145,35 @@ }, { "name" : "minecraft:rapid_fertilizer", - "id" : 592 + "id" : 596 }, { "name" : "minecraft:ravager_spawn_egg", - "id" : 494 + "id" : 493 + }, + { + "name" : "minecraft:raw_copper", + "id" : 507 + }, + { + "name" : "minecraft:raw_copper_block", + "id" : -452 + }, + { + "name" : "minecraft:raw_gold", + "id" : 506 + }, + { + "name" : "minecraft:raw_gold_block", + "id" : -453 + }, + { + "name" : "minecraft:raw_iron", + "id" : 505 + }, + { + "name" : "minecraft:raw_iron_block", + "id" : -451 }, { "name" : "minecraft:real_double_stone_slab", @@ -2993,7 +3193,7 @@ }, { "name" : "minecraft:red_dye", - "id" : 397 + "id" : 396 }, { "name" : "minecraft:red_flower", @@ -3029,7 +3229,7 @@ }, { "name" : "minecraft:redstone", - "id" : 374 + "id" : 373 }, { "name" : "minecraft:redstone_block", @@ -3053,7 +3253,7 @@ }, { "name" : "minecraft:repeater", - "id" : 420 + "id" : 419 }, { "name" : "minecraft:repeating_command_block", @@ -3073,7 +3273,7 @@ }, { "name" : "minecraft:saddle", - "id" : 372 + "id" : 371 }, { "name" : "minecraft:salmon", @@ -3085,7 +3285,7 @@ }, { "name" : "minecraft:salmon_spawn_egg", - "id" : 483 + "id" : 482 }, { "name" : "minecraft:sand", @@ -3113,7 +3313,7 @@ }, { "name" : "minecraft:scute", - "id" : 568 + "id" : 572 }, { "name" : "minecraft:sea_pickle", @@ -3129,11 +3329,11 @@ }, { "name" : "minecraft:shears", - "id" : 422 + "id" : 421 }, { "name" : "minecraft:sheep_spawn_egg", - "id" : 439 + "id" : 438 }, { "name" : "minecraft:shield", @@ -3149,11 +3349,11 @@ }, { "name" : "minecraft:shulker_shell", - "id" : 562 + "id" : 566 }, { "name" : "minecraft:shulker_spawn_egg", - "id" : 470 + "id" : 469 }, { "name" : "minecraft:silver_glazed_terracotta", @@ -3161,23 +3361,23 @@ }, { "name" : "minecraft:silverfish_spawn_egg", - "id" : 444 + "id" : 443 }, { "name" : "minecraft:skeleton_horse_spawn_egg", - "id" : 468 + "id" : 467 }, { "name" : "minecraft:skeleton_spawn_egg", - "id" : 445 + "id" : 444 }, { "name" : "minecraft:skull", - "id" : 512 + "id" : 516 }, { "name" : "minecraft:skull_banner_pattern", - "id" : 579 + "id" : 583 }, { "name" : "minecraft:slime", @@ -3185,11 +3385,15 @@ }, { "name" : "minecraft:slime_ball", - "id" : 389 + "id" : 388 }, { "name" : "minecraft:slime_spawn_egg", - "id" : 446 + "id" : 445 + }, + { + "name" : "minecraft:small_amethyst_bud", + "id" : -332 }, { "name" : "minecraft:small_dripleaf_block", @@ -3203,6 +3407,10 @@ "name" : "minecraft:smoker", "id" : -198 }, + { + "name" : "minecraft:smooth_basalt", + "id" : -377 + }, { "name" : "minecraft:smooth_quartz_stairs", "id" : -185 @@ -3229,11 +3437,11 @@ }, { "name" : "minecraft:snowball", - "id" : 375 + "id" : 374 }, { "name" : "minecraft:soul_campfire", - "id" : 616 + "id" : 620 }, { "name" : "minecraft:soul_fire", @@ -3257,11 +3465,11 @@ }, { "name" : "minecraft:sparkler", - "id" : 595 + "id" : 599 }, { "name" : "minecraft:spawn_egg", - "id" : 622 + "id" : 628 }, { "name" : "minecraft:spider_eye", @@ -3269,11 +3477,11 @@ }, { "name" : "minecraft:spider_spawn_egg", - "id" : 447 + "id" : 446 }, { "name" : "minecraft:splash_potion", - "id" : 557 + "id" : 561 }, { "name" : "minecraft:sponge", @@ -3285,7 +3493,7 @@ }, { "name" : "minecraft:spruce_boat", - "id" : 379 + "id" : 378 }, { "name" : "minecraft:spruce_button", @@ -3293,7 +3501,7 @@ }, { "name" : "minecraft:spruce_door", - "id" : 549 + "id" : 553 }, { "name" : "minecraft:spruce_fence_gate", @@ -3305,7 +3513,7 @@ }, { "name" : "minecraft:spruce_sign", - "id" : 572 + "id" : 576 }, { "name" : "minecraft:spruce_stairs", @@ -3323,9 +3531,13 @@ "name" : "minecraft:spruce_wall_sign", "id" : -182 }, + { + "name" : "minecraft:spyglass", + "id" : 624 + }, { "name" : "minecraft:squid_spawn_egg", - "id" : 451 + "id" : 450 }, { "name" : "minecraft:stained_glass", @@ -3413,11 +3625,11 @@ }, { "name" : "minecraft:stray_spawn_egg", - "id" : 463 + "id" : 462 }, { "name" : "minecraft:strider_spawn_egg", - "id" : 496 + "id" : 495 }, { "name" : "minecraft:string", @@ -3473,15 +3685,15 @@ }, { "name" : "minecraft:sugar", - "id" : 417 + "id" : 416 }, { "name" : "minecraft:sugar_cane", - "id" : 386 + "id" : 385 }, { "name" : "minecraft:suspicious_stew", - "id" : 585 + "id" : 589 }, { "name" : "minecraft:sweet_berries", @@ -3499,13 +3711,17 @@ "name" : "minecraft:target", "id" : -239 }, + { + "name" : "minecraft:tinted_glass", + "id" : -334 + }, { "name" : "minecraft:tnt", "id" : 46 }, { "name" : "minecraft:tnt_minecart", - "id" : 521 + "id" : 525 }, { "name" : "minecraft:torch", @@ -3513,7 +3729,7 @@ }, { "name" : "minecraft:totem_of_undying", - "id" : 564 + "id" : 568 }, { "name" : "minecraft:trapdoor", @@ -3525,7 +3741,7 @@ }, { "name" : "minecraft:trident", - "id" : 542 + "id" : 546 }, { "name" : "minecraft:tripwire", @@ -3545,7 +3761,11 @@ }, { "name" : "minecraft:tropical_fish_spawn_egg", - "id" : 480 + "id" : 479 + }, + { + "name" : "minecraft:tuff", + "id" : -333 }, { "name" : "minecraft:turtle_egg", @@ -3553,11 +3773,11 @@ }, { "name" : "minecraft:turtle_helmet", - "id" : 569 + "id" : 573 }, { "name" : "minecraft:turtle_spawn_egg", - "id" : 486 + "id" : 485 }, { "name" : "minecraft:twisting_vines", @@ -3589,15 +3809,15 @@ }, { "name" : "minecraft:vex_spawn_egg", - "id" : 477 + "id" : 476 }, { "name" : "minecraft:villager_spawn_egg", - "id" : 450 + "id" : 449 }, { "name" : "minecraft:vindicator_spawn_egg", - "id" : 475 + "id" : 474 }, { "name" : "minecraft:vine", @@ -3613,7 +3833,7 @@ }, { "name" : "minecraft:wandering_trader_spawn_egg", - "id" : 493 + "id" : 492 }, { "name" : "minecraft:warped_button", @@ -3621,7 +3841,7 @@ }, { "name" : "minecraft:warped_door", - "id" : 611 + "id" : 615 }, { "name" : "minecraft:warped_double_slab", @@ -3641,7 +3861,7 @@ }, { "name" : "minecraft:warped_fungus_on_a_stick", - "id" : 612 + "id" : 616 }, { "name" : "minecraft:warped_hyphae", @@ -3665,7 +3885,7 @@ }, { "name" : "minecraft:warped_sign", - "id" : 609 + "id" : 613 }, { "name" : "minecraft:warped_slab", @@ -3747,6 +3967,26 @@ "name" : "minecraft:waxed_exposed_double_cut_copper_slab", "id" : -373 }, + { + "name" : "minecraft:waxed_oxidized_copper", + "id" : -446 + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper", + "id" : -447 + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_slab", + "id" : -449 + }, + { + "name" : "minecraft:waxed_oxidized_cut_copper_stairs", + "id" : -448 + }, + { + "name" : "minecraft:waxed_oxidized_double_cut_copper_slab", + "id" : -450 + }, { "name" : "minecraft:waxed_weathered_copper", "id" : -346 @@ -3805,7 +4045,7 @@ }, { "name" : "minecraft:white_dye", - "id" : 411 + "id" : 410 }, { "name" : "minecraft:white_glazed_terracotta", @@ -3813,7 +4053,7 @@ }, { "name" : "minecraft:witch_spawn_egg", - "id" : 453 + "id" : 452 }, { "name" : "minecraft:wither_rose", @@ -3821,11 +4061,11 @@ }, { "name" : "minecraft:wither_skeleton_spawn_egg", - "id" : 465 + "id" : 464 }, { "name" : "minecraft:wolf_spawn_egg", - "id" : 440 + "id" : 439 }, { "name" : "minecraft:wood", @@ -3873,15 +4113,15 @@ }, { "name" : "minecraft:writable_book", - "id" : 506 + "id" : 510 }, { "name" : "minecraft:written_book", - "id" : 507 + "id" : 511 }, { "name" : "minecraft:yellow_dye", - "id" : 407 + "id" : 406 }, { "name" : "minecraft:yellow_flower", @@ -3893,22 +4133,22 @@ }, { "name" : "minecraft:zoglin_spawn_egg", - "id" : 499 + "id" : 498 }, { "name" : "minecraft:zombie_horse_spawn_egg", - "id" : 469 + "id" : 468 }, { "name" : "minecraft:zombie_pigman_spawn_egg", - "id" : 449 - }, - { - "name" : "minecraft:zombie_spawn_egg", "id" : 448 }, + { + "name" : "minecraft:zombie_spawn_egg", + "id" : 447 + }, { "name" : "minecraft:zombie_villager_spawn_egg", - "id" : 478 + "id" : 477 } ] \ No newline at end of file diff --git a/connector/src/main/resources/mappings b/connector/src/main/resources/mappings index c5925b01c..07bd1db23 160000 --- a/connector/src/main/resources/mappings +++ b/connector/src/main/resources/mappings @@ -1 +1 @@ -Subproject commit c5925b01cf8e7d8b284cf359e927145b9b4694aa +Subproject commit 07bd1db239492e22214abd911696b8cb99b0fe28