@serenityjs/core 0.6.4 → 0.7.0-beta-20241221060126
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 +16 -0
- package/dist/index.d.mts +141 -3
- package/dist/index.d.ts +141 -3
- package/dist/index.js +11 -11
- package/dist/index.mjs +11 -11
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @serenityjs/core
|
|
2
2
|
|
|
3
|
+
## 0.7.0-beta-20241221060126
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`b857e0a`](https://github.com/SerenityJS/serenity/commit/b857e0a36e4a9be1684ac4f13ce1688611dd363b) Thanks [@PMK744](https://github.com/PMK744)! - init 0.7.0-beta
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`b857e0a`](https://github.com/SerenityJS/serenity/commit/b857e0a36e4a9be1684ac4f13ce1688611dd363b)]:
|
|
12
|
+
- @serenityjs/protocol@0.7.0-beta-20241221060126
|
|
13
|
+
- @serenityjs/emitter@0.7.0-beta-20241221060126
|
|
14
|
+
- @serenityjs/logger@0.7.0-beta-20241221060126
|
|
15
|
+
- @serenityjs/raknet@0.7.0-beta-20241221060126
|
|
16
|
+
- @serenityjs/data@0.7.0-beta-20241221060126
|
|
17
|
+
- @serenityjs/nbt@0.7.0-beta-20241221060126
|
|
18
|
+
|
|
3
19
|
## 0.6.4
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -3875,6 +3875,11 @@ declare class ItemStack<T extends keyof Items = keyof Items> {
|
|
|
3875
3875
|
* @returns The item stack.
|
|
3876
3876
|
*/
|
|
3877
3877
|
static fromNetworkInstance(descriptor: NetworkItemInstanceDescriptor): ItemStack | null;
|
|
3878
|
+
/**
|
|
3879
|
+
* Creates an empty item stack.
|
|
3880
|
+
* @returns The empty item stack.
|
|
3881
|
+
*/
|
|
3882
|
+
static empty(): ItemStack;
|
|
3878
3883
|
}
|
|
3879
3884
|
|
|
3880
3885
|
declare class ItemTrait<T extends ItemIdentifier> extends Trait {
|
|
@@ -4039,6 +4044,52 @@ declare class ItemDurabilityTrait<T extends ItemIdentifier> extends ItemTrait<T>
|
|
|
4039
4044
|
onUse(player: Player, options: Partial<ItemUseOptions>): boolean | void;
|
|
4040
4045
|
}
|
|
4041
4046
|
|
|
4047
|
+
interface DisplayValue {
|
|
4048
|
+
name?: StringTag;
|
|
4049
|
+
lore?: ListTag<StringTag>;
|
|
4050
|
+
}
|
|
4051
|
+
declare class ItemDisplayTrait<T extends ItemIdentifier> extends ItemTrait<T> {
|
|
4052
|
+
static readonly identifier = "display";
|
|
4053
|
+
/**
|
|
4054
|
+
* Gets custom name from the item stack.
|
|
4055
|
+
* @returns The custom name if it exists; otherwise, null.
|
|
4056
|
+
*/
|
|
4057
|
+
getName(): string | null;
|
|
4058
|
+
/**
|
|
4059
|
+
* Adds custom name to the item stack.
|
|
4060
|
+
* @param name The item stack custom name.
|
|
4061
|
+
*/
|
|
4062
|
+
setName(name: string): void;
|
|
4063
|
+
/**
|
|
4064
|
+
* Gets the lore list on the item stack.
|
|
4065
|
+
* @returns The map of lore texts.
|
|
4066
|
+
*/
|
|
4067
|
+
getLore(): Map<number, string>;
|
|
4068
|
+
/**
|
|
4069
|
+
* Adds lore to the item stack.
|
|
4070
|
+
* @param lore The lore array.
|
|
4071
|
+
*/
|
|
4072
|
+
setLore(lore: Array<string>): void;
|
|
4073
|
+
/**
|
|
4074
|
+
* Clears the custom name from item stack
|
|
4075
|
+
*/
|
|
4076
|
+
clearName(): void;
|
|
4077
|
+
onAdd(): void;
|
|
4078
|
+
onRemove(): void;
|
|
4079
|
+
/**
|
|
4080
|
+
* Gets the display tag from the item stack's NBT.
|
|
4081
|
+
* @returns The display tag.
|
|
4082
|
+
*/
|
|
4083
|
+
getNbt(): CompoundTag<DisplayValue>;
|
|
4084
|
+
}
|
|
4085
|
+
|
|
4086
|
+
declare class ItemKeepOnDieTrait<T extends ItemIdentifier> extends ItemTrait<T> {
|
|
4087
|
+
static readonly identifier = "keep_on_die";
|
|
4088
|
+
get keep(): boolean;
|
|
4089
|
+
set keep(value: boolean);
|
|
4090
|
+
onRemove(): void;
|
|
4091
|
+
}
|
|
4092
|
+
|
|
4042
4093
|
declare class ItemPalette {
|
|
4043
4094
|
/**
|
|
4044
4095
|
* The registered item types for the palette.
|
|
@@ -4143,16 +4194,57 @@ declare class NbtMap extends Map<string, Tag> {
|
|
|
4143
4194
|
update(): void;
|
|
4144
4195
|
}
|
|
4145
4196
|
|
|
4197
|
+
/**
|
|
4198
|
+
* Block is a class the represents an instance of a block in a dimension of a world.
|
|
4199
|
+
* The Block instance contains its position, dimension, type, permutation, components, traits, and nbt data.
|
|
4200
|
+
* Blocks can be interacted with, destroyed, and have additional behavior added to them through traits.
|
|
4201
|
+
*
|
|
4202
|
+
* ```ts
|
|
4203
|
+
// Fetching a block from a dimension.
|
|
4204
|
+
const query = dimension.getBlock({ x: 0, y: 0, z: 0 });
|
|
4205
|
+
* ```
|
|
4206
|
+
*/
|
|
4146
4207
|
declare class Block {
|
|
4147
|
-
|
|
4208
|
+
/**
|
|
4209
|
+
* The serenity instance of the server.
|
|
4210
|
+
*/
|
|
4211
|
+
protected readonly serenity: Serenity;
|
|
4212
|
+
/**
|
|
4213
|
+
* The dimension the block is in.
|
|
4214
|
+
*/
|
|
4148
4215
|
readonly dimension: Dimension;
|
|
4216
|
+
/**
|
|
4217
|
+
* The position of the block. (x, y, z)
|
|
4218
|
+
*/
|
|
4149
4219
|
readonly position: BlockPosition;
|
|
4220
|
+
/**
|
|
4221
|
+
* The components that are attached to the block.
|
|
4222
|
+
* Components are additional data that is attached to the block and will be saved with the world database.
|
|
4223
|
+
* These are usaully used by traits to store additional data, but can be used by other systems as well.
|
|
4224
|
+
*/
|
|
4150
4225
|
readonly components: Map<string, JSONLikeValue>;
|
|
4226
|
+
/**
|
|
4227
|
+
* The traits that are attached to the block.
|
|
4228
|
+
* Traits add additional behavior to the block and only the trait identifier will be saved with the world database.
|
|
4229
|
+
* Traits generally use components or nbt to store additional data.
|
|
4230
|
+
*/
|
|
4151
4231
|
readonly traits: Map<string, BlockTrait>;
|
|
4232
|
+
/**
|
|
4233
|
+
* The nbt data that is attached to the block.
|
|
4234
|
+
* Nbt data is additional data that is attached to the block and will be saved with the world database.
|
|
4235
|
+
* The format of the nbt data is exactly the same as the nbt format of vanilla Minecraft.
|
|
4236
|
+
* This data is used to apply additional metadata to the block. (Custom Name, Chest Open/Closed, etc.)
|
|
4237
|
+
*/
|
|
4152
4238
|
readonly nbt: NbtMap;
|
|
4239
|
+
/**
|
|
4240
|
+
* The current permutation of the block.
|
|
4241
|
+
* The permutation contains the specific state of the block, which determines the block's appearance and behavior.
|
|
4242
|
+
* The permutation is a combination of the block type and the block state.
|
|
4243
|
+
*/
|
|
4153
4244
|
permutation: BlockPermutation;
|
|
4154
4245
|
/**
|
|
4155
4246
|
* Whether or not the block is air.
|
|
4247
|
+
* Usaully if the block is air, it is not cached in the dimension.
|
|
4156
4248
|
*/
|
|
4157
4249
|
get isAir(): boolean;
|
|
4158
4250
|
/**
|
|
@@ -4161,18 +4253,21 @@ declare class Block {
|
|
|
4161
4253
|
get isLiquid(): boolean;
|
|
4162
4254
|
/**
|
|
4163
4255
|
* Whether or not the block is solid.
|
|
4256
|
+
* Depening on the value, this will determine if entities can pass through the block.
|
|
4164
4257
|
*/
|
|
4165
4258
|
get isSolid(): boolean;
|
|
4166
4259
|
/**
|
|
4167
4260
|
* The block type of the block.
|
|
4261
|
+
* This property will contain any additional metadata that is global to the block type.
|
|
4168
4262
|
*/
|
|
4169
4263
|
get type(): BlockType;
|
|
4170
4264
|
/**
|
|
4171
4265
|
* The block type of the block.
|
|
4266
|
+
* This property will contain any additional metadata that is global to the block type.
|
|
4172
4267
|
*/
|
|
4173
4268
|
set type(type: BlockType);
|
|
4174
4269
|
/**
|
|
4175
|
-
* The block identifier of the block.
|
|
4270
|
+
* The block identifier of the block. (minecraft:stone, minecraft:oak_log, minecraft:air, etc.)
|
|
4176
4271
|
*/
|
|
4177
4272
|
get identifier(): BlockIdentifier;
|
|
4178
4273
|
constructor(dimension: Dimension, position: BlockPosition, permutation: BlockPermutation, properties?: Partial<BlockProperties>);
|
|
@@ -4185,7 +4280,16 @@ declare class Block {
|
|
|
4185
4280
|
* @returns The chunk the block is in.
|
|
4186
4281
|
*/
|
|
4187
4282
|
getChunk(): Chunk;
|
|
4283
|
+
/**
|
|
4284
|
+
* Gets the current permutation of the block.
|
|
4285
|
+
* @returns
|
|
4286
|
+
*/
|
|
4188
4287
|
getPermutation(): BlockPermutation;
|
|
4288
|
+
/**
|
|
4289
|
+
* Sets the permutation of the block.
|
|
4290
|
+
* @param permutation The permutation to set the block to.
|
|
4291
|
+
* @param entry The block entry to load the block data from.
|
|
4292
|
+
*/
|
|
4189
4293
|
setPermutation(permutation: BlockPermutation, entry?: BlockEntry): void;
|
|
4190
4294
|
/**
|
|
4191
4295
|
* Whether the block has the specified component.
|
|
@@ -6099,7 +6203,18 @@ declare class EntityInvisibilityTrait extends EntityTrait {
|
|
|
6099
6203
|
declare class EntityEquipmentTrait extends EntityTrait {
|
|
6100
6204
|
static readonly identifier = "equipment";
|
|
6101
6205
|
static readonly types: EntityIdentifier[];
|
|
6206
|
+
/**
|
|
6207
|
+
* The armor container that holds the equipment items.
|
|
6208
|
+
*/
|
|
6102
6209
|
readonly container: EntityContainer;
|
|
6210
|
+
/**
|
|
6211
|
+
* The component used to store the equipment items.
|
|
6212
|
+
*/
|
|
6213
|
+
get component(): ItemStorage;
|
|
6214
|
+
/**
|
|
6215
|
+
* The component used to store the equipment items.
|
|
6216
|
+
*/
|
|
6217
|
+
set component(value: ItemStorage);
|
|
6103
6218
|
constructor(entity: Entity);
|
|
6104
6219
|
/**
|
|
6105
6220
|
* Equips the given item to given slot in the entity equipment.
|
|
@@ -6113,8 +6228,11 @@ declare class EntityEquipmentTrait extends EntityTrait {
|
|
|
6113
6228
|
* @returns The item in the desired slot if existing.
|
|
6114
6229
|
*/
|
|
6115
6230
|
getEquipment(slot: EquipmentSlot): ItemStack | null;
|
|
6231
|
+
onContainerUpdate(container: Container): void;
|
|
6116
6232
|
onSpawn(): void;
|
|
6117
6233
|
onDespawn(): void;
|
|
6234
|
+
onAdd(): void;
|
|
6235
|
+
onRemove(): void;
|
|
6118
6236
|
}
|
|
6119
6237
|
|
|
6120
6238
|
declare class Entity {
|
|
@@ -6366,6 +6484,12 @@ declare class Entity {
|
|
|
6366
6484
|
* @param value The value of the component.
|
|
6367
6485
|
*/
|
|
6368
6486
|
addComponent<T extends JSONLikeObject>(key: string, value: T): void;
|
|
6487
|
+
/**
|
|
6488
|
+
* Sets the component of the entity.
|
|
6489
|
+
* @param key The key of the component.
|
|
6490
|
+
* @param value The value of the component.
|
|
6491
|
+
*/
|
|
6492
|
+
setComponent<T extends JSONLikeObject>(key: string, value: T): void;
|
|
6369
6493
|
/**
|
|
6370
6494
|
* Gets the chunk the entity is currently in.
|
|
6371
6495
|
* @returns The chunk the entity is in
|
|
@@ -13879,6 +14003,20 @@ interface ItemStackProperties {
|
|
|
13879
14003
|
entry?: ItemStackEntry;
|
|
13880
14004
|
}
|
|
13881
14005
|
|
|
14006
|
+
/**
|
|
14007
|
+
* Represents a component that stores a set size of items.
|
|
14008
|
+
*/
|
|
14009
|
+
interface ItemStorage extends JSONLikeObject {
|
|
14010
|
+
/**
|
|
14011
|
+
* The amount of slots in the storage.
|
|
14012
|
+
*/
|
|
14013
|
+
size: number;
|
|
14014
|
+
/**
|
|
14015
|
+
* The items in the storage.
|
|
14016
|
+
*/
|
|
14017
|
+
items: Array<[number, ItemStackEntry]>;
|
|
14018
|
+
}
|
|
14019
|
+
|
|
13882
14020
|
type CommandContext<T = NonNullable<unknown>> = {
|
|
13883
14021
|
origin: Dimension | Entity;
|
|
13884
14022
|
} & T;
|
|
@@ -14720,4 +14858,4 @@ declare class LootTable {
|
|
|
14720
14858
|
getLoot(): Array<ItemStack>;
|
|
14721
14859
|
}
|
|
14722
14860
|
|
|
14723
|
-
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, AdminCommands, type AlliumBlock, type AmethystClusterBlock, type AndesiteDoubleSlabBlock, type AndesiteSlabBlock, type AndesiteStairsBlock, type AnvilBlock, 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, 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, BlockCardinalDirectionTrait, BlockContainer, BlockDirectionTrait, type BlockEntry, BlockEnum, BlockFurnaceTrait, BlockIdentifier, type BlockInteractionOptions, BlockInventoryTrait, BlockOpenBitTrait, BlockPalette, BlockPermutation, type BlockProperties, type BlockState, BlockStorage, BlockToolType, BlockTrait, BlockTraits, BlockType, type BlockTypeProperties, BlockUpdateSignal, BlockUpperBitTrait, 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, 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, CommandRegistry, type CommandRegistryCallback, type CommandResponse, Commands, CommonCommands, type ComposterBlock, ConsoleInterface, Container, type CopperBulbBlock, type CopperDoorBlock, type CopperTrapdoorBlock, type CoralColor, type CornflowerBlock, type CrackedState, type CrackedStoneBricksBlock, type CrafterBlock, CreativeItem, 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 CustomBlockPermutation, type CustomBlockProperty, CustomBlockType, type CustomBlockTypeVanillaNbt, 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, Device, 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, EntityDespawnedSignal, EntityDieSignal, EntityDimensionChangeSignal, type EntityEffectOptions, EntityEffectsTrait, type EntityEntry, EntityEnum, EntityEquipmentTrait, EntityFlagUpdateSignal, EntityGravityTrait, EntityHealthChangedSignal, EntityHealthTrait, EntityHitSignal, EntityHurtSignal, EntityIdentifier, EntityInteractMethod, EntityInventoryTrait, EntityInvisibilityTrait, EntityItemStackTrait, EntityMetadataUpdateSignal, EntityMovementTrait, EntityPalette, EntityPhysicsTrait, type EntityProperties, type EntityQueryOptions, EntitySpawnedSignal, EntityTrait, EntityTraits, EntityType, Enum, EventSignal, type ExposedCopperBulbBlock, type ExposedCopperDoorBlock, type ExposedCopperTrapdoorBlock, type ExposedCutCopperSlabBlock, type ExposedCutCopperStairsBlock, type ExposedDoubleCutCopperSlabBlock, 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 FrameBlock, type FrostedIceBlock, type FurnaceBlock, GamemodeEnum, 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 InfestedChiseledStoneBricksBlock, type InfestedCobblestoneBlock, type InfestedCrackedStoneBricksBlock, type InfestedDeepslateBlock, type InfestedMossyStoneBricksBlock, type InfestedStoneBlock, type InfestedStoneBricksBlock, IntegerEnum, InternalProvider, type IronDoorBlock, type IronTrapdoorBlock, ItemBundleTrait, ItemCategory, ItemDrop, ItemDurabilityTrait, ItemEnchantableTrait, ItemEnum, ItemEquippableTrait, ItemGroup, ItemIdentifier, ItemPalette, ItemStack, type ItemStackEntry, type ItemStackProperties, ItemToolTier, ItemToolType, ItemTrait, ItemTraits, ItemType, type ItemTypeProperties, ItemUseMethod, type ItemUseOptions, type Items, type JSONLikeArray, type JSONLikeObject, type JSONLikeValue, type JigsawBlock, 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 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 NewLeafType, type NewLogType, 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, 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, PermutationProperties, type PetrifiedOakDoubleSlabBlock, type PetrifiedOakSlabBlock, type PillarAxis, type PinkCandleBlock, type PinkCandleCakeBlock, type PinkGlazedTerracottaBlock, type PinkPetalsBlock, type PinkTulipBlock, type PistonArmCollisionBlock, type PistonBlock, type PitcherCropBlock, type PitcherPlantBlock, Player, PlayerAbilityUpdateSignal, PlayerBreakBlockSignal, PlayerChatSignal, PlayerChunkRenderingTrait, PlayerClosedContainerSignal, PlayerContainerInteractionSignal, PlayerCursorTrait, PlayerDropItemSignal, PlayerEntityRenderingTrait, type PlayerEntry, PlayerGamemodeChangeSignal, PlayerHungerTrait, PlayerInteractWithBlockSignal, PlayerInteractWithEntitySignal, PlayerJoinSignal, PlayerLeaveSignal, PlayerListTrait, PlayerOpenedContainerSignal, PlayerPlaceBlockSignal, type PlayerProperties, PlayerStartEmotingSignal, PlayerStartUsingItemSignal, PlayerStopEmotingSignal, PlayerStopUsingItemSignal, PlayerTrait, 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, ServerEvent, type ServerEvents, type ServerProperties, 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, type TntBlock, type TorchBlock, type TorchFacingDirection, type TorchflowerCropBlock, 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, hash };
|
|
14861
|
+
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, AdminCommands, type AlliumBlock, type AmethystClusterBlock, type AndesiteDoubleSlabBlock, type AndesiteSlabBlock, type AndesiteStairsBlock, type AnvilBlock, 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, 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, BlockCardinalDirectionTrait, BlockContainer, BlockDirectionTrait, type BlockEntry, BlockEnum, BlockFurnaceTrait, BlockIdentifier, type BlockInteractionOptions, BlockInventoryTrait, BlockOpenBitTrait, BlockPalette, BlockPermutation, type BlockProperties, type BlockState, BlockStorage, BlockToolType, BlockTrait, BlockTraits, BlockType, type BlockTypeProperties, BlockUpdateSignal, BlockUpperBitTrait, 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, 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, CommandRegistry, type CommandRegistryCallback, type CommandResponse, Commands, CommonCommands, type ComposterBlock, ConsoleInterface, Container, type CopperBulbBlock, type CopperDoorBlock, type CopperTrapdoorBlock, type CoralColor, type CornflowerBlock, type CrackedState, type CrackedStoneBricksBlock, type CrafterBlock, CreativeItem, 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 CustomBlockPermutation, type CustomBlockProperty, CustomBlockType, type CustomBlockTypeVanillaNbt, 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, Device, 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, EntityDespawnedSignal, EntityDieSignal, EntityDimensionChangeSignal, type EntityEffectOptions, EntityEffectsTrait, type EntityEntry, EntityEnum, EntityEquipmentTrait, EntityFlagUpdateSignal, EntityGravityTrait, EntityHealthChangedSignal, EntityHealthTrait, EntityHitSignal, EntityHurtSignal, EntityIdentifier, EntityInteractMethod, EntityInventoryTrait, EntityInvisibilityTrait, EntityItemStackTrait, EntityMetadataUpdateSignal, EntityMovementTrait, EntityPalette, EntityPhysicsTrait, type EntityProperties, type EntityQueryOptions, EntitySpawnedSignal, EntityTrait, EntityTraits, EntityType, Enum, EventSignal, type ExposedCopperBulbBlock, type ExposedCopperDoorBlock, type ExposedCopperTrapdoorBlock, type ExposedCutCopperSlabBlock, type ExposedCutCopperStairsBlock, type ExposedDoubleCutCopperSlabBlock, 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 FrameBlock, type FrostedIceBlock, type FurnaceBlock, GamemodeEnum, 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 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, ItemEquippableTrait, ItemGroup, ItemIdentifier, ItemKeepOnDieTrait, ItemPalette, ItemStack, type ItemStackEntry, type ItemStackProperties, type ItemStorage, ItemToolTier, ItemToolType, ItemTrait, ItemTraits, ItemType, type ItemTypeProperties, ItemUseMethod, type ItemUseOptions, type Items, type JSONLikeArray, type JSONLikeObject, type JSONLikeValue, type JigsawBlock, 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 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 NewLeafType, type NewLogType, 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, 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, PermutationProperties, type PetrifiedOakDoubleSlabBlock, type PetrifiedOakSlabBlock, type PillarAxis, type PinkCandleBlock, type PinkCandleCakeBlock, type PinkGlazedTerracottaBlock, type PinkPetalsBlock, type PinkTulipBlock, type PistonArmCollisionBlock, type PistonBlock, type PitcherCropBlock, type PitcherPlantBlock, Player, PlayerAbilityUpdateSignal, PlayerBreakBlockSignal, PlayerChatSignal, PlayerChunkRenderingTrait, PlayerClosedContainerSignal, PlayerContainerInteractionSignal, PlayerCursorTrait, PlayerDropItemSignal, PlayerEntityRenderingTrait, type PlayerEntry, PlayerGamemodeChangeSignal, PlayerHungerTrait, PlayerInteractWithBlockSignal, PlayerInteractWithEntitySignal, PlayerJoinSignal, PlayerLeaveSignal, PlayerListTrait, PlayerOpenedContainerSignal, PlayerPlaceBlockSignal, type PlayerProperties, PlayerStartEmotingSignal, PlayerStartUsingItemSignal, PlayerStopEmotingSignal, PlayerStopUsingItemSignal, PlayerTrait, 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, ServerEvent, type ServerEvents, type ServerProperties, 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, type TntBlock, type TorchBlock, type TorchFacingDirection, type TorchflowerCropBlock, 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, hash };
|