@serenityjs/core 0.8.0-beta-20250410012746 → 0.8.0-beta-20250412193217

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/dist/index.d.ts CHANGED
@@ -4,7 +4,6 @@ import Emitter, { Emitter as Emitter$1 } from '@serenityjs/emitter';
4
4
  import { Packet, DataPacket, LoginPacket, PlayStatusPacket, ServerToClientHandshakePacket, ClientToServerHandshakePacket, DisconnectPacket, ResourcePacksInfoPacket, ResourcePackStackPacket, ResourcePackClientResponsePacket, TextPacket, SetTimePacket, StartGamePacket, AddPlayerPacket, AddEntityPacket, RemoveEntityPacket, AddItemActorPacket, TakeItemActorPacket, MoveActorAbsolutePacket, MovePlayerPacket, RiderJumpPacket, UpdateBlockPacket, LevelEventPacket, BlockEventPacket, ActorEventPacket, UpdateAttributesPacket, InventoryTransactionPacket, SetActorLinkPacket, CompletedUsingItemPacket, MobEquipmentPacket, MobArmorEquipmentPacket, MobEffectPacket, InteractPacket, BlockPickRequestPacket, BookEditPacket, PlayerStartItemCooldownPacket, EntityPickRequestPacket, PlayerActionPacket, HurtArmorPacket, SetActorDataPacket, SetActorMotionPacket, AnimatePacket, RespawnPacket, ContainerOpenPacket, ContainerClosePacket, PlayerHotbarPacket, InventoryContentPacket, InventorySlotPacket, ContainerSetDataPacket, CraftingDataPacket, BlockActorDataPacket, LevelChunkPacket, SetCommandsEnabledPacket, ChangeDimensionPacket, SetPlayerGameTypePacket, PlayerListPacket, RequestChunkRadiusPacket, ChunkRadiusUpdatePacket, GameRulesChangedPacket, BossEventPacket, LegacyTelemetryEventPacket, AvailableCommandsPacket, CommandRequestPacket, CommandBlockUpdatePacket, CommandOutputPacket, ResourcePackDataInfoPacket, SetSpawnPositionPacket, StructureBlockUpdatePacket, SetHealthPacket, SetDifficultyPacket, DimensionDataPacket, CameraInstructionsPacket, ResourcePackChunkDataPacket, TrimDataPacket, ShowCreditsPacket, CameraPresetsPacket, ResourcePackChunkRequestPacket, UnlockedRecipesPacket, TransferPacket, PlaySoundPacket, SetTitlePacket, PlayerSkinPacket, NpcRequestPacket, OpenSignPacket, CameraShakePacket, PlayerFogPacket, ModalFormRequestPacket, ModalFormResponsePacket, ServerSettingsResponsePacket, ShowProfilePacket, RemoveObjectivePacket, SetDisplayObjectivePacket, SetScorePacket, MoveActorDeltaPacket, SetScoreboardIdentityPacket, NetworkStackLatencyPacket, AvailableActorIdentifiersPacket, SpawnParticleEffectPacket, SetLocalPlayerAsInitializedPacket, NetworkChunkPublisherUpdatePacket, BiomeDefinitionListPacket, LevelSoundEventPacket, LevelEventGenericPacket, OnScreenTextureAnimationPacket, StopSoundPacket, EmotePacket, NetworkSettingsPacket, PlayerAuthInputPacket, CreativeContentPacket, PlayerEnchantOptionsPacket, SyncActorPropertyPacket, ItemStackRequestPacket, ItemStackResponsePacket, EmoteListPacket, DebugInfoPacket, PacketViolationWarningPacket, AnimateEntityPacket, CorrectPlayerMovePredictionPacket, ClientBoundMapItemDataPacket, MapInfoRequestPacket, ItemRegistryPacket, ClientBoundDebugRendererPacket, UpdateTradePacket, NpcDialoguePacket, ScriptMessagePacket, RequestPermissionsPacket, ToastRequestPacket, UpdateAbilitiesPacket, UpdateAdventureSettingsPacket, DeathInfoPacket, RequestNetworkSettingsPacket, SetPlayerInventoryOptionsPacket, SetHudPacket, AwardAchievementPacket, ClientboundCloseFormPacket, ServerboundLoadingScreenPacketPacket, UpdateClientInputLocksPacket, CurrectStructureFeaturePacket, ServerboundDiagnosticsPacket, MovementEffectPacket, UpdateSubchunkBlocksPacket, UpdateBlockSyncPacket, SetLastHurtByPacket, UpdatePlayerGameTypePacket, SetDefaultGamemodePacket, MotionPredictHintsPacket, ClientCacheStatusPacket, AddPaintingPacket, DimensionType, Vector3f, Gamemode, Difficulty, GameRule, ActorFlag, AbilityIndex, WearableSlot, ContainerType, ContainerId, ItemUseMethod, NetworkItemInstanceDescriptor, NetworkItemStackDescriptor, Enchantment, EquipmentSlot, CreativeItemCategory, CreativeItemGroup, BlockPosition, BlockFace, NetworkBlockTypeDefinition, IPosition, ScoreboardIdentityType, ObjectiveSortOrder, DisplaySlotType, ModalFormType, BossEventColor, ActorDataId, DataItem, AttributeName, Attribute, HudElement, DeviceOS, MemoryTier, InputMode, InteractionMode, PlayMode, SerializedSkin, DisconnectReason, ContainerName, Rotation, EffectType, Vector2f, ActorDamageCause, ChunkCoords, Color, UpdateBlockLayerType, MaterialRenderMethod, CompressionMethod, PackType, InventoryAction, ItemUseInventoryTransaction, ItemUseOnEntityInventoryTransaction, LoginTokens, LoginTokenData, InputData, PlayerBlockActionData, ItemStackRequestActionMineBlock } from '@serenityjs/protocol';
5
5
  import { BinaryStream } from '@serenityjs/binarystream';
6
6
  import { CompoundTag, TagType, StringTag, IntTag, LongTag, ByteTag, Tag, ListTag, ShortTag } from '@serenityjs/nbt';
7
- import { Worker as Worker$1 } from 'node:worker_threads';
8
7
  import * as readline from 'readline';
9
8
  import { Leveldb } from '@serenityjs/leveldb';
10
9
 
@@ -10439,6 +10438,12 @@ declare class Chunk {
10439
10438
  * Check if the chunk is empty.
10440
10439
  */
10441
10440
  isEmpty(): boolean;
10441
+ /**
10442
+ * Insert a chunk into the current chunk.
10443
+ * @param source The chunk to insert.
10444
+ * @returns The current chunk with the updated sub chunks.
10445
+ */
10446
+ insert(source: Chunk): Chunk;
10442
10447
  /**
10443
10448
  * Serialize the chunk into a buffer.
10444
10449
  * @param chunk The chunk to serialize.
@@ -13408,49 +13413,11 @@ declare class EffectPallete {
13408
13413
  removeEffect(type: EffectType): void;
13409
13414
  }
13410
13415
 
13411
- declare class TerrainWorker {
13412
- /**
13413
- * The path of the worker file.
13414
- */
13415
- static path: string;
13416
- /**
13417
- * The properties of the worker.
13418
- */
13419
- readonly properties: TerrainGeneratorProperties;
13420
- /**
13421
- * The generator for the worker.
13422
- */
13423
- readonly generator: typeof TerrainGenerator;
13424
- /**
13425
- * Creates a new worker instance.
13426
- */
13427
- constructor(generator: typeof TerrainGenerator, properties: TerrainGeneratorProperties);
13428
- /**
13429
- * Generates a chunk at the specified coordinates.
13430
- * @param _cx The chunk x coordinate.
13431
- * @param _cz The chunk z coordinate.
13432
- * @param _type The dimension type of the chunk.
13433
- */
13434
- apply(_cx: number, _cz: number, _type: DimensionType): Chunk;
13435
- /**
13436
- * Initializes the worker thread.
13437
- * @param properties The properties to use for the worker.
13438
- */
13439
- static initialize(_properties: TerrainGeneratorProperties): Worker$1;
13440
- }
13441
-
13442
- declare function Worker(generator: typeof TerrainGenerator): (worker: typeof TerrainWorker) => void;
13443
-
13444
13416
  declare class TerrainGenerator {
13445
13417
  /**
13446
13418
  * The identifier of the generator.
13447
13419
  */
13448
13420
  static readonly identifier: string;
13449
- /**
13450
- * The terrain worker for the generator.
13451
- * This is set by the worker decorator, which will create a worker thread for the generator.
13452
- */
13453
- static _worker: typeof TerrainWorker | null;
13454
13421
  /**
13455
13422
  * The identifier of the generator.
13456
13423
  */
@@ -13459,22 +13426,11 @@ declare class TerrainGenerator {
13459
13426
  * The dimension of the generator.
13460
13427
  */
13461
13428
  readonly dimension: Dimension;
13462
- /**
13463
- * The world of the generator.
13464
- */
13465
- readonly world: World;
13466
13429
  /**
13467
13430
  * The properties of the generator.
13468
13431
  */
13469
13432
  readonly properties: TerrainGeneratorProperties;
13470
- /**
13471
- * The chunks that are queued for threaded generation.
13472
- */
13473
- readonly queue: Map<bigint, Chunk>;
13474
- /**
13475
- * The worker for the generator.
13476
- */
13477
- readonly worker: Worker$1 | null;
13433
+ readonly path: string;
13478
13434
  /**
13479
13435
  * Creates a new terrain generator with the specified properties.
13480
13436
  * @param properties The properties to use for the generator.
@@ -13482,38 +13438,24 @@ declare class TerrainGenerator {
13482
13438
  constructor(dimension: Dimension, properties?: Partial<TerrainGeneratorProperties>);
13483
13439
  /**
13484
13440
  * Generates a chunk at the specified coordinates.
13485
- * @param _cx The chunk x coordinate.
13486
- * @param _cz The chunk z coordinate.
13487
- */
13488
- apply(_cx: number, _cz: number): Chunk;
13489
- /**
13490
- * Handoff a chunk to the worker for generation.
13491
- * @param chunk The chunk to handoff.
13492
- */
13493
- protected handoff(chunk: Chunk): void;
13494
- /**
13495
- * Processes a chunk that was generated by the worker.
13496
- * @param chunk The chunk that was generated.
13441
+ * @param cx The chunk x coordinate.
13442
+ * @param cz The chunk z coordinate.
13497
13443
  */
13498
- protected process(chunk: Chunk): void;
13444
+ apply(_cx: number, _cz: number): Promise<Chunk>;
13499
13445
  }
13500
13446
 
13501
13447
  declare class VoidGenerator extends TerrainGenerator {
13502
13448
  static readonly identifier = "void";
13503
- apply(cx: number, cz: number): Chunk;
13449
+ apply(cx: number, cz: number): Promise<Chunk>;
13504
13450
  }
13505
13451
 
13506
13452
  declare class SuperflatGenerator extends TerrainGenerator {
13507
13453
  static readonly identifier = "superflat";
13508
- apply(cx: number, cz: number): Chunk;
13509
- }
13510
-
13511
- declare class SuperflatWorker extends TerrainWorker {
13512
- static path: string;
13513
13454
  bedrock: BlockPermutation<BlockIdentifier.Bedrock>;
13514
13455
  dirt: BlockPermutation<BlockIdentifier.Dirt>;
13515
13456
  grass: BlockPermutation<BlockIdentifier.GrassBlock>;
13516
- apply(cx: number, cz: number, type: DimensionType): Chunk;
13457
+ readonly path: string;
13458
+ apply(cx: number, cz: number): Promise<Chunk>;
13517
13459
  }
13518
13460
 
13519
13461
  declare class TickSchedule {
@@ -13758,6 +13700,10 @@ declare class WorldProvider {
13758
13700
  * The identifier of the provider.
13759
13701
  */
13760
13702
  readonly identifier: string;
13703
+ /**
13704
+ * The cached chunks for the provider.
13705
+ */
13706
+ readonly chunks: Map<Dimension, Map<bigint, Chunk>>;
13761
13707
  /**
13762
13708
  * The world that the provider belongs to.
13763
13709
  */
@@ -13792,18 +13738,17 @@ declare class WorldProvider {
13792
13738
  */
13793
13739
  writeBuffer(_key: string, _value: Buffer): void;
13794
13740
  /**
13795
- * Reads a chunk for a specified dimension from the provider.
13796
- * @param cx The chunk x coordinate.
13797
- * @param cz The chunk z coordinate.
13741
+ * Read a chunk for a specified dimension from the provider.
13742
+ * @param chunk The chunk where the data will be written to.
13798
13743
  * @param dimension The dimension to read the chunk from.
13799
13744
  */
13800
- readChunk(_cx: number, _cz: number, _dimension: Dimension): Chunk;
13745
+ readChunk(_chunk: Chunk, _dimension: Dimension): Promise<Chunk>;
13801
13746
  /**
13802
13747
  * Writes a chunk for a specified dimension to the provider.
13803
13748
  * @param chunk The chunk to write.
13804
13749
  * @param dimension The dimension to write the chunk to.
13805
13750
  */
13806
- writeChunk(_chunk: Chunk, _dimension: Dimension): void;
13751
+ writeChunk(_chunk: Chunk, _dimension: Dimension): Promise<void>;
13807
13752
  /**
13808
13753
  * Reads the available entities for a specified dimension.
13809
13754
  * @param dimension The dimension to get the available entities for.
@@ -13845,20 +13790,21 @@ declare class WorldProvider {
13845
13790
  /**
13846
13791
  * Reads the available blocks for a specified dimension.
13847
13792
  * @param dimension The dimension to read the available blocks for.
13793
+ * @returns An array of block positions.
13848
13794
  */
13849
- readAvailableBlocks(_dimension: Dimension): Array<bigint>;
13795
+ readAvailableBlocks(_dimension: Dimension): Array<BlockPosition>;
13850
13796
  /**
13851
13797
  * Writes the available blocks for a specified dimension.
13852
13798
  * @param dimension The dimension to write the available blocks for.
13853
- * @param blocks The blocks to write.
13799
+ * @param positions The positions of the blocks to write.
13854
13800
  */
13855
- writeAvailableBlocks(_dimension: Dimension, _blocks: Array<bigint>): void;
13801
+ writeAvailableBlocks(_dimension: Dimension, _positions: Array<BlockPosition>): void;
13856
13802
  /**
13857
13803
  * Reads a block from the provider.
13858
- * @param hash The position hash to read the block from.
13804
+ * @param position The position of the block to read.
13859
13805
  * @param dimension The dimension to read the block from.
13860
13806
  */
13861
- readBlock(_hash: bigint, _dimension: Dimension): BlockEntry;
13807
+ readBlock(_position: BlockPosition, _dimension: Dimension): BlockEntry;
13862
13808
  /**
13863
13809
  * Writes a block to the provider.
13864
13810
  * @param block The block to write.
@@ -13871,8 +13817,8 @@ declare class WorldProvider {
13871
13817
  * @param serenity The serenity instance to use.
13872
13818
  * @param properties The properties to use for the provider.
13873
13819
  */
13874
- static initialize(_serenity: Serenity, _properties: WorldProviderProperties): void;
13875
- static create(_serenity: Serenity, _properties: WorldProviderProperties, _worldProperties?: Partial<WorldProperties>): World;
13820
+ static initialize(_serenity: Serenity, _properties: WorldProviderProperties): Promise<void>;
13821
+ static create(_serenity: Serenity, _properties: WorldProviderProperties, _worldProperties?: Partial<WorldProperties>): Promise<World>;
13876
13822
  }
13877
13823
 
13878
13824
  declare class InternalProvider extends WorldProvider {
@@ -13895,15 +13841,15 @@ declare class InternalProvider extends WorldProvider {
13895
13841
  readonly buffers: Map<string, Buffer>;
13896
13842
  readBuffer(key: string): Buffer;
13897
13843
  writeBuffer(key: string, buffer: Buffer): void;
13898
- readChunk(cx: number, cz: number, dimension: Dimension): Chunk;
13899
- writeChunk(chunk: Chunk, dimension: Dimension): void;
13844
+ readChunk(chunk: Chunk, dimension: Dimension): Promise<Chunk>;
13845
+ writeChunk(chunk: Chunk, dimension: Dimension): Promise<void>;
13900
13846
  getAvailableEntities(dimension: Dimension): Array<bigint>;
13901
13847
  readEntity(uniqueId: bigint, dimension: Dimension): EntityEntry;
13902
13848
  writeEntity(entity: EntityEntry, dimension: Dimension): void;
13903
13849
  readPlayer(uuid: string, dimension: Dimension): PlayerEntry | null;
13904
13850
  writePlayer(player: PlayerEntry, dimension: Dimension): void;
13905
- static initialize(): void;
13906
- static create(serenity: Serenity, _properties: WorldProviderProperties, worldProperties?: WorldProperties): World;
13851
+ static initialize(): Promise<void>;
13852
+ static create(serenity: Serenity, _properties: WorldProviderProperties, worldProperties?: WorldProperties): Promise<World>;
13907
13853
  }
13908
13854
 
13909
13855
  declare class LevelDBProvider extends WorldProvider {
@@ -13926,8 +13872,8 @@ declare class LevelDBProvider extends WorldProvider {
13926
13872
  onSave(): void;
13927
13873
  readBuffer(key: string): Buffer;
13928
13874
  writeBuffer(key: string, value: Buffer): void;
13929
- readChunk(cx: number, cz: number, dimension: Dimension): Chunk;
13930
- writeChunk(chunk: Chunk, dimension: Dimension): void;
13875
+ readChunk(chunk: Chunk, dimension: Dimension): Promise<Chunk>;
13876
+ writeChunk(chunk: Chunk, dimension: Dimension): Promise<void>;
13931
13877
  /**
13932
13878
  * Write the chunk version to the database.
13933
13879
  * @param cx The chunk X coordinate.
@@ -13967,14 +13913,14 @@ declare class LevelDBProvider extends WorldProvider {
13967
13913
  writeEntity(entity: EntityEntry, dimension: Dimension): void;
13968
13914
  readPlayer(uuid: string, dimension: Dimension): PlayerEntry | null;
13969
13915
  writePlayer(player: PlayerEntry, dimension: Dimension): void;
13970
- readAvailableBlocks(dimension: Dimension): Array<bigint>;
13971
- writeAvailableBlocks(dimension: Dimension, blocks: Array<bigint>): void;
13972
- readBlock(hash: bigint, dimension: Dimension): BlockEntry;
13916
+ readAvailableBlocks(dimension: Dimension): Array<BlockPosition>;
13917
+ writeAvailableBlocks(dimension: Dimension, positions: Array<BlockPosition>): void;
13918
+ readBlock(position: BlockPosition, dimension: Dimension): BlockEntry;
13973
13919
  writeBlock(block: BlockEntry, dimension: Dimension): void;
13974
13920
  readProperty(key: Buffer): Buffer;
13975
13921
  writeProperty(key: Buffer, value: Buffer): void;
13976
- static initialize(serenity: Serenity, properties: WorldProviderProperties): void;
13977
- static create(serenity: Serenity, properties: WorldProviderProperties, worldProperties?: Partial<WorldProperties>): World;
13922
+ static initialize(serenity: Serenity, properties: WorldProviderProperties): Promise<void>;
13923
+ static create(serenity: Serenity, properties: WorldProviderProperties, worldProperties?: Partial<WorldProperties>): Promise<World>;
13978
13924
  /**
13979
13925
  * Build a subchunk key for the database.
13980
13926
  * @param cx The chunk X coordinate.
@@ -17074,7 +17020,7 @@ declare class Serenity extends Emitter<WorldEventSignals & ServerEvents> {
17074
17020
  * @param properties The properties to use for the world
17075
17021
  * @returns The created world, if successful; otherwise, false
17076
17022
  */
17077
- createWorld(provider: typeof WorldProvider, properties?: Partial<WorldProperties>): World | false;
17023
+ createWorld(provider: typeof WorldProvider, properties?: Partial<WorldProperties>): Promise<World | null>;
17078
17024
  getWorld(): World;
17079
17025
  getWorld(identifier: string): World | null;
17080
17026
  /**
@@ -17399,4 +17345,4 @@ declare class Astar {
17399
17345
  private inSet;
17400
17346
  }
17401
17347
 
17402
- export { AbilityEnum, AbilityMap, type AcaciaButtonBlock, type AcaciaDoorBlock, type AcaciaDoubleSlabBlock, type AcaciaFenceGateBlock, type AcaciaHangingSignBlock, type AcaciaLeavesBlock, type AcaciaLogBlock, type AcaciaPressurePlateBlock, type AcaciaSaplingBlock, type AcaciaSlabBlock, type AcaciaStairsBlock, type AcaciaStandingSignBlock, type AcaciaTrapdoorBlock, type AcaciaWallSignBlock, type AcaciaWoodBlock, ActionForm, type ActionFormButton, type ActionFormImage, type ActivatorRailBlock, ActorFlagMap, type AlliumBlock, type AmethystClusterBlock, type AndesiteDoubleSlabBlock, type AndesiteSlabBlock, type AndesiteStairsBlock, type AnvilBlock, Astar, type Attachment, AttributeMap, type AzaleaLeavesBlock, type AzaleaLeavesFloweredBlock, type AzureBluetBlock, type BambooBlock, type BambooBlockBlock, type BambooButtonBlock, type BambooDoorBlock, type BambooDoubleSlabBlock, type BambooFenceGateBlock, type BambooHangingSignBlock, type BambooLeafSize, type BambooMosaicDoubleSlabBlock, type BambooMosaicSlabBlock, type BambooMosaicStairsBlock, type BambooPressurePlateBlock, type BambooSaplingBlock, type BambooSlabBlock, type BambooStairsBlock, type BambooStalkThickness, type BambooStandingSignBlock, type BambooTrapdoorBlock, type BambooWallSignBlock, type BarrelBlock, type BasaltBlock, type BedBlock, type BedrockBlock, type BeeNestBlock, type BeehiveBlock, type BeetrootBlock, type BellBlock, type BigDripleafBlock, type BigDripleafTilt, BinaryHeap, type BinaryItem, type BirchButtonBlock, type BirchDoorBlock, type BirchDoubleSlabBlock, type BirchFenceGateBlock, type BirchHangingSignBlock, type BirchLeavesBlock, type BirchLogBlock, type BirchPressurePlateBlock, type BirchSaplingBlock, type BirchSlabBlock, type BirchStairsBlock, type BirchStandingSignBlock, type BirchTrapdoorBlock, type BirchWallSignBlock, type BirchWoodBlock, type BlackCandleBlock, type BlackCandleCakeBlock, type BlackGlazedTerracottaBlock, type BlackstoneDoubleSlabBlock, type BlackstoneSlabBlock, type BlackstoneStairsBlock, type BlackstoneWallBlock, type BlastFurnaceBlock, Block, BlockButtonTrait, BlockCardinalDirectionTrait, BlockCommandBlockTrait, BlockContainer, BlockCraftingTableTrait, type BlockDestroyOptions, BlockDirectionTrait, type BlockEntry, BlockEnum, BlockFacingDirection, BlockIdentifier, type BlockInteractionOptions, BlockInventoryTrait, type BlockInventoryTraitOptions, BlockOpenBitTrait, BlockPalette, BlockPermutation, BlockPermutationUpdateSignal, BlockPillarAxisTrait, type BlockPlacementOptions, type BlockProperties, type BlockState, BlockStorage, BlockToolType, BlockTorchDirectionTrait, BlockTrait, BlockTraits, BlockType, BlockTypeCollisionBoxComponent, BlockTypeComponent, BlockTypeCraftingTableComponent, type BlockTypeDefinition, BlockTypeFrictionComponent, BlockTypeGeometryComponent, BlockTypeHardnessComponent, BlockTypeInteractableComponent, BlockTypeLightEmissionComponent, BlockTypeMaterialInstancesComponent, type BlockTypeNbtDefinition, type BlockTypeNbtPermutationDefinition, type BlockTypeNbtStateDefinition, type BlockTypeProperties, BlockTypeSelectionBoxComponent, BlockTypeTransformationComponent, BlockUpdateSignal, BlockUpperTrait, BlockUpsideDownBitTrait, BlockWeirdoDirectionTrait, type BlueCandleBlock, type BlueCandleCakeBlock, type BlueGlazedTerracottaBlock, type BlueOrchidBlock, type BoneBlockBlock, BooleanEnum, type BorderBlockBlock, Bossbar, type BrainCoralBlock, type BrainCoralBlockBlock, type BrainCoralFanBlock, type BrainCoralWallFanBlock, type BrewingStandBlock, type BrickDoubleSlabBlock, type BrickSlabBlock, type BrickStairsBlock, type BrownCandleBlock, type BrownCandleCakeBlock, type BrownGlazedTerracottaBlock, type BrownMushroomBlockBlock, type BubbleColumnBlock, type BubbleCoralBlock, type BubbleCoralBlockBlock, type BubbleCoralFanBlock, type BubbleCoralWallFanBlock, type CactusBlock, type CakeBlock, type CalibratedSculkSensorBlock, type CampfireBlock, type CandleBlock, type CandleCakeBlock, CardinalDirection, type CarrotsBlock, type CarvedPumpkinBlock, type CauldronBlock, type CauldronLiquid, type CaveVinesBlock, type CaveVinesBodyWithBerriesBlock, type CaveVinesHeadWithBerriesBlock, type ChainBlock, type ChainCommandBlockBlock, type ChemistryTableBlock, type ChemistryTableType, type CherryButtonBlock, type CherryDoorBlock, type CherryDoubleSlabBlock, type CherryFenceGateBlock, type CherryHangingSignBlock, type CherryLeavesBlock, type CherryLogBlock, type CherryPressurePlateBlock, type CherrySaplingBlock, type CherrySlabBlock, type CherryStairsBlock, type CherryStandingSignBlock, type CherryTrapdoorBlock, type CherryWallSignBlock, type CherryWoodBlock, type ChestBlock, type ChippedAnvilBlock, type ChiselType, type ChiseledBookshelfBlock, type ChiseledQuartzBlockBlock, type ChiseledRedSandstoneBlock, type ChiseledSandstoneBlock, type ChiseledStoneBricksBlock, type ChorusFlowerBlock, Chunk, ChunkReadySignal, ClientSystemInfo, type CobbledDeepslateDoubleSlabBlock, type CobbledDeepslateSlabBlock, type CobbledDeepslateStairsBlock, type CobbledDeepslateWallBlock, type CobblestoneDoubleSlabBlock, type CobblestoneSlabBlock, type CobblestoneWallBlock, type CocoaBlock, type ColoredTorchBpBlock, type ColoredTorchRgBlock, Command, CommandArgumentPointer, type CommandArguments, type CommandBlockBlock, type CommandCallback, type CommandContext, CommandExecutionState, type CommandOverload, CommandPalette, CommandRegistry, type CommandRegistryCallback, type CommandResponse, CommonCommands, type ComposterBlock, ConsoleInterface, Container, type CopperBulbBlock, type CopperDoorBlock, type CopperTrapdoorBlock, type CoralColor, type CornflowerBlock, type CrackedState, type CrackedStoneBricksBlock, type CrafterBlock, CreateContentGroup, CreativeItemDescriptor, type CrimsonButtonBlock, type CrimsonDoorBlock, type CrimsonDoubleSlabBlock, type CrimsonFenceGateBlock, type CrimsonHangingSignBlock, type CrimsonHyphaeBlock, type CrimsonPressurePlateBlock, type CrimsonSlabBlock, type CrimsonStairsBlock, type CrimsonStandingSignBlock, type CrimsonStemBlock, type CrimsonTrapdoorBlock, type CrimsonWallSignBlock, type CustomBlockProperties, CustomBlockType, CustomEntityType, CustomEnum, CustomItemType, type CutCopperSlabBlock, type CutCopperStairsBlock, type CutRedSandstoneBlock, type CutRedSandstoneDoubleSlabBlock, type CutRedSandstoneSlabBlock, type CutSandstoneBlock, type CutSandstoneDoubleSlabBlock, type CutSandstoneSlabBlock, type CyanCandleBlock, type CyanCandleCakeBlock, type CyanGlazedTerracottaBlock, type Damage, type DamagedAnvilBlock, type DarkOakButtonBlock, type DarkOakDoorBlock, type DarkOakDoubleSlabBlock, type DarkOakFenceGateBlock, type DarkOakHangingSignBlock, type DarkOakLeavesBlock, type DarkOakLogBlock, type DarkOakPressurePlateBlock, type DarkOakSaplingBlock, type DarkOakSlabBlock, type DarkOakStairsBlock, type DarkOakTrapdoorBlock, type DarkOakWoodBlock, type DarkPrismarineBlock, type DarkPrismarineDoubleSlabBlock, type DarkPrismarineSlabBlock, type DarkPrismarineStairsBlock, type DarkoakStandingSignBlock, type DarkoakWallSignBlock, type DaylightDetectorBlock, type DaylightDetectorInvertedBlock, type DeadBrainCoralBlock, type DeadBrainCoralBlockBlock, type DeadBrainCoralFanBlock, type DeadBrainCoralWallFanBlock, type DeadBubbleCoralBlock, type DeadBubbleCoralBlockBlock, type DeadBubbleCoralFanBlock, type DeadBubbleCoralWallFanBlock, type DeadFireCoralBlock, type DeadFireCoralBlockBlock, type DeadFireCoralFanBlock, type DeadFireCoralWallFanBlock, type DeadHornCoralBlock, type DeadHornCoralBlockBlock, type DeadHornCoralFanBlock, type DeadHornCoralWallFanBlock, type DeadTubeCoralBlock, type DeadTubeCoralBlockBlock, type DeadTubeCoralFanBlock, type DeadTubeCoralWallFanBlock, type DecoratedPotBlock, type DeepslateBlock, type DeepslateBrickDoubleSlabBlock, type DeepslateBrickSlabBlock, type DeepslateBrickStairsBlock, type DeepslateBrickWallBlock, type DeepslateTileDoubleSlabBlock, type DeepslateTileSlabBlock, type DeepslateTileStairsBlock, type DeepslateTileWallBlock, DefaultDimensionProperties, DefaultItemStackProperties, DefaultWorldProviderProperties, type DeprecatedAnvilBlock, type DetectorRailBlock, DialogueForm, type DialogueFormButton, type DialogueFormProperties, Dimension, type DimensionProperties, type DioriteDoubleSlabBlock, type DioriteSlabBlock, type DioriteStairsBlock, type DispenserBlock, type DoubleCutCopperSlabBlock, type DoublePlantType, type DripstoneThickness, type DropperBlock, EffectAddSignal, EffectRemoveSignal, type EndBrickStairsBlock, type EndPortalFrameBlock, type EndRodBlock, type EndStoneBrickDoubleSlabBlock, type EndStoneBrickSlabBlock, type EnderChestBlock, Entity, EntityAirSupplyTrait, EntityAttributeTrait, EntityAttributeUpdateSignal, EntityCollisionTrait, EntityContainer, type EntityDeathOptions, type EntityDespawnOptions, EntityDespawnedSignal, EntityDiedSignal, EntityDimensionChangeSignal, type EntityEffectOptions, EntityEffectsTrait, type EntityEntry, EntityEnum, EntityEquipmentTrait, type EntityFallOnBlockTraitEvent, EntityFlagUpdateSignal, EntityGravityTrait, EntityHealthChangedSignal, EntityHealthTrait, EntityHitSignal, EntityHurtSignal, EntityIdentifier, EntityInteractMethod, EntityInventoryTrait, type EntityInventoryTraitOptions, EntityInvisibilityTrait, EntityItemStackTrait, EntityLookAtPlayerTrait, EntityMetadataUpdateSignal, EntityMovementTrait, type EntityNpcDialogueProperty, EntityNpcTrait, EntityPalette, EntityPhysicsTrait, type EntityProperties, type EntityQueryOptions, type EntitySpawnOptions, EntitySpawnedSignal, EntityTrait, EntityTraitEnum, EntityTraits, EntityType, Enum, EventSignal, type ExposedCopperBulbBlock, type ExposedCopperDoorBlock, type ExposedCopperTrapdoorBlock, type ExposedCutCopperSlabBlock, type ExposedCutCopperStairsBlock, type ExposedDoubleCutCopperSlabBlock, FacingDirection, type FarmlandBlock, type FenceGateBlock, type FernBlock, type FireBlock, type FireCoralBlock, type FireCoralBlockBlock, type FireCoralFanBlock, type FireCoralWallFanBlock, type FlowerPotBlock, type FlowerType, type FlowingLavaBlock, type FlowingWaterBlock, Form, type FormParticipant, type FormResult, type FrameBlock, type FrostedIceBlock, type FurnaceBlock, GamemodeEnum, type GenericBlockState, type GlowFrameBlock, type GlowLichenBlock, type GoldenRailBlock, type GraniteDoubleSlabBlock, type GraniteSlabBlock, type GraniteStairsBlock, type GrayCandleBlock, type GrayCandleCakeBlock, type GrayGlazedTerracottaBlock, type GreenCandleBlock, type GreenCandleCakeBlock, type GreenGlazedTerracottaBlock, type GrindstoneBlock, Handlers, type HayBlockBlock, type HeavyWeightedPressurePlateBlock, type HopperBlock, type HornCoralBlock, type HornCoralBlockBlock, type HornCoralFanBlock, type HornCoralWallFanBlock, type IPermissionDefinition, type IPermissionGroup, type IPermissionMember, type IPermissions, type InfestedChiseledStoneBricksBlock, type InfestedCobblestoneBlock, type InfestedCrackedStoneBricksBlock, type InfestedDeepslateBlock, type InfestedMossyStoneBricksBlock, type InfestedStoneBlock, type InfestedStoneBricksBlock, IntegerEnum, InternalProvider, type IronDoorBlock, type IronTrapdoorBlock, ItemBundleTrait, ItemCategory, ItemDisplayTrait, ItemDrop, ItemDurabilityTrait, ItemEnchantableTrait, ItemEnum, ItemFoodTrait, ItemGroup, ItemIdentifier, ItemKeepOnDieTrait, ItemLiquidContainerTrait, ItemLockMode, ItemLockTrait, ItemPalette, ItemShooterTrait, ItemSpawnEggTrait, ItemStack, type ItemStackEntry, type ItemStackProperties, type ItemStorage, ItemSwordTrait, ItemToolTier, ItemToolType, ItemTrait, ItemTraits, ItemType, ItemTypeBlockPlacerComponent, ItemTypeCanDestroyInCreativeComponent, ItemTypeComponent, ItemTypeComponentCollection, ItemTypeDisplayNameComponent, ItemTypeIconComponent, ItemTypeItemPropertiesComponent, ItemTypeMaxStackComponent, type ItemTypeProperties, ItemTypeWearableComponent, type ItemUseOnBlockOptions, type ItemUseOnEntityOptions, type ItemUseOptions, type ItemWeaponComponent, ItemWeaponTrait, ItemWearableTier, ItemWearableTrait, type ItemWearableTraitProperties, type Items, type JSONLikeArray, type JSONLikeObject, type JSONLikeValue, type JigsawBlock, JsonObjectEnum, type JungleButtonBlock, type JungleDoorBlock, type JungleDoubleSlabBlock, type JungleFenceGateBlock, type JungleHangingSignBlock, type JungleLeavesBlock, type JungleLogBlock, type JunglePressurePlateBlock, type JungleSaplingBlock, type JungleSlabBlock, type JungleStairsBlock, type JungleStandingSignBlock, type JungleTrapdoorBlock, type JungleWallSignBlock, type JungleWoodBlock, type KelpBlock, type LadderBlock, type LanternBlock, type LargeAmethystBudBlock, type LargeFernBlock, type LavaBlock, type LecternBlock, LevelDBProvider, type LeverBlock, type LeverDirection, type LightBlock0Block, type LightBlock10Block, type LightBlock11Block, type LightBlock12Block, type LightBlock13Block, type LightBlock14Block, type LightBlock15Block, type LightBlock1Block, type LightBlock2Block, type LightBlock3Block, type LightBlock4Block, type LightBlock5Block, type LightBlock6Block, type LightBlock7Block, type LightBlock8Block, type LightBlock9Block, type LightBlueCandleBlock, type LightBlueCandleCakeBlock, type LightBlueGlazedTerracottaBlock, type LightGrayCandleBlock, type LightGrayCandleCakeBlock, type LightWeightedPressurePlateBlock, type LightningRodBlock, type LilacBlock, type LilyOfTheValleyBlock, type LimeCandleBlock, type LimeCandleCakeBlock, type LimeGlazedTerracottaBlock, type LitBlastFurnaceBlock, type LitFurnaceBlock, type LitPumpkinBlock, type LitSmokerBlock, type LoomBlock, type LootEntry, LootPool, LootTable, type MagentaCandleBlock, type MagentaCandleCakeBlock, type MagentaGlazedTerracottaBlock, type MangroveButtonBlock, type MangroveDoorBlock, type MangroveDoubleSlabBlock, type MangroveFenceGateBlock, type MangroveHangingSignBlock, type MangroveLeavesBlock, type MangroveLogBlock, type MangrovePressurePlateBlock, type MangrovePropaguleBlock, type MangroveSlabBlock, type MangroveStairsBlock, type MangroveStandingSignBlock, type MangroveTrapdoorBlock, type MangroveWallSignBlock, type MangroveWoodBlock, type MaterialInstanceProperties, type MediumAmethystBudBlock, type MelonStemBlock, MessageForm, MetadataMap, type MinecraftblockFace, type MinecraftcardinalDirection, type MinecraftfacingDirection, type MinecraftverticalHalf, ModalForm, type MonsterEggStoneType, type MossyCobblestoneDoubleSlabBlock, type MossyCobblestoneSlabBlock, type MossyCobblestoneStairsBlock, type MossyStoneBrickDoubleSlabBlock, type MossyStoneBrickSlabBlock, type MossyStoneBrickStairsBlock, type MossyStoneBricksBlock, type MudBrickDoubleSlabBlock, type MudBrickSlabBlock, type MudBrickStairsBlock, type MudBrickWallBlock, type MuddyMangroveRootsBlock, type NetherBrickDoubleSlabBlock, type NetherBrickSlabBlock, type NetherBrickStairsBlock, type NetherWartBlock, Network, NetworkBound, type NetworkEvents, NetworkHandler, type NetworkPacketEvent, type NetworkProperties, type NewLeafType, type NewLogType, Node, NodeEvaluator, type NormalStoneDoubleSlabBlock, type NormalStoneSlabBlock, type NormalStoneStairsBlock, type OakDoubleSlabBlock, type OakHangingSignBlock, type OakLeavesBlock, type OakLogBlock, type OakSaplingBlock, type OakSlabBlock, type OakStairsBlock, type OakWoodBlock, type ObserverBlock, type OchreFroglightBlock, OperatorCommands, type OrangeCandleBlock, type OrangeCandleCakeBlock, type OrangeGlazedTerracottaBlock, type OrangeTulipBlock, type Orientation, type OxeyeDaisyBlock, type OxidizedCopperBulbBlock, type OxidizedCopperDoorBlock, type OxidizedCopperTrapdoorBlock, type OxidizedCutCopperSlabBlock, type OxidizedCutCopperStairsBlock, type OxidizedDoubleCutCopperSlabBlock, type PearlescentFroglightBlock, type PeonyBlock, PermissionGroup, PermissionMember, type PetrifiedOakDoubleSlabBlock, type PetrifiedOakSlabBlock, type PillarAxis, type PinkCandleBlock, type PinkCandleCakeBlock, type PinkGlazedTerracottaBlock, type PinkPetalsBlock, type PinkTulipBlock, type PistonArmCollisionBlock, type PistonBlock, type PitcherCropBlock, type PitcherPlantBlock, type PlaySoundOptions, Player, PlayerAbilityUpdateSignal, PlayerBreakBlockSignal, PlayerChatSignal, PlayerChunkRenderingTrait, PlayerClosedContainerSignal, type PlayerCombatProperty, PlayerCombatTrait, PlayerCommandExecutorTrait, PlayerContainerInteractionSignal, PlayerCraftingInputTrait, PlayerCursorTrait, PlayerDropItemSignal, PlayerEntityRenderingTrait, type PlayerEntry, PlayerGamemodeChangeSignal, PlayerHungerTrait, PlayerInitializedSignal, PlayerInteractWithBlockSignal, PlayerInteractWithEntitySignal, PlayerJoinSignal, PlayerLeaveSignal, PlayerListTrait, PlayerOpenedContainerSignal, PlayerPlaceBlockSignal, type PlayerProperties, PlayerStartEmotingSignal, PlayerStartUsingItemSignal, PlayerStopEmotingSignal, PlayerStopUsingItemSignal, PlayerTrait, PlayerUseItemOnBlockSignal, PlayerUseItemOnEntitySignal, PlayerUseItemSignal, type PointedDripstoneBlock, type PolishedAndesiteDoubleSlabBlock, type PolishedAndesiteSlabBlock, type PolishedAndesiteStairsBlock, type PolishedBasaltBlock, type PolishedBlackstoneBrickDoubleSlabBlock, type PolishedBlackstoneBrickSlabBlock, type PolishedBlackstoneBrickStairsBlock, type PolishedBlackstoneBrickWallBlock, type PolishedBlackstoneButtonBlock, type PolishedBlackstoneDoubleSlabBlock, type PolishedBlackstonePressurePlateBlock, type PolishedBlackstoneSlabBlock, type PolishedBlackstoneStairsBlock, type PolishedBlackstoneWallBlock, type PolishedDeepslateDoubleSlabBlock, type PolishedDeepslateSlabBlock, type PolishedDeepslateStairsBlock, type PolishedDeepslateWallBlock, type PolishedDioriteDoubleSlabBlock, type PolishedDioriteSlabBlock, type PolishedDioriteStairsBlock, type PolishedGraniteDoubleSlabBlock, type PolishedGraniteSlabBlock, type PolishedGraniteStairsBlock, type PolishedTuffDoubleSlabBlock, type PolishedTuffSlabBlock, type PolishedTuffStairsBlock, type PolishedTuffWallBlock, type PoppyBlock, type PortalAxis, type PortalBlock, PositionEnum, type PotatoesBlock, type PoweredComparatorBlock, type PoweredRepeaterBlock, type PrismarineBlock, type PrismarineBlockType, type PrismarineBrickDoubleSlabBlock, type PrismarineBrickSlabBlock, type PrismarineBricksBlock, type PrismarineBricksStairsBlock, type PrismarineDoubleSlabBlock, type PrismarineSlabBlock, type PrismarineStairsBlock, type PumpkinBlock, type PumpkinStemBlock, type PurpleCandleBlock, type PurpleCandleCakeBlock, type PurpleGlazedTerracottaBlock, type PurpurBlockBlock, type PurpurDoubleSlabBlock, type PurpurSlabBlock, type PurpurStairsBlock, type QuartzBlockBlock, type QuartzDoubleSlabBlock, type QuartzPillarBlock, type QuartzSlabBlock, type QuartzStairsBlock, type RailBlock, type RedCandleBlock, type RedCandleCakeBlock, type RedGlazedTerracottaBlock, type RedMushroomBlockBlock, type RedNetherBrickDoubleSlabBlock, type RedNetherBrickSlabBlock, type RedNetherBrickStairsBlock, type RedSandBlock, type RedSandstoneBlock, type RedSandstoneDoubleSlabBlock, type RedSandstoneSlabBlock, type RedSandstoneStairsBlock, type RedTulipBlock, type RedstoneTorchBlock, type RedstoneWireBlock, type ReedsBlock, type RepeatingCommandBlockBlock, type ResourceManifest, ResourcePack, type ResourcePackEntry, ResourcePackManager, type ResourcePacksProperties, type RespawnAnchorBlock, type RoseBushBlock, type SandBlock, type SandStoneType, type SandType, type SandstoneBlock, type SandstoneDoubleSlabBlock, type SandstoneSlabBlock, type SandstoneStairsBlock, type SaplingType, type ScaffoldingBlock, type SculkCatalystBlock, type SculkSensorBlock, type SculkShriekerBlock, type SculkVeinBlock, type SeaGrassType, type SeaPickleBlock, type SeagrassBlock, Serenity, type SerenityProperties, ServerEvent, type ServerEvents, type ServerProperties, ServerState, type SessionPacketEvent, type ShortGrassBlock, type SilverGlazedTerracottaBlock, type SkullBlock, type SmallAmethystBudBlock, type SmallDripleafBlockBlock, type SmokerBlock, type SmoothQuartzBlock, type SmoothQuartzDoubleSlabBlock, type SmoothQuartzSlabBlock, type SmoothQuartzStairsBlock, type SmoothRedSandstoneBlock, type SmoothRedSandstoneDoubleSlabBlock, type SmoothRedSandstoneSlabBlock, type SmoothRedSandstoneStairsBlock, type SmoothSandstoneBlock, type SmoothSandstoneDoubleSlabBlock, type SmoothSandstoneSlabBlock, type SmoothSandstoneStairsBlock, type SmoothStoneDoubleSlabBlock, type SmoothStoneSlabBlock, type SnifferEggBlock, type SnowLayerBlock, SoftEnum, type SoulCampfireBlock, type SoulFireBlock, type SoulLanternBlock, type SoulTorchBlock, type SpongeBlock, type SpongeType, type SpruceButtonBlock, type SpruceDoorBlock, type SpruceDoubleSlabBlock, type SpruceFenceGateBlock, type SpruceHangingSignBlock, type SpruceLeavesBlock, type SpruceLogBlock, type SprucePressurePlateBlock, type SpruceSaplingBlock, type SpruceSlabBlock, type SpruceStairsBlock, type SpruceStandingSignBlock, type SpruceTrapdoorBlock, type SpruceWallSignBlock, type SpruceWoodBlock, type StandingBannerBlock, type StandingSignBlock, type StickyPistonArmCollisionBlock, type StickyPistonBlock, type StoneBrickDoubleSlabBlock, type StoneBrickSlabBlock, type StoneBrickStairsBlock, type StoneBrickType, type StoneBricksBlock, type StoneButtonBlock, type StonePressurePlateBlock, type StoneSlabType, type StoneSlabType2, type StoneSlabType3, type StoneSlabType4, type StoneStairsBlock, type StonecutterBlockBlock, StringEnum, type StrippedAcaciaLogBlock, type StrippedAcaciaWoodBlock, type StrippedBambooBlockBlock, type StrippedBirchLogBlock, type StrippedBirchWoodBlock, type StrippedCherryLogBlock, type StrippedCherryWoodBlock, type StrippedCrimsonHyphaeBlock, type StrippedCrimsonStemBlock, type StrippedDarkOakLogBlock, type StrippedDarkOakWoodBlock, type StrippedJungleLogBlock, type StrippedJungleWoodBlock, type StrippedMangroveLogBlock, type StrippedMangroveWoodBlock, type StrippedOakLogBlock, type StrippedOakWoodBlock, type StrippedSpruceLogBlock, type StrippedSpruceWoodBlock, type StrippedWarpedHyphaeBlock, type StrippedWarpedStemBlock, type StructureBlockBlock, type StructureBlockType, type StructureVoidBlock, type StructureVoidType, SubChunk, type SunflowerBlock, SuperflatGenerator, SuperflatWorker, type SuspiciousGravelBlock, type SuspiciousSandBlock, type SweetBerryBushBlock, TagEnum, type TallGrassBlock, type TallGrassType, TargetEnum, TerrainGenerator, type TerrainGeneratorProperties, TerrainWorker, TickSchedule, TimeOfDay, TimeOpertation, type TitleDisplayOptions, type TntBlock, type TorchBlock, TorchDirection, type TorchFacingDirection, type TorchflowerCropBlock, TraitActionEnum, type TrapdoorBlock, type TrappedChestBlock, type TrialSpawnerBlock, type TripWireBlock, type TripwireHookBlock, type TubeCoralBlock, type TubeCoralBlockBlock, type TubeCoralFanBlock, type TubeCoralWallFanBlock, type TuffBrickDoubleSlabBlock, type TuffBrickSlabBlock, type TuffBrickStairsBlock, type TuffBrickWallBlock, type TuffDoubleSlabBlock, type TuffSlabBlock, type TuffStairsBlock, type TuffWallBlock, type TurtleEggBlock, type TurtleEggCount, type TwistingVinesBlock, type UnderwaterTorchBlock, type UnlitRedstoneTorchBlock, type UnpoweredComparatorBlock, type UnpoweredRepeaterBlock, ValidEnum, type VaultBlock, type VaultState, type VerdantFroglightBlock, VerticalHalfTrait, type VineBlock, VoidGenerator, type WallBannerBlock, type WallBlockType, type WallConnectionTypeEast, type WallConnectionTypeNorth, type WallConnectionTypeSouth, type WallConnectionTypeWest, type WallSignBlock, type WarpedButtonBlock, type WarpedDoorBlock, type WarpedDoubleSlabBlock, type WarpedFenceGateBlock, type WarpedHangingSignBlock, type WarpedHyphaeBlock, type WarpedPressurePlateBlock, type WarpedSlabBlock, type WarpedStairsBlock, type WarpedStandingSignBlock, type WarpedStemBlock, type WarpedTrapdoorBlock, type WarpedWallSignBlock, type WaterBlock, type WaxedCopperBulbBlock, type WaxedCopperDoorBlock, type WaxedCopperTrapdoorBlock, type WaxedCutCopperSlabBlock, type WaxedCutCopperStairsBlock, type WaxedDoubleCutCopperSlabBlock, type WaxedExposedCopperBulbBlock, type WaxedExposedCopperDoorBlock, type WaxedExposedCopperTrapdoorBlock, type WaxedExposedCutCopperSlabBlock, type WaxedExposedCutCopperStairsBlock, type WaxedExposedDoubleCutCopperSlabBlock, type WaxedOxidizedCopperBulbBlock, type WaxedOxidizedCopperDoorBlock, type WaxedOxidizedCopperTrapdoorBlock, type WaxedOxidizedCutCopperSlabBlock, type WaxedOxidizedCutCopperStairsBlock, type WaxedOxidizedDoubleCutCopperSlabBlock, type WaxedWeatheredCopperBulbBlock, type WaxedWeatheredCopperDoorBlock, type WaxedWeatheredCopperTrapdoorBlock, type WaxedWeatheredCutCopperSlabBlock, type WaxedWeatheredCutCopperStairsBlock, type WaxedWeatheredDoubleCutCopperSlabBlock, type WeatheredCopperBulbBlock, type WeatheredCopperDoorBlock, type WeatheredCopperTrapdoorBlock, type WeatheredCutCopperSlabBlock, type WeatheredCutCopperStairsBlock, type WeatheredDoubleCutCopperSlabBlock, type WeepingVinesBlock, type WheatBlock, type WhiteCandleBlock, type WhiteCandleCakeBlock, type WhiteGlazedTerracottaBlock, type WhiteTulipBlock, type WoodenButtonBlock, type WoodenDoorBlock, type WoodenPressurePlateBlock, Worker, World, WorldEnum, WorldEvent, type WorldEventSignals, WorldInitializeSignal, type WorldProperties, WorldProvider, type WorldProviderProperties, WorldTickSignal, type YellowCandleBlock, type YellowCandleCakeBlock, type YellowGlazedTerracottaBlock, Zip };
17348
+ export { AbilityEnum, AbilityMap, type AcaciaButtonBlock, type AcaciaDoorBlock, type AcaciaDoubleSlabBlock, type AcaciaFenceGateBlock, type AcaciaHangingSignBlock, type AcaciaLeavesBlock, type AcaciaLogBlock, type AcaciaPressurePlateBlock, type AcaciaSaplingBlock, type AcaciaSlabBlock, type AcaciaStairsBlock, type AcaciaStandingSignBlock, type AcaciaTrapdoorBlock, type AcaciaWallSignBlock, type AcaciaWoodBlock, ActionForm, type ActionFormButton, type ActionFormImage, type ActivatorRailBlock, ActorFlagMap, type AlliumBlock, type AmethystClusterBlock, type AndesiteDoubleSlabBlock, type AndesiteSlabBlock, type AndesiteStairsBlock, type AnvilBlock, Astar, type Attachment, AttributeMap, type AzaleaLeavesBlock, type AzaleaLeavesFloweredBlock, type AzureBluetBlock, type BambooBlock, type BambooBlockBlock, type BambooButtonBlock, type BambooDoorBlock, type BambooDoubleSlabBlock, type BambooFenceGateBlock, type BambooHangingSignBlock, type BambooLeafSize, type BambooMosaicDoubleSlabBlock, type BambooMosaicSlabBlock, type BambooMosaicStairsBlock, type BambooPressurePlateBlock, type BambooSaplingBlock, type BambooSlabBlock, type BambooStairsBlock, type BambooStalkThickness, type BambooStandingSignBlock, type BambooTrapdoorBlock, type BambooWallSignBlock, type BarrelBlock, type BasaltBlock, type BedBlock, type BedrockBlock, type BeeNestBlock, type BeehiveBlock, type BeetrootBlock, type BellBlock, type BigDripleafBlock, type BigDripleafTilt, BinaryHeap, type BinaryItem, type BirchButtonBlock, type BirchDoorBlock, type BirchDoubleSlabBlock, type BirchFenceGateBlock, type BirchHangingSignBlock, type BirchLeavesBlock, type BirchLogBlock, type BirchPressurePlateBlock, type BirchSaplingBlock, type BirchSlabBlock, type BirchStairsBlock, type BirchStandingSignBlock, type BirchTrapdoorBlock, type BirchWallSignBlock, type BirchWoodBlock, type BlackCandleBlock, type BlackCandleCakeBlock, type BlackGlazedTerracottaBlock, type BlackstoneDoubleSlabBlock, type BlackstoneSlabBlock, type BlackstoneStairsBlock, type BlackstoneWallBlock, type BlastFurnaceBlock, Block, BlockButtonTrait, BlockCardinalDirectionTrait, BlockCommandBlockTrait, BlockContainer, BlockCraftingTableTrait, type BlockDestroyOptions, BlockDirectionTrait, type BlockEntry, BlockEnum, BlockFacingDirection, BlockIdentifier, type BlockInteractionOptions, BlockInventoryTrait, type BlockInventoryTraitOptions, BlockOpenBitTrait, BlockPalette, BlockPermutation, BlockPermutationUpdateSignal, BlockPillarAxisTrait, type BlockPlacementOptions, type BlockProperties, type BlockState, BlockStorage, BlockToolType, BlockTorchDirectionTrait, BlockTrait, BlockTraits, BlockType, BlockTypeCollisionBoxComponent, BlockTypeComponent, BlockTypeCraftingTableComponent, type BlockTypeDefinition, BlockTypeFrictionComponent, BlockTypeGeometryComponent, BlockTypeHardnessComponent, BlockTypeInteractableComponent, BlockTypeLightEmissionComponent, BlockTypeMaterialInstancesComponent, type BlockTypeNbtDefinition, type BlockTypeNbtPermutationDefinition, type BlockTypeNbtStateDefinition, type BlockTypeProperties, BlockTypeSelectionBoxComponent, BlockTypeTransformationComponent, BlockUpdateSignal, BlockUpperTrait, BlockUpsideDownBitTrait, BlockWeirdoDirectionTrait, type BlueCandleBlock, type BlueCandleCakeBlock, type BlueGlazedTerracottaBlock, type BlueOrchidBlock, type BoneBlockBlock, BooleanEnum, type BorderBlockBlock, Bossbar, type BrainCoralBlock, type BrainCoralBlockBlock, type BrainCoralFanBlock, type BrainCoralWallFanBlock, type BrewingStandBlock, type BrickDoubleSlabBlock, type BrickSlabBlock, type BrickStairsBlock, type BrownCandleBlock, type BrownCandleCakeBlock, type BrownGlazedTerracottaBlock, type BrownMushroomBlockBlock, type BubbleColumnBlock, type BubbleCoralBlock, type BubbleCoralBlockBlock, type BubbleCoralFanBlock, type BubbleCoralWallFanBlock, type CactusBlock, type CakeBlock, type CalibratedSculkSensorBlock, type CampfireBlock, type CandleBlock, type CandleCakeBlock, CardinalDirection, type CarrotsBlock, type CarvedPumpkinBlock, type CauldronBlock, type CauldronLiquid, type CaveVinesBlock, type CaveVinesBodyWithBerriesBlock, type CaveVinesHeadWithBerriesBlock, type ChainBlock, type ChainCommandBlockBlock, type ChemistryTableBlock, type ChemistryTableType, type CherryButtonBlock, type CherryDoorBlock, type CherryDoubleSlabBlock, type CherryFenceGateBlock, type CherryHangingSignBlock, type CherryLeavesBlock, type CherryLogBlock, type CherryPressurePlateBlock, type CherrySaplingBlock, type CherrySlabBlock, type CherryStairsBlock, type CherryStandingSignBlock, type CherryTrapdoorBlock, type CherryWallSignBlock, type CherryWoodBlock, type ChestBlock, type ChippedAnvilBlock, type ChiselType, type ChiseledBookshelfBlock, type ChiseledQuartzBlockBlock, type ChiseledRedSandstoneBlock, type ChiseledSandstoneBlock, type ChiseledStoneBricksBlock, type ChorusFlowerBlock, Chunk, ChunkReadySignal, ClientSystemInfo, type CobbledDeepslateDoubleSlabBlock, type CobbledDeepslateSlabBlock, type CobbledDeepslateStairsBlock, type CobbledDeepslateWallBlock, type CobblestoneDoubleSlabBlock, type CobblestoneSlabBlock, type CobblestoneWallBlock, type CocoaBlock, type ColoredTorchBpBlock, type ColoredTorchRgBlock, Command, CommandArgumentPointer, type CommandArguments, type CommandBlockBlock, type CommandCallback, type CommandContext, CommandExecutionState, type CommandOverload, CommandPalette, CommandRegistry, type CommandRegistryCallback, type CommandResponse, CommonCommands, type ComposterBlock, ConsoleInterface, Container, type CopperBulbBlock, type CopperDoorBlock, type CopperTrapdoorBlock, type CoralColor, type CornflowerBlock, type CrackedState, type CrackedStoneBricksBlock, type CrafterBlock, CreateContentGroup, CreativeItemDescriptor, type CrimsonButtonBlock, type CrimsonDoorBlock, type CrimsonDoubleSlabBlock, type CrimsonFenceGateBlock, type CrimsonHangingSignBlock, type CrimsonHyphaeBlock, type CrimsonPressurePlateBlock, type CrimsonSlabBlock, type CrimsonStairsBlock, type CrimsonStandingSignBlock, type CrimsonStemBlock, type CrimsonTrapdoorBlock, type CrimsonWallSignBlock, type CustomBlockProperties, CustomBlockType, CustomEntityType, CustomEnum, CustomItemType, type CutCopperSlabBlock, type CutCopperStairsBlock, type CutRedSandstoneBlock, type CutRedSandstoneDoubleSlabBlock, type CutRedSandstoneSlabBlock, type CutSandstoneBlock, type CutSandstoneDoubleSlabBlock, type CutSandstoneSlabBlock, type CyanCandleBlock, type CyanCandleCakeBlock, type CyanGlazedTerracottaBlock, type Damage, type DamagedAnvilBlock, type DarkOakButtonBlock, type DarkOakDoorBlock, type DarkOakDoubleSlabBlock, type DarkOakFenceGateBlock, type DarkOakHangingSignBlock, type DarkOakLeavesBlock, type DarkOakLogBlock, type DarkOakPressurePlateBlock, type DarkOakSaplingBlock, type DarkOakSlabBlock, type DarkOakStairsBlock, type DarkOakTrapdoorBlock, type DarkOakWoodBlock, type DarkPrismarineBlock, type DarkPrismarineDoubleSlabBlock, type DarkPrismarineSlabBlock, type DarkPrismarineStairsBlock, type DarkoakStandingSignBlock, type DarkoakWallSignBlock, type DaylightDetectorBlock, type DaylightDetectorInvertedBlock, type DeadBrainCoralBlock, type DeadBrainCoralBlockBlock, type DeadBrainCoralFanBlock, type DeadBrainCoralWallFanBlock, type DeadBubbleCoralBlock, type DeadBubbleCoralBlockBlock, type DeadBubbleCoralFanBlock, type DeadBubbleCoralWallFanBlock, type DeadFireCoralBlock, type DeadFireCoralBlockBlock, type DeadFireCoralFanBlock, type DeadFireCoralWallFanBlock, type DeadHornCoralBlock, type DeadHornCoralBlockBlock, type DeadHornCoralFanBlock, type DeadHornCoralWallFanBlock, type DeadTubeCoralBlock, type DeadTubeCoralBlockBlock, type DeadTubeCoralFanBlock, type DeadTubeCoralWallFanBlock, type DecoratedPotBlock, type DeepslateBlock, type DeepslateBrickDoubleSlabBlock, type DeepslateBrickSlabBlock, type DeepslateBrickStairsBlock, type DeepslateBrickWallBlock, type DeepslateTileDoubleSlabBlock, type DeepslateTileSlabBlock, type DeepslateTileStairsBlock, type DeepslateTileWallBlock, DefaultDimensionProperties, DefaultItemStackProperties, DefaultWorldProviderProperties, type DeprecatedAnvilBlock, type DetectorRailBlock, DialogueForm, type DialogueFormButton, type DialogueFormProperties, Dimension, type DimensionProperties, type DioriteDoubleSlabBlock, type DioriteSlabBlock, type DioriteStairsBlock, type DispenserBlock, type DoubleCutCopperSlabBlock, type DoublePlantType, type DripstoneThickness, type DropperBlock, EffectAddSignal, EffectRemoveSignal, type EndBrickStairsBlock, type EndPortalFrameBlock, type EndRodBlock, type EndStoneBrickDoubleSlabBlock, type EndStoneBrickSlabBlock, type EnderChestBlock, Entity, EntityAirSupplyTrait, EntityAttributeTrait, EntityAttributeUpdateSignal, EntityCollisionTrait, EntityContainer, type EntityDeathOptions, type EntityDespawnOptions, EntityDespawnedSignal, EntityDiedSignal, EntityDimensionChangeSignal, type EntityEffectOptions, EntityEffectsTrait, type EntityEntry, EntityEnum, EntityEquipmentTrait, type EntityFallOnBlockTraitEvent, EntityFlagUpdateSignal, EntityGravityTrait, EntityHealthChangedSignal, EntityHealthTrait, EntityHitSignal, EntityHurtSignal, EntityIdentifier, EntityInteractMethod, EntityInventoryTrait, type EntityInventoryTraitOptions, EntityInvisibilityTrait, EntityItemStackTrait, EntityLookAtPlayerTrait, EntityMetadataUpdateSignal, EntityMovementTrait, type EntityNpcDialogueProperty, EntityNpcTrait, EntityPalette, EntityPhysicsTrait, type EntityProperties, type EntityQueryOptions, type EntitySpawnOptions, EntitySpawnedSignal, EntityTrait, EntityTraitEnum, EntityTraits, EntityType, Enum, EventSignal, type ExposedCopperBulbBlock, type ExposedCopperDoorBlock, type ExposedCopperTrapdoorBlock, type ExposedCutCopperSlabBlock, type ExposedCutCopperStairsBlock, type ExposedDoubleCutCopperSlabBlock, FacingDirection, type FarmlandBlock, type FenceGateBlock, type FernBlock, type FireBlock, type FireCoralBlock, type FireCoralBlockBlock, type FireCoralFanBlock, type FireCoralWallFanBlock, type FlowerPotBlock, type FlowerType, type FlowingLavaBlock, type FlowingWaterBlock, Form, type FormParticipant, type FormResult, type FrameBlock, type FrostedIceBlock, type FurnaceBlock, GamemodeEnum, type GenericBlockState, type GlowFrameBlock, type GlowLichenBlock, type GoldenRailBlock, type GraniteDoubleSlabBlock, type GraniteSlabBlock, type GraniteStairsBlock, type GrayCandleBlock, type GrayCandleCakeBlock, type GrayGlazedTerracottaBlock, type GreenCandleBlock, type GreenCandleCakeBlock, type GreenGlazedTerracottaBlock, type GrindstoneBlock, Handlers, type HayBlockBlock, type HeavyWeightedPressurePlateBlock, type HopperBlock, type HornCoralBlock, type HornCoralBlockBlock, type HornCoralFanBlock, type HornCoralWallFanBlock, type IPermissionDefinition, type IPermissionGroup, type IPermissionMember, type IPermissions, type InfestedChiseledStoneBricksBlock, type InfestedCobblestoneBlock, type InfestedCrackedStoneBricksBlock, type InfestedDeepslateBlock, type InfestedMossyStoneBricksBlock, type InfestedStoneBlock, type InfestedStoneBricksBlock, IntegerEnum, InternalProvider, type IronDoorBlock, type IronTrapdoorBlock, ItemBundleTrait, ItemCategory, ItemDisplayTrait, ItemDrop, ItemDurabilityTrait, ItemEnchantableTrait, ItemEnum, ItemFoodTrait, ItemGroup, ItemIdentifier, ItemKeepOnDieTrait, ItemLiquidContainerTrait, ItemLockMode, ItemLockTrait, ItemPalette, ItemShooterTrait, ItemSpawnEggTrait, ItemStack, type ItemStackEntry, type ItemStackProperties, type ItemStorage, ItemSwordTrait, ItemToolTier, ItemToolType, ItemTrait, ItemTraits, ItemType, ItemTypeBlockPlacerComponent, ItemTypeCanDestroyInCreativeComponent, ItemTypeComponent, ItemTypeComponentCollection, ItemTypeDisplayNameComponent, ItemTypeIconComponent, ItemTypeItemPropertiesComponent, ItemTypeMaxStackComponent, type ItemTypeProperties, ItemTypeWearableComponent, type ItemUseOnBlockOptions, type ItemUseOnEntityOptions, type ItemUseOptions, type ItemWeaponComponent, ItemWeaponTrait, ItemWearableTier, ItemWearableTrait, type ItemWearableTraitProperties, type Items, type JSONLikeArray, type JSONLikeObject, type JSONLikeValue, type JigsawBlock, JsonObjectEnum, type JungleButtonBlock, type JungleDoorBlock, type JungleDoubleSlabBlock, type JungleFenceGateBlock, type JungleHangingSignBlock, type JungleLeavesBlock, type JungleLogBlock, type JunglePressurePlateBlock, type JungleSaplingBlock, type JungleSlabBlock, type JungleStairsBlock, type JungleStandingSignBlock, type JungleTrapdoorBlock, type JungleWallSignBlock, type JungleWoodBlock, type KelpBlock, type LadderBlock, type LanternBlock, type LargeAmethystBudBlock, type LargeFernBlock, type LavaBlock, type LecternBlock, LevelDBProvider, type LeverBlock, type LeverDirection, type LightBlock0Block, type LightBlock10Block, type LightBlock11Block, type LightBlock12Block, type LightBlock13Block, type LightBlock14Block, type LightBlock15Block, type LightBlock1Block, type LightBlock2Block, type LightBlock3Block, type LightBlock4Block, type LightBlock5Block, type LightBlock6Block, type LightBlock7Block, type LightBlock8Block, type LightBlock9Block, type LightBlueCandleBlock, type LightBlueCandleCakeBlock, type LightBlueGlazedTerracottaBlock, type LightGrayCandleBlock, type LightGrayCandleCakeBlock, type LightWeightedPressurePlateBlock, type LightningRodBlock, type LilacBlock, type LilyOfTheValleyBlock, type LimeCandleBlock, type LimeCandleCakeBlock, type LimeGlazedTerracottaBlock, type LitBlastFurnaceBlock, type LitFurnaceBlock, type LitPumpkinBlock, type LitSmokerBlock, type LoomBlock, type LootEntry, LootPool, LootTable, type MagentaCandleBlock, type MagentaCandleCakeBlock, type MagentaGlazedTerracottaBlock, type MangroveButtonBlock, type MangroveDoorBlock, type MangroveDoubleSlabBlock, type MangroveFenceGateBlock, type MangroveHangingSignBlock, type MangroveLeavesBlock, type MangroveLogBlock, type MangrovePressurePlateBlock, type MangrovePropaguleBlock, type MangroveSlabBlock, type MangroveStairsBlock, type MangroveStandingSignBlock, type MangroveTrapdoorBlock, type MangroveWallSignBlock, type MangroveWoodBlock, type MaterialInstanceProperties, type MediumAmethystBudBlock, type MelonStemBlock, MessageForm, MetadataMap, type MinecraftblockFace, type MinecraftcardinalDirection, type MinecraftfacingDirection, type MinecraftverticalHalf, ModalForm, type MonsterEggStoneType, type MossyCobblestoneDoubleSlabBlock, type MossyCobblestoneSlabBlock, type MossyCobblestoneStairsBlock, type MossyStoneBrickDoubleSlabBlock, type MossyStoneBrickSlabBlock, type MossyStoneBrickStairsBlock, type MossyStoneBricksBlock, type MudBrickDoubleSlabBlock, type MudBrickSlabBlock, type MudBrickStairsBlock, type MudBrickWallBlock, type MuddyMangroveRootsBlock, type NetherBrickDoubleSlabBlock, type NetherBrickSlabBlock, type NetherBrickStairsBlock, type NetherWartBlock, Network, NetworkBound, type NetworkEvents, NetworkHandler, type NetworkPacketEvent, type NetworkProperties, type NewLeafType, type NewLogType, Node, NodeEvaluator, type NormalStoneDoubleSlabBlock, type NormalStoneSlabBlock, type NormalStoneStairsBlock, type OakDoubleSlabBlock, type OakHangingSignBlock, type OakLeavesBlock, type OakLogBlock, type OakSaplingBlock, type OakSlabBlock, type OakStairsBlock, type OakWoodBlock, type ObserverBlock, type OchreFroglightBlock, OperatorCommands, type OrangeCandleBlock, type OrangeCandleCakeBlock, type OrangeGlazedTerracottaBlock, type OrangeTulipBlock, type Orientation, type OxeyeDaisyBlock, type OxidizedCopperBulbBlock, type OxidizedCopperDoorBlock, type OxidizedCopperTrapdoorBlock, type OxidizedCutCopperSlabBlock, type OxidizedCutCopperStairsBlock, type OxidizedDoubleCutCopperSlabBlock, type PearlescentFroglightBlock, type PeonyBlock, PermissionGroup, PermissionMember, type PetrifiedOakDoubleSlabBlock, type PetrifiedOakSlabBlock, type PillarAxis, type PinkCandleBlock, type PinkCandleCakeBlock, type PinkGlazedTerracottaBlock, type PinkPetalsBlock, type PinkTulipBlock, type PistonArmCollisionBlock, type PistonBlock, type PitcherCropBlock, type PitcherPlantBlock, type PlaySoundOptions, Player, PlayerAbilityUpdateSignal, PlayerBreakBlockSignal, PlayerChatSignal, PlayerChunkRenderingTrait, PlayerClosedContainerSignal, type PlayerCombatProperty, PlayerCombatTrait, PlayerCommandExecutorTrait, PlayerContainerInteractionSignal, PlayerCraftingInputTrait, PlayerCursorTrait, PlayerDropItemSignal, PlayerEntityRenderingTrait, type PlayerEntry, PlayerGamemodeChangeSignal, PlayerHungerTrait, PlayerInitializedSignal, PlayerInteractWithBlockSignal, PlayerInteractWithEntitySignal, PlayerJoinSignal, PlayerLeaveSignal, PlayerListTrait, PlayerOpenedContainerSignal, PlayerPlaceBlockSignal, type PlayerProperties, PlayerStartEmotingSignal, PlayerStartUsingItemSignal, PlayerStopEmotingSignal, PlayerStopUsingItemSignal, PlayerTrait, PlayerUseItemOnBlockSignal, PlayerUseItemOnEntitySignal, PlayerUseItemSignal, type PointedDripstoneBlock, type PolishedAndesiteDoubleSlabBlock, type PolishedAndesiteSlabBlock, type PolishedAndesiteStairsBlock, type PolishedBasaltBlock, type PolishedBlackstoneBrickDoubleSlabBlock, type PolishedBlackstoneBrickSlabBlock, type PolishedBlackstoneBrickStairsBlock, type PolishedBlackstoneBrickWallBlock, type PolishedBlackstoneButtonBlock, type PolishedBlackstoneDoubleSlabBlock, type PolishedBlackstonePressurePlateBlock, type PolishedBlackstoneSlabBlock, type PolishedBlackstoneStairsBlock, type PolishedBlackstoneWallBlock, type PolishedDeepslateDoubleSlabBlock, type PolishedDeepslateSlabBlock, type PolishedDeepslateStairsBlock, type PolishedDeepslateWallBlock, type PolishedDioriteDoubleSlabBlock, type PolishedDioriteSlabBlock, type PolishedDioriteStairsBlock, type PolishedGraniteDoubleSlabBlock, type PolishedGraniteSlabBlock, type PolishedGraniteStairsBlock, type PolishedTuffDoubleSlabBlock, type PolishedTuffSlabBlock, type PolishedTuffStairsBlock, type PolishedTuffWallBlock, type PoppyBlock, type PortalAxis, type PortalBlock, PositionEnum, type PotatoesBlock, type PoweredComparatorBlock, type PoweredRepeaterBlock, type PrismarineBlock, type PrismarineBlockType, type PrismarineBrickDoubleSlabBlock, type PrismarineBrickSlabBlock, type PrismarineBricksBlock, type PrismarineBricksStairsBlock, type PrismarineDoubleSlabBlock, type PrismarineSlabBlock, type PrismarineStairsBlock, type PumpkinBlock, type PumpkinStemBlock, type PurpleCandleBlock, type PurpleCandleCakeBlock, type PurpleGlazedTerracottaBlock, type PurpurBlockBlock, type PurpurDoubleSlabBlock, type PurpurSlabBlock, type PurpurStairsBlock, type QuartzBlockBlock, type QuartzDoubleSlabBlock, type QuartzPillarBlock, type QuartzSlabBlock, type QuartzStairsBlock, type RailBlock, type RedCandleBlock, type RedCandleCakeBlock, type RedGlazedTerracottaBlock, type RedMushroomBlockBlock, type RedNetherBrickDoubleSlabBlock, type RedNetherBrickSlabBlock, type RedNetherBrickStairsBlock, type RedSandBlock, type RedSandstoneBlock, type RedSandstoneDoubleSlabBlock, type RedSandstoneSlabBlock, type RedSandstoneStairsBlock, type RedTulipBlock, type RedstoneTorchBlock, type RedstoneWireBlock, type ReedsBlock, type RepeatingCommandBlockBlock, type ResourceManifest, ResourcePack, type ResourcePackEntry, ResourcePackManager, type ResourcePacksProperties, type RespawnAnchorBlock, type RoseBushBlock, type SandBlock, type SandStoneType, type SandType, type SandstoneBlock, type SandstoneDoubleSlabBlock, type SandstoneSlabBlock, type SandstoneStairsBlock, type SaplingType, type ScaffoldingBlock, type SculkCatalystBlock, type SculkSensorBlock, type SculkShriekerBlock, type SculkVeinBlock, type SeaGrassType, type SeaPickleBlock, type SeagrassBlock, Serenity, type SerenityProperties, ServerEvent, type ServerEvents, type ServerProperties, ServerState, type SessionPacketEvent, type ShortGrassBlock, type SilverGlazedTerracottaBlock, type SkullBlock, type SmallAmethystBudBlock, type SmallDripleafBlockBlock, type SmokerBlock, type SmoothQuartzBlock, type SmoothQuartzDoubleSlabBlock, type SmoothQuartzSlabBlock, type SmoothQuartzStairsBlock, type SmoothRedSandstoneBlock, type SmoothRedSandstoneDoubleSlabBlock, type SmoothRedSandstoneSlabBlock, type SmoothRedSandstoneStairsBlock, type SmoothSandstoneBlock, type SmoothSandstoneDoubleSlabBlock, type SmoothSandstoneSlabBlock, type SmoothSandstoneStairsBlock, type SmoothStoneDoubleSlabBlock, type SmoothStoneSlabBlock, type SnifferEggBlock, type SnowLayerBlock, SoftEnum, type SoulCampfireBlock, type SoulFireBlock, type SoulLanternBlock, type SoulTorchBlock, type SpongeBlock, type SpongeType, type SpruceButtonBlock, type SpruceDoorBlock, type SpruceDoubleSlabBlock, type SpruceFenceGateBlock, type SpruceHangingSignBlock, type SpruceLeavesBlock, type SpruceLogBlock, type SprucePressurePlateBlock, type SpruceSaplingBlock, type SpruceSlabBlock, type SpruceStairsBlock, type SpruceStandingSignBlock, type SpruceTrapdoorBlock, type SpruceWallSignBlock, type SpruceWoodBlock, type StandingBannerBlock, type StandingSignBlock, type StickyPistonArmCollisionBlock, type StickyPistonBlock, type StoneBrickDoubleSlabBlock, type StoneBrickSlabBlock, type StoneBrickStairsBlock, type StoneBrickType, type StoneBricksBlock, type StoneButtonBlock, type StonePressurePlateBlock, type StoneSlabType, type StoneSlabType2, type StoneSlabType3, type StoneSlabType4, type StoneStairsBlock, type StonecutterBlockBlock, StringEnum, type StrippedAcaciaLogBlock, type StrippedAcaciaWoodBlock, type StrippedBambooBlockBlock, type StrippedBirchLogBlock, type StrippedBirchWoodBlock, type StrippedCherryLogBlock, type StrippedCherryWoodBlock, type StrippedCrimsonHyphaeBlock, type StrippedCrimsonStemBlock, type StrippedDarkOakLogBlock, type StrippedDarkOakWoodBlock, type StrippedJungleLogBlock, type StrippedJungleWoodBlock, type StrippedMangroveLogBlock, type StrippedMangroveWoodBlock, type StrippedOakLogBlock, type StrippedOakWoodBlock, type StrippedSpruceLogBlock, type StrippedSpruceWoodBlock, type StrippedWarpedHyphaeBlock, type StrippedWarpedStemBlock, type StructureBlockBlock, type StructureBlockType, type StructureVoidBlock, type StructureVoidType, SubChunk, type SunflowerBlock, SuperflatGenerator, type SuspiciousGravelBlock, type SuspiciousSandBlock, type SweetBerryBushBlock, TagEnum, type TallGrassBlock, type TallGrassType, TargetEnum, TerrainGenerator, type TerrainGeneratorProperties, TickSchedule, TimeOfDay, TimeOpertation, type TitleDisplayOptions, type TntBlock, type TorchBlock, TorchDirection, type TorchFacingDirection, type TorchflowerCropBlock, TraitActionEnum, type TrapdoorBlock, type TrappedChestBlock, type TrialSpawnerBlock, type TripWireBlock, type TripwireHookBlock, type TubeCoralBlock, type TubeCoralBlockBlock, type TubeCoralFanBlock, type TubeCoralWallFanBlock, type TuffBrickDoubleSlabBlock, type TuffBrickSlabBlock, type TuffBrickStairsBlock, type TuffBrickWallBlock, type TuffDoubleSlabBlock, type TuffSlabBlock, type TuffStairsBlock, type TuffWallBlock, type TurtleEggBlock, type TurtleEggCount, type TwistingVinesBlock, type UnderwaterTorchBlock, type UnlitRedstoneTorchBlock, type UnpoweredComparatorBlock, type UnpoweredRepeaterBlock, ValidEnum, type VaultBlock, type VaultState, type VerdantFroglightBlock, VerticalHalfTrait, type VineBlock, VoidGenerator, type WallBannerBlock, type WallBlockType, type WallConnectionTypeEast, type WallConnectionTypeNorth, type WallConnectionTypeSouth, type WallConnectionTypeWest, type WallSignBlock, type WarpedButtonBlock, type WarpedDoorBlock, type WarpedDoubleSlabBlock, type WarpedFenceGateBlock, type WarpedHangingSignBlock, type WarpedHyphaeBlock, type WarpedPressurePlateBlock, type WarpedSlabBlock, type WarpedStairsBlock, type WarpedStandingSignBlock, type WarpedStemBlock, type WarpedTrapdoorBlock, type WarpedWallSignBlock, type WaterBlock, type WaxedCopperBulbBlock, type WaxedCopperDoorBlock, type WaxedCopperTrapdoorBlock, type WaxedCutCopperSlabBlock, type WaxedCutCopperStairsBlock, type WaxedDoubleCutCopperSlabBlock, type WaxedExposedCopperBulbBlock, type WaxedExposedCopperDoorBlock, type WaxedExposedCopperTrapdoorBlock, type WaxedExposedCutCopperSlabBlock, type WaxedExposedCutCopperStairsBlock, type WaxedExposedDoubleCutCopperSlabBlock, type WaxedOxidizedCopperBulbBlock, type WaxedOxidizedCopperDoorBlock, type WaxedOxidizedCopperTrapdoorBlock, type WaxedOxidizedCutCopperSlabBlock, type WaxedOxidizedCutCopperStairsBlock, type WaxedOxidizedDoubleCutCopperSlabBlock, type WaxedWeatheredCopperBulbBlock, type WaxedWeatheredCopperDoorBlock, type WaxedWeatheredCopperTrapdoorBlock, type WaxedWeatheredCutCopperSlabBlock, type WaxedWeatheredCutCopperStairsBlock, type WaxedWeatheredDoubleCutCopperSlabBlock, type WeatheredCopperBulbBlock, type WeatheredCopperDoorBlock, type WeatheredCopperTrapdoorBlock, type WeatheredCutCopperSlabBlock, type WeatheredCutCopperStairsBlock, type WeatheredDoubleCutCopperSlabBlock, type WeepingVinesBlock, type WheatBlock, type WhiteCandleBlock, type WhiteCandleCakeBlock, type WhiteGlazedTerracottaBlock, type WhiteTulipBlock, type WoodenButtonBlock, type WoodenDoorBlock, type WoodenPressurePlateBlock, World, WorldEnum, WorldEvent, type WorldEventSignals, WorldInitializeSignal, type WorldProperties, WorldProvider, type WorldProviderProperties, WorldTickSignal, type YellowCandleBlock, type YellowCandleCakeBlock, type YellowGlazedTerracottaBlock, Zip };