@serenityjs/protocol 0.7.1 → 0.7.2-beta-20250201214758
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/dist/index.d.mts +207 -27
- package/dist/index.d.ts +207 -27
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @serenityjs/protocol
|
|
2
2
|
|
|
3
|
+
## 0.7.2-beta-20250201214758
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`557fc64`](https://github.com/SerenityJS/serenity/commit/557fc64f433c15b9fbf1f877c609c7d5ba2dd082) Thanks [@PMK744](https://github.com/PMK744)! - init v0.7.2-beta
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`557fc64`](https://github.com/SerenityJS/serenity/commit/557fc64f433c15b9fbf1f877c609c7d5ba2dd082)]:
|
|
10
|
+
- @serenityjs/nbt@0.7.2-beta-20250201214758
|
|
11
|
+
- @serenityjs/raknet@0.7.2-beta-20250201214758
|
|
12
|
+
|
|
3
13
|
## 0.7.1
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -115,7 +115,7 @@ declare enum Packet {
|
|
|
115
115
|
CameraShake = 159,// 159
|
|
116
116
|
PlayerFog = 160,// 160
|
|
117
117
|
CorrectPlayerMovePrediction = 161,// 161
|
|
118
|
-
|
|
118
|
+
ItemRegistry = 162,// 162
|
|
119
119
|
ClientBoundDebugRenderer = 164,// 164
|
|
120
120
|
SyncActorProperty = 165,// 165
|
|
121
121
|
NpcDialogue = 169,// 169
|
|
@@ -377,7 +377,8 @@ declare enum AbilityIndex {
|
|
|
377
377
|
WorldBuilder = 16,
|
|
378
378
|
NoClip = 17,
|
|
379
379
|
PrivilegedBuilder = 18,
|
|
380
|
-
|
|
380
|
+
VerticalFlySpeed = 19,
|
|
381
|
+
Count = 20
|
|
381
382
|
}
|
|
382
383
|
|
|
383
384
|
declare enum TextPacketType {
|
|
@@ -1753,7 +1754,9 @@ declare enum ActorDataId {
|
|
|
1753
1754
|
PlayerHasDied = 129,
|
|
1754
1755
|
CollisionBox = 130,
|
|
1755
1756
|
VisibleMobEffects = 131,
|
|
1756
|
-
|
|
1757
|
+
FilteredName = 132,
|
|
1758
|
+
EnterBedPositon = 133,
|
|
1759
|
+
Count = 134
|
|
1757
1760
|
}
|
|
1758
1761
|
|
|
1759
1762
|
declare enum ActorFlag {
|
|
@@ -1877,7 +1880,8 @@ declare enum ActorFlag {
|
|
|
1877
1880
|
TimerFlag2 = 116,
|
|
1878
1881
|
TimerFlag3 = 117,
|
|
1879
1882
|
BodyRotationBlocked = 118,
|
|
1880
|
-
|
|
1883
|
+
RendersWhenInvisible = 119,
|
|
1884
|
+
Count = 120
|
|
1881
1885
|
}
|
|
1882
1886
|
|
|
1883
1887
|
declare enum ActorDataType {
|
|
@@ -2396,6 +2400,106 @@ declare enum MaterialRenderMethod {
|
|
|
2396
2400
|
Opaque = "opaque"
|
|
2397
2401
|
}
|
|
2398
2402
|
|
|
2403
|
+
declare enum CreativeItemCategory {
|
|
2404
|
+
All = 0,
|
|
2405
|
+
Construction = 1,
|
|
2406
|
+
Nature = 2,
|
|
2407
|
+
Equipment = 3,
|
|
2408
|
+
Items = 4,
|
|
2409
|
+
ItemCommandOnly = 5,
|
|
2410
|
+
Undefined = 6,
|
|
2411
|
+
NUM_CATEGORIES = 7
|
|
2412
|
+
}
|
|
2413
|
+
|
|
2414
|
+
declare enum WearableSlot {
|
|
2415
|
+
Offhand = "slot.weapon.offhand",
|
|
2416
|
+
Head = "slot.armor.head",
|
|
2417
|
+
Chest = "slot.armor.chest",
|
|
2418
|
+
Legs = "slot.armor.legs",
|
|
2419
|
+
Feet = "slot.armor.feet"
|
|
2420
|
+
}
|
|
2421
|
+
|
|
2422
|
+
declare enum CreativeItemGroup {
|
|
2423
|
+
Planks = "itemGroup.name.planks",
|
|
2424
|
+
Walls = "itemGroup.name.walls",
|
|
2425
|
+
Fence = "itemGroup.name.fence",
|
|
2426
|
+
FenceGate = "itemGroup.name.fenceGate",
|
|
2427
|
+
Stairs = "itemGroup.name.stairs",
|
|
2428
|
+
Door = "itemGroup.name.door",
|
|
2429
|
+
Trapdoor = "itemGroup.name.trapdoor",
|
|
2430
|
+
Glass = "itemGroup.name.glass",
|
|
2431
|
+
GlassPane = "itemGroup.name.glassPane",
|
|
2432
|
+
Slab = "itemGroup.name.slab",
|
|
2433
|
+
StoneBrick = "itemGroup.name.stoneBrick",
|
|
2434
|
+
Sandstone = "itemGroup.name.sandstone",
|
|
2435
|
+
Copper = "itemGroup.name.copper",
|
|
2436
|
+
Wool = "itemGroup.name.wool",
|
|
2437
|
+
WoolCarpet = "itemGroup.name.woolCarpet",
|
|
2438
|
+
ConcretePowder = "itemGroup.name.concretePowder",
|
|
2439
|
+
Concrete = "itemGroup.name.concrete",
|
|
2440
|
+
StainedClay = "itemGroup.name.stainedClay",
|
|
2441
|
+
GlazedTerracotta = "itemGroup.name.glazedTerracotta",
|
|
2442
|
+
Ore = "itemGroup.name.ore",
|
|
2443
|
+
Stone = "itemGroup.name.stone",
|
|
2444
|
+
Log = "itemGroup.name.log",
|
|
2445
|
+
Wood = "itemGroup.name.wood",
|
|
2446
|
+
Leaves = "itemGroup.name.leaves",
|
|
2447
|
+
Sapling = "itemGroup.name.sapling",
|
|
2448
|
+
Seed = "itemGroup.name.seed",
|
|
2449
|
+
Crop = "itemGroup.name.crop",
|
|
2450
|
+
Grass = "itemGroup.name.grass",
|
|
2451
|
+
CoralDecorations = "itemGroup.name.coral_decorations",
|
|
2452
|
+
Flower = "itemGroup.name.flower",
|
|
2453
|
+
Dye = "itemGroup.name.dye",
|
|
2454
|
+
RawFood = "itemGroup.name.rawFood",
|
|
2455
|
+
Mushroom = "itemGroup.name.mushroom",
|
|
2456
|
+
MonsterStoneEgg = "itemGroup.name.monsterStoneEgg",
|
|
2457
|
+
MobEgg = "itemGroup.name.mobEgg",
|
|
2458
|
+
Coral = "itemGroup.name.coral",
|
|
2459
|
+
Sculk = "itemGroup.name.sculk",
|
|
2460
|
+
Helmet = "itemGroup.name.helmet",
|
|
2461
|
+
Chestplate = "itemGroup.name.chestplate",
|
|
2462
|
+
Leggings = "itemGroup.name.leggings",
|
|
2463
|
+
Boots = "itemGroup.name.boots",
|
|
2464
|
+
Sword = "itemGroup.name.sword",
|
|
2465
|
+
Axe = "itemGroup.name.axe",
|
|
2466
|
+
Pickaxe = "itemGroup.name.pickaxe",
|
|
2467
|
+
Shovel = "itemGroup.name.shovel",
|
|
2468
|
+
Hoe = "itemGroup.name.hoe",
|
|
2469
|
+
Arrow = "itemGroup.name.arrow",
|
|
2470
|
+
CookedFood = "itemGroup.name.cookedFood",
|
|
2471
|
+
MiscFood = "itemGroup.name.miscFood",
|
|
2472
|
+
GoatHorn = "itemGroup.name.goatHorn",
|
|
2473
|
+
Bundles = "itemGroup.name.bundles",
|
|
2474
|
+
HorseArmor = "itemGroup.name.horseArmor",
|
|
2475
|
+
Potion = "itemGroup.name.potion",
|
|
2476
|
+
SplashPotion = "itemGroup.name.splashPotion",
|
|
2477
|
+
LingeringPotion = "itemGroup.name.lingeringPotion",
|
|
2478
|
+
OminousBottle = "itemGroup.name.ominousBottle",
|
|
2479
|
+
Bed = "itemGroup.name.bed",
|
|
2480
|
+
Candles = "itemGroup.name.candles",
|
|
2481
|
+
Anvil = "itemGroup.name.anvil",
|
|
2482
|
+
Chest = "itemGroup.name.chest",
|
|
2483
|
+
ShulkerBox = "itemGroup.name.shulkerBox",
|
|
2484
|
+
Record = "itemGroup.name.record",
|
|
2485
|
+
Sign = "itemGroup.name.sign",
|
|
2486
|
+
HangingSign = "itemGroup.name.hanging_sign",
|
|
2487
|
+
Skull = "itemGroup.name.skull",
|
|
2488
|
+
EnchantedBook = "itemGroup.name.enchantedBook",
|
|
2489
|
+
Boat = "itemGroup.name.boat",
|
|
2490
|
+
ChestBoat = "itemGroup.name.chestboat",
|
|
2491
|
+
Rail = "itemGroup.name.rail",
|
|
2492
|
+
Minecart = "itemGroup.name.minecart",
|
|
2493
|
+
Buttons = "itemGroup.name.buttons",
|
|
2494
|
+
PressurePlate = "itemGroup.name.pressurePlate",
|
|
2495
|
+
Banner = "itemGroup.name.banner",
|
|
2496
|
+
BannerPattern = "itemGroup.name.banner_pattern",
|
|
2497
|
+
PotterySherds = "itemGroup.name.potterySherds",
|
|
2498
|
+
SmithingTemplates = "itemGroup.name.smithing_templates",
|
|
2499
|
+
Firework = "itemGroup.name.firework",
|
|
2500
|
+
FireworkStars = "itemGroup.name.fireworkStars"
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2399
2503
|
declare class LoginTokens extends DataType {
|
|
2400
2504
|
client: string;
|
|
2401
2505
|
identity: string;
|
|
@@ -3048,10 +3152,36 @@ declare class NetworkBlockTypeDefinition extends DataType {
|
|
|
3048
3152
|
}
|
|
3049
3153
|
|
|
3050
3154
|
declare class ItemData extends DataType {
|
|
3051
|
-
|
|
3052
|
-
|
|
3155
|
+
/**
|
|
3156
|
+
* The identifier of the item type.
|
|
3157
|
+
*/
|
|
3158
|
+
identifier: string;
|
|
3159
|
+
/**
|
|
3160
|
+
* The network identifier of the item type.
|
|
3161
|
+
*/
|
|
3053
3162
|
networkId: number;
|
|
3054
|
-
|
|
3163
|
+
/**
|
|
3164
|
+
* Whether the item type is component based.
|
|
3165
|
+
*/
|
|
3166
|
+
isComponentBased: boolean;
|
|
3167
|
+
/**
|
|
3168
|
+
* The version of the item type.
|
|
3169
|
+
*/
|
|
3170
|
+
itemVersion: number;
|
|
3171
|
+
/**
|
|
3172
|
+
* The additional properties of the item type.
|
|
3173
|
+
* This is also known as the vanilla component data.
|
|
3174
|
+
*/
|
|
3175
|
+
properties: CompoundTag<unknown>;
|
|
3176
|
+
/**
|
|
3177
|
+
* Creates a new item type.
|
|
3178
|
+
* @param identifier The identifier of the item type.
|
|
3179
|
+
* @param networkId The network identifier of the item type.
|
|
3180
|
+
* @param isComponentBased Whether the item type is component based.
|
|
3181
|
+
* @param itemVersion The version of the item type.
|
|
3182
|
+
* @param properties The additional properties of the item type.
|
|
3183
|
+
*/
|
|
3184
|
+
constructor(identifier: string, networkId: number, isComponentBased: boolean, itemVersion: number, properties: CompoundTag<unknown>);
|
|
3055
3185
|
static read(stream: BinaryStream): Array<ItemData>;
|
|
3056
3186
|
static write(stream: BinaryStream, value: Array<ItemData>): void;
|
|
3057
3187
|
}
|
|
@@ -3403,6 +3533,10 @@ declare class AbilityLayer extends DataType {
|
|
|
3403
3533
|
* The fly speed of the layer.
|
|
3404
3534
|
*/
|
|
3405
3535
|
readonly flySpeed: number;
|
|
3536
|
+
/**
|
|
3537
|
+
* The vertical fly speed of the layer.
|
|
3538
|
+
*/
|
|
3539
|
+
readonly verticalFlySpeed: number;
|
|
3406
3540
|
/**
|
|
3407
3541
|
* The walk speed of the layer.
|
|
3408
3542
|
*/
|
|
@@ -3412,9 +3546,10 @@ declare class AbilityLayer extends DataType {
|
|
|
3412
3546
|
* @param type The type of the layer.
|
|
3413
3547
|
* @param abilities The abilities of the layer.
|
|
3414
3548
|
* @param flySpeed The fly speed of the layer.
|
|
3549
|
+
* @param verticalFlySpeed The vertical fly speed of the layer.
|
|
3415
3550
|
* @param walkSpeed The walk speed of the layer.
|
|
3416
3551
|
*/
|
|
3417
|
-
constructor(type: AbilityLayerType, abilities: Array<AbilitySet>, flySpeed: number, walkSpeed: number);
|
|
3552
|
+
constructor(type: AbilityLayerType, abilities: Array<AbilitySet>, flySpeed: number, verticalFlySpeed: number, walkSpeed: number);
|
|
3418
3553
|
static read(stream: BinaryStream): Array<AbilityLayer>;
|
|
3419
3554
|
static write(stream: BinaryStream, value: Array<AbilityLayer>): void;
|
|
3420
3555
|
}
|
|
@@ -3987,17 +4122,28 @@ declare class NetworkItemInstanceDescriptor extends DataType {
|
|
|
3987
4122
|
static write(stream: BinaryStream, value: NetworkItemInstanceDescriptor): void;
|
|
3988
4123
|
}
|
|
3989
4124
|
|
|
3990
|
-
declare class
|
|
3991
|
-
|
|
3992
|
-
|
|
3993
|
-
|
|
3994
|
-
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
|
|
3998
|
-
|
|
3999
|
-
|
|
4000
|
-
|
|
4125
|
+
declare class CreativeItem extends DataType {
|
|
4126
|
+
/**
|
|
4127
|
+
* The index of the item in the creative menu.
|
|
4128
|
+
*/
|
|
4129
|
+
itemIndex: number;
|
|
4130
|
+
/**
|
|
4131
|
+
* The item instance of the creative item.
|
|
4132
|
+
*/
|
|
4133
|
+
itemInstance: NetworkItemInstanceDescriptor;
|
|
4134
|
+
/**
|
|
4135
|
+
* The group index of the creative item.
|
|
4136
|
+
*/
|
|
4137
|
+
groupIndex: number;
|
|
4138
|
+
/**
|
|
4139
|
+
* Creates a new creative item.
|
|
4140
|
+
* @param itemIndex The index of the item in the creative menu.
|
|
4141
|
+
* @param itemInstance The item instance of the creative item.
|
|
4142
|
+
* @param groupIndex The group index of the creative item.
|
|
4143
|
+
*/
|
|
4144
|
+
constructor(itemIndex: number, itemInstance: NetworkItemInstanceDescriptor, groupIndex: number);
|
|
4145
|
+
static read(stream: BinaryStream): Array<CreativeItem>;
|
|
4146
|
+
static write(stream: BinaryStream, value: Array<CreativeItem>): void;
|
|
4001
4147
|
}
|
|
4002
4148
|
|
|
4003
4149
|
interface Transactions {
|
|
@@ -5843,6 +5989,30 @@ declare class PlayerAuthInputTransaction extends DataType {
|
|
|
5843
5989
|
static read(stream: BinaryStream, _: unknown, data: PlayerAuthInputData): InputTransaction | null;
|
|
5844
5990
|
}
|
|
5845
5991
|
|
|
5992
|
+
declare class CreativeGroup extends DataType {
|
|
5993
|
+
/**
|
|
5994
|
+
* The category of the creative group.
|
|
5995
|
+
*/
|
|
5996
|
+
category: CreativeItemCategory;
|
|
5997
|
+
/**
|
|
5998
|
+
* The name of the creative group.
|
|
5999
|
+
*/
|
|
6000
|
+
name: string;
|
|
6001
|
+
/**
|
|
6002
|
+
* The icon of the creative group.
|
|
6003
|
+
*/
|
|
6004
|
+
icon: NetworkItemInstanceDescriptor;
|
|
6005
|
+
/**
|
|
6006
|
+
* Creates a new creative group.
|
|
6007
|
+
* @param category The category of the creative group.
|
|
6008
|
+
* @param name The name of the creative group.
|
|
6009
|
+
* @param icon The icon of the creative group.
|
|
6010
|
+
*/
|
|
6011
|
+
constructor(category: CreativeItemCategory, name: string, icon: NetworkItemInstanceDescriptor);
|
|
6012
|
+
static read(stream: BinaryStream): Array<CreativeGroup>;
|
|
6013
|
+
static write(stream: BinaryStream, value: Array<CreativeGroup>): void;
|
|
6014
|
+
}
|
|
6015
|
+
|
|
5846
6016
|
/**
|
|
5847
6017
|
* Represents a Minecraft Bedrock Edition data packet
|
|
5848
6018
|
*/
|
|
@@ -5969,7 +6139,14 @@ declare class ContainerOpenPacket extends DataPacket {
|
|
|
5969
6139
|
}
|
|
5970
6140
|
|
|
5971
6141
|
declare class CreativeContentPacket extends DataPacket {
|
|
5972
|
-
|
|
6142
|
+
/**
|
|
6143
|
+
* The groups that are displayed within the creative inventory menu.
|
|
6144
|
+
*/
|
|
6145
|
+
groups: Array<CreativeGroup>;
|
|
6146
|
+
/**
|
|
6147
|
+
* The items that are displayed within the creative inventory menu, grouped by their category.
|
|
6148
|
+
*/
|
|
6149
|
+
items: Array<CreativeItem>;
|
|
5973
6150
|
}
|
|
5974
6151
|
|
|
5975
6152
|
declare class DisconnectPacket extends DataPacket {
|
|
@@ -6004,8 +6181,11 @@ declare class InventoryTransactionPacket extends DataPacket {
|
|
|
6004
6181
|
transaction: InventoryTransaction;
|
|
6005
6182
|
}
|
|
6006
6183
|
|
|
6007
|
-
declare class
|
|
6008
|
-
|
|
6184
|
+
declare class ItemRegistryPacket extends DataPacket {
|
|
6185
|
+
/**
|
|
6186
|
+
* The item type definitions that are registered within the item registry.
|
|
6187
|
+
*/
|
|
6188
|
+
definitions: Array<ItemData>;
|
|
6009
6189
|
}
|
|
6010
6190
|
|
|
6011
6191
|
declare class ItemStackRequestPacket extends DataPacket {
|
|
@@ -6355,7 +6535,6 @@ declare class StartGamePacket extends DataPacket {
|
|
|
6355
6535
|
* The custom block type definitions that will be used in the world.
|
|
6356
6536
|
*/
|
|
6357
6537
|
blockTypeDefinitions: Array<NetworkBlockTypeDefinition>;
|
|
6358
|
-
items: Array<ItemData>;
|
|
6359
6538
|
multiplayerCorrelationId: string;
|
|
6360
6539
|
serverAuthoritativeInventory: boolean;
|
|
6361
6540
|
engine: string;
|
|
@@ -6992,7 +7171,7 @@ declare const Packets: {
|
|
|
6992
7171
|
159: typeof CameraShakePacket;
|
|
6993
7172
|
160: typeof PlayerFogPacket;
|
|
6994
7173
|
161: typeof CorrectPlayerMovePredictionPacket;
|
|
6995
|
-
162: typeof
|
|
7174
|
+
162: typeof ItemRegistryPacket;
|
|
6996
7175
|
164: typeof ClientBoundDebugRendererPacket;
|
|
6997
7176
|
165: typeof SyncActorPropertyPacket;
|
|
6998
7177
|
169: typeof NpcDialoguePacket;
|
|
@@ -7064,11 +7243,12 @@ declare const DefaultAbilityValues: {
|
|
|
7064
7243
|
17: boolean;
|
|
7065
7244
|
18: boolean;
|
|
7066
7245
|
19: boolean;
|
|
7246
|
+
20: boolean;
|
|
7067
7247
|
};
|
|
7068
7248
|
|
|
7069
|
-
declare const PROTOCOL_VERSION =
|
|
7070
|
-
declare const MINECRAFT_VERSION = "1.21.
|
|
7249
|
+
declare const PROTOCOL_VERSION = 776;
|
|
7250
|
+
declare const MINECRAFT_VERSION = "1.21.60.27";
|
|
7071
7251
|
declare const MINECRAFT_TICK_SPEED = 50;
|
|
7072
7252
|
declare const SHIELD_NETWORK_ID = 380;
|
|
7073
7253
|
|
|
7074
|
-
export { AbilityIndex, AbilityLayer, AbilityLayerType, AbilitySet, AbilitySetId, ActorDamageCause, ActorDataId, ActorDataType, ActorEvent, ActorEventPacket, ActorFlag, ActorLink, ActorLinkType, AddEntityPacket, AddItemActorPacket, AddPlayerPacket, AnimateAction, AnimateEntity, AnimateEntityPacket, AnimateId, AnimatePacket, Attribute, AttributeModifier, AttributeName, AvailableActorIdentifiersPacket, AvailableCommandsPacket, AwardAchievementPacket, BehaviorPackInfo, BiomeDefinitionListPacket, BlockAction, BlockActorDataPacket, BlockEventPacket, BlockEventType, BlockFace, BlockPickRequestPacket, BlockPosition, BookActions, BookEditAction, BookEditPacket, BossEventAdd, BossEventColor, BossEventPacket, BossEventUpdate, BossEventUpdateType, CameraAudioListener, CameraFadeDuration, CameraFadeInstruction, CameraInstructions, CameraInstructionsPacket, CameraPreset, CameraPresetsPacket, CameraSetEasing, CameraSetInstruction, CameraShakePacket, ChainedSubcommandValues, ChangeDimensionPacket, ChunkCoords, ChunkRadiusUpdatePacket, ClientBoundDebugRendererPacket, ClientBoundMapItemDataPacket, type ClientData, ClientPredictedVehicle, ClientToServerHandshakePacket, ClientboundCloseFormPacket, Color, CommandBlockActorRuntimeId, CommandBlockMode, CommandBlockSettings, CommandBlockUpdatePacket, CommandOriginData, CommandOutputData, CommandOutputMessage, CommandOutputPacket, CommandParameterType, CommandPermissionLevel, CommandRequestPacket, Commands, CompletedUsingItemPacket, ComplexInventoryTransaction,
|
|
7254
|
+
export { AbilityIndex, AbilityLayer, AbilityLayerType, AbilitySet, AbilitySetId, ActorDamageCause, ActorDataId, ActorDataType, ActorEvent, ActorEventPacket, ActorFlag, ActorLink, ActorLinkType, AddEntityPacket, AddItemActorPacket, AddPlayerPacket, AnimateAction, AnimateEntity, AnimateEntityPacket, AnimateId, AnimatePacket, Attribute, AttributeModifier, AttributeName, AvailableActorIdentifiersPacket, AvailableCommandsPacket, AwardAchievementPacket, BehaviorPackInfo, BiomeDefinitionListPacket, BlockAction, BlockActorDataPacket, BlockEventPacket, BlockEventType, BlockFace, BlockPickRequestPacket, BlockPosition, BookActions, BookEditAction, BookEditPacket, BossEventAdd, BossEventColor, BossEventPacket, BossEventUpdate, BossEventUpdateType, CameraAudioListener, CameraFadeDuration, CameraFadeInstruction, CameraInstructions, CameraInstructionsPacket, CameraPreset, CameraPresetsPacket, CameraSetEasing, CameraSetInstruction, CameraShakePacket, ChainedSubcommandValues, ChangeDimensionPacket, ChunkCoords, ChunkRadiusUpdatePacket, ClientBoundDebugRendererPacket, ClientBoundMapItemDataPacket, type ClientData, ClientPredictedVehicle, ClientToServerHandshakePacket, ClientboundCloseFormPacket, Color, CommandBlockActorRuntimeId, CommandBlockMode, CommandBlockSettings, CommandBlockUpdatePacket, CommandOriginData, CommandOutputData, CommandOutputMessage, CommandOutputPacket, CommandParameterType, CommandPermissionLevel, CommandRequestPacket, Commands, CompletedUsingItemPacket, ComplexInventoryTransaction, CompressionMethod, ContainerClosePacket, ContainerDataType, ContainerId, ContainerMixDataEntry, ContainerName, ContainerOpenPacket, ContainerSetDataPacket, ContainerType, CorrectPlayerMovePredictionPacket, CraftingDataEntry, CraftingDataEntryType, CraftingDataPacket, CreativeContentPacket, CreativeGroup, CreativeItem, CreativeItemCategory, CreativeItemGroup, CurrectStructureFeaturePacket, DataItem, DataPacket, DeathInfoPacket, DeathParameters, DebugEventPacket, DebugInfoPacket, DebuggerProtocolVersion, DefaultAbilityValues, DeviceOS, Difficulty, DimensionDataPacket, DimensionDefinition, DimensionDefinitionGroup, DimensionType, DisconnectMessage, DisconnectPacket, DisconnectReason, DisplaySlotType, DynamicEnums, EasingType, EffectType, EmoteFlags, EmoteListPacket, EmotePacket, Emotes, EnchantOption, Enchantment, EntityAttributes, EntityPickRequestPacket, EnumConstraints, EnumValues, Enums, EquipmentSlot, Experiments, Fogs, Framer, FullContainerName, FurnanceRecipe, GameRule, GameRuleType, GameRules, GameRulesChangedPacket, Gamemode, GeneratorType, HudElement, HudElementData, HudVisibility, HurtArmorPacket, type IPosition, type IdentityData, InputData, InputLockFlags, InputMode, InputTransaction, InteractAction, InteractPacket, InteractPosition, InteractionMode, InternalType, InventoryAction, InventoryContentPacket, InventoryLayout, InventoryLeftTab, InventoryRightTab, InventorySlotPacket, InventorySource, InventorySourceType, InventoryTransaction, InventoryTransactionPacket, ItemData, ItemInstanceUserData, ItemRegistryPacket, ItemReleaseInventoryTransaction, ItemReleaseInventoryTransactionType, ItemStackActionTakePlace, type ItemStackContainer, ItemStackRequest, ItemStackRequestAction, ItemStackRequestActionBeanconPayment, ItemStackRequestActionCraftCreative, ItemStackRequestActionCraftGrindstoneRequest, ItemStackRequestActionCraftLoomRequest, ItemStackRequestActionCraftRecipe, ItemStackRequestActionCraftRecipeAuto, ItemStackRequestActionCreate, ItemStackRequestActionDestroyConsume, ItemStackRequestActionDrop, ItemStackRequestActionMineBlock, ItemStackRequestActionOptional, ItemStackRequestActionResultsDeprecated, ItemStackRequestActionSwap, ItemStackRequestActionType, ItemStackRequestPacket, ItemStackRequestSlotInfo, ItemStackResponsePacket, ItemStackResponses, ItemStackStatus, ItemStacks, ItemTrackedType, ItemUseInventoryTransaction, ItemUseInventoryTransactionType, ItemUseMethod, ItemUseOnEntityInventoryTransaction, ItemUseOnEntityInventoryTransactionType, type LegacyTelemetryEventData, LegacyTelemetryEventPacket, LegacyTransaction, LevelChunkPacket, LevelEvent, LevelEventGenericPacket, LevelEventPacket, LevelSoundEvent, LevelSoundEventPacket, Links, LoginPacket, type LoginTokenData, LoginTokens, MINECRAFT_TICK_SPEED, MINECRAFT_VERSION, MapCreationBits, MapDecoration, MapDecorationBits, MapDecorationType, MapInfoRequestPacket, MapPixel, MapScale, MapTextureUpdateBits, MapTrackedItems, MaterialReducerDataEntry, MaterialRenderMethod, Materials, MemoryTier, MobArmorEquipmentPacket, MobEffectEvents, MobEffectPacket, MobEquipmentPacket, ModalFormCanceled, ModalFormCanceledReason, ModalFormData, ModalFormRequestPacket, ModalFormResponsePacket, ModalFormType, MoveActorAbsolutePacket, MoveActorDeltaPacket, MoveDeltaFlags, MoveMode, MovePlayerPacket, MovementEffectPacket, MovementEffectType, NbtLoop, NetworkBlockTypeDefinition, NetworkChunkPublisherUpdatePacket, NetworkItemInstanceDescriptor, NetworkItemStackDescriptor, NetworkSettingsPacket, NetworkStackLatencyPacket, NpcDialogueAction, NpcDialoguePacket, NpcRequestPacket, NpcRequestType, ObjectiveSortOrder, OnScreenTextureAnimationPacket, OpenSignPacket, Optional, PROTOCOL_VERSION, PackLinks, PackType, Packet, PacketViolationWarningPacket, Packets, Patterns, PermissionFlag, PermissionLevel, PlayMode, PlaySoundPacket, PlayStatus, PlayStatusPacket, PlayerActionPacket, PlayerActionType, PlayerAuthInputData, PlayerAuthInputPacket, PlayerAuthInputTransaction, PlayerAuthItemStackRequest, PlayerBlockActionData, PlayerBlockActions, PlayerEnchantOptionsPacket, PlayerFogPacket, PlayerHotbarPacket, PlayerInputTick, PlayerListAction, PlayerListPacket, PlayerListRecord, PlayerSkinPacket, PlayerStartItemCooldownPacket, PostFixes, PotionMixDataEntry, PredictedResult, PredictionType, PropertySyncData, RecipeIngredient, RecipeUnlockingRequirement, RemoveEntityPacket, RemoveObjectivePacket, RequestChunkRadiusPacket, RequestNetworkSettingsPacket, RequestPermissionsPacket, ResourceIdVersions, ResourcePackChunkDataPacket, ResourcePackChunkRequestPacket, ResourcePackClientResponsePacket, ResourcePackDataInfoPacket, ResourcePackIds, ResourcePackResponse, ResourcePackStackPacket, ResourcePacksInfoPacket, RespawnPacket, RespawnState, RiderJumpPacket, Rotation, RotationByte, SHIELD_NETWORK_ID, ScoreEntry, ScoreboardActionType, ScoreboardIdentity, ScoreboardIdentityAction, ScoreboardIdentityType, ScriptMessagePacket, SerializedSkin, ServerAuthMovementMode, ServerSettingsResponsePacket, ServerToClientHandshakePacket, ServerboundDiagnosticsPacket, ServerboundLoadingScreenPacketPacket, ServerboundLoadingScreenType, SetActorDataPacket, SetActorLinkPacket, SetActorMotionPacket, SetCommandsEnabledPacket, SetDifficultyPacket, SetDisplayObjectivePacket, SetHealthPacket, SetHudPacket, SetLocalPlayerAsInitializedPacket, SetPlayerGameTypePacket, SetPlayerInventoryOptionsPacket, SetScorePacket, SetScoreboardIdentityPacket, SetSpawnPositionPacket, SetTimePacket, SetTitlePacket, ShakeAction, ShakeType, ShapedRecipe, ShapelessRecipe, ShowCreditsPacket, ShowProfilePacket, SignedBlockPosition, SkinAnimation, SkinImage, SkinPersonaPiece, SkinPersonaTintPiece, SpawnParticleEffectPacket, SpawnType, StartGamePacket, StopSoundPacket, StructureBlockUpdatePacket, StructureEditorData, StructureSettings, Subcommands, SyncActorPropertyPacket, TakeItemActorPacket, TelemetryEventType, TeleportCause, TextPacket, TextPacketType, TextParameters, TextSource, TexturePackInfo, TitleType, ToastRequestPacket, TradeOffer, TransactionSourceType, TransferPacket, TriggerType, type TrimDataMaterial, TrimDataPacket, type TrimDataPattern, UnlockedRecipesEntry, UnlockedRecipesPacket, UnlockedRecipesType, UnlockingContext, UpdateAbilitiesPacket, UpdateAdventureSettingsPacket, UpdateAttributesPacket, UpdateBlockFlagsType, UpdateBlockLayerType, UpdateBlockPacket, UpdateClientInputLocksPacket, UpdateTradePacket, UserDataShapelessRecipe, VariableStringArray as VarStringArray, Vector2f, Vector3f, ViolationSeverity, ViolationType, WearableSlot, getPacketId };
|