mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00: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
This commit is contained in:
parent
5e8d715358
commit
2af0409d00
10 changed files with 153 additions and 13 deletions
|
|
@ -26,6 +26,7 @@ namespace MinecraftClient.Inventory
|
|||
AcaciaPlanks,
|
||||
AcaciaPressurePlate,
|
||||
AcaciaSapling,
|
||||
AcaciaShelf,
|
||||
AcaciaSign,
|
||||
AcaciaSlab,
|
||||
AcaciaStairs,
|
||||
|
|
@ -72,6 +73,7 @@ namespace MinecraftClient.Inventory
|
|||
BambooPlanks,
|
||||
BambooPressurePlate,
|
||||
BambooRaft,
|
||||
BambooShelf,
|
||||
BambooSign,
|
||||
BambooSlab,
|
||||
BambooStairs,
|
||||
|
|
@ -103,6 +105,7 @@ namespace MinecraftClient.Inventory
|
|||
BirchPlanks,
|
||||
BirchPressurePlate,
|
||||
BirchSapling,
|
||||
BirchShelf,
|
||||
BirchSign,
|
||||
BirchSlab,
|
||||
BirchStairs,
|
||||
|
|
@ -234,6 +237,7 @@ namespace MinecraftClient.Inventory
|
|||
CherryPlanks,
|
||||
CherryPressurePlate,
|
||||
CherrySapling,
|
||||
CherryShelf,
|
||||
CherrySign,
|
||||
CherrySlab,
|
||||
CherryStairs,
|
||||
|
|
@ -295,12 +299,27 @@ namespace MinecraftClient.Inventory
|
|||
CookedRabbit,
|
||||
CookedSalmon,
|
||||
Cookie,
|
||||
CopperAxe,
|
||||
CopperBlock,
|
||||
CopperBoots,
|
||||
CopperBulb,
|
||||
CopperChest,
|
||||
CopperChestplate,
|
||||
CopperDoor,
|
||||
CopperGolemSpawnEgg,
|
||||
CopperGolemStatue,
|
||||
CopperGrate,
|
||||
CopperHelmet,
|
||||
CopperHoe,
|
||||
CopperHorseArmor,
|
||||
CopperIngot,
|
||||
CopperLeggings,
|
||||
CopperNugget,
|
||||
CopperOre,
|
||||
CopperPickaxe,
|
||||
CopperShovel,
|
||||
CopperSword,
|
||||
CopperTorch,
|
||||
CopperTrapdoor,
|
||||
Cornflower,
|
||||
CowSpawnEgg,
|
||||
|
|
@ -327,6 +346,7 @@ namespace MinecraftClient.Inventory
|
|||
CrimsonPlanks,
|
||||
CrimsonPressurePlate,
|
||||
CrimsonRoots,
|
||||
CrimsonShelf,
|
||||
CrimsonSign,
|
||||
CrimsonSlab,
|
||||
CrimsonStairs,
|
||||
|
|
@ -371,6 +391,7 @@ namespace MinecraftClient.Inventory
|
|||
DarkOakPlanks,
|
||||
DarkOakPressurePlate,
|
||||
DarkOakSapling,
|
||||
DarkOakShelf,
|
||||
DarkOakSign,
|
||||
DarkOakSlab,
|
||||
DarkOakStairs,
|
||||
|
|
@ -481,12 +502,15 @@ namespace MinecraftClient.Inventory
|
|||
ExposedChiseledCopper,
|
||||
ExposedCopper,
|
||||
ExposedCopperBulb,
|
||||
ExposedCopperChest,
|
||||
ExposedCopperDoor,
|
||||
ExposedCopperGolemStatue,
|
||||
ExposedCopperGrate,
|
||||
ExposedCopperTrapdoor,
|
||||
ExposedCutCopper,
|
||||
ExposedCutCopperSlab,
|
||||
ExposedCutCopperStairs,
|
||||
ExposedLightningRod,
|
||||
EyeArmorTrimSmithingTemplate,
|
||||
Farmland,
|
||||
Feather,
|
||||
|
|
@ -627,6 +651,7 @@ namespace MinecraftClient.Inventory
|
|||
IronBars,
|
||||
IronBlock,
|
||||
IronBoots,
|
||||
IronChain,
|
||||
IronChestplate,
|
||||
IronDoor,
|
||||
IronGolemSpawnEgg,
|
||||
|
|
@ -657,6 +682,7 @@ namespace MinecraftClient.Inventory
|
|||
JunglePlanks,
|
||||
JunglePressurePlate,
|
||||
JungleSapling,
|
||||
JungleShelf,
|
||||
JungleSign,
|
||||
JungleSlab,
|
||||
JungleStairs,
|
||||
|
|
@ -769,6 +795,7 @@ namespace MinecraftClient.Inventory
|
|||
MangrovePressurePlate,
|
||||
MangrovePropagule,
|
||||
MangroveRoots,
|
||||
MangroveShelf,
|
||||
MangroveSign,
|
||||
MangroveSlab,
|
||||
MangroveStairs,
|
||||
|
|
@ -868,6 +895,7 @@ namespace MinecraftClient.Inventory
|
|||
OakPlanks,
|
||||
OakPressurePlate,
|
||||
OakSapling,
|
||||
OakShelf,
|
||||
OakSign,
|
||||
OakSlab,
|
||||
OakStairs,
|
||||
|
|
@ -900,12 +928,15 @@ namespace MinecraftClient.Inventory
|
|||
OxidizedChiseledCopper,
|
||||
OxidizedCopper,
|
||||
OxidizedCopperBulb,
|
||||
OxidizedCopperChest,
|
||||
OxidizedCopperDoor,
|
||||
OxidizedCopperGolemStatue,
|
||||
OxidizedCopperGrate,
|
||||
OxidizedCopperTrapdoor,
|
||||
OxidizedCutCopper,
|
||||
OxidizedCutCopperSlab,
|
||||
OxidizedCutCopperStairs,
|
||||
OxidizedLightningRod,
|
||||
PackedIce,
|
||||
PackedMud,
|
||||
Painting,
|
||||
|
|
@ -924,6 +955,7 @@ namespace MinecraftClient.Inventory
|
|||
PaleOakPlanks,
|
||||
PaleOakPressurePlate,
|
||||
PaleOakSapling,
|
||||
PaleOakShelf,
|
||||
PaleOakSign,
|
||||
PaleOakSlab,
|
||||
PaleOakStairs,
|
||||
|
|
@ -1197,6 +1229,7 @@ namespace MinecraftClient.Inventory
|
|||
SprucePlanks,
|
||||
SprucePressurePlate,
|
||||
SpruceSapling,
|
||||
SpruceShelf,
|
||||
SpruceSign,
|
||||
SpruceSlab,
|
||||
SpruceStairs,
|
||||
|
|
@ -1319,6 +1352,7 @@ namespace MinecraftClient.Inventory
|
|||
WarpedPlanks,
|
||||
WarpedPressurePlate,
|
||||
WarpedRoots,
|
||||
WarpedShelf,
|
||||
WarpedSign,
|
||||
WarpedSlab,
|
||||
WarpedStairs,
|
||||
|
|
@ -1329,7 +1363,9 @@ namespace MinecraftClient.Inventory
|
|||
WaxedChiseledCopper,
|
||||
WaxedCopperBlock,
|
||||
WaxedCopperBulb,
|
||||
WaxedCopperChest,
|
||||
WaxedCopperDoor,
|
||||
WaxedCopperGolemStatue,
|
||||
WaxedCopperGrate,
|
||||
WaxedCopperTrapdoor,
|
||||
WaxedCutCopper,
|
||||
|
|
@ -1338,40 +1374,53 @@ namespace MinecraftClient.Inventory
|
|||
WaxedExposedChiseledCopper,
|
||||
WaxedExposedCopper,
|
||||
WaxedExposedCopperBulb,
|
||||
WaxedExposedCopperChest,
|
||||
WaxedExposedCopperDoor,
|
||||
WaxedExposedCopperGolemStatue,
|
||||
WaxedExposedCopperGrate,
|
||||
WaxedExposedCopperTrapdoor,
|
||||
WaxedExposedCutCopper,
|
||||
WaxedExposedCutCopperSlab,
|
||||
WaxedExposedCutCopperStairs,
|
||||
WaxedExposedLightningRod,
|
||||
WaxedLightningRod,
|
||||
WaxedOxidizedChiseledCopper,
|
||||
WaxedOxidizedCopper,
|
||||
WaxedOxidizedCopperBulb,
|
||||
WaxedOxidizedCopperChest,
|
||||
WaxedOxidizedCopperDoor,
|
||||
WaxedOxidizedCopperGolemStatue,
|
||||
WaxedOxidizedCopperGrate,
|
||||
WaxedOxidizedCopperTrapdoor,
|
||||
WaxedOxidizedCutCopper,
|
||||
WaxedOxidizedCutCopperSlab,
|
||||
WaxedOxidizedCutCopperStairs,
|
||||
WaxedOxidizedLightningRod,
|
||||
WaxedWeatheredChiseledCopper,
|
||||
WaxedWeatheredCopper,
|
||||
WaxedWeatheredCopperBulb,
|
||||
WaxedWeatheredCopperChest,
|
||||
WaxedWeatheredCopperDoor,
|
||||
WaxedWeatheredCopperGolemStatue,
|
||||
WaxedWeatheredCopperGrate,
|
||||
WaxedWeatheredCopperTrapdoor,
|
||||
WaxedWeatheredCutCopper,
|
||||
WaxedWeatheredCutCopperSlab,
|
||||
WaxedWeatheredCutCopperStairs,
|
||||
WaxedWeatheredLightningRod,
|
||||
WayfinderArmorTrimSmithingTemplate,
|
||||
WeatheredChiseledCopper,
|
||||
WeatheredCopper,
|
||||
WeatheredCopperBulb,
|
||||
WeatheredCopperChest,
|
||||
WeatheredCopperDoor,
|
||||
WeatheredCopperGolemStatue,
|
||||
WeatheredCopperGrate,
|
||||
WeatheredCopperTrapdoor,
|
||||
WeatheredCutCopper,
|
||||
WeatheredCutCopperSlab,
|
||||
WeatheredCutCopperStairs,
|
||||
WeatheredLightningRod,
|
||||
WeepingVines,
|
||||
WetSponge,
|
||||
Wheat,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue