@serenityjs/core 0.8.0-beta-20250412193217 → 0.8.0-beta-20250412205458
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 +7 -7
- package/dist/index.d.mts +74 -2
- package/dist/index.d.ts +74 -2
- package/dist/index.js +14 -14
- package/dist/index.mjs +14 -14
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @serenityjs/core
|
|
2
2
|
|
|
3
|
-
## 0.8.0-beta-
|
|
3
|
+
## 0.8.0-beta-20250412205458
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
### Patch Changes
|
|
10
10
|
|
|
11
11
|
- Updated dependencies [[`7afde6d`](https://github.com/SerenityJS/serenity/commit/7afde6d98ab6c157ae581593669cc66df78571d2)]:
|
|
12
|
-
- @serenityjs/data@0.8.0-beta-
|
|
13
|
-
- @serenityjs/emitter@0.8.0-beta-
|
|
14
|
-
- @serenityjs/logger@0.8.0-beta-
|
|
15
|
-
- @serenityjs/nbt@0.8.0-beta-
|
|
16
|
-
- @serenityjs/protocol@0.8.0-beta-
|
|
17
|
-
- @serenityjs/raknet@0.8.0-beta-
|
|
12
|
+
- @serenityjs/data@0.8.0-beta-20250412205458
|
|
13
|
+
- @serenityjs/emitter@0.8.0-beta-20250412205458
|
|
14
|
+
- @serenityjs/logger@0.8.0-beta-20250412205458
|
|
15
|
+
- @serenityjs/nbt@0.8.0-beta-20250412205458
|
|
16
|
+
- @serenityjs/protocol@0.8.0-beta-20250412205458
|
|
17
|
+
- @serenityjs/raknet@0.8.0-beta-20250412205458
|
|
18
18
|
|
|
19
19
|
## 0.7.9
|
|
20
20
|
|
package/dist/index.d.mts
CHANGED
|
@@ -8331,6 +8331,48 @@ declare class ItemTypeItemPropertiesComponent extends ItemTypeComponent {
|
|
|
8331
8331
|
get component(): CompoundTag<unknown>;
|
|
8332
8332
|
}
|
|
8333
8333
|
|
|
8334
|
+
interface ItemTypeCooldownComponentOptions {
|
|
8335
|
+
/**
|
|
8336
|
+
* The category of the cooldown component.
|
|
8337
|
+
*/
|
|
8338
|
+
category: string;
|
|
8339
|
+
/**
|
|
8340
|
+
* The duration of the cooldown component in seconds.
|
|
8341
|
+
*/
|
|
8342
|
+
duration: number;
|
|
8343
|
+
}
|
|
8344
|
+
declare class ItemTypeCooldownComponent extends ItemTypeComponent {
|
|
8345
|
+
static readonly identifier = "minecraft:cooldown";
|
|
8346
|
+
/**
|
|
8347
|
+
* Create a new item type cooldown component.
|
|
8348
|
+
* @param type The item type of the component.
|
|
8349
|
+
* @param options The options for the component.
|
|
8350
|
+
*/
|
|
8351
|
+
constructor(type: ItemType, options?: Partial<ItemTypeCooldownComponentOptions>);
|
|
8352
|
+
/**
|
|
8353
|
+
* Get the category of the cooldown component.
|
|
8354
|
+
* @returns The category of the cooldown component.
|
|
8355
|
+
*/
|
|
8356
|
+
getCategory(): string;
|
|
8357
|
+
/**
|
|
8358
|
+
* Set the category of the cooldown component.
|
|
8359
|
+
* @param value The category of the cooldown component.
|
|
8360
|
+
*/
|
|
8361
|
+
setCategory(value: string): void;
|
|
8362
|
+
/**
|
|
8363
|
+
* Get the duration of the cooldown component in seconds.
|
|
8364
|
+
* @param ticks Whether to return the duration in ticks; default is false.
|
|
8365
|
+
* @returns The duration of the cooldown component in seconds or ticks.
|
|
8366
|
+
*/
|
|
8367
|
+
getDuration(ticks?: boolean): number;
|
|
8368
|
+
/**
|
|
8369
|
+
* Set the duration of the cooldown component in seconds.
|
|
8370
|
+
* @param value The duration of the cooldown component in seconds or ticks.
|
|
8371
|
+
* @param ticks Whether the value is in ticks; default is false.
|
|
8372
|
+
*/
|
|
8373
|
+
setDuration(value: number, ticks?: boolean): void;
|
|
8374
|
+
}
|
|
8375
|
+
|
|
8334
8376
|
declare class ItemTypeComponentCollection extends CompoundTag<unknown> {
|
|
8335
8377
|
/**
|
|
8336
8378
|
* The type of item that the components are for.
|
|
@@ -8434,6 +8476,16 @@ declare class ItemTypeComponentCollection extends CompoundTag<unknown> {
|
|
|
8434
8476
|
* @param properties The properties of the wearable component
|
|
8435
8477
|
*/
|
|
8436
8478
|
setWearable(properties?: Partial<ItemTypeWearableComponent>): void;
|
|
8479
|
+
/**
|
|
8480
|
+
* Get the cooldown component of the item type.
|
|
8481
|
+
* @returns The cooldown component of the item type.
|
|
8482
|
+
*/
|
|
8483
|
+
getCooldown(): ItemTypeCooldownComponent;
|
|
8484
|
+
/**
|
|
8485
|
+
* Set the cooldown component of the item type.
|
|
8486
|
+
* @param properties The properties of the cooldown component
|
|
8487
|
+
*/
|
|
8488
|
+
setCooldown(properties?: Partial<ItemTypeCooldownComponentOptions>): void;
|
|
8437
8489
|
}
|
|
8438
8490
|
|
|
8439
8491
|
/**
|
|
@@ -8674,6 +8726,11 @@ declare class ItemStack<T extends keyof Items = keyof Items> {
|
|
|
8674
8726
|
use(player: Player, options: ItemUseOptions): boolean | ItemUseMethod;
|
|
8675
8727
|
useOnBlock(player: Player, options: ItemUseOnBlockOptions): boolean | ItemUseMethod;
|
|
8676
8728
|
useOnEntity(player: Player, options: ItemUseOnEntityOptions): boolean | ItemUseMethod;
|
|
8729
|
+
/**
|
|
8730
|
+
* Start a cooldown for the item stack.
|
|
8731
|
+
* @param duration The duration of the cooldown in ticks.
|
|
8732
|
+
*/
|
|
8733
|
+
startCooldown(duration: number): void;
|
|
8677
8734
|
/**
|
|
8678
8735
|
* Whether the itemstack has the specified trait.
|
|
8679
8736
|
* @param trait The trait to check for
|
|
@@ -8851,6 +8908,15 @@ declare class ItemTrait<T extends ItemIdentifier> extends Trait {
|
|
|
8851
8908
|
* @param player The player that released the item.
|
|
8852
8909
|
*/
|
|
8853
8910
|
onRelease?(player: Player): void;
|
|
8911
|
+
/**
|
|
8912
|
+
* Called when the item has been signaled to cooldown.
|
|
8913
|
+
* @param duration The duration of the cooldown in ticks.
|
|
8914
|
+
*/
|
|
8915
|
+
onStartCooldown?(duration: number): void;
|
|
8916
|
+
/**
|
|
8917
|
+
* Called when the item cooldown has stopped.
|
|
8918
|
+
*/
|
|
8919
|
+
onStopCooldown?(): void;
|
|
8854
8920
|
/**
|
|
8855
8921
|
* Called when the container that the item is stored in is opened.
|
|
8856
8922
|
* @param player The player that opened the container.
|
|
@@ -11492,6 +11558,12 @@ declare class Player extends Entity {
|
|
|
11492
11558
|
* @param position The position to set the spawn point to.
|
|
11493
11559
|
*/
|
|
11494
11560
|
setSpawnPoint(position: Vector3f): void;
|
|
11561
|
+
/**
|
|
11562
|
+
* Starts an item cooldown for a specific category.
|
|
11563
|
+
* @param category The category of the item cooldown.
|
|
11564
|
+
* @param duration The duration of the cooldown in ticks.
|
|
11565
|
+
*/
|
|
11566
|
+
startItemCooldown(category: string, duration: number): void;
|
|
11495
11567
|
/**
|
|
11496
11568
|
* Gets the player's data as a database entry
|
|
11497
11569
|
* @returns The player entry
|
|
@@ -17100,7 +17172,7 @@ declare class AnimateHandler extends NetworkHandler {
|
|
|
17100
17172
|
|
|
17101
17173
|
declare class ContainerCloseHandler extends NetworkHandler {
|
|
17102
17174
|
static readonly packet = Packet.ContainerClose;
|
|
17103
|
-
handle(
|
|
17175
|
+
handle(packet: ContainerClosePacket, connection: Connection): void;
|
|
17104
17176
|
}
|
|
17105
17177
|
|
|
17106
17178
|
declare class DisconnectHandler extends NetworkHandler {
|
|
@@ -17345,4 +17417,4 @@ declare class Astar {
|
|
|
17345
17417
|
private inSet;
|
|
17346
17418
|
}
|
|
17347
17419
|
|
|
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 };
|
|
17420
|
+
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, ItemTypeCooldownComponent, type ItemTypeCooldownComponentOptions, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -8331,6 +8331,48 @@ declare class ItemTypeItemPropertiesComponent extends ItemTypeComponent {
|
|
|
8331
8331
|
get component(): CompoundTag<unknown>;
|
|
8332
8332
|
}
|
|
8333
8333
|
|
|
8334
|
+
interface ItemTypeCooldownComponentOptions {
|
|
8335
|
+
/**
|
|
8336
|
+
* The category of the cooldown component.
|
|
8337
|
+
*/
|
|
8338
|
+
category: string;
|
|
8339
|
+
/**
|
|
8340
|
+
* The duration of the cooldown component in seconds.
|
|
8341
|
+
*/
|
|
8342
|
+
duration: number;
|
|
8343
|
+
}
|
|
8344
|
+
declare class ItemTypeCooldownComponent extends ItemTypeComponent {
|
|
8345
|
+
static readonly identifier = "minecraft:cooldown";
|
|
8346
|
+
/**
|
|
8347
|
+
* Create a new item type cooldown component.
|
|
8348
|
+
* @param type The item type of the component.
|
|
8349
|
+
* @param options The options for the component.
|
|
8350
|
+
*/
|
|
8351
|
+
constructor(type: ItemType, options?: Partial<ItemTypeCooldownComponentOptions>);
|
|
8352
|
+
/**
|
|
8353
|
+
* Get the category of the cooldown component.
|
|
8354
|
+
* @returns The category of the cooldown component.
|
|
8355
|
+
*/
|
|
8356
|
+
getCategory(): string;
|
|
8357
|
+
/**
|
|
8358
|
+
* Set the category of the cooldown component.
|
|
8359
|
+
* @param value The category of the cooldown component.
|
|
8360
|
+
*/
|
|
8361
|
+
setCategory(value: string): void;
|
|
8362
|
+
/**
|
|
8363
|
+
* Get the duration of the cooldown component in seconds.
|
|
8364
|
+
* @param ticks Whether to return the duration in ticks; default is false.
|
|
8365
|
+
* @returns The duration of the cooldown component in seconds or ticks.
|
|
8366
|
+
*/
|
|
8367
|
+
getDuration(ticks?: boolean): number;
|
|
8368
|
+
/**
|
|
8369
|
+
* Set the duration of the cooldown component in seconds.
|
|
8370
|
+
* @param value The duration of the cooldown component in seconds or ticks.
|
|
8371
|
+
* @param ticks Whether the value is in ticks; default is false.
|
|
8372
|
+
*/
|
|
8373
|
+
setDuration(value: number, ticks?: boolean): void;
|
|
8374
|
+
}
|
|
8375
|
+
|
|
8334
8376
|
declare class ItemTypeComponentCollection extends CompoundTag<unknown> {
|
|
8335
8377
|
/**
|
|
8336
8378
|
* The type of item that the components are for.
|
|
@@ -8434,6 +8476,16 @@ declare class ItemTypeComponentCollection extends CompoundTag<unknown> {
|
|
|
8434
8476
|
* @param properties The properties of the wearable component
|
|
8435
8477
|
*/
|
|
8436
8478
|
setWearable(properties?: Partial<ItemTypeWearableComponent>): void;
|
|
8479
|
+
/**
|
|
8480
|
+
* Get the cooldown component of the item type.
|
|
8481
|
+
* @returns The cooldown component of the item type.
|
|
8482
|
+
*/
|
|
8483
|
+
getCooldown(): ItemTypeCooldownComponent;
|
|
8484
|
+
/**
|
|
8485
|
+
* Set the cooldown component of the item type.
|
|
8486
|
+
* @param properties The properties of the cooldown component
|
|
8487
|
+
*/
|
|
8488
|
+
setCooldown(properties?: Partial<ItemTypeCooldownComponentOptions>): void;
|
|
8437
8489
|
}
|
|
8438
8490
|
|
|
8439
8491
|
/**
|
|
@@ -8674,6 +8726,11 @@ declare class ItemStack<T extends keyof Items = keyof Items> {
|
|
|
8674
8726
|
use(player: Player, options: ItemUseOptions): boolean | ItemUseMethod;
|
|
8675
8727
|
useOnBlock(player: Player, options: ItemUseOnBlockOptions): boolean | ItemUseMethod;
|
|
8676
8728
|
useOnEntity(player: Player, options: ItemUseOnEntityOptions): boolean | ItemUseMethod;
|
|
8729
|
+
/**
|
|
8730
|
+
* Start a cooldown for the item stack.
|
|
8731
|
+
* @param duration The duration of the cooldown in ticks.
|
|
8732
|
+
*/
|
|
8733
|
+
startCooldown(duration: number): void;
|
|
8677
8734
|
/**
|
|
8678
8735
|
* Whether the itemstack has the specified trait.
|
|
8679
8736
|
* @param trait The trait to check for
|
|
@@ -8851,6 +8908,15 @@ declare class ItemTrait<T extends ItemIdentifier> extends Trait {
|
|
|
8851
8908
|
* @param player The player that released the item.
|
|
8852
8909
|
*/
|
|
8853
8910
|
onRelease?(player: Player): void;
|
|
8911
|
+
/**
|
|
8912
|
+
* Called when the item has been signaled to cooldown.
|
|
8913
|
+
* @param duration The duration of the cooldown in ticks.
|
|
8914
|
+
*/
|
|
8915
|
+
onStartCooldown?(duration: number): void;
|
|
8916
|
+
/**
|
|
8917
|
+
* Called when the item cooldown has stopped.
|
|
8918
|
+
*/
|
|
8919
|
+
onStopCooldown?(): void;
|
|
8854
8920
|
/**
|
|
8855
8921
|
* Called when the container that the item is stored in is opened.
|
|
8856
8922
|
* @param player The player that opened the container.
|
|
@@ -11492,6 +11558,12 @@ declare class Player extends Entity {
|
|
|
11492
11558
|
* @param position The position to set the spawn point to.
|
|
11493
11559
|
*/
|
|
11494
11560
|
setSpawnPoint(position: Vector3f): void;
|
|
11561
|
+
/**
|
|
11562
|
+
* Starts an item cooldown for a specific category.
|
|
11563
|
+
* @param category The category of the item cooldown.
|
|
11564
|
+
* @param duration The duration of the cooldown in ticks.
|
|
11565
|
+
*/
|
|
11566
|
+
startItemCooldown(category: string, duration: number): void;
|
|
11495
11567
|
/**
|
|
11496
11568
|
* Gets the player's data as a database entry
|
|
11497
11569
|
* @returns The player entry
|
|
@@ -17100,7 +17172,7 @@ declare class AnimateHandler extends NetworkHandler {
|
|
|
17100
17172
|
|
|
17101
17173
|
declare class ContainerCloseHandler extends NetworkHandler {
|
|
17102
17174
|
static readonly packet = Packet.ContainerClose;
|
|
17103
|
-
handle(
|
|
17175
|
+
handle(packet: ContainerClosePacket, connection: Connection): void;
|
|
17104
17176
|
}
|
|
17105
17177
|
|
|
17106
17178
|
declare class DisconnectHandler extends NetworkHandler {
|
|
@@ -17345,4 +17417,4 @@ declare class Astar {
|
|
|
17345
17417
|
private inSet;
|
|
17346
17418
|
}
|
|
17347
17419
|
|
|
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 };
|
|
17420
|
+
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, ItemTypeCooldownComponent, type ItemTypeCooldownComponentOptions, 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 };
|