feat: add palettes and version constants for MC 1.21.2 (protocol 768)
Add item, entity, block, and metadata palettes for Minecraft 1.21.2:
- ItemPalette1212: 1375 items (42 new: pale oak set, colored bundles,
creaking heart/spawn egg, banner patterns)
- EntityPalette1212: 150 entity types (boats split into per-wood-type
entries, generic boat/chest_boat removed; added creaking,
creaking_transient, pale oak boats)
- Palette1212 (blocks): 1084 block types with state IDs generated from
official 1.21.2 data reports (24 new pale oak blocks, creaking heart,
pale moss variants)
- EntityMetadataPalette: reuses 1206 (serializers unchanged in 1.21.2)
Updated version infrastructure:
- Protocol18.cs: MC_1_21_2_Version = 768, palette switch routing
- ProtocolHandler.cs: version mapping 1.21.2 <-> 768
- Program.cs: MCHighestVersion bumped to 1.21.2
- ItemType.cs, EntityType.cs, Material.cs: new enum entries
Note: packet palette, structured components, and protocol handler
changes for 1.21.2 are not yet implemented — this commit covers
palette/registry groundwork only.
Made-with: Cursor
2026-03-20 03:02:43 +08:00
namespace MinecraftClient.Mapping
2015-12-09 23:04:00 +01:00
{
/// <summary>
/// Represents Minecraft Materials
/// </summary>
/// <remarks>
2022-08-22 19:46:30 +02:00
/// Generated from blocks.json using the --generator flag on the client
2019-04-28 15:58:10 +02:00
/// Typical steps to handle new blocks for newer Minecraft versions:
2022-08-22 19:46:30 +02:00
/// 1. Generate blocks.json using data reporting on Vanilla Minecraft (https://wiki.vg/Data_Generators) or download it from: https://github.com/PixiGeko/Minecraft-generated-data
/// 2. Generate temporary MaterialXXX.cs and PaletteXXX.cs using the --generator flag on the client
2019-04-28 15:58:10 +02:00
/// 3. Perform a diff with existing versions, add missing entries in Material.cs and MaterialExtensions.cs
/// 4. If existing state IDs were not randomized by Mojang, simply add missing state entries to Palette113.cs
/// 5. If existing state IDs were randomized, add a new palette as PaletteXXX.cs into the codebase (worst case)
2015-12-09 23:04:00 +01:00
/// </remarks>
public enum Material
{
2022-06-28 13:45:23 +02:00
AcaciaButton ,
AcaciaDoor ,
AcaciaFence ,
AcaciaFenceGate ,
2023-01-14 22:18:05 +08:00
AcaciaHangingSign ,
2022-06-28 13:45:23 +02:00
AcaciaLeaves ,
AcaciaLog ,
2019-04-25 22:09:33 +02:00
AcaciaPlanks ,
2022-06-28 13:45:23 +02:00
AcaciaPressurePlate ,
2019-04-25 22:09:33 +02:00
AcaciaSapling ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
AcaciaShelf ,
2022-06-28 13:45:23 +02:00
AcaciaSign ,
AcaciaSlab ,
AcaciaStairs ,
AcaciaTrapdoor ,
2023-01-14 22:18:05 +08:00
AcaciaWallHangingSign ,
2022-06-28 13:45:23 +02:00
AcaciaWallSign ,
AcaciaWood ,
ActivatorRail ,
Air ,
Allium ,
AmethystBlock ,
AmethystCluster ,
AncientDebris ,
Andesite ,
AndesiteSlab ,
AndesiteStairs ,
AndesiteWall ,
Anvil ,
AttachedMelonStem ,
AttachedPumpkinStem ,
Azalea ,
AzaleaLeaves ,
AzureBluet ,
Bamboo ,
2023-01-14 22:18:05 +08:00
BambooBlock ,
BambooButton ,
BambooDoor ,
BambooFence ,
BambooFenceGate ,
BambooHangingSign ,
BambooMosaic ,
BambooMosaicSlab ,
BambooMosaicStairs ,
BambooPlanks ,
BambooPressurePlate ,
2022-06-28 13:45:23 +02:00
BambooSapling ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
BambooShelf ,
2023-01-14 22:18:05 +08:00
BambooSign ,
BambooSlab ,
BambooStairs ,
BambooTrapdoor ,
BambooWallHangingSign ,
BambooWallSign ,
2022-06-28 13:45:23 +02:00
Barrel ,
Barrier ,
Basalt ,
Beacon ,
2019-04-25 22:09:33 +02:00
Bedrock ,
2022-06-28 13:45:23 +02:00
BeeNest ,
2022-08-22 19:46:30 +02:00
Beehive ,
2022-06-28 13:45:23 +02:00
Beetroots ,
Bell ,
BigDripleaf ,
BigDripleafStem ,
BirchButton ,
BirchDoor ,
BirchFence ,
BirchFenceGate ,
2023-01-14 22:18:05 +08:00
BirchHangingSign ,
2022-06-28 13:45:23 +02:00
BirchLeaves ,
2019-04-25 22:09:33 +02:00
BirchLog ,
2022-06-28 13:45:23 +02:00
BirchPlanks ,
BirchPressurePlate ,
BirchSapling ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
BirchShelf ,
2022-06-28 13:45:23 +02:00
BirchSign ,
BirchSlab ,
BirchStairs ,
BirchTrapdoor ,
2023-01-14 22:18:05 +08:00
BirchWallHangingSign ,
2022-06-28 13:45:23 +02:00
BirchWallSign ,
2019-04-25 22:09:33 +02:00
BirchWood ,
2022-06-28 13:45:23 +02:00
BlackBanner ,
2019-04-25 22:09:33 +02:00
BlackBed ,
2022-06-28 13:45:23 +02:00
BlackCandle ,
BlackCandleCake ,
BlackCarpet ,
BlackConcrete ,
BlackConcretePowder ,
BlackGlazedTerracotta ,
BlackShulkerBox ,
BlackStainedGlass ,
BlackStainedGlassPane ,
2022-08-22 19:46:30 +02:00
BlackTerracotta ,
BlackWallBanner ,
BlackWool ,
2022-06-28 13:45:23 +02:00
Blackstone ,
BlackstoneSlab ,
BlackstoneStairs ,
BlackstoneWall ,
BlastFurnace ,
BlueBanner ,
BlueBed ,
BlueCandle ,
BlueCandleCake ,
BlueCarpet ,
BlueConcrete ,
BlueConcretePowder ,
BlueGlazedTerracotta ,
BlueIce ,
2019-04-25 22:09:33 +02:00
BlueOrchid ,
2022-06-28 13:45:23 +02:00
BlueShulkerBox ,
BlueStainedGlass ,
BlueStainedGlassPane ,
BlueTerracotta ,
BlueWallBanner ,
BlueWool ,
BoneBlock ,
2019-04-25 22:09:33 +02:00
Bookshelf ,
2022-06-28 13:45:23 +02:00
BrainCoral ,
BrainCoralBlock ,
BrainCoralFan ,
BrainCoralWallFan ,
BrewingStand ,
BrickSlab ,
BrickStairs ,
BrickWall ,
2022-08-22 19:46:30 +02:00
Bricks ,
2022-06-28 13:45:23 +02:00
BrownBanner ,
BrownBed ,
BrownCandle ,
BrownCandleCake ,
BrownCarpet ,
BrownConcrete ,
BrownConcretePowder ,
BrownGlazedTerracotta ,
BrownMushroom ,
BrownMushroomBlock ,
BrownShulkerBox ,
BrownStainedGlass ,
BrownStainedGlassPane ,
BrownTerracotta ,
BrownWallBanner ,
BrownWool ,
BubbleColumn ,
BubbleCoral ,
BubbleCoralBlock ,
BubbleCoralFan ,
BubbleCoralWallFan ,
BuddingAmethyst ,
2026-03-21 14:43:56 +08:00
Bush ,
2019-04-25 22:09:33 +02:00
Cactus ,
2026-03-21 14:43:56 +08:00
CactusFlower ,
2022-06-28 13:45:23 +02:00
Cake ,
Calcite ,
2023-06-08 19:27:28 +02:00
CalibratedSculkSensor ,
2022-06-28 13:45:23 +02:00
Campfire ,
Candle ,
CandleCake ,
Carrots ,
CartographyTable ,
CarvedPumpkin ,
Cauldron ,
CaveAir ,
CaveVines ,
CaveVinesPlant ,
Chain ,
ChainCommandBlock ,
2023-03-21 23:31:10 +01:00
CherryButton ,
CherryDoor ,
CherryFence ,
CherryFenceGate ,
CherryHangingSign ,
CherryLeaves ,
CherryLog ,
CherryPlanks ,
CherryPressurePlate ,
CherrySapling ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
CherryShelf ,
2023-03-21 23:31:10 +01:00
CherrySign ,
CherrySlab ,
CherryStairs ,
CherryTrapdoor ,
CherryWallHangingSign ,
CherryWallSign ,
CherryWood ,
2022-06-28 13:45:23 +02:00
Chest ,
ChippedAnvil ,
2023-01-14 22:18:05 +08:00
ChiseledBookshelf ,
2024-02-11 18:13:48 +08:00
ChiseledCopper ,
2022-06-28 13:45:23 +02:00
ChiseledDeepslate ,
ChiseledNetherBricks ,
ChiseledPolishedBlackstone ,
ChiseledQuartzBlock ,
ChiseledRedSandstone ,
2026-03-20 23:51:56 +08:00
ChiseledResinBricks ,
2022-06-28 13:45:23 +02:00
ChiseledSandstone ,
ChiseledStoneBricks ,
2024-02-11 18:13:48 +08:00
ChiseledTuff ,
ChiseledTuffBricks ,
2022-06-28 13:45:23 +02:00
ChorusFlower ,
ChorusPlant ,
2019-04-25 22:09:33 +02:00
Clay ,
2026-03-20 23:51:56 +08:00
ClosedEyeblossom ,
2022-06-28 13:45:23 +02:00
CoalBlock ,
CoalOre ,
CoarseDirt ,
CobbledDeepslate ,
CobbledDeepslateSlab ,
CobbledDeepslateStairs ,
CobbledDeepslateWall ,
Cobblestone ,
CobblestoneSlab ,
CobblestoneStairs ,
CobblestoneWall ,
Cobweb ,
Cocoa ,
CommandBlock ,
Comparator ,
Composter ,
Conduit ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
CopperBars ,
2022-06-28 13:45:23 +02:00
CopperBlock ,
2024-02-11 18:13:48 +08:00
CopperBulb ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
CopperChain ,
CopperChest ,
2024-02-11 18:13:48 +08:00
CopperDoor ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
CopperGolemStatue ,
2024-02-11 18:13:48 +08:00
CopperGrate ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
CopperLantern ,
2022-06-28 13:45:23 +02:00
CopperOre ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
CopperTorch ,
2024-02-11 18:13:48 +08:00
CopperTrapdoor ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
CopperWallTorch ,
2022-06-28 13:45:23 +02:00
Cornflower ,
CrackedDeepslateBricks ,
CrackedDeepslateTiles ,
CrackedNetherBricks ,
CrackedPolishedBlackstoneBricks ,
CrackedStoneBricks ,
2024-02-11 18:13:48 +08:00
Crafter ,
2022-06-28 13:45:23 +02:00
CraftingTable ,
feat: add palettes and version constants for MC 1.21.2 (protocol 768)
Add item, entity, block, and metadata palettes for Minecraft 1.21.2:
- ItemPalette1212: 1375 items (42 new: pale oak set, colored bundles,
creaking heart/spawn egg, banner patterns)
- EntityPalette1212: 150 entity types (boats split into per-wood-type
entries, generic boat/chest_boat removed; added creaking,
creaking_transient, pale oak boats)
- Palette1212 (blocks): 1084 block types with state IDs generated from
official 1.21.2 data reports (24 new pale oak blocks, creaking heart,
pale moss variants)
- EntityMetadataPalette: reuses 1206 (serializers unchanged in 1.21.2)
Updated version infrastructure:
- Protocol18.cs: MC_1_21_2_Version = 768, palette switch routing
- ProtocolHandler.cs: version mapping 1.21.2 <-> 768
- Program.cs: MCHighestVersion bumped to 1.21.2
- ItemType.cs, EntityType.cs, Material.cs: new enum entries
Note: packet palette, structured components, and protocol handler
changes for 1.21.2 are not yet implemented — this commit covers
palette/registry groundwork only.
Made-with: Cursor
2026-03-20 03:02:43 +08:00
CreakingHeart ,
2022-06-28 13:45:23 +02:00
CreeperHead ,
CreeperWallHead ,
CrimsonButton ,
CrimsonDoor ,
CrimsonFence ,
CrimsonFenceGate ,
CrimsonFungus ,
2023-01-14 22:18:05 +08:00
CrimsonHangingSign ,
2022-06-28 13:45:23 +02:00
CrimsonHyphae ,
CrimsonNylium ,
CrimsonPlanks ,
CrimsonPressurePlate ,
CrimsonRoots ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
CrimsonShelf ,
2022-06-28 13:45:23 +02:00
CrimsonSign ,
CrimsonSlab ,
CrimsonStairs ,
CrimsonStem ,
CrimsonTrapdoor ,
2023-01-14 22:18:05 +08:00
CrimsonWallHangingSign ,
2022-06-28 13:45:23 +02:00
CrimsonWallSign ,
CryingObsidian ,
CutCopper ,
CutCopperSlab ,
CutCopperStairs ,
CutRedSandstone ,
CutRedSandstoneSlab ,
CutSandstone ,
CutSandstoneSlab ,
CyanBanner ,
CyanBed ,
CyanCandle ,
CyanCandleCake ,
CyanCarpet ,
CyanConcrete ,
CyanConcretePowder ,
CyanGlazedTerracotta ,
CyanShulkerBox ,
CyanStainedGlass ,
CyanStainedGlassPane ,
CyanTerracotta ,
CyanWallBanner ,
CyanWool ,
DamagedAnvil ,
Dandelion ,
DarkOakButton ,
DarkOakDoor ,
DarkOakFence ,
DarkOakFenceGate ,
2023-01-14 22:18:05 +08:00
DarkOakHangingSign ,
2022-06-28 13:45:23 +02:00
DarkOakLeaves ,
DarkOakLog ,
DarkOakPlanks ,
DarkOakPressurePlate ,
DarkOakSapling ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
DarkOakShelf ,
2022-06-28 13:45:23 +02:00
DarkOakSign ,
DarkOakSlab ,
DarkOakStairs ,
DarkOakTrapdoor ,
2023-01-14 22:18:05 +08:00
DarkOakWallHangingSign ,
2022-06-28 13:45:23 +02:00
DarkOakWallSign ,
DarkOakWood ,
DarkPrismarine ,
DarkPrismarineSlab ,
DarkPrismarineStairs ,
DaylightDetector ,
DeadBrainCoral ,
DeadBrainCoralBlock ,
DeadBrainCoralFan ,
DeadBrainCoralWallFan ,
DeadBubbleCoral ,
DeadBubbleCoralBlock ,
DeadBubbleCoralFan ,
DeadBubbleCoralWallFan ,
DeadBush ,
DeadFireCoral ,
DeadFireCoralBlock ,
DeadFireCoralFan ,
DeadFireCoralWallFan ,
DeadHornCoral ,
DeadHornCoralBlock ,
DeadHornCoralFan ,
DeadHornCoralWallFan ,
DeadTubeCoral ,
DeadTubeCoralBlock ,
DeadTubeCoralFan ,
DeadTubeCoralWallFan ,
2023-03-21 23:31:10 +01:00
DecoratedPot ,
2022-06-28 13:45:23 +02:00
Deepslate ,
DeepslateBrickSlab ,
DeepslateBrickStairs ,
DeepslateBrickWall ,
2022-08-22 19:46:30 +02:00
DeepslateBricks ,
2022-06-28 13:45:23 +02:00
DeepslateCoalOre ,
DeepslateCopperOre ,
DeepslateDiamondOre ,
DeepslateEmeraldOre ,
DeepslateGoldOre ,
DeepslateIronOre ,
DeepslateLapisOre ,
DeepslateRedstoneOre ,
DeepslateTileSlab ,
DeepslateTileStairs ,
DeepslateTileWall ,
2022-08-22 19:46:30 +02:00
DeepslateTiles ,
2022-06-28 13:45:23 +02:00
DetectorRail ,
DiamondBlock ,
DiamondOre ,
Diorite ,
DioriteSlab ,
DioriteStairs ,
DioriteWall ,
Dirt ,
2022-08-22 19:46:30 +02:00
DirtPath ,
2022-06-28 13:45:23 +02:00
Dispenser ,
DragonEgg ,
DragonHead ,
DragonWallHead ,
feat: add MC 1.21.6 (protocol 771) version constants and enum values
- Add protocol 771 constant MC_1_21_6_Version in Protocol18.cs
- Register 1.21.6 in ProtocolHandler (version map, supported list)
- Extend upper-bound checks from MC_1_21_5 to MC_1_21_6
- Add 19 new ItemType entries (16 colored Harnesses, DriedGhast,
HappyGhastSpawnEgg, MusicDiscTears)
- Add HappyGhast to EntityType enum
- Add DriedGhast to Material enum
- Add new packet types: Waypoint, ClearDialog, ShowDialog (clientbound),
ChangeGameMode, CustomClickAction (serverbound),
ClearDialog, ShowDialog (config clientbound),
CustomClickAction (config serverbound)
Made-with: Cursor
2026-03-21 11:34:20 +08:00
DriedGhast ,
2022-06-28 13:45:23 +02:00
DriedKelpBlock ,
DripstoneBlock ,
Dropper ,
EmeraldBlock ,
EmeraldOre ,
EnchantingTable ,
EndGateway ,
EndPortal ,
EndPortalFrame ,
EndRod ,
EndStone ,
EndStoneBrickSlab ,
EndStoneBrickStairs ,
EndStoneBrickWall ,
2022-08-22 19:46:30 +02:00
EndStoneBricks ,
EnderChest ,
2024-02-11 18:13:48 +08:00
ExposedChiseledCopper ,
2022-06-28 13:45:23 +02:00
ExposedCopper ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
ExposedCopperBars ,
2024-02-11 18:13:48 +08:00
ExposedCopperBulb ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
ExposedCopperChain ,
ExposedCopperChest ,
2024-02-11 18:13:48 +08:00
ExposedCopperDoor ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
ExposedCopperGolemStatue ,
2024-02-11 18:13:48 +08:00
ExposedCopperGrate ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
ExposedCopperLantern ,
2024-02-11 18:13:48 +08:00
ExposedCopperTrapdoor ,
2022-06-28 13:45:23 +02:00
ExposedCutCopper ,
ExposedCutCopperSlab ,
ExposedCutCopperStairs ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
ExposedLightningRod ,
2022-06-28 13:45:23 +02:00
Farmland ,
Fern ,
Fire ,
FireCoral ,
FireCoralBlock ,
FireCoralFan ,
FireCoralWallFan ,
2026-03-21 14:43:56 +08:00
FireflyBush ,
2022-06-28 13:45:23 +02:00
FletchingTable ,
2022-08-22 19:46:30 +02:00
FlowerPot ,
2022-06-28 13:45:23 +02:00
FloweringAzalea ,
FloweringAzaleaLeaves ,
2022-08-22 19:46:30 +02:00
Frogspawn ,
2022-06-28 13:45:23 +02:00
FrostedIce ,
Furnace ,
GildedBlackstone ,
Glass ,
GlassPane ,
GlowLichen ,
2019-04-25 22:09:33 +02:00
Glowstone ,
2022-06-28 13:45:23 +02:00
GoldBlock ,
GoldOre ,
2026-03-22 17:50:57 +08:00
GoldenDandelion ,
2022-06-28 13:45:23 +02:00
Granite ,
GraniteSlab ,
GraniteStairs ,
GraniteWall ,
GrassBlock ,
Gravel ,
GrayBanner ,
GrayBed ,
GrayCandle ,
GrayCandleCake ,
GrayCarpet ,
GrayConcrete ,
GrayConcretePowder ,
GrayGlazedTerracotta ,
GrayShulkerBox ,
GrayStainedGlass ,
GrayStainedGlassPane ,
GrayTerracotta ,
GrayWallBanner ,
GrayWool ,
GreenBanner ,
GreenBed ,
GreenCandle ,
GreenCandleCake ,
GreenCarpet ,
GreenConcrete ,
GreenConcretePowder ,
GreenGlazedTerracotta ,
GreenShulkerBox ,
GreenStainedGlass ,
GreenStainedGlassPane ,
GreenTerracotta ,
GreenWallBanner ,
GreenWool ,
Grindstone ,
HangingRoots ,
HayBlock ,
2024-07-02 11:08:46 +02:00
HeavyCore ,
2022-06-28 13:45:23 +02:00
HeavyWeightedPressurePlate ,
HoneyBlock ,
HoneycombBlock ,
Hopper ,
HornCoral ,
HornCoralBlock ,
HornCoralFan ,
HornCoralWallFan ,
Ice ,
InfestedChiseledStoneBricks ,
InfestedCobblestone ,
InfestedCrackedStoneBricks ,
InfestedDeepslate ,
InfestedMossyStoneBricks ,
InfestedStone ,
InfestedStoneBricks ,
IronBars ,
IronBlock ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
IronChain ,
2022-06-28 13:45:23 +02:00
IronDoor ,
IronOre ,
IronTrapdoor ,
2019-04-25 22:09:33 +02:00
JackOLantern ,
2022-06-28 13:45:23 +02:00
Jigsaw ,
Jukebox ,
JungleButton ,
JungleDoor ,
JungleFence ,
JungleFenceGate ,
2023-01-14 22:18:05 +08:00
JungleHangingSign ,
2022-06-28 13:45:23 +02:00
JungleLeaves ,
JungleLog ,
JunglePlanks ,
JunglePressurePlate ,
JungleSapling ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
JungleShelf ,
2022-06-28 13:45:23 +02:00
JungleSign ,
JungleSlab ,
JungleStairs ,
JungleTrapdoor ,
2023-01-14 22:18:05 +08:00
JungleWallHangingSign ,
2022-06-28 13:45:23 +02:00
JungleWallSign ,
JungleWood ,
Kelp ,
KelpPlant ,
Ladder ,
Lantern ,
LapisBlock ,
LapisOre ,
LargeAmethystBud ,
LargeFern ,
Lava ,
LavaCauldron ,
2026-03-21 14:43:56 +08:00
LeafLitter ,
2022-06-28 13:45:23 +02:00
Lectern ,
Lever ,
Light ,
LightBlueBanner ,
LightBlueBed ,
LightBlueCandle ,
LightBlueCandleCake ,
LightBlueCarpet ,
LightBlueConcrete ,
LightBlueConcretePowder ,
LightBlueGlazedTerracotta ,
LightBlueShulkerBox ,
LightBlueStainedGlass ,
LightBlueStainedGlassPane ,
LightBlueTerracotta ,
LightBlueWallBanner ,
LightBlueWool ,
LightGrayBanner ,
LightGrayBed ,
LightGrayCandle ,
LightGrayCandleCake ,
LightGrayCarpet ,
LightGrayConcrete ,
LightGrayConcretePowder ,
LightGrayGlazedTerracotta ,
LightGrayShulkerBox ,
LightGrayStainedGlass ,
LightGrayStainedGlassPane ,
LightGrayTerracotta ,
LightGrayWallBanner ,
LightGrayWool ,
LightWeightedPressurePlate ,
2022-08-22 19:46:30 +02:00
LightningRod ,
2022-06-28 13:45:23 +02:00
Lilac ,
LilyOfTheValley ,
LilyPad ,
LimeBanner ,
LimeBed ,
LimeCandle ,
LimeCandleCake ,
LimeCarpet ,
LimeConcrete ,
LimeConcretePowder ,
LimeGlazedTerracotta ,
LimeShulkerBox ,
LimeStainedGlass ,
LimeStainedGlassPane ,
LimeTerracotta ,
LimeWallBanner ,
LimeWool ,
Lodestone ,
Loom ,
MagentaBanner ,
MagentaBed ,
MagentaCandle ,
MagentaCandleCake ,
MagentaCarpet ,
MagentaConcrete ,
MagentaConcretePowder ,
MagentaGlazedTerracotta ,
MagentaShulkerBox ,
2019-04-25 22:09:33 +02:00
MagentaStainedGlass ,
2022-06-28 13:45:23 +02:00
MagentaStainedGlassPane ,
MagentaTerracotta ,
MagentaWallBanner ,
MagentaWool ,
MagmaBlock ,
2022-08-22 19:46:30 +02:00
MangroveButton ,
MangroveDoor ,
MangroveFence ,
MangroveFenceGate ,
2023-01-14 22:18:05 +08:00
MangroveHangingSign ,
2022-08-22 19:46:30 +02:00
MangroveLeaves ,
MangroveLog ,
MangrovePlanks ,
MangrovePressurePlate ,
MangrovePropagule ,
MangroveRoots ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
MangroveShelf ,
2022-08-22 19:46:30 +02:00
MangroveSign ,
MangroveSlab ,
MangroveStairs ,
MangroveTrapdoor ,
2023-01-14 22:18:05 +08:00
MangroveWallHangingSign ,
2022-08-22 19:46:30 +02:00
MangroveWallSign ,
MangroveWood ,
2022-06-28 13:45:23 +02:00
MediumAmethystBud ,
2019-04-25 22:09:33 +02:00
Melon ,
MelonStem ,
2022-06-28 13:45:23 +02:00
MossBlock ,
MossCarpet ,
MossyCobblestone ,
MossyCobblestoneSlab ,
MossyCobblestoneStairs ,
MossyCobblestoneWall ,
MossyStoneBrickSlab ,
MossyStoneBrickStairs ,
MossyStoneBrickWall ,
2022-08-22 19:46:30 +02:00
MossyStoneBricks ,
2022-06-28 13:45:23 +02:00
MovingPiston ,
2022-08-22 19:46:30 +02:00
Mud ,
MudBrickSlab ,
MudBrickStairs ,
MudBrickWall ,
MudBricks ,
MuddyMangroveRoots ,
2022-06-28 13:45:23 +02:00
MushroomStem ,
2019-04-25 22:09:33 +02:00
Mycelium ,
NetherBrickFence ,
2022-06-28 13:45:23 +02:00
NetherBrickSlab ,
2019-04-25 22:09:33 +02:00
NetherBrickStairs ,
2022-06-28 13:45:23 +02:00
NetherBrickWall ,
2022-08-22 19:46:30 +02:00
NetherBricks ,
2022-06-28 13:45:23 +02:00
NetherGoldOre ,
NetherPortal ,
NetherQuartzOre ,
NetherSprouts ,
2019-04-25 22:09:33 +02:00
NetherWart ,
2022-06-28 13:45:23 +02:00
NetherWartBlock ,
2022-08-22 19:46:30 +02:00
NetheriteBlock ,
Netherrack ,
2022-06-28 13:45:23 +02:00
NoteBlock ,
2019-04-25 22:09:33 +02:00
OakButton ,
2022-06-28 13:45:23 +02:00
OakDoor ,
OakFence ,
OakFenceGate ,
2023-01-14 22:18:05 +08:00
OakHangingSign ,
2022-06-28 13:45:23 +02:00
OakLeaves ,
OakLog ,
OakPlanks ,
OakPressurePlate ,
OakSapling ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
OakShelf ,
2022-06-28 13:45:23 +02:00
OakSign ,
OakSlab ,
OakStairs ,
OakTrapdoor ,
2023-01-14 22:18:05 +08:00
OakWallHangingSign ,
2022-06-28 13:45:23 +02:00
OakWallSign ,
OakWood ,
Observer ,
Obsidian ,
2022-08-22 19:46:30 +02:00
OchreFroglight ,
2026-03-20 23:51:56 +08:00
OpenEyeblossom ,
2022-06-28 13:45:23 +02:00
OrangeBanner ,
OrangeBed ,
OrangeCandle ,
OrangeCandleCake ,
OrangeCarpet ,
OrangeConcrete ,
OrangeConcretePowder ,
OrangeGlazedTerracotta ,
OrangeShulkerBox ,
OrangeStainedGlass ,
2019-04-25 22:09:33 +02:00
OrangeStainedGlassPane ,
2022-06-28 13:45:23 +02:00
OrangeTerracotta ,
OrangeTulip ,
OrangeWallBanner ,
OrangeWool ,
OxeyeDaisy ,
2024-02-11 18:13:48 +08:00
OxidizedChiseledCopper ,
2022-06-28 13:45:23 +02:00
OxidizedCopper ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
OxidizedCopperBars ,
2024-02-11 18:13:48 +08:00
OxidizedCopperBulb ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
OxidizedCopperChain ,
OxidizedCopperChest ,
2024-02-11 18:13:48 +08:00
OxidizedCopperDoor ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
OxidizedCopperGolemStatue ,
2024-02-11 18:13:48 +08:00
OxidizedCopperGrate ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
OxidizedCopperLantern ,
2024-02-11 18:13:48 +08:00
OxidizedCopperTrapdoor ,
2022-06-28 13:45:23 +02:00
OxidizedCutCopper ,
OxidizedCutCopperSlab ,
OxidizedCutCopperStairs ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
OxidizedLightningRod ,
2022-06-28 13:45:23 +02:00
PackedIce ,
2022-08-22 19:46:30 +02:00
PackedMud ,
feat: add palettes and version constants for MC 1.21.2 (protocol 768)
Add item, entity, block, and metadata palettes for Minecraft 1.21.2:
- ItemPalette1212: 1375 items (42 new: pale oak set, colored bundles,
creaking heart/spawn egg, banner patterns)
- EntityPalette1212: 150 entity types (boats split into per-wood-type
entries, generic boat/chest_boat removed; added creaking,
creaking_transient, pale oak boats)
- Palette1212 (blocks): 1084 block types with state IDs generated from
official 1.21.2 data reports (24 new pale oak blocks, creaking heart,
pale moss variants)
- EntityMetadataPalette: reuses 1206 (serializers unchanged in 1.21.2)
Updated version infrastructure:
- Protocol18.cs: MC_1_21_2_Version = 768, palette switch routing
- ProtocolHandler.cs: version mapping 1.21.2 <-> 768
- Program.cs: MCHighestVersion bumped to 1.21.2
- ItemType.cs, EntityType.cs, Material.cs: new enum entries
Note: packet palette, structured components, and protocol handler
changes for 1.21.2 are not yet implemented — this commit covers
palette/registry groundwork only.
Made-with: Cursor
2026-03-20 03:02:43 +08:00
PaleHangingMoss ,
PaleMossBlock ,
PaleMossCarpet ,
PaleOakButton ,
PaleOakDoor ,
PaleOakFence ,
PaleOakFenceGate ,
PaleOakHangingSign ,
PaleOakLeaves ,
PaleOakLog ,
PaleOakPlanks ,
PaleOakPressurePlate ,
PaleOakSapling ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
PaleOakShelf ,
feat: add palettes and version constants for MC 1.21.2 (protocol 768)
Add item, entity, block, and metadata palettes for Minecraft 1.21.2:
- ItemPalette1212: 1375 items (42 new: pale oak set, colored bundles,
creaking heart/spawn egg, banner patterns)
- EntityPalette1212: 150 entity types (boats split into per-wood-type
entries, generic boat/chest_boat removed; added creaking,
creaking_transient, pale oak boats)
- Palette1212 (blocks): 1084 block types with state IDs generated from
official 1.21.2 data reports (24 new pale oak blocks, creaking heart,
pale moss variants)
- EntityMetadataPalette: reuses 1206 (serializers unchanged in 1.21.2)
Updated version infrastructure:
- Protocol18.cs: MC_1_21_2_Version = 768, palette switch routing
- ProtocolHandler.cs: version mapping 1.21.2 <-> 768
- Program.cs: MCHighestVersion bumped to 1.21.2
- ItemType.cs, EntityType.cs, Material.cs: new enum entries
Note: packet palette, structured components, and protocol handler
changes for 1.21.2 are not yet implemented — this commit covers
palette/registry groundwork only.
Made-with: Cursor
2026-03-20 03:02:43 +08:00
PaleOakSign ,
PaleOakSlab ,
PaleOakStairs ,
PaleOakTrapdoor ,
PaleOakWallHangingSign ,
PaleOakWallSign ,
PaleOakWood ,
2022-08-22 19:46:30 +02:00
PearlescentFroglight ,
2022-06-28 13:45:23 +02:00
Peony ,
PetrifiedOakSlab ,
2023-01-14 22:18:05 +08:00
PiglinHead ,
PiglinWallHead ,
2022-06-28 13:45:23 +02:00
PinkBanner ,
PinkBed ,
PinkCandle ,
PinkCandleCake ,
PinkCarpet ,
PinkConcrete ,
PinkConcretePowder ,
PinkGlazedTerracotta ,
2023-03-21 23:31:10 +01:00
PinkPetals ,
2022-06-28 13:45:23 +02:00
PinkShulkerBox ,
PinkStainedGlass ,
2019-04-25 22:09:33 +02:00
PinkStainedGlassPane ,
2022-06-28 13:45:23 +02:00
PinkTerracotta ,
PinkTulip ,
PinkWallBanner ,
PinkWool ,
Piston ,
PistonHead ,
2023-06-08 19:27:28 +02:00
PitcherCrop ,
PitcherPlant ,
2022-06-28 13:45:23 +02:00
PlayerHead ,
PlayerWallHead ,
Podzol ,
PointedDripstone ,
PolishedAndesite ,
PolishedAndesiteSlab ,
PolishedAndesiteStairs ,
PolishedBasalt ,
PolishedBlackstone ,
PolishedBlackstoneBrickSlab ,
PolishedBlackstoneBrickStairs ,
PolishedBlackstoneBrickWall ,
2022-08-22 19:46:30 +02:00
PolishedBlackstoneBricks ,
2022-06-28 13:45:23 +02:00
PolishedBlackstoneButton ,
PolishedBlackstonePressurePlate ,
PolishedBlackstoneSlab ,
PolishedBlackstoneStairs ,
PolishedBlackstoneWall ,
PolishedDeepslate ,
PolishedDeepslateSlab ,
PolishedDeepslateStairs ,
PolishedDeepslateWall ,
PolishedDiorite ,
PolishedDioriteSlab ,
PolishedDioriteStairs ,
PolishedGranite ,
PolishedGraniteSlab ,
PolishedGraniteStairs ,
2024-02-11 18:13:48 +08:00
PolishedTuff ,
PolishedTuffSlab ,
PolishedTuffStairs ,
PolishedTuffWall ,
2022-06-28 13:45:23 +02:00
Poppy ,
Potatoes ,
PottedAcaciaSapling ,
PottedAllium ,
PottedAzaleaBush ,
PottedAzureBluet ,
PottedBamboo ,
PottedBirchSapling ,
PottedBlueOrchid ,
PottedBrownMushroom ,
PottedCactus ,
2023-03-21 23:31:10 +01:00
PottedCherrySapling ,
2026-03-20 23:51:56 +08:00
PottedClosedEyeblossom ,
2022-06-28 13:45:23 +02:00
PottedCornflower ,
PottedCrimsonFungus ,
PottedCrimsonRoots ,
PottedDandelion ,
PottedDarkOakSapling ,
PottedDeadBush ,
PottedFern ,
PottedFloweringAzaleaBush ,
2026-03-22 17:50:57 +08:00
PottedGoldenDandelion ,
2022-06-28 13:45:23 +02:00
PottedJungleSapling ,
PottedLilyOfTheValley ,
2022-08-22 19:46:30 +02:00
PottedMangrovePropagule ,
2022-06-28 13:45:23 +02:00
PottedOakSapling ,
2026-03-20 23:51:56 +08:00
PottedOpenEyeblossom ,
2022-06-28 13:45:23 +02:00
PottedOrangeTulip ,
PottedOxeyeDaisy ,
feat: add palettes and version constants for MC 1.21.2 (protocol 768)
Add item, entity, block, and metadata palettes for Minecraft 1.21.2:
- ItemPalette1212: 1375 items (42 new: pale oak set, colored bundles,
creaking heart/spawn egg, banner patterns)
- EntityPalette1212: 150 entity types (boats split into per-wood-type
entries, generic boat/chest_boat removed; added creaking,
creaking_transient, pale oak boats)
- Palette1212 (blocks): 1084 block types with state IDs generated from
official 1.21.2 data reports (24 new pale oak blocks, creaking heart,
pale moss variants)
- EntityMetadataPalette: reuses 1206 (serializers unchanged in 1.21.2)
Updated version infrastructure:
- Protocol18.cs: MC_1_21_2_Version = 768, palette switch routing
- ProtocolHandler.cs: version mapping 1.21.2 <-> 768
- Program.cs: MCHighestVersion bumped to 1.21.2
- ItemType.cs, EntityType.cs, Material.cs: new enum entries
Note: packet palette, structured components, and protocol handler
changes for 1.21.2 are not yet implemented — this commit covers
palette/registry groundwork only.
Made-with: Cursor
2026-03-20 03:02:43 +08:00
PottedPaleOakSapling ,
2022-06-28 13:45:23 +02:00
PottedPinkTulip ,
PottedPoppy ,
PottedRedMushroom ,
PottedRedTulip ,
PottedSpruceSapling ,
2023-03-21 23:31:10 +01:00
PottedTorchflower ,
2022-06-28 13:45:23 +02:00
PottedWarpedFungus ,
PottedWarpedRoots ,
PottedWhiteTulip ,
PottedWitherRose ,
PowderSnow ,
PowderSnowCauldron ,
PoweredRail ,
2019-04-25 22:09:33 +02:00
Prismarine ,
2022-06-28 13:45:23 +02:00
PrismarineBrickSlab ,
2019-04-25 22:09:33 +02:00
PrismarineBrickStairs ,
2022-08-22 19:46:30 +02:00
PrismarineBricks ,
2019-04-25 22:09:33 +02:00
PrismarineSlab ,
2022-06-28 13:45:23 +02:00
PrismarineStairs ,
PrismarineWall ,
Pumpkin ,
PumpkinStem ,
2019-04-25 22:09:33 +02:00
PurpleBanner ,
2022-06-28 13:45:23 +02:00
PurpleBed ,
PurpleCandle ,
PurpleCandleCake ,
PurpleCarpet ,
PurpleConcrete ,
PurpleConcretePowder ,
PurpleGlazedTerracotta ,
PurpleShulkerBox ,
PurpleStainedGlass ,
PurpleStainedGlassPane ,
PurpleTerracotta ,
2019-04-25 22:09:33 +02:00
PurpleWallBanner ,
2022-06-28 13:45:23 +02:00
PurpleWool ,
2019-04-25 22:09:33 +02:00
PurpurBlock ,
PurpurPillar ,
2022-06-28 13:45:23 +02:00
PurpurSlab ,
2019-04-25 22:09:33 +02:00
PurpurStairs ,
2022-06-28 13:45:23 +02:00
QuartzBlock ,
QuartzBricks ,
QuartzPillar ,
QuartzSlab ,
QuartzStairs ,
Rail ,
RawCopperBlock ,
RawGoldBlock ,
RawIronBlock ,
RedBanner ,
RedBed ,
RedCandle ,
RedCandleCake ,
RedCarpet ,
2019-04-25 22:09:33 +02:00
RedConcrete ,
RedConcretePowder ,
2022-06-28 13:45:23 +02:00
RedGlazedTerracotta ,
RedMushroom ,
RedMushroomBlock ,
2019-05-01 15:23:30 +02:00
RedNetherBrickSlab ,
2022-06-28 13:45:23 +02:00
RedNetherBrickStairs ,
2019-05-01 15:23:30 +02:00
RedNetherBrickWall ,
2022-08-22 19:46:30 +02:00
RedNetherBricks ,
2022-06-28 13:45:23 +02:00
RedSand ,
RedSandstone ,
RedSandstoneSlab ,
RedSandstoneStairs ,
RedSandstoneWall ,
RedShulkerBox ,
RedStainedGlass ,
RedStainedGlassPane ,
2022-08-22 19:46:30 +02:00
RedTerracotta ,
RedTulip ,
RedWallBanner ,
RedWool ,
2022-06-28 13:45:23 +02:00
RedstoneBlock ,
RedstoneLamp ,
RedstoneOre ,
RedstoneTorch ,
RedstoneWallTorch ,
RedstoneWire ,
2022-08-22 19:46:30 +02:00
ReinforcedDeepslate ,
2022-06-28 13:45:23 +02:00
Repeater ,
RepeatingCommandBlock ,
2026-03-20 23:51:56 +08:00
ResinBlock ,
ResinBrickSlab ,
ResinBrickStairs ,
ResinBrickWall ,
ResinBricks ,
ResinClump ,
2022-06-28 13:45:23 +02:00
RespawnAnchor ,
RootedDirt ,
RoseBush ,
Sand ,
Sandstone ,
SandstoneSlab ,
SandstoneStairs ,
2019-05-01 15:23:30 +02:00
SandstoneWall ,
Scaffolding ,
2022-08-22 19:46:30 +02:00
Sculk ,
SculkCatalyst ,
2022-06-28 13:45:23 +02:00
SculkSensor ,
2022-08-22 19:46:30 +02:00
SculkShrieker ,
SculkVein ,
2022-06-28 13:45:23 +02:00
SeaLantern ,
SeaPickle ,
2022-08-22 19:46:30 +02:00
Seagrass ,
2026-03-21 14:43:56 +08:00
ShortDryGrass ,
2024-02-11 18:13:48 +08:00
ShortGrass ,
2022-06-28 13:45:23 +02:00
Shroomlight ,
ShulkerBox ,
SkeletonSkull ,
SkeletonWallSkull ,
SlimeBlock ,
SmallAmethystBud ,
SmallDripleaf ,
2019-05-01 15:23:30 +02:00
SmithingTable ,
2022-06-28 13:45:23 +02:00
Smoker ,
SmoothBasalt ,
SmoothQuartz ,
SmoothQuartzSlab ,
SmoothQuartzStairs ,
SmoothRedSandstone ,
SmoothRedSandstoneSlab ,
SmoothRedSandstoneStairs ,
SmoothSandstone ,
SmoothSandstoneSlab ,
SmoothSandstoneStairs ,
SmoothStone ,
SmoothStoneSlab ,
2023-06-08 19:27:28 +02:00
SnifferEgg ,
2022-06-28 13:45:23 +02:00
Snow ,
SnowBlock ,
2020-11-29 03:48:35 +08:00
SoulCampfire ,
2022-06-28 13:45:23 +02:00
SoulFire ,
SoulLantern ,
SoulSand ,
SoulSoil ,
SoulTorch ,
SoulWallTorch ,
Spawner ,
Sponge ,
SporeBlossom ,
SpruceButton ,
SpruceDoor ,
SpruceFence ,
SpruceFenceGate ,
2023-01-14 22:18:05 +08:00
SpruceHangingSign ,
2022-06-28 13:45:23 +02:00
SpruceLeaves ,
SpruceLog ,
SprucePlanks ,
SprucePressurePlate ,
SpruceSapling ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
SpruceShelf ,
2022-06-28 13:45:23 +02:00
SpruceSign ,
SpruceSlab ,
SpruceStairs ,
SpruceTrapdoor ,
2023-01-14 22:18:05 +08:00
SpruceWallHangingSign ,
2022-06-28 13:45:23 +02:00
SpruceWallSign ,
SpruceWood ,
StickyPiston ,
Stone ,
StoneBrickSlab ,
StoneBrickStairs ,
StoneBrickWall ,
2022-08-22 19:46:30 +02:00
StoneBricks ,
2022-06-28 13:45:23 +02:00
StoneButton ,
StonePressurePlate ,
StoneSlab ,
StoneStairs ,
2022-08-22 19:46:30 +02:00
Stonecutter ,
2022-06-28 13:45:23 +02:00
StrippedAcaciaLog ,
StrippedAcaciaWood ,
2023-01-14 22:18:05 +08:00
StrippedBambooBlock ,
2022-06-28 13:45:23 +02:00
StrippedBirchLog ,
StrippedBirchWood ,
2023-03-21 23:31:10 +01:00
StrippedCherryLog ,
StrippedCherryWood ,
2020-11-29 03:48:35 +08:00
StrippedCrimsonHyphae ,
2022-06-28 13:45:23 +02:00
StrippedCrimsonStem ,
StrippedDarkOakLog ,
StrippedDarkOakWood ,
StrippedJungleLog ,
StrippedJungleWood ,
2022-08-22 19:46:30 +02:00
StrippedMangroveLog ,
StrippedMangroveWood ,
2022-06-28 13:45:23 +02:00
StrippedOakLog ,
StrippedOakWood ,
feat: add palettes and version constants for MC 1.21.2 (protocol 768)
Add item, entity, block, and metadata palettes for Minecraft 1.21.2:
- ItemPalette1212: 1375 items (42 new: pale oak set, colored bundles,
creaking heart/spawn egg, banner patterns)
- EntityPalette1212: 150 entity types (boats split into per-wood-type
entries, generic boat/chest_boat removed; added creaking,
creaking_transient, pale oak boats)
- Palette1212 (blocks): 1084 block types with state IDs generated from
official 1.21.2 data reports (24 new pale oak blocks, creaking heart,
pale moss variants)
- EntityMetadataPalette: reuses 1206 (serializers unchanged in 1.21.2)
Updated version infrastructure:
- Protocol18.cs: MC_1_21_2_Version = 768, palette switch routing
- ProtocolHandler.cs: version mapping 1.21.2 <-> 768
- Program.cs: MCHighestVersion bumped to 1.21.2
- ItemType.cs, EntityType.cs, Material.cs: new enum entries
Note: packet palette, structured components, and protocol handler
changes for 1.21.2 are not yet implemented — this commit covers
palette/registry groundwork only.
Made-with: Cursor
2026-03-20 03:02:43 +08:00
StrippedPaleOakLog ,
StrippedPaleOakWood ,
2022-06-28 13:45:23 +02:00
StrippedSpruceLog ,
StrippedSpruceWood ,
StrippedWarpedHyphae ,
StrippedWarpedStem ,
StructureBlock ,
StructureVoid ,
SugarCane ,
Sunflower ,
2023-06-08 19:27:28 +02:00
SuspiciousGravel ,
2023-03-21 23:31:10 +01:00
SuspiciousSand ,
2022-06-28 13:45:23 +02:00
SweetBerryBush ,
2026-03-21 14:43:56 +08:00
TallDryGrass ,
2022-06-28 13:45:23 +02:00
TallGrass ,
TallSeagrass ,
Target ,
Terracotta ,
2026-03-21 14:43:56 +08:00
TestBlock ,
TestInstanceBlock ,
2022-06-28 13:45:23 +02:00
TintedGlass ,
Tnt ,
Torch ,
2023-03-21 23:31:10 +01:00
Torchflower ,
TorchflowerCrop ,
2022-06-28 13:45:23 +02:00
TrappedChest ,
2024-02-11 18:13:48 +08:00
TrialSpawner ,
2022-06-28 13:45:23 +02:00
Tripwire ,
TripwireHook ,
TubeCoral ,
TubeCoralBlock ,
TubeCoralFan ,
TubeCoralWallFan ,
Tuff ,
2024-02-11 18:13:48 +08:00
TuffBrickSlab ,
TuffBrickStairs ,
TuffBrickWall ,
TuffBricks ,
TuffSlab ,
TuffStairs ,
TuffWall ,
2022-06-28 13:45:23 +02:00
TurtleEgg ,
2020-11-29 03:48:35 +08:00
TwistingVines ,
TwistingVinesPlant ,
2024-07-02 11:08:46 +02:00
Vault ,
2022-08-22 19:46:30 +02:00
VerdantFroglight ,
2022-06-28 13:45:23 +02:00
Vine ,
VoidAir ,
WallTorch ,
2020-11-29 03:48:35 +08:00
WarpedButton ,
WarpedDoor ,
2022-06-28 13:45:23 +02:00
WarpedFence ,
WarpedFenceGate ,
WarpedFungus ,
2023-01-14 22:18:05 +08:00
WarpedHangingSign ,
2022-06-28 13:45:23 +02:00
WarpedHyphae ,
WarpedNylium ,
WarpedPlanks ,
WarpedPressurePlate ,
WarpedRoots ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WarpedShelf ,
2020-11-29 03:48:35 +08:00
WarpedSign ,
2022-06-28 13:45:23 +02:00
WarpedSlab ,
WarpedStairs ,
WarpedStem ,
WarpedTrapdoor ,
2023-01-14 22:18:05 +08:00
WarpedWallHangingSign ,
2020-11-29 03:48:35 +08:00
WarpedWallSign ,
2022-06-28 13:45:23 +02:00
WarpedWartBlock ,
Water ,
WaterCauldron ,
2024-02-11 18:13:48 +08:00
WaxedChiseledCopper ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedCopperBars ,
2022-02-13 01:10:10 +01:00
WaxedCopperBlock ,
2024-02-11 18:13:48 +08:00
WaxedCopperBulb ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedCopperChain ,
WaxedCopperChest ,
2024-02-11 18:13:48 +08:00
WaxedCopperDoor ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedCopperGolemStatue ,
2024-02-11 18:13:48 +08:00
WaxedCopperGrate ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedCopperLantern ,
2024-02-11 18:13:48 +08:00
WaxedCopperTrapdoor ,
2022-06-28 13:45:23 +02:00
WaxedCutCopper ,
WaxedCutCopperSlab ,
WaxedCutCopperStairs ,
2024-02-11 18:13:48 +08:00
WaxedExposedChiseledCopper ,
2022-02-13 01:10:10 +01:00
WaxedExposedCopper ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedExposedCopperBars ,
2024-02-11 18:13:48 +08:00
WaxedExposedCopperBulb ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedExposedCopperChain ,
WaxedExposedCopperChest ,
2024-02-11 18:13:48 +08:00
WaxedExposedCopperDoor ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedExposedCopperGolemStatue ,
2024-02-11 18:13:48 +08:00
WaxedExposedCopperGrate ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedExposedCopperLantern ,
2024-02-11 18:13:48 +08:00
WaxedExposedCopperTrapdoor ,
2022-02-13 01:10:10 +01:00
WaxedExposedCutCopper ,
2022-06-28 13:45:23 +02:00
WaxedExposedCutCopperSlab ,
2022-02-13 01:10:10 +01:00
WaxedExposedCutCopperStairs ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedExposedLightningRod ,
WaxedLightningRod ,
2024-02-11 18:13:48 +08:00
WaxedOxidizedChiseledCopper ,
2022-06-28 13:45:23 +02:00
WaxedOxidizedCopper ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedOxidizedCopperBars ,
2024-02-11 18:13:48 +08:00
WaxedOxidizedCopperBulb ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedOxidizedCopperChain ,
WaxedOxidizedCopperChest ,
2024-02-11 18:13:48 +08:00
WaxedOxidizedCopperDoor ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedOxidizedCopperGolemStatue ,
2024-02-11 18:13:48 +08:00
WaxedOxidizedCopperGrate ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedOxidizedCopperLantern ,
2024-02-11 18:13:48 +08:00
WaxedOxidizedCopperTrapdoor ,
2022-06-28 13:45:23 +02:00
WaxedOxidizedCutCopper ,
2022-02-13 01:10:10 +01:00
WaxedOxidizedCutCopperSlab ,
2022-06-28 13:45:23 +02:00
WaxedOxidizedCutCopperStairs ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedOxidizedLightningRod ,
2024-02-11 18:13:48 +08:00
WaxedWeatheredChiseledCopper ,
2022-06-28 13:45:23 +02:00
WaxedWeatheredCopper ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedWeatheredCopperBars ,
2024-02-11 18:13:48 +08:00
WaxedWeatheredCopperBulb ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedWeatheredCopperChain ,
WaxedWeatheredCopperChest ,
2024-02-11 18:13:48 +08:00
WaxedWeatheredCopperDoor ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedWeatheredCopperGolemStatue ,
2024-02-11 18:13:48 +08:00
WaxedWeatheredCopperGrate ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedWeatheredCopperLantern ,
2024-02-11 18:13:48 +08:00
WaxedWeatheredCopperTrapdoor ,
2022-06-28 13:45:23 +02:00
WaxedWeatheredCutCopper ,
2022-02-13 01:10:10 +01:00
WaxedWeatheredCutCopperSlab ,
2022-06-28 13:45:23 +02:00
WaxedWeatheredCutCopperStairs ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WaxedWeatheredLightningRod ,
2024-02-11 18:13:48 +08:00
WeatheredChiseledCopper ,
2022-06-28 13:45:23 +02:00
WeatheredCopper ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WeatheredCopperBars ,
2024-02-11 18:13:48 +08:00
WeatheredCopperBulb ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WeatheredCopperChain ,
WeatheredCopperChest ,
2024-02-11 18:13:48 +08:00
WeatheredCopperDoor ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WeatheredCopperGolemStatue ,
2024-02-11 18:13:48 +08:00
WeatheredCopperGrate ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WeatheredCopperLantern ,
2024-02-11 18:13:48 +08:00
WeatheredCopperTrapdoor ,
2022-06-28 13:45:23 +02:00
WeatheredCutCopper ,
WeatheredCutCopperSlab ,
WeatheredCutCopperStairs ,
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
WeatheredLightningRod ,
2022-06-28 13:45:23 +02:00
WeepingVines ,
WeepingVinesPlant ,
WetSponge ,
Wheat ,
WhiteBanner ,
WhiteBed ,
WhiteCandle ,
WhiteCandleCake ,
WhiteCarpet ,
WhiteConcrete ,
WhiteConcretePowder ,
WhiteGlazedTerracotta ,
WhiteShulkerBox ,
WhiteStainedGlass ,
WhiteStainedGlassPane ,
WhiteTerracotta ,
WhiteTulip ,
WhiteWallBanner ,
WhiteWool ,
2026-03-21 14:43:56 +08:00
Wildflowers ,
2022-06-28 13:45:23 +02:00
WitherRose ,
WitherSkeletonSkull ,
WitherSkeletonWallSkull ,
YellowBanner ,
YellowBed ,
YellowCandle ,
YellowCandleCake ,
YellowCarpet ,
YellowConcrete ,
YellowConcretePowder ,
YellowGlazedTerracotta ,
YellowShulkerBox ,
YellowStainedGlass ,
YellowStainedGlassPane ,
YellowTerracotta ,
YellowWallBanner ,
YellowWool ,
ZombieHead ,
ZombieWallHead ,
2015-12-09 23:04:00 +01:00
}
feat: add MC 1.21.9/1.21.10 (protocol 773) version constants and enum values
Register protocol 773 for Minecraft 1.21.9 and 1.21.10 (which share the
same protocol as a hotfix release). Update MCHighestVersion to 1.21.10.
Add 49 new item types (copper tools/armor, shelves, copper chests,
copper golem statue variants, oxidized lightning rods, iron chain, etc.),
2 new entity types (CopperGolem, Mannequin), 38 new block materials,
3 new entity metadata serializer types (CopperGolemState,
WeatheringCopperState, ResolvableProfile), and 6 new packet types
(DebugBlockValue, DebugChunkValue, DebugEntityValue, DebugEvent,
GameTestHighlightPos, CodeOfConduct, AcceptCodeOfConduct).
Chain item/block renamed to IronChain in 1.21.9; old enum values
retained for backward compatibility with older palettes.
Made-with: Cursor
2026-03-21 14:04:42 +08:00
}